SeqAn3 3.2.0-rc.1
The Modern C++ library for sequence analysis.
validators.hpp
Go to the documentation of this file.
1// -----------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2021, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2021, Knut Reinert & MPI für molekulare Genetik
4// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5// shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6// -----------------------------------------------------------------------------------------------------
7
13#pragma once
14
15#include <algorithm>
16#include <concepts>
17#include <filesystem>
18#include <fstream>
19#include <seqan3/std/ranges>
20#include <regex>
21#include <sstream>
22
33
34namespace seqan3
35{
36
96template <typename validator_type>
97concept validator = std::copyable<std::remove_cvref_t<validator_type>> &&
98 requires(validator_type validator,
100{
102
103 {validator(value)} -> std::same_as<void>;
104 {validator.get_help_page_message()} -> std::same_as<std::string>;
105};
107
123template <arithmetic option_value_t>
125{
126public:
128 using option_value_type = option_value_t;
129
135 min{min_}, max{max_}
136 {}
137
142 void operator()(option_value_type const & cmp) const
143 {
144 if (!((cmp <= max) && (cmp >= min)))
145 throw validation_error{detail::to_string("Value ", cmp, " is not in range [", min, ",", max, "].")};
146 }
147
154 template <std::ranges::forward_range range_type>
158 void operator()(range_type const & range) const
159 {
160 std::for_each(range.begin(), range.end(), [&] (auto cmp) { (*this)(cmp); });
161 }
162
165 {
166 return detail::to_string("Value must be in range [", min, ",", max, "].");
167 }
168
169private:
171 option_value_type min{};
172
174 option_value_type max{};
175};
176
196template <typename option_value_t>
198{
199public:
201 using option_value_type = option_value_t;
202
212
218 template <std::ranges::forward_range range_type>
220 requires std::constructible_from<option_value_type, std::ranges::range_rvalue_reference_t<range_type>>
222 value_list_validator(range_type rng)
223 {
224 values.clear();
225 std::ranges::move(std::move(rng), std::back_inserter(values));
226 }
227
233 template <typename ...option_types>
235 requires ((std::constructible_from<option_value_type, option_types> && ...))
237 value_list_validator(option_types && ...opts)
238 {
239 (values.emplace_back(std::forward<option_types>(opts)), ...);
240 }
242
247 void operator()(option_value_type const & cmp) const
248 {
249 if (!(std::find(values.begin(), values.end(), cmp) != values.end()))
250 throw validation_error{detail::to_string("Value ", cmp, " is not one of ", std::views::all(values), ".")};
251 }
252
258 template <std::ranges::forward_range range_type>
260 requires std::convertible_to<std::ranges::range_value_t<range_type>, option_value_type>
262 void operator()(range_type const & range) const
263 {
264 std::for_each(std::ranges::begin(range), std::ranges::end(range), [&] (auto cmp) { (*this)(cmp); });
265 }
266
269 {
270 return detail::to_string("Value must be one of ", std::views::all(values), ".");
271 }
272
273private:
274
277};
278
284template <typename option_type, typename ...option_types>
286 requires (std::constructible_from<std::string, std::decay_t<option_types>> && ... &&
287 std::constructible_from<std::string, std::decay_t<option_type>>)
290
292template <typename range_type>
294 requires (std::ranges::forward_range<std::decay_t<range_type>> &&
295 std::constructible_from<std::string, std::ranges::range_value_t<range_type>>)
298
300template <typename option_type, typename ...option_types>
302
304template <typename range_type>
306 requires (std::ranges::forward_range<std::decay_t<range_type>>)
310
326{
327public:
328
331
340 virtual ~file_validator_base() = default;
342
350 virtual void operator()(std::filesystem::path const & path) const = 0;
351
359 template <std::ranges::forward_range range_type>
361 requires (std::convertible_to<std::ranges::range_value_t<range_type>, std::filesystem::path const &>
362 && !std::convertible_to<range_type, std::filesystem::path const &>)
364 void operator()(range_type const & v) const
365 {
366 std::for_each(v.begin(), v.end(), [&] (auto cmp) { this->operator()(cmp); });
367 }
368
369protected:
376 {
377 // If no valid extensions are given we can safely return here.
378 if (extensions.empty())
379 return;
380
381 // Check if extension is available.
382 if (!path.has_extension())
383 throw validation_error{detail::to_string("The given filename ", path.string(), " has no extension. Expected"
384 " one of the following valid extensions:", extensions, "!")};
385
386 std::string file_path{path.filename().string()};
387
388 // Leading dot indicates a hidden file is not part of the extension.
389 if (file_path.front() == '.')
390 file_path.erase(0, 1);
391
392 // Store a string_view containing all extensions for a better error message.
393 std::string const all_extensions{file_path.substr(file_path.find(".") + 1)};
394
395 // Compares the extensions in lower case.
396 auto case_insensitive_ends_with = [&] (std::string const & ext)
397 {
398 return case_insensitive_string_ends_with(file_path, ext);
399 };
400
401 // Check if requested extension is present.
402 if (std::ranges::find_if(extensions, case_insensitive_ends_with) == extensions.end())
403 {
404 throw validation_error{detail::to_string("Expected one of the following valid extensions: ", extensions,
405 "! Got ", all_extensions, " instead!")};
406 }
407 }
408
415 {
416 // Check if input directory is readable.
418 {
419 std::error_code ec{};
420 std::filesystem::directory_iterator{path, ec}; // if directory iterator cannot be created, ec will be set.
421 if (static_cast<bool>(ec))
422 throw validation_error{detail::to_string("Cannot read the directory ", path ,"!")};
423 }
424 else
425 {
426 // Must be a regular file.
428 throw validation_error{detail::to_string("Expected a regular file ", path, "!")};
429
430 std::ifstream file{path};
431 if (!file.is_open() || !file.good())
432 throw validation_error{detail::to_string("Cannot read the file ", path, "!")};
433 }
434 }
435
442 {
443 std::ofstream file{path};
444 detail::safe_filesystem_entry file_guard{path};
445
446 bool is_open = file.is_open();
447 bool is_good = file.good();
448 file.close();
449
450 if (!is_good || !is_open)
451 throw validation_error{detail::to_string("Cannot write ", path, "!")};
452
453 file_guard.remove();
454 }
455
458 {
459 if (extensions.empty())
460 return "";
461 else
462 return detail::to_string(" Valid file extensions are: [", extensions | views::join_with(std::string{", "}), "].");
463 }
464
471 {
472 size_t const suffix_length{suffix.size()};
473 size_t const str_length{str.size()};
474 return suffix_length > str_length ?
475 false :
476 std::ranges::equal(str.substr(str_length - suffix_length), suffix, [] (char const chr1, char const chr2)
477 {
478 return std::tolower(chr1) == std::tolower(chr2);
479 });
480 }
481
484};
485
510template <typename file_t = void>
512{
513public:
514
515 static_assert(std::same_as<file_t, void> || detail::has_type_valid_formats<file_t>,
516 "Expected either a template type with a static member called valid_formats (a file type) or void.");
517
518 // Import from base class.
520
534 {
535 if constexpr (!std::same_as<file_t, void>)
536 file_validator_base::extensions = detail::valid_file_extensions<typename file_t::valid_formats>();
537 }
538
543 virtual ~input_file_validator() = default;
544
555 requires std::same_as<file_t, void>
558 {
560 }
561
562 // Import base class constructor.
565
566 // Import the base::operator()
567 using file_validator_base::operator();
568
574 virtual void operator()(std::filesystem::path const & file) const override
575 {
576 try
577 {
578 if (!std::filesystem::exists(file))
579 throw validation_error{detail::to_string("The file ", file, " does not exist!")};
580
581 // Check if file is regular and can be opened for reading.
583
584 // Check extension.
585 validate_filename(file);
586 }
587 // LCOV_EXCL_START
589 {
590 std::throw_with_nested(validation_error{"Unhandled filesystem error!"});
591 }
592 // LCOV_EXCL_STOP
593 catch (...)
594 {
596 }
597 }
598
601 {
602 return "The input file must exist and read permissions must be granted." +
604 }
605};
606
609{
614};
615
644template <typename file_t = void>
646{
647public:
648 static_assert(std::same_as<file_t, void> || detail::has_type_valid_formats<file_t>,
649 "Expected either a template type with a static member called valid_formats (a file type) or void.");
650
651 // Import from base class.
653
660 {}
661
666 virtual ~output_file_validator() = default;
667
676 : file_validator_base{}, mode{mode}
677 {
679 }
680
681 // Import base constructor.
684
694 {
695 if constexpr (!std::same_as<file_t, void>)
696 return detail::valid_file_extensions<typename file_t::valid_formats>();
697 return {};
698 }
699
700 // Import the base::operator()
701 using file_validator_base::operator();
702
708 virtual void operator()(std::filesystem::path const & file) const override
709 {
710 try
711 {
713 throw validation_error{detail::to_string("The file ", file, " already exists!")};
714
715 // Check if file has any write permissions.
717
718 validate_filename(file);
719 }
720 // LCOV_EXCL_START
722 {
723 std::throw_with_nested(validation_error{"Unhandled filesystem error!"});
724 }
725 // LCOV_EXCL_STOP
726 catch (...)
727 {
729 }
730 }
731
734 {
736 return "Write permissions must be granted." + valid_extensions_help_page_message();
737 else // mode == create_new
738 return "The output file must not exist already and write permissions must be granted." +
740 }
741
742private:
745};
746
764{
765public:
766 // Import from base class.
768
777 virtual ~input_directory_validator() = default;
778
779 // Import base constructor.
782
783 // Import the base::operator()
784 using file_validator_base::operator();
785
791 virtual void operator()(std::filesystem::path const & dir) const override
792 {
793 try
794 {
795 if (!std::filesystem::exists(dir))
796 throw validation_error{detail::to_string("The directory ", dir, " does not exists!")};
797
799 throw validation_error{detail::to_string("The path ", dir, " is not a directory!")};
800
801 // Check if directory has any read permissions.
803 }
804 // LCOV_EXCL_START
806 {
807 std::throw_with_nested(validation_error{"Unhandled filesystem error!"});
808 }
809 // LCOV_EXCL_STOP
810 catch (...)
811 {
813 }
814 }
815
818 {
819 return detail::to_string("An existing, readable path for the input directory.");
820 }
821};
822
840{
841public:
842 // Imported from base class.
844
853 virtual ~output_directory_validator() = default;
854
855 // Import base constructor.
858
859 // Import the base::operator().
860 using file_validator_base::operator();
861
867 virtual void operator()(std::filesystem::path const & dir) const override
868 {
869 bool dir_exists = std::filesystem::exists(dir);
870 // Make sure the created dir is deleted after we are done.
872 std::filesystem::create_directory(dir, ec); // does nothing and is not treated as error if path already exists.
873 // if error code was set or if dummy.txt could not be created within the output dir, throw an error.
874 if (static_cast<bool>(ec))
875 throw validation_error{detail::to_string("Cannot create directory: ", dir, "!")};
876
877 try
878 {
879 if (!dir_exists)
880 {
881 detail::safe_filesystem_entry dir_guard{dir};
882 validate_writeability(dir / "dummy.txt");
883 dir_guard.remove_all();
884 }
885 else
886 {
887 validate_writeability(dir / "dummy.txt");
888 }
889 }
890 // LCOV_EXCL_START
892 {
893 std::throw_with_nested(validation_error{"Unhandled filesystem error!"});
894 }
895 // LCOV_EXCL_STOP
896 catch (...)
897 {
899 }
900 }
901
904 {
905 return detail::to_string("A valid path for the output directory.");
906 }
907};
908
929{
930public:
933
937 regex_validator(std::string const & pattern_) :
938 pattern{pattern_}
939 {}
940
945 void operator()(option_value_type const & cmp) const
946 {
947 std::regex rgx(pattern);
948 if (!std::regex_match(cmp, rgx))
949 throw validation_error{detail::to_string("Value ", cmp, " did not match the pattern ", pattern, ".")};
950 }
951
958 template <std::ranges::forward_range range_type>
960 requires std::convertible_to<std::ranges::range_reference_t<range_type>, option_value_type const &>
962 void operator()(range_type const & v) const
963 {
964 for (auto && file_name : v)
965 {
966 // note: we explicitly copy/construct any reference type other than `std::string &`
967 (*this)(static_cast<option_value_type const &>(file_name));
968 }
969 }
970
973 {
974 return detail::to_string("Value must match the pattern '", pattern, "'.");
975 }
976
977private:
979 std::string pattern;
980};
981
982namespace detail
983{
984
997template <typename option_value_t>
998struct default_validator
999{
1001 using option_value_type = option_value_t;
1002
1004 void operator()(option_value_t const & /*cmp*/) const noexcept
1005 {}
1006
1009 {
1010 return "";
1011 }
1012};
1013
1027template <validator validator1_type, validator validator2_type>
1029 requires std::common_with<typename validator1_type::option_value_type, typename validator2_type::option_value_type>
1031class validator_chain_adaptor
1032{
1033public:
1035 using option_value_type = std::common_type_t<typename validator1_type::option_value_type,
1036 typename validator2_type::option_value_type>;
1037
1041 validator_chain_adaptor() = delete;
1042 validator_chain_adaptor(validator_chain_adaptor const & pf) = default;
1043 validator_chain_adaptor & operator=(validator_chain_adaptor const & pf) = default;
1044 validator_chain_adaptor(validator_chain_adaptor &&) = default;
1045 validator_chain_adaptor & operator=(validator_chain_adaptor &&) = default;
1046
1051 validator_chain_adaptor(validator1_type vali1_, validator2_type vali2_) :
1052 vali1{std::move(vali1_)}, vali2{std::move(vali2_)}
1053 {}
1054
1056 ~validator_chain_adaptor() = default;
1058
1067 template <typename cmp_type>
1069 requires std::invocable<validator1_type, cmp_type const> && std::invocable<validator2_type, cmp_type const>
1071 void operator()(cmp_type const & cmp) const
1072 {
1073 vali1(cmp);
1074 vali2(cmp);
1075 }
1076
1079 {
1080 return detail::to_string(vali1.get_help_page_message(), " ", vali2.get_help_page_message());
1081 }
1082
1083private:
1085 validator1_type vali1;
1087 validator2_type vali2;
1088};
1089
1090} // namespace detail
1091
1121template <validator validator1_type, validator validator2_type>
1123 requires std::common_with<typename std::remove_reference_t<validator1_type>::option_value_type,
1126auto operator|(validator1_type && vali1, validator2_type && vali2)
1127{
1128 return detail::validator_chain_adaptor{std::forward<validator1_type>(vali1),
1129 std::forward<validator2_type>(vali2)};
1130}
1131
1132} // namespace seqan3
T back_inserter(T... args)
Provides various type traits on generic types.
T begin(T... args)
A validator that checks whether a number is inside a given range.
Definition: validators.hpp:125
void operator()(option_value_type const &cmp) const
Tests whether cmp lies inside [min, max].
Definition: validators.hpp:142
option_value_t option_value_type
The type of value that this validator invoked upon.
Definition: validators.hpp:128
void operator()(range_type const &range) const
Tests whether every element in range lies inside [min, max].
Definition: validators.hpp:158
std::string get_help_page_message() const
Returns a message that can be appended to the (positional) options help page info.
Definition: validators.hpp:164
arithmetic_range_validator(option_value_type const min_, option_value_type const max_)
The constructor.
Definition: validators.hpp:134
An abstract base class for the file and directory validators.
Definition: validators.hpp:326
bool case_insensitive_string_ends_with(std::string_view str, std::string_view suffix) const
Helper function that checks if a string is a suffix of another string. Case insensitive.
Definition: validators.hpp:470
void validate_filename(std::filesystem::path const &path) const
Validates the given filename path based on the specified extensions.
Definition: validators.hpp:375
std::string valid_extensions_help_page_message() const
Returns the information of valid file extensions.
Definition: validators.hpp:457
virtual void operator()(std::filesystem::path const &path) const =0
Tests if the given path is a valid input, respectively output, file or directory.
std::string option_value_type
Type of values that are tested by validator.
Definition: validators.hpp:330
file_validator_base(file_validator_base &&)=default
Defaulted.
file_validator_base & operator=(file_validator_base &&)=default
Defaulted.
void validate_readability(std::filesystem::path const &path) const
Checks if the given path is readable.
Definition: validators.hpp:414
file_validator_base()=default
Defaulted.
file_validator_base(file_validator_base const &)=default
Defaulted.
std::vector< std::string > extensions
Stores the extensions.
Definition: validators.hpp:483
virtual ~file_validator_base()=default
file_validator_base & operator=(file_validator_base const &)=default
Defaulted.
void validate_writeability(std::filesystem::path const &path) const
Checks if the given path is writable.
Definition: validators.hpp:441
A validator that checks if a given path is a valid input directory.
Definition: validators.hpp:764
input_directory_validator(input_directory_validator &&)=default
Defaulted.
std::string get_help_page_message() const
Returns a message that can be appended to the (positional) options help page info.
Definition: validators.hpp:817
input_directory_validator()=default
Defaulted.
input_directory_validator(input_directory_validator const &)=default
Defaulted.
input_directory_validator & operator=(input_directory_validator &&)=default
Defaulted.
virtual void operator()(std::filesystem::path const &dir) const override
Tests whether path is an existing directory and is readable.
Definition: validators.hpp:791
input_directory_validator & operator=(input_directory_validator const &)=default
Defaulted.
virtual ~input_directory_validator()=default
Virtual Destructor.
A validator that checks if a given path is a valid input file.
Definition: validators.hpp:512
input_file_validator(input_file_validator const &)=default
Defaulted.
virtual ~input_file_validator()=default
Virtual destructor.
input_file_validator(std::vector< std::string > extensions)
Constructs from a given collection of valid extensions.
Definition: validators.hpp:553
input_file_validator & operator=(input_file_validator &&)=default
Defaulted.
std::string get_help_page_message() const
Returns a message that can be appended to the (positional) options help page info.
Definition: validators.hpp:600
input_file_validator(input_file_validator &&)=default
Defaulted.
virtual void operator()(std::filesystem::path const &file) const override
Tests whether path is an existing regular file and is readable.
Definition: validators.hpp:574
input_file_validator()
Default constructor.
Definition: validators.hpp:533
input_file_validator & operator=(input_file_validator const &)=default
Defaulted.
A validator that checks if a given path is a valid output directory.
Definition: validators.hpp:840
output_directory_validator()=default
Defaulted.
output_directory_validator & operator=(output_directory_validator const &)=default
Defaulted.
virtual ~output_directory_validator()=default
Virtual Destructor.
output_directory_validator(output_directory_validator &&)=default
Defaulted.
output_directory_validator(output_directory_validator const &)=default
Defaulted.
virtual void operator()(std::filesystem::path const &dir) const override
Tests whether path is writable.
Definition: validators.hpp:867
std::string get_help_page_message() const
Returns a message that can be appended to the (positional) options help page info.
Definition: validators.hpp:903
output_directory_validator & operator=(output_directory_validator &&)=default
Defaulted.
A validator that checks if a given path is a valid output file.
Definition: validators.hpp:646
static std::vector< std::string > default_extensions()
The default extensions of file_t.
Definition: validators.hpp:693
output_file_validator(output_file_validator &&)=default
Defaulted.
output_file_validator(output_file_validator const &)=default
Defaulted.
virtual void operator()(std::filesystem::path const &file) const override
Tests whether path is does not already exists and is writable.
Definition: validators.hpp:708
output_file_validator()
Default constructor.
Definition: validators.hpp:659
output_file_validator & operator=(output_file_validator const &)=default
Defaulted.
output_file_validator & operator=(output_file_validator &&)=default
Defaulted.
std::string get_help_page_message() const
Returns a message that can be appended to the (positional) options help page info.
Definition: validators.hpp:733
virtual ~output_file_validator()=default
Virtual Destructor.
output_file_validator(output_file_open_options const mode, std::vector< std::string > extensions=default_extensions())
Constructs from a given overwrite mode and a list of valid extensions.
Definition: validators.hpp:674
A validator that checks if a matches a regular expression pattern.
Definition: validators.hpp:929
std::string get_help_page_message() const
Returns a message that can be appended to the (positional) options help page info.
Definition: validators.hpp:972
void operator()(option_value_type const &cmp) const
Tests whether cmp lies inside values.
Definition: validators.hpp:945
void operator()(range_type const &v) const
Tests whether every filename in list v matches the pattern.
Definition: validators.hpp:962
std::string option_value_type
Type of values that are tested by validator.
Definition: validators.hpp:932
regex_validator(std::string const &pattern_)
Constructing from a vector.
Definition: validators.hpp:937
Argument parser exception thrown when an argument could not be casted to the according type.
Definition: exceptions.hpp:124
A validator that checks whether a value is inside a list of valid values.
Definition: validators.hpp:198
value_list_validator()=default
Defaulted.
void operator()(option_value_type const &cmp) const
Tests whether cmp lies inside values.
Definition: validators.hpp:247
value_list_validator(value_list_validator const &)=default
Defaulted.
value_list_validator & operator=(value_list_validator const &)=default
Defaulted.
option_value_t option_value_type
Type of values that are tested by validator.
Definition: validators.hpp:201
std::string get_help_page_message() const
Returns a message that can be appended to the (positional) options help page info.
Definition: validators.hpp:268
value_list_validator(option_type, option_types ...) -> value_list_validator< option_type >
Deduction guide for a parameter pack.
void operator()(range_type const &range) const
Tests whether every element in range lies inside values.
Definition: validators.hpp:262
value_list_validator(value_list_validator &&)=default
Defaulted.
~value_list_validator()=default
Defaulted.
value_list_validator(option_types &&...opts)
Constructing from a parameter pack.
Definition: validators.hpp:237
value_list_validator(range_type &&rng) -> value_list_validator< std::string >
Deduction guide for ranges over a value type convertible to std::string.
value_list_validator(option_type, option_types...) -> value_list_validator< std::string >
Type deduction guides.
value_list_validator & operator=(value_list_validator &&)=default
Defaulted.
value_list_validator(range_type &&rng) -> value_list_validator< std::ranges::range_value_t< range_type > >
Deduction guide for ranges.
value_list_validator(range_type rng)
Constructing from a range.
Definition: validators.hpp:222
T clear(T... args)
Provides concepts for core language types and relations that don't have concepts in C++20 (yet).
T create_directory(T... args)
T current_exception(T... args)
T emplace_back(T... args)
T empty(T... args)
T end(T... args)
Provides parser related exceptions.
T exists(T... args)
T filename(T... args)
T find(T... args)
T for_each(T... args)
auto operator|(validator1_type &&vali1, validator2_type &&vali2)
Enables the chaining of validators.
Definition: validators.hpp:1126
constexpr ptrdiff_t find_if
Get the index of the first type in a pack that satisfies the given predicate.
Definition: traits.hpp:210
constexpr auto join_with
A join view, please use std::views::join if you don't need a separator.
Definition: join_with.hpp:29
T has_extension(T... args)
A type that satisfies std::is_arithmetic_v<t>.
The concept for option validators passed to add_option/positional_option.
void operator()(option_value_type const &cmp) const
Validates the value 'cmp' and throws a seqan3::validation_error on failure.
std::string get_help_page_message() const
Returns a message that can be appended to the (positional) options help page info.
using option_value_type
The type of value on which the validator is called on.
Provides various utility functions.
T is_directory(T... args)
T is_regular_file(T... args)
Provides seqan3::views::join_with.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
output_file_open_options
Mode of an output file: Determines whether an existing file can be (silently) overwritten.
Definition: validators.hpp:609
@ create_new
Forbid overwriting the output file.
@ open_or_create
Allow to overwrite the output file.
SeqAn specific customisations in the standard namespace.
Provides seqan3::debug_stream and related types.
The <ranges> header from C++20's standard library.
T regex_match(T... args)
T rethrow_exception(T... args)
Provides seqan3::detail::safe_filesystem_entry.
T size(T... args)
T substr(T... args)
T throw_with_nested(T... args)
Auxiliary for pretty printing of exception messages.
Provides traits for seqan3::type_list.
Provides various traits for template packs.