home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / arc / XPK / XPK25Dev / examples / xpksas.c < prev    next >
C/C++ Source or Header  |  1992-07-25  |  2KB  |  70 lines

  1. /* XPK - General XPK file-to-file packer/unpacker */
  2. /* This is the version to be compiled with SAS/C  */
  3.  
  4. #include <proto/exec.h>
  5. #include <proto/dos.h>
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <string.h>
  9. #include <libraries/xpk.h>
  10.  
  11. struct Library *XpkBase;
  12. char errbuf[XPKERRMSGSIZE + 1];      /* +1 to make room for '\n'        */
  13.  
  14. int    chkabort(void) { return 0; }  /* disable lattice CTRL-C handling */
  15.  
  16. long __asm 
  17. chunkfunc(register __a1 struct XpkProgress *prog)
  18. {
  19.     printf("\r%4s: %-9s %-12s (%6d bytes, %3d%% done, %2d%% CF, %6d cps) ",
  20.         prog->PackerName,  prog->Activity,  prog->FileName,
  21.         prog->ULen,        prog->Done,      prog->CF,       prog->Speed);
  22.     if( prog->Type==XPKPROG_END ) printf("\n");
  23.  
  24.     return (long)SetSignal(0, SIGBREAKF_CTRL_C) & SIGBREAKF_CTRL_C;
  25. }
  26. struct Hook chunkhook = {{0},chunkfunc};
  27.  
  28.  
  29. struct TagItem tags[] = {
  30.     XPK_InName,    (long)NULL ,
  31.     XPK_OutName,   (long)NULL ,
  32.     XPK_Ignore,    (long)0    ,
  33.     XPK_NoClobber, (long)TRUE ,
  34.     XPK_GetError,  (long)errbuf,
  35.     XPK_ChunkHook, (long)&chunkhook,
  36.     TAG_DONE};
  37.  
  38.  
  39. void end( char *text )
  40. {
  41.     if( text ) Write(Output(), text, strlen(text));
  42.     if( XpkBase ) CloseLibrary( XpkBase );
  43.     exit(text ? 10 : 0);
  44. }
  45.  
  46. void main(int argc, char *argv[])
  47. {
  48.     int res;
  49.  
  50.     if(!(XpkBase=OpenLibrary(XPKNAME,0)))
  51.         end("Cannot open "XPKNAME"\n");
  52.     
  53.     if((argc < 3) || (argc > 4))
  54.         end("Usage: XPK [<method>] <infile> <outfile>\n");
  55.     
  56.     tags[0].ti_Data = (long)argv[argc-2]; /* First try to decompress... */
  57.     tags[1].ti_Data = (long)argv[argc-1];
  58.     if( argc==3 )
  59.         res=XpkUnpack( tags );
  60.     else {
  61.         tags[2].ti_Tag = XPK_FindMethod;
  62.         tags[2].ti_Data= (long)argv[1];
  63.         res=XpkPack(tags);
  64.     }
  65.     if( res )
  66.         end(strcat(errbuf,"\n"));
  67.     
  68.     end(NULL);
  69. }
  70.