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

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

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

Request.getDestinationPort介绍

暂无

代码示例

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

  1. /**
  2. * Validate before sending that there is a destination set.
  3. */
  4. private void validateBeforeSending() {
  5. if (getDestination() == null)
  6. throw new NullPointerException("Destination is null");
  7. if (getDestinationPort() == 0)
  8. throw new NullPointerException("Destination port is 0");
  9. }

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

  1. @Override
  2. public void sendRequest(Request request) {
  3. LOGGER.log(Level.INFO, "{0}:{1} <== req {2}", new Object[]{request.getDestination(), request.getDestinationPort(), request});
  4. }

代码示例来源:origin: org.eclipse.californium/californium-core

  1. /**
  2. * Validate before sending that there is a destination set.
  3. */
  4. private void validateBeforeSending() {
  5. if (getDestination() == null)
  6. throw new NullPointerException("Destination is null");
  7. if (getDestinationPort() == 0)
  8. throw new NullPointerException("Destination port is 0");
  9. }

代码示例来源:origin: org.eclipse.californium/californium-core

  1. @Override
  2. public void sendRequest(Request request) {
  3. LOGGER.info(String.format("%s:%d <== req %s", request.getDestination(), request.getDestinationPort(), request));
  4. }

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

  1. @Test
  2. public void testSetURISetsDestination() {
  3. InetSocketAddress dest = InetSocketAddress.createUnresolved("192.168.0.1", 12000);
  4. Request req = Request.newGet().setURI("coap://192.168.0.1:12000");
  5. assertThat(req.getDestination().getHostAddress(), is(dest.getHostString()));
  6. assertThat(req.getDestinationPort(), is(dest.getPort()));
  7. }

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

  1. @Test
  2. public void testSetURISetsDestinationPortBasedOnUriScheme() {
  3. Request req = Request.newGet().setURI("coap://127.0.0.1");
  4. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_PORT));
  5. req = Request.newGet().setURI("coaps://127.0.0.1");
  6. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_SECURE_PORT));
  7. req = Request.newGet().setURI("coap+tcp://127.0.0.1");
  8. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_PORT));
  9. req = Request.newGet().setURI("coaps+tcp://127.0.0.1");
  10. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_SECURE_PORT));
  11. }

代码示例来源:origin: org.eclipse.californium/californium-core

  1. /**
  2. * Serializes the specified request. Message identifier, message code,
  3. * token, options and payload are converted into a byte array and wrapped in
  4. * a {@link RawData} object. The request's destination address and port are
  5. * stored as address and port in the RawData object.
  6. *
  7. * @param request
  8. * the request
  9. * @return the request as raw data
  10. */
  11. public RawData serialize(Request request) {
  12. byte[] bytes = request.getBytes();
  13. if (bytes == null)
  14. bytes = new DataSerializer().serializeRequest(request);
  15. request.setBytes(bytes);
  16. return new RawData(bytes, request.getDestination(), request.getDestinationPort());
  17. }

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

  1. @Test
  2. public void testSetOptionsSetsUriHostOption() {
  3. Request req = Request.newGet();
  4. req.setDestination(InetAddress.getLoopbackAddress());
  5. req.setOptions(URI.create("coap://iot.eclipse.org"));
  6. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_PORT));
  7. assertThat(req.getOptions().getUriHost(), is("iot.eclipse.org"));
  8. }

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

  1. /**
  2. * Returns the endpoint responsible for the given exchange.
  3. * @param exchange the exchange
  4. * @return the endpoint for the exchange
  5. */
  6. public RemoteEndpoint getRemoteEndpoint(Exchange exchange){ //int remotePort, InetAddress remoteAddress){
  7. InetAddress remoteAddress = exchange.getRequest().getDestination();
  8. int remotePort = exchange.getRequest().getDestinationPort();
  9. // TODO: One IP-Address is considered to be a destination endpoint, for higher granularity (portnumber) changes are necessary
  10. if (!remoteEndpointsList.containsKey(remoteAddress)){
  11. RemoteEndpoint unusedRemoteEndpoint = new RemoteEndpoint(remotePort, remoteAddress, config);
  12. remoteEndpointsList.put(remoteAddress,unusedRemoteEndpoint);
  13. //System.out.println("Number of RemoteEndpoint objects stored:" + remoteEndpointsList.size());
  14. }
  15. return remoteEndpointsList.get(remoteAddress);
  16. }

代码示例来源:origin: org.eclipse.californium/californium-core

  1. /**
  2. * Returns the endpoint responsible for the given exchange.
  3. * @param exchange the exchange
  4. * @return the endpoint for the exchange
  5. */
  6. public RemoteEndpoint getRemoteEndpoint(Exchange exchange){ //int remotePort, InetAddress remoteAddress){
  7. InetAddress remoteAddress = exchange.getRequest().getDestination();
  8. int remotePort = exchange.getRequest().getDestinationPort();
  9. // TODO: One IP-Address is considered to be a destination endpoint, for higher granularity (portnumber) changes are necessary
  10. if (!remoteEndpointsList.containsKey(remoteAddress)){
  11. RemoteEndpoint unusedRemoteEndpoint = new RemoteEndpoint(remotePort, remoteAddress, config);
  12. remoteEndpointsList.put(remoteAddress,unusedRemoteEndpoint);
  13. //System.out.println("Number of RemoteEndpoint objects stored:" + remoteEndpointsList.size());
  14. }
  15. return remoteEndpointsList.get(remoteAddress);
  16. }

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

  1. @Override
  2. public void run() {
  3. if (!endpoint.getNonConfirmableQueue().isEmpty()) {
  4. endpoint.setProcessingNON(true);
  5. Exchange exchange = endpoint.getNonConfirmableQueue().poll();
  6. if (getRemoteEndpoint(exchange).getNonConfirmableCounter() <= MAX_SUCCESSIVE_NONS) {
  7. getRemoteEndpoint(exchange).increaseNonConfirmableCounter();
  8. if (exchange.getCurrentRequest().getDestinationPort() != 0) {
  9. // it's a response
  10. sendBucketRequest(exchange, exchange.getCurrentRequest());
  11. } else if (exchange.getCurrentResponse() != null) {
  12. // it's a request
  13. sendBucketResponse(exchange, exchange.getCurrentResponse());
  14. }
  15. }
  16. // schedule next transmission of a NON based on the RTO value (rate = 1/RTO)
  17. executor.schedule(
  18. new BucketThread(getRemoteEndpoint(exchange)),
  19. getRemoteEndpoint(exchange).getRTO(),
  20. TimeUnit.MILLISECONDS);
  21. } else {
  22. endpoint.setProcessingNON(false);
  23. }
  24. }
  25. }

代码示例来源:origin: org.eclipse.californium/californium-core

  1. @Override
  2. public void run() {
  3. if (!endpoint.getNonConfirmableQueue().isEmpty()) {
  4. endpoint.setProcessingNON(true);
  5. Exchange exchange = endpoint.getNonConfirmableQueue().poll();
  6. if (getRemoteEndpoint(exchange).getNonConfirmableCounter() <= MAX_SUCCESSIVE_NONS) {
  7. getRemoteEndpoint(exchange).increaseNonConfirmableCounter();
  8. if (exchange.getCurrentRequest().getDestinationPort() != 0) {
  9. // it's a response
  10. sendBucketRequest(exchange, exchange.getCurrentRequest());
  11. } else if (exchange.getCurrentResponse() != null) {
  12. // it's a request
  13. sendBucketResponse(exchange, exchange.getCurrentResponse());
  14. }
  15. }
  16. // schedule next transmission of a NON based on the RTO value (rate = 1/RTO)
  17. executor.schedule(
  18. new bucketThread(getRemoteEndpoint(exchange)),
  19. getRemoteEndpoint(exchange).getRTO(),
  20. TimeUnit.MILLISECONDS);
  21. } else {
  22. endpoint.setProcessingNON(false);
  23. }
  24. }
  25. }

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

  1. /**
  2. * Verifies that the URI examples from <a href="https://tools.ietf.org/html/rfc7252#section-6.3">
  3. * RFC 7252, Section 6.3</a> result in the same option values.
  4. * @throws URISyntaxException
  5. */
  6. @Test
  7. public void testSetOptionsCompliesWithRfcExample() throws URISyntaxException {
  8. String[] exampleUris = new String[]{
  9. "coap://example.com:5683/~sensors/temp.xml",
  10. "coap://EXAMPLE.com/%7Esensors/temp.xml",
  11. "coap://EXAMPLE.com:/%7esensors/temp.xml"
  12. };
  13. for (String uriString : exampleUris) {
  14. URI uri = new URI(uriString);
  15. Request req = Request.newGet();
  16. // explicitly set destination address so that we do not rely on working DNS
  17. req.setDestination(InetAddress.getLoopbackAddress());
  18. req.setOptions(uri);
  19. assertThat(req.getOptions().getUriHost(), is("example.com"));
  20. assertThat(req.getDestinationPort(), is(5683));
  21. assertThat(req.getOptions().getUriPort(), is(nullValue()));
  22. assertThat(req.getOptions().getUriPathString(), is("~sensors/temp.xml"));
  23. }
  24. }

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

  1. @Test
  2. public void testSetURISetsUriHostOptionToHostName() {
  3. assumeTrue(dnsIsWorking());
  4. Request req = Request.newGet().setURI("coaps://localhost");
  5. assertNotNull(req.getDestination());
  6. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_SECURE_PORT));
  7. assertThat(req.getOptions().getUriHost(), is("localhost"));
  8. }

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

  1. /**
  2. * Send request with option "cancel observe" (GET with Observe=1).
  3. */
  4. private void sendCancelObserve() {
  5. Request request = this.request;
  6. Request cancel = Request.newGet();
  7. cancel.setDestination(request.getDestination());
  8. cancel.setDestinationPort(request.getDestinationPort());
  9. // use same Token
  10. cancel.setToken(request.getToken());
  11. // copy options, but set Observe to cancel
  12. cancel.setOptions(request.getOptions());
  13. cancel.setObserveCancel();
  14. // dispatch final response to the same message observers
  15. for (MessageObserver mo : request.getMessageObservers()) {
  16. cancel.addMessageObserver(mo);
  17. }
  18. endpoint.sendRequest(cancel);
  19. }

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

  1. private static Request getNextRequestBlock(final Request request, final BlockwiseStatus status) {
  2. int num = status.getCurrentNum();
  3. int szx = status.getCurrentSzx();
  4. Request block = new Request(request.getCode());
  5. // do not enforce CON, since NON could make sense over SMS or similar transports
  6. block.setType(request.getType());
  7. block.setDestination(request.getDestination());
  8. block.setDestinationPort(request.getDestinationPort());
  9. // copy options
  10. block.setOptions(new OptionSet(request.getOptions()));
  11. // copy message observers so that a failing blockwise request also notifies observers registered with
  12. // the original request
  13. block.addMessageObservers(request.getMessageObservers());
  14. int currentSize = 1 << (4 + szx);
  15. int from = num * currentSize;
  16. int to = Math.min((num + 1) * currentSize, request.getPayloadSize());
  17. int length = to - from;
  18. byte[] blockPayload = new byte[length];
  19. System.arraycopy(request.getPayload(), from, blockPayload, 0, length);
  20. block.setPayload(blockPayload);
  21. boolean m = (to < request.getPayloadSize());
  22. block.getOptions().setBlock1(szx, m, num);
  23. status.setComplete(!m);
  24. return block;
  25. }

代码示例来源:origin: org.eclipse.californium/californium-core

  1. /**
  2. * Send request with option "cancel observe" (GET with Observe=1).
  3. */
  4. private void sendCancelObserve() {
  5. Request request = this.request;
  6. Request cancel = Request.newGet();
  7. cancel.setDestination(request.getDestination());
  8. cancel.setDestinationPort(request.getDestinationPort());
  9. // use same Token
  10. cancel.setToken(request.getToken());
  11. // copy options, but set Observe to cancel
  12. cancel.setOptions(request.getOptions());
  13. cancel.setObserveCancel();
  14. // dispatch final response to the same message observers
  15. for (MessageObserver mo: request.getMessageObservers()) {
  16. cancel.addMessageObserver(mo);
  17. }
  18. endpoint.sendRequest(cancel);
  19. }

代码示例来源:origin: org.eclipse.californium/californium-core

  1. private static Request getNextRequestBlock(final Request request, final BlockwiseStatus status) {
  2. int num = status.getCurrentNum();
  3. int szx = status.getCurrentSzx();
  4. Request block = new Request(request.getCode());
  5. // do not enforce CON, since NON could make sense over SMS or similar transports
  6. block.setType(request.getType());
  7. block.setDestination(request.getDestination());
  8. block.setDestinationPort(request.getDestinationPort());
  9. // copy options
  10. block.setOptions(new OptionSet(request.getOptions()));
  11. // copy message observers so that a failing blockwise request also notifies observers registered with
  12. // the original request
  13. block.addMessageObservers(request.getMessageObservers());
  14. int currentSize = 1 << (4 + szx);
  15. int from = num * currentSize;
  16. int to = Math.min((num + 1) * currentSize, request.getPayloadSize());
  17. int length = to - from;
  18. byte[] blockPayload = new byte[length];
  19. System.arraycopy(request.getPayload(), from, blockPayload, 0, length);
  20. block.setPayload(blockPayload);
  21. boolean m = (to < request.getPayloadSize());
  22. block.getOptions().setBlock1(szx, m, num);
  23. status.setComplete(!m);
  24. return block;
  25. }

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

  1. private static Response responseFor(final Request request) {
  2. Response response = new Response(ResponseCode.CONTENT);
  3. response.setMID(request.getMID());
  4. response.setToken(request.getToken());
  5. response.setBytes(new byte[]{});
  6. response.setSource(request.getDestination());
  7. response.setSourcePort(request.getDestinationPort());
  8. response.setDestination(request.getSource());
  9. response.setDestinationPort(request.getSourcePort());
  10. return response;
  11. }
  12. }

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

  1. private Response responseFor(final Request request) {
  2. Response response = new Response(ResponseCode.CONTENT);
  3. response.setMID(request.getMID());
  4. response.setToken(request.getToken());
  5. response.setBytes(new byte[]{});
  6. response.setSource(request.getDestination());
  7. response.setSourcePort(request.getDestinationPort());
  8. response.setDestination(request.getSource());
  9. response.setDestinationPort(request.getSourcePort());
  10. return response;
  11. }
  12. }

相关文章