summaryrefslogtreecommitdiffstats
path: root/contrib/global/gtags/gtags.c
blob: ef4a8e9a6ce8c4fbbcf9e2f8e7d30d88f4232884 (plain)
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/*
 * Copyright (c) 1996, 1997 Shigio Yamaguchi. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by Shigio Yamaguchi.
 * 4. Neither the name of the author nor the names of any co-contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 *	gtags.c					12-Dec-97
 *
 */
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include "global.h"

char	*progname  = "gtags";		/* command name */

static void	usage __P((void));
void	main __P((int, char **));
int	incremental __P((char *));
void	tagadd __P((int, char *));
void	createtags __P((char *, int));
char	*current __P(());

static int	iflag;
static int	oflag;
static int	vflag;
static int	Dflag;
static int	Rflag;

static void
usage()
{
	fprintf(stderr, "usage:\t%s [-i][-o][-v][dbpath]\n", progname);
	exit(1);
}

void
main(argc, argv)
int	argc;
char	*argv[];
{
	char	dbpath[MAXPATHLEN+1];
	char	env[MAXENVLEN+1];
	char	*path, *p;
	FILE    *ip;
	int	db;

	while (--argc > 0 && (++argv)[0][0] == '-') {
		for (p = argv[0] + 1; *p; p++) {
			switch (*p) {
			case 'i':
				iflag++;
				break;
			case 'o':
				oflag++;
				break;
			case 'v':
				vflag++;
				break;
			/* for compatibility */
			case 's':
			case 'e':
				break;
			default:
				usage();
			}
		}
	}
	if (argc > 0) {
		strcpy(dbpath, *argv);
	} else {
		if (!getcwd(dbpath, MAXPATHLEN))
			die("cannot get current directory.");
	}
	if (!strcmp(dbpath, "/"))
		die("It's root directory! What are you doing?");
	if (!test("d", dbpath))
		die1("directory '%s' not found.", dbpath);
	if (vflag)
		fprintf(stderr, "[%s] Gtags started\n", current());
	/*
	 * teach gctags(1) where is dbpath.
	 */
	sprintf(env, "GTAGSDBPATH=%s", dbpath);
	putenv(env);
	/*
	 * incremental update.
	 */
	if (iflag && test("f", makepath(dbpath, dbname(GTAGS))) &&
		test("f", makepath(dbpath, dbname(GRTAGS))))
	{
		(void)incremental(dbpath);
		exit(0);
	}
	if (iflag && vflag)
		fprintf(stderr, " GTAGS and GRTAGS not found. -i option ignored.\n");
	/*
 	 * create GTAGS, GRTAGS and GSYMS
	 */
	for (db = GTAGS; db < GTAGLIM; db++) {
		if (oflag && db == GSYMS)
			continue;
		if (vflag)
			fprintf(stderr, "[%s] Creating '%s'.\n", current(), dbname(db));
		createtags(dbpath, db);
	}

	if (vflag)
		fprintf(stderr, "[%s] Done.\n", current());
	exit(0);
}
/*
 * incremental: incremental update
 *
 *	i)	dbpath	dbpath directory
 *	r)		0: not updated, 1: updated
 */
int
incremental(dbpath)
char	*dbpath;
{
	struct stat sb;
	time_t	gtags_mtime;
	int	updated = 0;
	char	*path;
	int	db;

	if (vflag) {
		fprintf(stderr, " Tag found in '%s'.\n", dbpath);
		fprintf(stderr, " Incremental update.\n");
	}
	/*
	 * get modified time of GTAGS.
	 */
	path = makepath(dbpath, dbname(GTAGS));
	if (stat(path, &sb) < 0)
		die1("stat failed '%s'.", path);
	gtags_mtime = sb.st_mtime;

	for (findopen(); path = findread(NULL); ) {
		if (stat(path, &sb) < 0)
			die1("stat failed '%s'.", path);
		/*
		 * only the path modified after GTAGS was modified.
		 */
		if (gtags_mtime < sb.st_mtime) {
			updated = 1;
			if (vflag)
				fprintf(stderr, " Updating tags of '%s' ...", path + 2);
			for (db = GTAGS; db < GTAGLIM; db++) {
				if (db == GSYMS && !test("f", makepath(dbpath, dbname(db))))
					continue;
				if (vflag)
					fprintf(stderr, "%s", dbname(db));
				tagopen(dbpath, db, 2);
				/*
				 * GTAGS needed to make GRTAGS.
				 */
				if (db == GRTAGS)
					lookupopen(dbpath);
				tagdelete(path);
				if (vflag)
					fprintf(stderr, "..");
				tagadd(db, path);
				if (db == GRTAGS)
					lookupclose();
				tagclose();
			}
			if (vflag)
				fprintf(stderr, " Done.\n");
		}
	}
	findclose();
	if (vflag) {
		if (updated)
			fprintf(stderr, " Global databases have been modified.\n");
		else
			fprintf(stderr, " Global databases are up to date.\n");
		fprintf(stderr, "[%s] Done.\n", current());

		fprintf(stderr, " Done.\n");
	}
	return updated;
}
/*
 * tagadd: add records which has specified path.
 *
 *	i)	db	0: GTAGS, 1: GRTAGS, 2: GSYMS
 *	i)	path	source file
 */
void
tagadd(db, path)
int	db;
char	*path;
{
	char	*tagline, *p, *q;
	char	key[IDENTLEN+1];
	FILE	*ip;

	stropen();
	/*
	 * make command line.
	 */
	strputs("gctags -Dex");
	if (db == GRTAGS)
		strputs("r");
	if (db == GSYMS)
		strputs("sc");
	strputc(' ');
	strputs(path);
	p = strclose();
	if (!(ip = popen(p, "r")))
		die1("cannot execute '%s'.", p);
	while (tagline = mgets(ip, 0, NULL)) {
		p = tagline;
		q = key;
		while (*p && !isspace(*p))
			*q++ = *p++;
		*q = 0;
		tagput(key, tagline);
	}
	pclose(ip);
}
/*
 * createtags: create tags file
 *
 *	i)	dbpath	dbpath directory
 *	i)	db	GTAGS, GRTAGS, GSYMS
 */
void
createtags(dbpath, db)
char	*dbpath;
int	db;
{
	char	*path;

	/*
	 * GTAGS needed to make GRTAGS.
	 */
	if (db == GRTAGS)
		lookupopen(dbpath);
	tagopen(dbpath, db, 1);
	for (findopen(); path = findread(NULL); ) {
		/*
		 * GRTAGS and GSYMS doesn't treat asembler.
		 */
		if (db != GTAGS) {
			char	*p = path + strlen(path) - 1;
			if ((*p == 's' || *p == 'S') && *(p - 1) == '.')
				continue;
		}
		if (vflag)
			fprintf(stderr, " extracting tags of %s.\n", path);
		tagadd(db, path);
	}
	findclose();
	tagclose();
	if (db == GRTAGS)
		lookupclose();
}
/*
 * current: current date and time
 *
 *	r)		date and time
 */
#include <time.h>
char	*
current()
{
	static	char	buf[80];
	time_t	tval;

	if (time(&tval) == -1)
		die("cannot get current time.");
	(void)strftime(buf, sizeof(buf), "%+", localtime(&tval));

	return buf;
}
OpenPOWER on IntegriCloud