Initial revision
[silc.git] / lib / silccore / silcconfig.c
1 /*
2
3   silcconfig.c
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 1997 - 2000 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20 /*
21  * $Id$
22  * $Log$
23  * Revision 1.1  2000/06/27 11:36:55  priikone
24  * Initial revision
25  *
26  *
27  */
28
29 #include "silcincludes.h"
30
31 /* Opens and reads a configuration file to a buffer. The read data is 
32    returned to the ret_buffer argument. */
33
34 void silc_config_open(char *filename, SilcBuffer *ret_buffer)
35 {
36   char *buffer;
37   int filelen;
38
39   buffer = silc_file_read(filename, &filelen);
40   if (buffer == NULL)
41     return;
42
43   /* Buffer don't have EOF, but we'll need it. */
44   buffer[filelen] = EOF;
45
46   *ret_buffer = silc_buffer_alloc(filelen + 1);
47   silc_buffer_pull_tail(*ret_buffer, filelen + 1);
48   silc_buffer_put(*ret_buffer, buffer, filelen + 1);
49
50   SILC_LOG_DEBUG(("Config file `%s' opened", filename));
51 }
52
53 /* Returns next token from a buffer to the dest argument. Returns the
54    length of the token. This is used to take tokens from a configuration
55    line. */
56
57 int silc_config_get_token(SilcBuffer buffer, char **dest)
58 {
59   int len;
60
61   if (strchr(buffer->data, ':')) {
62     len = strcspn(buffer->data, ":");
63     if (len) {
64       *dest = silc_calloc(len + 1, sizeof(char));
65       memset(*dest, 0, len + 1);
66       memcpy(*dest, buffer->data, len);
67     }
68     silc_buffer_pull(buffer, len + 1);
69     return len;
70   }
71
72   return -1;
73 }
74
75 /* Returns number of tokens in a buffer. */
76
77 int silc_config_check_num_token(SilcBuffer buffer)
78 {
79   int len, len2, num;
80
81   if (strchr(buffer->data, ':')) {
82     len = 0;
83     num = 0;
84     while (strchr(buffer->data + len, ':')) {
85       num++;
86       len2 = strcspn(buffer->data + len, ":") + 1;
87       len += len2;
88     }
89
90     return num;
91   }
92
93   return 0;
94 }