/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 2008, 2009, 2010 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General * Public License version 2, as published by the Free Software Foundation. * * Paludis 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, write to the Free Software Foundation, Inc., 59 Temple * Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include using namespace paludis; using namespace paludis::python; namespace bp = boost::python; namespace { template class class_supports_action_filter : public bp::class_, bp::bases > { public: class_supports_action_filter(const std::string & a) : bp::class_, bp::bases >( ("Supports" + a + "Action").c_str(), ("Accept packages that support " + a + "Action").c_str(), bp::init<>("__init__()") ) { } }; } void expose_filter() { bp::class_ filter( "Filter", "Filter for an Environment selection.", bp::no_init ); filter .def(bp::self_ns::str(bp::self)) ; bp::scope filter_scope = filter; bp::class_ > filter_all( "All", "Accept all packages.", bp::init<>("__init__()") ); bp::class_ > filter_not_masked( "NotMasked", "Accept unmasked packages.", bp::init<>("__init__()") ); bp::class_ > filter_installed_at_root( "InstalledAtRoot", "Accept packages installed at a particular root.", bp::init("__init__(path)") ); bp::class_ > filter_and( "And", "Accept packages that match both filters.", bp::init("__init__(filter, filter)") ); class_supports_action_filter("Install"); class_supports_action_filter("Uninstall"); class_supports_action_filter("Pretend"); class_supports_action_filter("Config"); class_supports_action_filter("Fetch"); class_supports_action_filter("Info"); class_supports_action_filter("PretendFetch"); }