1 // Copyright 2012 The Kyua Authors. 2 // All rights reserved. 3 // 4 // Redistribution and use in source and binary forms, with or without 5 // modification, are permitted provided that the following conditions are 6 // met: 7 // 8 // * Redistributions of source code must retain the above copyright 9 // notice, this list of conditions and the following disclaimer. 10 // * Redistributions in binary form must reproduce the above copyright 11 // notice, this list of conditions and the following disclaimer in the 12 // documentation and/or other materials provided with the distribution. 13 // * Neither the name of Google Inc. nor the names of its contributors 14 // may be used to endorse or promote products derived from this software 15 // without specific prior written permission. 16 // 17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 29 /// \file model/metadata.hpp 30 /// Definition of the "test metadata" concept. 31 32 #if !defined(MODEL_METADATA_HPP) 33 #define MODEL_METADATA_HPP 34 35 #include "model/metadata_fwd.hpp" 36 37 #include <memory> 38 #include <ostream> 39 #include <string> 40 41 #include "model/types.hpp" 42 #include "utils/config/tree_fwd.hpp" 43 #include "utils/datetime_fwd.hpp" 44 #include "utils/fs/path_fwd.hpp" 45 #include "utils/noncopyable.hpp" 46 #include "utils/units_fwd.hpp" 47 48 namespace model { 49 50 51 /// Collection of metadata properties of a test. 52 class metadata { 53 struct impl; 54 55 /// Pointer to the shared internal implementation. 56 std::shared_ptr< impl > _pimpl; 57 58 friend class metadata_builder; 59 60 public: 61 metadata(const utils::config::tree&); 62 ~metadata(void); 63 64 metadata apply_overrides(const metadata&) const; 65 66 const strings_set& allowed_architectures(void) const; 67 const strings_set& allowed_platforms(void) const; 68 model::properties_map custom(void) const; 69 const std::string& description(void) const; 70 const std::string& execenv(void) const; 71 const std::string& execenv_jail_params(void) const; 72 bool has_cleanup(void) const; 73 bool has_execenv(void) const; 74 bool is_exclusive(void) const; 75 const strings_set& required_configs(void) const; 76 const utils::units::bytes& required_disk_space(void) const; 77 const paths_set& required_files(void) const; 78 const utils::units::bytes& required_memory(void) const; 79 #ifdef __FreeBSD__ 80 const strings_set& required_kmods(void) const; 81 #endif 82 const paths_set& required_programs(void) const; 83 const std::string& required_user(void) const; 84 const utils::datetime::delta& timeout(void) const; 85 86 model::properties_map to_properties(void) const; 87 88 bool operator==(const metadata&) const; 89 bool operator!=(const metadata&) const; 90 }; 91 92 93 std::ostream& operator<<(std::ostream&, const metadata&); 94 95 96 /// Builder for a metadata object. 97 class metadata_builder : utils::noncopyable { 98 struct impl; 99 100 /// Pointer to the shared internal implementation. 101 std::unique_ptr< impl > _pimpl; 102 103 public: 104 metadata_builder(void); 105 explicit metadata_builder(const metadata&); 106 ~metadata_builder(void); 107 108 metadata_builder& add_allowed_architecture(const std::string&); 109 metadata_builder& add_allowed_platform(const std::string&); 110 metadata_builder& add_custom(const std::string&, const std::string&); 111 metadata_builder& add_required_config(const std::string&); 112 metadata_builder& add_required_file(const utils::fs::path&); 113 metadata_builder& add_required_program(const utils::fs::path&); 114 115 metadata_builder& set_allowed_architectures(const strings_set&); 116 metadata_builder& set_allowed_platforms(const strings_set&); 117 metadata_builder& set_custom(const model::properties_map&); 118 metadata_builder& set_description(const std::string&); 119 metadata_builder& set_execenv(const std::string&); 120 metadata_builder& set_execenv_jail_params(const std::string&); 121 metadata_builder& set_has_cleanup(const bool); 122 metadata_builder& set_is_exclusive(const bool); 123 metadata_builder& set_required_configs(const strings_set&); 124 metadata_builder& set_required_disk_space(const utils::units::bytes&); 125 metadata_builder& set_required_files(const paths_set&); 126 metadata_builder& set_required_memory(const utils::units::bytes&); 127 #ifdef __FreeBSD__ 128 metadata_builder& set_required_kmods(const strings_set&); 129 #endif 130 metadata_builder& set_required_programs(const paths_set&); 131 metadata_builder& set_required_user(const std::string&); 132 metadata_builder& set_string(const std::string&, const std::string&); 133 metadata_builder& set_timeout(const utils::datetime::delta&); 134 135 metadata build(void) const; 136 }; 137 138 139 } // namespace model 140 141 #endif // !defined(MODEL_METADATA_HPP) 142