diff options
author | 2006-10-11 20:56:59 +0000 | |
---|---|---|
committer | 2006-10-11 20:56:59 +0000 | |
commit | e3b86134db7baada7b3a1e779e7d6d046ab53a1a (patch) | |
tree | 6acb3c0de68e1b95dbba8f0e00f770b8f31e4bac /0.8.0/paludis/tasks/sync_task.hh | |
parent | ab9cdb1150d97449e857cd55fe706377c9ab2422 (diff) | |
download | paludis-e3b86134db7baada7b3a1e779e7d6d046ab53a1a.tar.gz paludis-e3b86134db7baada7b3a1e779e7d6d046ab53a1a.tar.xz |
Tag release 0.8.00.8.0
Diffstat (limited to '0.8.0/paludis/tasks/sync_task.hh')
-rw-r--r-- | 0.8.0/paludis/tasks/sync_task.hh | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/0.8.0/paludis/tasks/sync_task.hh b/0.8.0/paludis/tasks/sync_task.hh new file mode 100644 index 000000000..baedfd76c --- /dev/null +++ b/0.8.0/paludis/tasks/sync_task.hh @@ -0,0 +1,79 @@ +/* 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 + */ + +#ifndef PALUDIS_GUARD_PALUDIS_TASKS_SYNC_TASK_HH +#define PALUDIS_GUARD_PALUDIS_TASKS_SYNC_TASK_HH 1 + +#include <paludis/util/instantiation_policy.hh> +#include <paludis/util/private_implementation_pattern.hh> +#include <paludis/dep_list.hh> + +namespace paludis +{ + class Environment; + class SyncFailedError; + + class PALUDIS_VISIBLE SyncTask : + PrivateImplementationPattern<SyncTask>, + InstantiationPolicy<SyncTask, instantiation_method::NonCopyableTag> + { + protected: + ///\name Basic operations + ///\{ + + SyncTask(Environment * const env); + + ///\} + + public: + ///\name Basic operations + ///\{ + + virtual ~SyncTask(); + + ///\} + + ///\name Add targets + ///\{ + + void add_target(const std::string &); + + ///\} + + ///\name Event callbacks + ///\{ + + virtual void on_sync_all_pre() = 0; + virtual void on_sync_pre(const RepositoryName &) = 0; + virtual void on_sync_post(const RepositoryName &) = 0; + virtual void on_sync_skip(const RepositoryName &) = 0; + virtual void on_sync_fail(const RepositoryName &, const SyncFailedError &) = 0; + virtual void on_sync_succeed(const RepositoryName &) = 0; + virtual void on_sync_all_post() = 0; + + ///\} + + /** + * Run the task. + */ + void execute(); + }; +} + +#endif |