X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Ffile-path.hh;h=e66ddfa0d4cd38d4873acfc7e63f389b60d6a88e;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=69fd062c72d188d97d2402fcc9bd22bc3f8b9c88;hpb=a84a28ec141e048ce6b53eaa688dbbe9aadea3bb;p=lilypond.git diff --git a/flower/include/file-path.hh b/flower/include/file-path.hh index 69fd062c72..e66ddfa0d4 100644 --- a/flower/include/file-path.hh +++ b/flower/include/file-path.hh @@ -1,48 +1,42 @@ /* - path.hh -- declare File_path + file-path.hh -- declare File_path source file of the Flower Library - (c) 1997--1998 Han-Wen Nienhuys + (c) 1997--2008 Han-Wen Nienhuys */ -#ifndef PATH_HH -#define PATH_HH -#include "string.hh" -#include "array.hh" +#ifndef FILE_PATH_HH +#define FILE_PATH_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 - Should use kpathsea? - + TODO: add a unix style PATH interface */ -class File_path : private Array +class File_path { + vector dirs_; + public: - /// locate a file in the search path - String find (String nm) const; - - /// add to end of path. - Array::push; - String str ()const; - void add (String str); - 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); }; -/** split a path into its components. - - @params path - - @return - String &drive, String &dirs, String &filebase, String &extension - */ -void split_path (String path, String &drive, String &dirs, String &filebase, String &extension); +bool is_file (string file_name); +bool is_dir (string file_name); -#endif +#endif /* FILE_PATH */