dchroot-dsa-options.cc

Go to the documentation of this file.
00001 /* Copyright © 2005-2007  Roger Leigh <rleigh@debian.org>
00002  *
00003  * schroot is free software: you can redistribute it and/or modify it
00004  * under the terms of the GNU General Public License as published by
00005  * the Free Software Foundation, either version 3 of the License, or
00006  * (at your option) any later version.
00007  *
00008  * schroot is distributed in the hope that it will be useful, but
00009  * WITHOUT ANY WARRANTY; without even the implied warranty of
00010  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011  * General Public License for more details.
00012  *
00013  * You should have received a copy of the GNU General Public License
00014  * along with this program.  If not, see
00015  * <http://www.gnu.org/licenses/>.
00016  *
00017  *********************************************************************/
00018 
00019 #include <config.h>
00020 
00021 #include "dchroot-dsa-options.h"
00022 
00023 #include <sbuild/sbuild-util.h>
00024 
00025 #include <cstdlib>
00026 #include <iostream>
00027 
00028 #include <boost/format.hpp>
00029 #include <boost/program_options.hpp>
00030 
00031 using std::endl;
00032 using sbuild::_;
00033 using boost::format;
00034 namespace opt = boost::program_options;
00035 using namespace dchroot_dsa;
00036 
00037 options::options ():
00038   schroot::options_base()
00039 {
00040 }
00041 
00042 options::~options ()
00043 {
00044 }
00045 
00046 void
00047 options::add_options ()
00048 {
00049   // Chain up to add general schroot options.
00050   schroot::options_base::add_options();
00051 
00052   actions.add_options()
00053     ("listpaths,p",
00054      _("Print paths to available chroots"));
00055 
00056   chroot.add_options()
00057     ("all,a",
00058      _("Select all chroots"));
00059 
00060   chrootenv.add_options()
00061     ("directory,d", opt::value<std::string>(&this->directory),
00062      _("Directory to use"));
00063 }
00064 
00065 void
00066 options::check_options ()
00067 {
00068   // Chain up to check general schroot options.
00069   schroot::options_base::check_options();
00070 
00071   if (vm.count("listpaths"))
00072     this->action = ACTION_LOCATION;
00073 
00074   if (vm.count("all"))
00075     {
00076       this->all = false;
00077       this->all_chroots = true;
00078       this->all_sessions = false;
00079     }
00080 
00081   // Always preserve environment.
00082   this->preserve = true;
00083 
00084   // If no chroots specified, use the first non-option.
00085   if (this->chroots.empty() && !this->command.empty())
00086     {
00087       this->chroots.push_back(this->command[0]);
00088       this->command.erase(this->command.begin());
00089     }
00090 
00091   // dchroot-dsa only allows one command.
00092   if (this->command.size() > 1)
00093     throw opt::validation_error(_("Only one command may be specified"));
00094 
00095   if (!this->command.empty() &&
00096       !sbuild::is_absname(this->command[0]))
00097     throw opt::validation_error(_("Command must have an absolute path"));
00098 
00099   if (this->chroots.empty() && !all_used() &&
00100       (this->action != ACTION_CONFIG &&
00101        this->action != ACTION_INFO &&
00102        this->action != ACTION_LIST &&
00103        this->action != ACTION_LOCATION &&
00104        this->action != ACTION_HELP &&
00105        this->action != ACTION_VERSION))
00106     throw opt::validation_error(_("No chroot specified"));
00107 }

Generated on Mon Jan 21 00:38:28 2008 for schroot by  doxygen 1.5.4