update from main archive 970121
[glibc.git] / db / makedb.c
blob7ce95487888184ed07eeef8a71b1618e16916fa0
1 /* makedb -- create simple DB database from textual input.
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <db.h>
22 #include <ctype.h>
23 #include <errno.h>
24 #include <error.h>
25 #include <fcntl.h>
26 #include <getopt.h>
27 #include <libintl.h>
28 #include <locale.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
33 /* Get libc version number. */
34 #include "../version.h"
36 #define PACKAGE _libc_intl_domainname
38 /* Long options. */
39 static const struct option long_options[] =
41 { "help", no_argument, NULL, 'h' },
42 { "fold-case", no_argument, NULL, 'f' },
43 { "output", required_argument, NULL, 'o' },
44 { "quiet", no_argument, NULL, 'q' },
45 { "undo", no_argument, NULL, 'u' },
46 { "version", no_argument, NULL, 'V' },
47 { NULL, 0, NULL, 0}
50 /* Prototypes for local functions. */
51 static void usage __P ((int status)) __attribute__ ((noreturn));
52 static int process_input __P ((FILE *input, const char *inname, DB *output,
53 int to_lowercase, int be_quiet));
54 static int print_database __P ((DB *db));
55 int main __P ((int argc, char *argv[]));
58 int
59 main (argc, argv)
60 int argc;
61 char *argv[];
63 const char *output_name;
64 const char *input_name;
65 FILE *input_file;
66 DB *db_file;
67 int do_help;
68 int do_version;
69 int to_lowercase;
70 int do_undo;
71 int be_quiet;
72 int status;
73 int opt;
75 /* Set locale via LC_ALL. */
76 setlocale (LC_ALL, "");
78 /* Set the text message domain. */
79 textdomain (_libc_intl_domainname);
81 /* Initialize local variables. */
82 do_help = 0;
83 do_version = 0;
84 to_lowercase = 0;
85 do_undo = 0;
86 be_quiet = 0;
87 output_name = NULL;
89 while ((opt = getopt_long (argc, argv, "fho:uV", long_options, NULL)) != -1)
90 switch (opt)
92 case '\0': /* Long option. */
93 break;
94 case 'h':
95 do_help = 1;
96 break;
97 case 'f':
98 to_lowercase = 1;
99 break;
100 case 'o':
101 output_name = optarg;
102 break;
103 case 'q':
104 be_quiet = 1;
105 break;
106 case 'u':
107 do_undo = 1;
108 break;
109 case 'V':
110 do_version = 1;
111 break;
112 default:
113 usage (EXIT_FAILURE);
116 /* Version information is requested. */
117 if (do_version)
119 printf ("makedb (GNU %s) %s\n", PACKAGE, VERSION);
120 printf (_("\
121 Copyright (C) %s Free Software Foundation, Inc.\n\
122 This is free software; see the source for copying conditions. There is NO\n\
123 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
124 "), "1996, 1997");
125 printf (_("Written by %s.\n"), "Ulrich Drepper");
127 exit (EXIT_SUCCESS);
130 /* Help is requested. */
131 if (do_help)
132 usage (EXIT_SUCCESS);
133 else if (do_version)
134 exit (EXIT_SUCCESS);
136 /* Determine file names. */
137 if (do_undo || output_name != NULL)
139 if (optind + 1 != argc)
141 wrong_arguments:
142 error (0, 0, gettext ("wrong number of arguments"));
143 usage (EXIT_FAILURE);
145 input_name = argv[optind];
147 else
149 if (optind + 2 != argc)
150 goto wrong_arguments;
152 input_name = argv[optind++];
153 output_name = argv[optind];
156 /* Special handling if we are asked to print the database. */
157 if (do_undo)
159 db_file = dbopen (input_name, O_RDONLY, 0666, DB_BTREE, NULL);
160 if (db_file == NULL)
161 error (EXIT_FAILURE, 0, gettext ("cannot open database file `%s': %s"),
162 input_name,
163 errno == EFTYPE ? gettext ("incorrectly formatted file")
164 : strerror (errno));
166 status = print_database (db_file);
168 db_file->close (db_file);
170 return status;
173 /* Open input file. */
174 if (strcmp (input_name, "-") == 0 || strcmp (input_name, "/dev/stdin") == 0)
175 input_file = stdin;
176 else
178 input_file = fopen (input_name, "r");
179 if (input_file == NULL)
180 error (EXIT_FAILURE, errno, gettext ("cannot open input file `%s'"),
181 input_name);
184 /* Open output file. This must not be standard output so we don't
185 handle "-" and "/dev/stdout" special. */
186 db_file = dbopen (output_name, O_CREAT | O_RDWR | O_TRUNC, 0666,
187 DB_BTREE, NULL);
188 if (db_file == NULL)
189 error (EXIT_FAILURE, errno, gettext ("cannot open output file `%s'"));
191 /* Start the real work. */
192 status = process_input (input_file, input_name, db_file, to_lowercase,
193 be_quiet);
195 /* Close files. */
196 if (input_file != stdin)
197 fclose (input_file);
198 db_file->close (db_file);
200 return status;
204 static void
205 usage (status)
206 int status;
208 if (status != EXIT_SUCCESS)
209 fprintf (stderr, gettext ("Try `%s --help' for more information.\n"),
210 program_invocation_name);
211 else
213 printf (gettext ("\
214 Usage: %s [OPTION]... INPUT-FILE OUTPUT-FILE\n\
215 %s [OPTION]... -o OUTPUT-FILE INPUT-FILE\n\
216 %s [OPTION]... -u INPUT-FILE\n\
217 Mandatory arguments to long options are mandatory for short options too.\n\
218 -f, --fold-case convert key to lower case\n\
219 -h, --help display this help and exit\n\
220 -o, --output=NAME write output to file NAME\n\
221 --quiet don't print messages while building database\n\
222 -u, --undo print content of database file, one entry a line\n\
223 -V, --version output version information and exit\n\
224 If INPUT-FILE is -, input is read from standard input.\n"),
225 program_invocation_name, program_invocation_name,
226 program_invocation_name);
227 fputs (gettext ("\
228 Report bugs using the `glibcbug' script to <bugs@gnu.ai.mit.edu>.\n"),
229 stdout);
232 exit (status);
236 static int
237 process_input (input, inname, output, to_lowercase, be_quiet)
238 FILE *input;
239 const char *inname;
240 DB *output;
241 int to_lowercase;
242 int be_quiet;
244 char *line;
245 size_t linelen;
246 int status;
247 size_t linenr;
249 line = NULL;
250 linelen = 0;
251 status = EXIT_SUCCESS;
252 linenr = 0;
254 while (!feof (input))
256 DBT key;
257 DBT val;
258 char *cp;
259 int n;
261 n = getline (&line, &linelen, input);
262 if (n < 0)
263 /* This means end of file or some bug. */
264 break;
265 if (n == 0)
266 /* Short read. Probably interrupted system call. */
267 continue;
269 ++linenr;
271 if (line[n - 1] == '\n')
272 /* Remove trailing newline. */
273 line[--n] = '\0';
275 cp = line;
276 while (isspace (*cp))
277 ++cp;
279 if (*cp == '#')
280 /* First non-space character in line '#': it's a comment. */
281 continue;
283 key.data = cp;
284 while (*cp != '\0' && !isspace (*cp))
286 if (to_lowercase)
287 *cp = tolower (*cp);
288 ++cp;
291 if (key.data == cp)
292 /* It's an empty line. */
293 continue;
295 key.size = cp - (char *) key.data;
297 while (isspace (*cp))
298 ++cp;
300 val.data = cp;
301 val.size = &line[n] - cp;
303 /* Store the value. */
304 status = output->put (output, &key, &val, R_NOOVERWRITE);
305 if (status != 0)
307 if (status == 1)
309 if (!be_quiet)
310 error_at_line (0, 0, inname, linenr,
311 gettext ("duplicate key"));
312 /* This is no real error. Just give a warning. */
313 status = 0;
315 else
316 error (0, errno, gettext ("while writing data base file"));
318 status = status ? EXIT_FAILURE : EXIT_SUCCESS;
320 clearerr (input);
321 break;
325 if (ferror (input))
327 error (0, 0, gettext ("problems while reading `%s'"));
328 status = EXIT_FAILURE;
331 return status;
335 static int
336 print_database (db)
337 DB *db;
339 DBT key;
340 DBT val;
341 int no_more;
343 no_more = db->seq (db, &key, &val, R_FIRST);
344 while (!no_more)
346 printf ("%.*s %.*s\n", (int) key.size, (char *) key.data, (int) val.size,
347 (char *) val.data);
349 no_more = db->seq (db, &key, &val, R_NEXT);
352 if (no_more == -1)
354 error (0, errno, gettext ("while reading database"));
355 return EXIT_FAILURE;
358 return EXIT_SUCCESS;