Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / resource / csdk / security / include / internal / doxmresource.h
1 //******************************************************************
2 //
3 // Copyright 2015 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 IOTVT_SRM_DOXM_H
22 #define IOTVT_SRM_DOXM_H
23
24 #include "octypes.h"
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 /**
31  * Initialize DOXM resource by loading data from persistent storage.
32  *
33  * @retval  OC_STACK_OK for Success, otherwise some error value
34  */
35 OCStackResult InitDoxmResource();
36
37 /**
38  * Perform cleanup for DOXM resources.
39  *
40  * @retval  OC_STACK_OK for Success, otherwise some error value
41  */
42 OCStackResult DeInitDoxmResource();
43
44 /**
45  * This method is used by SRM to retrieve DOXM resource data..
46  *
47  * @retval  reference to @ref OicSecDoxm_t, binary format of Doxm resource data
48  */
49 const OicSecDoxm_t* GetDoxmResourceData();
50
51 /**
52  * This method converts JSON DOXM into binary DOXM.
53  * The JSON DOXM can be from persistent database or
54  * or received as PUT/POST request.
55  *
56  * @param[in] jsonStr  doxm data in json string.
57  * @return pointer to OicSecDoxm_t.
58  *
59  * @note Caller needs to invoke OCFree after done
60  *       using the return pointer
61  */
62 OicSecDoxm_t * JSONToDoxmBin(const char * jsonStr);
63
64 /**
65  * This method converts DOXM data into JSON format.
66  * Caller needs to invoke 'free' when finished done using
67  * return string
68  *
69  * @param[in] doxm  Pointer to OicSecDoxm_t.
70  * @return pointer to json string.
71  *
72  * @note Caller needs to invoke OCFree after done
73  *       using the return pointer
74  */
75 char * BinToDoxmJSON(const OicSecDoxm_t * doxm);
76
77 /**
78  * This method returns the SRM device ID for this device.
79  *
80  * @retval  OC_STACK_OK for Success, otherwise some error value
81  */
82 OCStackResult GetDoxmDeviceID(OicUuid_t *deviceID);
83
84 /**
85  * @brief Gets the OicUuid_t value for the owner of this device.
86  *
87  * @return OC_STACK_OK if devOwner is a valid UUID, otherwise OC_STACK_ERROR.
88  */
89 OCStackResult GetDoxmDevOwnerId(OicUuid_t *devOwner);
90
91 /** This function deallocates the memory for OicSecDoxm_t .
92  *
93  * @param[in] doxm  Pointer to OicSecDoxm_t.
94  */
95 void DeleteDoxmBinData(OicSecDoxm_t* doxm);
96
97
98 #ifdef __cplusplus
99 }
100 #endif
101
102 #endif //IOTVT_SRM_DOXMR_H
103
104