/* * Copyright 1993, 1995 Christopher Seiwald. * * This file is part of Jam - see jam.c for Copyright information. */ # include "jam.h" # include "filesys.h" # if defined(unix) || defined(AMIGA) # if defined(_SEQUENT_) || defined(__DGUX__) || \ defined(M_XENIX) || defined(__ISC) # define PORTAR 1 # endif #ifdef NeXT /* need unistd for rhapsody's proper lseek */ # include <sys/dir.h> # include <unistd.h> #else # include <dirent.h> #endif # if defined (COHERENT) && defined (_I386) # include <arcoff.h> # else # if defined( __MVS__ ) || defined( __OPENNT ) #define ARMAG "!<arch>\n" #define SARMAG 8 #define ARFMAG "`\n" struct ar_hdr /* archive file member header - printable ascii */ { char ar_name[16]; /* file member name - `/' terminated */ char ar_date[12]; /* file member date - decimal */ char ar_uid[6]; /* file member user id - decimal */ char ar_gid[6]; /* file member group id - decimal */ char ar_mode[8]; /* file member mode - octal */ char ar_size[10]; /* file member size - decimal */ char ar_fmag[2]; /* ARFMAG - string to end header */ }; # else # if !defined( __QNX__ ) && !defined( __BEOS__ ) # include <ar.h> # endif /* QNX */ # endif /* MVS */ # endif /* COHERENT */ /* * fileunix.c - manipulate file names and scan directories on UNIX/AmigaOS * * External routines: * * file_dirscan() - scan a directory for files * file_time() - get timestamp of file, if not done by file_dirscan() * file_archscan() - scan an archive for files * * File_dirscan() and file_archscan() call back a caller provided function * for each file found. A flag to this callback function lets file_dirscan() * and file_archscan() indicate that a timestamp is being provided with the * file. If file_dirscan() or file_archscan() do not provide the file's * timestamp, interested parties may later call file_time(). * * 04/08/94 (seiwald) - Coherent/386 support added. * 12/19/94 (mikem) - solaris string table insanity support * 02/14/95 (seiwald) - parse and build /xxx properly * 05/03/96 (seiwald) - split into pathunix.c * 11/21/96 (peterk) - BEOS does not have Unix-style archives */ /* * file_dirscan() - scan a directory for files */ void file_dirscan( dir, func ) char *dir; void (*func)(); { FILENAME f; DIR *d; #ifdef NeXT struct direct *dirent; #else struct dirent *dirent; #endif char filename[ MAXJPATH ]; /* First enter directory itself */ memset( (char *)&f, '\0', sizeof( f ) ); f.f_dir.ptr = dir; f.f_dir.len = strlen(dir); dir = *dir ? dir : "."; /* Special case / : enter it */ if( f.f_dir.len == 1 && f.f_dir.ptr[0] == '/' ) (*func)( dir, 0 /* not stat()'ed */, (time_t)0 ); /* Now enter contents of directory */ if( !( d = opendir( dir ) ) ) return; if( DEBUG_BINDSCAN ) printf( "scan directory %s\n", dir ); while( dirent = readdir( d ) ) { # ifdef old_sinix /* Broken structure definition on sinix. */ f.f_base.ptr = dirent->d_name - 2; # else f.f_base.ptr = dirent->d_name; # endif f.f_base.len = strlen( f.f_base.ptr ); file_build( &f, filename, 0 ); (*func)( filename, 0 /* not stat()'ed */, (time_t)0 ); } closedir( d ); } /* * file_time() - get timestamp of file, if not done by file_dirscan() */ int file_time( filename, time ) char *filename; time_t *time; { struct stat statbuf; if( stat( filename, &statbuf ) < 0 ) return -1; *time = statbuf.st_mtime; return 0; } /* * file_archscan() - scan an archive for files */ # ifndef AIAMAG /* God-fearing UNIX */ # define SARFMAG 2 # define SARHDR sizeof( struct ar_hdr ) void file_archscan( archive, func ) char *archive; void (*func)(); { # if !defined( __QNX__ ) && !defined( __BEOS__ ) struct ar_hdr ar_hdr; char buf[ MAXJPATH ]; long offset; char *string_table = 0; int fd; if( ( fd = open( archive, O_RDONLY, 0 ) ) < 0 ) return; if( read( fd, buf, SARMAG ) != SARMAG || strncmp( ARMAG, buf, SARMAG ) ) { close( fd ); return; } offset = SARMAG; if( DEBUG_BINDSCAN ) printf( "scan archive %s\n", archive ); while( read( fd, &ar_hdr, SARHDR ) == SARHDR && !memcmp( ar_hdr.ar_fmag, ARFMAG, SARFMAG ) ) { char lar_name[256]; long lar_date; long lar_size; long lar_offset; char *c; char *src, *dest; strncpy( lar_name, ar_hdr.ar_name, sizeof(ar_hdr.ar_name) ); sscanf( ar_hdr.ar_date, "%ld", &lar_date ); sscanf( ar_hdr.ar_size, "%ld", &lar_size ); if (ar_hdr.ar_name[0] == '/') { if (ar_hdr.ar_name[1] == '/') { /* this is the "string table" entry of the symbol table, ** which holds strings of filenames that are longer than ** 15 characters (ie. don't fit into a ar_name */ string_table = malloc(lar_size); lseek(fd, offset + SARHDR, 0); if (read(fd, string_table, lar_size) != lar_size) printf("error reading string table\n"); } else if (string_table && ar_hdr.ar_name[1] != ' ') { /* Long filenames are recognized by "/nnnn" where nnnn is ** the offset of the string in the string table represented ** in ASCII decimals. */ dest = lar_name; lar_offset = atoi(lar_name + 1); src = &string_table[lar_offset]; while (*src != '/') *dest++ = *src++; *dest = '/'; } } c = lar_name - 1; while( *++c != ' ' && *c != '/' ) ; *c = '\0'; if ( DEBUG_BINDSCAN ) printf( "archive name %s found\n", lar_name ); sprintf( buf, "%s(%s)", archive, lar_name ); (*func)( buf, 1 /* time valid */, (time_t)lar_date ); offset += SARHDR + ( ( lar_size + 1 ) & ~1 ); lseek( fd, offset, 0 ); } if (string_table) free(string_table); close( fd ); # endif /* QNX */ } # else /* AIAMAG - RS6000 AIX */ void file_archscan( archive, func ) char *archive; void (*func)(); { struct fl_hdr fl_hdr; struct { struct ar_hdr hdr; char pad[ 256 ]; } ar_hdr ; char buf[ MAXJPATH ]; long offset; int fd; if( ( fd = open( archive, O_RDONLY, 0 ) ) < 0 ) return; if( read( fd, (char *)&fl_hdr, FL_HSZ ) != FL_HSZ || strncmp( AIAMAG, fl_hdr.fl_magic, SAIAMAG ) ) { close( fd ); return; } sscanf( fl_hdr.fl_fstmoff, "%ld", &offset ); if( DEBUG_BINDSCAN ) printf( "scan archive %s\n", archive ); while( offset > 0 && lseek( fd, offset, 0 ) >= 0 && read( fd, &ar_hdr, sizeof( ar_hdr ) ) >= sizeof( ar_hdr.hdr ) ) { long lar_date; int lar_namlen; sscanf( ar_hdr.hdr.ar_namlen, "%d", &lar_namlen ); sscanf( ar_hdr.hdr.ar_date, "%ld", &lar_date ); sscanf( ar_hdr.hdr.ar_nxtmem, "%ld", &offset ); if( !lar_namlen ) continue; ar_hdr.hdr._ar_name.ar_name[ lar_namlen ] = '\0'; sprintf( buf, "%s(%s)", archive, ar_hdr.hdr._ar_name.ar_name ); (*func)( buf, 1 /* time valid */, (time_t)lar_date ); } close( fd ); } # endif /* AIAMAG - RS6000 AIX */ # endif /* unix || AMIGA */
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#4 | 61 | Laura Wingerd |
Import Perforce jam @8204: Support for building 64 bit IRIX executables (jam -sOSVER=64): a jam fix to keep it from getting confused when it sees a /SYM64/ entry in a file archive -- it used to think it was a flexname entry. |
||
#3 | 60 | Laura Wingerd |
Import Perforce jam @8076: The ride of the dinosaur: MVS (Open Edition) client port. |
||
#2 | 59 | Laura Wingerd |
Import Perforce jam @8017: Interix (OpenNT) client port. Broken in two ways: $TEMP must be reset so as not to be the dumb DOS path, and their $CWD syntax //D/path conflicts with ours client syntax, making it impossible to refer to local files using local, full pathnames. The client root must be set to /path (without the leading //D), limiting the client to the current drive. |
||
#1 | 58 | Laura Wingerd | Branching jam @jam2.2.4 |