1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
|
/*
* $Header: /cvsroot/arc/arc/arcadd.c,v 1.4 2005/10/12 15:22:18 highlandsun Exp $
*/
/*
* ARC - Archive utility - ARCADD
*
* Version 3.40, created on 06/18/86 at 13:10:18
*
* (C) COPYRIGHT 1985,86 by System Enhancement Associates; ALL RIGHTS RESERVED
*
* By: Thom Henderson
*
* Description: This file contains the routines used to add files to an archive.
*
* Language: Computer Innovations Optimizing C86
*/
#include <stdio.h>
#include "arc.h"
#if _MTS
#include <mts.h>
#include <ctype.h>
#endif
#include <string.h>
#if BSD
#include <strings.h>
#endif
static int addfile();
int readhdr(), unlink();
#if UNIX
int izadir();
#endif
VOID writehdr(), filecopy(), getstamp();
VOID pack(), closearc(), openarc(), arcdie();
#ifndef __STDC__
char *malloc(), *realloc(); /* memory allocators */
#ifndef _AIX
VOID free();
#endif
#endif
VOID
addarc(num, arg, move, update, fresh) /* add files to archive */
int num; /* number of arguments */
char *arg[]; /* pointers to arguments */
int move; /* true if moving file */
int update; /* true if updating */
int fresh; /* true if freshening */
{
char *d, *dir(); /* directory junk */
char buf[STRLEN]; /* pathname buffer */
char **path; /* pointer to pointers to paths */
char **name; /* pointer to pointers to names */
int nfiles = 0; /* number of files in lists */
int notemp; /* true until a template works */
int nowork = 1; /* true until files are added */
char *i; /* string indexing junk */
int n; /* index */
#if MSDOS
unsigned int coreleft(); /* remaining memory reporter */
#endif
int addbunch();
if (num < 1) { /* if no files named */
num = 1; /* then fake one */
#if DOS
arg[0] = "*.*"; /* add everything */
#endif
#if UNIX
arg[0] = "*";
#endif
#if _MTS
arg[0] = "?";
#endif
}
path = (char **) malloc(sizeof(char **));
name = (char **) malloc(sizeof(char **));
for (n = 0; n < num; n++) { /* for each template supplied */
strcpy(buf, arg[n]); /* get ready to fix path */
#if !_MTS
if (!(i = rindex(buf, '\\')))
if (!(i = rindex(buf, '/')))
if (!(i = rindex(buf, ':')))
i = buf - 1;
#else
if (!(i = rindex(buf, sepchr[0])))
if (buf[0] != tmpchr[0])
i = buf - 1;
else
i = buf;
#endif
i++; /* pointer to where name goes */
notemp = 1; /* reset files flag */
for (d = dir(arg[n]); d; d = dir(NULL)) {
notemp = 0; /* template is giving results */
nfiles++; /* add each matching file */
path = (char **) realloc(path, nfiles * sizeof(char **));
name = (char **) realloc(name, nfiles * sizeof(char **));
strcpy(i, d); /* put name in path */
path[nfiles - 1] = malloc(strlen(buf) + 1);
strcpy(path[nfiles - 1], buf);
name[nfiles - 1] = d; /* save name */
#if MSDOS
if (coreleft() < 5120) {
nfiles = addbunch(nfiles, path, name, move, update, fresh);
nowork = nowork && !nfiles;
while (nfiles) {
free(path[--nfiles]);
free(name[nfiles]);
}
free(path);
free(name);
path = name = NULL;
}
#endif
}
if (notemp && warn)
printf("No files match: %s\n", arg[n]);
}
if (nfiles) {
nfiles = addbunch(nfiles, path, name, move, update, fresh);
nowork = nowork && !nfiles;
while (nfiles) {
free(path[--nfiles]);
free(name[nfiles]);
}
free(path);
free(name);
}
if (nowork && warn)
printf("No files were added.\n");
}
int
addbunch(nfiles, path, name, move, update, fresh) /* add a bunch of files */
int nfiles; /* number of files to add */
char **path; /* pointers to pathnames */
char **name; /* pointers to filenames */
int move; /* true if moving file */
int update; /* true if updating */
int fresh; /* true if freshening */
{
int m, n; /* indices */
char *d; /* swap pointer */
struct heads hdr; /* file header data storage */
for (n = 0; n < nfiles - 1; n++) { /* sort the list of names */
for (m = n + 1; m < nfiles; m++) {
if (strcmp(name[n], name[m]) > 0) {
d = path[n];
path[n] = path[m];
path[m] = d;
d = name[n];
name[n] = name[m];
name[m] = d;
}
}
}
for (n = 0; n < nfiles - 1;) { /* consolidate the list of names */
if (!strcmp(path[n], path[n + 1]) /* if duplicate names */
||!strcmp(path[n], arcname) /* or this archive */
#if UNIX
||izadir(path[n]) /* or a directory */
#endif
||!strcmp(path[n], newname) /* or the new version */
||!strcmp(path[n], bakname)) { /* or its backup */
free(path[n]); /* then forget the file */
free(name[n]);
for (m = n; m < nfiles - 1; m++) {
path[m] = path[m + 1];
name[m] = name[m + 1];
}
nfiles--;
} else
n++; /* else test the next one */
}
if (!strcmp(path[n], arcname) /* special check for last file */
||!strcmp(path[n], newname) /* courtesy of Rick Moore */
#if UNIX
||izadir(path[n])
#endif
|| !strcmp(path[n], bakname)) {
free(path[n]);
free(name[n]);
nfiles--;
}
if (!nfiles) /* make sure we got some */
return 0;
for (n = 0; n < nfiles - 1; n++) { /* watch out for duplicate
* names */
if (!strcmp(name[n], name[n + 1]))
arcdie("Duplicate filenames:\n %s\n %s", path[n], path[n + 1]);
}
openarc(1); /* open archive for changes */
for (n = 0; n < nfiles;) { /* add each file in the list */
if (addfile(path[n], name[n], update, fresh) < 0) {
free(path[n]); /* remove this name if */
free(name[n]); /* it wasn't added */
for (m = n; m < nfiles-1 ; m++) {
path[m] = path[m+1];
name[m] = name[m+1];
}
nfiles--;
} else n++;
}
/* now we must copy over all files that follow our additions */
while (readhdr(&hdr, arc)) { /* while more entries to copy */
writehdr(&hdr, new);
filecopy(arc, new, hdr.size);
}
hdrver = 0; /* archive EOF type */
writehdr(&hdr, new); /* write out our end marker */
closearc(1); /* close archive after changes */
if (move) { /* if this was a move */
for (n = 0; n < nfiles; n++) { /* then delete each file
* added */
if (unlink(path[n]) && warn) {
printf("Cannot unsave %s\n", path[n]);
nerrs++;
}
}
}
return nfiles; /* say how many were added */
}
static int
addfile(path, name, update, fresh) /* add named file to archive */
char *path; /* path name of file to add */
char *name; /* name of file to add */
int update; /* true if updating */
int fresh; /* true if freshening */
{
struct heads nhdr; /* data regarding the new file */
struct heads ohdr; /* data regarding an old file */
FILE *f, *fopen(); /* file to add, opener */
long starts, ftell(); /* file locations */
int upd = 0;/* true if replacing an entry */
#if !_MTS
if (!(f = fopen(path, OPEN_R)))
#else
if (image)
f = fopen(path, OPEN_R);
else
f = fopen(path, "r");
if (!f)
#endif
{
if (warn) {
printf("Cannot read file: %s\n", path);
nerrs++;
}
return(-1);
}
#if !DOS
if (strlen(name) >= FNLEN) {
if (warn) {
char buf[STRLEN];
printf("WARNING: File %s name too long!\n", name);
name[FNLEN-1]='\0';
while(1) {
char *dummy;
printf(" Truncate to %s (y/n)? ", name);
fflush(stdout);
dummy = fgets(buf, STRLEN, stdin);
*buf = toupper(*buf);
if (*buf == 'Y' || *buf == 'N')
break;
}
if (*buf == 'N') {
printf("Skipping...\n");
fclose(f);
return(-1);
}
}
else {
if (note)
printf("Skipping file: %s - name too long.\n",
name);
fclose(f);
return(-1);
}
}
#endif
strcpy(nhdr.name, name);/* save name */
nhdr.size = 0; /* clear out size storage */
nhdr.crc = 0; /* clear out CRC check storage */
#if !_MTS
getstamp(f, &nhdr.date, &nhdr.time);
#else
{
int inlen;
struct GDDSECT *region;
region=gdinfo(f->_fd._fdub);
inlen=region->GDINLEN;
buf=malloc(inlen); /* maximum line length */
setbuffer(f,buf,inlen);
f->_mods|=_NOIC; /* Don't do "$continue with" */
f->_mods&=~_IC; /* turn it off, if set... */
}
getstamp(path, &nhdr.date, &nhdr.time);
#endif
/* position archive to spot for new file */
if (arc) { /* if adding to existing archive */
starts = ftell(arc); /* where are we? */
while (readhdr(&ohdr, arc)) { /* while more files to check */
if (!strcmp(ohdr.name, nhdr.name)) {
upd = 1; /* replace existing entry */
if (update || fresh) { /* if updating or
* freshening */
if (nhdr.date < ohdr.date
|| (nhdr.date == ohdr.date && nhdr.time <= ohdr.time)) {
fseek(arc, starts, 0);
fclose(f);
return(0);/* skip if !newer */
}
}
}
if (strcmp(ohdr.name, nhdr.name) >= 0)
break; /* found our spot */
writehdr(&ohdr, new); /* entry preceeds update;
* keep it */
filecopy(arc, new, ohdr.size);
starts = ftell(arc); /* now where are we? */
}
if (upd) { /* if an update */
if (note) {
printf("Updating file: %-12s ", name);
fflush(stdout);
}
fseek(arc, ohdr.size, 1);
} else if (fresh) { /* else if freshening */
fseek(arc, starts, 0); /* then do not add files */
fclose(f);
return(0);
} else { /* else adding a new file */
if (note) {
printf("Adding file: %-12s ", name);
fflush(stdout);
}
fseek(arc, starts, 0); /* reset for next time */
}
} else { /* no existing archive */
if (fresh) { /* cannot freshen nothing */
fclose(f);
return(0);
} else if (note) { /* else adding a file */
printf("Adding file: %-12s ", name);
fflush(stdout);
}
}
starts = ftell(new); /* note where header goes */
hdrver = ARCVER; /* anything but end marker */
writehdr(&nhdr, new); /* write out header skeleton */
#if _MTS
atoe(nhdr.name, FNLEN); /* writehdr translated this... */
#endif
pack(f, new, &nhdr); /* pack file into archive */
fseek(new, starts, 0); /* move back to header skeleton */
writehdr(&nhdr, new); /* write out real header */
fseek(new, nhdr.size, 1); /* skip over data to next header */
fclose(f); /* all done with the file */
return(0);
}
|