1 /* =========================================================================
2 ** Extended Template and Library
3 ** stringf Procedure Implementation
6 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
7 ** Copyright (c) 2007 Chris Moore
9 ** This package is free software; you can redistribute it and/or
10 ** modify it under the terms of the GNU General Public License as
11 ** published by the Free Software Foundation; either version 2 of
12 ** the License, or (at your option) any later version.
14 ** This package is distributed in the hope that it will be useful,
15 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 ** General Public License for more details.
19 ** === N O T E S ===========================================================
21 ** This is an internal header file, included by other ETL headers.
22 ** You should not attempt to use it directly.
24 ** ========================================================================= */
26 /* === S T A R T =========================================================== */
28 #ifndef __ETL__STRINGF_H
29 #define __ETL__STRINGF_H
31 /* === H E A D E R S ======================================================= */
37 /* === M A C R O S ========================================================= */
39 #ifndef ETL_STRPRINTF_MAX_LENGTH
40 #define ETL_STRPRINTF_MAX_LENGTH (800)
44 #define POPEN_BINARY_READ_TYPE "rb"
45 #define POPEN_BINARY_WRITE_TYPE "wb"
47 #define POPEN_BINARY_READ_TYPE "r"
48 #define POPEN_BINARY_WRITE_TYPE "w"
51 /* === T Y P E D E F S ===================================================== */
55 #if defined(__APPLE__) || defined(__CYGWIN__) || defined(_WIN32)
58 #define ETL_NO_THROW throw()
61 #ifdef HAVE_VASPRINTF // This is the preferred method
62 extern int vasprintf(char **,const char *,va_list)ETL_NO_THROW;
65 # ifdef HAVE_VSNPRINTF // This is the secondary method
66 extern int vsnprintf(char *,size_t,const char*,va_list)ETL_NO_THROW;
72 extern int vsscanf(const char *,const char *,va_list)ETL_NO_THROW;
74 #define ETL_NO_VSTRSCANF
76 extern int sscanf(const char *buf, const char *format, ...)ETL_NO_THROW;
84 /* === C L A S S E S & S T R U C T S ======================================= */
89 vstrprintf(const char *format, va_list args)
91 #ifdef HAVE_VASPRINTF // This is the preferred method (and safest)
94 int i=vasprintf(&buffer,format,args);
102 #ifdef HAVE_VSNPRINTF // This is the secondary method (Safe, but bulky)
103 #warning etl::vstrprintf() has a maximum size of ETL_STRPRINTF_MAX_LENGTH in this configuration.
104 #ifdef ETL_THREAD_SAFE
105 char buffer[ETL_STRPRINTF_MAX_LENGTH];
107 static char buffer[ETL_STRPRINTF_MAX_LENGTH];
109 vsnprintf(buffer,sizeof(buffer),format,args);
111 #else // This is the worst method (UNSAFE, but "works")
112 #warning Potential for Buffer-overflow bug using vsprintf
113 #define ETL_UNSAFE_STRPRINTF (true)
114 // Here, we are doubling the size of the buffer to make this case
115 // slightly more safe.
116 #ifdef ETL_THREAD_SAFE
117 char buffer[ETL_STRPRINTF_MAX_LENGTH*2];
119 static char buffer[ETL_STRPRINTF_MAX_LENGTH*2];
121 vsprintf(buffer,format,args);
128 strprintf(const char *format, ...)
131 va_start(args,format);
132 return vstrprintf(format,args);
135 #ifndef ETL_NO_VSTRSCANF
137 vstrscanf(const std::string &data, const char*format, va_list args)
139 return vsscanf(data.c_str(),format,args);
143 strscanf(const std::string &data, const char*format, ...)
146 va_start(args,format);
147 return vstrscanf(data, format,args);
151 #if defined (HAVE_SSCANF) && defined (__GNUC__)
152 #define strscanf(data,format,...) sscanf(data.c_str(),format,__VA_ARGS__)
157 #define stratof(X) (atof((X).c_str()))
158 #define stratoi(X) (atoi((X).c_str()))
161 basename(const std::string &str)
163 std::string::const_iterator iter;
165 if(str.size() == 1 && str[0] == ETL_DIRECTORY_SEPARATOR)
168 if(str.end()[-1]==ETL_DIRECTORY_SEPARATOR)
173 for(;iter!=str.begin();iter--)
174 if(*iter==ETL_DIRECTORY_SEPARATOR)
177 if (*iter==ETL_DIRECTORY_SEPARATOR)
180 if(str.end()[-1]==ETL_DIRECTORY_SEPARATOR)
181 return std::string(iter,str.end()-1);
183 return std::string(iter,str.end());
187 dirname(const std::string &str)
189 std::string::const_iterator iter;
191 if(str.size() == 1 && str[0] == ETL_DIRECTORY_SEPARATOR)
194 if(str.end()[-1]==ETL_DIRECTORY_SEPARATOR)
199 for(;iter!=str.begin();iter--)
200 if(*iter==ETL_DIRECTORY_SEPARATOR)
203 if(iter==str.begin())
205 if (*iter==ETL_DIRECTORY_SEPARATOR)
211 return std::string(str.begin(),iter);
214 // filename_extension("/f.e/d.c") => ".c"
216 filename_extension(const std::string &str)
218 std::string base = basename(str);
219 std::string::size_type pos = base.find_last_of('.');
220 if (pos == std::string::npos) return std::string();
221 return base.substr(pos);
224 // filename_sans_extension("/f.e/d.c") => "/f.e/d"
226 filename_sans_extension(const std::string &str)
228 std::string base = basename(str);
229 std::string::size_type pos = base.find_last_of('.');
230 if (pos == std::string::npos) return str;
231 std::string dir = dirname(str);
232 if (dir == ".") return base.substr(0,pos);
233 return dir + ETL_DIRECTORY_SEPARATOR + base.substr(0,pos);
237 is_absolute_path(const std::string &path)
240 if(path.size()>=3 && path[1]==':' && (path[2]=='\\' || path[2]=='/'))
243 if(!path.empty() && path[0]==ETL_DIRECTORY_SEPARATOR)
249 unix_to_local_path(const std::string &path)
252 std::string::const_iterator iter;
253 for(iter=path.begin();iter!=path.end();iter++)
257 ret+=ETL_DIRECTORY_SEPARATOR;
270 current_working_directory()
273 std::string ret(getcwd(dir,sizeof(dir)));
278 get_root_from_path(std::string path)
281 std::string::const_iterator iter;
283 for(iter=path.begin();iter!=path.end();++iter)
285 if(*iter==ETL_DIRECTORY_SEPARATOR)
289 //if(iter!=path.end())
290 ret+=ETL_DIRECTORY_SEPARATOR;
295 remove_root_from_path(std::string path)
299 if(path[0]==ETL_DIRECTORY_SEPARATOR)
301 path.erase(path.begin());
304 path.erase(path.begin());
310 cleanup_path(std::string path)
314 while(basename(path)=="."&&path.size()!=1)path=dirname(path);
318 std::string dir(get_root_from_path(path));
319 if((dir=="../" || dir=="..\\") && ret.size())
322 if (*(ret.end()-1)!=ETL_DIRECTORY_SEPARATOR)
323 ret+=ETL_DIRECTORY_SEPARATOR;
325 else if((dir!="./" && dir!=".\\") && dir!=".")
327 path=remove_root_from_path(path);
329 if (ret.size()==0)ret+='.';
331 // Remove any trailing directory separators
332 if(ret.size() && ret[ret.size()-1]==ETL_DIRECTORY_SEPARATOR)
333 ret.erase(ret.begin()+ret.size()-1);
338 absolute_path(std::string path)
340 std::string ret(current_working_directory());
343 return cleanup_path(ret);
344 if(is_absolute_path(path))
345 return cleanup_path(path);
346 return cleanup_path(ret+ETL_DIRECTORY_SEPARATOR+path);
350 relative_path(std::string curr_path,std::string dest_path)
352 // If dest_path is already a relative path,
353 // then there is no need to do anything.
354 if(!is_absolute_path(dest_path))
355 dest_path=absolute_path(dest_path);
357 dest_path=cleanup_path(dest_path);
359 if(!is_absolute_path(curr_path))
360 curr_path=absolute_path(curr_path);
362 curr_path=cleanup_path(curr_path);
365 // If we are on windows and the dest path is on a different drive,
366 // then there is no way to make a relative path to it.
367 if(dest_path.size()>=3 && dest_path[1]==':' && dest_path[0]!=curr_path[0])
371 if(curr_path==dirname(dest_path))
372 return basename(dest_path);
374 while(!dest_path.empty() && !curr_path.empty() && get_root_from_path(dest_path)==get_root_from_path(curr_path))
376 dest_path=remove_root_from_path(dest_path);
377 curr_path=remove_root_from_path(curr_path);
380 while(!curr_path.empty())
382 dest_path=std::string("..")+ETL_DIRECTORY_SEPARATOR+dest_path;
383 curr_path=remove_root_from_path(curr_path);
391 /* === E N D =============================================================== */