X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Ffile-path.hh;h=e66ddfa0d4cd38d4873acfc7e63f389b60d6a88e;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=2055d08f011c35415ce7f757fbfcda7d31587cd8;hpb=d765f3af45be51f15da55cf570a4b172200e1035;p=lilypond.git diff --git a/flower/include/file-path.hh b/flower/include/file-path.hh index 2055d08f01..e66ddfa0d4 100644 --- a/flower/include/file-path.hh +++ b/flower/include/file-path.hh @@ -1,51 +1,42 @@ /* - file-path.hh -- declare Path and File_path + file-path.hh -- declare File_path source file of the Flower Library - (c) 1997--2000 Han-Wen Nienhuys + (c) 1997--2008 Han-Wen Nienhuys */ #ifndef FILE_PATH_HH #define FILE_PATH_HH -#include "string.hh" -#include "array.hh" +#include "std-vector.hh" +#include "std-string.hh" - -/** - search in directories for a file. +/** + search in directories for a file. Abstraction of PATH variable. An interface for searching input files. Search a number of dirs for a file. - TODO: add a unix style PATH interface + TODO: add a unix style PATH interface */ -class Path +class File_path { -public: - String root; - String dir; - String base; - String ext; + vector dirs_; - String string () const; -}; - -class File_path : private Array -{ public: - String find (String nm) const; - - Array::push; - void prepend (String str) { Array::insert (str, 0); } - String string ()const; - bool try_add (String str); - void add (String); - void parse_path (String); + vector directories () const; + string find (string name) const; + string find (string name, char const *extensions[]); + string to_string () const; + bool try_append (string str); + void append (string str); + void parse_path (string); + void prepend (string str); }; -Path split_path (String path); +bool is_file (string file_name); +bool is_dir (string file_name); #endif /* FILE_PATH */