aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
blob: 80f40db35fc44c98a92dfad3693d74459f024637 (plain) (blame)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
#include <ctype.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#include <glib.h>
#include <ncurses.h>

#include "config.h"
#include "options.h"
#include "support.h"
#include "command.h"
#include "conf.h"

#ifdef DEBUG
#define D(x) x
#else
#define D(x)
#endif

#define RCFILE "." PACKAGE "rc"

#define MAX_LINE_LENGTH 1024
#define COMMENT_TOKEN   '#'

/* configuration field names */
#define CONF_ENABLE_COLORS           "enable_colors"
#define CONF_AUTO_CENTER             "auto_center"

/* configuration field names - colors */
#define CONF_COLOR_BACKGROUND        "background_color"
#define CONF_COLOR_TITLE             "title_color"
#define CONF_COLOR_LINE              "line_color"
#define CONF_COLOR_LIST              "list_color"
#define CONF_COLOR_PROGRESS          "progress_color"
#define CONF_COLOR_STATUS            "status_color"
#define CONF_COLOR_ALERT             "alert_color"
#define CONF_KEY_DEFINITION          "key"

typedef enum {
  KEY_PARSER_UNKNOWN,
  KEY_PARSER_CHAR,
  KEY_PARSER_DEC,
  KEY_PARSER_HEX,
  KEY_PARSER_DONE
} key_parser_state_t;

static int
str2bool(char *str)
{
  if( !strcasecmp(str,"no")  || !strcasecmp(str,"false") || 
      !strcasecmp(str,"off") || !strcasecmp(str,"0") )
    return 0;
  return 1;
}

static int
str2color(char *str)
{
  if( !strcasecmp(str,"black") )
    return COLOR_BLACK;
  else if( !strcasecmp(str,"red") )
    return COLOR_RED;
  else if( !strcasecmp(str,"green") )
    return COLOR_GREEN;
  else if( !strcasecmp(str,"yellow") )
    return COLOR_YELLOW;
  else if( !strcasecmp(str,"blue") )
    return COLOR_BLUE;
  else if( !strcasecmp(str,"magenta") )
    return COLOR_MAGENTA;
  else if( !strcasecmp(str,"cyan") )
    return COLOR_CYAN;
  else if( !strcasecmp(str,"white") )
    return COLOR_WHITE;
  fprintf(stderr,"Warning: unknown color %s\n", str);
  return -1;
}

static int
parse_key_value(char *str, size_t len, char **end)
{
  int i, value;
  key_parser_state_t state;

  i=0;
  value=0;
  state=KEY_PARSER_UNKNOWN;
  *end = str;

  while( i<len && state!=KEY_PARSER_DONE )
    {
      int next = 0;
      int c = str[i];

      if( i+1<len )
	next = str[i+1];

      switch(state)
	{
	case KEY_PARSER_UNKNOWN:
	  if( c=='\'' )
	    state = KEY_PARSER_CHAR;
	  else if( c=='0' && next=='x' )
	    state = KEY_PARSER_HEX;
	  else if( isdigit(c) )
	    state = KEY_PARSER_DEC;
	  else {
	    fprintf(stderr, "Error: Unsupported key definition - %s\n", str);
	    return -1;
	  }
	  break;
	case KEY_PARSER_CHAR:
	  if( next!='\'' )
	    {
	      fprintf(stderr, "Error: Unsupported key definition - %s\n", str);
	      return -1;
	    }
	  value = c;
	  *end = str+i+2;
	  state = KEY_PARSER_DONE;
	  break;
	case KEY_PARSER_DEC:
	  value = (int) strtol(str+(i-1), end, 10);
	  state = KEY_PARSER_DONE;
	  break;
	case KEY_PARSER_HEX:
	  if( !isdigit(next) )
	    {
	      fprintf(stderr, "Error: Digit expexted after 0x - %s\n", str);
	      return -1;
	    }
	  value = (int) strtol(str+(i+1), end, 16);
	  state = KEY_PARSER_DONE;
	  break;
	case KEY_PARSER_DONE:
	  break;
	}
      i++;
    }

  if( *end> str+len )
    *end = str+len;

  return value;
}

static int
parse_key_definition(char *str)
{
  char buf[MAX_LINE_LENGTH];
  char *p, *end;
  size_t len = strlen(str);
  int i,j,key;
  int keys[MAX_COMMAND_KEYS];
  command_t cmd;

  /* get the command name */
  i=0;
  j=0;
  memset(buf, 0, MAX_LINE_LENGTH);
  while( i<len && str[i]!='=' && !IS_WHITESPACE(str[i]) )
    buf[j++] = str[i++];
  if( (cmd=get_key_command_from_name(buf)) == CMD_NONE )
    {
      fprintf(stderr, "Error: Unknown key command %s\n", buf);
      return -1;
    }

  /* skip whitespace */
  while( i<len && (str[i]=='=' || IS_WHITESPACE(str[i])) )
    i++;

  /* get the value part */
  memset(buf, 0, MAX_LINE_LENGTH);
  strncpy(buf, str+i, len-i);
  len = strlen(buf);
  if( len==0 )
    {
      fprintf(stderr,"Error: Incomplete key definition - %s\n", str);
      return -1;
    }

  /* parse key values */
  i = 0;
  key = 0;
  len = strlen(buf);
  p = buf;
  end = buf+len;
  memset(keys, 0, sizeof(int)*MAX_COMMAND_KEYS);
  while( i<MAX_COMMAND_KEYS && p<end && (key=parse_key_value(p,len+1,&p))>=0 )
    {
      keys[i++] = key;
      while( p<end && (*p==',' || *p==' ' || *p=='\t') )
	p++;
      len = strlen(p);
    } 
  if( key<0 )
    {
      fprintf(stderr,"Error: Bad key definition - %s\n", str);
      return -1;
    }

  return assign_keys(cmd, keys);
}

static int
read_rc_file(char *filename, options_t *options)
{
  int fd;
  int quit  = 0;
  int color = -1;
  int free_filename = 0;

  if( filename==NULL )
    return -1;

  D(printf("Reading configuration file %s\n", filename));
  if( (fd=open(filename,O_RDONLY)) <0 )
    {
      D(perror(filename));
      if( free_filename )
	g_free(filename);
      return -1;
    }

  while( !quit )
    {
      int i,j;
      int len;
      int match_found;
      char line[MAX_LINE_LENGTH];
      char name[MAX_LINE_LENGTH];
      char value[MAX_LINE_LENGTH];

      line[0]  = '\0';
      value[0] = '\0';

      i = 0;
      /* read a line ending with '\n' */
      do {
	len = read( fd, &line[i], 1 );
	if( len == 1 )
	  i++;
	else
	  quit = 1;
      } while( !quit && i<MAX_LINE_LENGTH && line[i-1]!='\n' );
      
     
      /* remove trailing whitespace */
      line[i] = '\0';
      i--;
      while( i>=0 && IS_WHITESPACE(line[i]) )
	{
	  line[i] = '\0';
	  i--;
	}     
      len = i+1;

      if( len>0 )
	{
	  i = 0;
	  /* skip whitespace */
	  while( i<len && IS_WHITESPACE(line[i]) )
	    i++;
	  
	  /* continue if this line is not a comment */
	  if( line[i] != COMMENT_TOKEN )
	    {
	      /* get the name part */
	      j=0;
	      while( i<len && line[i]!='=' && !IS_WHITESPACE(line[i]) )
		{
		  name[j++] = line[i++];
		}
	      name[j] = '\0';
	      
	      /* skip '=' and whitespace */
	      while( i<len && (line[i]=='=' || IS_WHITESPACE(line[i])) )
		i++;
	      
	      /* get the value part */
	      j=0;
	      while( i<len )
		{
		  value[j++] = line[i++];
		}
	      value[j] = '\0';
	      
	      match_found = 0;
	      
	      if( !strcasecmp(CONF_KEY_DEFINITION, name) )
		{
		  parse_key_definition(value);
		  match_found = 1;
		}
	      /* enable colors */
	      else if( !strcasecmp(CONF_ENABLE_COLORS, name) )
		{
		  options->enable_colors = str2bool(value);
		  match_found = 1;
		}
	      /* auto center */
	      else if( !strcasecmp(CONF_AUTO_CENTER, name) )
		{
		  options->auto_center = str2bool(value);
		  match_found = 1;
		}
	      /* background color */
	      else if( !strcasecmp(CONF_COLOR_BACKGROUND, name) )
		{
		  if( (color=str2color(value)) >= 0 )
		    options->bg_color = color;
		  match_found = 1;
		}
	      /* color - top (title) window */
	      else if( !strcasecmp(CONF_COLOR_TITLE, name) )
		{
		  if( (color=str2color(value)) >= 0 )
		    options->title_color = color;
		  match_found = 1;
		}
	      /* color - line (title) window */
	      else if( !strcasecmp(CONF_COLOR_LINE, name) )
		{
		  if( (color=str2color(value)) >= 0 )
		    options->line_color = color;
		  match_found = 1;
		}
	      /* color - list window */
	      else if( !strcasecmp(CONF_COLOR_LIST, name) )
		{
		  if( (color=str2color(value)) >= 0 )
		    options->list_color = color;
		  match_found = 1;
		}
	      /* color - progress bar */
	      else if( !strcasecmp(CONF_COLOR_PROGRESS, name) )
		{
		  if( (color=str2color(value)) >= 0 )
		    options->progress_color = color;
		  match_found = 1;
		}
	      /* color - status window */
	      else if( !strcasecmp(CONF_COLOR_STATUS, name) )
		{
		  if( (color=str2color(value)) >= 0 )
		    options->status_color = color;
		  match_found = 1;
		}
	      /* color - alerts */
	      else if( !strcasecmp(CONF_COLOR_ALERT, name) )
		{
		  if( (color=str2color(value)) >= 0 )
		    options->alert_color = color;
		  match_found = 1;
		}
	      

	      if( !match_found )
		fprintf(stderr, 
			"Unknown configuration parameter: %s\n", 
			name);
#ifdef DEBUG
	      printf( "  %s = %s %s\n", 
		      name, 
		      value,
		      match_found ? "" : "- UNKNOWN SETTING!" );
#endif

	    }
	}	  
    }

  D(printf( "--\n\n" ));

  if( free_filename )
    g_free(filename);
 
  return 0;
}


int
read_configuration(options_t *options)
{
  char *filename = NULL;

  /* check for user configuration ~/.ncmpc/config */
  filename = g_build_filename(g_get_home_dir(), "." PACKAGE, "config", NULL);
  if( !g_file_test(filename, G_FILE_TEST_IS_REGULAR) )
    {
      g_free(filename);
      filename = NULL;
    }

  /* check for  global configuration SYSCONFDIR/ncmpc/config */
  if( filename == NULL )
    {
      filename = g_build_filename(SYSCONFDIR, PACKAGE, "config", NULL);
      if( !g_file_test(filename, G_FILE_TEST_IS_REGULAR) )
	{
	  g_free(filename);
	  filename = NULL;
	}
    }

  /* load configuration */
  if( filename )
    {
      read_rc_file(filename, options);
      g_free(filename);
      filename = NULL;
    }

  /* check for  user key bindings ~/.ncmpc/keys */
  filename = g_build_filename(g_get_home_dir(), "." PACKAGE, "keys", NULL);
  if( !g_file_test(filename, G_FILE_TEST_IS_REGULAR) )
    {
      g_free(filename);
      filename = NULL;
    }

  /* check for  global key bindings SYSCONFDIR/ncmpc/keys */
  if( filename == NULL )
    {
      filename = g_build_filename(SYSCONFDIR, PACKAGE, "keys", NULL);
      if( !g_file_test(filename, G_FILE_TEST_IS_REGULAR) )
	{
	  g_free(filename);
	  filename = NULL;
	}
    }

  /* load key bindings */
  if( filename )
    {
      read_rc_file(filename, options);
      g_free(filename);
      filename = NULL;
      //write_key_bindings(stderr);
    }

  return 0;
}