mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
fileUtils.hpp
Go to the documentation of this file.
1
2/** \file fileUtils.hpp
3 * \brief Declarations of utilities for working with files
4 *
5 * \author Jared R. Males (jaredmales@gmail.com)
6 *
7 * \ingroup fileutils
8 *
9 */
10
11//***********************************************************************//
12// Copyright 2015-2020 Jared R. Males (jaredmales@gmail.com)
13//
14// This file is part of mxlib.
15//
16// mxlib is free software: you can redistribute it and/or modify
17// it under the terms of the GNU General Public License as published by
18// the Free Software Foundation, either version 3 of the License, or
19// (at your option) any later version.
20//
21// mxlib is distributed in the hope that it will be useful,
22// but WITHOUT ANY WARRANTY; without even the implied warranty of
23// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24// GNU General Public License for more details.
25//
26// You should have received a copy of the GNU General Public License
27// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
28//***********************************************************************//
29
30#ifndef filtUtils_hpp
31#define filtUtils_hpp
32
33#include <string>
34#include <vector>
35
36#include "../mxlib.hpp"
37
38namespace mx
39{
40namespace ioutils
41{
42
43/** \addtogroup fileutils
44 * @{
45 */
46
47/// Create a directory or directories
48/** This will create any directories in path that don't exist. It silently ignores already existing directories.
49 *
50 * \returns 0 on success, indicating the directories were created or already existed.
51 * \returns -1 on error
52 */
53int createDirectories( const std::string &path /**< [in] the path of the directory(ies)to create */ );
54
55/// Get the stem of the filename
56/**
57 * \returns the stem for the filename, that is without the path or extension
58 */
59std::string pathStem( const std::string &fname );
60
61/// Get the base filename
62/**
63 * \returns the filename, including the extension but without the path
64 */
65std::string pathFilename( const std::string &fname );
66
67/// Get the parent path from a filename
68/**
69 * \returns the parent path of the file
70 */
71std::string parentPath( const std::string &fname );
72
73/// Get a list of file names from the specified directory, specifying a prefix, a substring to match, and an extension
74/**
75 * \returns a std::vector<std::string> which contains the matching file names.
76 */
77std::vector<std::string>
78getFileNames( const std::string &directory, ///< [in] the path to the directory to search. Can not be empty.
79 const std::string &prefix, ///< [in] the file name prefix (the beginning characters of the file name) to
80 ///< search for, if "" then not used.
81 const std::string &substr, ///< [in] a substring of the filename to earch for, if "" then not used.
82 const std::string &extension ///< [in] the file name extension to search for, if "" then not used. Note
83 ///< that this must include the ".", as in".ext".
84);
85
86/// Get a list of file names from the specified directory, specifying the extension
87/** \overload
88 *
89 * \returns a std::vector<std::string> which contains the matching file names.
90 */
91std::vector<std::string>
92getFileNames( const std::string &directory, ///< [in] the path to the directory to search. Can not be empty.
93 const std::string &extension ///< [in] the file name extension to search for, if "" then not used. Note
94 ///< that this must include the ".", as in ".ext".
95);
96
97/// Get a list of file names from the specified directory
98/** \overload
99 *
100 * \returns a std::vector<std::string> which contains the matching file names.
101 */
102std::vector<std::string>
103getFileNames( const std::string &directory /**< [in] the path to the directory to search. Can not be empty. */ );
104
105/// Prepend and/or append strings to a file name, leaving the directory and extension unaltered.
106/**
107 * \returns the new file name
108 */
109std::string fileNamePrependAppend(
110 const std::string &fname, ///< [in] the original file name, possibly including a directory and extension
111 const std::string &prepend, ///< [in] is the string to insert at the beginning of the file name after the path
112 const std::string &append ///< [in] is the string to insert at the end of the file name, before the extension
113);
114
115/// Append a string to a file name, leaving the directory and extension unaltered.
116/**
117 * \returns the new file name
118 */
119std::string fileNameAppend(
120 const std::string &fname, ///< [in] the original file name, possibly including a directory and extension
121 const std::string &append ///< [in] is the string to insert at the end of the file name, before the extension
122);
123
124/// Prepend strings to a file name, leaving the directory and extension unaltered.
125/**
126 * \returns the new file name
127 */
128std::string fileNamePrepend(
129 const std::string &fname, ///< [in] the original file name, possibly including a directory and extension
130 const std::string &prepend ///< [in] is the string to insert at the beginning of the file name after the path
131);
132
133/// Get the next file in a numbered sequence
134/** Searches for files in the path designated by basename of the form basenameXXXXextension
135 * where the number of digits in XXXX is set by the \a ndigit parameter.
136 *
137 * \warning this does not currently detect missing files in the sequence, e.g. if you have 0,1,3 in the directory this
138 * will start with 2!
139 *
140 * \todo switch to using a regex or something so we can detect the missing file.
141 *
142 * \retval std::string containing the next filename.
143 *
144 * \test Verify creation of sequential file names \ref tests_ioutils_fileUtils_getSequentialFilename "[test doc]"
145 */
146std::string getSequentialFilename(
147 const std::string &basename, ///< [in] path and initial name of the file
148 const std::string &extension = "", ///< [in] [optional] extension to append after the number. Default is empty.
149 const int startat = 0, ///< [in] [optional] number to start the search from. Default is 0.
150 int ndigit = 4 ///< [in] [optional] number of digits in string representation of the number. Default is 4.
151);
152
153/// Get the size in bytes of a file
154/** Uses fstat.
155 *
156 * \returns the file size if fd is valid and no errors occur
157 * \returns -1 on an error
158 */
159off_t fileSize( int fd /**< [in] an open file descriptor */ );
160
161/// Get the size in bytes of a file pointed to by a FILE pointer
162/** Uses fileno to get the associated descriptor, then uses fstat.
163 *
164 * \returns the file size if fd is valid and no errors occur
165 * \returns -1 on an error
166 *
167 * \overload
168 */
169off_t fileSize( FILE *f /**< [in] an open file */ );
170
171///@} -fileutils
172
173} // namespace ioutils
174} // namespace mx
175
176#endif // fileUtils_hpp
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