blob: 48f1ac78d9274bcaeb3e593b74d3513fa012bbbf [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- FileSpec.cpp --------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10
Virgile Bellob2f1fb22013-08-23 12:44:05 +000011#ifndef _WIN32
Greg Clayton4272cc72011-02-02 02:24:04 +000012#include <dirent.h>
Virgile Bellob2f1fb22013-08-23 12:44:05 +000013#else
14#include "lldb/Host/windows/windows.h"
15#endif
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016#include <fcntl.h>
Virgile Bello69571952013-09-20 22:35:22 +000017#ifndef _MSC_VER
Chris Lattner30fdc8d2010-06-08 16:52:24 +000018#include <libgen.h>
Virgile Bello69571952013-09-20 22:35:22 +000019#endif
Chris Lattner30fdc8d2010-06-08 16:52:24 +000020#include <sys/stat.h>
Rafael Espindola09079162013-06-13 20:10:23 +000021#include <set>
Greg Claytone0f3c022011-02-07 17:41:11 +000022#include <string.h>
Jim Ingham9035e7c2011-02-07 19:42:39 +000023#include <fstream>
Greg Claytonfd184262011-02-05 02:27:52 +000024
Jim Ingham9035e7c2011-02-07 19:42:39 +000025#include "lldb/Host/Config.h" // Have to include this before we test the define...
Greg Clayton45319462011-02-08 00:35:34 +000026#ifdef LLDB_CONFIG_TILDE_RESOLVES_TO_USER
Jim Inghamf818ca32010-07-01 01:48:53 +000027#include <pwd.h>
Greg Claytonfd184262011-02-05 02:27:52 +000028#endif
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029
Caroline Tice391a9602010-09-12 00:10:52 +000030#include "llvm/ADT/StringRef.h"
Greg Clayton38a61402010-12-02 23:20:03 +000031#include "llvm/Support/Path.h"
32#include "llvm/Support/Program.h"
Caroline Tice391a9602010-09-12 00:10:52 +000033
Daniel Maleae0f8f572013-08-26 23:57:52 +000034#include "lldb/Core/StreamString.h"
Greg Clayton96c09682012-01-04 22:56:43 +000035#include "lldb/Host/File.h"
Greg Clayton53239f02011-02-08 05:05:52 +000036#include "lldb/Host/FileSpec.h"
Greg Claytonfbb76342013-11-20 21:07:01 +000037#include "lldb/Host/Host.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000038#include "lldb/Core/DataBufferHeap.h"
39#include "lldb/Core/DataBufferMemoryMap.h"
Greg Clayton1f746072012-08-29 21:13:06 +000040#include "lldb/Core/RegularExpression.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000041#include "lldb/Core/Stream.h"
Caroline Tice428a9a52010-09-10 04:48:55 +000042#include "lldb/Host/Host.h"
Greg Clayton4272cc72011-02-02 02:24:04 +000043#include "lldb/Utility/CleanUp.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000044
45using namespace lldb;
46using namespace lldb_private;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000047
48static bool
49GetFileStats (const FileSpec *file_spec, struct stat *stats_ptr)
50{
51 char resolved_path[PATH_MAX];
Greg Clayton7e14f912011-04-23 02:04:55 +000052 if (file_spec->GetPath (resolved_path, sizeof(resolved_path)))
Chris Lattner30fdc8d2010-06-08 16:52:24 +000053 return ::stat (resolved_path, stats_ptr) == 0;
54 return false;
55}
56
Greg Clayton45319462011-02-08 00:35:34 +000057#ifdef LLDB_CONFIG_TILDE_RESOLVES_TO_USER
Greg Claytonfd184262011-02-05 02:27:52 +000058
Chris Lattner30fdc8d2010-06-08 16:52:24 +000059static const char*
60GetCachedGlobTildeSlash()
61{
62 static std::string g_tilde;
63 if (g_tilde.empty())
64 {
Jim Inghamf818ca32010-07-01 01:48:53 +000065 struct passwd *user_entry;
66 user_entry = getpwuid(geteuid());
67 if (user_entry != NULL)
68 g_tilde = user_entry->pw_dir;
69
Chris Lattner30fdc8d2010-06-08 16:52:24 +000070 if (g_tilde.empty())
71 return NULL;
72 }
73 return g_tilde.c_str();
74}
75
Greg Clayton87e5ff02011-02-08 05:19:06 +000076#endif // #ifdef LLDB_CONFIG_TILDE_RESOLVES_TO_USER
77
Jim Inghamf818ca32010-07-01 01:48:53 +000078// Resolves the username part of a path of the form ~user/other/directories, and
79// writes the result into dst_path.
80// Returns 0 if there WAS a ~ in the path but the username couldn't be resolved.
81// Otherwise returns the number of characters copied into dst_path. If the return
82// is >= dst_len, then the resolved path is too long...
Greg Claytonc982c762010-07-09 20:39:50 +000083size_t
Jim Inghamf818ca32010-07-01 01:48:53 +000084FileSpec::ResolveUsername (const char *src_path, char *dst_path, size_t dst_len)
85{
Greg Clayton87e5ff02011-02-08 05:19:06 +000086 if (src_path == NULL || src_path[0] == '\0')
87 return 0;
88
89#ifdef LLDB_CONFIG_TILDE_RESOLVES_TO_USER
90
Jim Inghamf818ca32010-07-01 01:48:53 +000091 char user_home[PATH_MAX];
92 const char *user_name;
93
Greg Claytona5d24f62010-07-01 17:07:48 +000094
Jim Inghamf818ca32010-07-01 01:48:53 +000095 // If there's no ~, then just copy src_path straight to dst_path (they may be the same string...)
96 if (src_path[0] != '~')
97 {
Greg Claytonc982c762010-07-09 20:39:50 +000098 size_t len = strlen (src_path);
Jim Inghamf818ca32010-07-01 01:48:53 +000099 if (len >= dst_len)
100 {
Greg Claytona5d24f62010-07-01 17:07:48 +0000101 ::bcopy (src_path, dst_path, dst_len - 1);
102 dst_path[dst_len] = '\0';
Jim Inghamf818ca32010-07-01 01:48:53 +0000103 }
104 else
Greg Claytona5d24f62010-07-01 17:07:48 +0000105 ::bcopy (src_path, dst_path, len + 1);
106
Jim Inghamf818ca32010-07-01 01:48:53 +0000107 return len;
108 }
109
Eli Friedmanfeaeebf2010-07-02 19:15:50 +0000110 const char *first_slash = ::strchr (src_path, '/');
Jim Inghamf818ca32010-07-01 01:48:53 +0000111 char remainder[PATH_MAX];
112
113 if (first_slash == NULL)
114 {
115 // The whole name is the username (minus the ~):
116 user_name = src_path + 1;
117 remainder[0] = '\0';
118 }
119 else
120 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000121 size_t user_name_len = first_slash - src_path - 1;
Greg Claytona5d24f62010-07-01 17:07:48 +0000122 ::memcpy (user_home, src_path + 1, user_name_len);
Jim Inghamf818ca32010-07-01 01:48:53 +0000123 user_home[user_name_len] = '\0';
124 user_name = user_home;
125
Greg Claytona5d24f62010-07-01 17:07:48 +0000126 ::strcpy (remainder, first_slash);
Jim Inghamf818ca32010-07-01 01:48:53 +0000127 }
Greg Claytona5d24f62010-07-01 17:07:48 +0000128
Jim Inghamf818ca32010-07-01 01:48:53 +0000129 if (user_name == NULL)
130 return 0;
131 // User name of "" means the current user...
132
133 struct passwd *user_entry;
Greg Claytonc982c762010-07-09 20:39:50 +0000134 const char *home_dir = NULL;
Jim Inghamf818ca32010-07-01 01:48:53 +0000135
136 if (user_name[0] == '\0')
137 {
138 home_dir = GetCachedGlobTildeSlash();
139 }
140 else
141 {
Greg Claytona5d24f62010-07-01 17:07:48 +0000142 user_entry = ::getpwnam (user_name);
Jim Inghamf818ca32010-07-01 01:48:53 +0000143 if (user_entry != NULL)
144 home_dir = user_entry->pw_dir;
145 }
146
147 if (home_dir == NULL)
148 return 0;
149 else
150 return ::snprintf (dst_path, dst_len, "%s%s", home_dir, remainder);
Greg Clayton87e5ff02011-02-08 05:19:06 +0000151#else
152 // Resolving home directories is not supported, just copy the path...
153 return ::snprintf (dst_path, dst_len, "%s", src_path);
154#endif // #ifdef LLDB_CONFIG_TILDE_RESOLVES_TO_USER
Jim Inghamf818ca32010-07-01 01:48:53 +0000155}
156
Greg Claytonc982c762010-07-09 20:39:50 +0000157size_t
Jim Ingham84363072011-02-08 23:24:09 +0000158FileSpec::ResolvePartialUsername (const char *partial_name, StringList &matches)
159{
160#ifdef LLDB_CONFIG_TILDE_RESOLVES_TO_USER
161 size_t extant_entries = matches.GetSize();
162
163 setpwent();
164 struct passwd *user_entry;
165 const char *name_start = partial_name + 1;
166 std::set<std::string> name_list;
167
168 while ((user_entry = getpwent()) != NULL)
169 {
170 if (strstr(user_entry->pw_name, name_start) == user_entry->pw_name)
171 {
172 std::string tmp_buf("~");
173 tmp_buf.append(user_entry->pw_name);
174 tmp_buf.push_back('/');
175 name_list.insert(tmp_buf);
176 }
177 }
178 std::set<std::string>::iterator pos, end = name_list.end();
179 for (pos = name_list.begin(); pos != end; pos++)
180 {
181 matches.AppendString((*pos).c_str());
182 }
183 return matches.GetSize() - extant_entries;
184#else
185 // Resolving home directories is not supported, just copy the path...
186 return 0;
187#endif // #ifdef LLDB_CONFIG_TILDE_RESOLVES_TO_USER
188}
189
190
191
192size_t
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000193FileSpec::Resolve (const char *src_path, char *dst_path, size_t dst_len)
194{
195 if (src_path == NULL || src_path[0] == '\0')
196 return 0;
197
198 // Glob if needed for ~/, otherwise copy in case src_path is same as dst_path...
199 char unglobbed_path[PATH_MAX];
Greg Clayton45319462011-02-08 00:35:34 +0000200#ifdef LLDB_CONFIG_TILDE_RESOLVES_TO_USER
Jim Inghamf818ca32010-07-01 01:48:53 +0000201 if (src_path[0] == '~')
202 {
Greg Claytonc982c762010-07-09 20:39:50 +0000203 size_t return_count = ResolveUsername(src_path, unglobbed_path, sizeof(unglobbed_path));
Jim Inghamf818ca32010-07-01 01:48:53 +0000204
205 // If we couldn't find the user referred to, or the resultant path was too long,
206 // then just copy over the src_path.
207 if (return_count == 0 || return_count >= sizeof(unglobbed_path))
208 ::snprintf (unglobbed_path, sizeof(unglobbed_path), "%s", src_path);
209 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000210 else
Greg Clayton45319462011-02-08 00:35:34 +0000211#endif // #ifdef LLDB_CONFIG_TILDE_RESOLVES_TO_USER
Greg Claytonfd184262011-02-05 02:27:52 +0000212 {
213 ::snprintf(unglobbed_path, sizeof(unglobbed_path), "%s", src_path);
214 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000215
216 // Now resolve the path if needed
217 char resolved_path[PATH_MAX];
218 if (::realpath (unglobbed_path, resolved_path))
219 {
220 // Success, copy the resolved path
221 return ::snprintf(dst_path, dst_len, "%s", resolved_path);
222 }
223 else
224 {
225 // Failed, just copy the unglobbed path
226 return ::snprintf(dst_path, dst_len, "%s", unglobbed_path);
227 }
228}
229
230FileSpec::FileSpec() :
231 m_directory(),
232 m_filename()
233{
234}
235
236//------------------------------------------------------------------
237// Default constructor that can take an optional full path to a
238// file on disk.
239//------------------------------------------------------------------
Jim Ingham0909e5f2010-09-16 00:57:33 +0000240FileSpec::FileSpec(const char *pathname, bool resolve_path) :
241 m_directory(),
Greg Clayton7481c202010-11-08 00:28:40 +0000242 m_filename(),
243 m_is_resolved(false)
Jim Ingham0909e5f2010-09-16 00:57:33 +0000244{
245 if (pathname && pathname[0])
246 SetFile(pathname, resolve_path);
247}
248
249//------------------------------------------------------------------
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000250// Copy constructor
251//------------------------------------------------------------------
252FileSpec::FileSpec(const FileSpec& rhs) :
253 m_directory (rhs.m_directory),
Greg Clayton7481c202010-11-08 00:28:40 +0000254 m_filename (rhs.m_filename),
255 m_is_resolved (rhs.m_is_resolved)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000256{
257}
258
259//------------------------------------------------------------------
260// Copy constructor
261//------------------------------------------------------------------
262FileSpec::FileSpec(const FileSpec* rhs) :
263 m_directory(),
264 m_filename()
265{
266 if (rhs)
267 *this = *rhs;
268}
269
270//------------------------------------------------------------------
271// Virtual destrcuctor in case anyone inherits from this class.
272//------------------------------------------------------------------
273FileSpec::~FileSpec()
274{
275}
276
277//------------------------------------------------------------------
278// Assignment operator.
279//------------------------------------------------------------------
280const FileSpec&
281FileSpec::operator= (const FileSpec& rhs)
282{
283 if (this != &rhs)
284 {
285 m_directory = rhs.m_directory;
286 m_filename = rhs.m_filename;
Greg Clayton7481c202010-11-08 00:28:40 +0000287 m_is_resolved = rhs.m_is_resolved;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000288 }
289 return *this;
290}
291
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000292//------------------------------------------------------------------
293// Update the contents of this object with a new path. The path will
294// be split up into a directory and filename and stored as uniqued
295// string values for quick comparison and efficient memory usage.
296//------------------------------------------------------------------
297void
Greg Clayton7481c202010-11-08 00:28:40 +0000298FileSpec::SetFile (const char *pathname, bool resolve)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000299{
300 m_filename.Clear();
301 m_directory.Clear();
Greg Clayton7481c202010-11-08 00:28:40 +0000302 m_is_resolved = false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000303 if (pathname == NULL || pathname[0] == '\0')
304 return;
305
306 char resolved_path[PATH_MAX];
Jim Ingham0909e5f2010-09-16 00:57:33 +0000307 bool path_fit = true;
308
309 if (resolve)
310 {
311 path_fit = (FileSpec::Resolve (pathname, resolved_path, sizeof(resolved_path)) < sizeof(resolved_path) - 1);
Greg Clayton7481c202010-11-08 00:28:40 +0000312 m_is_resolved = path_fit;
Jim Ingham0909e5f2010-09-16 00:57:33 +0000313 }
314 else
315 {
Greg Clayton7481c202010-11-08 00:28:40 +0000316 // Copy the path because "basename" and "dirname" want to muck with the
317 // path buffer
318 if (::strlen (pathname) > sizeof(resolved_path) - 1)
Jim Ingham0909e5f2010-09-16 00:57:33 +0000319 path_fit = false;
320 else
Greg Clayton7481c202010-11-08 00:28:40 +0000321 ::strcpy (resolved_path, pathname);
Jim Ingham0909e5f2010-09-16 00:57:33 +0000322 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000323
Jim Ingham0909e5f2010-09-16 00:57:33 +0000324
325 if (path_fit)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000326 {
327 char *filename = ::basename (resolved_path);
328 if (filename)
329 {
330 m_filename.SetCString (filename);
331 // Truncate the basename off the end of the resolved path
332
333 // Only attempt to get the dirname if it looks like we have a path
Virgile Bello1fd7ec72013-09-20 22:31:10 +0000334 if (strchr(resolved_path, '/')
335#ifdef _WIN32
336 || strchr(resolved_path, '\\')
337#endif
338 )
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000339 {
340 char *directory = ::dirname (resolved_path);
341
342 // Make sure we didn't get our directory resolved to "." without having
343 // specified
344 if (directory)
345 m_directory.SetCString(directory);
346 else
347 {
348 char *last_resolved_path_slash = strrchr(resolved_path, '/');
Virgile Bello1fd7ec72013-09-20 22:31:10 +0000349#ifdef _WIN32
350 char* last_resolved_path_slash_windows = strrchr(resolved_path, '\\');
351 if (last_resolved_path_slash_windows > last_resolved_path_slash)
352 last_resolved_path_slash = last_resolved_path_slash_windows;
353#endif
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000354 if (last_resolved_path_slash)
355 {
356 *last_resolved_path_slash = '\0';
357 m_directory.SetCString(resolved_path);
358 }
359 }
360 }
361 }
362 else
363 m_directory.SetCString(resolved_path);
364 }
365}
366
367//----------------------------------------------------------------------
368// Convert to pointer operator. This allows code to check any FileSpec
369// objects to see if they contain anything valid using code such as:
370//
371// if (file_spec)
372// {}
373//----------------------------------------------------------------------
Greg Clayton6372d1c2011-09-12 04:00:42 +0000374FileSpec::operator bool() const
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000375{
Greg Clayton6372d1c2011-09-12 04:00:42 +0000376 return m_filename || m_directory;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000377}
378
379//----------------------------------------------------------------------
380// Logical NOT operator. This allows code to check any FileSpec
381// objects to see if they are invalid using code such as:
382//
383// if (!file_spec)
384// {}
385//----------------------------------------------------------------------
386bool
387FileSpec::operator!() const
388{
389 return !m_directory && !m_filename;
390}
391
392//------------------------------------------------------------------
393// Equal to operator
394//------------------------------------------------------------------
395bool
396FileSpec::operator== (const FileSpec& rhs) const
397{
Greg Clayton7481c202010-11-08 00:28:40 +0000398 if (m_filename == rhs.m_filename)
399 {
400 if (m_directory == rhs.m_directory)
401 return true;
402
403 // TODO: determine if we want to keep this code in here.
404 // The code below was added to handle a case where we were
405 // trying to set a file and line breakpoint and one path
406 // was resolved, and the other not and the directory was
407 // in a mount point that resolved to a more complete path:
408 // "/tmp/a.c" == "/private/tmp/a.c". I might end up pulling
409 // this out...
410 if (IsResolved() && rhs.IsResolved())
411 {
412 // Both paths are resolved, no need to look further...
413 return false;
414 }
415
416 FileSpec resolved_lhs(*this);
417
418 // If "this" isn't resolved, resolve it
419 if (!IsResolved())
420 {
421 if (resolved_lhs.ResolvePath())
422 {
423 // This path wasn't resolved but now it is. Check if the resolved
424 // directory is the same as our unresolved directory, and if so,
425 // we can mark this object as resolved to avoid more future resolves
426 m_is_resolved = (m_directory == resolved_lhs.m_directory);
427 }
428 else
429 return false;
430 }
431
432 FileSpec resolved_rhs(rhs);
433 if (!rhs.IsResolved())
434 {
435 if (resolved_rhs.ResolvePath())
436 {
437 // rhs's path wasn't resolved but now it is. Check if the resolved
438 // directory is the same as rhs's unresolved directory, and if so,
439 // we can mark this object as resolved to avoid more future resolves
Jim Inghama537f6c2012-11-03 02:12:46 +0000440 rhs.m_is_resolved = (rhs.m_directory == resolved_rhs.m_directory);
Greg Clayton7481c202010-11-08 00:28:40 +0000441 }
442 else
443 return false;
444 }
445
446 // If we reach this point in the code we were able to resolve both paths
447 // and since we only resolve the paths if the basenames are equal, then
448 // we can just check if both directories are equal...
449 return resolved_lhs.GetDirectory() == resolved_rhs.GetDirectory();
450 }
451 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000452}
453
454//------------------------------------------------------------------
455// Not equal to operator
456//------------------------------------------------------------------
457bool
458FileSpec::operator!= (const FileSpec& rhs) const
459{
Greg Clayton7481c202010-11-08 00:28:40 +0000460 return !(*this == rhs);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000461}
462
463//------------------------------------------------------------------
464// Less than operator
465//------------------------------------------------------------------
466bool
467FileSpec::operator< (const FileSpec& rhs) const
468{
469 return FileSpec::Compare(*this, rhs, true) < 0;
470}
471
472//------------------------------------------------------------------
473// Dump a FileSpec object to a stream
474//------------------------------------------------------------------
475Stream&
476lldb_private::operator << (Stream &s, const FileSpec& f)
477{
478 f.Dump(&s);
479 return s;
480}
481
482//------------------------------------------------------------------
483// Clear this object by releasing both the directory and filename
484// string values and making them both the empty string.
485//------------------------------------------------------------------
486void
487FileSpec::Clear()
488{
489 m_directory.Clear();
490 m_filename.Clear();
491}
492
493//------------------------------------------------------------------
494// Compare two FileSpec objects. If "full" is true, then both
495// the directory and the filename must match. If "full" is false,
496// then the directory names for "a" and "b" are only compared if
497// they are both non-empty. This allows a FileSpec object to only
498// contain a filename and it can match FileSpec objects that have
499// matching filenames with different paths.
500//
501// Return -1 if the "a" is less than "b", 0 if "a" is equal to "b"
502// and "1" if "a" is greater than "b".
503//------------------------------------------------------------------
504int
505FileSpec::Compare(const FileSpec& a, const FileSpec& b, bool full)
506{
507 int result = 0;
508
509 // If full is true, then we must compare both the directory and filename.
510
511 // If full is false, then if either directory is empty, then we match on
512 // the basename only, and if both directories have valid values, we still
513 // do a full compare. This allows for matching when we just have a filename
514 // in one of the FileSpec objects.
515
516 if (full || (a.m_directory && b.m_directory))
517 {
518 result = ConstString::Compare(a.m_directory, b.m_directory);
519 if (result)
520 return result;
521 }
522 return ConstString::Compare (a.m_filename, b.m_filename);
523}
524
525bool
526FileSpec::Equal (const FileSpec& a, const FileSpec& b, bool full)
527{
Jim Ingham87df91b2011-09-23 00:54:11 +0000528 if (!full && (a.GetDirectory().IsEmpty() || b.GetDirectory().IsEmpty()))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000529 return a.m_filename == b.m_filename;
Jim Ingham87df91b2011-09-23 00:54:11 +0000530 else
531 return a == b;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000532}
533
534
535
536//------------------------------------------------------------------
537// Dump the object to the supplied stream. If the object contains
538// a valid directory name, it will be displayed followed by a
539// directory delimiter, and the filename.
540//------------------------------------------------------------------
541void
542FileSpec::Dump(Stream *s) const
543{
Jason Molendadb7d11c2013-05-06 10:21:11 +0000544 static ConstString g_slash_only ("/");
Enrico Granata80fcdd42012-11-03 00:09:46 +0000545 if (s)
546 {
547 m_directory.Dump(s);
Jason Molendadb7d11c2013-05-06 10:21:11 +0000548 if (m_directory && m_directory != g_slash_only)
Enrico Granata80fcdd42012-11-03 00:09:46 +0000549 s->PutChar('/');
550 m_filename.Dump(s);
551 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000552}
553
554//------------------------------------------------------------------
555// Returns true if the file exists.
556//------------------------------------------------------------------
557bool
558FileSpec::Exists () const
559{
560 struct stat file_stats;
561 return GetFileStats (this, &file_stats);
562}
563
Caroline Tice428a9a52010-09-10 04:48:55 +0000564bool
565FileSpec::ResolveExecutableLocation ()
566{
Greg Clayton274060b2010-10-20 20:54:39 +0000567 if (!m_directory)
Caroline Tice391a9602010-09-12 00:10:52 +0000568 {
Greg Clayton58f41712011-01-25 21:32:01 +0000569 const char *file_cstr = m_filename.GetCString();
570 if (file_cstr)
Caroline Tice391a9602010-09-12 00:10:52 +0000571 {
Greg Clayton58f41712011-01-25 21:32:01 +0000572 const std::string file_str (file_cstr);
Rafael Espindolaff89ff22013-06-13 19:25:41 +0000573 std::string path = llvm::sys::FindProgramByName (file_str);
574 llvm::StringRef dir_ref = llvm::sys::path::parent_path(path);
Greg Clayton58f41712011-01-25 21:32:01 +0000575 //llvm::StringRef dir_ref = path.getDirname();
576 if (! dir_ref.empty())
Caroline Tice391a9602010-09-12 00:10:52 +0000577 {
Greg Clayton58f41712011-01-25 21:32:01 +0000578 // FindProgramByName returns "." if it can't find the file.
579 if (strcmp (".", dir_ref.data()) == 0)
580 return false;
581
582 m_directory.SetCString (dir_ref.data());
583 if (Exists())
Caroline Tice391a9602010-09-12 00:10:52 +0000584 return true;
Greg Clayton58f41712011-01-25 21:32:01 +0000585 else
586 {
587 // If FindProgramByName found the file, it returns the directory + filename in its return results.
588 // We need to separate them.
589 FileSpec tmp_file (dir_ref.data(), false);
590 if (tmp_file.Exists())
591 {
592 m_directory = tmp_file.m_directory;
593 return true;
594 }
Caroline Tice391a9602010-09-12 00:10:52 +0000595 }
596 }
597 }
598 }
599
600 return false;
Caroline Tice428a9a52010-09-10 04:48:55 +0000601}
602
Jim Ingham0909e5f2010-09-16 00:57:33 +0000603bool
604FileSpec::ResolvePath ()
605{
Greg Clayton7481c202010-11-08 00:28:40 +0000606 if (m_is_resolved)
607 return true; // We have already resolved this path
608
609 char path_buf[PATH_MAX];
Jim Ingham0909e5f2010-09-16 00:57:33 +0000610 if (!GetPath (path_buf, PATH_MAX))
611 return false;
Greg Clayton7481c202010-11-08 00:28:40 +0000612 // SetFile(...) will set m_is_resolved correctly if it can resolve the path
Jim Ingham0909e5f2010-09-16 00:57:33 +0000613 SetFile (path_buf, true);
Greg Clayton7481c202010-11-08 00:28:40 +0000614 return m_is_resolved;
Jim Ingham0909e5f2010-09-16 00:57:33 +0000615}
616
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000617uint64_t
618FileSpec::GetByteSize() const
619{
620 struct stat file_stats;
621 if (GetFileStats (this, &file_stats))
622 return file_stats.st_size;
623 return 0;
624}
625
626FileSpec::FileType
627FileSpec::GetFileType () const
628{
629 struct stat file_stats;
630 if (GetFileStats (this, &file_stats))
631 {
632 mode_t file_type = file_stats.st_mode & S_IFMT;
633 switch (file_type)
634 {
635 case S_IFDIR: return eFileTypeDirectory;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000636 case S_IFREG: return eFileTypeRegular;
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000637#ifndef _WIN32
638 case S_IFIFO: return eFileTypePipe;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000639 case S_IFSOCK: return eFileTypeSocket;
640 case S_IFLNK: return eFileTypeSymbolicLink;
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000641#endif
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000642 default:
643 break;
644 }
Greg Clayton4272cc72011-02-02 02:24:04 +0000645 return eFileTypeUnknown;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000646 }
647 return eFileTypeInvalid;
648}
649
Greg Claytonfbb76342013-11-20 21:07:01 +0000650uint32_t
651FileSpec::GetPermissions () const
652{
653 uint32_t file_permissions = 0;
654 if (*this)
655 Host::GetFilePermissions(GetPath().c_str(), file_permissions);
656 return file_permissions;
657}
658
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000659TimeValue
660FileSpec::GetModificationTime () const
661{
662 TimeValue mod_time;
663 struct stat file_stats;
664 if (GetFileStats (this, &file_stats))
Eli Friedman6abb6342010-06-11 04:52:22 +0000665 mod_time.OffsetWithSeconds(file_stats.st_mtime);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000666 return mod_time;
667}
668
669//------------------------------------------------------------------
670// Directory string get accessor.
671//------------------------------------------------------------------
672ConstString &
673FileSpec::GetDirectory()
674{
675 return m_directory;
676}
677
678//------------------------------------------------------------------
679// Directory string const get accessor.
680//------------------------------------------------------------------
681const ConstString &
682FileSpec::GetDirectory() const
683{
684 return m_directory;
685}
686
687//------------------------------------------------------------------
688// Filename string get accessor.
689//------------------------------------------------------------------
690ConstString &
691FileSpec::GetFilename()
692{
693 return m_filename;
694}
695
696//------------------------------------------------------------------
697// Filename string const get accessor.
698//------------------------------------------------------------------
699const ConstString &
700FileSpec::GetFilename() const
701{
702 return m_filename;
703}
704
705//------------------------------------------------------------------
706// Extract the directory and path into a fixed buffer. This is
707// needed as the directory and path are stored in separate string
708// values.
709//------------------------------------------------------------------
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000710size_t
711FileSpec::GetPath(char *path, size_t path_max_len) const
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000712{
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000713 if (path_max_len)
Greg Claytondd36def2010-10-17 22:03:32 +0000714 {
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000715 const char *dirname = m_directory.GetCString();
716 const char *filename = m_filename.GetCString();
Greg Claytondd36def2010-10-17 22:03:32 +0000717 if (dirname)
718 {
719 if (filename)
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000720 return ::snprintf (path, path_max_len, "%s/%s", dirname, filename);
Greg Claytondd36def2010-10-17 22:03:32 +0000721 else
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000722 return ::snprintf (path, path_max_len, "%s", dirname);
Greg Claytondd36def2010-10-17 22:03:32 +0000723 }
724 else if (filename)
725 {
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000726 return ::snprintf (path, path_max_len, "%s", filename);
Greg Claytondd36def2010-10-17 22:03:32 +0000727 }
728 }
Enrico Granataa9dbf432011-10-17 21:45:27 +0000729 if (path)
730 path[0] = '\0';
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000731 return 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000732}
733
Greg Claytona44c1e62013-04-29 16:36:27 +0000734std::string
735FileSpec::GetPath (void) const
Jason Molendaa7ae4672013-04-29 09:46:43 +0000736{
Jason Molendadb7d11c2013-05-06 10:21:11 +0000737 static ConstString g_slash_only ("/");
Greg Claytona44c1e62013-04-29 16:36:27 +0000738 std::string path;
Jason Molendaa7ae4672013-04-29 09:46:43 +0000739 const char *dirname = m_directory.GetCString();
740 const char *filename = m_filename.GetCString();
Jason Molendaa7ae4672013-04-29 09:46:43 +0000741 if (dirname)
742 {
743 path.append (dirname);
Jason Molendadb7d11c2013-05-06 10:21:11 +0000744 if (filename && m_directory != g_slash_only)
Jason Molendaa7ae4672013-04-29 09:46:43 +0000745 path.append ("/");
746 }
747 if (filename)
Jason Molendaa7ae4672013-04-29 09:46:43 +0000748 path.append (filename);
Jason Molendaa7ae4672013-04-29 09:46:43 +0000749 return path;
750}
751
Enrico Granataa9dbf432011-10-17 21:45:27 +0000752ConstString
753FileSpec::GetFileNameExtension () const
754{
Greg Clayton1f746072012-08-29 21:13:06 +0000755 if (m_filename)
756 {
757 const char *filename = m_filename.GetCString();
758 const char* dot_pos = strrchr(filename, '.');
759 if (dot_pos && dot_pos[1] != '\0')
760 return ConstString(dot_pos+1);
761 }
762 return ConstString();
Enrico Granataa9dbf432011-10-17 21:45:27 +0000763}
764
765ConstString
766FileSpec::GetFileNameStrippingExtension () const
767{
768 const char *filename = m_filename.GetCString();
769 if (filename == NULL)
770 return ConstString();
771
Johnny Chenf5df5372011-10-18 19:28:30 +0000772 const char* dot_pos = strrchr(filename, '.');
Enrico Granataa9dbf432011-10-17 21:45:27 +0000773 if (dot_pos == NULL)
774 return m_filename;
775
776 return ConstString(filename, dot_pos-filename);
777}
778
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000779//------------------------------------------------------------------
780// Returns a shared pointer to a data buffer that contains all or
781// part of the contents of a file. The data is memory mapped and
782// will lazily page in data from the file as memory is accessed.
783// The data that is mappped will start "file_offset" bytes into the
784// file, and "file_size" bytes will be mapped. If "file_size" is
785// greater than the number of bytes available in the file starting
786// at "file_offset", the number of bytes will be appropriately
787// truncated. The final number of bytes that get mapped can be
788// verified using the DataBuffer::GetByteSize() function.
789//------------------------------------------------------------------
790DataBufferSP
791FileSpec::MemoryMapFileContents(off_t file_offset, size_t file_size) const
792{
793 DataBufferSP data_sp;
Greg Clayton7b0992d2013-04-18 22:45:39 +0000794 std::unique_ptr<DataBufferMemoryMap> mmap_data(new DataBufferMemoryMap());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000795 if (mmap_data.get())
796 {
Greg Claytond398a1c2013-04-20 00:23:26 +0000797 const size_t mapped_length = mmap_data->MemoryMapFromFileSpec (this, file_offset, file_size);
798 if (((file_size == SIZE_MAX) && (mapped_length > 0)) || (mapped_length >= file_size))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000799 data_sp.reset(mmap_data.release());
800 }
801 return data_sp;
802}
803
804
805//------------------------------------------------------------------
806// Return the size in bytes that this object takes in memory. This
807// returns the size in bytes of this object, not any shared string
808// values it may refer to.
809//------------------------------------------------------------------
810size_t
811FileSpec::MemorySize() const
812{
813 return m_filename.MemorySize() + m_directory.MemorySize();
814}
815
Greg Claytondda4f7b2010-06-30 23:03:03 +0000816
817size_t
Greg Clayton4017fa32012-01-06 02:01:06 +0000818FileSpec::ReadFileContents (off_t file_offset, void *dst, size_t dst_len, Error *error_ptr) const
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000819{
Greg Clayton4017fa32012-01-06 02:01:06 +0000820 Error error;
Greg Claytondda4f7b2010-06-30 23:03:03 +0000821 size_t bytes_read = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000822 char resolved_path[PATH_MAX];
823 if (GetPath(resolved_path, sizeof(resolved_path)))
824 {
Greg Clayton96c09682012-01-04 22:56:43 +0000825 File file;
826 error = file.Open(resolved_path, File::eOpenOptionRead);
827 if (error.Success())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000828 {
Greg Clayton96c09682012-01-04 22:56:43 +0000829 off_t file_offset_after_seek = file_offset;
830 bytes_read = dst_len;
831 error = file.Read(dst, bytes_read, file_offset_after_seek);
Greg Claytondda4f7b2010-06-30 23:03:03 +0000832 }
Greg Claytondda4f7b2010-06-30 23:03:03 +0000833 }
Greg Clayton4017fa32012-01-06 02:01:06 +0000834 else
835 {
836 error.SetErrorString("invalid file specification");
837 }
838 if (error_ptr)
839 *error_ptr = error;
Greg Claytondda4f7b2010-06-30 23:03:03 +0000840 return bytes_read;
841}
842
843//------------------------------------------------------------------
844// Returns a shared pointer to a data buffer that contains all or
845// part of the contents of a file. The data copies into a heap based
846// buffer that lives in the DataBuffer shared pointer object returned.
847// The data that is cached will start "file_offset" bytes into the
848// file, and "file_size" bytes will be mapped. If "file_size" is
849// greater than the number of bytes available in the file starting
850// at "file_offset", the number of bytes will be appropriately
851// truncated. The final number of bytes that get mapped can be
852// verified using the DataBuffer::GetByteSize() function.
853//------------------------------------------------------------------
854DataBufferSP
Greg Clayton4017fa32012-01-06 02:01:06 +0000855FileSpec::ReadFileContents (off_t file_offset, size_t file_size, Error *error_ptr) const
Greg Claytondda4f7b2010-06-30 23:03:03 +0000856{
Greg Clayton4017fa32012-01-06 02:01:06 +0000857 Error error;
Greg Claytondda4f7b2010-06-30 23:03:03 +0000858 DataBufferSP data_sp;
859 char resolved_path[PATH_MAX];
860 if (GetPath(resolved_path, sizeof(resolved_path)))
861 {
Greg Clayton96c09682012-01-04 22:56:43 +0000862 File file;
863 error = file.Open(resolved_path, File::eOpenOptionRead);
864 if (error.Success())
Greg Clayton0b0b5122012-08-30 18:15:10 +0000865 {
866 const bool null_terminate = false;
867 error = file.Read (file_size, file_offset, null_terminate, data_sp);
868 }
869 }
870 else
871 {
872 error.SetErrorString("invalid file specification");
873 }
874 if (error_ptr)
875 *error_ptr = error;
876 return data_sp;
877}
878
879DataBufferSP
880FileSpec::ReadFileContentsAsCString(Error *error_ptr)
881{
882 Error error;
883 DataBufferSP data_sp;
884 char resolved_path[PATH_MAX];
885 if (GetPath(resolved_path, sizeof(resolved_path)))
886 {
887 File file;
888 error = file.Open(resolved_path, File::eOpenOptionRead);
889 if (error.Success())
890 {
891 off_t offset = 0;
892 size_t length = SIZE_MAX;
893 const bool null_terminate = true;
894 error = file.Read (length, offset, null_terminate, data_sp);
895 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000896 }
Greg Clayton4017fa32012-01-06 02:01:06 +0000897 else
898 {
899 error.SetErrorString("invalid file specification");
900 }
901 if (error_ptr)
902 *error_ptr = error;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000903 return data_sp;
904}
905
Greg Clayton58fc50e2010-10-20 22:52:05 +0000906size_t
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000907FileSpec::ReadFileLines (STLStringArray &lines)
908{
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000909 lines.clear();
Greg Clayton58fc50e2010-10-20 22:52:05 +0000910 char path[PATH_MAX];
911 if (GetPath(path, sizeof(path)))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000912 {
Greg Claytone01e07b2013-04-18 18:10:51 +0000913 std::ifstream file_stream (path);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000914
Greg Clayton58fc50e2010-10-20 22:52:05 +0000915 if (file_stream)
916 {
917 std::string line;
918 while (getline (file_stream, line))
919 lines.push_back (line);
920 }
921 }
922 return lines.size();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000923}
Greg Clayton4272cc72011-02-02 02:24:04 +0000924
925FileSpec::EnumerateDirectoryResult
926FileSpec::EnumerateDirectory
927(
928 const char *dir_path,
929 bool find_directories,
930 bool find_files,
931 bool find_other,
932 EnumerateDirectoryCallbackType callback,
933 void *callback_baton
934)
935{
936 if (dir_path && dir_path[0])
937 {
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000938#if _WIN32
939 char szDir[MAX_PATH];
940 strcpy_s(szDir, MAX_PATH, dir_path);
941 strcat_s(szDir, MAX_PATH, "\\*");
942
943 WIN32_FIND_DATA ffd;
944 HANDLE hFind = FindFirstFile(szDir, &ffd);
945
946 if (hFind == INVALID_HANDLE_VALUE)
947 {
948 return eEnumerateDirectoryResultNext;
949 }
950
951 do
952 {
953 bool call_callback = false;
954 FileSpec::FileType file_type = eFileTypeUnknown;
955 if (ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
956 {
957 size_t len = strlen(ffd.cFileName);
958
959 if (len == 1 && ffd.cFileName[0] == '.')
960 continue;
961
962 if (len == 2 && ffd.cFileName[0] == '.' && ffd.cFileName[1] == '.')
963 continue;
964
965 file_type = eFileTypeDirectory;
966 call_callback = find_directories;
967 }
968 else if (ffd.dwFileAttributes & FILE_ATTRIBUTE_DEVICE)
969 {
970 file_type = eFileTypeOther;
971 call_callback = find_other;
972 }
973 else
974 {
975 file_type = eFileTypeRegular;
976 call_callback = find_files;
977 }
978 if (call_callback)
979 {
980 char child_path[MAX_PATH];
981 const int child_path_len = ::snprintf (child_path, sizeof(child_path), "%s\\%s", dir_path, ffd.cFileName);
982 if (child_path_len < (int)(sizeof(child_path) - 1))
983 {
984 // Don't resolve the file type or path
985 FileSpec child_path_spec (child_path, false);
986
987 EnumerateDirectoryResult result = callback (callback_baton, file_type, child_path_spec);
988
989 switch (result)
990 {
991 case eEnumerateDirectoryResultNext:
992 // Enumerate next entry in the current directory. We just
993 // exit this switch and will continue enumerating the
994 // current directory as we currently are...
995 break;
996
997 case eEnumerateDirectoryResultEnter: // Recurse into the current entry if it is a directory or symlink, or next if not
998 if (FileSpec::EnumerateDirectory(child_path,
999 find_directories,
1000 find_files,
1001 find_other,
1002 callback,
1003 callback_baton) == eEnumerateDirectoryResultQuit)
1004 {
1005 // The subdirectory returned Quit, which means to
1006 // stop all directory enumerations at all levels.
1007 return eEnumerateDirectoryResultQuit;
1008 }
1009 break;
1010
1011 case eEnumerateDirectoryResultExit: // Exit from the current directory at the current level.
1012 // Exit from this directory level and tell parent to
1013 // keep enumerating.
1014 return eEnumerateDirectoryResultNext;
1015
1016 case eEnumerateDirectoryResultQuit: // Stop directory enumerations at any level
1017 return eEnumerateDirectoryResultQuit;
1018 }
1019 }
1020 }
1021 } while (FindNextFile(hFind, &ffd) != 0);
1022
1023 FindClose(hFind);
1024#else
1025 lldb_utility::CleanUp <DIR *, int> dir_path_dir(opendir(dir_path), NULL, closedir);
Greg Clayton4272cc72011-02-02 02:24:04 +00001026 if (dir_path_dir.is_valid())
1027 {
Jason Molenda14aef122013-04-04 03:19:27 +00001028 long path_max = fpathconf (dirfd (dir_path_dir.get()), _PC_NAME_MAX);
1029#if defined (__APPLE_) && defined (__DARWIN_MAXPATHLEN)
1030 if (path_max < __DARWIN_MAXPATHLEN)
1031 path_max = __DARWIN_MAXPATHLEN;
1032#endif
1033 struct dirent *buf, *dp;
1034 buf = (struct dirent *) malloc (offsetof (struct dirent, d_name) + path_max + 1);
1035
1036 while (buf && readdir_r(dir_path_dir.get(), buf, &dp) == 0 && dp)
Greg Clayton4272cc72011-02-02 02:24:04 +00001037 {
1038 // Only search directories
1039 if (dp->d_type == DT_DIR || dp->d_type == DT_UNKNOWN)
1040 {
Greg Claytone0f3c022011-02-07 17:41:11 +00001041 size_t len = strlen(dp->d_name);
1042
1043 if (len == 1 && dp->d_name[0] == '.')
Greg Clayton4272cc72011-02-02 02:24:04 +00001044 continue;
1045
Greg Claytone0f3c022011-02-07 17:41:11 +00001046 if (len == 2 && dp->d_name[0] == '.' && dp->d_name[1] == '.')
Greg Clayton4272cc72011-02-02 02:24:04 +00001047 continue;
1048 }
1049
1050 bool call_callback = false;
1051 FileSpec::FileType file_type = eFileTypeUnknown;
1052
1053 switch (dp->d_type)
1054 {
1055 default:
1056 case DT_UNKNOWN: file_type = eFileTypeUnknown; call_callback = true; break;
1057 case DT_FIFO: file_type = eFileTypePipe; call_callback = find_other; break;
1058 case DT_CHR: file_type = eFileTypeOther; call_callback = find_other; break;
1059 case DT_DIR: file_type = eFileTypeDirectory; call_callback = find_directories; break;
1060 case DT_BLK: file_type = eFileTypeOther; call_callback = find_other; break;
1061 case DT_REG: file_type = eFileTypeRegular; call_callback = find_files; break;
1062 case DT_LNK: file_type = eFileTypeSymbolicLink; call_callback = find_other; break;
1063 case DT_SOCK: file_type = eFileTypeSocket; call_callback = find_other; break;
Greg Clayton2b4d9b72011-04-01 18:18:34 +00001064#if !defined(__OpenBSD__)
Greg Clayton4272cc72011-02-02 02:24:04 +00001065 case DT_WHT: file_type = eFileTypeOther; call_callback = find_other; break;
Greg Clayton2b4d9b72011-04-01 18:18:34 +00001066#endif
Greg Clayton4272cc72011-02-02 02:24:04 +00001067 }
1068
1069 if (call_callback)
1070 {
1071 char child_path[PATH_MAX];
1072 const int child_path_len = ::snprintf (child_path, sizeof(child_path), "%s/%s", dir_path, dp->d_name);
Johnny Chen44805302011-07-19 19:48:13 +00001073 if (child_path_len < (int)(sizeof(child_path) - 1))
Greg Clayton4272cc72011-02-02 02:24:04 +00001074 {
1075 // Don't resolve the file type or path
1076 FileSpec child_path_spec (child_path, false);
1077
1078 EnumerateDirectoryResult result = callback (callback_baton, file_type, child_path_spec);
1079
1080 switch (result)
1081 {
Greg Clayton4272cc72011-02-02 02:24:04 +00001082 case eEnumerateDirectoryResultNext:
1083 // Enumerate next entry in the current directory. We just
1084 // exit this switch and will continue enumerating the
1085 // current directory as we currently are...
1086 break;
1087
1088 case eEnumerateDirectoryResultEnter: // Recurse into the current entry if it is a directory or symlink, or next if not
1089 if (FileSpec::EnumerateDirectory (child_path,
1090 find_directories,
1091 find_files,
1092 find_other,
1093 callback,
1094 callback_baton) == eEnumerateDirectoryResultQuit)
1095 {
1096 // The subdirectory returned Quit, which means to
1097 // stop all directory enumerations at all levels.
Jim Ingham5c42d8a2013-05-15 18:27:08 +00001098 if (buf)
1099 free (buf);
Greg Clayton4272cc72011-02-02 02:24:04 +00001100 return eEnumerateDirectoryResultQuit;
1101 }
1102 break;
1103
1104 case eEnumerateDirectoryResultExit: // Exit from the current directory at the current level.
1105 // Exit from this directory level and tell parent to
1106 // keep enumerating.
Jason Molendafe806902013-05-04 00:39:52 +00001107 if (buf)
1108 free (buf);
Greg Clayton4272cc72011-02-02 02:24:04 +00001109 return eEnumerateDirectoryResultNext;
1110
1111 case eEnumerateDirectoryResultQuit: // Stop directory enumerations at any level
Jason Molendafe806902013-05-04 00:39:52 +00001112 if (buf)
1113 free (buf);
Greg Clayton4272cc72011-02-02 02:24:04 +00001114 return eEnumerateDirectoryResultQuit;
1115 }
1116 }
1117 }
1118 }
Jason Molenda14aef122013-04-04 03:19:27 +00001119 if (buf)
1120 {
1121 free (buf);
1122 }
Greg Clayton4272cc72011-02-02 02:24:04 +00001123 }
Virgile Bellob2f1fb22013-08-23 12:44:05 +00001124#endif
Greg Clayton4272cc72011-02-02 02:24:04 +00001125 }
1126 // By default when exiting a directory, we tell the parent enumeration
1127 // to continue enumerating.
1128 return eEnumerateDirectoryResultNext;
1129}
1130
Daniel Maleae0f8f572013-08-26 23:57:52 +00001131FileSpec
1132FileSpec::CopyByAppendingPathComponent (const char *new_path) const
1133{
1134 const bool resolve = false;
1135 if (m_filename.IsEmpty() && m_directory.IsEmpty())
1136 return FileSpec(new_path,resolve);
1137 StreamString stream;
1138 if (m_filename.IsEmpty())
1139 stream.Printf("%s/%s",m_directory.GetCString(),new_path);
1140 else if (m_directory.IsEmpty())
1141 stream.Printf("%s/%s",m_filename.GetCString(),new_path);
1142 else
1143 stream.Printf("%s/%s/%s",m_directory.GetCString(), m_filename.GetCString(),new_path);
1144 return FileSpec(stream.GetData(),resolve);
1145}
1146
1147FileSpec
1148FileSpec::CopyByRemovingLastPathComponent () const
1149{
1150 const bool resolve = false;
1151 if (m_filename.IsEmpty() && m_directory.IsEmpty())
1152 return FileSpec("",resolve);
1153 if (m_directory.IsEmpty())
1154 return FileSpec("",resolve);
1155 if (m_filename.IsEmpty())
1156 {
1157 const char* dir_cstr = m_directory.GetCString();
1158 const char* last_slash_ptr = ::strrchr(dir_cstr, '/');
1159
1160 // check for obvious cases before doing the full thing
1161 if (!last_slash_ptr)
1162 return FileSpec("",resolve);
1163 if (last_slash_ptr == dir_cstr)
1164 return FileSpec("/",resolve);
1165
1166 size_t last_slash_pos = last_slash_ptr - dir_cstr+1;
1167 ConstString new_path(dir_cstr,last_slash_pos);
1168 return FileSpec(new_path.GetCString(),resolve);
1169 }
1170 else
1171 return FileSpec(m_directory.GetCString(),resolve);
1172}
1173
Greg Claytonfbb76342013-11-20 21:07:01 +00001174ConstString
Daniel Maleae0f8f572013-08-26 23:57:52 +00001175FileSpec::GetLastPathComponent () const
1176{
Greg Claytonfbb76342013-11-20 21:07:01 +00001177 if (m_filename)
1178 return m_filename;
1179 if (m_directory)
Daniel Maleae0f8f572013-08-26 23:57:52 +00001180 {
1181 const char* dir_cstr = m_directory.GetCString();
1182 const char* last_slash_ptr = ::strrchr(dir_cstr, '/');
1183 if (last_slash_ptr == NULL)
Greg Claytonfbb76342013-11-20 21:07:01 +00001184 return m_directory;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001185 if (last_slash_ptr == dir_cstr)
1186 {
1187 if (last_slash_ptr[1] == 0)
Greg Claytonfbb76342013-11-20 21:07:01 +00001188 return ConstString(last_slash_ptr);
Daniel Maleae0f8f572013-08-26 23:57:52 +00001189 else
Greg Claytonfbb76342013-11-20 21:07:01 +00001190 return ConstString(last_slash_ptr+1);
Daniel Maleae0f8f572013-08-26 23:57:52 +00001191 }
1192 if (last_slash_ptr[1] != 0)
Greg Claytonfbb76342013-11-20 21:07:01 +00001193 return ConstString(last_slash_ptr+1);
Daniel Maleae0f8f572013-08-26 23:57:52 +00001194 const char* penultimate_slash_ptr = last_slash_ptr;
1195 while (*penultimate_slash_ptr)
1196 {
1197 --penultimate_slash_ptr;
1198 if (penultimate_slash_ptr == dir_cstr)
1199 break;
1200 if (*penultimate_slash_ptr == '/')
1201 break;
1202 }
Greg Claytonfbb76342013-11-20 21:07:01 +00001203 ConstString result(penultimate_slash_ptr+1,last_slash_ptr-penultimate_slash_ptr);
1204 return result;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001205 }
Greg Claytonfbb76342013-11-20 21:07:01 +00001206 return ConstString();
Daniel Maleae0f8f572013-08-26 23:57:52 +00001207}
1208
1209void
1210FileSpec::AppendPathComponent (const char *new_path)
1211{
1212 const bool resolve = false;
1213 if (m_filename.IsEmpty() && m_directory.IsEmpty())
1214 {
1215 SetFile(new_path,resolve);
1216 return;
1217 }
1218 StreamString stream;
1219 if (m_filename.IsEmpty())
1220 stream.Printf("%s/%s",m_directory.GetCString(),new_path);
1221 else if (m_directory.IsEmpty())
1222 stream.Printf("%s/%s",m_filename.GetCString(),new_path);
1223 else
1224 stream.Printf("%s/%s/%s",m_directory.GetCString(), m_filename.GetCString(),new_path);
1225 SetFile(stream.GetData(), resolve);
1226}
1227
1228void
1229FileSpec::RemoveLastPathComponent ()
1230{
1231 const bool resolve = false;
1232 if (m_filename.IsEmpty() && m_directory.IsEmpty())
1233 {
1234 SetFile("",resolve);
1235 return;
1236 }
1237 if (m_directory.IsEmpty())
1238 {
1239 SetFile("",resolve);
1240 return;
1241 }
1242 if (m_filename.IsEmpty())
1243 {
1244 const char* dir_cstr = m_directory.GetCString();
1245 const char* last_slash_ptr = ::strrchr(dir_cstr, '/');
1246
1247 // check for obvious cases before doing the full thing
1248 if (!last_slash_ptr)
1249 {
1250 SetFile("",resolve);
1251 return;
1252 }
1253 if (last_slash_ptr == dir_cstr)
1254 {
1255 SetFile("/",resolve);
1256 return;
1257 }
1258 size_t last_slash_pos = last_slash_ptr - dir_cstr+1;
1259 ConstString new_path(dir_cstr,last_slash_pos);
1260 SetFile(new_path.GetCString(),resolve);
1261 }
1262 else
1263 SetFile(m_directory.GetCString(),resolve);
1264}
Greg Clayton1f746072012-08-29 21:13:06 +00001265//------------------------------------------------------------------
1266/// Returns true if the filespec represents an implementation source
1267/// file (files with a ".c", ".cpp", ".m", ".mm" (many more)
1268/// extension).
1269///
1270/// @return
1271/// \b true if the filespec represents an implementation source
1272/// file, \b false otherwise.
1273//------------------------------------------------------------------
1274bool
1275FileSpec::IsSourceImplementationFile () const
1276{
1277 ConstString extension (GetFileNameExtension());
1278 if (extension)
1279 {
1280 static RegularExpression g_source_file_regex ("^(c|m|mm|cpp|c\\+\\+|cxx|cc|cp|s|asm|f|f77|f90|f95|f03|for|ftn|fpp|ada|adb|ads)$",
1281 REG_EXTENDED | REG_ICASE);
1282 return g_source_file_regex.Execute (extension.GetCString());
1283 }
1284 return false;
1285}
1286
Greg Claytona0ca6602012-10-18 16:33:33 +00001287bool
1288FileSpec::IsRelativeToCurrentWorkingDirectory () const
1289{
1290 const char *directory = m_directory.GetCString();
1291 if (directory && directory[0])
1292 {
1293 // If the path doesn't start with '/' or '~', return true
1294 switch (directory[0])
1295 {
1296 case '/':
1297 case '~':
1298 return false;
1299 default:
1300 return true;
1301 }
1302 }
1303 else if (m_filename)
1304 {
1305 // No directory, just a basename, return true
1306 return true;
1307 }
1308 return false;
1309}