Implement RD delete.
[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  * Delete the RD resources
51  *
52  * @param deviceId of the device containing the resource(s) to be deleted.
53  * @param instanceIds the resource(s) to be deleted.  If NULL then all resources
54  *                    belonging to the device will be deleted.
55  * @param nInstanceIds the number of instanceIds
56  *
57  * @return ::OC_STACK_OK in case of success or else other value.
58  */
59 OCStackResult OCRDDatabaseDeleteResources(const char *deviceId, const uint8_t *instanceIds,
60                                           uint8_t nInstanceIds);
61
62 /**
63  * Close the RD publish database.
64  *
65  * @return ::OC_STACK_OK in case of success or else other value.
66  */
67 OCStackResult OCRDDatabaseClose();
68
69 #endif
70
71 #ifdef __cplusplus
72 }
73 #endif
74
75 #endif