Search in sources :

Example 1 with TranslateBrowsePathsToNodeIdsResponse

use of org.eclipse.milo.opcua.stack.core.types.structured.TranslateBrowsePathsToNodeIdsResponse in project milo by eclipse.

the class BrowsePathsHelper method onTranslateBrowsePaths.

public void onTranslateBrowsePaths(ServiceRequest service) {
    TranslateBrowsePathsToNodeIdsRequest request = (TranslateBrowsePathsToNodeIdsRequest) service.getRequest();
    OpcUaServer server = service.attr(ServiceAttributes.SERVER_KEY).get();
    List<BrowsePath> browsePaths = l(request.getBrowsePaths());
    if (browsePaths.isEmpty()) {
        service.setServiceFault(StatusCodes.Bad_NothingToDo);
        return;
    }
    if (browsePaths.size() > server.getConfig().getLimits().getMaxNodesPerTranslateBrowsePathsToNodeIds().intValue()) {
        service.setServiceFault(StatusCodes.Bad_TooManyOperations);
        return;
    }
    List<CompletableFuture<BrowsePathResult>> futures = newArrayListWithCapacity(browsePaths.size());
    for (BrowsePath browsePath : browsePaths) {
        futures.add(translate(browsePath));
    }
    sequence(futures).thenAcceptAsync(results -> {
        ResponseHeader header = service.createResponseHeader();
        TranslateBrowsePathsToNodeIdsResponse response = new TranslateBrowsePathsToNodeIdsResponse(header, a(results, BrowsePathResult.class), new DiagnosticInfo[0]);
        service.setResponse(response);
    }, server.getExecutorService());
}
Also used : OpcUaServer(org.eclipse.milo.opcua.sdk.server.OpcUaServer) CompletableFuture(java.util.concurrent.CompletableFuture) ResponseHeader(org.eclipse.milo.opcua.stack.core.types.structured.ResponseHeader) BrowsePathResult(org.eclipse.milo.opcua.stack.core.types.structured.BrowsePathResult) TranslateBrowsePathsToNodeIdsRequest(org.eclipse.milo.opcua.stack.core.types.structured.TranslateBrowsePathsToNodeIdsRequest) TranslateBrowsePathsToNodeIdsResponse(org.eclipse.milo.opcua.stack.core.types.structured.TranslateBrowsePathsToNodeIdsResponse) BrowsePath(org.eclipse.milo.opcua.stack.core.types.structured.BrowsePath)

Example 2 with TranslateBrowsePathsToNodeIdsResponse

use of org.eclipse.milo.opcua.stack.core.types.structured.TranslateBrowsePathsToNodeIdsResponse in project milo by eclipse.

the class TranslateBrowsePathExample method run.

@Override
public void run(OpcUaClient client, CompletableFuture<OpcUaClient> future) throws Exception {
    // synchronous connect
    client.connect().get();
    TranslateBrowsePathsToNodeIdsResponse response = client.translateBrowsePaths(newArrayList(new BrowsePath(Identifiers.ObjectsFolder, new RelativePath(new RelativePathElement[] { new RelativePathElement(Identifiers.HierarchicalReferences, false, true, new QualifiedName(2, "HelloWorld")), new RelativePathElement(Identifiers.HierarchicalReferences, false, true, new QualifiedName(2, "ScalarTypes")), new RelativePathElement(Identifiers.HierarchicalReferences, false, true, new QualifiedName(2, "UInt64")) })))).get();
    BrowsePathResult result = l(response.getResults()).get(0);
    StatusCode statusCode = result.getStatusCode();
    logger.info("Status={}", statusCode);
    l(result.getTargets()).forEach(target -> logger.info("TargetId={}", target.getTargetId()));
    future.complete(client);
}
Also used : RelativePath(org.eclipse.milo.opcua.stack.core.types.structured.RelativePath) BrowsePathResult(org.eclipse.milo.opcua.stack.core.types.structured.BrowsePathResult) QualifiedName(org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName) RelativePathElement(org.eclipse.milo.opcua.stack.core.types.structured.RelativePathElement) TranslateBrowsePathsToNodeIdsResponse(org.eclipse.milo.opcua.stack.core.types.structured.TranslateBrowsePathsToNodeIdsResponse) BrowsePath(org.eclipse.milo.opcua.stack.core.types.structured.BrowsePath) StatusCode(org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode)

Aggregations

BrowsePath (org.eclipse.milo.opcua.stack.core.types.structured.BrowsePath)2 BrowsePathResult (org.eclipse.milo.opcua.stack.core.types.structured.BrowsePathResult)2 TranslateBrowsePathsToNodeIdsResponse (org.eclipse.milo.opcua.stack.core.types.structured.TranslateBrowsePathsToNodeIdsResponse)2 CompletableFuture (java.util.concurrent.CompletableFuture)1 OpcUaServer (org.eclipse.milo.opcua.sdk.server.OpcUaServer)1 QualifiedName (org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName)1 StatusCode (org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode)1 RelativePath (org.eclipse.milo.opcua.stack.core.types.structured.RelativePath)1 RelativePathElement (org.eclipse.milo.opcua.stack.core.types.structured.RelativePathElement)1 ResponseHeader (org.eclipse.milo.opcua.stack.core.types.structured.ResponseHeader)1 TranslateBrowsePathsToNodeIdsRequest (org.eclipse.milo.opcua.stack.core.types.structured.TranslateBrowsePathsToNodeIdsRequest)1