Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / cloud / resourcedirectory / src / main / java / org / iotivity / cloud / rdserver / ResourceDirectoryServer.java
1 /*
2  * //******************************************************************
3  * //
4  * // Copyright 2016 Samsung Electronics All Rights Reserved.
5  * //
6  * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
7  * //
8  * // Licensed under the Apache License, Version 2.0 (the "License");
9  * // you may not use this file except in compliance with the License.
10  * // You may obtain a copy of the License at
11  * //
12  * //      http://www.apache.org/licenses/LICENSE-2.0
13  * //
14  * // Unless required by applicable law or agreed to in writing, software
15  * // distributed under the License is distributed on an "AS IS" BASIS,
16  * // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * // See the License for the specific language governing permissions and
18  * // limitations under the License.
19  * //
20  * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21  */
22 package org.iotivity.cloud.rdserver;
23
24 import java.net.InetSocketAddress;
25 import java.util.Scanner;
26
27 import org.iotivity.cloud.base.CoapServer;
28 import org.iotivity.cloud.base.ResourceManager;
29 import org.iotivity.cloud.rdserver.resources.ResourceDirectoryResource;
30 import org.iotivity.cloud.util.Logger;
31
32 public class ResourceDirectoryServer {
33
34     public static void main(String[] args) throws Exception {
35
36         System.out.println("-----RD SERVER-----");
37
38         if (args.length != 1) {
39             Logger.e("coap server port required");
40             return;
41         }
42
43         ResourceManager resourceManager = null;
44
45         CoapServer coapServer = null;
46
47         coapServer = new CoapServer();
48
49         resourceManager = new ResourceManager();
50
51         coapServer.addHandler(resourceManager);
52
53         resourceManager.registerResource(new ResourceDirectoryResource());
54
55         coapServer
56                 .startServer(new InetSocketAddress(Integer.parseInt(args[0])));
57
58         Scanner in = new Scanner(System.in, "UTF-8");
59
60         System.out.println("press 'q' to terminate");
61
62         while (!in.nextLine().equals("q"));
63
64         in.close();
65
66         System.out.println("Terminating...");
67
68         coapServer.stopServer();
69
70         System.out.println("Terminated");
71     }
72 }