dchroot-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-options.h"
00022 
00023 #include <cstdlib>
00024 #include <iostream>
00025 
00026 #include <boost/format.hpp>
00027 #include <boost/program_options.hpp>
00028 
00029 using std::endl;
00030 using sbuild::_;
00031 using boost::format;
00032 namespace opt = boost::program_options;
00033 using namespace dchroot;
00034 
00035 options::options ():
00036   schroot::options_base()
00037 {
00038 }
00039 
00040 options::~options ()
00041 {
00042 }
00043 
00044 void
00045 options::add_options ()
00046 {
00047   // Chain up to add general schroot options.
00048   schroot::options_base::add_options();
00049 
00050   actions.add_options()
00051     ("path,p", opt::value<std::string>(&this->chroot_path),
00052      _("Print path to selected chroot"));
00053 
00054   chroot.add_options()
00055     ("all,a",
00056      _("Select all chroots"));
00057 
00058   chrootenv.add_options()
00059     ("directory", opt::value<std::string>(&this->directory),
00060      _("Directory to use"))
00061     ("preserve-environment,d",
00062      _("Preserve user environment"));
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("path"))
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   if (vm.count("preserve-environment"))
00082     this->preserve = true;
00083 
00084   if (this->quiet && this->verbose)
00085     {
00086       sbuild::log_warning()
00087         << _("--quiet and --verbose may not be used at the same time")
00088         << endl;
00089       sbuild::log_info() << _("Using verbose output") << endl;
00090     }
00091 
00092   if (!this->chroots.empty() && all_used())
00093     {
00094       sbuild::log_warning()
00095         << _("--chroot and --all may not be used at the same time")
00096         << endl;
00097       sbuild::log_info() << _("Using --chroots only") << endl;
00098       this->all = this->all_chroots = this->all_sessions = false;
00099     }
00100 
00101   if (this->all == true)
00102     {
00103       this->all_chroots = true;
00104       this->all_sessions = true;
00105     }
00106 }

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