blob: 7efbd6d8a950b8b003d49b5bf519a55371b7781a [file] [log] [blame]
/*
* Copyright (C) 2017 Amlogic, Inc. All rights reserved.
* *
This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
* *
You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
Description:
*/
#include "ini_config.h"
#define LOG_TAG "ini_proxy"
#define LOG_NDEBUG 0
#include "ini_log.h"
#include "ini_handler.h"
#include "ini_proxy.h"
INI_HANDLER_DATA *gHandlerData = NULL;
void IniParserInit(void) {
if (gHandlerData == NULL) {
gHandlerData = (INI_HANDLER_DATA *) malloc(sizeof(INI_HANDLER_DATA));
if (gHandlerData != NULL) {
memset((void *)gHandlerData, 0, sizeof(INI_HANDLER_DATA));
}
}
}
void IniParserUninit(void) {
if (gHandlerData != NULL) {
IniParserFree();
free(gHandlerData);
gHandlerData = NULL;
}
}
int IniParseFile(const char* filename) {
if (gHandlerData == NULL) {
return -1;
}
return ini_file_parse(filename, gHandlerData);
}
int IniParseMem(unsigned char* file_buf) {
if (gHandlerData == NULL) {
return -1;
}
return ini_mem_parse(file_buf, gHandlerData);
}
int IniSetSaveFileName(const char* filename) {
if (gHandlerData == NULL) {
return -1;
}
return ini_set_save_file_name(filename, gHandlerData);
}
void IniParserFree(void) {
if (gHandlerData == NULL) {
return;
}
return ini_free_mem(gHandlerData);
}
void IniPrintAll(void) {
if (gHandlerData == NULL) {
return;
}
return ini_print_all(gHandlerData);
}
void IniListSection(void) {
if (gHandlerData == NULL) {
ALOGE("%s, ini load file error!\n", __FUNCTION__);
return;
}
ini_list_section(gHandlerData);
}
const char* IniGetString(const char* section, const char* key,
const char* def_value) {
if (gHandlerData == NULL) {
return def_value;
}
return ini_get_string(section, key, def_value, gHandlerData);
}
int IniSetString(const char *section, const char *key, const char *value) {
if (gHandlerData == NULL) {
return -1;
}
return ini_set_string(section, key, value, gHandlerData);
}
int IniSaveToFile(const char *filename) {
if (gHandlerData == NULL) {
return -1;
}
return ini_save_to_file(filename, gHandlerData);
}