home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / GNUISH / SWALIB0.ZIP / SW_ZIP.C < prev    next >
C/C++ Source or Header  |  1990-09-10  |  3KB  |  94 lines

  1. /* sw_zip.c - respondfiles for the pk(un)?zip commands.
  2.    Copyright (C) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
  3.  
  4.    This file is part of SWAPLIB (the library), a library for efficient
  5.    execution of child processes under MS-DOS.
  6.  
  7.    The library is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 1, or (at your option)
  10.    any later version.
  11.  
  12.    The library is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.  
  17.    You should have received a copy of the GNU General Public License
  18.    along with the library; if not, write to the Free Software
  19.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.    $Header: e:/gnu/swaplib/RCS/sw_zip.c'v 0.9 90/09/09 21:44:23 tho Stable $
  22.  */
  23.  
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <errno.h>
  28.  
  29. #include "swaplib.h"
  30.  
  31. /* Build a respondfile for the pk(un)?zip archive managers from ARGV.  */
  32.  
  33. int
  34. _swap_build_zip_respond_file (char **argv, char **envv)
  35. {
  36.   int len = 0;
  37.   int i = 0;
  38.   FILE *respond_file = NULL;
  39.   _swap_respond_file_name = swap_mktmpname ("zi");
  40.  
  41.   respond_file = fopen (_swap_respond_file_name, "w");
  42.   if (!respond_file)
  43.     {
  44.       int last_errno = errno;
  45.       fprintf (stderr, "can't open zip respond file: ");
  46.       errno = last_errno;
  47.       perror (_swap_respond_file_name);
  48.       return -1;
  49.     }
  50.  
  51.   argv++;
  52.  
  53.   while (**argv == '-')        /* leave options on the commandline */
  54.     {
  55.       int len = strlen (*argv);
  56.       if (i + len > 126)
  57.     {
  58.       strcpy (_swap_cmdline_buf, CMDLINE_TOO_LONG);
  59.       errno = E2BIG;
  60.       return -1;
  61.     }
  62.       strcpy (_swap_cmdline_buf + i, *argv);
  63.       i += len;
  64.       _swap_cmdline_buf[i++] = ' ';
  65.       argv++;
  66.     }
  67.  
  68.   if (*argv == NULL        /* missing zipfilename? */
  69.       || i + strlen (*argv) + strlen (_swap_respond_file_name) > 124)
  70.     {
  71.       strcpy (_swap_cmdline_buf, CMDLINE_TOO_LONG);
  72.       errno = E2BIG;
  73.       return -1;
  74.     }
  75.  
  76.   sprintf (_swap_cmdline_buf + i, "%s @%s", *argv++, _swap_respond_file_name);
  77.  
  78.   while (*argv)
  79.     fprintf (respond_file, "%s\n", *argv++);
  80.  
  81.   fprintf (respond_file, "\n");
  82.   fclose (respond_file);
  83.  
  84.   return _swap_format_msdos_environment (NULL, envv, NULL);
  85. }
  86.  
  87. /* 
  88.  * Local Variables:
  89.  * mode:C
  90.  * ChangeLog:ChangeLog
  91.  * compile-command:make
  92.  * End:
  93.  */
  94.