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

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

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

Request.getSourceContext介绍

暂无

代码示例

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

  1. @Override
  2. public Future<Device> getAuthenticatedDevice(final CoapExchange exchange) {
  3. final Principal peer = exchange.advanced().getRequest().getSourceContext().getPeerIdentity();
  4. if (PreSharedKeyIdentity.class.isInstance(peer)) {
  5. LOG.debug("authenticate psk identity {}", peer.getName());
  6. final PreSharedKeyDeviceIdentity handshakeIdentity = getHandshakeIdentity(
  7. ((PreSharedKeyIdentity) peer).getIdentity());
  8. if (handshakeIdentity != null) {
  9. final Device authorizedDevice = devices.getIfPresent(handshakeIdentity);
  10. if (authorizedDevice != null) {
  11. return Future.succeededFuture(authorizedDevice);
  12. }
  13. }
  14. return Future.failedFuture("missing device for " + peer + "!");
  15. }
  16. return Future.failedFuture(new IllegalArgumentException("Principal not supported by this handler!"));
  17. }
  18. }

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

  1. @Override
  2. public void receiveRequest(Request request) {
  3. CoapMessageListener listener = listeners.get(toStringAddress(request.getSourceContext().getPeerAddress()));
  4. if (listener != null) {
  5. listener.trace(new CoapMessage(request, true));
  6. }
  7. }

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

  1. /**
  2. * Get authenticated device.
  3. *
  4. * @param device origin device of message. If {@code null}, the message is sent from the authenticated device.
  5. * @param exchange coap exchange with peer's principal.
  6. * @param handler handler for determined extended device
  7. */
  8. public void getAuthenticatedExtendedDevice(final Device device,
  9. final CoapExchange exchange, final Handler<ExtendedDevice> handler) {
  10. final Principal peer = exchange.advanced().getRequest().getSourceContext().getPeerIdentity();
  11. final CoapAuthenticationHandler authenticationHandler = getAuthenticationHandler(peer);
  12. if (authenticationHandler == null) {
  13. log.debug("device authentication handler missing for {}!", peer);
  14. exchange.respond(ResponseCode.INTERNAL_SERVER_ERROR);
  15. } else {
  16. authenticationHandler.getAuthenticatedDevice(exchange)
  17. .compose((authorizedDevice) -> {
  18. final Device originDevice = device != null ? device : authorizedDevice;
  19. final ExtendedDevice extendedDevice = new ExtendedDevice(authorizedDevice, originDevice);
  20. log.debug("used {}", extendedDevice);
  21. handler.handle(extendedDevice);
  22. return Future.succeededFuture();
  23. }).otherwise((error) -> {
  24. CoapErrorResponse.respond(exchange, error);
  25. return null;
  26. });
  27. }
  28. }

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

  1. public static ServerIdentity extractServerIdentity(CoapExchange exchange, BootstrapHandler bootstrapHandler) {
  2. Identity identity = EndpointContextUtil.extractIdentity(exchange.advanced().getRequest().getSourceContext());
  3. if (bootstrapHandler.isBootstrapServer(identity)) {
  4. return ServerIdentity.createLwm2mBootstrapServerIdentity(identity);
  5. }
  6. return ServerIdentity.createLwm2mServerIdentity(identity);
  7. }
  8. }

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

  1. private void handleRegister(CoapExchange exchange, Request request) {
  2. Identity sender = extractIdentity(request.getSourceContext());

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

  1. private void handleUpdate(CoapExchange exchange, Request request, String registrationId) {
  2. Identity sender = extractIdentity(request.getSourceContext());

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

  1. /**
  2. * Get extended device.
  3. *
  4. * @param exchange coap exchange with URI and/or peer's principal.
  5. * @param handler handler for determined extended device
  6. */
  7. public void getExtendedDevice(final CoapExchange exchange, final Handler<ExtendedDevice> handler) {
  8. try {
  9. final List<String> pathList = exchange.getRequestOptions().getUriPath();
  10. final String[] path = pathList.toArray(new String[pathList.size()]);
  11. final ResourceIdentifier identifier = ResourceIdentifier.fromPath(path);
  12. final Device device = new Device(identifier.getTenantId(), identifier.getResourceId());
  13. final Principal peer = exchange.advanced().getRequest().getSourceContext().getPeerIdentity();
  14. if (peer == null) {
  15. final ExtendedDevice extendedDevice = new ExtendedDevice(device, device);
  16. log.debug("use {}", extendedDevice);
  17. handler.handle(extendedDevice);
  18. } else {
  19. getAuthenticatedExtendedDevice(device, exchange, handler);
  20. }
  21. } catch (NullPointerException cause) {
  22. CoapErrorResponse.respond(exchange, "missing tenant and device!", ResponseCode.BAD_REQUEST);
  23. } catch (Throwable cause) {
  24. CoapErrorResponse.respond(exchange, cause, ResponseCode.INTERNAL_SERVER_ERROR);
  25. }
  26. }

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

  1. Identity clientIdentity = EndpointContextUtil.extractIdentity(request.getSourceContext());

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

  1. private void handleDeregister(CoapExchange exchange, String registrationId) {
  2. // Get identity
  3. Identity sender = extractIdentity(exchange.advanced().getRequest().getSourceContext());
  4. // Create request
  5. DeregisterRequest deregisterRequest = new DeregisterRequest(registrationId);
  6. // Handle request
  7. final SendableResponse<DeregisterResponse> sendableResponse = registrationHandler.deregister(sender,
  8. deregisterRequest);
  9. DeregisterResponse deregisterResponse = sendableResponse.getResponse();
  10. // Create CoAP Response from LwM2m request
  11. if (deregisterResponse.getCode().isError()) {
  12. exchange.respond(toCoapResponseCode(deregisterResponse.getCode()), deregisterResponse.getErrorMessage());
  13. } else {
  14. exchange.respond(toCoapResponseCode(deregisterResponse.getCode()));
  15. }
  16. sendableResponse.sent();
  17. }

相关文章