xref: /freebsd/contrib/kyua/model/metadata.hpp (revision b0d29bc4)
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     bool has_cleanup(void) const;
71     bool is_exclusive(void) const;
72     const strings_set& required_configs(void) const;
73     const utils::units::bytes& required_disk_space(void) const;
74     const paths_set& required_files(void) const;
75     const utils::units::bytes& required_memory(void) const;
76     const paths_set& required_programs(void) const;
77     const std::string& required_user(void) const;
78     const utils::datetime::delta& timeout(void) const;
79 
80     model::properties_map to_properties(void) const;
81 
82     bool operator==(const metadata&) const;
83     bool operator!=(const metadata&) const;
84 };
85 
86 
87 std::ostream& operator<<(std::ostream&, const metadata&);
88 
89 
90 /// Builder for a metadata object.
91 class metadata_builder : utils::noncopyable {
92     struct impl;
93 
94     /// Pointer to the shared internal implementation.
95     std::auto_ptr< impl > _pimpl;
96 
97 public:
98     metadata_builder(void);
99     explicit metadata_builder(const metadata&);
100     ~metadata_builder(void);
101 
102     metadata_builder& add_allowed_architecture(const std::string&);
103     metadata_builder& add_allowed_platform(const std::string&);
104     metadata_builder& add_custom(const std::string&, const std::string&);
105     metadata_builder& add_required_config(const std::string&);
106     metadata_builder& add_required_file(const utils::fs::path&);
107     metadata_builder& add_required_program(const utils::fs::path&);
108 
109     metadata_builder& set_allowed_architectures(const strings_set&);
110     metadata_builder& set_allowed_platforms(const strings_set&);
111     metadata_builder& set_custom(const model::properties_map&);
112     metadata_builder& set_description(const std::string&);
113     metadata_builder& set_has_cleanup(const bool);
114     metadata_builder& set_is_exclusive(const bool);
115     metadata_builder& set_required_configs(const strings_set&);
116     metadata_builder& set_required_disk_space(const utils::units::bytes&);
117     metadata_builder& set_required_files(const paths_set&);
118     metadata_builder& set_required_memory(const utils::units::bytes&);
119     metadata_builder& set_required_programs(const paths_set&);
120     metadata_builder& set_required_user(const std::string&);
121     metadata_builder& set_string(const std::string&, const std::string&);
122     metadata_builder& set_timeout(const utils::datetime::delta&);
123 
124     metadata build(void) const;
125 };
126 
127 
128 }  // namespace model
129 
130 #endif  // !defined(MODEL_METADATA_HPP)
131