summaryrefslogtreecommitdiff
path: root/src/tet3/tcc/utils.c
blob: 906b4f63828bc72e5ccd8ec4791ec38270771882 (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
/*
 *	SCCS: @(#)utils.c	1.7 (98/09/01)
 *
 *	UniSoft Ltd., London, England
 *
 * (C) Copyright 1996 X/Open Company Limited
 *
 * All rights reserved.  No part of this source code may be reproduced,
 * stored in a retrieval system, or transmitted, in any form or by any
 * means, electronic, mechanical, photocopying, recording or otherwise,
 * except as stated in the end-user licence agreement, without the prior
 * permission of the copyright owners.
 * A copy of the end-user licence agreement is contained in the file
 * Licence which accompanies this distribution.
 * 
 * X/Open and the 'X' symbol are trademarks of X/Open Company Limited in
 * the UK and other countries.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

/************************************************************************

SCCS:   	@(#)utils.c	1.7 98/09/01 TETware release 3.3
NAME:		utils.c
PRODUCT:	TETware
AUTHOR:		Andrew Dingwall, UniSoft Ltd.
DATE CREATED:	August 1996

DESCRIPTION:
	tcc utility functions

MODIFICATIONS:
	Geoff Clare, UniSoft Ltd., August 1996
	Missing <string.h>.

	Andrew Dingwall, UniSoft Ltd., May 1998
	Use tet_basename() in dtet2lib instead of tcc_basename().

	Aaron Plattner, April 2010
	Fixed warnings when compiled with GCC's -Wall option.

************************************************************************/

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <time.h>
#include <ctype.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include "dtmac.h"
#include "error.h"
#include "globals.h"
#include "ftoa.h"
#include "dtetlib.h"
#include "tcc.h"


/*
**	rstrstore() - reliable strstore() call
**
**	there is no return on error
*/

char *rstrstore(s)
char *s;
{
	char *p;

	if ((p = tet_strstore(s)) == (char *) 0)
		fatal(0, "can't continue", (char *) 0);

	return(p);
}

#ifdef NOTRACE

/*
**	rbufchk() - reliable tet_bufchk() call
*/

void rbufchk(bpp, lp, newlen)
char **bpp;
int *lp, newlen;
{
	if (tet_bufchk(bpp, lp, newlen) < 0)
		fatal(0, "can't continue", (char *) 0);
}

#else /* NOTRACE */

/*
**	rbuftrace() - reliable tet_buftrace() call
*/

void rbuftrace(char **bpp, int *lp, int newlen, const char *file, int line)
{
	if (tet_buftrace(bpp, lp, newlen, file, line) < 0)
		fatal(0, "can't continue", (char *) 0);
}

#endif /* NOTRACE */

/*
**	split() - split a string up into at most maxargs fields,
**		discarding excess fields
**
**	return the number of fields found
*/

int split(s, argv, maxargs, delim)
register char *s, **argv;
register int maxargs, delim;
{
	register int argc, new;

	if (isspace(delim))
		return(tet_getargs(s, argv, maxargs));

	for (argc = 0, new = 1; *s; s++)
		if (*s == (char) delim) {
			*s = '\0';
			new = 1;
			if (argc >= maxargs)
				break;
		}
		else if (new && argc++ < maxargs) {
			*argv++ = s;
			new = 0;
		}

	return(argc);
}

/*
**	scenerror() - report an error in a scenario file
*/

void scenerror(s1, s2, lineno, fname)
char *s1, *s2, *fname;
int lineno;
{
	scenermsg(s1, s2, lineno, fname);
	if (++scenerrors >= MAXSCENERRORS)
		scengiveup();
}

/*
**	scenermsg() - print a scenario file error message
*/

void scenermsg(s1, s2, lineno, fname)
char *s1, *s2, *fname;
int lineno;
{
	(void) fprintf(stderr, "%s: %s", tet_progname, s1);
	if (s2 && *s2)
		(void) fprintf(stderr, " %s", s2);
	(void) fprintf(stderr, " at line %d in file %s\n", lineno, fname);
	(void) fflush(stderr);
}

/*
**	scengiveup() - report scenario error total and exit
*/

void scengiveup()
{
	(void) fprintf(stderr,
		"%s: giving up after finding %d scenario error%s\n",
		tet_progname, scenerrors, scenerrors == 1 ? "" : "s");
	tcc_exit(1);
}

/*
**	tcc_dirname() - return all but the last part of a path name
**
**	up to dirlen bytes of the return value is copied into the dir array
*/

void tcc_dirname(path, dir, dirlen)
char *path, dir[];
int dirlen;
{
	register int len;

	if ((len = tet_basename(path) - path - 1) == 0 && isdirsep(*path))
		len++;

	if (len <= 0) {
		path = ".";
		len = 1;
	}

	(void) sprintf(dir, "%.*s", TET_MIN(len, dirlen - 1), path);
}

/*
**	fullpath() - return the absolute path name of file
**		relative to dir
**
**	on return up to pathlen bytes are copied to the path array
*/

void fullpath(const char *dir, const char *file, char path[], int pathlen, int remote)
{
	register char *p = path;
	register int len;

#ifndef NOTRACE
	static char null[] = "NULL";
#endif

	TRACE4(tet_Ttcc, 10, "fullpath(\"%s\", \"%s\", %s)",
		dir ? dir : null, file ? file : null,
		remote ? "REMOTE" : "LOCAL");

	ASSERT(file && *file);

	/* Use the current directory if none specified */
	if (!dir) {
		char cwd[MAXPATH];

		errno = 0;
		if (!GETCWD(cwd, MAXPATH))
			fatal(errno, "getcwd() failed", NULL);
		dir = cwd;
	}

	if (
		(remote && !isabspathrem(file)) ||
		(!remote && !isabspathloc(file))
	) {
		ASSERT(dir);
		if (remote)
			ASSERT(isabspathrem(dir));
		else
			ASSERT(isabspathloc(dir));
		(void) sprintf(p, "%.*s", pathlen - 2, dir);
		len = strlen(p);
		p += len;
		pathlen -= len;
		if (
			(remote && !ispcdirsep(*(p - 1))) ||
			(!remote && !isdirsep(*(p - 1)))
		) {
			*p++ = '/';
			*p = '\0';
			--pathlen;
		}
	}


	(void) sprintf(p, "%.*s", pathlen - 1, file);

	if ((dir ? (int) strlen(dir) : 0) + (int) strlen(file) > pathlen - 2)
		error(0, "path name is too long and has been truncated:",
			path);


	TRACE2(tet_Ttcc, 10, "fullpath(): return \"%s\"", path);
}

/*
**	prtccmode() - return printable representation of tcc modes value
*/

char *prtccmode(fval)
int fval;
{
	static struct flags flags[] = {
		{ TCC_START,	"START" },
		{ TCC_BUILD,	"BUILD" },
		{ TCC_EXEC,	"EXEC" },
		{ TCC_CLEAN,	"CLEAN" },
		{ TCC_RESUME,	"RESUME" },
		{ TCC_RERUN,	"RERUN" },
		{ TCC_ABORT,	"ABORT" },
		{ TCC_END,	"END" }
	};

	return(tet_f2a(fval, flags, sizeof flags / sizeof flags[0]));
}