Skip to content

Commit 6f88e6c

Browse files
author
Rafi Wiener
committed
add read and write file validators #249
Signed-off-by: Rafi Wiener <[email protected]>
1 parent be8a08f commit 6f88e6c

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,8 @@ CLI11 has several Validators built in that perform some common checks
337337
- `CLI::Transformer(...)`: 🚧 Modify the input using a map. See [Transforming Validators](#transforming-validators) for more details.
338338
- `CLI::CheckedTransformer(...)`: 🚧 Modify the input using a map, and Require that the input is either in the set or already one of the outputs of the set. See [Transforming Validators](#transforming-validators) for more details.
339339
- `CLI::ExistingFile`: Requires that the file exists if given.
340+
- `CLI::ExistingReadFile`: Requires that the file given exists and have permission to read it.
341+
- `CLI::ExistingWriteFile`: Requires that the file given exists and have permission to write to it.
340342
- `CLI::ExistingDirectory`: Requires that the directory exists.
341343
- `CLI::ExistingPath`: Requires that the path (file or directory) exists.
342344
- `CLI::NonexistentPath`: Requires that the path does not exist.

include/CLI/Validators.hpp

+11-2
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ namespace detail {
216216
/// Check for an existing file (returns error message if check fails)
217217
class ExistingFileValidator : public Validator {
218218
public:
219-
ExistingFileValidator() : Validator("FILE") {
220-
func_ = [](std::string &filename) {
219+
ExistingFileValidator(unsigned short mode = 0) : Validator("FILE") {
220+
func_ = [mode](std::string &filename) {
221221
struct stat buffer;
222222
bool exist = stat(filename.c_str(), &buffer) == 0;
223223
bool is_dir = (buffer.st_mode & S_IFDIR) != 0;
@@ -226,6 +226,9 @@ class ExistingFileValidator : public Validator {
226226
} else if(is_dir) {
227227
return "File is actually a directory: " + filename;
228228
}
229+
if(mode && !(buffer.st_mode & mode)) {
230+
return "File doesn't have the wanted permission: " + filename;
231+
}
229232
return std::string();
230233
};
231234
}
@@ -328,6 +331,12 @@ class PositiveNumber : public Validator {
328331
/// Check for existing file (returns error message if check fails)
329332
const detail::ExistingFileValidator ExistingFile;
330333

334+
/// Check that the file exist and available for read
335+
const detail::ExistingFileValidator ExistingReadFile(S_IREAD);
336+
337+
/// Check that the file exist and available for write
338+
const detail::ExistingFileValidator ExistingWriteFile(S_IWRITE);
339+
331340
/// Check for an existing directory (returns error message if check fails)
332341
const detail::ExistingDirectoryValidator ExistingDirectory;
333342

0 commit comments

Comments
 (0)