物联网协议Coap之Californium CoapServer解析

打印 上一主题 下一主题

主题 936|帖子 936|积分 2808



目录

前言
一、CoapServer对象
1、类对象定义
2、ServerInterface接口
3、CoapServer对象
 二、CoapServer服务运行分析
1、CoapServer对象实例化
1.1 调用构造方法
1.2 生成全局配置
1.3 创建Resource对象
1.4-1.8、配置消息通报器、添加CoapResource
1.9-1.12 创建线程池
1.3-1.7 端口绑定、服务配置
2、添加处置惩罚器
3、服务启动
 1.1-1.5、绑定端口及相关服务
1.7-1.8 循环启动EndPoint
4、服务运行
总结


前言

        在之前的博客物联网协议之COAP简介及Java实践中,我们采用使用Java开辟的Californium框架下进行Coap协议的Server端和Client的协议开辟。由于最根本的入门介绍博客,我们没有对它的CoapServer的实现进行深条理的分析。众所周知,Coap和Http协议类似,是分为Server端和Client端的,Server负责吸收哀求,同时负责业务哀求的的处置惩罚。而Client负责发起服务,同时吸收Server端返回的响应。
        这里将起首介绍CoapServer的内容,本文将采用OOP的筹划方法对Californium中Server的实现和启动进行源码级的分析,让读者对Coap的实现有进一步的了解,资助把握其筹划和实现细节。
一、CoapServer对象

        CoapServer对象是Californium中的焦点对象,主要功能作用是创建一个Coap协议的服务端,在指定端口和设置资源处置惩罚控制器后,就可以用于吸收来自客户端的哀求。CoapServer的基本架构如下:
  1. * +------------------------------------- CoapServer --------------------------------------+
  2. * |                                                                                       |
  3. * |                               +-----------------------+                               |
  4. * |                               |    MessageDeliverer   +--> (Resource Tree)            |
  5. * |                               +---------A-A-A---------+                               |
  6. * |                                         | | |                                         |
  7. * |                                         | | |                                         |
  8. * |                 .-------->>>------------' | '--------<<<------------.                 |
  9. * |                /                          |                          \                |
  10. * |               |                           |                           |               |
  11. * |             * A                         * A                         * A               |
  12. * | +-----------------------+   +-----------------------+   +-----------------------+     |
  13. * | |        Endpoint       |   |        Endpoint       |   |      Endpoint         |     |
  14. * | +-----------------------+   +-----------------------+   +-----------------------+     |
  15. * +------------v-A--------------------------v-A-------------------------v-A---------------+
  16. *              v A                          v A                         v A            
  17. *              v A                          v A                         v A         
  18. *           (Network)                    (Network)                   (Network)
  19. *
复制代码
1、类对象定义

        起首我们来看一下CoapServer的类图,从它的类图看一下涉及的类的实现关系。详细如下图所示:

         从上图可以很清晰的看到CoapServer对象的依赖关系,它是ServerInterface的实现类,内部定义了RootResource,它是CoapResource的一个子类。
2、ServerInterface接口

        ServerInterface接口中定义了CoapServer的方法,比如启动、停止、移除、添加服务实例、销毁、addEndpoint等等。来看看其详细的定义:
  1. package org.eclipse.californium.core.server;
  2. import java.net.InetSocketAddress;
  3. import java.util.List;
  4. import org.eclipse.californium.core.network.Endpoint;
  5. import org.eclipse.californium.core.server.resources.Resource;
  6. public interface ServerInterface {
  7.         /**
  8.          * 启动服务
  9.          */
  10.         void start();
  11.         /**
  12.          *停止服务
  13.          */
  14.         void stop();
  15.        
  16.         /**
  17.          * 销毁服务
  18.          */
  19.         void destroy();
  20.        
  21.         /**
  22.          * 增加资源到服务实例中
  23.          */
  24.         ServerInterface add(Resource... resources);
  25.        
  26.         /**
  27.          * 从服务实例中移除资源
  28.          */
  29.         boolean remove(Resource resource);
  30.        
  31.         void addEndpoint(Endpoint endpoint);
  32.         List<Endpoint> getEndpoints();
  33.         Endpoint getEndpoint(InetSocketAddress address);
  34.        
  35.         Endpoint getEndpoint(int port);
  36.        
  37. }
复制代码
序号方法阐明
1void start();Starts the server by starting all endpoints this server is assigned to Each endpoint binds to its port. If no endpoint is assigned to the  server, the server binds to CoAP's default port 5683.
2void stop();Stops the server, i.e. unbinds it from all ports.
3void destroy();Destroys the server, i.e. unbinds from all ports and frees all system resources.
4ServerInterface add(Resource... resources); Adds one or more resources to the server.
5boolean remove(Resource resource); Adds an endpoint for receive and sending CoAP messages on.
6List<Endpoint> getEndpoints();Gets the endpoints this server is bound to.
3、CoapServer对象

        作为ServerInterface的实现子类,我们来看看Server的详细实现,起首来看下类图:

         成员属性:
序号属性阐明
1 Resource rootThe root resource. 
2 NetworkConfig config网络配置对象
3MessageDeliverer delivererThe message deliverer
4List<Endpoint> endpointsThe list of endpoints the server connects to the network.
5ScheduledExecutorService executor;The executor of the server for its endpoints (can be null). 
6boolean runningfalse
7class RootResource extends CoapResource内部实现类
        成员方法除了实现ServerInterface接口的方法之外,还提供以下方法:
序号方法阐明
1Resource getRoot()Gets the root of this server
2Resource createRoot()Creates a root for this server. Can be overridden to create another root.

 二、CoapServer服务运行分析

        在了解了上述的CoapServer的相关接口和类的筹划和实现后,我们可以来跟踪调试一下CoapServer的现实服务运行过程。它的生命周期运行是一个怎么样的过程,通过下面的章节来进行讲解。
1、CoapServer对象实例化

        在之前的代码中,我们对CoapServer对象进行了创建,来看一下关键代码。从使用者的角度来看,这是最简单不过的一个Java对象实例的创建,并没有特别。然而我们要深入到其类的内部实现,明白了解在创建CoapServer的过程中调用了什么逻辑。这里我们将结适时序图的方式进行讲解。
  1. CoapServer server = new CoapServer();// 主机为localhost 端口为默认端口5683
复制代码

 从上面的时序图可以看到,在CoaServer的内部,在创建其实例的时间。其实做了许多的业务调用,大致可以分为18个步骤,下面联合代码进行介绍:
1.1 调用构造方法

  1. /**
  2.          * Constructs a server with the specified configuration that listens to the
  3.          * specified ports after method {@link #start()} is called.
  4.          *
  5.          * @param config the configuration, if <code>null</code> the configuration returned by
  6.          * {@link NetworkConfig#getStandard()} is used.
  7.          * @param ports the ports to bind to
  8.          */
  9.         public CoapServer(final NetworkConfig config, final int... ports) {
  10.                
  11.                 // global configuration that is passed down (can be observed for changes)
  12.                 if (config != null) {
  13.                         this.config = config;
  14.                 } else {
  15.                         this.config = NetworkConfig.getStandard();
  16.                 }
  17.                
  18.                 // resources
  19.                 this.root = createRoot();
  20.                 this.deliverer = new ServerMessageDeliverer(root);
  21.                
  22.                 CoapResource wellKnown = new CoapResource(".well-known");
  23.                 wellKnown.setVisible(false);
  24.                 wellKnown.add(new DiscoveryResource(root));
  25.                 root.add(wellKnown);
  26.                
  27.                 // endpoints
  28.                 this.endpoints = new ArrayList<>();
  29.                 // sets the central thread pool for the protocol stage over all endpoints
  30.                 this.executor = Executors.newScheduledThreadPool(//
  31.                                 this.config.getInt(NetworkConfig.Keys.PROTOCOL_STAGE_THREAD_COUNT), //
  32.                                 new NamedThreadFactory("CoapServer#")); //$NON-NLS-1$
  33.                 // create endpoint for each port
  34.                 for (int port : ports) {
  35.                         CoapEndpoint.CoapEndpointBuilder builder = new CoapEndpoint.CoapEndpointBuilder();
  36.                         builder.setPort(port);
  37.                         builder.setNetworkConfig(config);
  38.                         addEndpoint(builder.build());
  39.                 }
  40.         }
复制代码
1.2 生成全局配置

        在这里,系统会根据传入的参数进行全局配置,如果不传入config,则自动根据默认参数进行系统配置。否则根据传入参数进行配置。在系统分析时可以看到,如果系统第一次运行,配置文件是不存在的,因此在不存在的时间,会将默认配置写入到工程下面的配置文件中。
  1. public static NetworkConfig getStandard() {
  2.                 synchronized (NetworkConfig.class) {
  3.                         if (standard == null)
  4.                                 createStandardWithFile(new File(DEFAULT_FILE_NAME));
  5.                 }
  6.                 return standard;
  7.         }
  8. public static NetworkConfig createWithFile(final File file, final String header, final NetworkConfigDefaultHandler customHandler) {
  9.                 NetworkConfig standard = new NetworkConfig();
  10.                 if (customHandler != null) {
  11.                         customHandler.applyDefaults(standard);
  12.                 }
  13.                 if (file.exists()) {
  14.                         standard.load(file);
  15.                 } else {
  16.                         standard.store(file, header);
  17.                 }
  18.                 return standard;
  19.         }
  20. public void store(File file, String header) {
  21.                 if (file == null) {
  22.                         throw new NullPointerException("file must not be null");
  23.                 } else {
  24.                         try (FileWriter writer = new FileWriter(file)) {
  25.                                 properties.store(writer, header);
  26.                         } catch (IOException e) {
  27.                                 LOGGER.warn("cannot write properties to file {}: {}",
  28.                                                 new Object[] { file.getAbsolutePath(), e.getMessage() });
  29.                         }
  30.                 }
  31.         }
复制代码
1.3 创建Resource对象

        通过Server对象本身提供的createRoot()方法进行Resource对象的创建。
1.4-1.8、配置消息通报器、添加CoapResource

  1. CoapResource wellKnown = new CoapResource(".well-known");
  2. wellKnown.setVisible(false);
  3. wellKnown.add(new DiscoveryResource(root));
  4. root.add(wellKnown);
  5. this.endpoints = new ArrayList<>();
复制代码
1.9-1.12 创建线程池

        这里很告急,通过创建一个容量为16的线程池来进行服务对象的处置惩罚。
  1. // sets the central thread pool for the protocol stage over all endpoints
  2. this.executor=Executors.newScheduledThreadPool(this.config.getInt(NetworkConfig.Keys.PROTOCOL_STAGE_THREAD_COUNT), new NamedThreadFactory("CoapServer#")); //$NON-NLS-1$
复制代码
1.3-1.7 端口绑定、服务配置

        在这里通过for循环的方式,将各个须要处置惩罚的端口与应用步伐进行深度绑定,配置对应的服务。到此,CoapServer对象已经完成了初始创建。
2、添加处置惩罚器

        在创建好了CoapServer对象后,我们使用server.add(new CoapResource())进行服务的绑定,这里的CoapResource其实就是类似于我们常见的Controller类或者servlet。
3、服务启动

下面来看下CoapServer的启动过程,它的启动主要是调用start方法。时序图调用如下图所示:

 1.1-1.5、绑定端口及相关服务

  1. if (endpoints.isEmpty()) {
  2.                         // servers should bind to the configured port (while clients should use an ephemeral port through the default endpoint)
  3.                         int port = config.getInt(NetworkConfig.Keys.COAP_PORT);
  4.                         LOGGER.info("no endpoints have been defined for server, setting up server endpoint on default port {}", port);
  5.                         CoapEndpoint.CoapEndpointBuilder builder = new CoapEndpoint.CoapEndpointBuilder();
  6.                         builder.setPort(port);
  7.                         builder.setNetworkConfig(config);
  8.                         addEndpoint(builder.build());
  9.                 }
复制代码
1.7-1.8 循环启动EndPoint

  1. int started = 0;
  2.                 for (Endpoint ep : endpoints) {
  3.                         try {
  4.                                 ep.start();
  5.                                 // only reached on success
  6.                                 ++started;
  7.                         } catch (IOException e) {
  8.                                 LOGGER.error("cannot start server endpoint [{}]", ep.getAddress(), e);
  9.                         }
  10.                 }
复制代码
每个EndPoint会设置自己的启动方法,
  1. @Override
  2.         public synchronized void start() throws IOException {
  3.                 if (started) {
  4.                         LOGGER.debug("Endpoint at {} is already started", getUri());
  5.                         return;
  6.                 }
  7.                 if (!this.coapstack.hasDeliverer()) {
  8.                         setMessageDeliverer(new ClientMessageDeliverer());
  9.                 }
  10.                 if (this.executor == null) {
  11.                         setExecutor(Executors.newSingleThreadScheduledExecutor(
  12.                                         new DaemonThreadFactory("CoapEndpoint-" + connector + '#')));
  13.                         addObserver(new EndpointObserver() {
  14.                                 @Override
  15.                                 public void started(final Endpoint endpoint) {
  16.                                         // do nothing
  17.                                 }
  18.                                 @Override
  19.                                 public void stopped(final Endpoint endpoint) {
  20.                                         // do nothing
  21.                                 }
  22.                                 @Override
  23.                                 public void destroyed(final Endpoint endpoint) {
  24.                                         executor.shutdown();
  25.                                 }
  26.                         });
  27.                 }
  28.                 try {
  29.                         started = true;
  30.                         matcher.start();
  31.                         connector.start();
  32.                         for (EndpointObserver obs : observers) {
  33.                                 obs.started(this);
  34.                         }
  35.                         startExecutor();
  36.                 } catch (IOException e) {
  37.                         stop();
  38.                         throw e;
  39.                 }
  40.         }
复制代码
4、服务运行

        在经过了上述的实例对象创建、哀求资源绑定、服务启动三个环节,一个可用的CoapServer才算是真正完成。运行终端代码可以看到服务已经正常启动。

         由于篇幅有限,类内里还有其他告急的方法不能逐一讲解,感兴趣的各位,可以在工作中认真分析源代码,真正把握其焦点逻辑,做到胸中有数。
总结

        以上就是本文的主要内容,本文将采用OOP的筹划方法对Californium中Server的实现和启动进行源码级的分析,让读者对Coap的实现有进一步的了解,资助把握其筹划和实现细节。行文仓促,不免有遗漏和不当之处,欢迎各位朋友在批评区品评指正。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

冬雨财经

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表