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
|
/*
file-name.cc - implement File_name
source file of the Flower Library
(c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
Jan Nieuwenhuizen <janneke@gnu.org>
*/
#include "file-name.hh"
#include <cstdio>
#include <cerrno>
#include <unistd.h>
#include <limits.h>
using namespace std;
#include "config.hh"
#if HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef __CYGWIN__
#include <sys/cygwin.h>
#endif
#ifndef ROOTSEP
#define ROOTSEP ':'
#endif
#ifndef DIRSEP
#define DIRSEP '/'
#endif
#ifndef EXTSEP
#define EXTSEP '.'
#endif
#ifdef __CYGWIN__
static string
dos_to_posix (string file_name)
{
char buf[PATH_MAX] = "";
char s[PATH_MAX] = {0};
file_name.copy (s, PATH_MAX - 1);
/* ugh: char const* argument gets modified. */
int fail = cygwin_conv_to_posix_path (s, buf);
if (!fail)
return buf;
return file_name;
}
#endif /* __CYGWIN__ */
/** Use slash as directory separator. On Windows, they can pretty
much be exchanged. */
#if 0
static /* avoid warning */
#endif
string
slashify (string file_name)
{
replace_all (&file_name, '\\', '/');
replace_all (&file_name, string ("//"), "/");
return file_name;
}
string
dir_name (string const file_name)
{
string s = file_name;
s = slashify (s);
ssize n = s.length ();
if (n && s[n - 1] == '/')
s[n - 1] = 0;
if (s.rfind ('/') != NPOS)
s = s.substr (0, s.rfind ('/'));
else
s = "";
return s;
}
string
get_working_directory ()
{
char cwd[PATH_MAX];
getcwd (cwd, PATH_MAX);
return string (cwd);
}
/* Join components to full file_name. */
string
File_name::dir_part () const
{
string s;
if (!root_.empty ())
s = root_ + ::to_string (ROOTSEP);
if (!dir_.empty ())
{
s += dir_;
}
return s;
}
string
File_name::file_part () const
{
string s;
s = base_;
if (!ext_.empty ())
s += ::to_string (EXTSEP) + ext_;
return s;
}
string
File_name::to_string () const
{
string d = dir_part ();
string f = file_part ();
if (!f.empty ()
&& !dir_.empty())
{
d += ::to_string (DIRSEP);
}
return d + f;
}
File_name::File_name (string file_name)
{
#ifdef __CYGWIN__
/* All system functions would work, even if we do not convert to
posix file_name, but we would think that \foe\bar\baz.ly is in
the cwd. */
file_name = dos_to_posix (file_name);
#endif
#ifdef __MINGW32__
file_name = slashify (file_name);
#endif
ssize i = file_name.find (ROOTSEP);
if (i != NPOS)
{
root_ = file_name.substr (0, i);
file_name = file_name.substr (i + 1);
}
i = file_name.rfind (DIRSEP);
if (i != NPOS)
{
dir_ = file_name.substr (0, i);
file_name = file_name.substr (i + 1);
}
i = file_name.rfind ('.');
if (i != NPOS)
{
base_ = file_name.substr (0, i);
ext_ = file_name.substr (i + 1);
}
else
base_ = file_name;
}
bool
File_name::is_absolute () const
{
/*
Hmm. Is c:foo absolute?
*/
return (dir_.length () && dir_[0] == DIRSEP) || root_.length ();
}
File_name
File_name::canonicalized () const
{
File_name c = *this;
replace_all (&c.dir_, string ("//"), string ("/"));
vector<string> components = string_split (c.dir_, '/');
vector<string> new_components;
for (vsize i = 0; i < components.size (); i++)
{
if (components[i] == "..")
new_components.pop_back ();
else
new_components.push_back (components[i]);
}
c.dir_ = string_join (new_components, "/");
return c;
}
|