1 //******************************************************************
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21 #ifndef OC_RESOURCEHANDLER_H
22 #define OC_RESOURCEHANDLER_H
25 #include "ocstackinternal.h"
26 #include "ocserverrequest.h"
33 * Common JSON string components used by the stack to build JSON strings.
34 * These details are exposed in ocstackconfig.h file in the form of documentation.
35 * Remember to update the documentation there if these are changed.
37 #define OC_JSON_PREFIX "{\"oic\":["
38 #define OC_JSON_PREFIX_LEN (sizeof(OC_JSON_PREFIX) - 1)
39 #define OC_JSON_SUFFIX "]}"
40 #define OC_JSON_SUFFIX_LEN (sizeof(OC_JSON_SUFFIX) - 1)
41 #define OC_JSON_SEPARATOR ','
42 #define OC_JSON_SEPARATOR_STR ","
43 #define OC_KEY_VALUE_DELIMITER "="
46 * Static values for various JSON attributes.
48 #define OC_RESOURCE_OBSERVABLE 1
49 #define OC_RESOURCE_SECURE 1
52 * OIC Virtual resources supported by every OIC device.
68 /** "/oic/res/d/type" .*/
69 OC_RESOURCE_TYPES_URI,
70 #ifdef ROUTING_GATEWAY
71 /** "/oic/gateway" .*/
86 OC_KEEPALIVE_RESOURCE_URI,
89 /** Max items in the list */
90 OC_MAX_VIRTUAL_RESOURCES //<s Max items in the list
95 * The type of query a request/response message is.
99 STACK_RES_DISCOVERY_NOFILTER = 0,
100 STACK_RES_DISCOVERY_IF_FILTER,
101 STACK_RES_DISCOVERY_RT_FILTER,
102 STACK_DEVICE_DISCOVERY_DI_FILTER,
103 STACK_DEVICE_DISCOVERY_DN_FILTER
107 * The type of handling required to handle a request.
111 OC_RESOURCE_VIRTUAL = 0,
112 OC_RESOURCE_NOT_COLLECTION_WITH_ENTITYHANDLER,
113 OC_RESOURCE_NOT_COLLECTION_DEFAULT_ENTITYHANDLER,
114 OC_RESOURCE_COLLECTION_WITH_ENTITYHANDLER,
115 OC_RESOURCE_COLLECTION_DEFAULT_ENTITYHANDLER,
116 OC_RESOURCE_DEFAULT_DEVICE_ENTITYHANDLER,
117 OC_RESOURCE_NOT_SPECIFIED
121 * Default entity handler (ie. callback) to be used for resources with
124 OCEntityHandlerResult defaultResourceEHandler(OCEntityHandlerFlag flag,
125 OCEntityHandlerRequest * request, void* callbackParam);
128 * Find and retrieve pointer to a resource associated with a specific resource
130 * @return pointer to found resource
132 OCResource *FindResourceByUri(const char* resourceUri);
135 * This function checks whether the specified resource URI aligns with a pre-existing
136 * virtual resource; returns false otherwise.
137 * @return true or false.
139 bool IsVirtualResource(const char* resourceUri);
142 * Parameter @ref handling returns by-reference the type of resource handling
143 * required by the internal stack based on the specified @ref request.
144 * @return ::OC_STACK_OK for Success, otherwise some error value
146 OCStackResult DetermineResourceHandling (const OCServerRequest *request,
147 ResourceHandling *handling,
148 OCResource **resource);
151 * Processes the specified @ref request based on the type of resource handling
153 * @return ::OC_STACK_OK for Success, otherwise some error value.
155 OCStackResult ProcessRequest(ResourceHandling resHandling,
156 OCResource *resource,
157 OCServerRequest *request);
160 * Internal API used to save all of the platform's information for use in platform
161 * discovery requests.
162 * @return ::OC_STACK_OK for Success, otherwise some error value.
164 OCStackResult SavePlatformInfo(OCPlatformInfo info);
167 * Internal API used to save all of the device's information for use in platform
168 * discovery requests.
169 * @param info Device name is received from the application.
170 * DeviceID, spec version and data model version are initialized by the stack.
171 * @return ::OC_STACK_OK for Success, otherwise some error value.
173 OCStackResult SaveDeviceInfo(OCDeviceInfo info);
176 * Internal API used to clear the platform information.
178 void DeletePlatformInfo();
181 * Internal API used to clear the device information.
183 void DeleteDeviceInfo();
186 * Prepare payload for resource representation.
188 OCStackResult BuildResponseRepresentation(const OCResource *resourcePtr,
189 OCRepPayload** payload, OCDevAddr *devAddr);
192 * A helper function that Maps an @ref OCEntityHandlerResult type to an
193 * @ref OCStackResult type.
195 OCStackResult EntityHandlerCodeToOCStackCode(OCEntityHandlerResult ehResult);
199 #endif // __cplusplus
200 #endif //OC_RESOURCEHANDLER_H