Files
deb-python-eventlet/eventlet/saranwrap.py
2008-05-22 07:35:09 -07:00

690 lines
23 KiB
Python

"""\
@file saranwrap.py
@author Phoenix
@date 2007-07-13
@brief A simple, pickle based rpc mechanism which reflects python
objects and callables.
Copyright (c) 2007, Linden Research, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
This file provides classes and exceptions used for simple python level
remote procedure calls. This is achieved by intercepting the basic
getattr and setattr calls in a client proxy, which commnicates those
down to the server which will dispatch them to objects in it's process
space.
The basic protocol to get and set attributes is for the client proxy
to issue the command:
getattr $id $name
setattr $id $name $value
getitem $id $item
setitem $id $item $value
eq $id $rhs
del $id
When the get returns a callable, the client proxy will provide a
callable proxy which will invoke a remote procedure call. The command
issued from the callable proxy to server is:
call $id $name $args $kwargs
If the client supplies an id of None, then the get/set/call is applied
to the object(s) exported from the server.
The server will parse the get/set/call, take the action indicated, and
return back to the caller one of:
value $val
callable
object $id
exception $excp
To handle object expiration, the proxy will instruct the rpc server to
discard objects which are no longer in use. This is handled by
catching proxy deletion and sending the command:
del $id
The server will handle this by removing clearing it's own internal
references. This does not mean that the object will necessarily be
cleaned from the server, but no artificial references will remain
after successfully completing. On completion, the server will return
one of:
value None
exception $excp
The server also accepts a special command for debugging purposes:
status
Which will be intercepted by the server to write back:
status {...}
The wire protocol is to pickle the Request class in this file. The
request class is basically an action and a map of parameters'
"""
import os
from cPickle import dumps, loads
import struct
import sys
try:
set = set
frozenset = frozenset
except NameError:
from sets import Set as set, ImmutableSet as frozenset
from eventlet.processes import Process, DeadProcess
from eventlet import api, pools
# debugging hooks
_g_debug_mode = False
if _g_debug_mode:
import traceback
import tempfile
def pythonpath_sync():
"""
@brief apply the current sys.path to the environment variable PYTHONPATH, so that child processes have the same paths as the caller does.
"""
pypath = os.pathsep.join(sys.path)
os.environ['PYTHONPATH'] = pypath
def wrap(obj, dead_callback = None):
"""
@brief wrap in object in another process through a saranwrap proxy
@param object The object to wrap.
@param dead_callback A callable to invoke if the process exits."""
if type(obj).__name__ == 'module':
return wrap_module(obj.__name__, dead_callback)
pythonpath_sync()
if _g_debug_mode:
p = Process('python', [__file__, '--child', '--logfile', os.path.join(tempfile.gettempdir(), 'saranwrap.log')], dead_callback)
else:
p = Process('python', [__file__, '--child'], dead_callback)
prox = Proxy(ChildProcess(p, p))
prox.obj = obj
return prox.obj
def wrap_module(fqname, dead_callback = None):
"""
@brief wrap a module in another process through a saranwrap proxy
@param fqname The fully qualified name of the module.
@param dead_callback A callable to invoke if the process exits."""
pythonpath_sync()
global _g_debug_mode
if _g_debug_mode:
p = Process('python', [__file__, '--module', fqname, '--logfile', os.path.join(tempfile.gettempdir(), 'saranwrap.log')], dead_callback)
else:
p = Process('python', [__file__, '--module', fqname,], dead_callback)
prox = Proxy(ChildProcess(p,p))
return prox
def status(proxy):
"""
@brief get the status from the server through a proxy
@param proxy a saranwrap.Proxy object connected to a server."""
return proxy.__local_dict['_cp'].make_request(Request('status', {}))
class BadResponse(Exception):
""""This exception is raised by an saranwrap client when it could
parse but cannot understand the response from the server."""
pass
class BadRequest(Exception):
""""This exception is raised by a saranwrap server when it could parse
but cannot understand the response from the server."""
pass
class UnrecoverableError(Exception):
pass
class Request(object):
"@brief A wrapper class for proxy requests to the server."
def __init__(self, action, param):
self._action = action
self._param = param
def __str__(self):
return "Request `"+self._action+"` "+str(self._param)
def __getitem__(self, name):
return self._param[name]
def get(self, name, default = None):
try:
return self[name]
except KeyError:
return default
def action(self):
return self._action
def _read_lp_hunk(stream):
len_bytes = stream.read(4)
length = struct.unpack('I', len_bytes)[0]
body = stream.read(length)
return body
def _read_response(id, attribute, input, cp):
"""@brief local helper method to read respones from the rpc server."""
try:
str = _read_lp_hunk(input)
_prnt(`str`)
response = loads(str)
except (AttributeError, DeadProcess), e:
raise UnrecoverableError(e)
_prnt("response: %s" % response)
if response[0] == 'value':
return response[1]
elif response[0] == 'callable':
return CallableProxy(id, attribute, cp)
elif response[0] == 'object':
return ObjectProxy(cp, response[1])
elif response[0] == 'exception':
exp = response[1]
raise exp
else:
raise BadResponse(response[0])
def _write_lp_hunk(stream, hunk):
write_length = struct.pack('I', len(hunk))
stream.write(write_length + hunk)
if hasattr(stream, 'flush'):
stream.flush()
def _write_request(param, output):
_prnt("request: %s" % param)
str = dumps(param)
_write_lp_hunk(output, str)
def _is_local(attribute):
"Return true if the attribute should be handled locally"
# return attribute in ('_in', '_out', '_id', '__getattribute__', '__setattr__', '__dict__')
# good enough for now. :)
if '__local_dict' in attribute:
return True
return False
def _prnt(message):
global _g_debug_mode
if _g_debug_mode:
print message
_g_logfile = None
def _log(message):
global _g_logfile
if _g_logfile:
_g_logfile.write(str(os.getpid()) + ' ' + message)
_g_logfile.write('\n')
_g_logfile.flush()
def _unmunge_attr_name(name):
""" Sometimes attribute names come in with classname prepended, not sure why.
This function removes said classname, because we're huge hackers and we didn't
find out what the true right thing to do is. *TODO: find out. """
if(name.startswith('_Proxy')):
name = name[len('_Proxy'):]
if(name.startswith('_ObjectProxy')):
name = name[len('_ObjectProxy'):]
return name
class ChildProcess(object):
"""\
This class wraps a remote python process, presumably available
in an instance of an Server.
"""
def __init__(self, instr, outstr, dead_list = None):
"""
@param instr a file-like object which supports read().
@param outstr a file-like object which supports write() and flush().
@param dead_list a list of ids of remote objects that are dead
"""
# default dead_list inside the function because all objects in method
# argument lists are init-ed only once globally
_prnt("ChildProcess::__init__")
if dead_list is None:
dead_list = set()
self._dead_list = dead_list
self._in = instr
self._out = outstr
self._lock = pools.TokenPool(max_size=1)
def make_request(self, request, attribute=None):
_id = request.get('id')
t = self._lock.get()
try:
_write_request(request, self._out)
retval = _read_response(_id, attribute, self._in, self)
finally:
self._lock.put(t)
return retval
class Proxy(object):
"""\
@class Proxy
@brief This is the class you will typically use as a client to a child
process.
Simply instantiate one around a file-like interface and start
calling methods on the thing that is exported. The dir() builtin is
not supported, so you have to know what has been exported.
"""
def __init__(self, cp):
"""@param A ChildProcess instance that wraps the i/o to the child process.
"""
#_prnt("Proxy::__init__")
self.__local_dict = dict(
_cp = cp,
_id = None)
def __getattribute__(self, attribute):
#_prnt("Proxy::__getattr__: %s" % attribute)
if _is_local(attribute):
# call base class getattribute so we actually get the local variable
attribute = _unmunge_attr_name(attribute)
return super(Proxy, self).__getattribute__(attribute)
elif attribute in ('__deepcopy__', '__copy__'):
# redirect copy function calls to our own versions instead of
# to the proxied object
return super(Proxy, self).__getattribute__('__deepcopy__')
else:
my_cp = self.__local_dict['_cp']
my_id = self.__local_dict['_id']
_dead_list = my_cp._dead_list
for dead_object in _dead_list.copy():
request = Request('del', {'id':dead_object})
my_cp.make_request(request)
_dead_list.remove(dead_object)
# Pass all public attributes across to find out if it is
# callable or a simple attribute.
request = Request('getattr', {'id':my_id, 'attribute':attribute})
return my_cp.make_request(request, attribute=attribute)
def __setattr__(self, attribute, value):
#_prnt("Proxy::__setattr__: %s" % attribute)
if _is_local(attribute):
# It must be local to this actual object, so we have to apply
# it to the dict in a roundabout way
attribute = _unmunge_attr_name(attribute)
super(Proxy, self).__getattribute__('__dict__')[attribute]=value
else:
my_cp = self.__local_dict['_cp']
my_id = self.__local_dict['_id']
# Pass the set attribute across
request = Request('setattr', {'id':my_id, 'attribute':attribute, 'value':value})
return my_cp.make_request(request, attribute=attribute)
class ObjectProxy(Proxy):
"""\
@class ObjectProxy
@brief This class wraps a remote object in the Server
This class will be created during normal operation, and users should
not need to deal with this class directly."""
def __init__(self, cp, _id):
"""\
@param cp A ChildProcess object that wraps the i/o of a child process.
@param _id an identifier for the remote object. humans do not provide this.
"""
Proxy.__init__(self, cp)
self.__local_dict['_id'] = _id
#_prnt("ObjectProxy::__init__ %s" % _id)
def __del__(self):
my_id = self.__local_dict['_id']
#_prnt("ObjectProxy::__del__ %s" % my_id)
self.__local_dict['_cp']._dead_list.add(my_id)
def __getitem__(self, key):
my_cp = self.__local_dict['_cp']
my_id = self.__local_dict['_id']
request = Request('getitem', {'id':my_id, 'key':key})
return my_cp.make_request(request, attribute=key)
def __setitem__(self, key, value):
my_cp = self.__local_dict['_cp']
my_id = self.__local_dict['_id']
request = Request('setitem', {'id':my_id, 'key':key, 'value':value})
return my_cp.make_request(request, attribute=key)
def __eq__(self, rhs):
my_cp = self.__local_dict['_cp']
my_id = self.__local_dict['_id']
request = Request('eq', {'id':my_id, 'rhs':rhs.__local_dict['_id']})
return my_cp.make_request(request)
def __repr__(self):
# apparently repr(obj) skips the whole getattribute thing and just calls __repr__
# directly. Therefore we just pass it through the normal call pipeline, and
# tack on a little header so that you can tell it's an object proxy.
val = self.__repr__()
return "saran:%s" % val
def __str__(self):
# see description for __repr__, because str(obj) works the same. We don't
# tack anything on to the return value here because str values are used as data.
return self.__str__()
def __nonzero__(self):
# bool(obj) is another method that skips __getattribute__. There's no good way to just pass
# the method on, so we use a special message.
my_cp = self.__local_dict['_cp']
my_id = self.__local_dict['_id']
request = Request('nonzero', {'id':my_id})
return my_cp.make_request(request)
def __len__(self):
# see description for __repr__, len(obj) is the same.
return self.__len__()
def __deepcopy__(self, memo=None):
"""Copies the entire external object and returns its
value. Will only work if the remote object is pickleable."""
my_cp = self.__local_dict['_cp']
my_id = self.__local_dict['_id']
request = Request('copy', {'id':my_id})
return my_cp.make_request(request)
# since the remote object is being serialized whole anyway,
# there's no semantic difference between copy and deepcopy
__copy__ = __deepcopy__
def proxied_type(self):
if type(self) is not ObjectProxy:
return type(self)
my_cp = self.__local_dict['_cp']
my_id = self.__local_dict['_id']
request = Request('type', {'id':my_id})
return my_cp.make_request(request)
class CallableProxy(object):
"""\
@class CallableProxy
@brief This class wraps a remote function in the Server
This class will be created by an Proxy during normal operation,
and users should not need to deal with this class directly."""
def __init__(self, object_id, name, cp):
#_prnt("CallableProxy::__init__: %s, %s" % (object_id, name))
self._object_id = object_id
self._name = name
self._cp = cp
def __call__(self, *args, **kwargs):
#_prnt("CallableProxy::__call__: %s, %s" % (args, kwargs))
# Pass the call across. We never build a callable without
# having already checked if the method starts with '_' so we
# can safely pass this one to the remote object.
#_prnt("calling %s %s" % (self._object_id, self._name)
request = Request('call', {'id':self._object_id, 'name':self._name, 'args':args, 'kwargs':kwargs})
return self._cp.make_request(request, attribute=self._name)
class Server(object):
def __init__(self, input, output, export):
"""\
@param input a file-like object which supports read().
@param output a file-like object which supports write() and flush().
@param export an object, function, or map which is exported to clients
when the id is None."""
#_log("Server::__init__")
self._in = input
self._out = output
self._export = export
self._next_id = 1
self._objects = {}
def handle_status(self, obj, req):
return {
'object_count':len(self._objects),
'next_id':self._next_id,
'pid':os.getpid()}
def handle_getattr(self, obj, req):
try:
return getattr(obj, req['attribute'])
except AttributeError, e:
if hasattr(obj, "__getitem__"):
return obj[req['attribute']]
else:
raise e
#_log('getattr: %s' % str(response))
def handle_setattr(self, obj, req):
try:
return setattr(obj, req['attribute'], req['value'])
except AttributeError, e:
if hasattr(obj, "__setitem__"):
return obj.__setitem__(req['attribute'], req['value'])
else:
raise e
def handle_getitem(self, obj, req):
return obj[req['key']]
def handle_setitem(self, obj, req):
obj[req['key']] = req['value']
return None # *TODO figure out what the actual return value of __setitem__ should be
def handle_eq(self, obj, req):
#_log("__eq__ %s %s" % (obj, req))
rhs = None
try:
rhs = self._objects[req['rhs']]
except KeyError, e:
return False
return (obj == rhs)
def handle_call(self, obj, req):
#_log("calling %s " % (req['name']))
try:
fn = getattr(obj, req['name'])
except AttributeError, e:
if hasattr(obj, "__setitem__"):
fn = obj[req['name']]
else:
raise e
return fn(*req['args'],**req['kwargs'])
def handle_del(self, obj, req):
id = req['id']
_log("del %s from %s" % (id, self._objects))
# *TODO what does __del__ actually return?
del self._objects[id]
return None
def handle_type(self, obj, req):
return type(obj)
def handle_nonzero(self, obj, req):
return bool(obj)
def handle_copy(self, obj, req):
return obj
def loop(self):
"""@brief Loop forever and respond to all requests."""
_log("Server::loop")
while True:
try:
try:
str = _read_lp_hunk(self._in)
except EOFError:
sys.exit(0) # normal exit
request = loads(str)
_log("request: %s (%s)" % (request, self._objects))
req = request
id = None
obj = None
try:
id = req['id']
if id:
id = int(id)
obj = self._objects[id]
#_log("id, object: %d %s" % (id, obj))
except Exception, e:
#_log("Exception %s" % str(e))
pass
if obj is None or id is None:
id = None
obj = self._export
#_log("found object %s" % str(obj))
# Handle the request via a method with a special name on the server
handler_name = 'handle_%s' % request.action()
try:
handler = getattr(self, handler_name)
except AttributeError:
raise BadRequest, request.action()
response = handler(obj, request)
# figure out what to do with the response, and respond
# apprpriately.
if request.action() in ['status', 'type', 'copy']:
# have to handle these specially since we want to
# pickle up the actual value and not return a proxy
self.respond(['value', response])
elif callable(response):
#_log("callable %s" % response)
self.respond(['callable'])
elif self.is_value(response):
self.respond(['value', response])
else:
self._objects[self._next_id] = response
#_log("objects: %s" % str(self._objects))
self.respond(['object', self._next_id])
self._next_id += 1
except SystemExit, e:
raise e
except Exception, e:
self.write_exception(e)
except:
self.write_exception(sys.exc_info()[0])
def is_value(self, value):
"""\
@brief Test if value should be serialized as a simple dataset.
@param value The value to test.
@return Returns true if value is a simple serializeable set of data.
"""
return type(value) in (str,unicode,int,float,long,bool,type(None))
def respond(self, body):
_log("responding with: %s" % body)
#_log("objects: %s" % self._objects)
s = dumps(body)
_log(`s`)
str = _write_lp_hunk(self._out, s)
def write_exception(self, e):
"""@brief Helper method to respond with an exception."""
#_log("exception: %s" % sys.exc_info()[0])
# TODO: serialize traceback using generalization of code from mulib.htmlexception
self.respond(['exception', e])
global _g_debug_mode
if _g_debug_mode:
_log("traceback: %s" % traceback.format_tb(sys.exc_info()[2]))
# test function used for testing that final except clause
def raise_a_weird_error():
raise "oh noes you can raise a string"
# test function used for testing return of unpicklable exceptions
def raise_an_unpicklable_error():
class Unpicklable(Exception):
pass
raise Unpicklable()
# test function used for testing return of picklable exceptions
def raise_standard_error():
raise FloatingPointError()
# test function to make sure print doesn't break the wrapper
def print_string(str):
print str
# test function to make sure printing on stdout doesn't break the
# wrapper
def err_string(str):
print >>sys.stderr, str
def main():
import optparse
parser = optparse.OptionParser(
usage="usage: %prog [options]",
description="Simple saranwrap.Server wrapper")
parser.add_option(
'-c', '--child', default=False, action='store_true',
help='Wrap an object serialized via setattr.')
parser.add_option(
'-m', '--module', type='string', dest='module', default=None,
help='a module to load and export.')
parser.add_option(
'-l', '--logfile', type='string', dest='logfile', default=None,
help='file to log to.')
options, args = parser.parse_args()
global _g_logfile
if options.logfile:
_g_logfile = open(options.logfile, 'a')
if options.module:
export = api.named(options.module)
server = Server(sys.stdin, sys.stdout, export)
elif options.child:
server = Server(sys.stdin, sys.stdout, {})
# *HACK: some modules may emit on stderr, which breaks everything.
class NullSTDOut(object):
def noop(*args):
pass
write = noop
read = noop
flush = noop
sys.stderr = NullSTDOut()
sys.stdout = NullSTDOut()
# Loop until EOF
server.loop()
if _g_logfile:
_g_logfile.close()
if __name__ == "__main__":
main()