org.eclipse.californium.core.coap.Request.setDestinationContext()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(5.2k)|赞(0)|评价(0)|浏览(287)

本文整理了Java中org.eclipse.californium.core.coap.Request.setDestinationContext方法的一些代码示例,展示了Request.setDestinationContext的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.setDestinationContext方法的具体详情如下:
包路径:org.eclipse.californium.core.coap.Request
类名称:Request
方法名:setDestinationContext

Request.setDestinationContext介绍

暂无

代码示例

代码示例来源:origin: eclipse/leshan

  1. private void buildRequestSettings() {
  2. coapRequest.setDestinationContext(new AddressEndpointContext(serverAddress));
  3. }
  4. }

代码示例来源:origin: eclipse/leshan

  1. @Override
  2. public void visit(BootstrapDeleteRequest request) {
  3. coapRequest = Request.newDelete();
  4. coapRequest.setConfirmable(true);
  5. EndpointContext context = EndpointContextUtil.extractContext(destination);
  6. coapRequest.setDestinationContext(context);
  7. setTarget(coapRequest, request.getPath());
  8. }

代码示例来源:origin: eclipse/leshan

  1. public static Observation deserialize(byte[] data) {
  2. JsonObject v = (JsonObject) Json.parse(new String(data));
  3. EndpointContext endpointContext = EndpointContextSerDes.deserialize(v.get("peer").asObject());
  4. byte[] req = Hex.decodeHex(v.getString("request", null).toCharArray());
  5. RawData rawData = RawData.outbound(req, endpointContext, null, false);
  6. Request request = (Request) parser.parseMessage(rawData);
  7. request.setDestinationContext(endpointContext);
  8. JsonValue ctxValue = v.get("context");
  9. if (ctxValue != null) {
  10. Map<String, String> context = new HashMap<>();
  11. JsonObject ctxObject = (JsonObject) ctxValue;
  12. for (String name : ctxObject.names()) {
  13. context.put(name, ctxObject.getString(name, null));
  14. }
  15. request.setUserContext(context);
  16. }
  17. return new Observation(request, endpointContext);
  18. }

代码示例来源:origin: org.eclipse.leshan/leshan-server-cluster

  1. public static Observation deserialize(byte[] data) {
  2. JsonObject v = (JsonObject) Json.parse(new String(data));
  3. EndpointContext endpointContext = EndpointContextSerDes.deserialize(v.get("peer").asObject());
  4. byte[] req = Hex.decodeHex(v.getString("request", null).toCharArray());
  5. RawData rawData = RawData.outbound(req, endpointContext, null, false);
  6. Request request = (Request) parser.parseMessage(rawData);
  7. request.setDestinationContext(endpointContext);
  8. JsonValue ctxValue = v.get("context");
  9. if (ctxValue != null) {
  10. Map<String, String> context = new HashMap<>();
  11. JsonObject ctxObject = (JsonObject) ctxValue;
  12. for (String name : ctxObject.names()) {
  13. context.put(name, ctxObject.getString(name, null));
  14. }
  15. request.setUserContext(context);
  16. }
  17. return new Observation(request, endpointContext);
  18. }

代码示例来源:origin: eclipse/leshan

  1. @Override
  2. public void visit(BootstrapFinishRequest request) {
  3. coapRequest = Request.newPost();
  4. coapRequest.setConfirmable(true);
  5. EndpointContext context = EndpointContextUtil.extractContext(destination);
  6. coapRequest.setDestinationContext(context);
  7. // root path
  8. if (rootPath != null) {
  9. for (String rootPathPart : rootPath.split("/")) {
  10. if (!StringUtils.isEmpty(rootPathPart)) {
  11. coapRequest.getOptions().addUriPath(rootPathPart);
  12. }
  13. }
  14. }
  15. coapRequest.getOptions().addUriPath("bs");
  16. }

代码示例来源:origin: eclipse/leshan

  1. @Override
  2. public void sendCoapRequest(final Registration destination, final Request coapRequest, long timeout,
  3. CoapResponseCallback responseCallback, ErrorCallback errorCallback) {
  4. // Define destination
  5. EndpointContext context = EndpointContextUtil.extractContext(destination.getIdentity());
  6. coapRequest.setDestinationContext(context);
  7. // Add CoAP request callback
  8. MessageObserver obs = new CoapAsyncRequestObserver(coapRequest, responseCallback, errorCallback, timeout);
  9. coapRequest.addMessageObserver(obs);
  10. // Store pending request to cancel it on de-registration
  11. addPendingRequest(destination.getId(), coapRequest);
  12. // Send CoAP request asynchronously
  13. Endpoint endpoint = getEndpointForClient(destination);
  14. endpoint.sendRequest(coapRequest);
  15. }

代码示例来源:origin: eclipse/leshan

  1. private final void setTarget(Request coapRequest, LwM2mPath path) {
  2. EndpointContext context = EndpointContextUtil.extractContext(destination);
  3. coapRequest.setDestinationContext(context);
  4. // root path
  5. if (rootPath != null) {
  6. for (String rootPathPart : rootPath.split("/")) {
  7. if (!StringUtils.isEmpty(rootPathPart)) {
  8. coapRequest.getOptions().addUriPath(rootPathPart);
  9. }
  10. }
  11. }
  12. // objectId
  13. if (path.getObjectId() != null) {
  14. coapRequest.getOptions().addUriPath(Integer.toString(path.getObjectId()));
  15. }
  16. // objectInstanceId
  17. if (path.getObjectInstanceId() == null) {
  18. if (path.getResourceId() != null) {
  19. coapRequest.getOptions().addUriPath("0"); // default instanceId
  20. }
  21. } else {
  22. coapRequest.getOptions().addUriPath(Integer.toString(path.getObjectInstanceId()));
  23. }
  24. // resourceId
  25. if (path.getResourceId() != null) {
  26. coapRequest.getOptions().addUriPath(Integer.toString(path.getResourceId()));
  27. }
  28. }

代码示例来源:origin: eclipse/leshan

  1. @Override
  2. public Response sendCoapRequest(final Registration destination, final Request coapRequest, long timeout)
  3. throws InterruptedException {
  4. // Define destination
  5. EndpointContext context = EndpointContextUtil.extractContext(destination.getIdentity());
  6. coapRequest.setDestinationContext(context);
  7. // Send CoAP request synchronously
  8. CoapSyncRequestObserver syncMessageObserver = new CoapSyncRequestObserver(coapRequest, timeout);
  9. coapRequest.addMessageObserver(syncMessageObserver);
  10. // Store pending request to cancel it on de-registration
  11. addPendingRequest(destination.getId(), coapRequest);
  12. // Send CoAP request asynchronously
  13. Endpoint endpoint = getEndpointForClient(destination);
  14. endpoint.sendRequest(coapRequest);
  15. // Wait for response, then return it
  16. return syncMessageObserver.waitForCoapResponse();
  17. }

相关文章