eduEngine 1.0
Course framework for DA376B
Loading...
Searching...
No Matches
parseutil.h
1// Created by Carl Johan Gribel.
2// Licensed under the MIT License. See LICENSE file for details.
3
4#ifndef parseutil_h
5#define parseutil_h
6
7// std
8//#include <stdarg.h>
9#include <vector>
10#include <string>
11#include <algorithm>
12#include <functional>
13
14//if (filter_group_prefix.size()) {
15// if (dc.group_name.size() && !dc.group_name.compare(0, filter_group_prefix.length(), filter_group_prefix))
16// continue;
17//}
18
19inline std::string& rtrim(std::string& str)
20{
21 str.erase(str.find_last_not_of(" \n\r\t")+1);
22 return str;
23}
24
25inline std::string& ltrim(std::string& str)
26{
27 str.erase(0, str.find_first_not_of(" \n\r\t"));
28 return str;
29}
30
31inline std::string& lrtrim(std::string& str)
32{
33 return ltrim(rtrim(str));
34}
35
36inline std::string& lowercase(std::string& str)
37{
38 std::transform(str.begin(), str.end(), str.begin(), ::tolower);
39 return str;
40}
41
42inline std::string lowercase_of(const std::string& str)
43{
44 std::string strlc = str;
45 lowercase(strlc);
46 return strlc;
47}
48
49inline std::string& uppercase(std::string& str)
50{
51 std::transform(str.begin(), str.end(), str.begin(), ::toupper);
52 return str;
53}
54
55inline std::string uppercase_of(const std::string& str)
56{
57 std::string strlc = str;
58 lowercase(strlc);
59 return strlc;
60}
61
62
63inline void lowercase(char *s)
64{
65 while (*s) { *s = tolower(*s); s++; }
66
67 // Alt.
68// for(int i = 0; s[i]; i++) s[i] = tolower(s[i]);
69
70 // Alt.
71// for ( ; *s; ++s) *s = tolower(*s);
72}
73
74inline void uppercase(char *s)
75{
76 while (*s) { *s = toupper(*s); s++; }
77}
78
79struct PathSeparator_WIN { bool operator()( char ch ) const { return ch == '\\' || ch == '/'; } };
80struct PathSeparator_UNIX { bool operator()( char ch ) const { return ch == '/'; } };
81struct PathSeparator_ANY { bool operator()( char ch ) const { return ch == '\\' || ch == '/'; } };
82struct ExtSeparator { bool operator()( char ch ) const { return ch == '.'; } };
83
84// Parent- & file-path extraction code inspired by:
85// https://stackoverflow.com/questions/8520560/get-a-file-name-from-a-path
86
87inline std::string get_parentdir(const std::string& path)
88{
89 return std::string( path.begin(), std::find_if(path.rbegin(), path.rend(), PathSeparator_ANY() ).base() );
90}
91
92inline std::string get_filename(const std::string& path, std::function<bool(char)> PathSeparator = PathSeparator_ANY())
93{
94 return std::string( std::find_if( path.rbegin(), path.rend(), PathSeparator).base(), path.end() );
95}
96
97inline std::string get_fileext(const std::string& path)
98{
99 return std::string( std::find_if( path.rbegin(), path.rend(), ExtSeparator() ).base(), path.end() );
100}
101
103inline void decompose_path(const std::string& fullpath,
104 std::string& path,
105 std::string& filename,
106 std::string& ext)
107{
108 auto pathsep = std::find_if( fullpath.rbegin(), fullpath.rend(), PathSeparator_ANY() );
109 auto extsep = std::find_if( fullpath.rbegin(), pathsep, ExtSeparator() );
110
111 path = std::string(fullpath.begin(), pathsep.base());
112
113 if (std::distance(extsep, pathsep) > 0)
114 {
115 filename = std::string(pathsep.base(), extsep.base()-1);
116 ext = std::string(extsep.base(), fullpath.end());
117 }
118 else
119 {
120 filename = std::string(extsep.base(), fullpath.end());
121 ext = "";
122 }
123}
124
125#if 0
126static std::string get_parentdir(std::string path)
127{
128#ifdef _WIN32
129 throw std::runtime_error("get_parentdir not defined for _WIN32\n");
130#else
131 std::string parent;
132 size_t pos = path.rfind("/");
133
134 if (pos != std::string::npos)
135 parent = path.substr(0, pos+1);
136
137 return parent;
138#endif
139}
140#endif
141
142//static std::string get_file_from_path(std::string path)
143//{
144//#ifdef _WIN32
145// throw std::runtime_error("get_parentdir not defined for _WIN32\n");
146//#else
147// std::string file;
148// size_t pos = path.rfind("/");
149//
150// if (pos != std::string::npos)
151// file = path.substr(pos, );
152//
153// return file;
154//#endif
155//}
156
157//
158// Look for an option in the provided token list and parse the provided number of subsequent arguments
159//
160//template<typename...Args>
161static bool find_option_args(const std::vector<std::string>& tokens,
162 const std::string& option_name,
163 int nbr_args,
164 ...)
165 //Args&...argvalues)
166{
167 auto opt_it = std::find(tokens.begin(), tokens.end(), option_name);
168 if (opt_it > tokens.end() - nbr_args) return false;
169
170 va_list retargs;
171 va_start(retargs, nbr_args);
172
173 for (int i=0; i<nbr_args; i++)
174 {
175
176 double argvalue = stod( *(opt_it+1+i) ); // Obtain and cast option argument value
177 double* retval = va_arg(retargs, double*); // Obtain return variable
178 *retval = argvalue; // Assign argument value to return variable
179 }
180
181 va_end(retargs);
182 return true;
183}
184
185//
186// Look for a sequence of '-option_name val1 val2' in a vector of tokens
187//
188static bool find_option_args(const std::vector<std::string>& tokens,
189 const std::string& option_name,
190 float& val1,
191 float& val2)
192{
193 auto opt_it = std::find(tokens.begin(), tokens.end(), option_name);
194
195 int nbr_values = 2;
196 if (opt_it > tokens.end() - nbr_values) return false;
197
198 val1 = stof(*(opt_it+1));
199 val2 = stof(*(opt_it+2));
200 return true;
201}
202
203//
204// find and extract first occurance of *.[suffix] in a string
205//
206static bool find_filename_from_suffix(const std::string &str, const std::string &suffix, std::string& res)
207{
208 std::string dotsuffix = std::string(".")+suffix;
209 size_t end = str.find(dotsuffix);
210
211 if (end == std::string::npos)
212 return false;
213
214 size_t start = str.rfind(" ", end);
215
216 if (start == end)
217 return false;
218 if (start == std::string::npos)
219 start = -1;
220
221 res = str.substr(start+1, end-start-1 + dotsuffix.length());
222 return true;
223}
224
225//
226// find and extract first occurance of *.[{suffix-list}] in a string
227//
228static bool find_filename_from_suffixes(const std::string &str, const std::vector<std::string>& suffixes, std::string& res)
229{
230 for (auto& suffix : suffixes)
231 if (find_filename_from_suffix(str, suffix, res))
232 return true;
233 return false;
234}
235
236// tokenization wrt to a delimiter character
237//
238// note: use find_first_of to use a SET of valid delimiter characters
239//
240static std::vector<std::string> tokenize(const std::string& str, const char delim)
241{
242 std::vector<std::string> tokens;
243 size_t str_len = str.length();
244
245 size_t si = 0, sj = str.find(delim, 0);
246 while (sj != std::string::npos)
247 {
248 if (si < sj)
249 tokens.push_back(str.substr(si, sj-si));
250
251 si = sj + 1;
252 sj = str.find(delim, si);
253 }
254 if (si < str_len)
255 tokens.push_back(str.substr(si, str_len-si));
256
257 return tokens;
258}
259
260#endif /* parseutil_h */
Definition parseutil.h:82
Definition parseutil.h:81
Definition parseutil.h:80
Definition parseutil.h:79