diff options
Diffstat (limited to '0.8.0/paludis/qa/parse_deps_check.cc')
-rw-r--r-- | 0.8.0/paludis/qa/parse_deps_check.cc | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/0.8.0/paludis/qa/parse_deps_check.cc b/0.8.0/paludis/qa/parse_deps_check.cc new file mode 100644 index 000000000..771353560 --- /dev/null +++ b/0.8.0/paludis/qa/parse_deps_check.cc @@ -0,0 +1,97 @@ +/* vim: set sw=4 sts=4 et foldmethod=syntax : */ + +/* + * Copyright (c) 2006 Ciaran McCreesh <ciaranm@ciaranm.org> + * + * 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 <paludis/portage_dep_parser.hh> +#include <paludis/package_database_entry.hh> +#include <paludis/environment.hh> +#include <paludis/qa/parse_deps_check.hh> + +using namespace paludis; +using namespace paludis::qa; + +ParseDepsCheck::ParseDepsCheck() +{ +} + +CheckResult +ParseDepsCheck::operator() (const EbuildCheckData & e) const +{ + CheckResult result(stringify(e.name) + "-" + stringify(e.version), + identifier()); + + try + { + PackageDatabaseEntry ee(e.name, e.version, + e.environment->package_database()->favourite_repository()); + VersionMetadata::ConstPointer metadata( + e.environment->package_database()->fetch_repository(ee.repository)->version_metadata(ee.name, ee.version)); + + try + { + std::string depend(metadata->deps.build_depend_string); + PortageDepParser::parse(depend); + } + catch (const Exception & err) + { + result << Message(qal_fatal, "Unparsable DEPEND: '" + + err.message() + "' (" + err.what() + ")"); + } + + try + { + std::string rdepend(metadata->deps.run_depend_string); + PortageDepParser::parse(rdepend); + } + catch (const Exception & err) + { + result << Message(qal_fatal, "Unparsable RDEPEND: '" + + err.message() + "' (" + err.what() + ")"); + } + + try + { + std::string pdepend(metadata->deps.post_depend_string); + PortageDepParser::parse(pdepend); + } + catch (const Exception & err) + { + result << Message(qal_fatal, "Unparsable PDEPEND: '" + + err.message() + "' (" + err.what() + ")"); + } + } + catch (const InternalError &) + { + throw; + } + catch (const Exception & err) + { + result << Message(qal_fatal, "Caught Exception '" + err.message() + "' (" + + err.what() + ")"); + } + + return result; +} + +const std::string & +ParseDepsCheck::identifier() +{ + static const std::string id("parse_deps"); + return id; +} + |