1996-01-06 02:12:55 +08:00
|
|
|
#include <fcntl.h>
|
1996-01-23 05:12:55 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
1996-01-09 03:21:55 +08:00
|
|
|
#include <unistd.h>
|
1996-01-06 02:12:55 +08:00
|
|
|
|
|
|
|
#include "install.h"
|
|
|
|
#include "lib/rpmlib.h"
|
1996-01-09 03:21:55 +08:00
|
|
|
#include "messages.h"
|
1996-02-15 04:56:22 +08:00
|
|
|
#include "query.h"
|
1996-01-06 02:12:55 +08:00
|
|
|
|
1996-01-23 05:12:55 +08:00
|
|
|
static int hashesPrinted = 0;
|
|
|
|
|
|
|
|
static void printHash(const unsigned long amount, const unsigned long total);
|
|
|
|
static void printPercent(const unsigned long amount, const unsigned long total);
|
|
|
|
|
|
|
|
static void printHash(const unsigned long amount, const unsigned long total) {
|
|
|
|
int hashesNeeded;
|
|
|
|
|
|
|
|
if (hashesPrinted != 50) {
|
|
|
|
hashesNeeded = 50 * (((float) amount) / total);
|
|
|
|
while (hashesNeeded > hashesPrinted) {
|
|
|
|
printf("#");
|
|
|
|
hashesPrinted++;
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
hashesPrinted = hashesNeeded;
|
|
|
|
|
|
|
|
if (hashesPrinted == 50)
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void printPercent(const unsigned long amount, const unsigned long total)
|
|
|
|
{
|
|
|
|
printf("%%%% %f\n", (float) (((float) amount) / total) * 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
void doInstall(char * prefix, char * arg, int installFlags, int interfaceFlags) {
|
1996-01-09 03:21:55 +08:00
|
|
|
rpmdb db;
|
|
|
|
int fd;
|
|
|
|
int mode, rc;
|
1996-01-23 05:12:55 +08:00
|
|
|
char * chptr;
|
|
|
|
notifyFunction fn;
|
1996-01-09 03:21:55 +08:00
|
|
|
|
1996-01-23 05:12:55 +08:00
|
|
|
hashesPrinted = 0;
|
|
|
|
|
|
|
|
if (installFlags & INSTALL_TEST)
|
1996-01-09 03:21:55 +08:00
|
|
|
mode = O_RDONLY;
|
|
|
|
else
|
|
|
|
mode = O_RDWR | O_EXCL;
|
1996-01-23 05:12:55 +08:00
|
|
|
|
|
|
|
if (interfaceFlags & RPMINSTALL_PERCENT)
|
|
|
|
fn = printPercent;
|
|
|
|
else if (interfaceFlags & RPMINSTALL_HASH)
|
|
|
|
fn = printHash;
|
|
|
|
else
|
|
|
|
fn = NULL;
|
1996-01-09 03:21:55 +08:00
|
|
|
|
|
|
|
if (!rpmdbOpen(prefix, &db, mode, 0644)) {
|
1996-01-10 05:51:53 +08:00
|
|
|
/* try opening it O_CREAT */
|
|
|
|
mode |= O_CREAT;
|
|
|
|
if (!rpmdbOpen(prefix, &db, mode, 0644)) {
|
|
|
|
fprintf(stderr, "error: cannot open %s/var/lib/rpm/packages.rpm\n",
|
|
|
|
prefix);
|
|
|
|
exit(1);
|
|
|
|
}
|
1996-01-09 03:21:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message(MESS_DEBUG, "installing %s\n", arg);
|
|
|
|
fd = open(arg, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
rpmdbClose(db);
|
|
|
|
fprintf(stderr, "error: cannot open %s\n", arg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1996-01-23 05:12:55 +08:00
|
|
|
if (interfaceFlags & RPMINSTALL_PERCENT)
|
|
|
|
printf("%%f %s\n", arg);
|
|
|
|
else if (isVerbose() && (interfaceFlags & RPMINSTALL_HASH)) {
|
|
|
|
chptr = strrchr(arg, '/');
|
|
|
|
if (!chptr)
|
|
|
|
chptr = arg;
|
|
|
|
else
|
|
|
|
chptr++;
|
|
|
|
|
|
|
|
printf("%-28s", chptr);
|
|
|
|
} else if (isVerbose())
|
|
|
|
printf("Installing %s\n", arg);
|
|
|
|
|
|
|
|
rc = rpmInstallPackage(prefix, db, fd, installFlags, fn);
|
1996-01-09 03:21:55 +08:00
|
|
|
if (rc == 1) {
|
1996-01-14 06:02:24 +08:00
|
|
|
fprintf(stderr, "error: %s cannot be installed\n", arg);
|
1996-01-09 03:21:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
rpmdbClose(db);
|
1996-01-06 02:12:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void doUninstall(char * prefix, char * arg, int test, int uninstallFlags) {
|
|
|
|
rpmdb db;
|
|
|
|
dbIndexSet matches;
|
|
|
|
int i;
|
1996-01-09 03:21:55 +08:00
|
|
|
int mode;
|
1996-02-15 04:56:22 +08:00
|
|
|
int rc;
|
|
|
|
int count;
|
1996-01-06 02:12:55 +08:00
|
|
|
|
1996-01-09 03:21:55 +08:00
|
|
|
if (test)
|
|
|
|
mode = O_RDONLY;
|
|
|
|
else
|
|
|
|
mode = O_RDWR | O_EXCL;
|
|
|
|
|
|
|
|
if (!rpmdbOpen(prefix, &db, mode, 0644)) {
|
1996-01-06 02:12:55 +08:00
|
|
|
fprintf(stderr, "cannot open %s/var/lib/rpm/packages.rpm\n", prefix);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1996-02-15 04:56:22 +08:00
|
|
|
rc = findPackageByLabel(db, arg, &matches);
|
|
|
|
if (rc == 1)
|
1996-01-06 02:12:55 +08:00
|
|
|
fprintf(stderr, "package %s is not installed\n", arg);
|
1996-02-15 04:56:22 +08:00
|
|
|
else if (rc == 2)
|
|
|
|
fprintf(stderr, "error searching for package %s\n", arg);
|
|
|
|
else {
|
|
|
|
count = 0;
|
|
|
|
for (i = 0; i < matches.count; i++)
|
|
|
|
if (matches.recs[i].recOffset) count++;
|
|
|
|
|
|
|
|
if (count > 1) {
|
1996-01-06 02:12:55 +08:00
|
|
|
fprintf(stderr, "\"%s\" specifies multiple packages\n", arg);
|
|
|
|
}
|
1996-01-06 08:05:14 +08:00
|
|
|
else {
|
|
|
|
for (i = 0; i < matches.count; i++) {
|
1996-02-15 04:56:22 +08:00
|
|
|
if (matches.recs[i].recOffset) {
|
|
|
|
message(MESS_DEBUG, "uninstalling record number %d\n",
|
|
|
|
matches.recs[i].recOffset);
|
|
|
|
rpmRemovePackage(prefix, db, matches.recs[i].recOffset,
|
|
|
|
test);
|
|
|
|
}
|
1996-01-06 08:05:14 +08:00
|
|
|
}
|
1996-01-06 02:12:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
freeDBIndexRecord(matches);
|
|
|
|
}
|
|
|
|
|
|
|
|
rpmdbClose(db);
|
|
|
|
}
|
1996-02-15 04:09:14 +08:00
|
|
|
|
|
|
|
int doSourceInstall(char * prefix, char * arg, char ** specFile) {
|
|
|
|
int fd;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
fd = open(arg, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
fprintf(stderr, "error: cannot open %s\n", arg);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isVerbose())
|
|
|
|
printf("Installing %s\n", arg);
|
|
|
|
|
|
|
|
rc = rpmInstallSourcePackage(prefix, fd, specFile);
|
|
|
|
if (rc == 1) {
|
|
|
|
fprintf(stderr, "error: %s cannot be installed\n", arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|