d5729802aa61e24007da1e34c86976c78aff6534
[platform/core/appfw/aul-1.git] / parser / metadata / inc / metadata_plugin_parser_db.h
1 /*
2  * Copyright (c) 2016 - 2020 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __METADATA_PLUGIN_PARSER_DB_H__
18 #define __METADATA_PLUGIN_PARSER_DB_H__
19
20 int metadata_parser_db_insert_alias_info(const char *alias_appid,
21                 const char *appid);
22
23 int metadata_parser_db_delete_alias_info(const char *appid);
24
25 int metadata_parser_db_insert_allowed_info(const char *appid,
26                 const char *allowed_appid);
27
28 int metadata_parser_db_delete_allowed_info(const char *appid);
29
30 int metadata_parser_db_init(void);
31
32 void metadata_parser_db_fini(void);
33
34 int metadata_parser_db_begin_transaction(void);
35
36 int metadata_parser_db_end_transaction(void);
37
38 int metadata_parser_db_rollback(void);
39
40 #endif /* __METADATA_PLUGIN_PARSER_DB_H__ */