db96debad6dc1028e84de12707acd26582a8ae70
[gnulib.git] / lib / path-concat.c
1 /* path-concat.c -- concatenate two arbitrary pathnames
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free
4    Software Foundation, Inc.
5
6    This program 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 2, or (at your option)
9    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, write to the Free Software Foundation,
18    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 /* Written by Jim Meyering.  */
21
22 #if HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 /* Specification.  */
27 #include "path-concat.h"
28
29 #ifndef HAVE_MEMPCPY
30 # define mempcpy(D, S, N) ((void *) ((char *) memcpy (D, S, N) + (N)))
31 #endif
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36
37 #if HAVE_UNISTD_H
38 # include <unistd.h>
39 #endif
40
41 #include "strdup.h"
42 #include "dirname.h"
43 #include "xalloc.h"
44
45 /* Concatenate two pathname components, DIR and BASE, in
46    newly-allocated storage and return the result.  Return 0 if out of
47    memory.  Add a slash between DIR and BASE in the result if neither
48    would contribute one.  If each would contribute at least one, elide
49    one from the end of DIR.  Otherwise, simply concatenate DIR and
50    BASE.  In any case, if BASE_IN_RESULT is non-NULL, set
51    *BASE_IN_RESULT to point to the copy of BASE in the returned
52    concatenation.
53
54    DIR may be NULL, BASE must not be.
55
56    Return NULL if memory is exhausted.  */
57
58 char *
59 path_concat (const char *dir, const char *base, char **base_in_result)
60 {
61   char *p;
62   char *p_concat;
63   size_t baselen;
64   size_t dirlen;
65
66   if (!dir)
67     {
68       p_concat = strdup (base);
69       if (base_in_result)
70         *base_in_result = p_concat;
71       return p_concat;
72     }
73
74   /* DIR is not empty. */
75   baselen = base_len (base);
76   dirlen = strlen (dir);
77
78   p_concat = malloc (dirlen + baselen + 2);
79   if (!p_concat)
80     return 0;
81
82   p = mempcpy (p_concat, dir, dirlen);
83
84   if (FILESYSTEM_PREFIX_LEN (dir) < dirlen)
85     {
86       if (ISSLASH (*(p - 1)) && ISSLASH (*base))
87         --p;
88       else if (!ISSLASH (*(p - 1)) && !ISSLASH (*base))
89         *p++ = DIRECTORY_SEPARATOR;
90     }
91
92   if (base_in_result)
93     *base_in_result = p;
94
95   memcpy (p, base, baselen);
96   p[baselen] = '\0';
97
98   return p_concat;
99 }
100
101 /* Same, but die when memory is exhausted. */
102
103 char *
104 xpath_concat (const char *dir, const char *base, char **base_in_result)
105 {
106   char *res = path_concat (dir, base, base_in_result);
107   if (! res)
108     xalloc_die ();
109   return res;
110 }