mirror of
https://github.com/microsoft/playwright-java.git
synced 2026-03-30 19:32:50 +00:00
118 lines
3.2 KiB
Java
118 lines
3.2 KiB
Java
/*
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.microsoft.playwright.impl;
|
|
|
|
import com.google.gson.JsonElement;
|
|
import com.google.gson.JsonObject;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import java.util.function.Supplier;
|
|
|
|
class ChannelOwner extends LoggingSupport {
|
|
final Connection connection;
|
|
private final ChannelOwner parent;
|
|
private final Map<String, ChannelOwner> objects = new HashMap<>();
|
|
|
|
final String type;
|
|
final String guid;
|
|
final JsonObject initializer;
|
|
|
|
protected ChannelOwner(ChannelOwner parent, String type, String guid, JsonObject initializer) {
|
|
this(parent.connection, parent, type, guid, initializer);
|
|
}
|
|
|
|
protected ChannelOwner(Connection connection, String type, String guid) {
|
|
this(connection, null, type, guid, new JsonObject());
|
|
}
|
|
|
|
|
|
private ChannelOwner(Connection connection, ChannelOwner parent, String type, String guid, JsonObject initializer) {
|
|
this.connection = connection;
|
|
this.parent = parent;
|
|
this.type = type;
|
|
this.guid = guid;
|
|
this.initializer = initializer;
|
|
|
|
connection.registerObject(guid, this);
|
|
if (parent != null) {
|
|
parent.objects.put(guid, this);
|
|
}
|
|
}
|
|
|
|
void disconnect() {
|
|
// Clean up from parent and connection.
|
|
if (parent != null) {
|
|
parent.objects.remove(guid);
|
|
}
|
|
connection.unregisterObject(guid);
|
|
// Dispose all children.
|
|
for (ChannelOwner child : new ArrayList<>(objects.values())) {
|
|
child.disconnect();
|
|
}
|
|
objects.clear();
|
|
}
|
|
|
|
<T> T withWaitLogging(String apiName, Supplier<T> code) {
|
|
return new WaitForEventLogger<>(this, apiName, code).get();
|
|
}
|
|
|
|
@Override
|
|
<T> T withLogging(String apiName, Supplier<T> code) {
|
|
String previousApiName = connection.setApiName(apiName);
|
|
try {
|
|
return super.withLogging(apiName, code);
|
|
} finally {
|
|
connection.setApiName(previousApiName);
|
|
}
|
|
}
|
|
|
|
WaitableResult<JsonElement> sendMessageAsync(String method, JsonObject params) {
|
|
return connection.sendMessageAsync(guid, method, params);
|
|
}
|
|
|
|
JsonElement sendMessage(String method) {
|
|
return sendMessage(method, new JsonObject());
|
|
}
|
|
|
|
JsonElement sendMessage(String method, JsonObject params) {
|
|
return connection.sendMessage(guid, method, params);
|
|
}
|
|
|
|
<T> T runUntil(Runnable code, Waitable<T> waitable) {
|
|
try {
|
|
code.run();
|
|
while (!waitable.isDone()) {
|
|
connection.processOneMessage();
|
|
}
|
|
return waitable.get();
|
|
} finally {
|
|
waitable.dispose();
|
|
}
|
|
}
|
|
|
|
void handleEvent(String event, JsonObject parameters) {
|
|
}
|
|
|
|
JsonObject toProtocolRef() {
|
|
JsonObject json = new JsonObject();
|
|
json.addProperty("guid", guid);
|
|
return json;
|
|
}
|
|
}
|