8ac72089d388db9a242a66a5bd2f7a75822fe214
[dragonfly.git] / usr.bin / xlint / lint2 / msg.c
1 /*      $NetBSD: msg.c,v 1.2 1995/07/03 21:24:56 cgd Exp $      */
2
3 /*
4  * Copyright (c) 1994, 1995 Jochen Pohl
5  * All Rights Reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by Jochen Pohl for
18  *      The NetBSD Project.
19  * 4. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  * $NetBSD: msg.c,v 1.2 1995/07/03 21:24:56 cgd Exp $
34  */
35
36 #include <string.h>
37
38 #include <stdio.h>
39 #ifdef __STDC__
40 #include <stdarg.h>
41 #else
42 #include <varargs.h>
43 #endif
44
45 #include "lint2.h"
46
47
48 static  const   char *msgs[] = {
49         "%s used( %s ), but not defined",                             /* 0 */
50         "%s defined( %s ), but never used",                           /* 1 */
51         "%s declared( %s ), but never used or defined",               /* 2 */
52         "%s multiply defined  \t%s  ::  %s",                          /* 3 */
53         "%s value used inconsistently  \t%s  ::  %s",                 /* 4 */
54         "%s value declared inconsistently  \t%s  ::  %s",             /* 5 */
55         "%s, arg %d used inconsistently  \t%s  ::  %s",               /* 6 */
56         "%s: variable # of args  \t%s  ::  %s",                       /* 7 */
57         "%s returns value which is always ignored",                   /* 8 */
58         "%s returns value which is sometimes ignored",                /* 9 */
59         "%s value is used( %s ), but none returned",                  /* 10 */
60         "%s, arg %d declared inconsistently  \t%s :: %s",             /* 11 */
61         "%s: variable # of args declared  \t%s  ::  %s",              /* 12 */
62         "%s: malformed format string  \t%s",                          /* 13 */
63         "%s, arg %d inconsistent with format  \t%s",                  /* 14 */
64         "%s: too few args for format  \t%s",                          /* 15 */
65         "%s: too many args for format  \t%s",                         /* 16 */
66         "%s function value must be declared before use  \t%s  ::  %s",/* 17 */
67 };
68
69 static  const   char *basename __P((const char *));
70
71 #ifdef __STDC__
72 void
73 msg(int n, ...)
74 {
75 #else
76 void
77 msg(va_alist)
78         va_dcl
79         int     n;
80 {
81 #endif
82         va_list ap;
83
84 #ifdef __STDC__
85         va_start(ap, n);
86 #else
87         va_start(ap);
88         n = va_arg(ap, int);
89 #endif
90
91         (void)vprintf(msgs[n], ap);
92         (void)printf("\n");
93
94         va_end(ap);
95 }
96
97 /*
98  * Return a pointer to the last component of a path.
99  */
100 static const char *
101 basename(path)
102         const   char *path;
103 {
104         const   char *cp, *cp1, *cp2;
105
106         if (Fflag)
107                 return (path);
108
109         cp = cp1 = cp2 = path;
110         while (*cp != '\0') {
111                 if (*cp++ == '/') {
112                         cp2 = cp1;
113                         cp1 = cp;
114                 }
115         }
116         return (*cp1 == '\0' ? cp2 : cp1);
117 }
118
119 /*
120  * Create a string which describes a position in a source file.
121  */
122 const char *
123 mkpos(posp)
124         pos_t   *posp;
125 {
126         size_t  len;
127         const   char *fn;
128         static  char    *buf;
129         static  size_t  blen = 0;
130         int     qm, src, line;
131
132         if (Hflag && posp->p_src != posp->p_isrc) {
133                 src = posp->p_isrc;
134                 line = posp->p_iline;
135         } else {
136                 src = posp->p_src;
137                 line = posp->p_line;
138         }
139         qm = !Hflag && posp->p_src != posp->p_isrc;
140
141         len = strlen(fn = basename(fnames[src]));
142         len += 3 * sizeof (u_short) + 4;
143
144         if (len > blen)
145                 buf = xrealloc(buf, blen = len);
146         if (line != 0) {
147                 (void)sprintf(buf, "%s%s(%hu)",
148                               fn, qm ? "?" : "", line);
149         } else {
150                 (void)sprintf(buf, "%s", fn);
151         }
152
153         return (buf);
154 }
155