home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip531.zip / acorn / acorn.c next >
C/C++ Source or Header  |  1997-05-12  |  25KB  |  750 lines

  1. /*---------------------------------------------------------------------------
  2.  
  3.   acorn.c
  4.  
  5.   RISCOS-specific routines for use with Info-ZIP's UnZip 5.2 and later.
  6.  
  7.   Contains:  do_wild()           <-- generic enough to put in fileio.c?
  8.              mapattr()
  9.              mapname()
  10.              checkdir()
  11.              mkdir()
  12.              isRISCOSexfield()
  13.              setRISCOSexfield()
  14.              printRISCOSexfield()
  15.              close_outfile()
  16.              version()
  17.  
  18.   ---------------------------------------------------------------------------*/
  19.  
  20.  
  21. #define UNZIP_INTERNAL
  22. #include "^.unzip.h"
  23. #include "riscos.h"
  24.  
  25. #define FTYPE_FFF (1<<17)      /* set filetype to &FFF when extracting */
  26.  
  27. static int created_dir;        /* used in mapname(), checkdir() */
  28. static int renamed_fullpath;   /* ditto */
  29.  
  30. extern int mkdir(char *path, int mode);
  31.  
  32.  
  33. #ifndef SFX
  34.  
  35. /**********************/
  36. /* Function do_wild() */   /* for porting:  dir separator; match(ignore_case) */
  37. /**********************/
  38.  
  39. char *do_wild(__G__ wildspec)
  40.     __GDEF
  41.     char *wildspec;         /* only used first time on a given dir */
  42. {
  43.     static DIR *dir = (DIR *)NULL;
  44.     static char *dirname, *wildname, matchname[FILNAMSIZ];
  45.     static int firstcall=TRUE, have_dirname, dirnamelen;
  46.     struct dirent *file;
  47.  
  48.  
  49.     /* Even when we're just returning wildspec, we *always* do so in
  50.      * matchname[]--calling routine is allowed to append four characters
  51.      * to the returned string, and wildspec may be a pointer to argv[].
  52.      */
  53.     if (firstcall) {        /* first call:  must initialize everything */
  54.         firstcall = FALSE;
  55.  
  56.         /* break the wildspec into a directory part and a wildcard filename */
  57.         if ((wildname = strrchr(wildspec, '.')) == (char *)NULL) {
  58.             dirname = ".";
  59.             dirnamelen = 1;
  60.             have_dirname = FALSE;
  61.             wildname = wildspec;
  62.         } else {
  63.             ++wildname;     /* point at character after '/' */
  64.             dirnamelen = wildname - wildspec;
  65.             if ((dirname = (char *)malloc(dirnamelen+1)) == (char *)NULL) {
  66.                 Info(slide, 0x201, ((char *)slide,
  67.                   "warning:  can't allocate wildcard buffers\n"));
  68.                 strcpy(matchname, wildspec);
  69.                 return matchname;   /* but maybe filespec was not a wildcard */
  70.             }
  71.             strncpy(dirname, wildspec, dirnamelen);
  72.             dirname[dirnamelen] = '\0';   /* terminate for strcpy below */
  73.             have_dirname = TRUE;
  74.         }
  75.  
  76.         if ((dir = opendir(dirname)) != (DIR *)NULL) {
  77.             while ((file = readdir(dir)) != (struct dirent *)NULL) {
  78.                 if (file->d_name[0] == '/' && wildname[0] != '/')
  79.                     continue;  /* Unix:  '*' and '?' do not match leading dot */
  80.                 if (match(file->d_name, wildname, 0)) {  /* 0 == case sens. */
  81.                     if (have_dirname) {
  82.                         strcpy(matchname, dirname);
  83.                         strcpy(matchname+dirnamelen, file->d_name);
  84.                     } else
  85.                         strcpy(matchname, file->d_name);
  86.                     return matchname;
  87.                 }
  88.             }
  89.             /* if we get to here directory is exhausted, so close it */
  90.             closedir(dir);
  91.             dir = (DIR *)NULL;
  92.         }
  93.  
  94.         /* return the raw wildspec in case that works (e.g., directory not
  95.          * searchable, but filespec was not wild and file is readable) */
  96.         strcpy(matchname, wildspec);
  97.         return matchname;
  98.     }
  99.  
  100.     /* last time through, might have failed opendir but returned raw wildspec */
  101.     if (dir == (DIR *)NULL) {
  102.         firstcall = TRUE;  /* nothing left to try--reset for new wildspec */
  103.         if (have_dirname)
  104.             free(dirname);
  105.         return (char *)NULL;
  106.     }
  107.  
  108.     /* If we've gotten this far, we've read and matched at least one entry
  109.      * successfully (in a previous call), so dirname has been copied into
  110.      * matchname already.
  111.      */
  112.     while ((file = readdir(dir)) != (struct dirent *)NULL)
  113.         if (match(file->d_name, wildname, 0)) {   /* 0 == don't ignore case */
  114.             if (have_dirname) {
  115.                 /* strcpy(matchname, dirname); */
  116.                 strcpy(matchname+dirnamelen, file->d_name);
  117.             } else
  118.                 strcpy(matchname, file->d_name);
  119.             return matchname;
  120.         }
  121.  
  122.     closedir(dir);     /* have read at least one dir entry; nothing left */
  123.     dir = (DIR *)NULL;
  124.     firstcall = TRUE;  /* reset for new wildspec */
  125.     if (have_dirname)
  126.         free(dirname);
  127.     return (char *)NULL;
  128.  
  129. } /* end function do_wild() */
  130.  
  131. #endif /* !SFX */
  132.  
  133.  
  134.  
  135.  
  136. /**********************/
  137. /* Function mapattr() */
  138. /**********************/
  139.  
  140. int mapattr(__G)
  141.     __GDEF
  142. {
  143.     ulg tmp = G.crec.external_file_attributes;
  144.  
  145.     switch (G.pInfo->hostnum) {
  146.         case UNIX_:
  147.         case VMS_:
  148.         case ACORN_:
  149.             G.pInfo->file_attr = (unsigned)(tmp >> 16);
  150.             break;
  151.         case AMIGA_:
  152.             tmp = (unsigned)(tmp>>17 & 7);   /* Amiga RWE bits */
  153.             G.pInfo->file_attr = (unsigned)(tmp<<6 | tmp<<3 | tmp);
  154.             break;
  155.         /* all remaining cases:  expand MSDOS read-only bit into write perms */
  156.         case FS_FAT_:
  157.         case FS_HPFS_:
  158.         case FS_NTFS_:
  159.         case MAC_:
  160.         case ATARI_:             /* (used to set = 0666) */
  161.         case TOPS20_:
  162.         default:
  163.             tmp = !(tmp & 1) << 1;   /* read-only bit --> write perms bits */
  164.             G.pInfo->file_attr = (unsigned)(0444 | tmp<<6 | tmp<<3 | tmp);
  165.             break;
  166.     } /* end switch (host-OS-created-by) */
  167.  
  168.     G.pInfo->file_attr&=0xFFFF;
  169.  
  170.     G.pInfo->file_attr|=(0xFFDu<<20);
  171.  
  172.     if (G.filename[strlen(G.filename)-4]==',') {
  173.       int ftype=strtol(G.filename+strlen(G.filename)-3,NULL,16)&0xFFF;
  174.  
  175.       G.pInfo->file_attr&=0x000FFFFF;
  176.       G.pInfo->file_attr|=(ftype<<20);
  177.     }
  178.     else if (G.crec.internal_file_attributes & 1) {
  179.       G.pInfo->file_attr&=0x000FFFFF;
  180.       G.pInfo->file_attr|=(0xFFFu<<20);
  181.     }
  182.  
  183.     return 0;
  184.  
  185. } /* end function mapattr() */
  186.  
  187.  
  188.  
  189.  
  190.  
  191. /************************/
  192. /*  Function mapname()  */
  193. /************************/
  194.                              /* return 0 if no error, 1 if caution (filename */
  195. int mapname(__G__ renamed)   /*  truncated), 2 if warning (skip file because */
  196.     __GDEF                   /*  dir doesn't exist), 3 if error (skip file), */
  197.     int renamed;             /*  or 10 if out of memory (skip file) */
  198. {                            /*  [also IZ_VOL_LABEL, IZ_CREATED_DIR] */
  199.     char pathcomp[FILNAMSIZ];    /* path-component buffer */
  200.     char *pp, *cp=(char *)NULL;  /* character pointers */
  201.     char *lastsemi=(char *)NULL; /* pointer to last semi-colon in pathcomp */
  202.     int quote = FALSE;           /* flags */
  203.     int error = 0;
  204.     register unsigned workch;    /* hold the character being tested */
  205.     char *checkswap=NULL;        /* pointer the the extension to check or NULL */
  206.  
  207.  
  208. /*---------------------------------------------------------------------------
  209.     Initialize various pointers and counters and stuff.
  210.   ---------------------------------------------------------------------------*/
  211.  
  212.     if (G.pInfo->vollabel)
  213.         return IZ_VOL_LABEL;    /* can't set disk volume labels in Unix */
  214.  
  215.     /* can create path as long as not just freshening, or if user told us */
  216.     G.create_dirs = (!G.fflag || renamed);
  217.  
  218.     created_dir = FALSE;        /* not yet */
  219.  
  220.     /* user gave full pathname:  don't prepend rootpath */
  221.     renamed_fullpath = (renamed && (*G.filename == '/'));
  222.  
  223.     if (checkdir(__G__ (char *)NULL, INIT) == 10)
  224.         return 10;              /* initialize path buffer, unless no memory */
  225.  
  226.     *pathcomp = '\0';           /* initialize translation buffer */
  227.     pp = pathcomp;              /* point to translation buffer */
  228.     if (G.jflag)                /* junking directories */
  229.         cp = (char *)strrchr(G.filename, '/');
  230.     if (cp == (char *)NULL)     /* no '/' or not junking dirs */
  231.         cp = G.filename;        /* point to internal zipfile-member pathname */
  232.     else
  233.         ++cp;                   /* point to start of last component of path */
  234.  
  235. /*---------------------------------------------------------------------------
  236.     Begin main loop through characters in filename.
  237.   ---------------------------------------------------------------------------*/
  238.  
  239.     while ((workch = (uch)*cp++) != 0) {
  240.  
  241.         if (quote) {                 /* if character quoted, */
  242.             *pp++ = (char)workch;    /*  include it literally */
  243.             quote = FALSE;
  244.         } else
  245.             switch (workch) {
  246.             case '/':             /* can assume -j flag not given */
  247.                 *pp = '\0';
  248.                 if ((error = checkdir(__G__ pathcomp, APPEND_DIR)) > 1)
  249.                     return error;
  250.                 pp = pathcomp;    /* reset conversion buffer for next piece */
  251.                 lastsemi = (char *)NULL; /* leave directory semi-colons alone */
  252.                 checkswap=NULL;  /* reset checking when starting a new leafname */
  253.                 break;
  254.  
  255.             case ';':             /* VMS version (or DEC-20 attrib?) */
  256.                 lastsemi = pp;
  257.                 *pp++ = ';';      /* keep for now; remove VMS ";##" */
  258.                 break;            /*  later, if requested */
  259.  
  260.             case '\026':          /* control-V quote for special chars */
  261.                 quote = TRUE;     /* set flag for next character */
  262.                 break;
  263.  
  264.             case ' ':             /* change spaces to hard-spaces */
  265.                 *pp++ = 160;
  266.                 break;
  267.  
  268.             case ':':             /* change ':' to 'ª' */
  269.                 *pp++ = 'ª';
  270.                 break;
  271.  
  272.             case '&':             /* change '&' to 'E' */
  273.                 *pp++ = 'E';
  274.                 break;
  275.  
  276.             case '@':             /* change '@' to 'A' */
  277.                 *pp++ = 'A';
  278.                 break;
  279.  
  280.             case '.':
  281.                 *pp++ = '/';
  282.                 checkswap=pp;
  283.                 break;
  284.  
  285.             default:
  286.                 /* allow European characters in filenames: */
  287.                 if (isprint(workch) || (128 <= workch && workch <= 254))
  288.                     *pp++ = (char)workch;
  289.             } /* end switch */
  290.  
  291.     } /* end while loop */
  292.  
  293.     *pp = '\0';                   /* done with pathcomp:  terminate it */
  294.  
  295.     /* if not saving them, remove VMS version numbers (appended ";###") */
  296.     if (!G.V_flag && lastsemi) {
  297.         pp = lastsemi + 1;
  298.         while (isdigit((uch)(*pp)))
  299.             ++pp;
  300.         if (*pp == '\0')          /* only digits between ';' and end:  nuke */
  301.             *lastsemi = '\0';
  302.     }
  303.  
  304. /*---------------------------------------------------------------------------
  305.     Report if directory was created (and no file to create:  filename ended
  306.     in '/'), check name to be sure it exists, and combine path and name be-
  307.     fore exiting.
  308.   ---------------------------------------------------------------------------*/
  309.  
  310.     if (G.filename[strlen(G.filename) - 1] == '/') {
  311.         checkdir(__G__ G.filename, GETPATH);
  312.         if (created_dir) {
  313.             if (QCOND2) {
  314.                 Info(slide, 0, ((char *)slide, "   creating: %s\n",
  315.                   G.filename));
  316.             }
  317.             return IZ_CREATED_DIR;   /* set dir time (note trailing '/') */
  318.         }
  319.         return 2;   /* dir existed already; don't look for data to extract */
  320.     }
  321.  
  322.     if (*pathcomp == '\0') {
  323.         Info(slide, 1, ((char *)slide, "mapname:  conversion of %s failed\n",
  324.           G.filename));
  325.         return 3;
  326.     }
  327.  
  328.     if (checkswap!=NULL) {
  329.         if (checkext(checkswap)) {
  330.             if ((error = checkdir(__G__ checkswap, APPEND_DIR)) > 1)
  331.                 return error;
  332.             *(checkswap-1)=0;    /* remove extension from pathcomp */
  333.         }
  334.     }
  335.  
  336.     if (pathcomp[strlen(pathcomp)-4]==',') {
  337.       /* remove the filetype extension */
  338.       /* the filetype should be already set by mapattr() */
  339.       pathcomp[strlen(pathcomp)-4]=0;
  340.     }
  341.  
  342.     checkdir(__G__ pathcomp, APPEND_NAME);  /* returns 1 if truncated: care? */
  343.     checkdir(__G__ G.filename, GETPATH);
  344.  
  345.     return error;
  346.  
  347. } /* end function mapname() */
  348.  
  349.  
  350.  
  351.  
  352. /***********************/
  353. /* Function checkdir() */
  354. /***********************/
  355.  
  356. int checkdir(__G__ pathcomp, flag)
  357.     __GDEF
  358.     char *pathcomp;
  359.     int flag;
  360. /*
  361.  * returns:  1 - (on APPEND_NAME) truncated filename
  362.  *           2 - path doesn't exist, not allowed to create
  363.  *           3 - path doesn't exist, tried to create and failed; or
  364.  *               path exists and is not a directory, but is supposed to be
  365.  *           4 - path is too long
  366.  *          10 - can't allocate memory for filename buffers
  367.  */
  368. {
  369.     static int rootlen = 0;   /* length of rootpath */
  370.     static char *rootpath;    /* user's "extract-to" directory */
  371.     static char *buildpath;   /* full path (so far) to extracted file */
  372.     static char *end;         /* pointer to end of buildpath ('\0') */
  373.  
  374. #   define FN_MASK   7
  375. #   define FUNCTION  (flag & FN_MASK)
  376.  
  377.  
  378.  
  379. /*---------------------------------------------------------------------------
  380.     APPEND_DIR:  append the path component to the path being built and check
  381.     for its existence.  If doesn't exist and we are creating directories, do
  382.     so for this one; else signal success or error as appropriate.
  383.   ---------------------------------------------------------------------------*/
  384.  
  385.     if (FUNCTION == APPEND_DIR) {
  386.         int too_long = FALSE;
  387. #ifdef SHORT_NAMES
  388.         char *old_end = end;
  389. #endif
  390.  
  391.         Trace((stderr, "appending dir segment [%s]\n", pathcomp));
  392.         while ((*end = *pathcomp++) != '\0')
  393.             ++end;
  394. #ifdef SHORT_NAMES   /* path components restricted to 14 chars, typically */
  395.         if ((end-old_end) > FILENAME_MAX)  /* GRR:  proper constant? */
  396.             *(end = old_end + FILENAME_MAX) = '\0';
  397. #endif
  398.  
  399.         /* GRR:  could do better check, see if overrunning buffer as we go:
  400.          * check end-buildpath after each append, set warning variable if
  401.          * within 20 of FILNAMSIZ; then if var set, do careful check when
  402.          * appending.  Clear variable when begin new path. */
  403.  
  404.         if ((end-buildpath) > FILNAMSIZ-3)  /* need '/', one-char name, '\0' */
  405.             too_long = TRUE;                /* check if extracting directory? */
  406.         if (stat(buildpath, &G.statbuf)) {  /* path doesn't exist */
  407.             if (!G.create_dirs) { /* told not to create (freshening) */
  408.                 free(buildpath);
  409.                 return 2;         /* path doesn't exist:  nothing to do */
  410.             }
  411.             if (too_long) {
  412.                 Info(slide, 1, ((char *)slide,
  413.                   "checkdir error:  path too long: %s\n", buildpath));
  414.                 fflush(stderr);
  415.                 free(buildpath);
  416.                 return 4;         /* no room for filenames:  fatal */
  417.             }
  418.             if (mkdir(buildpath, 0777) == -1) {   /* create the directory */
  419.                 Info(slide, 1, ((char *)slide,
  420.                   "checkdir error:  can't create %s\n\
  421.                  unable to process %s.\n", buildpath, G.filename));
  422.                 free(buildpath);
  423.                 return 3;      /* path didn't exist, tried to create, failed */
  424.             }
  425.             created_dir = TRUE;
  426.         } else if (!S_ISDIR(G.statbuf.st_mode)) {
  427.             Info(slide, 1, ((char *)slide,
  428.               "checkdir error:  %s exists but is not directory\n\
  429.                  unable to process %s.\n", buildpath, G.filename));
  430.             free(buildpath);
  431.             return 3;          /* path existed but wasn't dir */
  432.         }
  433.         if (too_long) {
  434.             Info(slide, 1, ((char *)slide,
  435.               "checkdir error:  path too long: %s\n", buildpath));
  436.             free(buildpath);
  437.             return 4;         /* no room for filenames:  fatal */
  438.         }
  439.         *end++ = '.';    /************* was '/' *************/
  440.         *end = '\0';
  441.         Trace((stderr, "buildpath now = [%s]\n", buildpath));
  442.         return 0;
  443.  
  444.     } /* end if (FUNCTION == APPEND_DIR) */
  445.  
  446. /*---------------------------------------------------------------------------
  447.     GETPATH:  copy full path to the string pointed at by pathcomp, and free
  448.     buildpath.
  449.   ---------------------------------------------------------------------------*/
  450.  
  451.     if (FUNCTION == GETPATH) {
  452.         strcpy(pathcomp, buildpath);
  453.         Trace((stderr, "getting and freeing path [%s]\n", pathcomp));
  454.         free(buildpath);
  455.         buildpath = end = (char *)NULL;
  456.         return 0;
  457.     }
  458.  
  459. /*---------------------------------------------------------------------------
  460.     APPEND_NAME:  assume the path component is the filename; append it and
  461.     return without checking for existence.
  462.   ---------------------------------------------------------------------------*/
  463.  
  464.     if (FUNCTION == APPEND_NAME) {
  465. #ifdef SHORT_NAMES
  466.         char *old_end = end;
  467. #endif
  468.  
  469.         Trace((stderr, "appending filename [%s]\n", pathcomp));
  470.         while ((*end = *pathcomp++) != '\0') {
  471.             ++end;
  472. #ifdef SHORT_NAMES  /* truncate name at 14 characters, typically */
  473.             if ((end-old_end) > FILENAME_MAX)      /* GRR:  proper constant? */
  474.                 *(end = old_end + FILENAME_MAX) = '\0';
  475. #endif
  476.             if ((end-buildpath) >= FILNAMSIZ) {
  477.                 *--end = '\0';
  478.                 Info(slide, 0x201, ((char *)slide,
  479.                    "checkdir warning:  path too long; truncating\n\
  480.                    %s\n                -> %s\n", G.filename, buildpath));
  481.                 return 1;   /* filename truncated */
  482.             }
  483.         }
  484.         Trace((stderr, "buildpath now = [%s]\n", buildpath));
  485.         return 0;  /* could check for existence here, prompt for new name... */
  486.     }
  487.  
  488. /*---------------------------------------------------------------------------
  489.     INIT:  allocate and initialize buffer space for the file currently being
  490.     extracted.  If file was renamed with an absolute path, don't prepend the
  491.     extract-to path.
  492.   ---------------------------------------------------------------------------*/
  493.  
  494. /* GRR:  for VMS and TOPS-20, add up to 13 to strlen */
  495.  
  496.     if (FUNCTION == INIT) {
  497.         Trace((stderr, "initializing buildpath to "));
  498.         if ((buildpath = (char *)malloc(strlen(G.filename)+rootlen+1)) ==
  499.             (char *)NULL)
  500.             return 10;
  501.         if ((rootlen > 0) && !renamed_fullpath) {
  502.             strcpy(buildpath, rootpath);
  503.             end = buildpath + rootlen;
  504.         } else {
  505.             *buildpath = '\0';
  506.             end = buildpath;
  507.         }
  508.         Trace((stderr, "[%s]\n", buildpath));
  509.         return 0;
  510.     }
  511.  
  512. /*---------------------------------------------------------------------------
  513.     ROOT:  if appropriate, store the path in rootpath and create it if neces-
  514.     sary; else assume it's a zipfile member and return.  This path segment
  515.     gets used in extracting all members from every zipfile specified on the
  516.     command line.
  517.   ---------------------------------------------------------------------------*/
  518.  
  519. #if (!defined(SFX) || defined(SFX_EXDIR))
  520.     if (FUNCTION == ROOT) {
  521.         Trace((stderr, "initializing root path to [%s]\n", pathcomp));
  522.         if (pathcomp == (char *)NULL) {
  523.             rootlen = 0;
  524.             return 0;
  525.         }
  526.         if ((rootlen = strlen(pathcomp)) > 0) {
  527.             if (pathcomp[rootlen-1] == '.') {    /****** was '/' ********/
  528.                 pathcomp[--rootlen] = '\0';
  529.             }
  530.             if (rootlen > 0 && (stat(pathcomp, &G.statbuf) ||
  531.                                 !S_ISDIR(G.statbuf.st_mode))) {
  532.                 /* path does not exist */
  533.                 if (!G.create_dirs /* || isshexp(pathcomp) */ ) {
  534.                     rootlen = 0;
  535.                     return 2;   /* skip (or treat as stored file) */
  536.                 }
  537.                 /* create the directory (could add loop here to scan pathcomp
  538.                  * and create more than one level, but why really necessary?) */
  539.                 if (mkdir(pathcomp, 0777) == -1) {
  540.                     Info(slide, 1, ((char *)slide,
  541.                       "checkdir:  can't create extraction directory: %s\n",
  542.                       pathcomp));
  543.                     rootlen = 0;   /* path didn't exist, tried to create, and */
  544.                     return 3;  /* failed:  file exists, or 2+ levels required */
  545.                 }
  546.             }
  547.             if ((rootpath = (char *)malloc(rootlen+2)) == (char *)NULL) {
  548.                 rootlen = 0;
  549.                 return 10;
  550.             }
  551.             strcpy(rootpath, pathcomp);
  552.             rootpath[rootlen++] = '.';   /*********** was '/' *************/
  553.             rootpath[rootlen] = '\0';
  554.             Trace((stderr, "rootpath now = [%s]\n", rootpath));
  555.         }
  556.         return 0;
  557.     }
  558. #endif /* !SFX || SFX_EXDIR */
  559.  
  560. /*---------------------------------------------------------------------------
  561.     END:  free rootpath, immediately prior to program exit.
  562.   ---------------------------------------------------------------------------*/
  563.  
  564.     if (FUNCTION == END) {
  565.         Trace((stderr, "freeing rootpath\n"));
  566.         if (rootlen > 0)
  567.             free(rootpath);
  568.         return 0;
  569.     }
  570.  
  571.     return 99;  /* should never reach */
  572.  
  573. } /* end function checkdir() */
  574.  
  575.  
  576.  
  577.  
  578.  
  579. /********************/
  580. /* Function mkdir() */
  581. /********************/
  582.  
  583. int mkdir(path, mode)
  584.     char *path;
  585.     int mode;   /* ignored */
  586. /*
  587.  * returns:   0 - successful
  588.  *           -1 - failed (errno not set, however)
  589.  */
  590. {
  591.     return (SWI_OS_File_8(path) == NULL)? 0 : -1;
  592. }
  593.  
  594.  
  595.  
  596.  
  597. /*********************************/
  598. /* extra_field-related functions */
  599. /*********************************/
  600.  
  601. int isRISCOSexfield(void *extra_field)
  602. {
  603.  if (extra_field!=NULL) {
  604.    extra_block *block=(extra_block *)extra_field;
  605.    return(block->ID==SPARKID && (block->size==24 || block->size==20) && block->ID_2==SPARKID_2);
  606.  }
  607.  else
  608.    return FALSE;
  609. }
  610.  
  611. void setRISCOSexfield(char *path, void *extra_field)
  612. {
  613.  if (extra_field!=NULL) {
  614.    extra_block *block=(extra_block *)extra_field;
  615.    SWI_OS_File_1(path,block->loadaddr,block->execaddr,block->attr);
  616.  }
  617. }
  618.  
  619. void printRISCOSexfield(int isdir, void *extra_field)
  620. {
  621.  extra_block *block=(extra_block *)extra_field;
  622.  printf("\n  This file has RISC OS file informations in the local extra field.\n");
  623.  
  624.  if (isdir) {
  625. /*   I prefer not to print this string... should change later... */
  626. /*   printf("  The file is a directory.\n");*/
  627.  }
  628.  else if ((block->loadaddr & 0xFFF00000) != 0xFFF00000) {
  629.    printf("  Load address: %.8X\n",block->loadaddr);
  630.    printf("  Exec address: %.8X\n",block->execaddr);
  631.  }
  632.  else {
  633.    /************* should change this to use OS_FSControl 18 to get filetype string ************/
  634.    char tmpstr[16];
  635.    char ftypestr[32];
  636.    int flen;
  637.    sprintf(tmpstr,"File$Type_%03x",(block->loadaddr & 0x000FFF00) >> 8);
  638.    if (SWI_OS_ReadVarVal(tmpstr,ftypestr,32,&flen)==NULL) {
  639.      ftypestr[flen]=0;
  640.      printf("  Filetype: %s (&%.3X)\n",ftypestr,(block->loadaddr & 0x000FFF00) >> 8);
  641.    }
  642.    else {
  643.      printf("  Filetype: &%.3X\n",(block->loadaddr & 0x000FFF00) >> 8);
  644.    }
  645.  }
  646.  printf("  Access: ");
  647.  if (block->attr & (1<<3))
  648.    printf("L");
  649.  if (block->attr & (1<<0))
  650.    printf("W");
  651.  if (block->attr & (1<<1))
  652.    printf("R");
  653.  printf("/");
  654.  if (block->attr & (1<<4))
  655.    printf("w");
  656.  if (block->attr & (1<<5))
  657.    printf("r");
  658.  printf("\n\n");
  659. }
  660.  
  661.  
  662. /****************************/
  663. /* Function close_outfile() */
  664. /****************************/
  665.  
  666. void close_outfile(__G)
  667.     __GDEF
  668. {
  669.  fclose(G.outfile);
  670.  
  671.  if (isRISCOSexfield(G.extra_field)) {
  672.    setRISCOSexfield(G.filename, G.extra_field);
  673.  }
  674.  else {
  675.    int loadaddr,execaddr,attr;
  676.    int mode=G.pInfo->file_attr&0xffff;   /* chmod equivalent mode */
  677.  
  678.    time_t m_time;
  679. #ifdef USE_EF_UT_TIME
  680.    iztimes z_utime;
  681. #endif
  682.  
  683. #ifdef USE_EF_UT_TIME
  684.    if (G.extra_field &&
  685.        (ef_scan_for_izux(G.extra_field, G.lrec.extra_field_length, 0,
  686.                          &z_utime, NULL) & EB_UT_FL_MTIME)) {
  687.        TTrace((stderr, "close_outfile:  Unix e.f. modif. time = %ld\n",
  688.          z_utime.mtime));
  689.        m_time = z_utime.mtime;
  690.    } else
  691. #endif /* USE_EF_UT_TIME */
  692.        m_time = dos_to_unix_time(G.lrec.last_mod_file_date,
  693.                                  G.lrec.last_mod_file_time);
  694.  
  695.    /* set the file's modification time */
  696.    SWI_OS_File_5(G.filename,NULL,&loadaddr,NULL,NULL,&attr);
  697.  
  698.    loadaddr=0xfff00000U | ((((m_time>>8) * 100)>>24) + 0x33);
  699.    execaddr=m_time * 100 + 0x6e996a00U;
  700.  
  701.    loadaddr|=((G.pInfo->file_attr&0xFFF00000) >> 12);
  702.  
  703.    attr=(attr&0xffffff00) | ((mode&0400) >> 8) | ((mode&0200) >> 6) |
  704.                             ((mode&0004) << 2) | ((mode&0002) << 4);
  705.  
  706.    SWI_OS_File_1(G.filename,loadaddr,execaddr,attr);
  707.  }
  708.  
  709. } /* end function close_outfile() */
  710.  
  711.  
  712.  
  713.  
  714. #ifndef SFX
  715.  
  716. /************************/
  717. /*  Function version()  */
  718. /************************/
  719.  
  720. void version(__G)
  721.     __GDEF
  722. {
  723.     sprintf((char *)slide, LoadFarString(CompiledWith),
  724. #ifdef __GNUC__
  725.       "gcc ", __VERSION__,
  726. #else
  727. #  ifdef __CC_NORCROFT
  728.       "Norcroft ", "cc",
  729. #  else
  730.       "cc", "",
  731. #  endif
  732. #endif
  733.  
  734.       "RISC OS",
  735.  
  736.       " (Acorn Computers Ltd)",
  737.  
  738. #ifdef __DATE__
  739.       " on ", __DATE__
  740. #else
  741.       "", ""
  742. #endif
  743.       );
  744.  
  745.     (*G.message)((zvoid *)&G, slide, (ulg)strlen((char *)slide), 0);
  746.  
  747. } /* end function version() */
  748.  
  749. #endif /* !SFX */
  750.