sc/ini/sc_ini.c

196 lines
4.3 KiB
C
Raw Normal View History

2020-11-11 01:19:49 +03:00
/*
* BSD-3-Clause
2020-11-11 01:19:49 +03:00
*
* Based on : https://github.com/benhoyt/inih
* Copyright (C) 2009-2020, Ben Hoyt
2021-07-18 20:01:33 +03:00
* 2020-present Ozan Tezcan
2020-11-11 01:19:49 +03:00
*
* All rights reserved.
2020-11-11 01:19:49 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
2020-11-11 01:19:49 +03:00
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
2021-02-06 06:55:41 +03:00
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
2020-11-11 01:19:49 +03:00
*/
#include "sc_ini.h"
#include <ctype.h>
#include <string.h>
#ifdef _MSC_VER
#pragma warning(disable : 4996)
2021-02-03 08:09:50 +03:00
#endif
2020-11-11 01:19:49 +03:00
static char *trim_space(char *str)
{
char *end;
2020-11-11 01:19:49 +03:00
while (isspace((unsigned char) *str)) {
str++;
}
2020-11-11 01:19:49 +03:00
end = str + strlen(str) - 1;
while (end > str && isspace((unsigned char) *end)) {
end--;
}
2020-11-11 01:19:49 +03:00
end[1] = '\0';
2020-11-11 01:19:49 +03:00
return str;
2020-11-11 01:19:49 +03:00
}
static char *trim_comment(char *str)
{
char *s = str;
if (*s == '\0' || *s == ';' || *s == '#') {
*s = '\0';
return str;
}
while (*s && (s = strchr(s, ' ')) != NULL) {
s++;
if (*s == ';' || *s == '#') {
*s = '\0';
break;
}
}
return str;
2020-11-11 01:19:49 +03:00
}
static char *trim_bom(char *str)
{
2021-04-07 04:55:05 +03:00
unsigned char *p = (unsigned char *) str;
if (strlen(str) >= 3) {
2021-04-07 04:55:05 +03:00
if (p[0] == 0xEF && p[1] == 0xBB && p[2] == 0xBF) {
str += 3;
}
}
return str;
2020-11-11 01:19:49 +03:00
}
2021-02-06 06:55:41 +03:00
int sc_ini_parse(void *arg, sc_ini_on_item cb, void *arg1,
char *(*next_line)(void *, char *, size_t))
2020-11-11 01:19:49 +03:00
{
int rc = 0, line = 0;
char buf[SC_INI_MAX_LINE_LEN];
char section[256] = {0}, key[256] = {0};
char *head, *end;
while ((head = next_line(arg1, buf, sizeof(buf) - 1)) != NULL) {
if (++line == 1) {
head = trim_bom(head);
}
head = trim_space(trim_comment(head));
if (*head == '\0') {
continue;
}
if (head > buf && *key) {
rc = cb(arg, line, section, key, head);
} else if (*head == '[') {
if ((end = strchr(head, ']')) == NULL) {
return line;
}
*key = '\0';
*end = '\0';
strncpy(section, head + 1, sizeof(section) - 1);
} else {
if ((end = strpbrk(head, "=:")) == NULL) {
return line;
}
*end = '\0';
trim_space(head);
strncpy(key, head, sizeof(key) - 1);
rc = cb(arg, line, section, head, trim_space(end + 1));
}
if (rc != 0) {
return line;
}
}
return 0;
2020-11-11 01:19:49 +03:00
}
2021-04-07 04:55:05 +03:00
static char *file_line(void *p, char *buf, size_t size)
2020-11-11 01:19:49 +03:00
{
return fgets(buf, (int) size, (FILE *) p);
2020-11-11 01:19:49 +03:00
}
2021-04-07 04:55:05 +03:00
static char *string_line(void *p, char *buf, size_t size)
2020-11-11 01:19:49 +03:00
{
size_t len, diff;
char *t, *str = (*(char **) p);
2020-11-11 01:19:49 +03:00
if (str == NULL || *str == '\0') {
return NULL;
}
2020-11-11 01:19:49 +03:00
t = strchr(str, '\n');
if (t == NULL) {
t = str + strlen(str);
}
2020-11-11 01:19:49 +03:00
diff = (size_t) (t - str);
len = diff < size ? diff : size;
memcpy(buf, str, len);
buf[len] = '\0';
2020-11-11 01:19:49 +03:00
*(char **) p = (*t == '\0') ? '\0' : t + 1;
2020-11-11 01:19:49 +03:00
return buf;
2020-11-11 01:19:49 +03:00
}
2021-02-06 06:55:41 +03:00
int sc_ini_parse_file(void *arg, sc_ini_on_item cb, const char *filename)
2020-11-11 01:19:49 +03:00
{
int rc;
FILE *file;
2020-11-11 01:19:49 +03:00
file = fopen(filename, "rb");
if (!file) {
return -1;
}
2020-11-11 01:19:49 +03:00
2021-04-07 04:55:05 +03:00
rc = sc_ini_parse(arg, cb, file, file_line);
if (rc == 0) {
rc = ferror(file) != 0 ? -1 : 0;
}
2020-11-11 01:19:49 +03:00
fclose(file);
2020-11-11 01:19:49 +03:00
return rc;
2020-11-11 01:19:49 +03:00
}
2021-02-06 06:55:41 +03:00
int sc_ini_parse_string(void *arg, sc_ini_on_item cb, const char *str)
2020-11-11 01:19:49 +03:00
{
char *ptr = (char *) str;
2021-04-07 04:55:05 +03:00
return sc_ini_parse(arg, cb, &ptr, string_line);
2020-11-11 01:19:49 +03:00
}