xref: /freebsd-src/contrib/kyua/model/context.cpp (revision b0d29bc47dba79f6f38e67eabadfb4b32ffd9390)
1*b0d29bc4SBrooks Davis // Copyright 2011 The Kyua Authors.
2*b0d29bc4SBrooks Davis // All rights reserved.
3*b0d29bc4SBrooks Davis //
4*b0d29bc4SBrooks Davis // Redistribution and use in source and binary forms, with or without
5*b0d29bc4SBrooks Davis // modification, are permitted provided that the following conditions are
6*b0d29bc4SBrooks Davis // met:
7*b0d29bc4SBrooks Davis //
8*b0d29bc4SBrooks Davis // * Redistributions of source code must retain the above copyright
9*b0d29bc4SBrooks Davis //   notice, this list of conditions and the following disclaimer.
10*b0d29bc4SBrooks Davis // * Redistributions in binary form must reproduce the above copyright
11*b0d29bc4SBrooks Davis //   notice, this list of conditions and the following disclaimer in the
12*b0d29bc4SBrooks Davis //   documentation and/or other materials provided with the distribution.
13*b0d29bc4SBrooks Davis // * Neither the name of Google Inc. nor the names of its contributors
14*b0d29bc4SBrooks Davis //   may be used to endorse or promote products derived from this software
15*b0d29bc4SBrooks Davis //   without specific prior written permission.
16*b0d29bc4SBrooks Davis //
17*b0d29bc4SBrooks Davis // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18*b0d29bc4SBrooks Davis // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19*b0d29bc4SBrooks Davis // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20*b0d29bc4SBrooks Davis // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21*b0d29bc4SBrooks Davis // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22*b0d29bc4SBrooks Davis // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23*b0d29bc4SBrooks Davis // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24*b0d29bc4SBrooks Davis // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25*b0d29bc4SBrooks Davis // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26*b0d29bc4SBrooks Davis // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27*b0d29bc4SBrooks Davis // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*b0d29bc4SBrooks Davis 
29*b0d29bc4SBrooks Davis #include "model/context.hpp"
30*b0d29bc4SBrooks Davis 
31*b0d29bc4SBrooks Davis #include "utils/format/macros.hpp"
32*b0d29bc4SBrooks Davis #include "utils/fs/path.hpp"
33*b0d29bc4SBrooks Davis #include "utils/noncopyable.hpp"
34*b0d29bc4SBrooks Davis #include "utils/text/operations.ipp"
35*b0d29bc4SBrooks Davis 
36*b0d29bc4SBrooks Davis namespace fs = utils::fs;
37*b0d29bc4SBrooks Davis namespace text = utils::text;
38*b0d29bc4SBrooks Davis 
39*b0d29bc4SBrooks Davis 
40*b0d29bc4SBrooks Davis /// Internal implementation of a context.
41*b0d29bc4SBrooks Davis struct model::context::impl : utils::noncopyable {
42*b0d29bc4SBrooks Davis     /// The current working directory.
43*b0d29bc4SBrooks Davis     fs::path _cwd;
44*b0d29bc4SBrooks Davis 
45*b0d29bc4SBrooks Davis     /// The environment variables.
46*b0d29bc4SBrooks Davis     std::map< std::string, std::string > _env;
47*b0d29bc4SBrooks Davis 
48*b0d29bc4SBrooks Davis     /// Constructor.
49*b0d29bc4SBrooks Davis     ///
50*b0d29bc4SBrooks Davis     /// \param cwd_ The current working directory.
51*b0d29bc4SBrooks Davis     /// \param env_ The environment variables.
implmodel::context::impl52*b0d29bc4SBrooks Davis     impl(const fs::path& cwd_,
53*b0d29bc4SBrooks Davis          const std::map< std::string, std::string >& env_) :
54*b0d29bc4SBrooks Davis         _cwd(cwd_),
55*b0d29bc4SBrooks Davis         _env(env_)
56*b0d29bc4SBrooks Davis     {
57*b0d29bc4SBrooks Davis     }
58*b0d29bc4SBrooks Davis 
59*b0d29bc4SBrooks Davis     /// Equality comparator.
60*b0d29bc4SBrooks Davis     ///
61*b0d29bc4SBrooks Davis     /// \param other The object to compare to.
62*b0d29bc4SBrooks Davis     ///
63*b0d29bc4SBrooks Davis     /// \return True if the two objects are equal; false otherwise.
64*b0d29bc4SBrooks Davis     bool
operator ==model::context::impl65*b0d29bc4SBrooks Davis     operator==(const impl& other) const
66*b0d29bc4SBrooks Davis     {
67*b0d29bc4SBrooks Davis         return _cwd == other._cwd && _env == other._env;
68*b0d29bc4SBrooks Davis     }
69*b0d29bc4SBrooks Davis };
70*b0d29bc4SBrooks Davis 
71*b0d29bc4SBrooks Davis 
72*b0d29bc4SBrooks Davis /// Constructs a new context.
73*b0d29bc4SBrooks Davis ///
74*b0d29bc4SBrooks Davis /// \param cwd_ The current working directory.
75*b0d29bc4SBrooks Davis /// \param env_ The environment variables.
context(const fs::path & cwd_,const std::map<std::string,std::string> & env_)76*b0d29bc4SBrooks Davis model::context::context(const fs::path& cwd_,
77*b0d29bc4SBrooks Davis                          const std::map< std::string, std::string >& env_) :
78*b0d29bc4SBrooks Davis     _pimpl(new impl(cwd_, env_))
79*b0d29bc4SBrooks Davis {
80*b0d29bc4SBrooks Davis }
81*b0d29bc4SBrooks Davis 
82*b0d29bc4SBrooks Davis 
83*b0d29bc4SBrooks Davis /// Destructor.
~context(void)84*b0d29bc4SBrooks Davis model::context::~context(void)
85*b0d29bc4SBrooks Davis {
86*b0d29bc4SBrooks Davis }
87*b0d29bc4SBrooks Davis 
88*b0d29bc4SBrooks Davis 
89*b0d29bc4SBrooks Davis /// Returns the current working directory of the context.
90*b0d29bc4SBrooks Davis ///
91*b0d29bc4SBrooks Davis /// \return A path.
92*b0d29bc4SBrooks Davis const fs::path&
cwd(void) const93*b0d29bc4SBrooks Davis model::context::cwd(void) const
94*b0d29bc4SBrooks Davis {
95*b0d29bc4SBrooks Davis     return _pimpl->_cwd;
96*b0d29bc4SBrooks Davis }
97*b0d29bc4SBrooks Davis 
98*b0d29bc4SBrooks Davis 
99*b0d29bc4SBrooks Davis /// Returns the environment variables of the context.
100*b0d29bc4SBrooks Davis ///
101*b0d29bc4SBrooks Davis /// \return A variable name to variable value mapping.
102*b0d29bc4SBrooks Davis const std::map< std::string, std::string >&
env(void) const103*b0d29bc4SBrooks Davis model::context::env(void) const
104*b0d29bc4SBrooks Davis {
105*b0d29bc4SBrooks Davis     return _pimpl->_env;
106*b0d29bc4SBrooks Davis }
107*b0d29bc4SBrooks Davis 
108*b0d29bc4SBrooks Davis 
109*b0d29bc4SBrooks Davis /// Equality comparator.
110*b0d29bc4SBrooks Davis ///
111*b0d29bc4SBrooks Davis /// \param other The other object to compare this one to.
112*b0d29bc4SBrooks Davis ///
113*b0d29bc4SBrooks Davis /// \return True if this object and other are equal; false otherwise.
114*b0d29bc4SBrooks Davis bool
operator ==(const context & other) const115*b0d29bc4SBrooks Davis model::context::operator==(const context& other) const
116*b0d29bc4SBrooks Davis {
117*b0d29bc4SBrooks Davis     return *_pimpl == *other._pimpl;
118*b0d29bc4SBrooks Davis }
119*b0d29bc4SBrooks Davis 
120*b0d29bc4SBrooks Davis 
121*b0d29bc4SBrooks Davis /// Inequality comparator.
122*b0d29bc4SBrooks Davis ///
123*b0d29bc4SBrooks Davis /// \param other The other object to compare this one to.
124*b0d29bc4SBrooks Davis ///
125*b0d29bc4SBrooks Davis /// \return True if this object and other are different; false otherwise.
126*b0d29bc4SBrooks Davis bool
operator !=(const context & other) const127*b0d29bc4SBrooks Davis model::context::operator!=(const context& other) const
128*b0d29bc4SBrooks Davis {
129*b0d29bc4SBrooks Davis     return !(*this == other);
130*b0d29bc4SBrooks Davis }
131*b0d29bc4SBrooks Davis 
132*b0d29bc4SBrooks Davis 
133*b0d29bc4SBrooks Davis /// Injects the object into a stream.
134*b0d29bc4SBrooks Davis ///
135*b0d29bc4SBrooks Davis /// \param output The stream into which to inject the object.
136*b0d29bc4SBrooks Davis /// \param object The object to format.
137*b0d29bc4SBrooks Davis ///
138*b0d29bc4SBrooks Davis /// \return The output stream.
139*b0d29bc4SBrooks Davis std::ostream&
operator <<(std::ostream & output,const context & object)140*b0d29bc4SBrooks Davis model::operator<<(std::ostream& output, const context& object)
141*b0d29bc4SBrooks Davis {
142*b0d29bc4SBrooks Davis     output << F("context{cwd=%s, env=[")
143*b0d29bc4SBrooks Davis         % text::quote(object.cwd().str(), '\'');
144*b0d29bc4SBrooks Davis 
145*b0d29bc4SBrooks Davis     const std::map< std::string, std::string >& env = object.env();
146*b0d29bc4SBrooks Davis     bool first = true;
147*b0d29bc4SBrooks Davis     for (std::map< std::string, std::string >::const_iterator
148*b0d29bc4SBrooks Davis              iter = env.begin(); iter != env.end(); ++iter) {
149*b0d29bc4SBrooks Davis         if (!first)
150*b0d29bc4SBrooks Davis             output << ", ";
151*b0d29bc4SBrooks Davis         first = false;
152*b0d29bc4SBrooks Davis 
153*b0d29bc4SBrooks Davis         output << F("%s=%s") % (*iter).first
154*b0d29bc4SBrooks Davis             % text::quote((*iter).second, '\'');
155*b0d29bc4SBrooks Davis     }
156*b0d29bc4SBrooks Davis 
157*b0d29bc4SBrooks Davis     output << "]}";
158*b0d29bc4SBrooks Davis     return output;
159*b0d29bc4SBrooks Davis }
160