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 <sbuild/sbuild-i18n.h> 00022 00023 #include "schroot-listmounts-options.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 boost::format; 00033 using sbuild::_; 00034 namespace opt = boost::program_options; 00035 using namespace schroot_listmounts; 00036 00037 const options::action_type options::ACTION_LISTMOUNTS ("listmounts"); 00038 00039 options::options (): 00040 schroot_base::options(), 00041 mountpoint(), 00042 mount(_("Mount")) 00043 { 00044 } 00045 00046 options::~options () 00047 { 00048 } 00049 00050 void 00051 options::add_options () 00052 { 00053 // Chain up to add basic options. 00054 schroot_base::options::add_options(); 00055 00056 action.add(ACTION_LISTMOUNTS); 00057 action.set_default(ACTION_LISTMOUNTS); 00058 00059 mount.add_options() 00060 ("mountpoint,m", opt::value<std::string>(&this->mountpoint), 00061 _("Mountpoint to check (full path)")); 00062 } 00063 00064 void 00065 options::add_option_groups () 00066 { 00067 // Chain up to add basic option groups. 00068 schroot_base::options::add_option_groups(); 00069 00070 #ifndef BOOST_PROGRAM_OPTIONS_DESCRIPTION_OLD 00071 if (!mount.options().empty()) 00072 #else 00073 if (!mount.primary_keys().empty()) 00074 #endif 00075 { 00076 visible.add(mount); 00077 global.add(mount); 00078 } 00079 } 00080 00081 void 00082 options::check_options () 00083 { 00084 // Chain up to check basic options. 00085 schroot_base::options::check_options(); 00086 00087 if (this->action == ACTION_LISTMOUNTS && 00088 this->mountpoint.empty()) 00089 throw opt::validation_error(_("No mount point specified")); 00090 }
1.5.4