date and time created 91/01/17 18:23:46 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 18 Jan 1991 10:23:46 +0000 (02:23 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 18 Jan 1991 10:23:46 +0000 (02:23 -0800)
SCCS-vsn: usr.bin/ar/extract.c 5.1

usr/src/usr.bin/ar/extract.c [new file with mode: 0644]

diff --git a/usr/src/usr.bin/ar/extract.c b/usr/src/usr.bin/ar/extract.c
new file mode 100644 (file)
index 0000000..9659248
--- /dev/null
@@ -0,0 +1,102 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Hugh Smith at The University of Guelph.
+ *
+ * %sccs.include.redist.c%
+ */
+
+#ifndef lint
+static char sccsid[] = "@(#)extract.c  5.1 (Berkeley) %G%";
+#endif /* not lint */
+
+#include <sys/param.h>
+#include <sys/time.h>
+#include <sys/stat.h>
+#include <sys/errno.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <dirent.h>
+#include <stdio.h>
+#include "archive.h"
+
+extern CHDR chdr;                      /* converted header */
+extern char *archive;                  /* archive name */
+
+/*
+ * extract --
+ *     Extract files from the named archive - if member names given only
+ *     extract those members otherwise extract all members.  If 'o' option
+ *     selected modify date of newly created file to be same as archive
+ *     members date otherwise date is time of extraction.  Does not modify
+ *     archive.
+ */
+extract(argv)
+       char **argv;
+{
+       register int afd, all, tfd;
+       struct timeval tv[2];
+       struct stat sb;
+       CF cf;
+       int eval;
+       char *file, *rname();
+
+       eval = 0;
+       tv[0].tv_usec = tv[1].tv_usec = 0;
+
+       afd = open_archive(O_RDONLY);
+
+       SETCF(afd, archive, 0, 0, RPAD);
+       for (all = !*argv; get_header(afd);) {
+               if (all)
+                       file = chdr.name;
+               else {
+                       file = *argv;
+                       if (!files(argv)) {
+                               SKIP(afd, chdr.size, archive);
+                               continue;
+                       }
+               }
+
+               if (options & AR_U && !stat(file, &sb) &&
+                   sb.st_mtime > chdr.date)
+                       continue;
+
+               if ((tfd = open(file, O_WRONLY|O_CREAT|O_TRUNC, S_IWUSR)) < 0) {
+                       (void)fprintf(stderr, "ar: %s: %s.\n",
+                           file, strerror(errno));
+                       SKIP(afd, chdr.size, archive);
+                       eval = 1;
+                       continue;
+               }
+
+               if (options & AR_V)
+                       (void)printf("x - %s\n", rname(file));
+
+               cf.wfd = tfd;
+               cf.wname = file;
+               copyfile(&cf, chdr.size);
+
+               if (fchmod(tfd, (short)chdr.mode)) {
+                       (void)fprintf(stderr, "ar: %s: chmod: %s\n",
+                           file, strerror(errno));
+                       eval = 1;
+               }
+               if (options & AR_O) {
+                       tv[0].tv_sec = tv[1].tv_sec = chdr.date;
+                       if (utimes(file, tv)) {
+                               (void)fprintf(stderr, "ar: %s: utimes: %s\n",
+                                   file, strerror(errno));
+                               eval = 1;
+                       }
+               }
+               (void)close(tfd);
+               if (!all && !*argv)
+                       break;
+       }
+       ORPHANS;
+       close_archive(afd);
+       return(eval);
+}