00001
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _SG_PATH_HXX
00029 #define _SG_PATH_HXX
00030
00031 #include <sys/types.h>
00032
00033 #include <simgear/compiler.h>
00034 #include <string>
00035
00036 #include <simgear/math/sg_types.hxx>
00037
00038 using std::string;
00039
00040 #ifdef _MSC_VER
00041 typedef int mode_t;
00042 #endif
00043
00052 class SGPath {
00053
00054 private:
00055
00056 string path;
00057
00058 public:
00059
00061 SGPath();
00062
00067 SGPath( const string& p );
00068
00070 ~SGPath();
00071
00076 void set( const string& p );
00077 SGPath& operator= ( const char* p ) { this->set(p); return *this; }
00078
00083 void append( const string& p );
00084
00089 void add( const string& p );
00090
00096 void concat( const string& p );
00097
00102 string file() const;
00103
00108 string dir() const;
00109
00114 string base() const;
00115
00120 string extension() const;
00121
00126 string str() const { return path; }
00127
00132 const char* c_str() { return path.c_str(); }
00133
00138 bool exists() const;
00139
00144 int create_dir(mode_t mode);
00145
00146 private:
00147
00148 void fix();
00149
00150 };
00151
00152
00156 string_list sgPathBranchSplit( const string &path );
00157
00161 string_list sgPathSplit( const string &search_path );
00162
00163
00164 #endif // _SG_PATH_HXX
00165
00166