iotivity 0.9.0
[platform/upstream/iotivity.git] / resource / csdk / stack / test / linux / ocserver.c
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21
22 #include <stdio.h>
23 #include <string.h>
24 #include <stdlib.h>
25 #include <unistd.h>
26 #include <signal.h>
27 #include <stdbool.h>
28 #include <ocstack.h>
29 #include <logger.h>
30
31 #define TAG PCF("ocserver")
32
33 int gQuitFlag = 0;
34 OCStackResult createLightResource();
35
36 typedef struct LIGHTRESOURCE{
37     OCResourceHandle handle;
38     bool power;
39 } LightResource;
40
41 static LightResource Light;
42
43 /* SIGINT handler: set gQuitFlag to 1 for graceful termination */
44 void handleSigInt(int signum) {
45     if (signum == SIGINT) {
46         gQuitFlag = 1;
47     }
48 }
49
50 int main() {
51     uint8_t addr[20];
52     uint16_t port = USE_RANDOM_PORT;
53     uint8_t ifname[] = "eth0";
54
55     /*Get Ip address on defined interface and initialize coap on it with random port number
56      * this port number will be used as a source port in all coap communications*/
57     OCGetInterfaceAddress(ifname, sizeof(ifname), AF_INET, addr, sizeof(addr));
58
59     OC_LOG_V(INFO, TAG, "Starting ocserver on address %s:%d",addr,port);
60     if (OCInit((char *) addr, port, OC_SERVER) != OC_STACK_OK) {
61         OC_LOG(ERROR, TAG, "OCStack init error");
62         return 0;
63     }
64
65     /*
66      * Declare and create the example resource: Light
67      */
68     if(createLightResource() != OC_STACK_OK)
69     {
70         OC_LOG(ERROR, TAG, "OCStack cannot create resource...");
71     }
72
73     // Break from loop with Ctrl-C
74     OC_LOG(INFO, TAG, "Entering ocserver main loop...");
75     signal(SIGINT, handleSigInt);
76     while (!gQuitFlag) {
77
78         if (OCProcess() != OC_STACK_OK) {
79             OC_LOG(ERROR, TAG, "OCStack process error");
80             return 0;
81         }
82
83         sleep(1);
84     }
85
86     OC_LOG(INFO, TAG, "Exiting ocserver main loop...");
87
88     if (OCStop() != OC_STACK_OK) {
89         OC_LOG(ERROR, TAG, "OCStack process error");
90     }
91
92     return 0;
93 }
94
95 OCStackResult createLightResource() {
96     Light.power = false;
97     OCStackResult res = OCCreateResource(&Light.handle,
98                     "core.light",
99                     "core.rw",
100                     "/a/light",
101                     0,
102                     OC_DISCOVERABLE|OC_OBSERVABLE);
103     return res;
104 }