/* Copyright 2015 IoT.bzh Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include #include #include #include #include #include #include #include #include "wgt-info.h" #include "af-db.h" struct afapps { struct json_object *pubarr; struct json_object *direct; struct json_object *byapp; }; struct af_db { int refcount; int nrroots; char **roots; struct afapps applications; }; struct af_db *af_db_create() { struct af_db *afdb = malloc(sizeof * afdb); if (afdb == NULL) errno = ENOMEM; else { afdb->refcount = 1; afdb->nrroots = 0; afdb->roots = NULL; afdb->applications.pubarr = NULL; afdb->applications.direct = NULL; afdb->applications.byapp = NULL; } return afdb; } void af_db_addref(struct af_db *afdb) { assert(afdb); afdb->refcount++; } void af_db_unref(struct af_db *afdb) { assert(afdb); if (!--afdb->refcount) { json_object_put(afdb->applications.pubarr); json_object_put(afdb->applications.direct); json_object_put(afdb->applications.byapp); while (afdb->nrroots) free(afdb->roots[--afdb->nrroots]); free(afdb->roots); free(afdb); } } int af_db_add_root(struct af_db *afdb, const char *path) { int i, n; char *r, **roots; assert(afdb); /* don't depend on the cwd and unique name */ r = realpath(path, NULL); if (!r) return -1; /* avoiding duplications */ n = afdb->nrroots; roots = afdb->roots; for (i = 0 ; i < n ; i++) { if (!strcmp(r, roots[i])) { free(r); return 0; } } /* add */ roots = realloc(roots, (n + 1) * sizeof(roots[0])); if (!roots) { free(r); errno = ENOMEM; return -1; } roots[n++] = r; afdb->roots = roots; afdb->nrroots = n; return 0; } static int json_add(struct json_object *obj, const char *key, struct json_object *val) { json_object_object_add(obj, key, val); return 0; } static int json_add_str(struct json_object *obj, const char *key, const char *val) { struct json_object *str = json_object_new_string (val ? val : ""); return str ? json_add(obj, key, str) : -1; } static int json_add_int(struct json_object *obj, const char *key, int val) { struct json_object *v = json_object_new_int (val); return v ? json_add(obj, key, v) : -1; } static int addapp(struct afapps *apps, const char *path) { struct wgt_info *info; const struct wgt_desc *desc; const struct wgt_desc_feature *feat; struct json_object *priv = NULL, *pub, *bya, *plugs, *str; char *appid, *end; /* connect to the widget */ info = wgt_info_createat(AT_FDCWD, path, 0, 1, 0); if (info == NULL) goto error; desc = wgt_info_desc(info); /* create the application id */ appid = alloca(2 + strlen(desc->id) + strlen(desc->version)); end = stpcpy(appid, desc->id); *end++ = '@'; strcpy(end, desc->version); /* create the application structure */ priv = json_object_new_object(); if (!priv) goto error2; pub = json_object_new_object(); if (!priv) goto error2; if (json_add(priv, "public", pub)) { json_object_put(pub); goto error2; } plugs = json_object_new_array(); if (!priv) goto error2; if (json_add(priv, "plugins", plugs)) { json_object_put(plugs); goto error2; } if(json_add_str(priv, "id", desc->id) || json_add_str(priv, "path", path) || json_add_str(priv, "content", desc->content_src) || json_add_str(priv, "type", desc->content_type) || json_add_str(pub, "id", appid) || json_add_str(pub, "version", desc->version) || json_add_int(pub, "width", desc->width) || json_add_int(pub, "height", desc->height) || json_add_str(pub, "name", desc->name) || json_add_str(pub, "description", desc->description) || json_add_str(pub, "shortname", desc->name_short) || json_add_str(pub, "author", desc->author)) goto error2; feat = desc->features; while (feat) { static const char prefix[] = FWK_PREFIX_PLUGIN; if (!memcmp(feat->name, prefix, sizeof prefix - 1)) { str = json_object_new_string (feat->name + sizeof prefix - 1); if (str == NULL) goto error2; if (json_object_array_add(plugs, str)) { json_object_put(str); goto error2; } } feat = feat->next; } /* record the application structure */ if (!json_object_object_get_ex(apps->byapp, desc->id, &bya)) { bya = json_object_new_object(); if (!bya) goto error2; if (json_add(apps->byapp, desc->id, bya)) { json_object_put(bya); goto error2; } } if (json_add(apps->direct, appid, priv)) goto error2; json_object_get(priv); if (json_add(bya, desc->version, priv)) { json_object_put(priv); goto error2; } if (json_object_array_add(apps->pubarr, pub)) goto error2; wgt_info_unref(info); return 0; error2: json_object_put(priv); wgt_info_unref(info); error: return -1; } struct enumdata { char path[PATH_MAX]; int length; struct afapps apps; }; static int enumentries(struct enumdata *data, int (*callto)(struct enumdata *)) { DIR *dir; int rc; char *beg, *end; struct dirent entry, *e; /* opens the directory */ dir = opendir(data->path); if (!dir) return -1; /* prepare appending entry names */ beg = data->path + data->length; *beg++ = '/'; /* enumerate entries */ rc = readdir_r(dir, &entry, &e); while (!rc && e) { if (entry.d_name[0] != '.' || (entry.d_name[1] && (entry.d_name[1] != '.' || entry.d_name[2]))) { /* prepare callto */ end = stpcpy(beg, entry.d_name); data->length = end - data->path; /* call the function */ rc = callto(data); if (rc) break; } rc = readdir_r(dir, &entry, &e); } closedir(dir); return rc; } static int recordapp(struct enumdata *data) { return addapp(&data->apps, data->path); } /* enumerate the versions */ static int enumvers(struct enumdata *data) { int rc = enumentries(data, recordapp); return !rc || errno != ENOTDIR ? 0 : rc; } /* regenerate the list of applications */ int af_db_update_applications(struct af_db *afdb) { int rc, iroot; struct enumdata edata; struct afapps oldapps; /* create the result */ edata.apps.pubarr = json_object_new_array(); edata.apps.direct = json_object_new_object(); edata.apps.byapp = json_object_new_object(); if (edata.apps.pubarr == NULL || edata.apps.direct == NULL || edata.apps.byapp == NULL) { errno = ENOMEM; goto error; } /* for each root */ for (iroot = 0 ; iroot < afdb->nrroots ; iroot++) { edata.length = stpcpy(edata.path, afdb->roots[iroot]) - edata.path; assert(edata.length < sizeof edata.path); /* enumerate the applications */ rc = enumentries(&edata, enumvers); if (rc) goto error; } /* commit the result */ oldapps = afdb->applications; afdb->applications = edata.apps; json_object_put(oldapps.pubarr); json_object_put(oldapps.direct); json_object_put(oldapps.byapp); return 0; error: json_object_put(edata.apps.pubarr); json_object_put(edata.apps.direct); json_object_put(edata.apps.byapp); return -1; } int af_db_ensure_applications(struct af_db *afdb) { return afdb->applications.pubarr ? 0 : af_db_update_applications(afdb); } struct json_object *af_db_application_list(struct af_db *afdb) { return af_db_ensure_applications(afdb) ? NULL : afdb->applications.pubarr; } struct json_object *af_db_get_application(struct af_db *afdb, const char *id) { struct json_object *result; if (!af_db_ensure_applications(afdb) && json_object_object_get_ex(afdb->applications.direct, id, &result)) return result; return NULL; } struct json_object *af_db_get_application_public(struct af_db *afdb, const char *id) { struct json_object *result = af_db_get_application(afdb, id); return result && json_object_object_get_ex(result, "public", &result) ? result : NULL; } #if defined(TESTAPPFWK) #include int main() { struct af_db *afdb = af_db_create(); af_db_add_root(afdb,FWK_APP_DIR); af_db_update_applications(afdb); printf("array = %s\n", json_object_to_json_string_ext(afdb->applications.pubarr, 3)); printf("direct = %s\n", json_object_to_json_string_ext(afdb->applications.direct, 3)); printf("byapp = %s\n", json_object_to_json_string_ext(afdb->applications.byapp, 3)); return 0; } #endif