Merge branch 'master' into windows-port
[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
26 import org.iotivity.cloud.base.CoapServer;
27 import org.iotivity.cloud.base.ResourceManager;
28 import org.iotivity.cloud.rdserver.resources.ResourceDirectoryResource;
29 import org.iotivity.cloud.util.Logger;
30 import org.iotivity.cloud.util.Net;
31
32 public class ResourceDirectoryServer {
33
34     public static void main(String[] args) throws Exception {
35
36         System.out.println("-----RD SERVER-----");
37         String hostAddress = Net.getMyIpAddress();
38         if (hostAddress.equals("") == true) {
39             Logger.e("cannot find host address.");
40             return;
41         }
42
43         if (args.length != 1) {
44             Logger.e("coap server port required");
45             return;
46         }
47
48         ResourceManager resourceManager = null;
49
50         CoapServer coapServer = null;
51
52         coapServer = new CoapServer();
53
54         resourceManager = new ResourceManager();
55
56         coapServer.addHandler(resourceManager);
57
58         resourceManager.registerResource(new ResourceDirectoryResource());
59
60         coapServer
61                 .startServer(new InetSocketAddress(Integer.parseInt(args[0])));
62     }
63
64 }