aboutsummaryrefslogtreecommitdiff
path: root/src/port/path.c
blob: c0b579dede08191c957de30e67ebb71633985622 (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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
/*-------------------------------------------------------------------------
 *
 * path.c
 *	  portable path handling routines
 *
 * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
 *	  $PostgreSQL: pgsql/src/port/path.c,v 1.13 2004/05/25 01:42:08 momjian Exp $
 *
 *-------------------------------------------------------------------------
 */

#include "c.h"

#include <ctype.h>

#include "pg_config_paths.h"


#ifndef WIN32
#define	ISSEP(ch)	((ch) == '/')
#else
#define	ISSEP(ch)	((ch) == '/' || (ch) == '\\')
#endif

static bool relative_path(const char *path1, const char *path2);
static void trim_directory(char *path);
static void trim_trailing_separator(char *path);

/* Move to last of consecutive separators or to null byte */
#define MOVE_TO_SEP_END(p) \
{ \
	while (ISSEP((p)[0]) && (ISSEP((p)[1]) || !(p)[1])) \
		(p)++; \
}


/*
 *	first_path_separator
 */
char *
first_path_separator(const char *filename)
{
	char	   *p;

	for (p = (char *)filename; *p; p++)
		if (ISSEP(*p))
			return p;
	return NULL;
}


/*
 *	last_path_separator
 */
char *
last_path_separator(const char *filename)
{
	char	   *p, *ret = NULL;

	for (p = (char *)filename; *p; p++)
		if (ISSEP(*p))
			ret = p;
	return ret;
}


/*
 * make all paths look like unix, with forward slashes
 * also strip any trailing slash.
 *
 * The Windows command processor will accept suitably quoted paths
 * with forward slashes, but barfs badly with mixed forward and back
 * slashes. Removing the trailing slash on a path means we never get
 * ugly double slashes.  Don't remove a leading slash, though.
 */
void
canonicalize_path(char *path)
{
#ifdef WIN32
	char	   *p;

	for (p = path; *p; p++)
	{
		if (*p == '\\')
			*p = '/';
	}
#endif

	trim_trailing_separator(path);
}


/*
 * Extracts the actual name of the program as called.
 */
const char *
get_progname(const char *argv0)
{
	if (!last_path_separator(argv0))
		return argv0;
	else
		return last_path_separator(argv0) + 1;
}


/*
 *	get_share_path
 */
void
get_share_path(const char *my_exec_path, char *ret_path)
{
	char path[MAXPGPATH];
	
	if (relative_path(PGBINDIR, PGSHAREDIR))
	{
		StrNCpy(path, my_exec_path, MAXPGPATH);
		trim_directory(path);	/* trim off binary */
		trim_directory(path);	/* trim off /bin */
		snprintf(ret_path, MAXPGPATH, "%s/share", path);
	}
	else
		StrNCpy(ret_path, PGSHAREDIR, MAXPGPATH);
}



/*
 *	get_etc_path
 */
void
get_etc_path(const char *my_exec_path, char *ret_path)
{
	char path[MAXPGPATH];
	
	if (relative_path(PGBINDIR, SYSCONFDIR))
	{
		StrNCpy(path, my_exec_path, MAXPGPATH);
		trim_directory(path);
		trim_directory(path);
		snprintf(ret_path, MAXPGPATH, "%s/etc", path);
	}
	else
		StrNCpy(ret_path, SYSCONFDIR, MAXPGPATH);
}



/*
 *	get_include_path
 */
void
get_include_path(const char *my_exec_path, char *ret_path)
{
	char path[MAXPGPATH];
	
	if (relative_path(PGBINDIR, INCLUDEDIR))
	{
		StrNCpy(path, my_exec_path, MAXPGPATH);
		trim_directory(path);
		trim_directory(path);
		snprintf(ret_path, MAXPGPATH, "%s/include", path);
	}
	else
		StrNCpy(ret_path, INCLUDEDIR, MAXPGPATH);
}



/*
 *	get_pkginclude_path
 */
void
get_pkginclude_path(const char *my_exec_path, char *ret_path)
{
	char path[MAXPGPATH];
	
	if (relative_path(PGBINDIR, PKGINCLUDEDIR))
	{
		StrNCpy(path, my_exec_path, MAXPGPATH);
		trim_directory(path);
		trim_directory(path);
		snprintf(ret_path, MAXPGPATH, "%s/include", path);
	}
	else
		StrNCpy(ret_path, PKGINCLUDEDIR, MAXPGPATH);
}



/*
 *	get_pkglib_path
 *
 *	Return library path, either relative to /bin or hardcoded
 */
void
get_pkglib_path(const char *my_exec_path, char *ret_path)
{
	char path[MAXPGPATH];
	
	if (relative_path(PGBINDIR, PKGLIBDIR))
	{
		StrNCpy(path, my_exec_path, MAXPGPATH);
		trim_directory(path);
		trim_directory(path);
		snprintf(ret_path, MAXPGPATH, "%s/lib", path);
	}
	else
		StrNCpy(ret_path, PKGLIBDIR, MAXPGPATH);
}



/*
 *	get_locale_path
 *
 *	Return locale path, either relative to /bin or hardcoded
 */
void
get_locale_path(const char *my_exec_path, char *ret_path)
{
	char path[MAXPGPATH];
	
	if (relative_path(PGBINDIR, LOCALEDIR))
	{
		StrNCpy(path, my_exec_path, MAXPGPATH);
		trim_directory(path);
		trim_directory(path);
		snprintf(ret_path, MAXPGPATH, "%s/share/locale", path);
	}
	else
		StrNCpy(ret_path, LOCALEDIR, MAXPGPATH);
}



/*
 *	set_pglocale
 *
 *	Set application-specific locale
 *
 *	This function takes an argv[0] rather than a full path.
 */
void
set_pglocale(const char *argv0, const char *app)
{
#ifdef ENABLE_NLS
	char path[MAXPGPATH];
	char my_exec_path[MAXPGPATH];

	/* don't set LC_ALL in the backend */
	if (strcmp(app, "postgres") != 0)
		setlocale(LC_ALL, "");

	if (find_my_exec(argv0, my_exec_path) < 0)
		return;
		
	get_locale_path(argv0, path);
	bindtextdomain(app, path);
	textdomain(app);
#endif
}



/*
 *	relative_path
 *
 *	Do the supplied paths differ only in their last component?
 */
static bool
relative_path(const char *path1, const char *path2)
{

#ifdef WIN32
	/* Driver letters match? */
	if (isalpha(*path1) && path1[1] == ':' &&
		(!isalpha(*path2) || !path2[1] == ':'))
		return false;
	if ((!isalpha(*path1) || !path1[1] == ':') &&
		(isalpha(*path2) && path2[1] == ':'))
		return false;
	if (isalpha(*path1) && path1[1] == ':' &&
		isalpha(*path2) && path2[1] == ':')
	{
		if (toupper(*path1) != toupper(*path2))
			return false;
		path1 += 2;
		path2 += 2;
	}
#endif

	while (1)
	{
		/* Move past adjacent slashes like //, and trailing ones */
		MOVE_TO_SEP_END(path1);
		MOVE_TO_SEP_END(path2);

		/* One of the paths is done? */
		if (!*path1 || !*path2)
			break;

		/* Win32 filesystem is case insensitive */
#ifndef WIN32
		if (*path1 != *path2)
#else
		if (toupper((unsigned char) *path1) != toupper((unsigned char)*path2))
#endif
			break;

		path1++;
		path2++;
	}

	/* both done, identical? */
	if (!*path1 && !*path2)
		return false;

	/* advance past directory name */	
	while (!ISSEP(*path1) && *path1)
		path1++;
	while (!ISSEP(*path2) && *path2)
		path2++;

	MOVE_TO_SEP_END(path1);
	MOVE_TO_SEP_END(path2);

	/* Are both strings done? */
	if (!*path1 && !*path2)
		return true;
	else
		return false;
}


/*
 *	trim_directory
 *
 *	Trim trailing directory from path
 */
static void
trim_directory(char *path)
{
	char *p;
	
	if (path[0] == '\0')
		return;

	for (p = path + strlen(path) - 1; ISSEP(*p) && p > path; p--)
		;
	for (; !ISSEP(*p) && p > path; p--)
		;
	*p = '\0';
	return;
}



/*
 *	trim_trailing_separator
 */
static void
trim_trailing_separator(char *path)
{
	char *p = path + strlen(path);
	
	/* trim off trailing slashes */
	if (p > path)
		for (p--; p >= path && ISSEP(*p); p--)
			*p = '\0';
}