blob: d4634ece83fec12515b7e7ad71b17cfeafe46bb6 [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
Hafiz Abid Qadeer487767c2014-03-12 10:53:50 +0000939 std::string szDir(dir_path);
940 szDir += "\\*";
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000941
942 WIN32_FIND_DATA ffd;
Hafiz Abid Qadeer487767c2014-03-12 10:53:50 +0000943 HANDLE hFind = FindFirstFile(szDir.c_str(), &ffd);
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000944
945 if (hFind == INVALID_HANDLE_VALUE)
946 {
947 return eEnumerateDirectoryResultNext;
948 }
949
950 do
951 {
952 bool call_callback = false;
953 FileSpec::FileType file_type = eFileTypeUnknown;
954 if (ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
955 {
956 size_t len = strlen(ffd.cFileName);
957
958 if (len == 1 && ffd.cFileName[0] == '.')
959 continue;
960
961 if (len == 2 && ffd.cFileName[0] == '.' && ffd.cFileName[1] == '.')
962 continue;
963
964 file_type = eFileTypeDirectory;
965 call_callback = find_directories;
966 }
967 else if (ffd.dwFileAttributes & FILE_ATTRIBUTE_DEVICE)
968 {
969 file_type = eFileTypeOther;
970 call_callback = find_other;
971 }
972 else
973 {
974 file_type = eFileTypeRegular;
975 call_callback = find_files;
976 }
977 if (call_callback)
978 {
979 char child_path[MAX_PATH];
980 const int child_path_len = ::snprintf (child_path, sizeof(child_path), "%s\\%s", dir_path, ffd.cFileName);
981 if (child_path_len < (int)(sizeof(child_path) - 1))
982 {
983 // Don't resolve the file type or path
984 FileSpec child_path_spec (child_path, false);
985
986 EnumerateDirectoryResult result = callback (callback_baton, file_type, child_path_spec);
987
988 switch (result)
989 {
990 case eEnumerateDirectoryResultNext:
991 // Enumerate next entry in the current directory. We just
992 // exit this switch and will continue enumerating the
993 // current directory as we currently are...
994 break;
995
996 case eEnumerateDirectoryResultEnter: // Recurse into the current entry if it is a directory or symlink, or next if not
997 if (FileSpec::EnumerateDirectory(child_path,
998 find_directories,
999 find_files,
1000 find_other,
1001 callback,
1002 callback_baton) == eEnumerateDirectoryResultQuit)
1003 {
1004 // The subdirectory returned Quit, which means to
1005 // stop all directory enumerations at all levels.
1006 return eEnumerateDirectoryResultQuit;
1007 }
1008 break;
1009
1010 case eEnumerateDirectoryResultExit: // Exit from the current directory at the current level.
1011 // Exit from this directory level and tell parent to
1012 // keep enumerating.
1013 return eEnumerateDirectoryResultNext;
1014
1015 case eEnumerateDirectoryResultQuit: // Stop directory enumerations at any level
1016 return eEnumerateDirectoryResultQuit;
1017 }
1018 }
1019 }
1020 } while (FindNextFile(hFind, &ffd) != 0);
1021
1022 FindClose(hFind);
1023#else
1024 lldb_utility::CleanUp <DIR *, int> dir_path_dir(opendir(dir_path), NULL, closedir);
Greg Clayton4272cc72011-02-02 02:24:04 +00001025 if (dir_path_dir.is_valid())
1026 {
Jason Molenda14aef122013-04-04 03:19:27 +00001027 long path_max = fpathconf (dirfd (dir_path_dir.get()), _PC_NAME_MAX);
1028#if defined (__APPLE_) && defined (__DARWIN_MAXPATHLEN)
1029 if (path_max < __DARWIN_MAXPATHLEN)
1030 path_max = __DARWIN_MAXPATHLEN;
1031#endif
1032 struct dirent *buf, *dp;
1033 buf = (struct dirent *) malloc (offsetof (struct dirent, d_name) + path_max + 1);
1034
1035 while (buf && readdir_r(dir_path_dir.get(), buf, &dp) == 0 && dp)
Greg Clayton4272cc72011-02-02 02:24:04 +00001036 {
1037 // Only search directories
1038 if (dp->d_type == DT_DIR || dp->d_type == DT_UNKNOWN)
1039 {
Greg Claytone0f3c022011-02-07 17:41:11 +00001040 size_t len = strlen(dp->d_name);
1041
1042 if (len == 1 && dp->d_name[0] == '.')
Greg Clayton4272cc72011-02-02 02:24:04 +00001043 continue;
1044
Greg Claytone0f3c022011-02-07 17:41:11 +00001045 if (len == 2 && dp->d_name[0] == '.' && dp->d_name[1] == '.')
Greg Clayton4272cc72011-02-02 02:24:04 +00001046 continue;
1047 }
1048
1049 bool call_callback = false;
1050 FileSpec::FileType file_type = eFileTypeUnknown;
1051
1052 switch (dp->d_type)
1053 {
1054 default:
1055 case DT_UNKNOWN: file_type = eFileTypeUnknown; call_callback = true; break;
1056 case DT_FIFO: file_type = eFileTypePipe; call_callback = find_other; break;
1057 case DT_CHR: file_type = eFileTypeOther; call_callback = find_other; break;
1058 case DT_DIR: file_type = eFileTypeDirectory; call_callback = find_directories; break;
1059 case DT_BLK: file_type = eFileTypeOther; call_callback = find_other; break;
1060 case DT_REG: file_type = eFileTypeRegular; call_callback = find_files; break;
1061 case DT_LNK: file_type = eFileTypeSymbolicLink; call_callback = find_other; break;
1062 case DT_SOCK: file_type = eFileTypeSocket; call_callback = find_other; break;
Greg Clayton2b4d9b72011-04-01 18:18:34 +00001063#if !defined(__OpenBSD__)
Greg Clayton4272cc72011-02-02 02:24:04 +00001064 case DT_WHT: file_type = eFileTypeOther; call_callback = find_other; break;
Greg Clayton2b4d9b72011-04-01 18:18:34 +00001065#endif
Greg Clayton4272cc72011-02-02 02:24:04 +00001066 }
1067
1068 if (call_callback)
1069 {
1070 char child_path[PATH_MAX];
1071 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 +00001072 if (child_path_len < (int)(sizeof(child_path) - 1))
Greg Clayton4272cc72011-02-02 02:24:04 +00001073 {
1074 // Don't resolve the file type or path
1075 FileSpec child_path_spec (child_path, false);
1076
1077 EnumerateDirectoryResult result = callback (callback_baton, file_type, child_path_spec);
1078
1079 switch (result)
1080 {
Greg Clayton4272cc72011-02-02 02:24:04 +00001081 case eEnumerateDirectoryResultNext:
1082 // Enumerate next entry in the current directory. We just
1083 // exit this switch and will continue enumerating the
1084 // current directory as we currently are...
1085 break;
1086
1087 case eEnumerateDirectoryResultEnter: // Recurse into the current entry if it is a directory or symlink, or next if not
1088 if (FileSpec::EnumerateDirectory (child_path,
1089 find_directories,
1090 find_files,
1091 find_other,
1092 callback,
1093 callback_baton) == eEnumerateDirectoryResultQuit)
1094 {
1095 // The subdirectory returned Quit, which means to
1096 // stop all directory enumerations at all levels.
Jim Ingham5c42d8a2013-05-15 18:27:08 +00001097 if (buf)
1098 free (buf);
Greg Clayton4272cc72011-02-02 02:24:04 +00001099 return eEnumerateDirectoryResultQuit;
1100 }
1101 break;
1102
1103 case eEnumerateDirectoryResultExit: // Exit from the current directory at the current level.
1104 // Exit from this directory level and tell parent to
1105 // keep enumerating.
Jason Molendafe806902013-05-04 00:39:52 +00001106 if (buf)
1107 free (buf);
Greg Clayton4272cc72011-02-02 02:24:04 +00001108 return eEnumerateDirectoryResultNext;
1109
1110 case eEnumerateDirectoryResultQuit: // Stop directory enumerations at any level
Jason Molendafe806902013-05-04 00:39:52 +00001111 if (buf)
1112 free (buf);
Greg Clayton4272cc72011-02-02 02:24:04 +00001113 return eEnumerateDirectoryResultQuit;
1114 }
1115 }
1116 }
1117 }
Jason Molenda14aef122013-04-04 03:19:27 +00001118 if (buf)
1119 {
1120 free (buf);
1121 }
Greg Clayton4272cc72011-02-02 02:24:04 +00001122 }
Virgile Bellob2f1fb22013-08-23 12:44:05 +00001123#endif
Greg Clayton4272cc72011-02-02 02:24:04 +00001124 }
1125 // By default when exiting a directory, we tell the parent enumeration
1126 // to continue enumerating.
1127 return eEnumerateDirectoryResultNext;
1128}
1129
Daniel Maleae0f8f572013-08-26 23:57:52 +00001130FileSpec
1131FileSpec::CopyByAppendingPathComponent (const char *new_path) const
1132{
1133 const bool resolve = false;
1134 if (m_filename.IsEmpty() && m_directory.IsEmpty())
1135 return FileSpec(new_path,resolve);
1136 StreamString stream;
1137 if (m_filename.IsEmpty())
1138 stream.Printf("%s/%s",m_directory.GetCString(),new_path);
1139 else if (m_directory.IsEmpty())
1140 stream.Printf("%s/%s",m_filename.GetCString(),new_path);
1141 else
1142 stream.Printf("%s/%s/%s",m_directory.GetCString(), m_filename.GetCString(),new_path);
1143 return FileSpec(stream.GetData(),resolve);
1144}
1145
1146FileSpec
1147FileSpec::CopyByRemovingLastPathComponent () const
1148{
1149 const bool resolve = false;
1150 if (m_filename.IsEmpty() && m_directory.IsEmpty())
1151 return FileSpec("",resolve);
1152 if (m_directory.IsEmpty())
1153 return FileSpec("",resolve);
1154 if (m_filename.IsEmpty())
1155 {
1156 const char* dir_cstr = m_directory.GetCString();
1157 const char* last_slash_ptr = ::strrchr(dir_cstr, '/');
1158
1159 // check for obvious cases before doing the full thing
1160 if (!last_slash_ptr)
1161 return FileSpec("",resolve);
1162 if (last_slash_ptr == dir_cstr)
1163 return FileSpec("/",resolve);
1164
1165 size_t last_slash_pos = last_slash_ptr - dir_cstr+1;
1166 ConstString new_path(dir_cstr,last_slash_pos);
1167 return FileSpec(new_path.GetCString(),resolve);
1168 }
1169 else
1170 return FileSpec(m_directory.GetCString(),resolve);
1171}
1172
Greg Claytonfbb76342013-11-20 21:07:01 +00001173ConstString
Daniel Maleae0f8f572013-08-26 23:57:52 +00001174FileSpec::GetLastPathComponent () const
1175{
Greg Claytonfbb76342013-11-20 21:07:01 +00001176 if (m_filename)
1177 return m_filename;
1178 if (m_directory)
Daniel Maleae0f8f572013-08-26 23:57:52 +00001179 {
1180 const char* dir_cstr = m_directory.GetCString();
1181 const char* last_slash_ptr = ::strrchr(dir_cstr, '/');
1182 if (last_slash_ptr == NULL)
Greg Claytonfbb76342013-11-20 21:07:01 +00001183 return m_directory;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001184 if (last_slash_ptr == dir_cstr)
1185 {
1186 if (last_slash_ptr[1] == 0)
Greg Claytonfbb76342013-11-20 21:07:01 +00001187 return ConstString(last_slash_ptr);
Daniel Maleae0f8f572013-08-26 23:57:52 +00001188 else
Greg Claytonfbb76342013-11-20 21:07:01 +00001189 return ConstString(last_slash_ptr+1);
Daniel Maleae0f8f572013-08-26 23:57:52 +00001190 }
1191 if (last_slash_ptr[1] != 0)
Greg Claytonfbb76342013-11-20 21:07:01 +00001192 return ConstString(last_slash_ptr+1);
Daniel Maleae0f8f572013-08-26 23:57:52 +00001193 const char* penultimate_slash_ptr = last_slash_ptr;
1194 while (*penultimate_slash_ptr)
1195 {
1196 --penultimate_slash_ptr;
1197 if (penultimate_slash_ptr == dir_cstr)
1198 break;
1199 if (*penultimate_slash_ptr == '/')
1200 break;
1201 }
Greg Claytonfbb76342013-11-20 21:07:01 +00001202 ConstString result(penultimate_slash_ptr+1,last_slash_ptr-penultimate_slash_ptr);
1203 return result;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001204 }
Greg Claytonfbb76342013-11-20 21:07:01 +00001205 return ConstString();
Daniel Maleae0f8f572013-08-26 23:57:52 +00001206}
1207
1208void
1209FileSpec::AppendPathComponent (const char *new_path)
1210{
1211 const bool resolve = false;
1212 if (m_filename.IsEmpty() && m_directory.IsEmpty())
1213 {
1214 SetFile(new_path,resolve);
1215 return;
1216 }
1217 StreamString stream;
1218 if (m_filename.IsEmpty())
1219 stream.Printf("%s/%s",m_directory.GetCString(),new_path);
1220 else if (m_directory.IsEmpty())
1221 stream.Printf("%s/%s",m_filename.GetCString(),new_path);
1222 else
1223 stream.Printf("%s/%s/%s",m_directory.GetCString(), m_filename.GetCString(),new_path);
1224 SetFile(stream.GetData(), resolve);
1225}
1226
1227void
1228FileSpec::RemoveLastPathComponent ()
1229{
1230 const bool resolve = false;
1231 if (m_filename.IsEmpty() && m_directory.IsEmpty())
1232 {
1233 SetFile("",resolve);
1234 return;
1235 }
1236 if (m_directory.IsEmpty())
1237 {
1238 SetFile("",resolve);
1239 return;
1240 }
1241 if (m_filename.IsEmpty())
1242 {
1243 const char* dir_cstr = m_directory.GetCString();
1244 const char* last_slash_ptr = ::strrchr(dir_cstr, '/');
1245
1246 // check for obvious cases before doing the full thing
1247 if (!last_slash_ptr)
1248 {
1249 SetFile("",resolve);
1250 return;
1251 }
1252 if (last_slash_ptr == dir_cstr)
1253 {
1254 SetFile("/",resolve);
1255 return;
1256 }
1257 size_t last_slash_pos = last_slash_ptr - dir_cstr+1;
1258 ConstString new_path(dir_cstr,last_slash_pos);
1259 SetFile(new_path.GetCString(),resolve);
1260 }
1261 else
1262 SetFile(m_directory.GetCString(),resolve);
1263}
Greg Clayton1f746072012-08-29 21:13:06 +00001264//------------------------------------------------------------------
1265/// Returns true if the filespec represents an implementation source
1266/// file (files with a ".c", ".cpp", ".m", ".mm" (many more)
1267/// extension).
1268///
1269/// @return
1270/// \b true if the filespec represents an implementation source
1271/// file, \b false otherwise.
1272//------------------------------------------------------------------
1273bool
1274FileSpec::IsSourceImplementationFile () const
1275{
1276 ConstString extension (GetFileNameExtension());
1277 if (extension)
1278 {
1279 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)$",
1280 REG_EXTENDED | REG_ICASE);
1281 return g_source_file_regex.Execute (extension.GetCString());
1282 }
1283 return false;
1284}
1285
Greg Claytona0ca6602012-10-18 16:33:33 +00001286bool
1287FileSpec::IsRelativeToCurrentWorkingDirectory () const
1288{
1289 const char *directory = m_directory.GetCString();
1290 if (directory && directory[0])
1291 {
1292 // If the path doesn't start with '/' or '~', return true
1293 switch (directory[0])
1294 {
1295 case '/':
1296 case '~':
1297 return false;
1298 default:
1299 return true;
1300 }
1301 }
1302 else if (m_filename)
1303 {
1304 // No directory, just a basename, return true
1305 return true;
1306 }
1307 return false;
1308}