]> git.donarmstrong.com Git - lilypond.git/blob - flower/file-name.cc
(gui_b): excise std_string option.
[lilypond.git] / flower / file-name.cc
1 /*
2   file-name.cc - implement File_name
3
4   source file of the Flower Library
5
6   (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include "file-name.hh"
11
12 #include <cstdio>
13 #include <cerrno>
14 using namespace std;
15
16 #include "config.hh"
17
18 #if HAVE_SYS_STAT_H
19 #include <sys/stat.h>
20 #endif
21
22 #ifdef __CYGWIN__
23 #include <sys/cygwin.h>
24 #endif
25
26 #ifndef ROOTSEP
27 #define ROOTSEP ':'
28 #endif
29
30 #ifndef DIRSEP
31 #define DIRSEP '/'
32 #endif
33
34 #ifndef EXTSEP
35 #define EXTSEP '.'
36 #endif
37
38 #ifdef __CYGWIN__
39 static std::string
40 dos_to_posix (std::string file_name)
41 {
42   char buf[PATH_MAX] = "";
43   char *s = file_name.get_copy_str0 ();
44   /* ugh: char const* argument gets modified.  */
45   int fail = cygwin_conv_to_posix_path (s, buf);
46   delete s;
47   if (!fail)
48     return buf;
49   return file_name;
50 }
51 #endif /* __CYGWIN__ */
52
53 /** Use slash as directory separator.  On Windows, they can pretty
54     much be exchanged.  */
55 #if 0
56 static /* avoid warning */
57 #endif 
58 std::string
59 slashify (std::string file_name)
60 {
61   replace_all (file_name, '\\', '/');
62   replace_all (file_name, std::string ("//"), "/");
63   return file_name;
64 }
65
66 /* Join components to full file_name. */
67 std::string
68 File_name::to_string () const
69 {
70   std::string s;
71   if (!root_.empty ())
72     s = root_ + std::to_string (ROOTSEP);
73   if (!dir_.empty ())
74     {
75       s += dir_;
76       if (!base_.empty () || !ext_.empty ())
77         s += std::to_string (DIRSEP);
78     }
79   s += base_;
80   if (!ext_.empty ())
81     s += std::to_string (EXTSEP) + ext_;
82   return s;
83 }
84
85 File_name::File_name (std::string file_name)
86 {
87 #ifdef __CYGWIN__
88   /* All system functions would work, even if we do not convert to
89      posix file_name, but we would think that \foe\bar\baz.ly is in
90      the cwd.  */
91   file_name = dos_to_posix (file_name);
92 #endif
93 #ifdef __MINGW32__
94   file_name = slashify (file_name);
95 #endif
96
97   ssize i = file_name.find (ROOTSEP);
98   if (i != NPOS)
99     {
100       root_ = file_name.substr (0, i);
101       file_name = file_name.substr (i + 1);
102     }
103
104   i = file_name.rfind (DIRSEP);
105   if (i != NPOS)
106     {
107       dir_ = file_name.substr (0, i);
108       file_name = file_name.substr (i + 1);
109     }
110
111   i = file_name.rfind ('.');
112   if (i != NPOS)
113     {
114       base_ = file_name.substr (0, i);
115       ext_ = file_name.substr (i + 1);
116     }
117   else
118     base_ = file_name;
119 }
120
121 bool
122 File_name::is_absolute () const
123 {
124   /*
125     Hmm. Is c:foo absolute?  
126    */
127   return (dir_.length () && dir_[0] == DIRSEP) || root_.length ();
128 }
129