Imported Upstream version 1.0.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 ("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     OC_LOG_V(INFO, TAG, "Starting ocserver on address %s:%d",addr,port);
52     if (OCInit(NULL, 0, OC_SERVER) != OC_STACK_OK) {
53         OC_LOG(ERROR, TAG, "OCStack init error");
54         return 0;
55     }
56
57     /*
58      * Declare and create the example resource: Light
59      */
60     if(createLightResource() != OC_STACK_OK)
61     {
62         OC_LOG(ERROR, TAG, "OCStack cannot create resource...");
63     }
64
65     // Break from loop with Ctrl-C
66     OC_LOG(INFO, TAG, "Entering ocserver main loop...");
67     signal(SIGINT, handleSigInt);
68     while (!gQuitFlag) {
69
70         if (OCProcess() != OC_STACK_OK) {
71             OC_LOG(ERROR, TAG, "OCStack process error");
72             return 0;
73         }
74
75         sleep(1);
76     }
77
78     OC_LOG(INFO, TAG, "Exiting ocserver main loop...");
79
80     if (OCStop() != OC_STACK_OK) {
81         OC_LOG(ERROR, TAG, "OCStack process error");
82     }
83
84     return 0;
85 }
86
87 OCStackResult createLightResource() {
88     Light.power = false;
89     OCStackResult res = OCCreateResource(&Light.handle,
90                     "core.light",
91                     "core.rw",
92                     "/a/light",
93                     0,
94                     OC_DISCOVERABLE|OC_OBSERVABLE);
95     return res;
96 }
97