]> git.pond.sub.org Git - empserver/blob - src/lib/gen/fnameat.c
c3aefe21baeeaef2f6f08fbc7e6d780e5ce63da4
[empserver] / src / lib / gen / fnameat.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2014, 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 "prototypes.h"
37
38 static int fname_is_abs(const char *);
39
40 /*
41  * Interpret FNAME relative to directory DIR.
42  * Return FNAME if it is absolute, or DIR is null or empty.
43  * Else return a malloc'ed string containing DIR/FNAME, or null
44  * pointer when that fails.
45  */
46 char *
47 fnameat(const char *fname, const char *dir)
48 {
49     char *res;
50
51     if (fname_is_abs(fname) || !dir || !*dir)
52         return (char *)fname;
53
54     res = malloc(strlen(dir) + 1 + strlen(fname) + 1);
55     if (!res)
56         return NULL;
57
58     sprintf(res, "%s/%s", dir, fname);
59     return res;
60 }
61
62 static int
63 fname_is_abs(const char *fname)
64 {
65 #ifdef _WIN32
66     /* Treat as absolute if it starts with '/', '\\' or a drive */
67     return fname[0] == '/' || fname[0] == '\\'
68         || (fname[0] != 0 && fname[1] == ':');
69 #else
70     return fname[0] == '/';
71 #endif
72 }
73
74 /*
75  * Open a stream like fopen(), optionally relative to a directory.
76  * This is exactly like fopen(), except FNAME is interpreted relative
77  * to DIR if that is neither null nor empty.
78  */
79 FILE *
80 fopenat(const char *fname, const char *mode, const char *dir)
81 {
82     char *fnat;
83     FILE *fp;
84
85     fnat = fnameat(fname, dir);
86     if (!fnat)
87         return NULL;
88
89     fp = fopen(fnat, mode);
90
91     if (fnat != fname)
92         free(fnat);
93
94     return fp;
95 }