Match only the section name that have the same lenght.
[bertos.git] / bertos / mware / ini_reader.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2009 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief Ini file reader module.
34  *
35  * \version $Id$
36  * \author Luca Ottaviano <lottaviano@develer.com>
37  */
38
39 #include "ini_reader.h"
40 #include "cfg/cfg_ini_reader.h"
41 #include <string.h>
42 #include <stdio.h>
43 #include <ctype.h>
44
45 /*
46  * Returns when the line containing the section is found.
47  * The file pointer is positioned at the start of the next line.
48  * Returns EOF if no section was found, 0 otherwise.
49  */
50 static int findSection(KFile *fd, const char *section, size_t section_len, char *line, size_t size)
51 {
52         while (kfile_gets(fd, line, size) != EOF)
53         {
54                 char *ptr = line;
55                 unsigned i;
56                 /* accept only sections that begin at first char */
57                 if (*ptr++ != '[')
58                         continue;
59
60                 /* find the end-of-section character */
61                 for (i = 0; i < size && *ptr != ']'; ++i, ++ptr)
62                         ;
63
64                 /* The found section could be long that our section key */
65                 if (section_len != i)
66                         continue;
67
68                 /* did we find the correct section? */
69                 if(strncmp(&line[1], section, section_len))
70                         continue;
71                 else
72                         return 0;
73         }
74         return EOF;
75 }
76
77 /*
78  * Fills the argument with the key found in line
79  */
80 static char *getKey(const char *line, char *key, size_t size)
81 {
82         /* null-terminated string */
83         while (isspace(*line))
84                 ++line;
85         int i = 0;
86         while (*line != '=' && !isspace(*line) && size)
87         {
88                 key[i++] = *line;
89                 ++line;
90                 --size;
91         }
92         size ? (key[i] = '\0') : (key[i-1] = '\0');
93         return key;
94 }
95
96 /*
97  * Fills the argument with the value found in line.
98  */
99 static char *getValue(const char *line, char *value, size_t size)
100 {
101         while (*line++ != '=')
102                 ;
103         while (isspace(*line))
104                 ++line;
105         int i = 0;
106         while (*line && size)
107         {
108                 value[i++] = *line++;
109                 --size;
110         }
111         size ? (value[i] = '\0') : (value[i-1] = '\0');
112         return value;
113 }
114
115 /**
116  * Look for key inside a section.
117  *
118  * The function reads lines from input file. It fills the line parameter to allow splitting
119  * the key-value couple. It returns with error if a new section begins and no key was found.
120  * \return 0 if key was found, EOF on errors.
121  */
122 static int findKey(KFile *fd, const char *key, char *line, size_t size)
123 {
124         int err;
125         do
126         {
127                 err = kfile_gets(fd, line, size);
128                 char curr_key[30];
129                 getKey(line, curr_key, 30);
130                 /* check key */
131                 if (!strcmp(curr_key, key))
132                         return 0;
133         }
134         while (err != EOF && *line != '[');
135         return EOF;
136 }
137
138 /*
139  * On errors, the function returns EOF and fills the buffer with the default value.
140  */
141 int ini_getString(KFile *fd, const char *section, const char *key, const char *default_value, char *buf, size_t size)
142 {
143         char line[CONFIG_INI_MAX_LINE_LEN];
144
145         if (kfile_seek(fd, 0, KSM_SEEK_SET) == EOF)
146             goto error;
147
148         if (findSection(fd, section, strlen(section), line, CONFIG_INI_MAX_LINE_LEN) == EOF)
149                 goto error;
150
151         if (findKey(fd, key, line, CONFIG_INI_MAX_LINE_LEN) == EOF)
152                 goto error;
153         else
154                 getValue(line, buf, size);
155         return 0;
156
157 error:
158         strncpy(buf, default_value, size);
159         if (size > 0)
160                 buf[size - 1] = '\0';
161         return EOF;
162 }