]> git.ipfire.org Git - thirdparty/squid.git/blame - src/cf_gen.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / cf_gen.cc
CommitLineData
934b03fc 1/*
ef57eb7b 2 * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
e25c139f 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
934b03fc 7 */
8
bbc27441
AJ
9/* DEBUG: none Generate squid.conf.default and cf_parser.cci */
10
934b03fc 11/*****************************************************************************
f53969cc
SM
12 * Abstract: This program parses the input file and generates code and
13 * files used to configure the variables in squid.
14 * (ie it creates the squid.conf.default file from the cf.data file)
934b03fc 15 *
f53969cc
SM
16 * The output files are as follows:
17 * cf_parser.cci - this file contains, default_all() which
18 * initializes variables with the default
19 * values, parse_line() that parses line from
20 * squid.conf.default, dump_config that dumps the
21 * current the values of the variables.
22 * squid.conf.default - default configuration file given to the server
23 * administrator.
934b03fc 24 *****************************************************************************/
25
2623faf8
FC
26/*
27 * hack around a bug in intel's c++ compiler's libraries which do not
28 * correctly support 64-bit iostreams
29 */
30#if defined(__INTEL_COMPILER) && defined(_FILE_OFFSET_BITS) && \
fdcb14bd 31_FILE_OFFSET_BITS==64
2623faf8
FC
32#undef _FILE_OFFSET_BITS
33#endif
34
c1f8bbd0
AJ
35#include <cassert>
36#include <cctype>
37#include <cerrno>
c5b7499b 38#include <cstdlib>
c1f8bbd0 39#include <cstring>
7ff7a211 40#include <fstream>
c1f8bbd0 41#include <iostream>
576b1e98 42#include <list>
cf1c09f6 43#include <stack>
6507d007 44
cca8ba0d
HN
45#include "cf_gen_defines.cci"
46
f53969cc
SM
47#define MAX_LINE 1024 /* longest configuration line */
48#define _PATH_PARSER "cf_parser.cci"
49#define _PATH_SQUID_CONF "squid.conf.documented"
50#define _PATH_SQUID_CONF_SHORT "squid.conf.default"
51#define _PATH_CF_DEPEND "cf.data.depend"
934b03fc 52
53enum State {
54 sSTART,
55 s1,
56 sDOC,
c68e9c6b 57 sNOCOMMENT,
934b03fc 58 sEXIT
59};
60
576b1e98
AJ
61typedef std::list<std::string> LineList;
62typedef std::list<std::string> TypeDepList;
63typedef std::list<std::string> EntryAliasList;
62e76326 64
576b1e98 65class DefaultValues
c1f8bbd0
AJ
66{
67public:
576b1e98
AJ
68 DefaultValues() : preset(), if_none(), docs() {}
69 ~DefaultValues() {}
62e76326 70
576b1e98
AJ
71 /// Default config lines to be defined before parsing the config files.
72 LineList preset;
934b03fc 73
576b1e98
AJ
74 /// Default config lines to parse if the directive has no prior settings.
75 /// This is mutually exclusive with preset values.
76 /// An error will be printed during build if they clash.
77 LineList if_none;
7af1c5ab 78
10d914f6
CT
79 /// Default config lines to parse and add to any prior settings.
80 LineList postscriptum;
81
576b1e98
AJ
82 /// Text description to use in documentation for the default.
83 /// If unset the preset or if-none values will be displayed.
84 LineList docs;
c1f8bbd0
AJ
85};
86
87class Entry
88{
89public:
90 Entry(const char *str) :
f53969cc
SM
91 name(str), alias(),type(), loc(),
92 defaults(), comment(), ifdef(), doc(), nocomment(),
93 array_flag(0) {}
c1f8bbd0
AJ
94 ~Entry() {}
95
96 std::string name;
576b1e98 97 EntryAliasList alias;
c1f8bbd0
AJ
98 std::string type;
99 std::string loc;
576b1e98 100 DefaultValues defaults;
c1f8bbd0
AJ
101 std::string comment;
102 std::string ifdef;
576b1e98
AJ
103 LineList doc;
104 LineList nocomment;
b3de4c9b 105 int array_flag;
62e76326 106
576b1e98 107 void genParse(std::ostream &fout) const;
934b03fc 108
576b1e98
AJ
109private:
110 void genParseAlias(const std::string &, std::ostream &) const;
c1f8bbd0 111};
41bd17a4 112
576b1e98
AJ
113typedef std::list<class Entry> EntryList;
114
c1f8bbd0
AJ
115class Type
116{
117public:
576b1e98 118 Type(const char *str) : name(str) {}
c1f8bbd0 119 ~Type() {}
934b03fc 120
c1f8bbd0 121 std::string name;
576b1e98 122 TypeDepList depend;
c1f8bbd0 123};
41bd17a4 124
576b1e98 125typedef std::list<class Type> TypeList;
c1f8bbd0 126
576b1e98
AJ
127static const char WS[] = " \t\n";
128static int gen_default(const EntryList &, std::ostream &);
129static void gen_parse(const EntryList &, std::ostream &);
130static void gen_dump(const EntryList &, std::ostream&);
131static void gen_free(const EntryList &, std::ostream&);
132static void gen_conf(const EntryList &, std::ostream&, bool verbose_output);
133static void gen_default_if_none(const EntryList &, std::ostream&);
10d914f6 134static void gen_default_postscriptum(const EntryList &, std::ostream&);
cf1c09f6 135static bool isDefined(const std::string &name);
b6ead21b 136static const char *available_if(const std::string &name);
b11724bb 137static const char *gen_quote_escape(const std::string &var);
6b53c392 138
41bd17a4 139static void
576b1e98 140checkDepend(const std::string &directive, const char *name, const TypeList &types, const EntryList &entries)
41bd17a4 141{
576b1e98
AJ
142 for (TypeList::const_iterator t = types.begin(); t != types.end(); ++t) {
143 if (t->name.compare(name) != 0)
26ac0430 144 continue;
576b1e98
AJ
145 for (TypeDepList::const_iterator dep = t->depend.begin(); dep != t->depend.end(); ++dep) {
146 EntryList::const_iterator entry = entries.begin();
147 for (; entry != entries.end(); ++entry) {
148 if (entry->name.compare(*dep) == 0)
26ac0430
AJ
149 break;
150 }
576b1e98
AJ
151 if (entry == entries.end()) {
152 std::cerr << "ERROR: '" << directive << "' (" << name << ") depends on '" << *dep << "'\n";
26ac0430
AJ
153 exit(1);
154 }
155 }
156 return;
41bd17a4 157 }
7ff7a211 158 std::cerr << "ERROR: Dependencies for cf.data type '" << name << "' used in ' " << directive << "' not defined\n" ;
41bd17a4 159 exit(1);
160}
161
509fba1a
HN
162static void
163usage(const char *program_name)
164{
7ff7a211 165 std::cerr << "Usage: " << program_name << " cf.data cf.data.depend\n";
509fba1a
HN
166 exit(1);
167}
168
638402dd 169static void
2ad53ef1 170errorMsg(const char *filename, int line, const char *detail)
638402dd 171{
2ad53ef1 172 std::cerr << "Error in '" << filename << "' on line " << line <<
638402dd
AJ
173 "--> " << detail << std::endl;
174}
175
934b03fc 176int
177main(int argc, char *argv[])
178{
509fba1a 179 char *input_filename;
c193c972 180 const char *output_filename = _PATH_PARSER;
181 const char *conf_filename = _PATH_SQUID_CONF;
509fba1a
HN
182 const char *conf_filename_short = _PATH_SQUID_CONF_SHORT;
183 const char *type_depend;
934b03fc 184 int linenum = 0;
576b1e98
AJ
185 EntryList entries;
186 TypeList types;
934b03fc 187 enum State state;
f1dc9b30 188 int rc = 0;
9906e724 189 char *ptr = NULL;
41bd17a4 190 char buff[MAX_LINE];
7ff7a211 191 std::ifstream fp;
cf1c09f6 192 std::stack<std::string> IFDEFS;
41bd17a4 193
509fba1a 194 if (argc != 3)
c98dcee3 195 usage(argv[0]);
509fba1a
HN
196
197 input_filename = argv[1];
198 type_depend = argv[2];
41bd17a4 199
200 /*-------------------------------------------------------------------*
201 * Parse type dependencies
202 *-------------------------------------------------------------------*/
7ff7a211
FC
203 fp.open(type_depend, std::ifstream::in);
204 if (fp.fail()) {
638402dd 205 std::cerr << "Error while opening type dependencies file '" <<
87f07161 206 type_depend << "': " << strerror(errno) << std::endl;
41bd17a4 207 exit(1);
208 }
209
7ff7a211
FC
210 while (fp.good()) {
211 fp.getline(buff,MAX_LINE);
26ac0430
AJ
212 const char *type = strtok(buff, WS);
213 const char *dep;
214 if (!type || type[0] == '#')
215 continue;
576b1e98 216 Type t(type);
26ac0430 217 while ((dep = strtok(NULL, WS)) != NULL) {
576b1e98 218 t.depend.push_front(dep);
26ac0430 219 }
576b1e98 220 types.push_front(t);
41bd17a4 221 }
7ff7a211 222 fp.close();
2f0e590e 223 fp.clear(); // BSD does not reset flags in close().
934b03fc 224
225 /*-------------------------------------------------------------------*
226 * Parse input file
227 *-------------------------------------------------------------------*/
228
229 /* Open input file */
7ff7a211
FC
230 fp.open(input_filename, std::ifstream::in);
231 if (fp.fail()) {
638402dd 232 std::cerr << "Error while opening input file '" <<
2bfdc0a9 233 input_filename << "': " << strerror(errno) << std::endl;
62e76326 234 exit(1);
934b03fc 235 }
62e76326 236
934b03fc 237 state = sSTART;
62e76326 238
7ff7a211 239 while (fp.getline(buff,MAX_LINE), fp.good() && state != sEXIT) {
62e76326 240 char *t;
241
5086523e 242 ++linenum;
62e76326 243
244 if ((t = strchr(buff, '\n')))
245 *t = '\0';
246
87f237a9 247 if (strncmp(buff, "IF ", 3) == 0) {
38450a50 248 if ((ptr = strtok(buff + 3, WS)) == NULL) {
638402dd 249 errorMsg(input_filename, linenum, "Missing IF parameter");
62e76326 250 exit(1);
251 }
cf1c09f6 252 IFDEFS.push(ptr);
cf1c09f6
CT
253 continue;
254 } else if (strcmp(buff, "ENDIF") == 0) {
255 if (IFDEFS.size() == 0) {
638402dd 256 errorMsg(input_filename, linenum, "ENDIF without IF first");
cf1c09f6
CT
257 exit(1);
258 }
259 IFDEFS.pop();
87f237a9
A
260 } else if (!IFDEFS.size() || isDefined(IFDEFS.top()))
261 switch (state) {
262
263 case sSTART:
264
265 if ((strlen(buff) == 0) || (!strncmp(buff, "#", 1))) {
266 /* ignore empty and comment lines */
267 (void) 0;
268 } else if (!strncmp(buff, "NAME:", 5)) {
269 char *name, *aliasname;
270
271 if ((name = strtok(buff + 5, WS)) == NULL) {
638402dd 272 errorMsg(input_filename, linenum, buff);
87f237a9
A
273 exit(1);
274 }
275
276 entries.push_back(name);
277
278 while ((aliasname = strtok(NULL, WS)) != NULL)
279 entries.back().alias.push_front(aliasname);
280
281 state = s1;
282 } else if (!strcmp(buff, "EOF")) {
283 state = sEXIT;
284 } else if (!strcmp(buff, "COMMENT_START")) {
285 entries.push_back("comment");
286 entries.back().loc = "none";
287 state = sDOC;
288 } else {
638402dd 289 errorMsg(input_filename, linenum, buff);
62e76326 290 exit(1);
291 }
292
87f237a9
A
293 break;
294
295 case s1: {
296 Entry &curr = entries.back();
297
298 if ((strlen(buff) == 0) || (!strncmp(buff, "#", 1))) {
299 /* ignore empty and comment lines */
300 (void) 0;
301 } else if (!strncmp(buff, "COMMENT:", 8)) {
302 ptr = buff + 8;
303
304 while (isspace((unsigned char)*ptr))
133c3ad6 305 ++ptr;
87f237a9
A
306
307 curr.comment = ptr;
308 } else if (!strncmp(buff, "DEFAULT:", 8)) {
309 ptr = buff + 8;
310
311 while (isspace((unsigned char)*ptr))
133c3ad6 312 ++ptr;
87f237a9
A
313
314 curr.defaults.preset.push_back(ptr);
315 } else if (!strncmp(buff, "DEFAULT_IF_NONE:", 16)) {
316 ptr = buff + 16;
317
318 while (isspace((unsigned char)*ptr))
133c3ad6 319 ++ptr;
87f237a9
A
320
321 curr.defaults.if_none.push_back(ptr);
322 } else if (!strncmp(buff, "POSTSCRIPTUM:", 13)) {
323 ptr = buff + 13;
324
325 while (isspace((unsigned char)*ptr))
133c3ad6 326 ++ptr;
87f237a9
A
327
328 curr.defaults.postscriptum.push_back(ptr);
329 } else if (!strncmp(buff, "DEFAULT_DOC:", 12)) {
330 ptr = buff + 12;
331
332 while (isspace((unsigned char)*ptr))
133c3ad6 333 ++ptr;
87f237a9
A
334
335 curr.defaults.docs.push_back(ptr);
336 } else if (!strncmp(buff, "LOC:", 4)) {
337 if ((ptr = strtok(buff + 4, WS)) == NULL) {
638402dd 338 errorMsg(input_filename, linenum, buff);
87f237a9
A
339 exit(1);
340 }
341
342 curr.loc = ptr;
343 } else if (!strncmp(buff, "TYPE:", 5)) {
344 if ((ptr = strtok(buff + 5, WS)) == NULL) {
638402dd 345 errorMsg(input_filename, linenum, buff);
87f237a9
A
346 exit(1);
347 }
348
349 /* hack to support arrays, rather than pointers */
350 if (0 == strcmp(ptr + strlen(ptr) - 2, "[]")) {
351 curr.array_flag = 1;
352 *(ptr + strlen(ptr) - 2) = '\0';
353 }
354
355 checkDepend(curr.name, ptr, types, entries);
356 curr.type = ptr;
357 } else if (!strncmp(buff, "IFDEF:", 6)) {
358 if ((ptr = strtok(buff + 6, WS)) == NULL) {
638402dd 359 errorMsg(input_filename, linenum, buff);
87f237a9
A
360 exit(1);
361 }
362
363 curr.ifdef = ptr;
364 } else if (!strcmp(buff, "DOC_START")) {
365 state = sDOC;
366 } else if (!strcmp(buff, "DOC_NONE")) {
367 state = sSTART;
368 } else {
638402dd 369 errorMsg(input_filename, linenum, buff);
62e76326 370 exit(1);
371 }
87f237a9
A
372 }
373 break;
62e76326 374
87f237a9
A
375 case sDOC:
376 if (!strcmp(buff, "DOC_END") || !strcmp(buff, "COMMENT_END")) {
377 state = sSTART;
378 } else if (!strcmp(buff, "NOCOMMENT_START")) {
379 state = sNOCOMMENT;
380 } else { // if (buff != NULL) {
381 assert(buff != NULL);
382 entries.back().doc.push_back(buff);
62e76326 383 }
87f237a9
A
384 break;
385
386 case sNOCOMMENT:
387 if (!strcmp(buff, "NOCOMMENT_END")) {
388 state = sDOC;
389 } else { // if (buff != NULL) {
390 assert(buff != NULL);
391 entries.back().nocomment.push_back(buff);
62e76326 392 }
87f237a9 393 break;
cfd861ab 394#if 0
87f237a9 395 case sEXIT:
f53969cc 396 assert(0); /* should never get here */
87f237a9 397 break;
cfd861ab 398#endif
62e76326 399 }
7ff7a211 400
934b03fc 401 }
62e76326 402
934b03fc 403 if (state != sEXIT) {
638402dd 404 errorMsg(input_filename, linenum, "Error: unexpected EOF");
62e76326 405 exit(1);
934b03fc 406 }
62e76326 407
7ff7a211 408 fp.close();
934b03fc 409
410 /*-------------------------------------------------------------------*
411 * Generate default_all()
412 * Generate parse_line()
f53b06f9 413 * Generate dump_config()
0153d498 414 * Generate free_all()
e321c7d4 415 * Generate example squid.conf.default file
934b03fc 416 *-------------------------------------------------------------------*/
417
418 /* Open output x.c file */
62e76326 419
7ff7a211
FC
420 std::ofstream fout(output_filename,std::ostream::out);
421 if (!fout.good()) {
638402dd 422 std::cerr << "Error while opening output .c file '" <<
2bfdc0a9 423 output_filename << "': " << strerror(errno) << std::endl;
62e76326 424 exit(1);
934b03fc 425 }
62e76326 426
7ff7a211 427 fout << "/*\n" <<
f53969cc
SM
428 " * Generated automatically from " << input_filename << " by " <<
429 argv[0] << "\n"
430 " *\n"
431 " * Abstract: This file contains routines used to configure the\n"
432 " * variables in the squid server.\n"
433 " */\n"
434 "\n";
62e76326 435
7ff7a211 436 rc = gen_default(entries, fout);
62e76326 437
7ff7a211 438 gen_default_if_none(entries, fout);
62e76326 439
10d914f6
CT
440 gen_default_postscriptum(entries, fout);
441
7ff7a211 442 gen_parse(entries, fout);
62e76326 443
7ff7a211 444 gen_dump(entries, fout);
62e76326 445
7ff7a211 446 gen_free(entries, fout);
62e76326 447
7ff7a211 448 fout.close();
934b03fc 449
450 /* Open output x.conf file */
7ff7a211
FC
451 fout.open(conf_filename,std::ostream::out);
452 if (!fout.good()) {
638402dd 453 std::cerr << "Error while opening output conf file '" <<
2bfdc0a9 454 output_filename << "': " << strerror(errno) << std::endl;
62e76326 455 exit(1);
934b03fc 456 }
62e76326 457
7ff7a211 458 gen_conf(entries, fout, 1);
62e76326 459
7ff7a211 460 fout.close();
934b03fc 461
7ff7a211
FC
462 fout.open(conf_filename_short,std::ostream::out);
463 if (!fout.good()) {
638402dd 464 std::cerr << "Error while opening output short conf file '" <<
2bfdc0a9 465 output_filename << "': " << strerror(errno) << std::endl;
509fba1a
HN
466 exit(1);
467 }
7ff7a211
FC
468 gen_conf(entries, fout, 0);
469 fout.close();
509fba1a 470
f1dc9b30 471 return (rc);
934b03fc 472}
473
f1dc9b30 474static int
576b1e98 475gen_default(const EntryList &head, std::ostream &fout)
934b03fc 476{
f1dc9b30 477 int rc = 0;
576b1e98 478 fout << "static void" << std::endl <<
f53969cc
SM
479 "default_line(const char *s)" << std::endl <<
480 "{" << std::endl <<
481 " LOCAL_ARRAY(char, tmp_line, BUFSIZ);" << std::endl <<
482 " xstrncpy(tmp_line, s, BUFSIZ);" << std::endl <<
483 " xstrncpy(config_input_line, s, BUFSIZ);" << std::endl <<
484 " config_lineno++;" << std::endl <<
485 " parse_line(tmp_line);" << std::endl <<
486 "}" << std::endl << std::endl;
576b1e98 487 fout << "static void" << std::endl <<
f53969cc
SM
488 "default_all(void)" << std::endl <<
489 "{" << std::endl <<
490 " cfg_filename = \"Default Configuration\";" << std::endl <<
491 " config_lineno = 0;" << std::endl;
576b1e98
AJ
492
493 for (EntryList::const_iterator entry = head.begin(); entry != head.end(); ++entry) {
c1f8bbd0 494 assert(entry->name.size());
62e76326 495
c1f8bbd0 496 if (!entry->name.compare("comment"))
62e76326 497 continue;
498
c1f8bbd0 499 if (!entry->type.compare("obsolete"))
76f44481
AJ
500 continue;
501
c1f8bbd0 502 if (!entry->loc.size()) {
7ff7a211 503 std::cerr << "NO LOCATION FOR " << entry->name << std::endl;
62e76326 504 rc |= 1;
505 continue;
506 }
507
576b1e98 508 if (!entry->defaults.preset.size() && entry->defaults.if_none.empty()) {
7ff7a211 509 std::cerr << "NO DEFAULT FOR " << entry->name << std::endl;
62e76326 510 rc |= 1;
511 continue;
512 }
513
576b1e98
AJ
514 if (!entry->defaults.preset.size() || entry->defaults.preset.front().compare("none") == 0) {
515 fout << " // No default for " << entry->name << std::endl;
62e76326 516 } else {
c1f8bbd0 517 if (entry->ifdef.size())
7ff7a211 518 fout << "#if " << entry->ifdef << std::endl;
c58a4b53 519
576b1e98 520 for (LineList::const_iterator l = entry->defaults.preset.begin(); l != entry->defaults.preset.end(); ++l) {
b11724bb 521 fout << " default_line(\"" << entry->name << " " << gen_quote_escape(*l) << "\");" << std::endl;
576b1e98 522 }
62e76326 523
c1f8bbd0 524 if (entry->ifdef.size())
576b1e98 525 fout << "#endif" << std::endl;
2bfdc0a9 526 }
934b03fc 527 }
62e76326 528
576b1e98 529 fout << " cfg_filename = NULL;" << std::endl <<
f53969cc 530 "}" << std::endl << std::endl;
f1dc9b30 531 return rc;
934b03fc 532}
533
f53b06f9 534static void
576b1e98 535gen_default_if_none(const EntryList &head, std::ostream &fout)
f53b06f9 536{
576b1e98 537 fout << "static void" << std::endl <<
f53969cc
SM
538 "defaults_if_none(void)" << std::endl <<
539 "{" << std::endl <<
540 " cfg_filename = \"Default Configuration (if absent)\";" << std::endl <<
541 " config_lineno = 0;" << std::endl;
62e76326 542
576b1e98 543 for (EntryList::const_iterator entry = head.begin(); entry != head.end(); ++entry) {
c1f8bbd0 544 assert(entry->name.size());
76f44481 545
c1f8bbd0 546 if (!entry->loc.size())
76f44481 547 continue;
62e76326 548
576b1e98 549 if (entry->defaults.if_none.empty())
62e76326 550 continue;
551
576b1e98
AJ
552 if (!entry->defaults.preset.empty()) {
553 std::cerr << "ERROR: " << entry->name << " has preset defaults. DEFAULT_IF_NONE cannot be true." << std::endl;
554 exit(1);
555 }
556
c1f8bbd0 557 if (entry->ifdef.size())
7ff7a211 558 fout << "#if " << entry->ifdef << std::endl;
62e76326 559
576b1e98
AJ
560 fout << " if (check_null_" << entry->type << "(" << entry->loc << ")) {" << std::endl;
561 for (LineList::const_iterator l = entry->defaults.if_none.begin(); l != entry->defaults.if_none.end(); ++l)
b11724bb 562 fout << " default_line(\"" << entry->name << " " << gen_quote_escape(*l) <<"\");" << std::endl;
576b1e98 563 fout << " }" << std::endl;
62e76326 564
c1f8bbd0 565 if (entry->ifdef.size())
576b1e98 566 fout << "#endif" << std::endl;
f53b06f9 567 }
62e76326 568
b6ead21b 569 fout << " cfg_filename = NULL;" << std::endl <<
f53969cc 570 "}" << std::endl << std::endl;
f53b06f9 571}
572
10d914f6
CT
573/// append configuration options specified by POSTSCRIPTUM lines
574static void
575gen_default_postscriptum(const EntryList &head, std::ostream &fout)
576{
577 fout << "static void" << std::endl <<
f53969cc
SM
578 "defaults_postscriptum(void)" << std::endl <<
579 "{" << std::endl <<
580 " cfg_filename = \"Default Configuration (postscriptum)\";" << std::endl <<
581 " config_lineno = 0;" << std::endl;
10d914f6
CT
582
583 for (EntryList::const_iterator entry = head.begin(); entry != head.end(); ++entry) {
584 assert(entry->name.size());
585
586 if (!entry->loc.size())
587 continue;
588
589 if (entry->defaults.postscriptum.empty())
590 continue;
591
592 if (entry->ifdef.size())
593 fout << "#if " << entry->ifdef << std::endl;
594
595 for (LineList::const_iterator l = entry->defaults.postscriptum.begin(); l != entry->defaults.postscriptum.end(); ++l)
596 fout << " default_line(\"" << entry->name << " " << *l <<"\");" << std::endl;
597
598 if (entry->ifdef.size())
599 fout << "#endif" << std::endl;
600 }
601
b6ead21b 602 fout << " cfg_filename = NULL;" << std::endl <<
f53969cc 603 "}" << std::endl << std::endl;
10d914f6
CT
604}
605
147a3e90 606void
576b1e98 607Entry::genParseAlias(const std::string &aName, std::ostream &fout) const
934b03fc 608{
576b1e98 609 fout << " if (!strcmp(token, \"" << aName << "\")) {" << std::endl;
b6ead21b
AJ
610 if (ifdef.size())
611 fout << "#if " << ifdef << std::endl;
6f58d7d7 612 fout << " cfg_directive = \"" << aName << "\";" << std::endl;
576b1e98
AJ
613 fout << " ";
614 if (type.compare("obsolete") == 0) {
615 fout << "debugs(0, DBG_CRITICAL, \"ERROR: Directive '" << aName << "' is obsolete.\");\n";
616 for (LineList::const_iterator l = doc.begin(); l != doc.end(); ++l) {
76f44481 617 // offset line to strip initial whitespace tab byte
aa7e2b35 618 fout << " debugs(0, DBG_PARSE_NOTE(DBG_IMPORTANT), \"" << aName << " : " << &(*l)[1] << "\");" << std::endl;
76f44481 619 }
576b1e98
AJ
620 fout << " parse_obsolete(token);";
621 } else if (!loc.size() || loc.compare("none") == 0) {
622 fout << "parse_" << type << "();";
62e76326 623 } else {
576b1e98 624 fout << "parse_" << type << "(&" << loc << (array_flag ? "[0]" : "") << ");";
62e76326 625 }
576b1e98 626 fout << std::endl;
6f58d7d7 627 fout << " cfg_directive = NULL;" << std::endl;
b6ead21b
AJ
628 if (ifdef.size()) {
629 fout <<
f53969cc
SM
630 "#else" << std::endl <<
631 " debugs(0, DBG_PARSE_NOTE(DBG_IMPORTANT), \"ERROR: '" << name << "' requires " << available_if(ifdef) << "\");" << std::endl <<
632 "#endif" << std::endl;
b6ead21b 633 }
576b1e98
AJ
634 fout << " return 1;" << std::endl;
635 fout << " };" << std::endl;
147a3e90 636}
637
638void
576b1e98 639Entry::genParse(std::ostream &fout) const
147a3e90 640{
576b1e98 641 if (name.compare("comment") == 0)
62e76326 642 return;
643
576b1e98
AJ
644 // Once for the current directive name
645 genParseAlias(name, fout);
62e76326 646
576b1e98
AJ
647 // All accepted aliases
648 for (EntryAliasList::const_iterator a = alias.begin(); a != alias.end(); ++a) {
649 genParseAlias(*a, fout);
650 }
147a3e90 651}
652
653static void
576b1e98 654gen_parse(const EntryList &head, std::ostream &fout)
147a3e90 655{
7ff7a211 656 fout <<
f53969cc
SM
657 "static int\n"
658 "parse_line(char *buff)\n"
659 "{\n"
660 "\tchar\t*token;\n"
661 "\tif ((token = strtok(buff, w_space)) == NULL) \n"
662 "\t\treturn 1;\t/* ignore empty lines */\n"
663 "\tConfigParser::SetCfgLine(strtok(NULL, \"\"));\n";
147a3e90 664
576b1e98
AJ
665 for (EntryList::const_iterator e = head.begin(); e != head.end(); ++e)
666 e->genParse(fout);
7ff7a211
FC
667
668 fout << "\treturn 0; /* failure */\n"
f53969cc 669 "}\n\n";
934b03fc 670
934b03fc 671}
672
673static void
576b1e98 674gen_dump(const EntryList &head, std::ostream &fout)
934b03fc 675{
7ff7a211 676 fout <<
f53969cc
SM
677 "static void" << std::endl <<
678 "dump_config(StoreEntry *entry)" << std::endl <<
679 "{" << std::endl <<
680 " debugs(5, 4, HERE);" << std::endl;
62e76326 681
576b1e98 682 for (EntryList::const_iterator e = head.begin(); e != head.end(); ++e) {
62e76326 683
576b1e98 684 if (!e->loc.size() || e->loc.compare("none") == 0)
62e76326 685 continue;
686
576b1e98 687 if (e->name.compare("comment") == 0)
62e76326 688 continue;
689
576b1e98
AJ
690 if (e->ifdef.size())
691 fout << "#if " << e->ifdef << std::endl;
62e76326 692
576b1e98 693 fout << " dump_" << e->type << "(entry, \"" << e->name << "\", " << e->loc << ");" << std::endl;
62e76326 694
576b1e98
AJ
695 if (e->ifdef.size())
696 fout << "#endif" << std::endl;
934b03fc 697 }
62e76326 698
576b1e98 699 fout << "}" << std::endl << std::endl;
934b03fc 700}
701
0153d498 702static void
576b1e98 703gen_free(const EntryList &head, std::ostream &fout)
0153d498 704{
7ff7a211 705 fout <<
f53969cc
SM
706 "static void" << std::endl <<
707 "free_all(void)" << std::endl <<
708 "{" << std::endl <<
709 " debugs(5, 4, HERE);" << std::endl;
62e76326 710
576b1e98
AJ
711 for (EntryList::const_iterator e = head.begin(); e != head.end(); ++e) {
712 if (!e->loc.size() || e->loc.compare("none") == 0)
62e76326 713 continue;
714
576b1e98 715 if (e->name.compare("comment") == 0)
62e76326 716 continue;
717
576b1e98
AJ
718 if (e->ifdef.size())
719 fout << "#if " << e->ifdef << std::endl;
62e76326 720
576b1e98 721 fout << " free_" << e->type << "(&" << e->loc << (e->array_flag ? "[0]" : "") << ");" << std::endl;
62e76326 722
576b1e98
AJ
723 if (e->ifdef.size())
724 fout << "#endif" << std::endl;
0153d498 725 }
62e76326 726
576b1e98 727 fout << "}" << std::endl << std::endl;
0153d498 728}
729
c1f8bbd0 730static bool
576b1e98 731isDefined(const std::string &name)
6b53c392 732{
c1f8bbd0
AJ
733 if (!name.size())
734 return true;
62e76326 735
5086523e 736 for (int i = 0; defines[i].name; ++i) {
c1f8bbd0
AJ
737 if (name.compare(defines[i].name) == 0)
738 return defines[i].defined;
a4b8110e 739 }
62e76326 740
c1f8bbd0 741 return false;
6b53c392 742}
743
a4b8110e 744static const char *
c1f8bbd0 745available_if(const std::string &name)
6b53c392 746{
c1f8bbd0 747 assert(name.size());
62e76326 748
5086523e 749 for (int i = 0; defines[i].name; ++i) {
576b1e98 750 if (name.compare(defines[i].name) == 0)
c1f8bbd0 751 return defines[i].enable;
a4b8110e 752 }
62e76326 753
c1f8bbd0 754 return name.c_str();
6b53c392 755}
756
934b03fc 757static void
576b1e98 758gen_conf(const EntryList &head, std::ostream &fout, bool verbose_output)
934b03fc 759{
576b1e98
AJ
760 for (EntryList::const_iterator entry = head.begin(); entry != head.end(); ++entry) {
761 char buf[8192];
762 LineList def;
26ac0430 763 int enabled = 1;
62e76326 764
576b1e98 765 // Display TAG: line
c1f8bbd0 766 if (!entry->name.compare("comment"))
62e76326 767 (void) 0;
c1f8bbd0 768 else if (!entry->name.compare("obsolete"))
76f44481 769 (void) 0;
c98dcee3 770 else if (verbose_output) {
7ff7a211 771 fout << "# TAG: " << entry->name;
62e76326 772
c1f8bbd0 773 if (entry->comment.size())
7ff7a211 774 fout << "\t" << entry->comment;
62e76326 775
7ff7a211 776 fout << std::endl;
c98dcee3 777 }
62e76326 778
576b1e98
AJ
779 // Display --enable/--disable disclaimer
780 if (!isDefined(entry->ifdef)) {
c98dcee3 781 if (verbose_output) {
576b1e98 782 fout << "# Note: This option is only available if Squid is rebuilt with the" << std::endl <<
f53969cc
SM
783 "# " << available_if(entry->ifdef) << std::endl <<
784 "#" << std::endl;
c98dcee3
A
785 }
786 enabled = 0;
62e76326 787 }
788
576b1e98
AJ
789 // Display DOC_START section
790 if (verbose_output && entry->doc.size()) {
791 for (LineList::const_iterator line = entry->doc.begin(); line != entry->doc.end(); ++line) {
792 fout << "#" << *line << std::endl;
c98dcee3
A
793 }
794 }
62e76326 795
576b1e98
AJ
796 if (entry->defaults.docs.size()) {
797 // Display the DEFAULT_DOC line(s)
798 def = entry->defaults.docs;
799 } else {
800 if (entry->defaults.preset.size() && entry->defaults.preset.front().compare("none") != 0) {
801 // Display DEFAULT: line(s)
802 for (LineList::const_iterator l = entry->defaults.preset.begin(); l != entry->defaults.preset.end(); ++l) {
fe7966ec 803 snprintf(buf, sizeof(buf), "%s %s", entry->name.c_str(), l->c_str());
576b1e98
AJ
804 def.push_back(buf);
805 }
806 } else if (entry->defaults.if_none.size()) {
807 // Display DEFAULT_IF_NONE: line(s)
808 for (LineList::const_iterator l = entry->defaults.if_none.begin(); l != entry->defaults.if_none.end(); ++l) {
fe7966ec 809 snprintf(buf, sizeof(buf), "%s %s", entry->name.c_str(), l->c_str());
576b1e98
AJ
810 def.push_back(buf);
811 }
62e76326 812 }
813 }
814
576b1e98
AJ
815 // Display "none" if no default is set or comments to display
816 if (def.empty() && entry->nocomment.empty() && entry->name.compare("comment") != 0)
817 def.push_back("none");
62e76326 818
576b1e98 819 if (verbose_output && def.size()) {
7ff7a211 820 fout << "#Default:\n";
576b1e98
AJ
821 while (def.size()) {
822 fout << "# " << def.front() << std::endl;
823 def.pop_front();
62e76326 824 }
576b1e98
AJ
825 if (entry->doc.empty() && entry->nocomment.empty())
826 fout << std::endl;
62e76326 827 }
828
576b1e98 829 if (verbose_output && entry->nocomment.size())
7ff7a211 830 fout << "#" << std::endl;
62e76326 831
c98dcee3 832 if (enabled || verbose_output) {
576b1e98
AJ
833 for (LineList::const_iterator line = entry->nocomment.begin(); line != entry->nocomment.end(); ++line) {
834 if (!enabled && line->at(0) != '#')
835 fout << "#";
836 fout << *line << std::endl;
c98dcee3
A
837 }
838 }
62e76326 839
576b1e98 840 if (verbose_output && entry->doc.size()) {
7ff7a211 841 fout << std::endl;
62e76326 842 }
934b03fc 843 }
844}
b11724bb
CT
845
846static const char *
847gen_quote_escape(const std::string &var)
848{
849 static std::string esc;
850 esc.clear();
851
852 for (int i = 0; i < var.length(); ++i) {
853 switch (var[i]) {
e2849af8
A
854 case '"':
855 case '\\':
856 esc += '\\';
857 default:
858 esc += var[i];
b11724bb
CT
859 }
860 }
861
862 return esc.c_str();
863}
f53969cc 864