| # Copyright 2009, Google Inc. |
| # All rights reserved. |
| # |
| # Redistribution and use in source and binary forms, with or without |
| # modification, are permitted provided that the following conditions are |
| # met: |
| # |
| # * Redistributions of source code must retain the above copyright |
| # notice, this list of conditions and the following disclaimer. |
| # * Redistributions in binary form must reproduce the above |
| # copyright notice, this list of conditions and the following disclaimer |
| # in the documentation and/or other materials provided with the |
| # distribution. |
| # * Neither the name of Google Inc. nor the names of its |
| # contributors may be used to endorse or promote products derived from |
| # this software without specific prior written permission. |
| # |
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
| |
| """PythonHeaderParserHandler for mod_pywebsocket. |
| |
| Apache HTTP Server and mod_python must be configured such that this |
| function is called to handle Web Socket request. |
| """ |
| |
| |
| from mod_python import apache |
| |
| import dispatch |
| import handshake |
| import logging |
| import util |
| |
| |
| # PythonOption to specify the handler root directory. |
| _PYOPT_HANDLER_ROOT = 'mod_pywebsocket.handler_root' |
| |
| # PythonOption to specify the handler scan directory. |
| # This must be a directory under the root directory. |
| # The default is the root directory. |
| _PYOPT_HANDLER_SCAN = 'mod_pywebsocket.handler_scan' |
| |
| # PythonOption to specify to allow draft75 handshake. |
| # The default is None (Off) |
| _PYOPT_ALLOW_DRAFT75 = 'mod_pywebsocket.allow_draft75' |
| |
| |
| class ApacheLogHandler(logging.Handler): |
| """Wrapper logging.Handler to emit log message to apache's error.log""" |
| _LEVELS = { |
| logging.DEBUG: apache.APLOG_DEBUG, |
| logging.INFO: apache.APLOG_INFO, |
| logging.WARNING: apache.APLOG_WARNING, |
| logging.ERROR: apache.APLOG_ERR, |
| logging.CRITICAL: apache.APLOG_CRIT, |
| } |
| def __init__(self, request=None): |
| logging.Handler.__init__(self) |
| self.log_error = apache.log_error |
| if request is not None: |
| self.log_error = request.log_error |
| |
| def emit(self, record): |
| apache_level = apache.APLOG_DEBUG |
| if record.levelno in ApacheLogHandler._LEVELS: |
| apache_level = ApacheLogHandler._LEVELS[record.levelno] |
| self.log_error(record.getMessage(), apache_level) |
| |
| |
| logging.getLogger("mod_pywebsocket").addHandler(ApacheLogHandler()) |
| |
| |
| def _create_dispatcher(): |
| _HANDLER_ROOT = apache.main_server.get_options().get( |
| _PYOPT_HANDLER_ROOT, None) |
| if not _HANDLER_ROOT: |
| raise Exception('PythonOption %s is not defined' % _PYOPT_HANDLER_ROOT, |
| apache.APLOG_ERR) |
| _HANDLER_SCAN = apache.main_server.get_options().get( |
| _PYOPT_HANDLER_SCAN, _HANDLER_ROOT) |
| dispatcher = dispatch.Dispatcher(_HANDLER_ROOT, _HANDLER_SCAN) |
| for warning in dispatcher.source_warnings(): |
| apache.log_error('mod_pywebsocket: %s' % warning, apache.APLOG_WARNING) |
| return dispatcher |
| |
| |
| # Initialize |
| _dispatcher = _create_dispatcher() |
| |
| |
| def headerparserhandler(request): |
| """Handle request. |
| |
| Args: |
| request: mod_python request. |
| |
| This function is named headerparserhandler because it is the default name |
| for a PythonHeaderParserHandler. |
| """ |
| |
| try: |
| allowDraft75 = apache.main_server.get_options().get( |
| _PYOPT_ALLOW_DRAFT75, None) |
| handshaker = handshake.Handshaker(request, _dispatcher, |
| allowDraft75=allowDraft75) |
| handshaker.do_handshake() |
| request.log_error('mod_pywebsocket: resource: %r' % request.ws_resource, |
| apache.APLOG_DEBUG) |
| try: |
| _dispatcher.transfer_data(request) |
| except Exception, e: |
| # Catch exception in transfer_data. |
| # In this case, handshake has been successful, so just log the |
| # exception and return apache.DONE |
| request.log_error('mod_pywebsocket: %s' % e, apache.APLOG_WARNING) |
| except handshake.HandshakeError, e: |
| # Handshake for ws/wss failed. |
| # But the request can be valid http/https request. |
| request.log_error('mod_pywebsocket: %s' % e, apache.APLOG_INFO) |
| return apache.DECLINED |
| except dispatch.DispatchError, e: |
| request.log_error('mod_pywebsocket: %s' % e, apache.APLOG_WARNING) |
| return apache.DECLINED |
| return apache.DONE # Return DONE such that no other handlers are invoked. |
| |
| |
| # vi:sts=4 sw=4 et |