OneShotAdapter.py :  » Web-Frameworks » Webware » Webware-1.0.2 » WebKit » Adapters » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Web Frameworks » Webware 
Webware » Webware 1.0.2 » WebKit » Adapters » OneShotAdapter.py
"""
OneShotAdapter.py

This is a special version of the CGIAdapter that doesn't require a persistent AppServer process. This is mostly useful during development when repeated changes to classes forces the developer to restart the app server to make the changes take effect.

An example, URL:

  http://127.0.0.1/OneShot.cgi/MyPage

"""

import sys, os, time

# 2000-08-07 ce: For accuracy purposes,
# we want to record the timestamp as early as possible:
_timestamp = time.time()

# 2000-08-07 ce: We have to reassign sys.stdout *immediately* because it's
# referred to as a default parameter value in Configurable.py which happens
# to be our ancestor class as well as the ancestor class of AppServer and
# Application. The Configurable method that uses sys.stdout for a default
# parameter value must not execute before we rewire sys.stdout. Tricky, tricky.
# 2000-12-04 ce: Couldn't this be fixed by Configurable taking None as the
# default and then using sys.stdout if arg==None?
try:
  from cStringIO import StringIO
except ImportError:
  from StringIO import StringIO
_real_stdout = sys.stdout
sys.stdout = _console = StringIO() # to capture the console output of the application

from Adapter import *
from MiscUtils.Funcs import charWrap
from WebUtils.Funcs import htmlEncode


class OneShotAdapter(Adapter):

  def defaultConfig(self):
    config = Adapter.defaultConfig(self)
    config.update({
      'ShowConsole':           0,
      'ConsoleWidth':          80,  # use 0 to turn off
      'ConsoleHangingIndent':  4,
    })
    return config

  def run(self):

    try:

      # MS Windows: no special translation of end-of-lines
      if os.name == 'nt':
        import msvcrt
        msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY)

      dict = {
        'format':  'CGI',
        'time':    _timestamp,
        # ce: a little tricky. We use marshal which only works
        # on built-in types, so we need environ's dictionary:
        'environ': os.environ.data,
        'input':   sys.stdin,
      }

      from WebKit import Profiler
      Profiler.startTime = time.time()

      print 'ONE SHOT MODE\n'

      from WebKit.OneShotAppServer import OneShotAppServer
      appSvr = OneShotAppServer(self._webKitDir)

      # It is important to call transaction.die() after using it, rather than
      # just letting it fall out of scope, to avoid circular references
      from WebKit.ASStreamOut import ASStreamOut
      rs = ASStreamOut()
      transaction = appSvr.dispatchRawRequest(dict, rs)
      rs.close()
      if transaction:
        transaction.die()
        del transaction

      appSvr.shutDown()
      appSvr = None

      print "AppServer run time %.2f seconds" % (time.time() - Profiler.startTime)

      sys.stdout = _real_stdout

      # MS Windows: no special translation of end-of-lines
      if os.name == 'nt':
        import msvcrt
        msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)

      response = rs._buffer
      if response:
        sys.stdout.write(response)
      else:
        sys.stdout.write('''Content-type: text/html\n
  <html><head><title>WebKit CGI Error</title><body>
  <h3>WebKit CGI Error</h3>
  <h4>No response from applicationserverh4 import 
  </body></html>\n''')

      if self.setting('ShowConsole'):
        # show the contents of the console, but only if we
        # are serving up an HTML file
        endheaders = response.find("\r\n\r\n")
        if endheaders is None:
          endheaders = response.find("\n\n")
        if not endheaders:
          print "No Headers Found"
          return
        headers = response[:endheaders].split("\n")
        entries = []
        for header in headers:
          if header:
            entries.append(header.split(":", 1))
        found = 0
        for name, value in entries:
          if name.lower() == 'content-type':
            found = 1
            break
        if found and value.strip().lower() == 'text/html':
          self.showConsole(_console.getvalue())
    except:
      import traceback
      sys.stderr.write('[%s] [error] WebKit.OneShotAdapter:'
        ' Error while responding to request (unknown)\n'
        % (time.asctime(time.localtime(time.time()))))
      sys.stderr.write('Python exception:\n')
      traceback.print_exc(file=sys.stderr)
      sys.stdout = _real_stdout
      output = ''.join(traceback.format_exception(*sys.exc_info()))
      output = htmlEncode(output)
      sys.stdout.write('''Content-type: text/html\n
<html><head><title>WebKit CGI Error</title><body>
<h3>WebKit CGI Error</h3>
<pre>%s</pre>
</body></html>\n''' % output)

  def showConsole(self, contents):
    width = self.setting('ConsoleWidth')
    if width:
      contents = charWrap(contents, self.setting('ConsoleWidth'),
        self.setting('ConsoleHangingIndent'))
    contents = htmlEncode(contents)
    sys.stdout.write('''<br><br><table>
<tr><td style="background-color: #eee">
<pre>%s</pre>
</td></tr></table>''' % contents)


def main(webKitDir=None):
  if webKitDir is None:
    import os
    webKitDir = os.path.dirname(os.getcwd())
  try:
    OneShotAdapter(webKitDir).run()
  except:
    import traceback
    sys.stderr.write('[%s] [error] OneShotAdapter:'
      ' Error while responding to request (unknown)\n'
      % (time.asctime(time.localtime(time.time()))))
    sys.stderr.write('Python exception:\n')
    traceback.print_exc(file=sys.stderr)
    output = ''.join(traceback.format_exception(*sys.exc_info()))
    output = htmlEncode(output)
    sys.stdout.write('''Content-type: text/html\n
<html><head><title>CGI Error</title><body>
<h3>CGI Error</h3>
<pre>%s</pre>
</body></html>\n''' % output)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.