Resolve circular dependency for resource directory server
[platform/upstream/iotivity.git] / resource / csdk / resource-directory / include / rd_database.h
1 //******************************************************************
2 //
3 // Copyright 2016 Samsung Electronics 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 OC_RESOURCE_DIRECTORY_DATABASE_H_
22 #define OC_RESOURCE_DIRECTORY_DATABASE_H_
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif // __cplusplus
27
28 #ifdef RD_SERVER
29
30 /**
31  * Opens the RD publish database.
32  *
33  * @param path to the database file.
34  *
35  * @return ::OC_STACK_OK in case of success or else other value.
36  */
37 OCStackResult OCRDDatabaseInit(const char *path);
38
39 /**
40  * Stores in database the published resource.
41  *
42  * @param payload is the the published resource payload.
43  * @param address provide information about endpoint connectivity details.
44  *
45  * @return ::OC_STACK_OK in case of success or else other value.
46  */
47 OCStackResult OCRDDatabaseStoreResources(const OCRepPayload *payload, const OCDevAddr *address);
48
49 /**
50  * Updates the RD resource
51  *
52  * @param deviceId of the device for which resources will be update.
53  *
54  * @return ::OC_STACK_OK in case of success or else other value.
55  */
56 OCStackResult OCRDDatabaseUpdateDevice(const char *deviceId);
57
58 /**
59  * Delete the RD resource
60  *
61  * @param deviceId of the device for which resources will be deleted.
62  *
63  * @return ::OC_STACK_OK in case of success or else other value.
64  */
65 OCStackResult OCRDDatabaseDeleteDevice(const char *deviceId);
66
67 /**
68  * Close the RD publish database.
69  *
70  * @return ::OC_STACK_OK in case of success or else other value.
71  */
72 OCStackResult OCRDDatabaseClose();
73
74 #endif
75
76 #ifdef __cplusplus
77 }
78 #endif
79
80 #endif