Test.py
上传用户:gyjinxi
上传日期:2007-01-04
资源大小:159k
文件大小:15k
源码类别:

WEB邮件程序

开发平台:

Python

  1. #!/bin/sh
  2. """:"
  3. exec python $0 ${1+"$@"}
  4. """
  5. #" Waaaa
  6. ##############################################################################
  7. # Zope Public License (ZPL) Version 1.0
  8. # -------------------------------------
  9. # Copyright (c) Digital Creations.  All rights reserved.
  10. # This license has been certified as Open Source(tm).
  11. # Redistribution and use in source and binary forms, with or without
  12. # modification, are permitted provided that the following conditions are
  13. # met:
  14. # 1. Redistributions in source code must retain the above copyright
  15. #    notice, this list of conditions, and the following disclaimer.
  16. # 2. Redistributions in binary form must reproduce the above copyright
  17. #    notice, this list of conditions, and the following disclaimer in
  18. #    the documentation and/or other materials provided with the
  19. #    distribution.
  20. # 3. Digital Creations requests that attribution be given to Zope
  21. #    in any manner possible. Zope includes a "Powered by Zope"
  22. #    button that is installed by default. While it is not a license
  23. #    violation to remove this button, it is requested that the
  24. #    attribution remain. A significant investment has been put
  25. #    into Zope, and this effort will continue if the Zope community
  26. #    continues to grow. This is one way to assure that growth.
  27. # 4. All advertising materials and documentation mentioning
  28. #    features derived from or use of this software must display
  29. #    the following acknowledgement:
  30. #      "This product includes software developed by Digital Creations
  31. #      for use in the Z Object Publishing Environment
  32. #      (http://www.zope.org/)."
  33. #    In the event that the product being advertised includes an
  34. #    intact Zope distribution (with copyright and license included)
  35. #    then this clause is waived.
  36. # 5. Names associated with Zope or Digital Creations must not be used to
  37. #    endorse or promote products derived from this software without
  38. #    prior written permission from Digital Creations.
  39. # 6. Modified redistributions of any form whatsoever must retain
  40. #    the following acknowledgment:
  41. #      "This product includes software developed by Digital Creations
  42. #      for use in the Z Object Publishing Environment
  43. #      (http://www.zope.org/)."
  44. #    Intact (re-)distributions of any official Zope release do not
  45. #    require an external acknowledgement.
  46. # 7. Modifications are encouraged but must be packaged separately as
  47. #    patches to official Zope releases.  Distributions that do not
  48. #    clearly separate the patches from the original work must be clearly
  49. #    labeled as unofficial distributions.  Modifications which do not
  50. #    carry the name Zope may be packaged in any form, as long as they
  51. #    conform to all of the clauses above.
  52. # Disclaimer
  53. #   THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS ``AS IS'' AND ANY
  54. #   EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  55. #   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  56. #   PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL DIGITAL CREATIONS OR ITS
  57. #   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  58. #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  59. #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  60. #   USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  61. #   ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  62. #   OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  63. #   OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  64. #   SUCH DAMAGE.
  65. # This software consists of contributions made by Digital Creations and
  66. # many individuals on behalf of Digital Creations.  Specific
  67. # attributions are listed in the accompanying credits file.
  68. ##############################################################################
  69. __doc__='''Command-line Bobo
  70. Usage
  71.    bobo [options] module_path [path_info]
  72.    where:
  73.    module_path -- is a full path to a published module 
  74.    path_info -- Is the information after the module name that would
  75.          normally be specified in a GET URL, including a query string.
  76. Description
  77.    The command-line interface to Bobo provides a handy way to test,
  78.    debug, and profile Bobo without a web server.  
  79. Options
  80.    -u username:password        -- Supply HTTP authorization information
  81.    -e name=value               -- Supply environment variables.  Use a
  82.                                   seperate -e option for each variable 
  83.                                   specified.
  84.    -p profiler_data_file       -- Run under profiler control,
  85.                                   generating the profiler 
  86.                                   data file, profiler_data_file.
  87.    -t                          -- Compute the time required to
  88.                                   complete a request, in 
  89.                                   milliseconds.
  90.    -r n                        -- Specify a repeat count for timing or
  91.                                   profiling.
  92.    -d                          -- Run in debug mode.  With this
  93.                                   option, bobo will run under Python
  94.                                   debugger control.  Two useful
  95.                                   breakpoints are set.  The first is
  96.                                   at the beginning of the module
  97.                                   publishing code.  Steping through
  98.                                   this code shows how bobo finds
  99.                                   objects and obtains certain
  100.                                   meta-data.  The second breakpoint is
  101.                                   at the point just before the
  102.                                   published object is called.  To jump
  103.                                   to the second breakpoint, you must
  104.                                   enter 's' followed by a carriage
  105.                                   return to step into the module, then
  106.                                   enter a 'c' followed by a carriage
  107.                                   return to jump to the first
  108.                                   breakpoint and then another 'c'
  109.                                   followed by a carriage return to
  110.                                   jump to the point where the object
  111.                                   is called.  Finally, enter 's'
  112.                                   followed a carriage return.
  113.    -s                             Don't generate any output
  114. Examples
  115.    For example, to debug a published object (such as a method), spam,
  116.    the following might be entered::
  117.             bobo -d /prj/lib/python/mymod container/spam
  118.             s
  119.             c
  120.             c
  121.             s
  122. $Id: Test.py,v 1.35 1999/09/03 21:43:53 jim Exp $
  123. '''
  124. __version__='$Revision: 1.35 $'[11:-2]
  125. import sys, traceback, profile, os, getopt, string
  126. from time import clock
  127. repeat_count=100
  128. def main():
  129.     import sys, os, getopt, string
  130.     global repeat_count
  131.     try:
  132.         optlist,args=getopt.getopt(sys.argv[1:], 'dtu:p:r:e:s')
  133.         if len(args) < 1 or len(args) > 2: raise TypeError, None
  134.         elif len(args)==1: args=args[0],'/'
  135.         path_info=args[1]
  136.     except:
  137.         sys.stderr.write(__doc__)
  138.         sys.exit(-1)
  139.     silent=profile=u=debug=timeit=None
  140.     env={}
  141.     for opt,val in optlist:
  142.         if opt=='-d':
  143.             debug=1
  144.         if opt=='-s':
  145.             silent=1
  146.         if opt=='-t':
  147.             timeit=1
  148.         if opt=='-u':
  149.             u=val
  150.         elif opt=='-p':
  151.             profile=val
  152.         elif opt=='-r':
  153.             repeat_count=string.atoi(val)
  154.         elif opt=='-e':
  155.             opt=string.find(val,'=')
  156.             if opt <= 0: raise 'Invalid argument to -e', val
  157.             env[val[:opt]]=val[opt+1:]
  158.     if (debug or 0)+(timeit or 0)+(profile and 1 or 0) > 1:
  159.         raise 'Invalid options', 'only one of -p, -t, and -d are allowed' 
  160.     module=args[0]
  161.     publish(module,path_info,u=u,p=profile,d=debug,t=timeit,e=env,
  162.             s=silent)
  163. def time(function,*args,**kwargs):
  164.     repeat_range=range(repeat_count)
  165.     apply(function,args,kwargs)
  166.     t=clock()
  167.     for i in repeat_range:
  168.         apply(function,args,kwargs)
  169.     t=(clock()-t)*1000.0
  170.     return float(t)/len(repeat_range)
  171. def run(statement, *args):
  172.     import sys, profile, time
  173.     prof = profile.Profile(time.time)
  174.     try:
  175.         prof = prof.run(statement)
  176.     except SystemExit:
  177.         pass
  178.     if args:
  179.         prof.dump_stats(args[0])
  180.     else:
  181.         return prof.print_stats()
  182. def publish_module(module_name,
  183.                    stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr,
  184.                    environ=os.environ, debug=0, request=None, response=None,
  185.                    extra={}):
  186.     must_die=0
  187.     status=200
  188.     after_list=[None]
  189.     from Response import Response
  190.     from Request import Request
  191.     from Publish import publish
  192.     try:
  193.         try:
  194.             if response is None:
  195.                 response=Response(stdout=stdout, stderr=stderr)
  196.             else:
  197.                 stdout=response.stdout
  198.             if request is None:
  199.                 request=Request(stdin, environ, response)
  200.             for k, v in extra.items(): request[k]=v
  201.             response = publish(request, module_name, after_list, debug=debug)
  202.         except SystemExit, v:
  203.             if hasattr(sys, 'exc_info'): must_die=sys.exc_info()
  204.             else: must_die = SystemExit, v, sys.exc_info()[2]
  205.             response.exception(must_die)
  206.         except ImportError, v:
  207.             if type(v) is type(()) and len(v)==3: must_die=v
  208.             elif hasattr(sys, 'exc_info'): must_die=sys.exc_info()
  209.             else: must_die = SystemExit, v, sys.exc_info()[2]
  210.             response.exception(1, v)
  211.         except:
  212.             response.exception()
  213.             status=response.getStatus()
  214.         if response:
  215.             response=str(response)
  216.         if response: stdout.write(response)
  217.         # The module defined a post-access function, call it
  218.         if after_list[0] is not None: after_list[0]()
  219.     finally:
  220.         if request is not None: request.close()
  221.     if must_die:
  222.         try: raise must_die[0], must_die[1], must_die[2]
  223.         finally: must_die=None
  224.     return status
  225. def publish_module_pm(module_name,
  226.                       stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr,
  227.                       environ=os.environ, debug=0,extra={}):
  228.     from Response import Response
  229.     from Request import Request
  230.     from Publish import publish
  231.     after_list=[None]
  232.     response=Response(stdout=stdout, stderr=stderr)
  233.     request=Request(stdin, environ, response)
  234.     for k, v in extra.items(): request[k]=v
  235.     response = publish(request, module_name, after_list, debug=debug)
  236. try: from codehack import getlineno
  237. except:
  238.     def getlineno(code):
  239.         return code.co_firstlineno
  240. defaultModule='Main'
  241. def publish(script=None,path_info='/',
  242.             u=None,p=None,d=None,t=None,e=None,s=None,pm=0,
  243.             extra=None, request_method='GET',
  244.             stdin=sys.stdin):
  245.     profile=p
  246.     debug=d
  247.     timeit=t
  248.     silent=s
  249.     if e is None: e={}
  250.     if extra is None: extra={}
  251.     if script is None: script=defaultModule
  252.     if script[0]=='+': script='../../lib/python/'+script[1:]
  253.     env=e
  254.     env['SERVER_NAME']='bobo.server'
  255.     env['SERVER_PORT']='80'
  256.     env['REQUEST_METHOD']=request_method
  257.     env['REMOTE_ADDR']='204.183.226.81 '
  258.     env['REMOTE_HOST']='bobo.remote.host'
  259.     env['HTTP_USER_AGENT']='Bobo/%s' % __version__
  260.     env['HTTP_HOST']='127.0.0.1'
  261.     env['SERVER_SOFTWARE']='Bobo/%s' % __version__
  262.     env['SERVER_PROTOCOL']='HTTP/1.0 '
  263.     env['HTTP_ACCEPT']='image/gif, image/x-xbitmap, image/jpeg, */* '
  264.     env['SERVER_HOSTNAME']='bobo.server.host'
  265.     env['GATEWAY_INTERFACE']='CGI/1.1 '
  266.     env['SCRIPT_NAME']=script
  267.     p=string.split(path_info,'?')
  268.     if   len(p)==1: env['PATH_INFO'] = p[0]
  269.     elif len(p)==2: [env['PATH_INFO'], env['QUERY_STRING']]=p
  270.     else: raise TypeError, ''
  271.     if u:
  272.         import base64
  273.         env['HTTP_AUTHORIZATION']="Basic %s" % base64.encodestring(u)
  274.     dir,file=os.path.split(script)
  275.     cdir=os.path.join(dir,'Components')
  276.     sys.path[0:0]=[dir,cdir,os.path.join(cdir,sys.platform)]
  277.     # We delay import to here, in case Publish is part of the
  278.     # application distribution.
  279.     if profile:
  280.         import __main__
  281.         __main__.publish_module=publish_module
  282.         __main__.file=file
  283.         __main__.env=env
  284.         __main__.extra=extra
  285.         print profile
  286.         publish_module(file, environ=env, stdout=open('/dev/null','w'),
  287.                        extra=extra, stdin=stdin)
  288.         c=("for i in range(%s): "
  289.            "publish_module(file, environ=env, stdout=open('/dev/null','w'),"
  290.            "extra=extra)"
  291.            % repeat_count
  292.            )
  293.         if profile: run(c,profile)
  294.         else: run(c)
  295.     elif debug:
  296.         import Publish
  297.         from Publish import publish, call_object
  298.         import pdb
  299.         class Pdb(pdb.Pdb):
  300.             def do_pub(self,arg):
  301.                 if hasattr(self,'done_pub'):
  302.                     print 'pub already done.'
  303.                 else:
  304.                     self.do_s('')
  305.                     self.do_s('')
  306.                     self.do_c('')
  307.                     self.done_pub=1
  308.             def do_ob(self,arg):
  309.                 if hasattr(self,'done_ob'):
  310.                     print 'ob already done.'
  311.                 else:
  312.                     self.do_pub('')
  313.                     self.do_c('')
  314.                     self.done_ob=1
  315.         db=Pdb()
  316.         def fbreak(db,meth):
  317.             try: meth=meth.im_func
  318.             except AttributeError: pass
  319.             code=meth.func_code
  320.             lineno = getlineno(code)
  321.             filename = code.co_filename
  322.             db.set_break(filename,lineno)
  323.         fbreak(db,publish)
  324.         fbreak(db,call_object)
  325.         dbdata={'breakpoints':(), 'env':env, 'extra': extra}
  326.         b=''
  327.         try: b=open('.bobodb','r').read()
  328.         except: pass
  329.         if b: exec b in dbdata
  330.         for b in dbdata['breakpoints']:
  331.             if type(b) is type(()):
  332.                 apply(db.set_break,b)
  333.             else:
  334.                 fbreak(db,b)    
  335.         db.prompt='pdb> '
  336.         # db.set_continue()
  337.         print (
  338.         '* Type "s<cr>c<cr>" to jump to beginning of real publishing process.n'
  339.         '* Then type c<cr> to jump to the beginning of the URL traversaln'
  340.         '  algorithm.n'
  341.         '* Then type c<cr> to jump to published object call.'
  342.         )
  343.         db.run('publish_module(file,environ=env,debug=1,extra=extra,'
  344.                ' stdin=stdin)',
  345.                Publish.__dict__,
  346.                {'publish_module': publish_module,
  347.                 'file':file, 'env':env, 'extra': extra, 'stdin': stdin})
  348.     elif timeit:
  349.         stdout=sys.stdout
  350.         t= time(publish_module,file,
  351.                 stdout=open('/dev/null','w'), environ=env, extra=extra)
  352.         stdout.write('%s millisecondsn' % t)
  353.     elif pm:
  354.         stdout=sys.stdout
  355.         publish_module_pm(file, environ=env, stdout=stdout, extra=extra)
  356.         print 'n%sn' % ('_'*60)
  357.     else:
  358.         if silent: stdout=open('/dev/null','w')
  359.         else: stdout=sys.stdout
  360.         publish_module(file, environ=env, stdout=stdout, extra=extra)
  361.         print 'n%sn' % ('_'*60)
  362. if __name__ == "__main__": main()