Skip to content

Commit 31dd621

Browse files
committed
libiberty: add ldirname function
This patch adds a function ldirname to libiberty. It is implemented in terms of lbasename. Basically, given a given pathname, the dirname part is what is not the basename minus the last directory separator separating the dirname with the basename. include/ChangeLog * libiberty.h (ldirname): New function declaration. (dos_ldirname): Likewise. (unix_ldirname): Likewise. libiberty/ChangeLog * ldirname.c: New file. * Makefile.in (CFILES): Add ldirname.c. (REQUIRED_OFILES): Add ldirname.$(objext). (./ldirname.$(objext)): New rule. * makefile.vms (OBJS): Add ldirname.obj. * configure.com (FILES): Add ldirname.
1 parent 7865869 commit 31dd621

File tree

5 files changed

+121
-3
lines changed

5 files changed

+121
-3
lines changed

include/libiberty.h

+12
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,18 @@ extern const char *dos_lbasename (const char *) ATTRIBUTE_RETURNS_NONNULL ATTRIB
133133

134134
extern const char *unix_lbasename (const char *) ATTRIBUTE_RETURNS_NONNULL ATTRIBUTE_NONNULL(1);
135135

136+
/* A dirname () that is always compiled in. */
137+
138+
extern char *ldirname (const char *) ATTRIBUTE_NONNULL(1);
139+
140+
/* Same, but assumes DOS semantics regardless of host. */
141+
142+
extern char *dos_ldirname (const char *) ATTRIBUTE_NONNULL(1);
143+
144+
/* Same, but assumes Unix semantics regardless of host. */
145+
146+
extern char *unix_ldirname (const char *) ATTRIBUTE_NONNULL(1);
147+
136148
/* A well-defined realpath () that is always compiled in. */
137149

138150
extern char *lrealpath (const char *);

libiberty/Makefile.in

+13-1
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ CFILES = alloca.c argv.c asprintf.c atexit.c \
136136
hashtab.c hex.c \
137137
index.c insque.c \
138138
lbasename.c \
139+
ldirname.c \
139140
lrealpath.c \
140141
make-relative-prefix.c \
141142
make-temp-file.c md5.c memchr.c memcmp.c memcpy.c memmem.c \
@@ -179,7 +180,7 @@ REQUIRED_OFILES = \
179180
./fnmatch.$(objext) ./fopen_unlocked.$(objext) \
180181
./getopt.$(objext) ./getopt1.$(objext) ./getpwd.$(objext) \
181182
./getruntime.$(objext) ./hashtab.$(objext) ./hex.$(objext) \
182-
./lbasename.$(objext) ./lrealpath.$(objext) \
183+
./lbasename.$(objext) ./ldirname.$(objext) ./lrealpath.$(objext)\
183184
./make-relative-prefix.$(objext) ./make-temp-file.$(objext) \
184185
./objalloc.$(objext) \
185186
./obstack.$(objext) \
@@ -965,6 +966,17 @@ $(CONFIGURED_OFILES): stamp-picdir stamp-noasandir
965966
else true; fi
966967
$(COMPILE.c) $(srcdir)/lbasename.c $(OUTPUT_OPTION)
967968

969+
./ldirname.$(objext): $(srcdir)/ldirname.c config.h $(INCDIR)/ansidecl.h \
970+
$(INCDIR)/filenames.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h \
971+
$(INCDIR)/safe-ctype.h
972+
if [ x"$(PICFLAG)" != x ]; then \
973+
$(COMPILE.c) $(PICFLAG) $(srcdir)/ldirname.c -o pic/$@; \
974+
else true; fi
975+
if [ x"$(NOASANFLAG)" != x ]; then \
976+
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/ldirname.c -o noasan/$@; \
977+
else true; fi
978+
$(COMPILE.c) $(srcdir)/ldirname.c $(OUTPUT_OPTION)
979+
968980
./lrealpath.$(objext): $(srcdir)/lrealpath.c config.h $(INCDIR)/ansidecl.h \
969981
$(INCDIR)/libiberty.h
970982
if [ x"$(PICFLAG)" != x ]; then \

libiberty/configure.com

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $DECK
1717
$ FILES="getopt,obstack,xexit,xmalloc,hex,getopt1,cplus-dem,cp-demangle,"+-
1818
"cp-demint,asprintf,vasprintf,mkstemps,concat,getruntime,getpagesize,"+-
1919
"getpwd,xstrerror,xmemdup,xstrdup,xatexit,choose-temp,fnmatch,objalloc,"+-
20-
"safe-ctype,hashtab,lbasename,argv,lrealpath,make-temp-file,"+-
20+
"safe-ctype,hashtab,lbasename,ldirname,argv,lrealpath,make-temp-file,"+-
2121
"stpcpy,unlink-if-ordinary"
2222
$ OPT="/noopt/debug/warnings=disable=(missingreturn)"
2323
$ CFLAGS=OPT + "/include=([],[-.include])/name=(as_is,shortened)" +-

libiberty/ldirname.c

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/* Libiberty dirname. Like dirname, but is not overridden by the
2+
system C library.
3+
Copyright (C) 2025 Free Software Foundation, Inc.
4+
5+
This file is part of the libiberty library.
6+
Libiberty is free software; you can redistribute it and/or
7+
modify it under the terms of the GNU Library General Public
8+
License as published by the Free Software Foundation; either
9+
version 2 of the License, or (at your option) any later version.
10+
11+
Libiberty 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 GNU
14+
Library General Public License for more details.
15+
16+
You should have received a copy of the GNU Library General Public
17+
License along with libiberty; see the file COPYING.LIB. If
18+
not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
19+
Boston, MA 02110-1301, USA. */
20+
21+
/*
22+
23+
@deftypefn Replacement {char*} ldirname (const char *@var{name})
24+
25+
Given a pointer to a string containing a typical pathname
26+
(@samp{/usr/src/cmd/ls/ls.c} for example), returns a string containing the
27+
passed string up to, but not including, the final directory separator.
28+
29+
If the given pathname doesn't contain a directory separator then this funtion
30+
returns the empty string; this includes an empty given pathname. @code{NULL}
31+
is returned on memory allocation error.
32+
33+
@end deftypefn
34+
35+
*/
36+
37+
#ifdef HAVE_CONFIG_H
38+
#include "config.h"
39+
#endif
40+
#include "ansidecl.h"
41+
#include "libiberty.h"
42+
#include "safe-ctype.h"
43+
#include "filenames.h"
44+
45+
/* For malloc. */
46+
#ifdef HAVE_STDLIB_H
47+
#include <stdlib.h>
48+
#endif
49+
50+
/* For memcpy. */
51+
# if HAVE_STRING_H
52+
# include <string.h>
53+
# else
54+
# if HAVE_STRINGS_H
55+
# include <strings.h>
56+
# endif
57+
# endif
58+
59+
#define LDIRNAME(FPREFIX,DIRSEP) \
60+
char *FPREFIX##_ldirname (const char *name) \
61+
{ \
62+
/* Note that lbasename guarantees that the returned */ \
63+
/* pointer lies within the passed string. */ \
64+
const char *basename = FPREFIX##_lbasename (name); \
65+
size_t size = basename - name; \
66+
char *res = NULL; \
67+
\
68+
res = (char*) malloc (size + 1); \
69+
if (res != NULL) \
70+
{ \
71+
if (size > 0) \
72+
{ \
73+
if (IS_DIR_SEPARATOR_1 ((DIRSEP),name[size - 1])) \
74+
size -= 1; \
75+
memcpy (res, name, size); \
76+
} \
77+
res[size] = '\0'; \
78+
} \
79+
\
80+
return res; \
81+
}
82+
83+
LDIRNAME(dos,1)
84+
LDIRNAME(unix,0)
85+
86+
char *
87+
ldirname (const char *name)
88+
{
89+
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
90+
return dos_ldirname (name);
91+
#else
92+
return unix_ldirname (name);
93+
#endif
94+
}

libiberty/makefile.vms

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ OBJS=getopt.obj,obstack.obj,xexit.obj,xmalloc.obj,hex.obj,\
1212
asprintf.obj vasprintf.obj,mkstemps.obj,filename_cmp.obj,\
1313
concat.obj,getruntime.obj,getpagesize.obj,getpwd.obj,xstrerror.obj,\
1414
xmemdup.obj,xstrdup.obj,xatexit.obj,choose-temp.obj,fnmatch.obj,\
15-
objalloc.obj,safe-ctype.obj,hashtab.obj,lbasename.obj,argv.obj,\
15+
objalloc.obj,safe-ctype.obj,hashtab.obj,lbasename.obj,ldirname.obj,argv.obj,\
1616
lrealpath.obj,make-temp-file.obj,stpcpy.obj,unlink-if-ordinary.obj,\
1717
dwarfnames.obj
1818

0 commit comments

Comments
 (0)