2 file-name.cc - implement File_name
4 source file of the Flower Library
6 (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 Jan Nieuwenhuizen <janneke@gnu.org>
10 #include "file-name.hh"
22 #include <sys/cygwin.h>
25 /* We don't have multiple roots, set this to '\0'? */
40 dos_to_posix (String file_name)
43 char *s = file_name.get_copy_str0 ();
44 /* urg, wtf? char const* argument gets modified! */
45 cygwin_conv_to_posix_path (s, buf);
49 #endif /* __CYGWIN__ */
52 /** Use slash as directory separator. On Windows, they can pretty
55 slashify (String file_name)
57 file_name.substitute ('\\', '/');
58 file_name.substitute ("//", "/");
61 #endif /* __MINGW32__ */
63 /* Join components to full file_name. */
65 File_name::to_string () const
68 if (!root_.is_empty ())
69 s = root_ + ::to_string (ROOTSEP);
70 if (!dir_.is_empty ())
73 if (!base_.is_empty () || !ext_.is_empty ())
74 s += ::to_string (DIRSEP);
77 if (!ext_.is_empty ())
78 s += ::to_string (EXTSEP) + ext_;
83 File_name::File_name (String file_name)
86 /* All system functions would work, even if we do not convert to
87 posix file_name, but we would think that \foe\bar\baz.ly is in
89 file_name = dos_to_posix (file_name);
92 file_name = slashify (file_name);
95 int i = file_name.index (ROOTSEP);
98 root_ = file_name.left_string (i);
99 file_name = file_name.right_string (file_name.length () - i - 1);
102 i = file_name.index_last (DIRSEP);
105 dir_ = file_name.left_string (i);
106 file_name = file_name.right_string (file_name.length () - i - 1);
109 i = file_name.index_last ('.');
112 base_ = file_name.left_string (i);
113 ext_ = file_name.right_string (file_name.length () - i - 1);