/*********************************************************************************
|
* Copyright: (C) 2019 LingYun IoT System Studio
|
* All rights reserved.
|
*
|
* Filename: conf.c
|
* Description: This file is mqttd configure file parser function
|
*
|
* Version: 1.0.0(2019年06月25日)
|
* Author: Guo Wenxue <guowenxue@gmail.com>
|
* ChangeLog: 1, Release initial version on "2019年06月25日 22时23分55秒"
|
*
|
********************************************************************************/
|
#include "conf.h"
|
#include "lylib/logger.h"
|
#include "lylib/iniparser.h"
|
|
|
int mqttd_parser_conf(const char *conf_file, mqtt_ctx_t *ctx, int debug)
|
{
|
dictionary *ini;
|
char *str;
|
int val;
|
|
memset(ctx, 0, sizeof(*ctx));
|
|
if( !conf_file )
|
{
|
strncpy(ctx->id, "\"x86host02\"", sizeof(ctx->id));
|
|
/* logger settings */
|
//strncpy(ctx->logfile, "/tmp/mqttd.log", sizeof(ctx->logfile));
|
strncpy(ctx->logfile, DBG_LOG_FILE, sizeof(ctx->logfile));
|
ctx->loglevel = LOG_LEVEL_DEBUG;
|
ctx->logsize = 1024;
|
|
if( logger_init(ctx->logfile, ctx->loglevel, ctx->logsize) < 0 )
|
{
|
fprintf(stderr, "Logger system initialise failure\n");
|
return -2;
|
}
|
log_nrml("Logger system initialise ok\n");
|
log_warn("WARNNING: Use default MQTT configure\n");
|
|
/* Broker settings */
|
strncpy(ctx->host, DEF_BORKER_HOSTNAME, sizeof(ctx->host));
|
ctx->port = DEF_BROKER_PORT;
|
log_nrml("Use default broker server [%s:%d]\n", ctx->host, ctx->port);
|
|
strncpy(ctx->uid, DEF_BROKER_USERNAME, sizeof(ctx->uid));
|
strncpy(ctx->pwd, DEF_BROKER_PASSWD, sizeof(ctx->pwd));
|
log_nrml("Use default broker author by [%s:%s]\n", ctx->uid, ctx->pwd);
|
|
ctx->keepalive = DEF_BROKER_KEEPALIVE;
|
log_nrml("Use default broker keepalive timeout [%d] seconds\n", ctx->keepalive);
|
|
/* Subscriber settings */
|
strncpy(ctx->subTopic, DEF_SUBTOPIC, sizeof(ctx->subTopic));
|
ctx->subQos = DEF_SUBQOS;
|
log_nrml("Use default subscriber topic \"%s\" with Qos[%d]\n", ctx->subTopic, ctx->subQos);
|
|
return 0;
|
}
|
|
|
ini = iniparser_load(conf_file);
|
if( !ini )
|
{
|
fprintf(stderr, "ERROR: cannot parse file: '%s'\n", conf_file);
|
return -1;
|
}
|
|
/*+------------------------------------------------------+
|
*| parser logger settings and start logger system |
|
*+------------------------------------------------------+*/
|
if( !debug )
|
{
|
str = iniparser_getstring(ini, "logger:file", "/tmp/mqttd.log");
|
strncpy(ctx->logfile, str, sizeof(ctx->logfile));
|
ctx->logsize = iniparser_getint(ini, "logger:size", 1024);
|
ctx->loglevel = iniparser_getint(ini, "logger:level", LOG_LEVEL_DEBUG);
|
}
|
else
|
{
|
strncpy(ctx->logfile, DBG_LOG_FILE, sizeof(ctx->logfile));
|
ctx->loglevel = LOG_LEVEL_DEBUG;
|
ctx->logsize = 1024;
|
}
|
|
if( logger_init(ctx->logfile, ctx->loglevel, ctx->logsize) < 0 )
|
{
|
fprintf(stderr, "Logger system initialise failure\n");
|
return -2;
|
}
|
|
log_nrml("Logger system initialise ok\n");
|
|
/*+------------------------------------------------------+
|
*| parser production ID |
|
*+------------------------------------------------------+*/
|
|
if( !(str=iniparser_getstring(ini, "common:id", NULL)) )
|
{
|
log_err("ERROR: Parser production ID failure\n");
|
return -2;
|
}
|
snprintf(ctx->id, sizeof(ctx->id), "\"%s\"", str);
|
//strncpy(ctx->id, str, sizeof(ctx->id) );
|
|
log_nrml("Parser production ID [%s]\n", ctx->id);
|
|
|
/*+------------------------------------------------------+
|
*| parser broker settings |
|
*+------------------------------------------------------+*/
|
|
if( !(str=iniparser_getstring(ini, "broker:hostname", NULL)) )
|
{
|
log_err("ERROR: Parser broker server hostname failure\n");
|
return -2;
|
}
|
strncpy(ctx->host, str, sizeof(ctx->host) );
|
|
if( (val=iniparser_getint(ini, "broker:port", -1)) < 0 )
|
{
|
log_err("ERROR: Parser broker server port failure\n");
|
return -2;
|
}
|
ctx->port = val;
|
log_nrml("Parser broker server [%s:%d]\n", ctx->host, ctx->port);
|
|
str=iniparser_getstring(ini, "broker:username", DEF_BROKER_USERNAME);
|
strncpy(ctx->uid, str, sizeof(ctx->uid) );
|
|
str=iniparser_getstring(ini, "broker:password", DEF_BROKER_PASSWD);
|
strncpy(ctx->pwd, str, sizeof(ctx->pwd) );
|
|
log_nrml("Parser broker author by [%s:%s]\n", ctx->uid, ctx->pwd);
|
|
ctx->keepalive = iniparser_getint(ini, "broker:keepalive", DEF_BROKER_KEEPALIVE);
|
log_nrml("Parser broker keepalive timeout [%d] seconds\n", ctx->keepalive);
|
|
/*+------------------------------------------------------+
|
*| parser subscriber settings |
|
*+------------------------------------------------------+*/
|
|
str=iniparser_getstring(ini, "subsciber:subTopic", DEF_SUBTOPIC);
|
strncpy(ctx->subTopic, str, sizeof(ctx->subTopic) );
|
|
ctx->subQos = iniparser_getint(ini, "subsciber:subQos", DEF_SUBQOS);
|
log_nrml("Parser subscriber topic \"%s\" with Qos[%d]\n", ctx->subTopic, ctx->subQos);
|
|
return 0;
|
}
|