summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/libwellenreiter/source/wl_conf.cc
blob: ba56754405afa44881db5ee4a7783e1790b1bfd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* 
 * Configfile operations for wellenreiter
 * 
 * $Id$
 */

#include "wl_conf.hh"
#include "wl_log.hh"
#include "wl_types.hh"

/* Check whether configfile exists and is readable */
int wl_checkcfg(void)
{
  FILE *wl_config;

  if((wl_config = fopen(WL_CONFFILE, "r")) == NULL)
  {
    wl_logerr("Cannot open configfile: %s", strerror(errno));
    return 0;
  }
  else
  {
    fclose(wl_config);
    return 1;
  }

}

/* Get value for given token from config file */
int wl_cfgvalue(const char *token, char *out, int maxlen)
{
  FILE *wl_config;
  char *ptr, *ptr2;
  char confbuf[WL_CONFBUFF];

  if(token == NULL)
    return -1;

  if((wl_config = fopen(WL_CONFFILE, "r")) == NULL)
  {
    wl_logerr("Cannot open configfile: %s", strerror(errno));
    return -1;
  }
   
  /* Clear buffers */
  memset(out, 0, maxlen);
  memset(confbuf, 0, sizeof(confbuf));

  while((fgets(confbuf, sizeof(confbuf) - 1, wl_config)) != NULL)
  {
    
    /* Ignore comments */
    if(confbuf[0] == '#') continue;
 
    /* Search for token, if found check whether next character
     *  is a '=' or a ' ' 
     */
    if(strstr(confbuf, token) != NULL &&
       (confbuf[strlen(token)] == '=' || confbuf[strlen(token)] == ' '))
    {

      /* Get value between quotes */
      if((ptr = strstr(confbuf, "\"")) == NULL)
	break;
      ++ptr;
      if((ptr2 = strstr(ptr, "\"")) == NULL)
	break;
      ptr2[0] = '\0';

      memcpy(out, ptr, maxlen - 1);
      break;

    }
    memset(confbuf, 0, sizeof(confbuf));
  }

  fclose(wl_config);

  return (out[0] == '\0' ? 0 : 1);
}