]> git.pond.sub.org Git - empserver/blob - src/lib/gen/fnameat.c
8033ea0df455186d47751d933f62a0faa77ee36a
[empserver] / src / lib / gen / fnameat.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2017, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  fnameat.c: Interpret file names relative to a directory
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2008
31  */
32
33 #include <config.h>
34
35 #include <errno.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include "fnameat.h"
39
40 static int fname_is_abs(const char *);
41
42 /*
43  * Interpret @fname relative to directory @dir.
44  * Return @fname if it is absolute, or @dir is null or empty.
45  * Else return a malloc'ed string containing @dir/@fname, or null
46  * pointer when that fails.
47  */
48 char *
49 fnameat(const char *fname, const char *dir)
50 {
51     char *res;
52
53     if (fname_is_abs(fname) || !dir || !*dir)
54         return (char *)fname;
55
56     res = malloc(strlen(dir) + 1 + strlen(fname) + 1);
57     if (!res)
58         return NULL;
59
60     sprintf(res, "%s/%s", dir, fname);
61     return res;
62 }
63
64 static int
65 fname_is_abs(const char *fname)
66 {
67 #ifdef _WIN32
68     /* Treat as absolute if it starts with '/', '\\' or a drive */
69     return fname[0] == '/' || fname[0] == '\\'
70         || (fname[0] != 0 && fname[1] == ':');
71 #else
72     return fname[0] == '/';
73 #endif
74 }
75
76 /*
77  * Open a stream like fopen(), optionally relative to a directory.
78  * This is exactly like fopen(), except @fname is interpreted relative
79  * to @dir if that is neither null nor empty.
80  */
81 FILE *
82 fopenat(const char *fname, const char *mode, const char *dir)
83 {
84     char *fnat;
85     FILE *fp;
86
87     fnat = fnameat(fname, dir);
88     if (!fnat)
89         return NULL;
90
91     fp = fopen(fnat, mode);
92
93     if (fnat != fname)
94         free(fnat);
95
96     return fp;
97 }