00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00051
#ifndef fileutils_INC
00052
#define fileutils_INC
00053
00054
#include <fstream>
00055
#include <map>
00056
#include <string>
00057
#include <vector>
00058
00059
00060
00061
#ifdef WIN32
00062
#include <sys/types.h>
00063
#define stat _stat
00064
#endif
00065
00066
namespace PLearn {
00067
using namespace std;
00068
00070
string getcwd();
00071
00073
int chdir(
const string& path);
00074
00077
string abspath(
const string& path);
00078
00080
bool pathexists(
const string& path);
00081
00083
bool isdir(
const string& path);
00084
00086
bool isfile(
const string& path);
00087
00089 time_t
mtime(
const string& path);
00090
00095
vector<string> lsdir(
const string& dirpath);
00096
00098
vector<string> lsdir_fullpath(
const string& dirpath);
00099
00105
bool force_mkdir(
const string& dirname);
00106
00109
void force_mkdir_for_file(
const string& filepath);
00110
00115
bool force_rmdir(
const string& dirname);
00116
00118
long filesize(
const string& filename);
00119
00121
void cp(
const string& srcpath,
const string& destpath);
00122
00124
void rm(
const string& file);
00125
00127
void mv(
const string& file);
00128
00131
void mvforce(
const string& file);
00132
00134
void touch(
const string& file);
00135
00138
void readWhileMatches(istream& in,
const string& s);
00139
00141
void skipRestOfLine(istream& in);
00142
00145
void skipBlanksAndComments(istream& in);
00146
00148
void getNextNonBlankLine(istream& in,
string& line);
00149
00152
int countNonBlankLinesOfFile(
const string& filename);
00153
00155
int smartReadUntilNext(istream& in,
string stoppingsymbols,
string& characters_read,
bool ignore_brackets=
false);
00156
00158 inline char peekAfterSkipBlanks(istream& in) {
while(isspace(in.get())); in.unget();
return in.peek(); }
00159
00161 inline char peekAfterSkipBlanksAndComments(istream& in) {
skipBlanksAndComments(in);
return in.peek(); }
00162
00164 inline char getAfterSkipBlanks(istream& in) {
char c;
while(isspace(c = in.get()));
return c; }
00165
00167 inline char getAfterSkipBlanksAndComments(istream& in) {
skipBlanksAndComments(in);
return in.get(); }
00168
00171
string newFilename(
const string directory=
"/tmp/",
const string prefix=
"",
bool is_directory=
false);
00172
00173
string makeFileNameValid(
const string& filename);
00174
00176
string makeExplicitPath(
const string& filename);
00177
00179
string loadFileAsString(
const string& filepath);
00180
00183
void saveStringInFile(
const string& filepath,
const string& text);
00184
00189
string readAndMacroProcess(istream& in, map<string, string>& variables);
00190
00193
00201
string readFileAndMacroProcess(
const string& filepath, map<string, string>& variables);
00202
00203 inline string readFileAndMacroProcess(
const string& filepath)
00204 {
00205 map<string, string> variables;
00206
return readFileAndMacroProcess(filepath, variables);
00207 }
00208
00209
#ifdef WIN32
00210
#undef stat
00211
#endif
00212
00213 }
00214
00215
00216
#endif