chiark / gitweb /
cgi: remove obsolete 'columns' option.
[disorder] / cgi / options.c
CommitLineData
9faa7a88
RK
1/*
2 * This file is part of DisOrder.
7800abb3 3 * Copyright (C) 2004-2008, 2011 Richard Kettlewell
9faa7a88 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
9faa7a88 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
9faa7a88
RK
8 * (at your option) any later version.
9 *
e7eb3a27
RK
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
9faa7a88 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
9faa7a88 17 */
59cf25c4 18/** @file cgi/options.c
9faa7a88 19 * @brief CGI options
1e97629d
RK
20 *
21 * Options represent an additional configuration system private to the
22 * CGI program.
9faa7a88
RK
23 */
24
1e97629d 25#include "disorder-cgi.h"
9faa7a88 26
71634563
RK
27struct read_options_state {
28 const char *name;
29 int line;
30};
31
9faa7a88 32static hash *labels;
9faa7a88 33
71634563
RK
34static void option__readfile(const char *name);
35
9faa7a88
RK
36static void option__label(int attribute((unused)) nvec,
37 char **vec) {
38 option_set(vec[0], vec[1]);
39}
40
41static void option__include(int attribute((unused)) nvec,
42 char **vec) {
43 option__readfile(vec[0]);
44}
45
598b07b7 46/** @brief Definition of an option command */
9faa7a88 47static struct option {
598b07b7 48 /** @brief Command name */
9faa7a88 49 const char *name;
598b07b7
RK
50 /** @brief Minimum number of arguments */
51 int minargs;
52 /** @brief Maximum number of arguments */
53 int maxargs;
54 /** @brief Command handler */
9faa7a88
RK
55 void (*handler)(int nvec, char **vec);
56} options[] = {
71634563
RK
57 { "include", 1, 1, option__include },
58 { "label", 2, 2, option__label },
9faa7a88
RK
59};
60
61static void option__split_error(const char *msg,
62 void *u) {
63 struct read_options_state *cs = u;
64
2e9ba080 65 disorder_error(0, "%s:%d: %s", cs->name, cs->line, msg);
9faa7a88
RK
66}
67
68static void option__readfile(const char *name) {
69 int n, i;
9faa7a88
RK
70 FILE *fp;
71 char **vec, *buffer;
72 struct read_options_state cs;
9faa7a88 73
f2d306b4 74 if(!(cs.name = mx_find(name, 1/*report*/)))
9faa7a88
RK
75 return;
76 if(!(fp = fopen(cs.name, "r")))
2e9ba080 77 disorder_fatal(errno, "error opening %s", cs.name);
9faa7a88
RK
78 cs.line = 0;
79 while(!inputline(cs.name, fp, &buffer, '\n')) {
80 ++cs.line;
81 if(!(vec = split(buffer, &n, SPLIT_COMMENTS|SPLIT_QUOTES,
82 option__split_error, &cs)))
83 continue;
84 if(!n)
85 continue;
ba937f01 86 if((i = TABLE_FIND(options, name, vec[0])) == -1) {
2e9ba080 87 disorder_error(0, "%s:%d: unknown option '%s'", cs.name, cs.line, vec[0]);
9faa7a88
RK
88 continue;
89 }
90 ++vec;
91 --n;
92 if(n < options[i].minargs) {
2e9ba080 93 disorder_error(0, "%s:%d: too few arguments to '%s'", cs.name, cs.line, vec[-1]);
9faa7a88
RK
94 continue;
95 }
96 if(n > options[i].maxargs) {
2e9ba080 97 disorder_error(0, "%s:%d: too many arguments to '%s'", cs.name, cs.line, vec[-1]);
9faa7a88
RK
98 continue;
99 }
100 options[i].handler(n, vec);
101 }
102 fclose(fp);
103}
104
105static void option__init(void) {
106 static int have_read_options;
107
108 if(!have_read_options) {
109 have_read_options = 1;
110 labels = hash_new(sizeof (char *));
9faa7a88
RK
111 option__readfile("options");
112 }
113}
114
115/** @brief Set an option
116 * @param name Option name
117 * @param value Option value
118 *
119 * If the option was already set its value is replaced.
120 *
121 * @p name and @p value are copied.
122 */
123void option_set(const char *name, const char *value) {
124 char *v = xstrdup(value);
125
126 option__init();
127 hash_add(labels, name, &v, HASH_INSERT_OR_REPLACE);
128}
129
130/** @brief Get a label
131 * @param key Name of label
132 * @return Value of label (never NULL)
133 *
134 * If label images.X isn't found then the return value is
135 * <url.static>X.png, allowing url.static to be used to provide a base
136 * for all images with per-image overrides.
137 *
138 * Otherwise undefined labels expand to their last (dot-separated)
139 * component.
140 */
141const char *option_label(const char *key) {
142 const char *label;
99955407 143 char **lptr;
9faa7a88
RK
144
145 option__init();
99955407
RK
146 lptr = hash_find(labels, key);
147 if(lptr)
148 return *lptr;
149 /* No label found */
150 if(!strncmp(key, "images.", 7)) {
151 static const char *url_static;
152 /* images.X defaults to <url.static>X.png */
153
154 if(!url_static)
155 url_static = option_label("url.static");
156 byte_xasprintf((char **)&label, "%s%s.png", url_static, key + 7);
157 } else if((label = strrchr(key, '.')))
158 /* X.Y defaults to Y */
159 ++label;
160 else
161 /* otherwise default to label name */
162 label = key;
9faa7a88
RK
163 return label;
164}
165
166/** @brief Test whether a label exists
167 * @param key Name of label
168 * @return 1 if label exists, otherwise 0
169 *
170 * Labels that don't exist still have an expansion (per option_label()
171 * documentation), and possibly not even a placeholder one.
172 */
173int option_label_exists(const char *key) {
174 option__init();
175 return !!hash_find(labels, key);
176}
177
9faa7a88
RK
178/*
179Local Variables:
180c-basic-offset:2
181comment-column:40
182End:
183*/