Implements OIC/OCF resource models for cloud.
[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.ServerSystem;
28 import org.iotivity.cloud.base.server.CoapServer;
29 import org.iotivity.cloud.rdserver.resources.directory.rd.ResourceDirectoryResource;
30 import org.iotivity.cloud.rdserver.resources.directory.res.DiscoveryResource;
31 import org.iotivity.cloud.rdserver.resources.presence.device.DevicePresenceResource;
32 import org.iotivity.cloud.rdserver.resources.presence.resource.ResPresenceResource;
33 import org.iotivity.cloud.util.ErrorLogger;
34 import org.iotivity.cloud.util.FileLogger;
35 import org.iotivity.cloud.util.Logger;
36
37 public class ResourceDirectoryServer {
38
39     public static void main(String[] args) throws Exception {
40         System.setOut(FileLogger.createLoggingProxy(System.out));
41
42         System.out.println("-----RD SERVER-----");
43
44         if (args.length != 2) {
45             Logger.e("coap server port and TLS mode required\n"
46                     + "ex) 5684 0\n");
47             return;
48         }
49
50         ErrorLogger.Init();
51
52         ServerSystem serverSystem = new ServerSystem();
53
54         serverSystem.addResource(new ResourceDirectoryResource());
55         serverSystem.addResource(new DiscoveryResource());
56         serverSystem.addResource(new DevicePresenceResource());
57         serverSystem.addResource(new ResPresenceResource());
58
59         serverSystem.addServer(new CoapServer(
60                 new InetSocketAddress(Integer.parseInt(args[0]))));
61
62         boolean tlsMode = Integer.parseInt(args[1]) == 1;
63
64         serverSystem.startSystem(tlsMode);
65
66         Scanner in = new Scanner(System.in);
67
68         System.out.println("press 'q' to terminate");
69
70         while (!in.nextLine().equals("q"));
71
72         in.close();
73
74         System.out.println("Terminating...");
75
76         serverSystem.stopSystem();
77
78         System.out.println("Terminated");
79     }
80 }