summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-06-20 21:56:43 -0400
committerKristian Høgsberg <krh@redhat.com>2008-06-20 21:56:43 -0400
commit8a813368430e6773afbfd9c34a7da9454d4799ae (patch)
treeb833546f2217aa8640b560ca6d178826f834d966 /src
parent4d070f05b5e5616c238302e0e49877e7bff2c2fe (diff)
Introduce install/remove iterators.
These iterator constructors lets you pass in two sets and creates an iterator for the packages to remove or the packages to install. The iterators will step through the packages in a sequence that respects the pre, post, preun and postun modifiers. Right now, the install order isn't actually implemented, this patch just implements the API changes and updates the applications.
Diffstat (limited to 'src')
-rw-r--r--src/main.c135
1 files changed, 71 insertions, 64 deletions
diff --git a/src/main.c b/src/main.c
index ec1820a..40e7674 100644
--- a/src/main.c
+++ b/src/main.c
@@ -578,74 +578,86 @@ command_import_rpms(int argc, const char *argv[])
return 0;
}
-static void
-download_package(enum razor_diff_action action,
- struct razor_package *package,
- const char *name,
- const char *version,
- const char *arch,
- void *data)
+static const char *
+rpm_filename(const char *name, const char *version, const char *arch)
{
- char file[PATH_MAX], url[256];
- const char *v;
- int *errors = data;
-
- if (action != RAZOR_DIFF_ACTION_ADD)
- return;
-
- /* Skip epoch */
+ static char file[PATH_MAX];
+ const char *v;
+
+ /* Skip epoch */
v = strchr(version, ':');
- if (v != NULL)
- v = v + 1;
- else
+ if (v != NULL)
+ v = v + 1;
+ else
v = version;
- snprintf(url, sizeof url,
- "%s/Packages/%s-%s.%s.rpm", yum_url, name, v, arch);
- snprintf(file, sizeof file,
- "rpms/%s-%s.%s.rpm", name, v, arch);
- if (download_if_missing(url, file) < 0)
- (*errors)++;
-}
+ snprintf(file, sizeof file, "%s-%s.%s.rpm", name, v, arch);
-static void
-install_package(enum razor_diff_action action,
- struct razor_package *package,
- const char *name,
- const char *version,
- const char *arch,
- void *data)
-{
- const char *v, *root = data;
- char file[PATH_MAX];
- struct razor_rpm *rpm;
+ return file;
+}
- if (action == RAZOR_DIFF_ACTION_REMOVE) {
- printf("removing %s %s not handled\n", name, version);
- return;
+static int
+download_packages(struct razor_set *system, struct razor_set *next)
+{
+ struct razor_package_iterator *pi;
+ struct razor_package *package;
+ const char *name, *version, *arch;
+ char file[PATH_MAX], url[256];
+ int errors;
+
+ pi = razor_set_create_install_iterator(system, next);
+ errors = 0;
+ while (razor_package_iterator_next(pi, &package,
+ &name, &version, &arch)) {
+ snprintf(url, sizeof url,
+ "%s/Packages/%s",
+ yum_url, rpm_filename(name, version, arch));
+ snprintf(file, sizeof file,
+ "rpms/%s", rpm_filename(name, version, arch));
+ if (download_if_missing(url, file) < 0)
+ errors++;
}
+ razor_package_iterator_destroy(pi);
- /* Skip epoch */
- v = strchr(version, ':');
- if (v != NULL)
- v = v + 1;
- else
- v = version;
+ if (errors > 0) {
+ fprintf(stderr, "failed to download %d packages\n", errors);
+ return -1;
+ }
- printf("install %s %s\n", name, v);
- snprintf(file, sizeof file, "rpms/%s-%s.%s.rpm", name, v, arch);
+ return 0;
+}
- rpm = razor_rpm_open(file);
- if (rpm == NULL) {
- fprintf(stderr, "failed to open rpm %s\n", file);
- return;
- }
- if (razor_rpm_install(rpm, root) < 0) {
- fprintf(stderr,
- "failed to install rpm %s\n", file);
- return;
+static int
+install_packages(struct razor_set *system, struct razor_set *next)
+{
+ struct razor_package_iterator *pi;
+ struct razor_package *package;
+ struct razor_rpm *rpm;
+ const char *name, *version, *arch;
+ char file[PATH_MAX];
+
+ pi = razor_set_create_install_iterator(system, next);
+ while (razor_package_iterator_next(pi, &package,
+ &name, &version, &arch)) {
+ printf("install %s-%s\n", name, version);
+
+ snprintf(file, sizeof file,
+ "rpms/%s", rpm_filename(name, version, arch));
+ rpm = razor_rpm_open(file);
+ if (rpm == NULL) {
+ fprintf(stderr, "failed to open rpm %s\n", file);
+ return -1;
+ }
+ if (razor_rpm_install(rpm, install_root) < 0) {
+ fprintf(stderr,
+ "failed to install rpm %s\n", file);
+ return -1;
+ }
+ razor_rpm_close(rpm);
}
- razor_rpm_close(rpm);
+ razor_package_iterator_destroy(pi);
+
+ return 0;
}
static int
@@ -692,17 +704,12 @@ command_install(int argc, const char *argv[])
return 1;
}
- errors = 0;
- razor_set_diff(system, next, download_package, &errors);
- if (errors > 0) {
- fprintf(stderr, "failed to download %d packages\n", errors);
+ if (download_packages(system, next) < 0) {
razor_root_close(root);
return 1;
}
- /* FIXME: We need to figure out the right install order here,
- * so the post and pre scripts can run. */
- razor_set_diff(system, next, install_package, (void *) install_root);
+ install_packages(system, next);
razor_set_destroy(next);
razor_set_destroy(upstream);