Imported Upstream version 0.9.1
[platform/upstream/iotivity.git] / resource / csdk / stack / samples / linux / SimpleClientServer / occlientslow.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_BASICOPS_H_
22 #define OCCLIENT_BASICOPS_H_
23
24 #include "ocstack.h"
25
26 //-----------------------------------------------------------------------------
27 // Defines
28 //-----------------------------------------------------------------------------
29 #define TAG "occlientslow"
30 #define DEFAULT_CONTEXT_VALUE 0x99
31 #ifndef MAX_LENGTH_IPv4_ADDR
32 #define MAX_LENGTH_IPv4_ADDR 16
33 #endif
34
35 //-----------------------------------------------------------------------------
36 // Typedefs
37 //-----------------------------------------------------------------------------
38
39 /**
40  * List of methods that can be inititated from the client
41  */
42 typedef enum
43 {
44     TEST_DISCOVER_REQ = 1,
45     TEST_NON_CON_OP,
46     TEST_CON_OP,
47     MAX_TESTS
48 } CLIENT_TEST;
49
50 //-----------------------------------------------------------------------------
51 // Function prototype
52 //-----------------------------------------------------------------------------
53
54 /* call getResult in common.cpp to get the result in string format. */
55 const char *getResult(OCStackResult result);
56
57 /* Get the IP address of the server */
58 std::string getIPAddrTBServer(OCClientResponse * clientResponse);
59
60 /* Get the port number the server is listening on */
61 std::string getPortTBServer(OCClientResponse * clientResponse);
62
63 /* Returns the query string for GET and PUT operations */
64 std::string getQueryStrForGetPut(OCClientResponse * clientResponse);
65
66 /* Following are initialization functions for GET, PUT
67  * POST & Discovery operations
68  */
69 int InitGetRequest(OCQualityOfService qos);
70 int InitDiscovery();
71
72 /* Function to retrieve ip address, port no. of the server
73  *  and query for the operations to be performed.
74  */
75 void parseClientResponse(OCClientResponse * clientResponse);
76
77 /* This function calls OCDoResource() which in turn makes calls
78  * to the lower layers
79  */
80 OCStackResult InvokeOCDoResource(std::ostringstream &query,
81         OCMethod method, OCQualityOfService qos,
82         OCClientResponseHandler cb, OCHeaderOption * options, uint8_t numOptions);
83
84 //-----------------------------------------------------------------------------
85 // Callback functions
86 //-----------------------------------------------------------------------------
87
88 /* Following are callback functions for the  GET and Discovery operations
89  */
90
91 OCStackApplicationResult getReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse);
92
93 OCStackApplicationResult discoveryReqCB(void* ctx, OCDoHandle handle,
94         OCClientResponse * clientResponse);
95
96 #endif
97