-
Notifications
You must be signed in to change notification settings - Fork 0
/
FsUtils.h
139 lines (123 loc) · 3.6 KB
/
FsUtils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
____ _ __ ____ __ ____
/ __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____
_\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_-</ __/ _/ // _ \/ __/
/___/\__/_/_.__/\__/_/ \___\_\_,_/\__/___/\__/ /___/_//_/\__(_)
Copyright 2012 SciberQuest Inc.
*/
#ifndef __fsutil_h
#define __fsutil_h
#include <vector>
using std::vector;
#include <string>
using std::string;
#include <iostream>
using std::ostream;
using std::cerr;
using std::endl;
#include <fstream>
using std::ifstream;
using std::ios;
#include <sstream>
using std::istringstream;
#include <cstdio>
#ifndef WIN32
#define PATH_SEP "/"
#else
#define PATH_SEP "\\"
#endif
void ToLower(string &in);
int FileExists(const char *path);
int Present(const char *path, const char *file);
int Represented(const char *path, const char *prefix);
int ScalarRepresented(const char *path, const char *prefix);
int VectorRepresented(const char *path, const char *prefix);
int SymetricTensorRepresented(const char *path, const char *prefix);
int TensorRepresented(const char *path, const char *prefix);
int GetSeriesIds(const char *path, const char *prefix, vector<int> &ids);
string StripFileNameFromPath(const string fileName);
string StripExtensionFromFileName(const string fileName);
string StripPathFromFileName(const string fileName);
int LoadLines(const char *fileName, vector<string> &lines);
int LoadText(const string &fileName, string &text);
int WriteText(string &fileName, string &text);
int SearchAndReplace(const string &searchFor,const string &replaceWith,string &inText);
ostream &operator<<(ostream &os, vector<string> v);
bool operator&(vector<string> &v, const string &s);
//*****************************************************************************
template<typename T>
size_t LoadBin(const char *fileName, size_t dlen, T *buffer)
{
ifstream file(fileName,ios::binary);
if (!file.is_open())
{
cerr << "ERROR: File " << fileName << " could not be opened." << endl;
return 0;
}
// determine file size
file.seekg(0,ios::end);
size_t flen=file.tellg();
file.seekg(0,ios::beg);
// check if file size matches expected read size.
if (dlen*sizeof(T)!=flen)
{
cerr
<< "ERROR: Expected " << dlen << " bytes but found "
<< flen << " bytes in \"" << fileName << "\".";
return 0;
}
// read
file.read((char*)buffer,flen);
file.close();
// return the data, it's up to the caller to free.
return dlen;
}
/**
*/
// ****************************************************************************
template<typename T>
int NameValue(vector<string> &lines, string name, T &value)
{
size_t nLines=lines.size();
for (size_t i=0; i<nLines; ++i)
{
string tok;
istringstream is(lines[i]);
is >> tok;
if (tok==name)
{
is >> value;
return 1;
}
}
return 0;
}
/**
Parse a string for a "key", starting at offset "at" then
advance past the key and attempt to convert what follows
in to a value of type "T". If the key isn't found, then
npos is returned otherwise the position imediately following
the key is returned.
*/
// ****************************************************************************
template <typename T>
size_t ParseValue(string &in,size_t at, string key, T &value)
{
size_t p=in.find(key,at);
if (p!=string::npos)
{
size_t n=key.size();
// check to make sure match is the whole word
if ((p!=0) && isalpha(in[p-1]) && isalpha(in[p+n]))
{
return string::npos;
}
// convert value
const int maxValueLen=64;
p+=n;
istringstream valss(in.substr(p,maxValueLen));
valss >> value;
}
return p;
}
#endif