File: FaxConfig.c%2B%2B

package info (click to toggle)
hylafax 1%3A4.2.1-5sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,788 kB
  • ctags: 7,523
  • sloc: sh: 15,597; ansic: 13,040; makefile: 1,772; cpp: 864
file content (219 lines) | stat: -rw-r--r-- 5,547 bytes parent folder | download | duplicates (3)
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
/*	$Id: FaxConfig.c++,v 1.2 1999/06/13 07:41:22 robert Exp $ */
/*
 * Copyright (c) 1990-1996 Sam Leffler
 * Copyright (c) 1991-1996 Silicon Graphics, Inc.
 * HylaFAX is a trademark of Silicon Graphics
 *
 * Permission to use, copy, modify, distribute, and sell this software and 
 * its documentation for any purpose is hereby granted without fee, provided
 * that (i) the above copyright notices and this permission notice appear in
 * all copies of the software and related documentation, and (ii) the names of
 * Sam Leffler and Silicon Graphics may not be used in any advertising or
 * publicity relating to the software without the specific, prior written
 * permission of Sam Leffler and Silicon Graphics.
 * 
 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
 * 
 * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
 * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
 * OF THIS SOFTWARE.
 */

/*
 * HylaFAX Server Configuration Base Class.
 */
#include "FaxConfig.h"
#include "Str.h"

#include <ctype.h>
#include <pwd.h>

#include "Sys.h"

FaxConfig::FaxConfig()
{
    lineno = 0;
    lastModTime = 0;
}
FaxConfig::FaxConfig(const FaxConfig& other)
{
    lineno = other.lineno;
    lastModTime = other.lastModTime;
}
FaxConfig::~FaxConfig() {}

void
FaxConfig::readConfig(const fxStr& filename)
{
    FILE* fd = Sys::fopen(tildeExpand(filename), "r");
    if (fd) {
	configTrace("Read config file %s", (const char*) filename);
	char line[1024];
	while (fgets(line, sizeof (line)-1, fd)){
	    line[strlen(line)-1]='\0';		// Nuke \r at end of line
	    (void) readConfigItem(line);
	}
	fclose(fd);
    }
}
void FaxConfig::resetConfig() { lineno = 0; }

bool
FaxConfig::updateConfig(const fxStr& filename)
{
    struct stat sb;
    fxStr path(tildeExpand(filename));
    if (Sys::stat(path, sb) == 0 && sb.st_mtime > lastModTime) {
	resetConfig();
	readConfig(path);
	lastModTime = sb.st_mtime;
	return (true);
    } else
	return (false);
}

/*
 * Expand a filename that might have `~' in it.
 */
fxStr
FaxConfig::tildeExpand(const fxStr& filename)
{
    fxStr path(filename);
    if (filename.length() > 1 && filename[0] == '~') {
	path.remove(0);
	char* cp = getenv("HOME");
	if (!cp || *cp == '\0') {
	    struct passwd* pwd = getpwuid(getuid());
	    if (!pwd) {
		configError("No passwd file entry for uid %u,"
		    " cannot expand ~ in \"%s\"",
		    getuid(), (const char*) filename);
		cp = "";		// NB: XXX maybe this should be fatal?
	    } else
		cp = pwd->pw_dir;
	}
	path.insert(cp);
    }
    return (path);
}

bool
FaxConfig::findTag(const char* tag, const void* names0, u_int n, u_int& ix)
{
    const tags* names = (const tags*) names0;

    for (int i = n-1; i >= 0; i--) {
	const char* cp = names[i].name;
	if (cp[0] == tag[0] && streq(cp, tag)) {
	    ix = i;
	    return (true);
	}
    }
    return (false);
}

bool
FaxConfig::findValue(const char* value, const char* values[], u_int n, u_int& ix)
{
    for (u_int i = 0; i < n; i++) {
	const char* cp = values[i];
	if (cp[0] == value[0] && streq(cp, value)) {
	    ix = i;
	    return (true);
	}
    }
    return (false);
}

int
FaxConfig::getNumber(const char* s)
{
    return ((int) strtol(s, NULL, 0));
}

#define	valeq(a,b)	(strcasecmp(a,b)==0)

bool
FaxConfig::getBoolean(const char* cp)
{
    return (valeq(cp, "on") || valeq(cp, "yes") || valeq(cp, "true"));
}

bool
FaxConfig::readConfigItem(const char* b)
{
    char buf[2048];
    char* cp;

    lineno++;
    strncpy(buf, b, sizeof (buf));
    for (cp = buf; isspace(*cp); cp++)		// skip leading white space
	;
    if (*cp == '#' || *cp == '\0')
	return (true);
    const char* tag = cp;			// start of tag
    while (*cp && *cp != ':') {			// skip to demarcating ':'
	if (isupper(*cp))
	    *cp = tolower(*cp);
	cp++;
    }
    if (*cp != ':') {
	configError("Syntax error at line %u, missing ':' in \"%s\"",
	    lineno, b);
	return (false);
    }
    for (*cp++ = '\0'; isspace(*cp); cp++)	// skip white space again
	;
    const char* value;
    if (*cp == '"') {				// "..." value
	int c;
	/*
	 * Parse quoted string and deal with \ escapes.
	 */
	char* dp = ++cp;
	for (value = dp; (c = *cp) != '"'; cp++) {
	    if (c == '\0') {			// unmatched quote mark
		configError("Syntax error at line %u, missing quote mark in \"%s\"",
		    lineno, b);
		return (false);
	    }
	    if (c == '\\') {
		c = *++cp;
		if (isdigit(c)) {		// \nnn octal escape
		    int v = c - '0';
		    if (isdigit(c = cp[1])) {
			cp++, v = (v << 3) + (c - '0');
			if (isdigit(c = cp[1]))
			    cp++, v = (v << 3) + (c - '0');
		    }
		    c = v;
		} else {			// \<char> escapes
		    for (const char* tp = "n\nt\tr\rb\bf\fv\013"; *tp; tp += 2)
			if (c == tp[0]) {
			    c = tp[1];
			    break;
			}
		}
	    }
	    *dp++ = c;
	}
	*dp = '\0';
    } else {					// value up to 1st non-ws
	for (value = cp; *cp && !isspace(*cp); cp++)
	    ;
	*cp = '\0';
    }
    if (!setConfigItem(tag, value)) {
	configTrace("Unknown configuration parameter \"%s\" ignored at line %u",
	     tag, lineno);
	return (false);
    } else {
	configTrace("%s = %s (line %u)", tag, value, lineno);
	return (true);
    }
}