/usr/share/pyshared/bjsonrpc/handlers.py is in python-bjsonrpc 0.2.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | """
bjson/handlers.py
Asynchronous Bidirectional JSON-RPC protocol implementation over TCP/IP
Copyright (c) 2010 David Martinez Marti
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
3. Neither the name of copyright holders 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 COPYRIGHT HOLDERS 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.
"""
import re
from types import MethodType
from bjsonrpc.exceptions import ServerError
class BaseHandler(object):
"""
Base Class to publish remote methods. It is instantiated by *Connection*.
Example::
class MyHandler(bjson.handlers.BaseHandler):
def _setup(self):
# Initailize here.
self.c = 0
def echo(self,text):
print text
self.c += 1
def getcount(self): return c
"""
public_methods_pattern = r'^[a-z]\w+$'
# Pattern to know which methods should be automatically published
nonpublic_methods = [
"close",
"add_method",
"get_method",
]
# List of method names that never should be published
def __init__(self, connection):
self._conn = connection
if hasattr(self._conn,"connection"):
self._conn = self._conn.connection
if hasattr(self._conn,"_conn"):
self._conn = self._conn._conn
self._methods = {}
for mname in dir(self):
if re.match(self.public_methods_pattern, mname):
function = getattr(self, mname)
if isinstance(function, MethodType):
self.add_method(function)
self._setup()
def _setup(self):
"""
Empty method to ease inheritance. Overload it with your needs, it
will be called after __init__.
"""
pass
def _shutdown(self):
"""
Internal method called when the handler is going to be destroyed.
You should add cleanup code here. Remember to call the parent
function.
"""
pass # In the future, here we could have some internal clean-up code.
def close(self):
"""
Cleans some variables before the object is freed. _close is called
manually from connection whenever a handler is going to be deleted.
"""
self._methods = {}
def add_method(self, *args, **kwargs):
"""
Porcelain for publishing methods into the handler. Is used by the
constructor itself to publish all non-private functions.
"""
for method in args:
if method.__name__ in self.nonpublic_methods:
continue
try:
assert(method.__name__ not in self._methods)
except AssertionError:
raise NameError, "Method with name %s already in the class methods!" % (method.__name__)
self._methods[method.__name__] = method
for name, method in kwargs.iteritems():
if method.__name__ in self.nonpublic_methods:
continue
try:
assert(name not in self._methods)
except AssertionError:
raise NameError, "Method with name %s already in the class methods!" % (method.__name__)
self._methods[name] = method
def get_method(self, name):
"""
Porcelain for resolving method objects from their names. Used by
connections to get the apropiate method object.
"""
if name not in self._methods:
raise ServerError("Unknown method %s" % repr(name))
return self._methods[name]
class NullHandler(BaseHandler):
"""
Null version of BaseHandler which has nothing in it. Use this when you
don't want to publish any function.
"""
pass
|