Repo Merge: Moving resource API down a directory
[platform/upstream/iotivity.git] / resource / csdk / stack / samples / linux / SimpleClientServer / occlient.h
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 #ifndef OCCLIENT_H_
22 #define OCCLIENT_H_
23
24 #include "ocstack.h"
25
26
27 //-----------------------------------------------------------------------------
28 // Defines
29 //-----------------------------------------------------------------------------
30 #define TAG "occlient"
31 #define CTX_VAL 0x99
32 #ifndef MAX_LENGTH_IPv4_ADDR
33 #define MAX_LENGTH_IPv4_ADDR 16
34 #endif
35
36 //-----------------------------------------------------------------------------
37 // Typedefs
38 //-----------------------------------------------------------------------------
39
40 /**
41  * List of methods that can be inititated from the client
42  */
43 typedef enum {
44     TEST_DISCOVER_REQ = 1,
45     TEST_GET_REQ_NON,
46     TEST_PUT_REQ_NON,
47     TEST_POST_REQ_NON,
48     TEST_DELETE_REQ_NON,
49     TEST_OBS_REQ_NON,
50     TEST_GET_UNAVAILABLE_RES_REQ_NON,
51     TEST_GET_REQ_CON,
52     TEST_POST_REQ_CON,
53     TEST_DELETE_REQ_CON,
54     TEST_OBS_REQ_CON,
55 #ifdef WITH_PRESENCE
56     TEST_OBS_PRESENCE,
57 #endif
58     TEST_OBS_REQ_NON_CANCEL_IMM,
59     TEST_GET_REQ_NON_WITH_VENDOR_HEADER_OPTIONS,
60     MAX_TESTS
61 } CLIENT_TEST;
62
63 #ifdef WITH_PRESENCE
64 int InitPresence();
65 #endif
66
67 //----------------------------------------------------------------------------
68 // Function prototype
69 //----------------------------------------------------------------------------
70
71 /* call getResult in common.cpp to get the result in string format. */
72 const char *getResult(OCStackResult result);
73
74 /* Get the IP address of the server */
75 std::string getIPAddrTBServer(OCClientResponse * clientResponse);
76
77 /* Get the port number the server is listening on */
78 std::string getPortTBServer(OCClientResponse * clientResponse);
79
80 /* Returns the query string for GET and PUT operations */
81 std::string getQueryStrForGetPut(OCClientResponse * clientResponse);
82
83 /* Following are initialization functions for GET, Observe, PUT
84  * POST, Delete & Discovery operations
85  */
86 int InitGetRequestToUnavailableResource();
87 int InitObserveRequest(OCQualityOfService qos);
88 int InitPutRequest();
89 int InitGetRequest(OCQualityOfService qos, uint8_t withVendorSpecificHeaderOptions);
90 int InitPostRequest(OCQualityOfService qos);
91 int InitDeleteRequest(OCQualityOfService qos);
92 int InitGetRequest(OCQualityOfService qos);
93 int InitDiscovery();
94
95 /* Function to retrieve ip address, port no. of the server
96  *  and query for the operations to be performed.
97  */
98 void parseClientResponse(OCClientResponse * clientResponse);
99
100 /* Call delete operation on already deleted resource */
101 void* RequestDeleteDeathResourceTask(void* myqos);
102
103 /* This method calls OCDoResource() which in turn makes calls
104  * to the lower layers
105  */
106 OCStackResult InvokeOCDoResource(std::ostringstream &query,
107         OCMethod method, OCQualityOfService qos,
108         OCClientResponseHandler cb, OCHeaderOption * options, uint8_t numOptions);
109
110 //-----------------------------------------------------------------------------
111 // Callback functions
112 //-----------------------------------------------------------------------------
113
114 /* Following are callback functions for the  GET, Observe, PUT
115  * POST, Delete, Presence & Discovery operations
116  */
117 OCStackApplicationResult putReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse);
118
119 OCStackApplicationResult postReqCB(void *ctx, OCDoHandle handle, OCClientResponse *clientResponse);
120
121 OCStackApplicationResult getReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse);
122
123 OCStackApplicationResult obsReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse);
124
125 OCStackApplicationResult presenceCB(void* ctx,
126             OCDoHandle handle, OCClientResponse * clientResponse);
127
128 OCStackApplicationResult deleteReqCB(void *ctx,
129             OCDoHandle handle, OCClientResponse *clientResponse);
130
131 OCStackApplicationResult discoveryReqCB(void* ctx, OCDoHandle handle,
132         OCClientResponse * clientResponse);
133
134
135 #endif