Add ability to manage all widget/applications
[src/app-framework-main.git] / src / afm-udb.h
1 /*
2  Copyright (C) 2015-2019 IoT.bzh
3
4  author: José Bollo <jose.bollo@iot.bzh>
5
6  Licensed under the Apache License, Version 2.0 (the "License");
7  you may not use this file except in compliance with the License.
8  You may obtain a copy of the License at
9
10      http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  See the License for the specific language governing permissions and
16  limitations under the License.
17 */
18
19 struct afm_udb;
20 struct json_object;
21
22 extern struct afm_udb *afm_udb_create(int sys, int usr, const char *prefix);
23 extern void afm_udb_addref(struct afm_udb *afdb);
24 extern void afm_udb_unref(struct afm_udb *afdb);
25 extern int afm_udb_update(struct afm_udb *afdb);
26 extern void afm_udb_set_default_lang(const char *lang);
27 extern struct json_object *afm_udb_applications_private(struct afm_udb *afdb, int all, int uid);
28 extern struct json_object *afm_udb_get_application_private(struct afm_udb *afdb, const char *id, int uid);
29 extern struct json_object *afm_udb_applications_public(struct afm_udb *afdb, int all, int uid, const char *lang);
30 extern struct json_object *afm_udb_get_application_public(struct afm_udb *afdb, const char *id, int uid, const char *lang);
31