stat.c
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:8k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. /* Here we have a handmade stat() function because Aztec's c.lib stat() */
  2. /* does not support an st_mode field, which we need... also a chmod().  */
  3. /* This stat() is by Paul Wells, modified by Paul Kienitz. */
  4. /* Originally for use with Aztec C >= 5.0 and Lattice C <= 4.01  */
  5. /* Adapted for SAS/C 6.5x by Haidinger Walter */
  6. /* POLICY DECISION: We will not attempt to remove global variables from */
  7. /* this source file for Aztec C.  These routines are essentially just   */
  8. /* augmentations of Aztec's c.lib, which is itself not reentrant.  If   */
  9. /* we want to produce a fully reentrant UnZip, we will have to use a    */
  10. /* suitable startup module, such as purify.a for Aztec by Paul Kienitz. */
  11. #ifndef __amiga_stat_c
  12. #define __amiga_stat_c
  13. #include <exec/types.h>
  14. #include <exec/memory.h>
  15. #include "amiga/z-stat.h"             /* fake version of stat.h */
  16. #include <string.h>
  17. #ifdef AZTEC_C
  18. #  include <libraries/dos.h>
  19. #  include <libraries/dosextens.h>
  20. #  include <clib/exec_protos.h>
  21. #  include <clib/dos_protos.h>
  22. #  include <pragmas/exec_lib.h>
  23. #  include <pragmas/dos_lib.h>
  24. #endif
  25. #ifdef __SASC
  26. #  include <sys/dir.h>               /* SAS/C dir function prototypes */
  27. #  include <sys/types.h>
  28. #  include <proto/exec.h>
  29. #  include <proto/dos.h>
  30. #endif
  31. #ifndef SUCCESS
  32. #  define SUCCESS (-1)
  33. #  define FAILURE (0)
  34. #endif
  35. void close_leftover_open_dirs(void);    /* prototype */
  36. static DIR *dir_cleanup_list = NULL;    /* for resource tracking */
  37. /* CALL THIS WHEN HANDLING CTRL-C OR OTHER UNEXPECTED EXIT! */
  38. void close_leftover_open_dirs(void)
  39. {
  40.     while (dir_cleanup_list)
  41.         closedir(dir_cleanup_list);
  42. }
  43. unsigned short disk_not_mounted;
  44. extern int stat(char *file,struct stat *buf);
  45. stat(file,buf)
  46. char *file;
  47. struct stat *buf;
  48. {
  49.         struct FileInfoBlock *inf;
  50.         BPTR lock;
  51.         time_t ftime;
  52.         struct tm local_tm;
  53.         if( (lock = Lock(file,SHARED_LOCK))==0 )
  54.                 /* file not found */
  55.                 return(-1);
  56.         if( !(inf = (struct FileInfoBlock *)AllocMem(
  57.                 (long)sizeof(struct FileInfoBlock),MEMF_PUBLIC|MEMF_CLEAR)) )
  58.         {
  59.                 UnLock(lock);
  60.                 return(-1);
  61.         }
  62.         if( Examine(lock,inf)==FAILURE )
  63.         {
  64.                 FreeMem((char *)inf,(long)sizeof(*inf));
  65.                 UnLock(lock);
  66.                 return(-1);
  67.         }
  68.         /* fill in buf */
  69.         buf->st_dev         =
  70.         buf->st_nlink       =
  71.         buf->st_uid         =
  72.         buf->st_gid         =
  73.         buf->st_rdev        = 0;
  74.         buf->st_ino         = inf->fib_DiskKey;
  75.         buf->st_blocks      = inf->fib_NumBlocks;
  76.         buf->st_size        = inf->fib_Size;
  77.         /* now the date.  AmigaDOS has weird datestamps---
  78.          *      ds_Days is the number of days since 1-1-1978;
  79.          *      however, as Unix wants date since 1-1-1970...
  80.          */
  81.         ftime =
  82.                 (inf->fib_Date.ds_Days * 86400 )                +
  83.                 (inf->fib_Date.ds_Minute * 60 )                 +
  84.                 (inf->fib_Date.ds_Tick / TICKS_PER_SECOND )     +
  85.                 (86400 * 8 * 365 )                              +
  86.                 (86400 * 2 );  /* two leap years */
  87.         tzset();
  88.         /* ftime += timezone; */
  89.         local_tm = *gmtime(&ftime);
  90.         local_tm.tm_isdst = -1;
  91.         ftime = mktime(&local_tm);
  92.         buf->st_ctime =
  93.         buf->st_atime =
  94.         buf->st_mtime = ftime;
  95.         buf->st_mode = (inf->fib_DirEntryType < 0 ? S_IFREG : S_IFDIR);
  96.         /* lastly, throw in the protection bits */
  97.         buf->st_mode |= ((inf->fib_Protection ^ 0xF) & 0xFF);
  98.         FreeMem((char *)inf, (long)sizeof(*inf));
  99.         UnLock((BPTR)lock);
  100.         return(0);
  101. }
  102. int fstat(int handle, struct stat *buf)
  103. {
  104.     /* fake some reasonable values for stdin */
  105.     buf->st_mode = (S_IREAD|S_IWRITE|S_IFREG);
  106.     buf->st_size = -1;
  107.     buf->st_mtime = time(&buf->st_mtime);
  108.     return 0;
  109. }
  110. /* opendir(), readdir(), closedir(), rmdir(), and chmod() by Paul Kienitz. */
  111. DIR *opendir(char *path)
  112. {
  113.     DIR *dd = AllocMem(sizeof(DIR), MEMF_PUBLIC);
  114.     if (!dd) return NULL;
  115.     if (!(dd->d_parentlock = Lock(path, MODE_OLDFILE))) {
  116.         disk_not_mounted = IoErr() == ERROR_DEVICE_NOT_MOUNTED;
  117.         FreeMem(dd, sizeof(DIR));
  118.         return NULL;
  119.     } else
  120.         disk_not_mounted = 0;
  121.     if (!Examine(dd->d_parentlock, &dd->d_fib) || dd->d_fib.fib_EntryType < 0) {
  122.         UnLock(dd->d_parentlock);
  123.         FreeMem(dd, sizeof(DIR));
  124.         return NULL;
  125.     }
  126.     dd->d_cleanuplink = dir_cleanup_list;       /* track them resources */
  127.     if (dir_cleanup_list)
  128.         dir_cleanup_list->d_cleanupparent = &dd->d_cleanuplink;
  129.     dd->d_cleanupparent = &dir_cleanup_list;
  130.     dir_cleanup_list = dd;
  131.     return dd;
  132. }
  133. void closedir(DIR *dd)
  134. {
  135.     if (dd) {
  136.         if (dd->d_cleanuplink)
  137.             dd->d_cleanuplink->d_cleanupparent = dd->d_cleanupparent;
  138.         *(dd->d_cleanupparent) = dd->d_cleanuplink;
  139.         if (dd->d_parentlock)
  140.             UnLock(dd->d_parentlock);
  141.         FreeMem(dd, sizeof(DIR));
  142.     }
  143. }
  144. struct dirent *readdir(DIR *dd)
  145. {
  146.     return (ExNext(dd->d_parentlock, &dd->d_fib) ? (struct dirent *)dd : NULL);
  147. }
  148. #ifdef AZTEC_C
  149. int rmdir(char *path)
  150. {
  151.     return (DeleteFile(path) ? 0 : IoErr());
  152. }
  153. int chmod(char *filename, int bits)     /* bits are as for st_mode */
  154. {
  155.     long protmask = (bits & 0xFF) ^ 0xF;
  156.     return !SetProtection(filename, protmask);
  157. }
  158. /* This here removes unnecessary bulk from the executable with Aztec: */
  159. void _wb_parse(void)  { }
  160. /* fake a unix function that does not apply to amigados: */
  161. int umask(void)  { return 0; }
  162. #  include <signal.h>
  163. /* C library signal() messes up debugging yet adds no actual usefulness */
  164. typedef void (*__signal_return_type)(int);
  165. __signal_return_type signal()  { return SIG_ERR; }
  166. /* The following replaces Aztec's argv-parsing function for compatibility with
  167. Unix-like syntax used on other platforms.  It also fixes the problem the
  168. standard _cli_parse() has of accepting only lower-ascii characters. */
  169. int _argc, _arg_len;
  170. char **_argv, *_arg_lin;
  171. void _cli_parse(struct Process *pp, long alen, register UBYTE *aptr)
  172. {
  173.     register UBYTE *cp;
  174.     register struct CommandLineInterface *cli;
  175.     register short c;
  176.     register short starred = 0;
  177. #  ifdef PRESTART_HOOK
  178.     void Prestart_Hook(void);
  179. #  endif
  180.     cli = (struct CommandLineInterface *) (pp->pr_CLI << 2);
  181.     cp = (UBYTE *) (cli->cli_CommandName << 2);
  182.     _arg_len = cp[0] + alen + 2;
  183.     if (!(_arg_lin = AllocMem((long) _arg_len, 0L)))
  184.         return;
  185.     c = cp[0];
  186.     strncpy(_arg_lin, cp + 1, c);
  187.     _arg_lin[c] = 0;
  188.     for (cp = _arg_lin + c + 1; alen && (*aptr < 'n' || *aptr > 'r'); alen--)
  189.         *cp++ = *aptr++;
  190.     *cp = 0;
  191.     aptr = cp = _arg_lin + c + 1;
  192.     for (_argc = 1; ; _argc++) {
  193.         while (*cp == ' ' || *cp == 't')
  194.             cp++;
  195.         if (!*cp)
  196.             break;
  197.         if (*cp == '"') {
  198.             cp++;
  199.             while (c = *cp++) {
  200.                 if (c == '"' && !starred) {
  201.                     *aptr++ = 0;
  202.                     starred = 0;
  203.                     break;
  204.                 } else if (c == '\' && !starred)
  205.                     starred = 1;
  206.                 else {
  207.                     *aptr++ = c;
  208.                     starred = 0;
  209.                 }
  210.             }
  211.         } else {
  212.             while ((c = *cp++) && c != ' ' && c != 't')
  213.                 *aptr++ = c;
  214.             *aptr++ = 0;
  215.         }
  216.         if (c == 0)
  217.             --cp;
  218.     }
  219.     *aptr = 0;
  220.     if (!(_argv = AllocMem((_argc + 1) * sizeof(*_argv), 0L))) {
  221.         _argc = 0;
  222.         return;
  223.     }
  224.     for (c = 0, cp = _arg_lin; c < _argc; c++) {
  225.         _argv[c] = cp;
  226.         cp += strlen(cp) + 1;
  227.     }
  228.     _argv[c] = NULL;
  229. #  ifdef PRESTART_HOOK
  230.     Prestart_Hook();
  231. #  endif
  232. }
  233. #endif /* AZTEC_C */
  234. #endif /* __amiga_stat_c */