HTUU.c
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:7k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /*  HTUU.c
  2. ** UUENCODE AND UUDECODE
  3. **
  4. ** (c) COPYRIGHT MIT 1995.
  5. ** Please first read the full copyright statement in the file COPYRIGH.
  6. **
  7. ** ACKNOWLEDGEMENT:
  8. ** This code is taken from rpem distribution, and was originally
  9. ** written by Mark Riordan.
  10. **
  11. ** AUTHORS:
  12. ** MR Mark Riordan riordanmr@clvax1.cl.msu.edu
  13. ** AL Ari Luotonen luotonen@dxcern.cern.ch
  14. **
  15. ** HISTORY:
  16. ** Added as part of the WWW library and edited to conform
  17. ** with the WWW project coding standards by: AL  5 Aug 1993
  18. ** Originally written by: MR 12 Aug 1990
  19. ** Original header text:
  20. ** -------------------------------------------------------------
  21. **  File containing routines to convert a buffer
  22. **  of bytes to/from RFC 1113 printable encoding format.
  23. **
  24. **  This technique is similar to the familiar Unix uuencode
  25. **  format in that it maps 6 binary bits to one ASCII
  26. **  character (or more aptly, 3 binary bytes to 4 ASCII
  27. **  characters).  However, RFC 1113 does not use the same
  28. **  mapping to printable characters as uuencode.
  29. **
  30. **  Mark Riordan   12 August 1990 and 17 Feb 1991.
  31. **  This code is hereby placed in the public domain.
  32. ** -------------------------------------------------------------
  33. **
  34. ** BUGS:
  35. **
  36. **
  37. */
  38. /* Library include files */
  39. #include "tcp.h"
  40. #include "HTUtils.h"
  41. #include "HTUU.h"
  42. PRIVATE char six2pr[64] = {
  43.     'A','B','C','D','E','F','G','H','I','J','K','L','M',
  44.     'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
  45.     'a','b','c','d','e','f','g','h','i','j','k','l','m',
  46.     'n','o','p','q','r','s','t','u','v','w','x','y','z',
  47.     '0','1','2','3','4','5','6','7','8','9','+','/'
  48. };
  49. PRIVATE unsigned char pr2six[256];
  50. /*--- function HTUU_encode -----------------------------------------------
  51.  *
  52.  *   Encode a single line of binary data to a standard format that
  53.  *   uses only printing ASCII characters (but takes up 33% more bytes).
  54.  *
  55.  *    Entry    bufin    points to a buffer of bytes.  If nbytes is not
  56.  *                      a multiple of three, then the byte just beyond
  57.  *                      the last byte in the buffer must be 0.
  58.  *             nbytes   is the number of bytes in that buffer.
  59.  *                      This cannot be more than 48.
  60.  *             bufcoded points to an output buffer.  Be sure that this
  61.  *                      can hold at least 1 + (4*nbytes)/3 characters.
  62.  *
  63.  *    Exit     bufcoded contains the coded line.  The first 4*nbytes/3 bytes
  64.  *                      contain printing ASCII characters representing
  65.  *                      those binary bytes. This may include one or
  66.  *                      two '=' characters used as padding at the end.
  67.  *                      The last byte is a zero byte.
  68.  *             Returns the number of ASCII characters in "bufcoded".
  69.  */
  70. PUBLIC int HTUU_encode (unsigned char * bufin,
  71. unsigned int nbytes,
  72. char * bufcoded)
  73. {
  74. /* ENC is the basic 1 character encoding function to make a char printing */
  75. #define ENC(c) six2pr[c]
  76.    register char *outptr = bufcoded;
  77.    unsigned int i;
  78.    for (i=0; i<nbytes; i += 3) {
  79.       *(outptr++) = ENC(*bufin >> 2);            /* c1 */
  80.       *(outptr++) = ENC(((*bufin << 4) & 060) | ((bufin[1] >> 4) & 017)); /*c2*/
  81.       *(outptr++) = ENC(((bufin[1] << 2) & 074) | ((bufin[2] >> 6) & 03));/*c3*/
  82.       *(outptr++) = ENC(bufin[2] & 077);         /* c4 */
  83.       bufin += 3;
  84.    }
  85.    /* If nbytes was not a multiple of 3, then we have encoded too
  86.     * many characters.  Adjust appropriately.
  87.     */
  88.    if(i == nbytes+1) {
  89.       /* There were only 2 bytes in that last group */
  90.       outptr[-1] = '=';
  91.    } else if(i == nbytes+2) {
  92.       /* There was only 1 byte in that last group */
  93.       outptr[-1] = '=';
  94.       outptr[-2] = '=';
  95.    }
  96.    *outptr = '';
  97.    return(outptr - bufcoded);
  98. }
  99. /*--- function HTUU_decode ------------------------------------------------
  100.  *
  101.  *  Decode an ASCII-encoded buffer back to its original binary form.
  102.  *
  103.  *    Entry    bufcoded    points to a uuencoded string.  It is 
  104.  *                         terminated by any character not in
  105.  *                         the printable character table six2pr, but
  106.  *                         leading whitespace is stripped.
  107.  *             bufplain    points to the output buffer; must be big
  108.  *                         enough to hold the decoded string (generally
  109.  *                         shorter than the encoded string) plus
  110.  *                         as many as two extra bytes used during
  111.  *                         the decoding process.
  112.  *             outbufsize  is the maximum number of bytes that
  113.  *                         can fit in bufplain.
  114.  *
  115.  *    Exit     Returns the number of binary bytes decoded.
  116.  *             bufplain    contains these bytes.
  117.  */
  118. PUBLIC int HTUU_decode (char * bufcoded,
  119. unsigned char * bufplain,
  120. int outbufsize)
  121. {
  122. /* single character decode */
  123. #define DEC(c) pr2six[(int)c]
  124. #define MAXVAL 63
  125.    static int first = 1;
  126.    int nbytesdecoded, j;
  127.    register char *bufin = bufcoded;
  128.    register unsigned char *bufout = bufplain;
  129.    register int nprbytes;
  130.    /* If this is the first call, initialize the mapping table.
  131.     * This code should work even on non-ASCII machines.
  132.     */
  133.    if(first) {
  134.       first = 0;
  135.       for(j=0; j<256; j++) pr2six[j] = MAXVAL+1;
  136.       for(j=0; j<64; j++) pr2six[(int)six2pr[j]] = (unsigned char) j;
  137. #if 0
  138.       pr2six['A']= 0; pr2six['B']= 1; pr2six['C']= 2; pr2six['D']= 3; 
  139.       pr2six['E']= 4; pr2six['F']= 5; pr2six['G']= 6; pr2six['H']= 7; 
  140.       pr2six['I']= 8; pr2six['J']= 9; pr2six['K']=10; pr2six['L']=11; 
  141.       pr2six['M']=12; pr2six['N']=13; pr2six['O']=14; pr2six['P']=15; 
  142.       pr2six['Q']=16; pr2six['R']=17; pr2six['S']=18; pr2six['T']=19; 
  143.       pr2six['U']=20; pr2six['V']=21; pr2six['W']=22; pr2six['X']=23; 
  144.       pr2six['Y']=24; pr2six['Z']=25; pr2six['a']=26; pr2six['b']=27; 
  145.       pr2six['c']=28; pr2six['d']=29; pr2six['e']=30; pr2six['f']=31; 
  146.       pr2six['g']=32; pr2six['h']=33; pr2six['i']=34; pr2six['j']=35; 
  147.       pr2six['k']=36; pr2six['l']=37; pr2six['m']=38; pr2six['n']=39; 
  148.       pr2six['o']=40; pr2six['p']=41; pr2six['q']=42; pr2six['r']=43; 
  149.       pr2six['s']=44; pr2six['t']=45; pr2six['u']=46; pr2six['v']=47; 
  150.       pr2six['w']=48; pr2six['x']=49; pr2six['y']=50; pr2six['z']=51; 
  151.       pr2six['0']=52; pr2six['1']=53; pr2six['2']=54; pr2six['3']=55; 
  152.       pr2six['4']=56; pr2six['5']=57; pr2six['6']=58; pr2six['7']=59; 
  153.       pr2six['8']=60; pr2six['9']=61; pr2six['+']=62; pr2six['/']=63;
  154. #endif
  155.    }
  156.    /* Strip leading whitespace. */
  157.    while(*bufcoded==' ' || *bufcoded == 't') bufcoded++;
  158.    /* Figure out how many characters are in the input buffer.
  159.     * If this would decode into more bytes than would fit into
  160.     * the output buffer, adjust the number of input bytes downwards.
  161.     */
  162.    bufin = bufcoded;
  163.    while(pr2six[(int)*(bufin++)] <= MAXVAL);
  164.    nprbytes = bufin - bufcoded - 1;
  165.    nbytesdecoded = ((nprbytes+3)/4) * 3;
  166.    if(nbytesdecoded > outbufsize) {
  167.       nprbytes = (outbufsize*4)/3;
  168.    }
  169.    bufin = bufcoded;
  170.    
  171.    while (nprbytes > 0) {
  172.       *(bufout++) = (unsigned char) (DEC(*bufin) << 2 | DEC(bufin[1]) >> 4);
  173.       *(bufout++) = (unsigned char) (DEC(bufin[1]) << 4 | DEC(bufin[2]) >> 2);
  174.       *(bufout++) = (unsigned char) (DEC(bufin[2]) << 6 | DEC(bufin[3]));
  175.       bufin += 4;
  176.       nprbytes -= 4;
  177.    }
  178.    
  179.    if(nprbytes & 03) {
  180.       if(pr2six[(int)bufin[-2]] > MAXVAL) {
  181.          nbytesdecoded -= 2;
  182.       } else {
  183.          nbytesdecoded -= 1;
  184.       }
  185.    }
  186.    return(nbytesdecoded);
  187. }