example_action.cc
This example demonstrates how to use actions. It uses FetchAction to fetch source files for all versions of sys-apps/paludis that support fetching.
#include <paludis/paludis.hh>
#include "example_command_line.hh"
#include <iostream>
using namespace paludis;
using namespace examples;
using std::cout;
using std::endl;
int main(int argc, char * argv[])
{
int exit_status(0);
try
{
CommandLine::get_instance()->run(argc, argv,
"example_action", "EXAMPLE_ACTION_OPTIONS", "EXAMPLE_ACTION_CMDLINE");
std::tr1::shared_ptr<Environment> env(EnvironmentFactory::get_instance()->create(
CommandLine::get_instance()->a_environment.argument()));
std::tr1::shared_ptr<const PackageIDSequence> ids((*env)[selection::AllVersionsSorted(
generator::Matches(make_package_dep_spec().package(QualifiedPackageName("sys-apps/paludis")), MatchPackageOptions()))]);
for (PackageIDSet::ConstIterator i(ids->begin()), i_end(ids->end()) ;
i != i_end ; ++i)
{
SupportsActionTest<FetchAction> supports_fetch_action;
if (! (*i)->supports_action(supports_fetch_action))
{
cout << "ID '" << **i << "' does not support the fetch action." << endl;
}
else
{
cout << "ID '" << **i << "' supports the fetch action, trying to fetch:" << endl;
FetchAction fetch_action(make_named_values<FetchActionOptions>(
value_for<n::exclude_unmirrorable>(false),
value_for<n::fetch_unneeded>(false),
value_for<n::maybe_output_deviant>(make_null_shared_ptr()),
value_for<n::safe_resume>(true)
));
try
{
(*i)->perform_action(fetch_action);
}
catch (const FetchActionError & e)
{
exit_status |= 1;
cout << "Caught FetchActionError, with the following details:" << endl;
for (Sequence<FetchActionFailure>::ConstIterator f(e.failures()->begin()), f_end(e.failures()->end()) ;
f != f_end ; ++f)
{
cout << " * File '" << f->target_file() << "': ";
bool need_comma(false);
if (f->requires_manual_fetching())
{
cout << "requires manual fetching";
need_comma = true;
}
if (f->failed_automatic_fetching())
{
if (need_comma)
cout << ", ";
cout << "failed automatic fetching";
need_comma = true;
}
if (! f->failed_integrity_checks().empty())
{
if (need_comma)
cout << ", ";
cout << "failed integrity checks: " << f->failed_integrity_checks();
need_comma = true;
}
}
cout << endl;
}
}
cout << endl;
}
}
catch (const Exception & e)
{
cout << endl;
cout << "Unhandled exception:" << endl
<< " * " << e.backtrace("\n * ")
<< e.message() << " (" << e.what() << ")" << endl;
return EXIT_FAILURE;
}
catch (const std::exception & e)
{
cout << endl;
cout << "Unhandled exception:" << endl
<< " * " << e.what() << endl;
return EXIT_FAILURE;
}
catch (...)
{
cout << endl;
cout << "Unhandled exception:" << endl
<< " * Unknown exception type. Ouch..." << endl;
return EXIT_FAILURE;
}
return exit_status;
}