]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ConfigParser.h
Polish: complete constructor for class DelayBucket
[thirdparty/squid.git] / src / ConfigParser.h
CommitLineData
b67e2c8c 1
2/*
b67e2c8c 3 *
4 * SQUID Web Proxy Cache http://www.squid-cache.org/
5 * ----------------------------------------------------------
6 *
7 * Squid is the result of efforts by numerous individuals from
8 * the Internet community; see the CONTRIBUTORS file for full
9 * details. Many organizations have provided support for Squid's
10 * development; see the SPONSORS file for full details. Squid is
11 * Copyrighted (C) 2001 by the Regents of the University of
12 * California; see the COPYRIGHT file for full details. Squid
13 * incorporates software developed and/or copyrighted by other
14 * sources; see the CREDITS file for full details.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
26ac0430 20 *
b67e2c8c 21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26ac0430 25 *
b67e2c8c 26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
29 *
30 *
31 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
32 */
33
d295d770 34#ifndef SQUID_CONFIGPARSER_H
35#define SQUID_CONFIGPARSER_H
36
582c2af2 37#include "SquidString.h"
62e76326 38
582c2af2 39class wordlist;
abd9dd91
AJ
40/**
41 * Limit to how long any given config line may be.
42 * This affects squid.conf and all included files.
43 *
44 * Behaviour when setting larger than 2KB is unknown.
45 * The config parser read mechanism can cope, but the other systems
46 * receiving the data from its buffers on such lines may not.
47 */
48#define CONFIG_LINE_LIMIT 2048
49
50/**
a9f20260 51 * A configuration file Parser. Instances of this class track
52 * parsing state and perform tokenisation. Syntax is currently
53 * taken care of outside this class.
9227a6e1 54 *
55 * One reason for this class is to allow testing of configuration
56 * using modules without linking cache_cf.o in - because that drags
57 * in all of squid by reference. Instead the tokeniser only is
58 * brought in.
a9f20260 59 */
62e76326 60class ConfigParser
61{
62
b67e2c8c 63public:
a9f20260 64 void destruct();
f45dd259 65 static void ParseUShort(unsigned short *var);
3a69ddf3 66 static void ParseBool(bool *var);
67 static void ParseString(char **var);
30abd221 68 static void ParseString(String *var);
f4698e0b
CT
69 /// Parse an unquoted token (no spaces) or a "quoted string" that
70 /// may include spaces. In some contexts, quotes strings may also
71 /// include macros. Quoted strings may escape any character with
72 /// a backslash (\), which is currently only useful for inner
73 /// quotes. TODO: support quoted strings anywhere a token is accepted.
74 static void ParseQuotedString(char **var, bool *wasQuoted = NULL);
75 static void ParseQuotedString(String *var, bool *wasQuoted = NULL);
71be37e0 76 static const char *QuoteString(String &var);
3a69ddf3 77 static void ParseWordList(wordlist **list);
d295d770 78 static char * strtokFile();
b67e2c8c 79};
80
8a648e8d 81int parseConfigFile(const char *file_name);
62ee09ca 82
d295d770 83#endif /* SQUID_CONFIGPARSER_H */