summaryrefslogtreecommitdiff
path: root/lib/sbuild/chroot/facet/session.cc
blob: 40b75f78a87c65d909114620fcecd890b937c4ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/* Copyright © 2005-2013  Roger Leigh <rleigh@debian.org>
 *
 * schroot is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * schroot is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see
 * <http://www.gnu.org/licenses/>.
 *
 *********************************************************************/

#include <config.h>

#include <sbuild/chroot/chroot.h>
#include <sbuild/chroot/config.h>
#include <sbuild/chroot/facet/session.h>
#include "format-detail.h"

#include <cassert>

#include <boost/format.hpp>

using boost::format;
using std::endl;
using namespace sbuild;

namespace sbuild
{
  namespace chroot
  {
    namespace facet
    {

      session::session ():
        facet(),
        original_chroot_name(),
        selected_chroot_name()
      {
      }

      session::~session ()
      {
      }

      session::ptr
      session::create ()
      {
        return ptr(new session());
      }

      facet::ptr
      session::clone () const
      {
        return ptr(new session(*this));
      }

      std::string const&
      session::get_name () const
      {
        static const std::string name("session");

        return name;
      }

      std::string const&
      session::get_original_name () const
      {
        return this->original_chroot_name;
      }

      void
      session::set_original_name (std::string const& name)
      {
        this->original_chroot_name = name;
        this->selected_chroot_name = name;
      }

      std::string const&
      session::get_selected_name () const
      {
        return this->selected_chroot_name;
      }

      void
      session::set_selected_name (std::string const& name)
      {
        std::string ns, shortname;
        config::get_namespace(name, ns, shortname);
        this->selected_chroot_name = shortname;
      }

      void
      session::setup_env (chroot const& chroot,
                          environment&  env) const
      {
        // Add original name to environment, but only if set (otherwise
        // defaults to session ID).
        if (!get_original_name().empty())
          env.add("CHROOT_NAME", get_original_name());

        if (!get_selected_name().empty())
          env.add("CHROOT_ALIAS", get_selected_name());
      }

      void
      session::get_details (chroot const&  chroot,
                            format_detail& detail) const
      {
        if (!get_original_name().empty())
          detail.add(_("Original Chroot Name"), get_original_name());
        if (!get_original_name().empty())
          detail.add(_("Selected Chroot Name"), get_selected_name());
        if (!chroot.get_name().empty())
          detail.add(_("Session ID"), chroot.get_name());
      }

      void
      session::get_used_keys (string_list& used_keys) const
      {
        used_keys.push_back("active");
        used_keys.push_back("source-users");
        used_keys.push_back("source-groups");
        used_keys.push_back("source-root-users");
        used_keys.push_back("source-root-groups");
        used_keys.push_back("original-name");
        used_keys.push_back("selected-name");
      }

      void
      session::get_keyfile (chroot const& chroot,
                            keyfile&      keyfile) const
      {
        keyfile::set_object_value(*this, &session::get_original_name,
                                  keyfile, chroot.get_name(),
                                  "original-name");

        keyfile::set_object_value(*this, &session::get_selected_name,
                                  keyfile, chroot.get_name(),
                                  "selected-name");
      }

      void
      session::set_keyfile (chroot&        chroot,
                            keyfile const& keyfile)
      {
        // Null methods for obsolete keys.
        void (session::* nullmethod)(bool) = 0;
        void (session::* nullvmethod)(string_list const&) = 0;

        // Setting when not clonable is deprecated.  It can't be obsoleted
        // yet because it is required to allow use and ending of existing
        // sessions which have set this parameter (even though it's
        // useless).
        keyfile::get_object_value(*this, nullmethod,
                                  keyfile, chroot.get_name(),
                                  "active",
                                  keyfile::PRIORITY_OBSOLETE);

        keyfile::get_object_list_value(*this, nullvmethod,
                                       keyfile, chroot.get_name(),
                                       "source-users",
                                       keyfile::PRIORITY_OBSOLETE);

        keyfile::get_object_list_value(*this, nullvmethod,
                                       keyfile, chroot.get_name(),
                                       "source-groups",
                                       keyfile::PRIORITY_OBSOLETE);

        keyfile::get_object_list_value(*this, nullvmethod,
                                       keyfile, chroot.get_name(),
                                       "source-root-users",
                                       keyfile::PRIORITY_OBSOLETE);

        keyfile::get_object_list_value(*this, nullvmethod,
                                       keyfile, chroot.get_name(),
                                       "source-root-groups",
                                       keyfile::PRIORITY_OBSOLETE);

        keyfile::get_object_value(*this, &session::set_original_name,
                                  keyfile, chroot.get_name(),
                                  "original-name",
                                  keyfile::PRIORITY_OPTIONAL);

        keyfile::get_object_value(*this, &session::set_selected_name,
                                  keyfile, chroot.get_name(),
                                  "selected-name",
                                  keyfile::PRIORITY_OPTIONAL);
      }

    }
  }
}