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
|
/* $OpenBSD: modules.c,v 1.1 2008/02/02 19:32:28 joris Exp $ */
/*
* Copyright (c) 2008 Joris Vink <joris@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/dirent.h>
#include <sys/resource.h>
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "cvs.h"
#include "config.h"
TAILQ_HEAD(, module_info) modules;
void
cvs_parse_modules(void)
{
cvs_log(LP_TRACE, "cvs_parse_modules()");
TAILQ_INIT(&modules);
cvs_read_config(CVS_PATH_MODULES, modules_parse_line);
}
void
modules_parse_line(char *line)
{
int flags;
char *val, *p, *module;
struct module_info *mi;
flags = 0;
p = val = line;
while (*p != ' ' && *p != '\t')
p++;
*(p++) = '\0';
module = val;
while (*p == ' ' || *p == '\t')
p++;
if (*p == '\0') {
cvs_log(LP_NOTICE, "premature ending of CVSROOT/modules line");
return;
}
val = p;
while (*p != ' ' && *p != '\t')
p++;
if (*p == '\0') {
cvs_log(LP_NOTICE, "premature ending of CVSROOT/modules line");
return;
}
while (val[0] == '-') {
p = val;
while (*p != ' ' && *p != '\t' && *p != '\0')
p++;
if (*p == '\0') {
cvs_log(LP_NOTICE,
"misplaced option in CVSROOT/modules");
return;
}
*(p++) = '\0';
switch (val[1]) {
case 'a':
break;
}
val = p;
}
mi = xmalloc(sizeof(*mi));
mi->mi_name = xstrdup(module);
mi->mi_repository = xstrdup(val);
TAILQ_INSERT_TAIL(&modules, mi, m_list);
}
char *
cvs_module_lookup(char *name)
{
struct module_info *mi;
TAILQ_FOREACH(mi, &modules, m_list) {
if (!strcmp(name, mi->mi_name))
return (mi->mi_repository);
}
return (name);
}
|