home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / System / quopri.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2005-11-09  |  6.6 KB  |  285 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Conversions to/from quoted-printable transport encoding as per RFC 1521.'''
  5. __all__ = [
  6.     'encode',
  7.     'decode',
  8.     'encodestring',
  9.     'decodestring']
  10. ESCAPE = '='
  11. MAXLINESIZE = 76
  12. HEX = '0123456789ABCDEF'
  13. EMPTYSTRING = ''
  14.  
  15. try:
  16.     from binascii import a2b_qp, b2a_qp
  17. except ImportError:
  18.     a2b_qp = None
  19.     b2a_qp = None
  20.  
  21.  
  22. def needsquoting(c, quotetabs, header):
  23.     """Decide whether a particular character needs to be quoted.
  24.  
  25.     The 'quotetabs' flag indicates whether embedded tabs and spaces should be
  26.     quoted.  Note that line-ending tabs and spaces are always encoded, as per
  27.     RFC 1521.
  28.     """
  29.     if c in ' \t':
  30.         return quotetabs
  31.     
  32.     if c == '_':
  33.         return header
  34.     
  35.     if not c == ESCAPE:
  36.         pass
  37.     return not None if c <= c else c <= '~'
  38.  
  39.  
  40. def quote(c):
  41.     '''Quote a single character.'''
  42.     i = ord(c)
  43.     return ESCAPE + HEX[i // 16] + HEX[i % 16]
  44.  
  45.  
  46. def encode(input, output, quotetabs, header = 0):
  47.     """Read 'input', apply quoted-printable encoding, and write to 'output'.
  48.  
  49.     'input' and 'output' are files with readline() and write() methods.
  50.     The 'quotetabs' flag indicates whether embedded tabs and spaces should be
  51.     quoted.  Note that line-ending tabs and spaces are always encoded, as per
  52.     RFC 1521.
  53.     The 'header' flag indicates whether we are encoding spaces as _ as per
  54.     RFC 1522.
  55.     """
  56.     if b2a_qp is not None:
  57.         data = input.read()
  58.         odata = b2a_qp(data, quotetabs = quotetabs, header = header)
  59.         output.write(odata)
  60.         return None
  61.     
  62.     
  63.     def write(s, output = output, lineEnd = '\n'):
  64.         if s and s[-1:] in ' \t':
  65.             output.write(s[:-1] + quote(s[-1]) + lineEnd)
  66.         elif s == '.':
  67.             output.write(quote(s) + lineEnd)
  68.         else:
  69.             output.write(s + lineEnd)
  70.  
  71.     prevline = None
  72.     while None:
  73.         line = input.readline()
  74.         if not line:
  75.             break
  76.         
  77.         outline = []
  78.         stripped = ''
  79.         if line[-1:] == '\n':
  80.             line = line[:-1]
  81.             stripped = '\n'
  82.         
  83.         for c in line:
  84.             if needsquoting(c, quotetabs, header):
  85.                 c = quote(c)
  86.             
  87.             if header and c == ' ':
  88.                 outline.append('_')
  89.                 continue
  90.             outline.append(c)
  91.         
  92.         if prevline is not None:
  93.             write(prevline)
  94.         
  95.         thisline = EMPTYSTRING.join(outline)
  96.         while len(thisline) > MAXLINESIZE:
  97.             write(thisline[:MAXLINESIZE - 1], lineEnd = '=\n')
  98.             thisline = thisline[MAXLINESIZE - 1:]
  99.         prevline = thisline
  100.     if prevline is not None:
  101.         write(prevline, lineEnd = stripped)
  102.     
  103.  
  104.  
  105. def encodestring(s, quotetabs = 0, header = 0):
  106.     if b2a_qp is not None:
  107.         return b2a_qp(s, quotetabs = quotetabs, header = header)
  108.     
  109.     StringIO = StringIO
  110.     import cStringIO
  111.     infp = StringIO(s)
  112.     outfp = StringIO()
  113.     encode(infp, outfp, quotetabs, header)
  114.     return outfp.getvalue()
  115.  
  116.  
  117. def decode(input, output, header = 0):
  118.     """Read 'input', apply quoted-printable decoding, and write to 'output'.
  119.     'input' and 'output' are files with readline() and write() methods.
  120.     If 'header' is true, decode underscore as space (per RFC 1522)."""
  121.     if a2b_qp is not None:
  122.         data = input.read()
  123.         odata = a2b_qp(data, header = header)
  124.         output.write(odata)
  125.         return None
  126.     
  127.     new = ''
  128.     while None:
  129.         line = input.readline()
  130.         if not line:
  131.             break
  132.         
  133.         i = 0
  134.         n = len(line)
  135.         if n > 0 and line[n - 1] == '\n':
  136.             partial = 0
  137.             n = n - 1
  138.             while n > 0 and line[n - 1] in ' \t\r':
  139.                 n = n - 1
  140.         else:
  141.             partial = 1
  142.         while i < n:
  143.             c = line[i]
  144.             if c == '_' and header:
  145.                 new = new + ' '
  146.                 i = i + 1
  147.                 continue
  148.             if c != ESCAPE:
  149.                 new = new + c
  150.                 i = i + 1
  151.                 continue
  152.             if i + 1 == n and not partial:
  153.                 partial = 1
  154.                 break
  155.                 continue
  156.             if i + 1 < n and line[i + 1] == ESCAPE:
  157.                 new = new + ESCAPE
  158.                 i = i + 2
  159.                 continue
  160.             if i + 2 < n and ishex(line[i + 1]) and ishex(line[i + 2]):
  161.                 new = new + chr(unhex(line[i + 1:i + 3]))
  162.                 i = i + 3
  163.                 continue
  164.             new = new + c
  165.             i = i + 1
  166.         if not partial:
  167.             output.write(new + '\n')
  168.             new = ''
  169.             continue
  170.     if new:
  171.         output.write(new)
  172.     
  173.  
  174.  
  175. def decodestring(s, header = 0):
  176.     if a2b_qp is not None:
  177.         return a2b_qp(s, header = header)
  178.     
  179.     StringIO = StringIO
  180.     import cStringIO
  181.     infp = StringIO(s)
  182.     outfp = StringIO()
  183.     decode(infp, outfp, header = header)
  184.     return outfp.getvalue()
  185.  
  186.  
  187. def ishex(c):
  188.     """Return true if the character 'c' is a hexadecimal digit."""
  189.     if c <= c:
  190.         pass
  191.     elif not c <= '9':
  192.         if c <= c:
  193.             pass
  194.         elif not c <= 'f':
  195.             pass
  196.     return None if c <= c else c <= 'F'
  197.  
  198.  
  199. def unhex(s):
  200.     '''Get the integer value of a hexadecimal number.'''
  201.     bits = 0
  202.     for c in s:
  203.         if c <= c:
  204.             pass
  205.         elif c <= '9':
  206.             i = ord('0')
  207.         elif c <= c:
  208.             pass
  209.         elif c <= 'f':
  210.             i = ord('a') - 10
  211.         elif c <= c:
  212.             pass
  213.         elif c <= 'F':
  214.             i = ord('A') - 10
  215.         else:
  216.             break
  217.         bits = bits * 16 + (ord(c) - i)
  218.     
  219.     return bits
  220.  
  221.  
  222. def main():
  223.     import sys
  224.     import getopt
  225.     
  226.     try:
  227.         (opts, args) = getopt.getopt(sys.argv[1:], 'td')
  228.     except getopt.error:
  229.         msg = None
  230.         sys.stdout = sys.stderr
  231.         print msg
  232.         print 'usage: quopri [-t | -d] [file] ...'
  233.         print '-t: quote tabs'
  234.         print '-d: decode; default encode'
  235.         sys.exit(2)
  236.  
  237.     deco = 0
  238.     tabs = 0
  239.     for o, a in opts:
  240.         if o == '-t':
  241.             tabs = 1
  242.         
  243.         if o == '-d':
  244.             deco = 1
  245.             continue
  246.     
  247.     if tabs and deco:
  248.         sys.stdout = sys.stderr
  249.         print '-t and -d are mutually exclusive'
  250.         sys.exit(2)
  251.     
  252.     if not args:
  253.         args = [
  254.             '-']
  255.     
  256.     sts = 0
  257.     for file in args:
  258.         if file == '-':
  259.             fp = sys.stdin
  260.         else:
  261.             
  262.             try:
  263.                 fp = open(file)
  264.             except IOError:
  265.                 msg = None
  266.                 sys.stderr.write("%s: can't open (%s)\n" % (file, msg))
  267.                 sts = 1
  268.                 continue
  269.  
  270.         if deco:
  271.             decode(fp, sys.stdout)
  272.         else:
  273.             encode(fp, sys.stdout, tabs)
  274.         if fp is not sys.stdin:
  275.             fp.close()
  276.             continue
  277.     
  278.     if sts:
  279.         sys.exit(sts)
  280.     
  281.  
  282. if __name__ == '__main__':
  283.     main()
  284.  
  285.