Home | History | Annotate | Line # | Download | only in engine
metadata.hpp revision 1.1
      1 // Copyright 2012 Google Inc.
      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 engine/metadata.hpp
     30 /// Representation of the metadata of a test program or test case.
     31 
     32 #if !defined(ENGINE_METADATA_HPP)
     33 #define ENGINE_METADATA_HPP
     34 
     35 #include <map>
     36 #include <memory>
     37 #include <ostream>
     38 #include <set>
     39 #include <string>
     40 
     41 #include <tr1/memory>
     42 
     43 #include "utils/noncopyable.hpp"
     44 
     45 namespace utils {
     46 namespace config { class tree; }
     47 namespace datetime { class delta; }
     48 namespace fs { class path; }
     49 namespace units { class bytes; }
     50 }  // namespace utils
     51 
     52 namespace engine {
     53 
     54 
     55 // TODO(jmmv): All these types should probably be in individual header files so
     56 // that we could include them without pulling in additional dependencies.
     57 /// Collection of paths.
     58 typedef std::set< utils::fs::path > paths_set;
     59 /// Collection of strings.
     60 typedef std::set< std::string > strings_set;
     61 /// Collection of test properties in their textual form.
     62 typedef std::map< std::string, std::string > properties_map;
     63 
     64 
     65 extern utils::datetime::delta default_timeout;
     66 
     67 
     68 class metadata_builder;
     69 
     70 
     71 /// Collection of metadata properties of a test.
     72 class metadata {
     73     struct impl;
     74 
     75     /// Pointer to the shared internal implementation.
     76     std::tr1::shared_ptr< impl > _pimpl;
     77 
     78     friend class metadata_builder;
     79 
     80 public:
     81     metadata(const utils::config::tree&);
     82     ~metadata(void);
     83 
     84     const strings_set& allowed_architectures(void) const;
     85     const strings_set& allowed_platforms(void) const;
     86     properties_map custom(void) const;
     87     const std::string& description(void) const;
     88     bool has_cleanup(void) const;
     89     const strings_set& required_configs(void) const;
     90     const paths_set& required_files(void) const;
     91     const utils::units::bytes& required_memory(void) const;
     92     const paths_set& required_programs(void) const;
     93     const std::string& required_user(void) const;
     94     const utils::datetime::delta& timeout(void) const;
     95 
     96     engine::properties_map to_properties(void) const;
     97 
     98     bool operator==(const metadata&) const;
     99     bool operator!=(const metadata&) const;
    100 };
    101 
    102 
    103 std::ostream& operator<<(std::ostream&, const metadata&);
    104 
    105 
    106 /// Builder for a metadata object.
    107 class metadata_builder : utils::noncopyable {
    108     struct impl;
    109 
    110     /// Pointer to the shared internal implementation.
    111     std::auto_ptr< impl > _pimpl;
    112 
    113 public:
    114     metadata_builder(void);
    115     explicit metadata_builder(const engine::metadata&);
    116     ~metadata_builder(void);
    117 
    118     metadata_builder& add_allowed_architecture(const std::string&);
    119     metadata_builder& add_allowed_platform(const std::string&);
    120     metadata_builder& add_custom(const std::string&, const std::string&);
    121     metadata_builder& add_required_config(const std::string&);
    122     metadata_builder& add_required_file(const utils::fs::path&);
    123     metadata_builder& add_required_program(const utils::fs::path&);
    124 
    125     metadata_builder& set_allowed_architectures(const strings_set&);
    126     metadata_builder& set_allowed_platforms(const strings_set&);
    127     metadata_builder& set_custom(const properties_map&);
    128     metadata_builder& set_description(const std::string&);
    129     metadata_builder& set_has_cleanup(const bool);
    130     metadata_builder& set_required_configs(const strings_set&);
    131     metadata_builder& set_required_files(const paths_set&);
    132     metadata_builder& set_required_memory(const utils::units::bytes&);
    133     metadata_builder& set_required_programs(const paths_set&);
    134     metadata_builder& set_required_user(const std::string&);
    135     metadata_builder& set_string(const std::string&, const std::string&);
    136     metadata_builder& set_timeout(const utils::datetime::delta&);
    137 
    138     metadata build(void) const;
    139 };
    140 
    141 
    142 std::string check_reqs(const engine::metadata&, const utils::config::tree&,
    143                        const std::string&);
    144 
    145 
    146 }  // namespace engine
    147 
    148 
    149 #endif  // !defined(ENGINE_METADATA_HPP)
    150