X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-config.h;h=0c7a87e18f205c2701ffcaa93ad34cb0b7ebcd28;hb=043c27c3a8fd323d59e41288b6fd24f0e9bfa9a3;hp=b430cb0d5de9d24956d7abda93fb9b767b9d9b3b;hpb=dc011f99aed9407c8319b1b70a81f56ad2f02bc8;p=src%2Fapp-framework-binder.git diff --git a/src/afb-config.h b/src/afb-config.h index b430cb0d..0c7a87e1 100644 --- a/src/afb-config.h +++ b/src/afb-config.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015, 2016 "IoT.bzh" + * Copyright (C) 2015-2019 "IoT.bzh" * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,56 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef LOCAL_DEF_H -#define LOCAL_DEF_H #pragma once -/* other definitions --------------------------------------------------- */ +struct json_object; -// Note: because of a bug in libmagic MAGIC_DB NULL should not be used for default -#define MAX_ALIAS 10 // max number of aliases +extern struct json_object *afb_config_parse_arguments(int argc, char **argv); -#define DEFLT_CNTX_TIMEOUT 3600 // default Client Connection Timeout -#define DEFLT_API_TIMEOUT 20 // default Plugin API Timeout [0=NoLimit for Debug Only] -#define DEFLT_CACHE_TIMEOUT 100000 // default Static File Chache [Client Side Cache 100000~=1day] -#define DEFLT_AUTH_TOKEN NULL // expect for debug should == NULL -#define DEFLT_HTTP_TIMEOUT 15 // Max MibMicroHttp timeout - -#define CTX_NBCLIENTS 10 // allow a default of 10 authenticated clients - -struct afb_config_item -{ - struct afb_config_item *previous; - int kind; - char *value; -}; - -// main config structure -struct afb_config -{ - char *console; // console device name (can be a file or a tty) - int httpdPort; - char *ldpaths; // list of plugins directories - char *rootdir; // base dir for files - char *roothttp; // directory for http files - char *rootbase; // Angular HTML5 base URL - char *rootapi; // Base URL for REST APIs - char *sessiondir; // where to store mixer session files - char *token; // initial authentication token [default NULL no session] - int background; // run in backround mode - int readyfd; // a #fd to signal when ready to serve - int cacheTimeout; - int apiTimeout; - int cntxTimeout; // Client Session Context timeout - int nbSessionMax; // max count of sessions - int mode; // mode of listening - int aliascount; - struct afb_config_item *items; - struct { - char *url; - char *path; - } aliasdir[MAX_ALIAS]; // alias mapping for icons,apps,... -}; - -#endif /* LOCAL_DEF_H */