mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
fileUtils.cpp
Go to the documentation of this file.
1/** \file fileUtils.cpp
2 * \brief Definitions of utilities for working with files
3 *
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 * \ingroup fileutils
7 *
8 */
9
10//***********************************************************************//
11// Copyright 2020 Jared R. Males (jaredmales@gmail.com)
12//
13// This file is part of mxlib.
14//
15// mxlib is free software: you can redistribute it and/or modify
16// it under the terms of the GNU General Public License as published by
17// the Free Software Foundation, either version 3 of the License, or
18// (at your option) any later version.
19//
20// mxlib is distributed in the hope that it will be useful,
21// but WITHOUT ANY WARRANTY; without even the implied warranty of
22// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23// GNU General Public License for more details.
24//
25// You should have received a copy of the GNU General Public License
26// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
27//***********************************************************************//
28
29#include "ioutils/fileUtils.hpp"
30
31#include <iostream>
32#include <string>
33#include <vector>
34#include <sstream>
35#include <libgen.h>
36#include <cmath>
37#include <algorithm>
38
39#include <sys/types.h>
40#include <sys/stat.h>
41#include <unistd.h>
42
43#include <boost/filesystem.hpp>
44
45using namespace boost::filesystem;
46
47namespace mx
48{
49namespace ioutils
50{
51
52int createDirectories( const std::string &path )
53{
54 // Use the non throwing version and silently ignore EEXIST errors
55 boost::system::error_code ec;
56 boost::filesystem::create_directories( path, ec );
57 if( ec.value() != boost::system::errc::success && ec.value() != boost::system::errc::file_exists )
58 {
59 return -1;
60 }
61
62 return 0;
63}
64
65std::string pathStem( const std::string &fname )
66{
67 boost::filesystem::path p( fname );
68 return p.stem().string();
69}
70
71std::string pathFilename( const std::string &fname )
72{
73 boost::filesystem::path p( fname );
74 return p.filename().string();
75}
76
77std::string parentPath( const std::string &fname )
78{
79 boost::filesystem::path p( fname );
80 return p.parent_path().string();
81}
82
83std::vector<std::string> getFileNamesOld( const std::string &directory,
84 const std::string &prefix,
85 const std::string &substr,
86 const std::string &extension )
87{
88 typedef std::vector<path> vec; // store paths,
89
90 std::vector<std::string> vect;
91 if( exists( directory ) )
92 {
93 if( is_directory( directory ) )
94 {
95 vec v; // so we can sort them later
96
97 copy( directory_iterator( directory ), directory_iterator(), back_inserter( v ) );
98
99 std::sort( v.begin(), v.end() ); // sort, since directory iteration
100 // is not ordered on some file systems
101
102 auto it = v.begin();
103 auto it_end = v.end();
104
105 while( it != it_end )
106 {
107 bool inc = true;
108
109 if( extension != "" )
110 {
111 if( it->extension() != extension )
112 {
113 inc = false;
114 }
115 }
116
117 if( prefix != "" && inc )
118 {
119 std::string p = it->filename().generic_string();
120
121 if( p.size() < prefix.size() )
122 {
123 inc = false;
124 }
125 else
126 {
127 if( p.compare( 0, prefix.size(), prefix ) != 0 )
128 {
129 inc = false;
130 }
131 }
132 }
133
134 if( substr != "" && inc )
135 {
136 std::string p = it->filename().generic_string();
137 if( p.find( substr ) == std::string::npos )
138 {
139 inc = false;
140 }
141 }
142
143 if( inc )
144 {
145 vect.push_back( it->native() );
146 }
147
148 ++it;
149 }
150 }
151 else
152 {
153 std::cerr << directory << " is not a directory\n";
154 }
155 }
156 else
157 {
158 std::cerr << "directory " << directory << " does not exist\n";
159 }
160
161 return vect;
162}
163
164std::vector<std::string> getFileNames( const std::string &directory,
165 const std::string &prefix,
166 const std::string &substr,
167 const std::string &extension )
168{
169 // typedef std::vector<path> vec; // store paths,
170
171 std::vector<std::string> vect;
172 if( exists( directory ) )
173 {
174 if( is_directory( directory ) )
175 {
176 directory_iterator it{ directory };
177 auto it_end = directory_iterator{};
178 for( it; it != it_end; ++it )
179 {
180 if( extension != "" )
181 {
182 if( it->path().extension() != extension )
183 {
184 continue;
185 }
186 }
187
188 std::string p = it->path().filename().generic_string();
189
190 if( prefix != "" )
191 {
192 if( p.size() < prefix.size() )
193 {
194 continue;
195 }
196 else
197 {
198 if( p.compare( 0, prefix.size(), prefix ) != 0 )
199 {
200 continue;
201 }
202 }
203 }
204
205 if( substr != "" )
206 {
207 if( p.find( substr ) == std::string::npos )
208 {
209 continue;
210 }
211 }
212
213 // If here then it passed all checks
214 vect.push_back( it->path().native() );
215 }
216
217 sort( vect.begin(), vect.end() );
218 }
219 else
220 {
221 std::cerr << directory << " is not a directory\n";
222 }
223 }
224 else
225 {
226 std::cerr << "directory " << directory << " does not exist\n";
227 }
228
229 return vect;
230}
231
232std::vector<std::string> getFileNames( const std::string &directory, const std::string &extension )
233{
234 return getFileNames( directory, "", "", extension );
235}
236
237std::vector<std::string> getFileNames( const std::string &directory )
238{
239 return getFileNames( directory, "", "", "" );
240}
241
242std::string fileNamePrependAppend( const std::string &fname, const std::string &prepend, const std::string &append )
243{
244 std::string dir, base, ext;
245
246 path p = fname;
247 dir = p.parent_path().string();
248 base = p.stem().string();
249 ext = p.extension().string();
250
251 return dir + '/' + prepend + base + append + ext;
252}
253
254std::string fileNameAppend( const std::string &fname, const std::string &append )
255{
256 return fileNamePrependAppend( fname, "", append );
257}
258
259std::string fileNamePrepend( const std::string &fname, const std::string &prepend )
260{
261 return fileNamePrependAppend( fname, prepend, "" );
262}
263
264std::string
265getSequentialFilename( const std::string &basename, const std::string &extension, const int startat, const int ndigit )
266{
267 // int maxdig = 1;
268 // for(int j=0;j<ndigit;++j) maxdig *= 10;
269 int maxdig = pow( 10, ndigit );
270
271 char formstr[64];
272 snprintf( formstr, sizeof( formstr ), "%%0%dd", ndigit );
273
274 char digstr[64];
275 int i = startat;
276
277 std::stringstream outn;
278
279 snprintf( digstr, sizeof( digstr ), formstr, i );
280
281 outn << basename;
282 outn << digstr;
283 outn << extension;
284
285 while( boost::filesystem::exists( outn.str() ) && i < maxdig )
286 {
287 ++i;
288 outn.str( "" );
289
290 snprintf( digstr, sizeof( digstr ), formstr, i );
291
292 outn << basename;
293 outn << digstr;
294
295 outn << extension;
296 }
297
298 return outn.str();
299}
300
301off_t fileSize( int fd )
302{
303 if( fd == -1 )
304 {
305 return -1;
306 }
307
308 struct stat stbuf;
309
310 if( ( fstat( fd, &stbuf ) != 0 ) || ( !S_ISREG( stbuf.st_mode ) ) )
311 {
312 return -1;
313 }
314
315 return stbuf.st_size;
316}
317
318off_t fileSize( FILE *f )
319{
320 return fileSize( fileno( f ) );
321}
322
323} // namespace ioutils
324} // namespace mx
Declarations of utilities for working with files.
std::string fileNamePrepend(const std::string &fname, const std::string &prepend)
Prepend strings to a file name, leaving the directory and extension unaltered.
std::string getSequentialFilename(const std::string &basename, const std::string &extension="", const int startat=0, int ndigit=4)
Get the next file in a numbered sequence.
std::string fileNamePrependAppend(const std::string &fname, const std::string &prepend, const std::string &append)
Prepend and/or append strings to a file name, leaving the directory and extension unaltered.
std::string fileNameAppend(const std::string &fname, const std::string &append)
Append a string to a file name, leaving the directory and extension unaltered.
std::vector< std::string > getFileNames(const std::string &directory, const std::string &prefix, const std::string &substr, const std::string &extension)
Get a list of file names from the specified directory, specifying a prefix, a substring to match,...
int createDirectories(const std::string &path)
Create a directory or directories.
Definition fileUtils.cpp:52
std::string parentPath(const std::string &fname)
Get the parent path from a filename.
Definition fileUtils.cpp:77
std::string pathStem(const std::string &fname)
Get the stem of the filename.
Definition fileUtils.cpp:65
off_t fileSize(int fd)
Get the size in bytes of a file.
std::string pathFilename(const std::string &fname)
Get the base filename.
Definition fileUtils.cpp:71
The mxlib c++ namespace.
Definition mxError.hpp:106