X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Ffile-name.cc;h=e5736e06b0834ed6c26e15e01f32d25d91682067;hb=f9214bac21e9926dc3248416f58190c98c4167a9;hp=e0ecc58e920c2b9f19887986231932dcf74bb9de;hpb=31568c504806f35aac420a394c9eab07abd9faa7;p=lilypond.git diff --git a/flower/file-name.cc b/flower/file-name.cc index e0ecc58e92..e5736e06b0 100644 --- a/flower/file-name.cc +++ b/flower/file-name.cc @@ -3,7 +3,7 @@ source file of the Flower Library - (c) 1997--2006 Han-Wen Nienhuys + (c) 1997--2007 Han-Wen Nienhuys Jan Nieuwenhuizen */ @@ -11,6 +11,8 @@ #include #include +#include + using namespace std; #include "config.hh" @@ -40,10 +42,10 @@ static string dos_to_posix (string file_name) { char buf[PATH_MAX] = ""; - char *s = file_name.get_copy_str0 (); + char s[PATH_MAX] = {0}; + file_name.copy (s, PATH_MAX - 1); /* ugh: char const* argument gets modified. */ int fail = cygwin_conv_to_posix_path (s, buf); - delete s; if (!fail) return buf; return file_name; @@ -63,25 +65,73 @@ slashify (string file_name) return file_name; } +string +dir_name (string const file_name) +{ + string s = file_name; + s = slashify (s); + ssize n = s.length (); + if (n && s[n - 1] == '/') + s[n - 1] = 0; + if (s.rfind ('/') != NPOS) + s = s.substr (0, s.rfind ('/')); + else + s = ""; + + return s; +} + +string +get_working_directory () +{ + char cwd[PATH_MAX]; + getcwd (cwd, PATH_MAX); + + return string (cwd); +} + /* Join components to full file_name. */ string -File_name::to_string () const +File_name::dir_part () const { string s; if (!root_.empty ()) s = root_ + ::to_string (ROOTSEP); + if (!dir_.empty ()) { s += dir_; - if (!base_.empty () || !ext_.empty ()) - s += ::to_string (DIRSEP); } - s += base_; + + return s; +} + + +string +File_name::file_part () const +{ + string s; + s = base_; if (!ext_.empty ()) s += ::to_string (EXTSEP) + ext_; return s; } +string +File_name::to_string () const +{ + string d = dir_part (); + string f = file_part (); + + if (!f.empty () + && !dir_.empty()) + { + d += ::to_string (DIRSEP); + } + + return d + f; +} + File_name::File_name (string file_name) { #ifdef __CYGWIN__