2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1980, 1993 The Regents of the University of California. All rights reserved.
34 * @(#)mkstr.c 8.1 (Berkeley) 6/6/93
35 * $FreeBSD: src/usr.bin/mkstr/mkstr.c,v 1.4.2.1 2002/11/16 01:07:42 tjr Exp $
36 * $DragonFly: src/usr.bin/mkstr/mkstr.c,v 1.3 2008/06/05 18:06:33 swildner Exp $
45 #define ungetchar(c) ungetc(c, stdin)
48 * mkstr - create a string error message file by massaging C source
50 * Bill Joy UCB August 1977
52 * Modified March 1978 to hash old messages to be able to recompile
53 * without addding messages to the message file (usually)
55 * Based on an earlier program conceived by Bill Joy and Chuck Haley
57 * Program to create a string error message file
58 * from a group of C programs. Arguments are the name
59 * of the file where the strings are to be placed, the
60 * prefix of the new files where the processed source text
61 * is to be placed, and the files to be processed.
63 * The program looks for 'error("' in the source stream.
64 * Whenever it finds this, the following characters from the '"'
65 * to a '"' are replaced by 'seekpt' where seekpt is a
66 * pointer into the error message file.
67 * If the '(' is not immediately followed by a '"' no change occurs.
69 * The optional '-' causes strings to be added at the end of the
70 * existing error message file for recompilation of single routines.
73 FILE *mesgread
, *mesgwrite
;
77 int fgetNUL(char *, int, FILE *);
78 unsigned hashit(char *, int, unsigned);
80 int match(const char *);
86 main(int argc
, char *argv
[])
92 if (argc
> 1 && argv
[0][0] == '-')
93 addon
++, argc
--, argv
++;
96 mesgwrite
= fopen(argv
[0], addon
? "a" : "w");
97 if (mesgwrite
== NULL
)
98 err(1, "%s", argv
[0]);
99 mesgread
= fopen(argv
[0], "r");
100 if (mesgread
== NULL
)
101 err(1, "%s", argv
[0]);
104 namelen
= strlcpy(name
, argv
[0], sizeof(name
));
105 if (namelen
>= sizeof(name
)) {
106 errno
= ENAMETOOLONG
;
107 err(1, "%s", argv
[0]);
112 if (strlcpy(np
, argv
[0], sizeof(name
) - namelen
) >=
113 sizeof(name
) - namelen
) {
114 errno
= ENAMETOOLONG
;
115 err(1, "%s%s", name
, argv
[0]);
117 if (freopen(name
, "w", stdout
) == NULL
)
119 if (freopen(argv
[0], "r", stdin
) == NULL
)
120 err(1, "%s", argv
[0]);
130 fprintf(stderr
, "usage: mkstr [-] mesgfile prefix file ...\n");
147 if (match("error(")) {
159 match(const char *ocp
)
164 for (cp
= ocp
+ 1; *cp
; cp
++) {
184 if (cp
== buf
+ sizeof(buf
) - 2)
185 errx(1, "message too long");
227 c
<<= 7, c
+= ch
- '0';
231 c
<<= 3, c
+= ch
- '0', ch
= -1;
239 printf("%d", hashit(buf
, 1, 0));
246 return (c
>= '0' && c
<= '7');
256 while (fgetNUL(buf
, sizeof buf
, mesgread
) != 0) {
257 hashit(buf
, 0, mesgpt
);
258 mesgpt
+= strlen(buf
) + 2;
271 hashit(char *str
, int really
, unsigned fakept
)
282 hashval
= (hashval
<< 1) + *cp
++;
283 i
= hashval
% NBUCKETS
;
287 for (hp
= bucket
[i
]; hp
!= 0; hp
= hp
->hnext
)
288 if (hp
->hval
== hashval
) {
289 fseek(mesgread
, (long) hp
->hpt
, 0);
290 fgetNUL(buf
, sizeof buf
, mesgread
);
292 fprintf(stderr, "Got (from %d) %s\n", hp->hpt, buf);
294 if (strcmp(buf
, str
) == 0)
297 if (!really
|| hp
== 0) {
298 hp
= (struct hash
*) calloc(1, sizeof *hp
);
301 hp
->hnext
= bucket
[i
];
303 hp
->hpt
= really
? ftell(mesgwrite
) : fakept
;
305 fwrite(str
, sizeof (char), strlen(str
) + 1, mesgwrite
);
306 fwrite("\n", sizeof (char), 1, mesgwrite
);
311 fprintf(stderr, "%s hashed to %ld at %d\n", str, hp->hval, hp->hpt);
317 fgetNUL(char *obuf
, int rmdr
, FILE *file
)
322 while (--rmdr
> 0 && (c
= getc(file
)) != 0 && c
!= EOF
)
326 return ((feof(file
) || ferror(file
)) ? 0 : 1);