0de8db53aa87f4e7436f495d82054bd7cd5e5f43
[platform/upstream/iotivity.git] / resource / csdk / stack / test / linux / occlient.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 <stdlib.h>
24 #include <string.h>
25 #include <signal.h>
26 #ifdef HAVE_UNISTD_H
27 #include <unistd.h>
28 #endif
29 #ifdef HAVE_WINDOWS_H
30 #include <windows.h>
31 #endif
32 #include <ocstack.h>
33 #include <logger.h>
34
35 #define TAG ("occlient")
36
37 int gQuitFlag = 0;
38
39 /* SIGINT handler: set gQuitFlag to 1 for graceful termination */
40 void handleSigInt(int signum) {
41     if (signum == SIGINT) {
42         gQuitFlag = 1;
43     }
44 }
45
46 // This is a function called back when a device is discovered
47 OCStackApplicationResult applicationDiscoverCB(
48         OCClientResponse * clientResponse) {
49     (void)clientResponse;
50     OIC_LOG(INFO, TAG, "Entering applicationDiscoverCB (Application Layer CB)");
51     OIC_LOG_V(INFO, TAG, "Device =============> Discovered %s @ %s:%d",
52                                     clientResponse->resourceUri,
53                                     clientResponse->devAddr.addr,
54                                     clientResponse->devAddr.port);
55     //return OC_STACK_DELETE_TRANSACTION;
56     return OC_STACK_KEEP_TRANSACTION;
57 }
58
59 int main() {
60     OIC_LOG_V(INFO, TAG, "Starting occlient");
61
62     /* Initialize OCStack*/
63     if (OCInit(NULL, 0, OC_CLIENT) != OC_STACK_OK) {
64         OIC_LOG(ERROR, TAG, "OCStack init error");
65         return 0;
66     }
67
68     /* Start a discovery query*/
69     char szQueryUri[MAX_QUERY_LENGTH] = { 0 };
70     strcpy(szQueryUri, OC_MULTICAST_DISCOVERY_URI);
71     if (OCDoResource(NULL, OC_REST_GET, szQueryUri, 0, 0, 
72             CT_DEFAULT, OC_LOW_QOS, 0, 0, 0) != OC_STACK_OK) {
73         OIC_LOG(ERROR, TAG, "OCStack resource error");
74         return 0;
75     }
76
77     // Break from loop with Ctrl+C
78     OIC_LOG(INFO, TAG, "Entering occlient main loop...");
79     signal(SIGINT, handleSigInt);
80     while (!gQuitFlag) {
81
82         if (OCProcess() != OC_STACK_OK) {
83             OIC_LOG(ERROR, TAG, "OCStack process error");
84             return 0;
85         }
86
87         sleep(1);
88     }
89
90     OIC_LOG(INFO, TAG, "Exiting occlient main loop...");
91
92     if (OCStop() != OC_STACK_OK) {
93         OIC_LOG(ERROR, TAG, "OCStack stop error");
94     }
95
96     return 0;
97 }
98