Ausgabe der neuen DB Einträge
This commit is contained in:
parent
bad48e1627
commit
cfbbb9ee3d
2399 changed files with 843193 additions and 43 deletions
|
|
@ -0,0 +1,6 @@
|
|||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""
|
||||
Twisted Persisted: Utilities for managing persistence.
|
||||
"""
|
||||
625
venv/lib/python3.9/site-packages/twisted/persisted/aot.py
Normal file
625
venv/lib/python3.9/site-packages/twisted/persisted/aot.py
Normal file
|
|
@ -0,0 +1,625 @@
|
|||
# -*- test-case-name: twisted.test.test_persisted -*-
|
||||
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""
|
||||
AOT: Abstract Object Trees
|
||||
The source-code-marshallin'est abstract-object-serializin'est persister
|
||||
this side of Marmalade!
|
||||
"""
|
||||
|
||||
from __future__ import division, absolute_import
|
||||
|
||||
import types, re
|
||||
|
||||
try:
|
||||
from tokenize import generate_tokens as tokenize
|
||||
except ImportError:
|
||||
from tokenize import tokenize
|
||||
|
||||
|
||||
try:
|
||||
import copy_reg
|
||||
except:
|
||||
import copyreg as copy_reg
|
||||
|
||||
from twisted.python import reflect, log
|
||||
from twisted.persisted import crefutil
|
||||
from twisted.python.compat import unicode, _PY3, _constructMethod
|
||||
|
||||
###########################
|
||||
# Abstract Object Classes #
|
||||
###########################
|
||||
|
||||
#"\0" in a getSource means "insert variable-width indention here".
|
||||
#see `indentify'.
|
||||
|
||||
class Named:
|
||||
def __init__(self, name):
|
||||
self.name = name
|
||||
|
||||
class Class(Named):
|
||||
def getSource(self):
|
||||
return "Class(%r)" % self.name
|
||||
|
||||
class Function(Named):
|
||||
def getSource(self):
|
||||
return "Function(%r)" % self.name
|
||||
|
||||
class Module(Named):
|
||||
def getSource(self):
|
||||
return "Module(%r)" % self.name
|
||||
|
||||
|
||||
class InstanceMethod:
|
||||
def __init__(self, name, klass, inst):
|
||||
if not (isinstance(inst, Ref) or isinstance(inst, Instance) or isinstance(inst, Deref)):
|
||||
raise TypeError("%s isn't an Instance, Ref, or Deref!" % inst)
|
||||
self.name = name
|
||||
self.klass = klass
|
||||
self.instance = inst
|
||||
|
||||
def getSource(self):
|
||||
return "InstanceMethod(%r, %r, \n\0%s)" % (self.name, self.klass, prettify(self.instance))
|
||||
|
||||
|
||||
class _NoStateObj:
|
||||
pass
|
||||
NoStateObj = _NoStateObj()
|
||||
|
||||
_SIMPLE_BUILTINS = [
|
||||
bool, bytes, unicode, int, float, complex, type(None),
|
||||
slice, type(Ellipsis)
|
||||
]
|
||||
|
||||
try:
|
||||
_SIMPLE_BUILTINS.append(long)
|
||||
except NameError:
|
||||
pass
|
||||
|
||||
class Instance:
|
||||
def __init__(self, className, __stateObj__=NoStateObj, **state):
|
||||
if not isinstance(className, str):
|
||||
raise TypeError("%s isn't a string!" % className)
|
||||
self.klass = className
|
||||
if __stateObj__ is not NoStateObj:
|
||||
self.state = __stateObj__
|
||||
self.stateIsDict = 0
|
||||
else:
|
||||
self.state = state
|
||||
self.stateIsDict = 1
|
||||
|
||||
def getSource(self):
|
||||
#XXX make state be foo=bar instead of a dict.
|
||||
if self.stateIsDict:
|
||||
stateDict = self.state
|
||||
elif isinstance(self.state, Ref) and isinstance(self.state.obj, dict):
|
||||
stateDict = self.state.obj
|
||||
else:
|
||||
stateDict = None
|
||||
if stateDict is not None:
|
||||
try:
|
||||
return "Instance(%r, %s)" % (self.klass, dictToKW(stateDict))
|
||||
except NonFormattableDict:
|
||||
return "Instance(%r, %s)" % (self.klass, prettify(stateDict))
|
||||
return "Instance(%r, %s)" % (self.klass, prettify(self.state))
|
||||
|
||||
class Ref:
|
||||
|
||||
def __init__(self, *args):
|
||||
#blargh, lame.
|
||||
if len(args) == 2:
|
||||
self.refnum = args[0]
|
||||
self.obj = args[1]
|
||||
elif not args:
|
||||
self.refnum = None
|
||||
self.obj = None
|
||||
|
||||
def setRef(self, num):
|
||||
if self.refnum:
|
||||
raise ValueError("Error setting id %s, I already have %s" % (num, self.refnum))
|
||||
self.refnum = num
|
||||
|
||||
def setObj(self, obj):
|
||||
if self.obj:
|
||||
raise ValueError("Error setting obj %s, I already have %s" % (obj, self.obj))
|
||||
self.obj = obj
|
||||
|
||||
def getSource(self):
|
||||
if self.obj is None:
|
||||
raise RuntimeError("Don't try to display me before setting an object on me!")
|
||||
if self.refnum:
|
||||
return "Ref(%d, \n\0%s)" % (self.refnum, prettify(self.obj))
|
||||
return prettify(self.obj)
|
||||
|
||||
|
||||
class Deref:
|
||||
def __init__(self, num):
|
||||
self.refnum = num
|
||||
|
||||
def getSource(self):
|
||||
return "Deref(%d)" % self.refnum
|
||||
|
||||
__repr__ = getSource
|
||||
|
||||
|
||||
class Copyreg:
|
||||
def __init__(self, loadfunc, state):
|
||||
self.loadfunc = loadfunc
|
||||
self.state = state
|
||||
|
||||
def getSource(self):
|
||||
return "Copyreg(%r, %s)" % (self.loadfunc, prettify(self.state))
|
||||
|
||||
|
||||
|
||||
###############
|
||||
# Marshalling #
|
||||
###############
|
||||
|
||||
|
||||
def getSource(ao):
|
||||
"""Pass me an AO, I'll return a nicely-formatted source representation."""
|
||||
return indentify("app = " + prettify(ao))
|
||||
|
||||
|
||||
class NonFormattableDict(Exception):
|
||||
"""A dictionary was not formattable.
|
||||
"""
|
||||
|
||||
r = re.compile('[a-zA-Z_][a-zA-Z0-9_]*$')
|
||||
|
||||
def dictToKW(d):
|
||||
out = []
|
||||
items = list(d.items())
|
||||
items.sort()
|
||||
for k, v in items:
|
||||
if not isinstance(k, str):
|
||||
raise NonFormattableDict("%r ain't a string" % k)
|
||||
if not r.match(k):
|
||||
raise NonFormattableDict("%r ain't an identifier" % k)
|
||||
out.append(
|
||||
"\n\0%s=%s," % (k, prettify(v))
|
||||
)
|
||||
return ''.join(out)
|
||||
|
||||
|
||||
def prettify(obj):
|
||||
if hasattr(obj, 'getSource'):
|
||||
return obj.getSource()
|
||||
else:
|
||||
#basic type
|
||||
t = type(obj)
|
||||
|
||||
if t in _SIMPLE_BUILTINS:
|
||||
return repr(obj)
|
||||
|
||||
elif t is dict:
|
||||
out = ['{']
|
||||
for k,v in obj.items():
|
||||
out.append('\n\0%s: %s,' % (prettify(k), prettify(v)))
|
||||
out.append(len(obj) and '\n\0}' or '}')
|
||||
return ''.join(out)
|
||||
|
||||
elif t is list:
|
||||
out = ["["]
|
||||
for x in obj:
|
||||
out.append('\n\0%s,' % prettify(x))
|
||||
out.append(len(obj) and '\n\0]' or ']')
|
||||
return ''.join(out)
|
||||
|
||||
elif t is tuple:
|
||||
out = ["("]
|
||||
for x in obj:
|
||||
out.append('\n\0%s,' % prettify(x))
|
||||
out.append(len(obj) and '\n\0)' or ')')
|
||||
return ''.join(out)
|
||||
else:
|
||||
raise TypeError("Unsupported type %s when trying to prettify %s." % (t, obj))
|
||||
|
||||
def indentify(s):
|
||||
out = []
|
||||
stack = []
|
||||
l = ['', s]
|
||||
for (tokenType, tokenString, (startRow, startColumn),
|
||||
(endRow, endColumn), logicalLine) in tokenize(l.pop):
|
||||
if tokenString in ['[', '(', '{']:
|
||||
stack.append(tokenString)
|
||||
elif tokenString in [']', ')', '}']:
|
||||
stack.pop()
|
||||
if tokenString == '\0':
|
||||
out.append(' '*len(stack))
|
||||
else:
|
||||
out.append(tokenString)
|
||||
return ''.join(out)
|
||||
|
||||
|
||||
|
||||
###########
|
||||
# Unjelly #
|
||||
###########
|
||||
|
||||
def unjellyFromAOT(aot):
|
||||
"""
|
||||
Pass me an Abstract Object Tree, and I'll unjelly it for you.
|
||||
"""
|
||||
return AOTUnjellier().unjelly(aot)
|
||||
|
||||
def unjellyFromSource(stringOrFile):
|
||||
"""
|
||||
Pass me a string of code or a filename that defines an 'app' variable (in
|
||||
terms of Abstract Objects!), and I'll execute it and unjelly the resulting
|
||||
AOT for you, returning a newly unpersisted Application object!
|
||||
"""
|
||||
|
||||
ns = {"Instance": Instance,
|
||||
"InstanceMethod": InstanceMethod,
|
||||
"Class": Class,
|
||||
"Function": Function,
|
||||
"Module": Module,
|
||||
"Ref": Ref,
|
||||
"Deref": Deref,
|
||||
"Copyreg": Copyreg,
|
||||
}
|
||||
|
||||
if hasattr(stringOrFile, "read"):
|
||||
source = stringOrFile.read()
|
||||
else:
|
||||
source = stringOrFile
|
||||
code = compile(source, "<source>", "exec")
|
||||
eval(code, ns, ns)
|
||||
|
||||
if 'app' in ns:
|
||||
return unjellyFromAOT(ns['app'])
|
||||
else:
|
||||
raise ValueError("%s needs to define an 'app', it didn't!" % stringOrFile)
|
||||
|
||||
|
||||
class AOTUnjellier:
|
||||
"""I handle the unjellying of an Abstract Object Tree.
|
||||
See AOTUnjellier.unjellyAO
|
||||
"""
|
||||
def __init__(self):
|
||||
self.references = {}
|
||||
self.stack = []
|
||||
self.afterUnjelly = []
|
||||
|
||||
##
|
||||
# unjelly helpers (copied pretty much directly from (now deleted) marmalade)
|
||||
##
|
||||
def unjellyLater(self, node):
|
||||
"""Unjelly a node, later.
|
||||
"""
|
||||
d = crefutil._Defer()
|
||||
self.unjellyInto(d, 0, node)
|
||||
return d
|
||||
|
||||
def unjellyInto(self, obj, loc, ao):
|
||||
"""Utility method for unjellying one object into another.
|
||||
This automates the handling of backreferences.
|
||||
"""
|
||||
o = self.unjellyAO(ao)
|
||||
obj[loc] = o
|
||||
if isinstance(o, crefutil.NotKnown):
|
||||
o.addDependant(obj, loc)
|
||||
return o
|
||||
|
||||
def callAfter(self, callable, result):
|
||||
if isinstance(result, crefutil.NotKnown):
|
||||
l = [None]
|
||||
result.addDependant(l, 1)
|
||||
else:
|
||||
l = [result]
|
||||
self.afterUnjelly.append((callable, l))
|
||||
|
||||
def unjellyAttribute(self, instance, attrName, ao):
|
||||
#XXX this is unused????
|
||||
"""Utility method for unjellying into instances of attributes.
|
||||
|
||||
Use this rather than unjellyAO unless you like surprising bugs!
|
||||
Alternatively, you can use unjellyInto on your instance's __dict__.
|
||||
"""
|
||||
self.unjellyInto(instance.__dict__, attrName, ao)
|
||||
|
||||
def unjellyAO(self, ao):
|
||||
"""Unjelly an Abstract Object and everything it contains.
|
||||
I return the real object.
|
||||
"""
|
||||
self.stack.append(ao)
|
||||
t = type(ao)
|
||||
if t in _SIMPLE_BUILTINS:
|
||||
return ao
|
||||
|
||||
elif t is list:
|
||||
l = []
|
||||
for x in ao:
|
||||
l.append(None)
|
||||
self.unjellyInto(l, len(l)-1, x)
|
||||
return l
|
||||
|
||||
elif t is tuple:
|
||||
l = []
|
||||
tuple_ = tuple
|
||||
for x in ao:
|
||||
l.append(None)
|
||||
if isinstance(self.unjellyInto(l, len(l)-1, x), crefutil.NotKnown):
|
||||
tuple_ = crefutil._Tuple
|
||||
return tuple_(l)
|
||||
|
||||
elif t is dict:
|
||||
d = {}
|
||||
for k,v in ao.items():
|
||||
kvd = crefutil._DictKeyAndValue(d)
|
||||
self.unjellyInto(kvd, 0, k)
|
||||
self.unjellyInto(kvd, 1, v)
|
||||
return d
|
||||
else:
|
||||
#Abstract Objects
|
||||
c = ao.__class__
|
||||
if c is Module:
|
||||
return reflect.namedModule(ao.name)
|
||||
|
||||
elif c in [Class, Function] or issubclass(c, type):
|
||||
return reflect.namedObject(ao.name)
|
||||
|
||||
elif c is InstanceMethod:
|
||||
im_name = ao.name
|
||||
im_class = reflect.namedObject(ao.klass)
|
||||
im_self = self.unjellyAO(ao.instance)
|
||||
if im_name in im_class.__dict__:
|
||||
if im_self is None:
|
||||
return getattr(im_class, im_name)
|
||||
elif isinstance(im_self, crefutil.NotKnown):
|
||||
return crefutil._InstanceMethod(im_name, im_self, im_class)
|
||||
else:
|
||||
return _constructMethod(im_class, im_name, im_self)
|
||||
else:
|
||||
raise TypeError("instance method changed")
|
||||
|
||||
elif c is Instance:
|
||||
klass = reflect.namedObject(ao.klass)
|
||||
state = self.unjellyAO(ao.state)
|
||||
if hasattr(klass, "__new__"):
|
||||
inst = klass.__new__(klass)
|
||||
else:
|
||||
inst = _OldStyleInstance(klass)
|
||||
if hasattr(klass, "__setstate__"):
|
||||
self.callAfter(inst.__setstate__, state)
|
||||
else:
|
||||
inst.__dict__ = state
|
||||
return inst
|
||||
|
||||
elif c is Ref:
|
||||
o = self.unjellyAO(ao.obj) #THIS IS CHANGING THE REF OMG
|
||||
refkey = ao.refnum
|
||||
ref = self.references.get(refkey)
|
||||
if ref is None:
|
||||
self.references[refkey] = o
|
||||
elif isinstance(ref, crefutil.NotKnown):
|
||||
ref.resolveDependants(o)
|
||||
self.references[refkey] = o
|
||||
elif refkey is None:
|
||||
# This happens when you're unjellying from an AOT not read from source
|
||||
pass
|
||||
else:
|
||||
raise ValueError("Multiple references with the same ID: %s, %s, %s!" % (ref, refkey, ao))
|
||||
return o
|
||||
|
||||
elif c is Deref:
|
||||
num = ao.refnum
|
||||
ref = self.references.get(num)
|
||||
if ref is None:
|
||||
der = crefutil._Dereference(num)
|
||||
self.references[num] = der
|
||||
return der
|
||||
return ref
|
||||
|
||||
elif c is Copyreg:
|
||||
loadfunc = reflect.namedObject(ao.loadfunc)
|
||||
d = self.unjellyLater(ao.state).addCallback(
|
||||
lambda result, _l: _l(*result), loadfunc)
|
||||
return d
|
||||
else:
|
||||
raise TypeError("Unsupported AOT type: %s" % t)
|
||||
|
||||
del self.stack[-1]
|
||||
|
||||
|
||||
def unjelly(self, ao):
|
||||
try:
|
||||
l = [None]
|
||||
self.unjellyInto(l, 0, ao)
|
||||
for func, v in self.afterUnjelly:
|
||||
func(v[0])
|
||||
return l[0]
|
||||
except:
|
||||
log.msg("Error jellying object! Stacktrace follows::")
|
||||
log.msg("\n".join(map(repr, self.stack)))
|
||||
raise
|
||||
#########
|
||||
# Jelly #
|
||||
#########
|
||||
|
||||
|
||||
def jellyToAOT(obj):
|
||||
"""Convert an object to an Abstract Object Tree."""
|
||||
return AOTJellier().jelly(obj)
|
||||
|
||||
def jellyToSource(obj, file=None):
|
||||
"""
|
||||
Pass me an object and, optionally, a file object.
|
||||
I'll convert the object to an AOT either return it (if no file was
|
||||
specified) or write it to the file.
|
||||
"""
|
||||
|
||||
aot = jellyToAOT(obj)
|
||||
if file:
|
||||
file.write(getSource(aot).encode("utf-8"))
|
||||
else:
|
||||
return getSource(aot)
|
||||
|
||||
|
||||
try:
|
||||
from types import (ClassType as _OldStyleClass,
|
||||
InstanceType as _OldStyleInstance)
|
||||
except ImportError:
|
||||
_OldStyleClass = None
|
||||
_OldStyleInstance = None
|
||||
|
||||
|
||||
|
||||
def _classOfMethod(methodObject):
|
||||
"""
|
||||
Get the associated class of the given method object.
|
||||
|
||||
@param methodObject: a bound method
|
||||
@type methodObject: L{types.MethodType}
|
||||
|
||||
@return: a class
|
||||
@rtype: L{types.ClassType} or L{type}
|
||||
"""
|
||||
if _PY3:
|
||||
return methodObject.__self__.__class__
|
||||
return methodObject.im_class
|
||||
|
||||
|
||||
|
||||
def _funcOfMethod(methodObject):
|
||||
"""
|
||||
Get the associated function of the given method object.
|
||||
|
||||
@param methodObject: a bound method
|
||||
@type methodObject: L{types.MethodType}
|
||||
|
||||
@return: the function implementing C{methodObject}
|
||||
@rtype: L{types.FunctionType}
|
||||
"""
|
||||
if _PY3:
|
||||
return methodObject.__func__
|
||||
return methodObject.im_func
|
||||
|
||||
|
||||
|
||||
def _selfOfMethod(methodObject):
|
||||
"""
|
||||
Get the object that a bound method is bound to.
|
||||
|
||||
@param methodObject: a bound method
|
||||
@type methodObject: L{types.MethodType}
|
||||
|
||||
@return: the C{self} passed to C{methodObject}
|
||||
@rtype: L{object}
|
||||
"""
|
||||
if _PY3:
|
||||
return methodObject.__self__
|
||||
return methodObject.im_self
|
||||
|
||||
|
||||
|
||||
class AOTJellier:
|
||||
def __init__(self):
|
||||
# dict of {id(obj): (obj, node)}
|
||||
self.prepared = {}
|
||||
self._ref_id = 0
|
||||
self.stack = []
|
||||
|
||||
def prepareForRef(self, aoref, object):
|
||||
"""I prepare an object for later referencing, by storing its id()
|
||||
and its _AORef in a cache."""
|
||||
self.prepared[id(object)] = aoref
|
||||
|
||||
def jellyToAO(self, obj):
|
||||
"""I turn an object into an AOT and return it."""
|
||||
objType = type(obj)
|
||||
self.stack.append(repr(obj))
|
||||
|
||||
#immutable: We don't care if these have multiple refs!
|
||||
if objType in _SIMPLE_BUILTINS:
|
||||
retval = obj
|
||||
|
||||
elif objType is types.MethodType:
|
||||
# TODO: make methods 'prefer' not to jelly the object internally,
|
||||
# so that the object will show up where it's referenced first NOT
|
||||
# by a method.
|
||||
retval = InstanceMethod(_funcOfMethod(obj).__name__,
|
||||
reflect.qual(_classOfMethod(obj)),
|
||||
self.jellyToAO(_selfOfMethod(obj)))
|
||||
|
||||
elif objType is types.ModuleType:
|
||||
retval = Module(obj.__name__)
|
||||
|
||||
elif objType is _OldStyleClass:
|
||||
retval = Class(reflect.qual(obj))
|
||||
|
||||
elif issubclass(objType, type):
|
||||
retval = Class(reflect.qual(obj))
|
||||
|
||||
elif objType is types.FunctionType:
|
||||
retval = Function(reflect.fullFuncName(obj))
|
||||
|
||||
else: #mutable! gotta watch for refs.
|
||||
|
||||
#Marmalade had the nicety of being able to just stick a 'reference' attribute
|
||||
#on any Node object that was referenced, but in AOT, the referenced object
|
||||
#is *inside* of a Ref call (Ref(num, obj) instead of
|
||||
#<objtype ... reference="1">). The problem is, especially for built-in types,
|
||||
#I can't just assign some attribute to them to give them a refnum. So, I have
|
||||
#to "wrap" a Ref(..) around them later -- that's why I put *everything* that's
|
||||
#mutable inside one. The Ref() class will only print the "Ref(..)" around an
|
||||
#object if it has a Reference explicitly attached.
|
||||
|
||||
if id(obj) in self.prepared:
|
||||
oldRef = self.prepared[id(obj)]
|
||||
if oldRef.refnum:
|
||||
# it's been referenced already
|
||||
key = oldRef.refnum
|
||||
else:
|
||||
# it hasn't been referenced yet
|
||||
self._ref_id = self._ref_id + 1
|
||||
key = self._ref_id
|
||||
oldRef.setRef(key)
|
||||
return Deref(key)
|
||||
|
||||
retval = Ref()
|
||||
def _stateFrom(state):
|
||||
retval.setObj(Instance(reflect.qual(obj.__class__),
|
||||
self.jellyToAO(state)))
|
||||
self.prepareForRef(retval, obj)
|
||||
|
||||
if objType is list:
|
||||
retval.setObj([self.jellyToAO(o) for o in obj]) #hah!
|
||||
|
||||
elif objType is tuple:
|
||||
retval.setObj(tuple(map(self.jellyToAO, obj)))
|
||||
|
||||
elif objType is dict:
|
||||
d = {}
|
||||
for k,v in obj.items():
|
||||
d[self.jellyToAO(k)] = self.jellyToAO(v)
|
||||
retval.setObj(d)
|
||||
|
||||
elif objType in copy_reg.dispatch_table:
|
||||
unpickleFunc, state = copy_reg.dispatch_table[objType](obj)
|
||||
|
||||
retval.setObj(Copyreg( reflect.fullFuncName(unpickleFunc),
|
||||
self.jellyToAO(state)))
|
||||
|
||||
elif hasattr(obj, "__getstate__"):
|
||||
_stateFrom(obj.__getstate__())
|
||||
elif hasattr(obj, "__dict__"):
|
||||
_stateFrom(obj.__dict__)
|
||||
else:
|
||||
raise TypeError("Unsupported type: %s" % objType.__name__)
|
||||
|
||||
del self.stack[-1]
|
||||
return retval
|
||||
|
||||
def jelly(self, obj):
|
||||
try:
|
||||
ao = self.jellyToAO(obj)
|
||||
return ao
|
||||
except:
|
||||
log.msg("Error jellying object! Stacktrace follows::")
|
||||
log.msg('\n'.join(self.stack))
|
||||
raise
|
||||
159
venv/lib/python3.9/site-packages/twisted/persisted/crefutil.py
Normal file
159
venv/lib/python3.9/site-packages/twisted/persisted/crefutil.py
Normal file
|
|
@ -0,0 +1,159 @@
|
|||
# -*- test-case-name: twisted.test.test_persisted -*-
|
||||
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
|
||||
"""
|
||||
Utility classes for dealing with circular references.
|
||||
"""
|
||||
|
||||
from __future__ import division, absolute_import
|
||||
|
||||
from twisted.python import log, reflect
|
||||
from twisted.python.compat import range, _constructMethod
|
||||
|
||||
|
||||
class NotKnown:
|
||||
def __init__(self):
|
||||
self.dependants = []
|
||||
self.resolved = 0
|
||||
|
||||
def addDependant(self, mutableObject, key):
|
||||
assert not self.resolved
|
||||
self.dependants.append( (mutableObject, key) )
|
||||
|
||||
resolvedObject = None
|
||||
|
||||
def resolveDependants(self, newObject):
|
||||
self.resolved = 1
|
||||
self.resolvedObject = newObject
|
||||
for mut, key in self.dependants:
|
||||
mut[key] = newObject
|
||||
|
||||
|
||||
def __hash__(self):
|
||||
assert 0, "I am not to be used as a dictionary key."
|
||||
|
||||
|
||||
|
||||
class _Container(NotKnown):
|
||||
"""
|
||||
Helper class to resolve circular references on container objects.
|
||||
"""
|
||||
|
||||
def __init__(self, l, containerType):
|
||||
"""
|
||||
@param l: The list of object which may contain some not yet referenced
|
||||
objects.
|
||||
|
||||
@param containerType: A type of container objects (e.g., C{tuple} or
|
||||
C{set}).
|
||||
"""
|
||||
NotKnown.__init__(self)
|
||||
self.containerType = containerType
|
||||
self.l = l
|
||||
self.locs = list(range(len(l)))
|
||||
for idx in range(len(l)):
|
||||
if not isinstance(l[idx], NotKnown):
|
||||
self.locs.remove(idx)
|
||||
else:
|
||||
l[idx].addDependant(self, idx)
|
||||
if not self.locs:
|
||||
self.resolveDependants(self.containerType(self.l))
|
||||
|
||||
|
||||
def __setitem__(self, n, obj):
|
||||
"""
|
||||
Change the value of one contained objects, and resolve references if
|
||||
all objects have been referenced.
|
||||
"""
|
||||
self.l[n] = obj
|
||||
if not isinstance(obj, NotKnown):
|
||||
self.locs.remove(n)
|
||||
if not self.locs:
|
||||
self.resolveDependants(self.containerType(self.l))
|
||||
|
||||
|
||||
|
||||
class _Tuple(_Container):
|
||||
"""
|
||||
Manage tuple containing circular references. Deprecated: use C{_Container}
|
||||
instead.
|
||||
"""
|
||||
|
||||
def __init__(self, l):
|
||||
"""
|
||||
@param l: The list of object which may contain some not yet referenced
|
||||
objects.
|
||||
"""
|
||||
_Container.__init__(self, l, tuple)
|
||||
|
||||
|
||||
|
||||
class _InstanceMethod(NotKnown):
|
||||
def __init__(self, im_name, im_self, im_class):
|
||||
NotKnown.__init__(self)
|
||||
self.my_class = im_class
|
||||
self.name = im_name
|
||||
# im_self _must_ be a NotKnown
|
||||
im_self.addDependant(self, 0)
|
||||
|
||||
def __call__(self, *args, **kw):
|
||||
import traceback
|
||||
log.msg('instance method %s.%s' % (reflect.qual(self.my_class), self.name))
|
||||
log.msg('being called with %r %r' % (args, kw))
|
||||
traceback.print_stack(file=log.logfile)
|
||||
assert 0
|
||||
|
||||
def __setitem__(self, n, obj):
|
||||
assert n == 0, "only zero index allowed"
|
||||
if not isinstance(obj, NotKnown):
|
||||
method = _constructMethod(self.my_class, self.name, obj)
|
||||
self.resolveDependants(method)
|
||||
|
||||
class _DictKeyAndValue:
|
||||
def __init__(self, dict):
|
||||
self.dict = dict
|
||||
def __setitem__(self, n, obj):
|
||||
if n not in (1, 0):
|
||||
raise RuntimeError("DictKeyAndValue should only ever be called with 0 or 1")
|
||||
if n: # value
|
||||
self.value = obj
|
||||
else:
|
||||
self.key = obj
|
||||
if hasattr(self, "key") and hasattr(self, "value"):
|
||||
self.dict[self.key] = self.value
|
||||
|
||||
|
||||
class _Dereference(NotKnown):
|
||||
def __init__(self, id):
|
||||
NotKnown.__init__(self)
|
||||
self.id = id
|
||||
|
||||
|
||||
|
||||
from twisted.internet.defer import Deferred
|
||||
|
||||
class _Defer(Deferred, NotKnown):
|
||||
def __init__(self):
|
||||
Deferred.__init__(self)
|
||||
NotKnown.__init__(self)
|
||||
self.pause()
|
||||
|
||||
wasset = 0
|
||||
|
||||
def __setitem__(self, n, obj):
|
||||
if self.wasset:
|
||||
raise RuntimeError('setitem should only be called once, setting %r to %r' % (n, obj))
|
||||
else:
|
||||
self.wasset = 1
|
||||
self.callback(obj)
|
||||
|
||||
def addDependant(self, dep, key):
|
||||
# by the time I'm adding a dependant, I'm *not* adding any more
|
||||
# callbacks
|
||||
NotKnown.addDependant(self, dep, key)
|
||||
self.unpause()
|
||||
resovd = self.result
|
||||
self.resolveDependants(resovd)
|
||||
389
venv/lib/python3.9/site-packages/twisted/persisted/dirdbm.py
Normal file
389
venv/lib/python3.9/site-packages/twisted/persisted/dirdbm.py
Normal file
|
|
@ -0,0 +1,389 @@
|
|||
# -*- test-case-name: twisted.test.test_dirdbm -*-
|
||||
#
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
|
||||
|
||||
"""
|
||||
DBM-style interface to a directory.
|
||||
|
||||
Each key is stored as a single file. This is not expected to be very fast or
|
||||
efficient, but it's good for easy debugging.
|
||||
|
||||
DirDBMs are *not* thread-safe, they should only be accessed by one thread at
|
||||
a time.
|
||||
|
||||
No files should be placed in the working directory of a DirDBM save those
|
||||
created by the DirDBM itself!
|
||||
|
||||
Maintainer: Itamar Shtull-Trauring
|
||||
"""
|
||||
|
||||
|
||||
import os
|
||||
import base64
|
||||
import glob
|
||||
|
||||
try:
|
||||
import cPickle as pickle
|
||||
except ImportError:
|
||||
import pickle
|
||||
|
||||
from twisted.python.filepath import FilePath
|
||||
|
||||
try:
|
||||
_open
|
||||
except NameError:
|
||||
_open = open
|
||||
|
||||
|
||||
|
||||
class DirDBM:
|
||||
"""
|
||||
A directory with a DBM interface.
|
||||
|
||||
This class presents a hash-like interface to a directory of small,
|
||||
flat files. It can only use strings as keys or values.
|
||||
"""
|
||||
|
||||
def __init__(self, name):
|
||||
"""
|
||||
@type name: str
|
||||
@param name: Base path to use for the directory storage.
|
||||
"""
|
||||
self.dname = os.path.abspath(name)
|
||||
self._dnamePath = FilePath(name)
|
||||
if not self._dnamePath.isdir():
|
||||
self._dnamePath.createDirectory()
|
||||
else:
|
||||
# Run recovery, in case we crashed. we delete all files ending
|
||||
# with ".new". Then we find all files who end with ".rpl". If a
|
||||
# corresponding file exists without ".rpl", we assume the write
|
||||
# failed and delete the ".rpl" file. If only a ".rpl" exist we
|
||||
# assume the program crashed right after deleting the old entry
|
||||
# but before renaming the replacement entry.
|
||||
#
|
||||
# NOTE: '.' is NOT in the base64 alphabet!
|
||||
for f in glob.glob(self._dnamePath.child("*.new").path):
|
||||
os.remove(f)
|
||||
replacements = glob.glob(self._dnamePath.child("*.rpl").path)
|
||||
for f in replacements:
|
||||
old = f[:-4]
|
||||
if os.path.exists(old):
|
||||
os.remove(f)
|
||||
else:
|
||||
os.rename(f, old)
|
||||
|
||||
|
||||
def _encode(self, k):
|
||||
"""
|
||||
Encode a key so it can be used as a filename.
|
||||
"""
|
||||
# NOTE: '_' is NOT in the base64 alphabet!
|
||||
return base64.encodestring(k).replace(b'\n', b'_').replace(b"/", b"-")
|
||||
|
||||
|
||||
def _decode(self, k):
|
||||
"""
|
||||
Decode a filename to get the key.
|
||||
"""
|
||||
return base64.decodestring(k.replace(b'_', b'\n').replace(b"-", b"/"))
|
||||
|
||||
|
||||
def _readFile(self, path):
|
||||
"""
|
||||
Read in the contents of a file.
|
||||
|
||||
Override in subclasses to e.g. provide transparently encrypted dirdbm.
|
||||
"""
|
||||
with _open(path.path, "rb") as f:
|
||||
s = f.read()
|
||||
return s
|
||||
|
||||
|
||||
def _writeFile(self, path, data):
|
||||
"""
|
||||
Write data to a file.
|
||||
|
||||
Override in subclasses to e.g. provide transparently encrypted dirdbm.
|
||||
"""
|
||||
with _open(path.path, "wb") as f:
|
||||
f.write(data)
|
||||
f.flush()
|
||||
|
||||
|
||||
def __len__(self):
|
||||
"""
|
||||
@return: The number of key/value pairs in this Shelf
|
||||
"""
|
||||
return len(self._dnamePath.listdir())
|
||||
|
||||
|
||||
def __setitem__(self, k, v):
|
||||
"""
|
||||
C{dirdbm[k] = v}
|
||||
Create or modify a textfile in this directory
|
||||
|
||||
@type k: bytes
|
||||
@param k: key to set
|
||||
|
||||
@type v: bytes
|
||||
@param v: value to associate with C{k}
|
||||
"""
|
||||
if not type(k) == bytes:
|
||||
raise TypeError("DirDBM key must be bytes")
|
||||
if not type(v) == bytes:
|
||||
raise TypeError("DirDBM value must be bytes")
|
||||
k = self._encode(k)
|
||||
|
||||
# We create a new file with extension .new, write the data to it, and
|
||||
# if the write succeeds delete the old file and rename the new one.
|
||||
old = self._dnamePath.child(k)
|
||||
if old.exists():
|
||||
new = old.siblingExtension(".rpl") # Replacement entry
|
||||
else:
|
||||
new = old.siblingExtension(".new") # New entry
|
||||
try:
|
||||
self._writeFile(new, v)
|
||||
except:
|
||||
new.remove()
|
||||
raise
|
||||
else:
|
||||
if (old.exists()): old.remove()
|
||||
new.moveTo(old)
|
||||
|
||||
|
||||
def __getitem__(self, k):
|
||||
"""
|
||||
C{dirdbm[k]}
|
||||
Get the contents of a file in this directory as a string.
|
||||
|
||||
@type k: bytes
|
||||
@param k: key to lookup
|
||||
|
||||
@return: The value associated with C{k}
|
||||
@raise KeyError: Raised when there is no such key
|
||||
"""
|
||||
if not type(k) == bytes:
|
||||
raise TypeError("DirDBM key must be bytes")
|
||||
path = self._dnamePath.child(self._encode(k))
|
||||
try:
|
||||
return self._readFile(path)
|
||||
except (EnvironmentError):
|
||||
raise KeyError(k)
|
||||
|
||||
|
||||
def __delitem__(self, k):
|
||||
"""
|
||||
C{del dirdbm[foo]}
|
||||
Delete a file in this directory.
|
||||
|
||||
@type k: bytes
|
||||
@param k: key to delete
|
||||
|
||||
@raise KeyError: Raised when there is no such key
|
||||
"""
|
||||
if not type(k) == bytes:
|
||||
raise TypeError("DirDBM key must be bytes")
|
||||
k = self._encode(k)
|
||||
try:
|
||||
self._dnamePath.child(k).remove()
|
||||
except (EnvironmentError):
|
||||
raise KeyError(self._decode(k))
|
||||
|
||||
|
||||
def keys(self):
|
||||
"""
|
||||
@return: a L{list} of filenames (keys).
|
||||
"""
|
||||
return list(map(self._decode, self._dnamePath.asBytesMode().listdir()))
|
||||
|
||||
|
||||
def values(self):
|
||||
"""
|
||||
@return: a L{list} of file-contents (values).
|
||||
"""
|
||||
vals = []
|
||||
keys = self.keys()
|
||||
for key in keys:
|
||||
vals.append(self[key])
|
||||
return vals
|
||||
|
||||
|
||||
def items(self):
|
||||
"""
|
||||
@return: a L{list} of 2-tuples containing key/value pairs.
|
||||
"""
|
||||
items = []
|
||||
keys = self.keys()
|
||||
for key in keys:
|
||||
items.append((key, self[key]))
|
||||
return items
|
||||
|
||||
|
||||
def has_key(self, key):
|
||||
"""
|
||||
@type key: bytes
|
||||
@param key: The key to test
|
||||
|
||||
@return: A true value if this dirdbm has the specified key, a false
|
||||
value otherwise.
|
||||
"""
|
||||
if not type(key) == bytes:
|
||||
raise TypeError("DirDBM key must be bytes")
|
||||
key = self._encode(key)
|
||||
return self._dnamePath.child(key).isfile()
|
||||
|
||||
|
||||
def setdefault(self, key, value):
|
||||
"""
|
||||
@type key: bytes
|
||||
@param key: The key to lookup
|
||||
|
||||
@param value: The value to associate with key if key is not already
|
||||
associated with a value.
|
||||
"""
|
||||
if key not in self:
|
||||
self[key] = value
|
||||
return value
|
||||
return self[key]
|
||||
|
||||
|
||||
def get(self, key, default = None):
|
||||
"""
|
||||
@type key: bytes
|
||||
@param key: The key to lookup
|
||||
|
||||
@param default: The value to return if the given key does not exist
|
||||
|
||||
@return: The value associated with C{key} or C{default} if not
|
||||
L{DirDBM.has_key(key)}
|
||||
"""
|
||||
if key in self:
|
||||
return self[key]
|
||||
else:
|
||||
return default
|
||||
|
||||
|
||||
def __contains__(self, key):
|
||||
"""
|
||||
@see: L{DirDBM.has_key}
|
||||
"""
|
||||
return self.has_key(key)
|
||||
|
||||
|
||||
def update(self, dict):
|
||||
"""
|
||||
Add all the key/value pairs in L{dict} to this dirdbm. Any conflicting
|
||||
keys will be overwritten with the values from L{dict}.
|
||||
|
||||
@type dict: mapping
|
||||
@param dict: A mapping of key/value pairs to add to this dirdbm.
|
||||
"""
|
||||
for key, val in dict.items():
|
||||
self[key]=val
|
||||
|
||||
|
||||
def copyTo(self, path):
|
||||
"""
|
||||
Copy the contents of this dirdbm to the dirdbm at C{path}.
|
||||
|
||||
@type path: L{str}
|
||||
@param path: The path of the dirdbm to copy to. If a dirdbm
|
||||
exists at the destination path, it is cleared first.
|
||||
|
||||
@rtype: C{DirDBM}
|
||||
@return: The dirdbm this dirdbm was copied to.
|
||||
"""
|
||||
path = FilePath(path)
|
||||
assert path != self._dnamePath
|
||||
|
||||
d = self.__class__(path.path)
|
||||
d.clear()
|
||||
for k in self.keys():
|
||||
d[k] = self[k]
|
||||
return d
|
||||
|
||||
|
||||
def clear(self):
|
||||
"""
|
||||
Delete all key/value pairs in this dirdbm.
|
||||
"""
|
||||
for k in self.keys():
|
||||
del self[k]
|
||||
|
||||
|
||||
def close(self):
|
||||
"""
|
||||
Close this dbm: no-op, for dbm-style interface compliance.
|
||||
"""
|
||||
|
||||
|
||||
def getModificationTime(self, key):
|
||||
"""
|
||||
Returns modification time of an entry.
|
||||
|
||||
@return: Last modification date (seconds since epoch) of entry C{key}
|
||||
@raise KeyError: Raised when there is no such key
|
||||
"""
|
||||
if not type(key) == bytes:
|
||||
raise TypeError("DirDBM key must be bytes")
|
||||
path = self._dnamePath.child(self._encode(key))
|
||||
if path.isfile():
|
||||
return path.getModificationTime()
|
||||
else:
|
||||
raise KeyError(key)
|
||||
|
||||
|
||||
|
||||
class Shelf(DirDBM):
|
||||
"""
|
||||
A directory with a DBM shelf interface.
|
||||
|
||||
This class presents a hash-like interface to a directory of small,
|
||||
flat files. Keys must be strings, but values can be any given object.
|
||||
"""
|
||||
|
||||
def __setitem__(self, k, v):
|
||||
"""
|
||||
C{shelf[foo] = bar}
|
||||
Create or modify a textfile in this directory.
|
||||
|
||||
@type k: str
|
||||
@param k: The key to set
|
||||
|
||||
@param v: The value to associate with C{key}
|
||||
"""
|
||||
v = pickle.dumps(v)
|
||||
DirDBM.__setitem__(self, k, v)
|
||||
|
||||
|
||||
def __getitem__(self, k):
|
||||
"""
|
||||
C{dirdbm[foo]}
|
||||
Get and unpickle the contents of a file in this directory.
|
||||
|
||||
@type k: bytes
|
||||
@param k: The key to lookup
|
||||
|
||||
@return: The value associated with the given key
|
||||
@raise KeyError: Raised if the given key does not exist
|
||||
"""
|
||||
return pickle.loads(DirDBM.__getitem__(self, k))
|
||||
|
||||
|
||||
|
||||
def open(file, flag = None, mode = None):
|
||||
"""
|
||||
This is for 'anydbm' compatibility.
|
||||
|
||||
@param file: The parameter to pass to the DirDBM constructor.
|
||||
|
||||
@param flag: ignored
|
||||
@param mode: ignored
|
||||
"""
|
||||
return DirDBM(file)
|
||||
|
||||
|
||||
__all__ = ["open", "DirDBM", "Shelf"]
|
||||
194
venv/lib/python3.9/site-packages/twisted/persisted/sob.py
Normal file
194
venv/lib/python3.9/site-packages/twisted/persisted/sob.py
Normal file
|
|
@ -0,0 +1,194 @@
|
|||
# -*- test-case-name: twisted.test.test_sob -*-
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
#
|
||||
"""
|
||||
Save and load Small OBjects to and from files, using various formats.
|
||||
|
||||
Maintainer: Moshe Zadka
|
||||
"""
|
||||
|
||||
from __future__ import division, absolute_import
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
try:
|
||||
import cPickle as pickle
|
||||
except ImportError:
|
||||
import pickle
|
||||
from twisted.python import log, runtime
|
||||
from twisted.persisted import styles
|
||||
from zope.interface import implementer, Interface
|
||||
|
||||
|
||||
|
||||
class IPersistable(Interface):
|
||||
|
||||
"""An object which can be saved in several formats to a file"""
|
||||
|
||||
def setStyle(style):
|
||||
"""Set desired format.
|
||||
|
||||
@type style: string (one of 'pickle' or 'source')
|
||||
"""
|
||||
|
||||
def save(tag=None, filename=None, passphrase=None):
|
||||
"""Save object to file.
|
||||
|
||||
@type tag: string
|
||||
@type filename: string
|
||||
@type passphrase: string
|
||||
"""
|
||||
|
||||
|
||||
@implementer(IPersistable)
|
||||
class Persistent:
|
||||
|
||||
style = "pickle"
|
||||
|
||||
def __init__(self, original, name):
|
||||
self.original = original
|
||||
self.name = name
|
||||
|
||||
def setStyle(self, style):
|
||||
"""Set desired format.
|
||||
|
||||
@type style: string (one of 'pickle' or 'source')
|
||||
"""
|
||||
self.style = style
|
||||
|
||||
def _getFilename(self, filename, ext, tag):
|
||||
if filename:
|
||||
finalname = filename
|
||||
filename = finalname + "-2"
|
||||
elif tag:
|
||||
filename = "%s-%s-2.%s" % (self.name, tag, ext)
|
||||
finalname = "%s-%s.%s" % (self.name, tag, ext)
|
||||
else:
|
||||
filename = "%s-2.%s" % (self.name, ext)
|
||||
finalname = "%s.%s" % (self.name, ext)
|
||||
return finalname, filename
|
||||
|
||||
def _saveTemp(self, filename, dumpFunc):
|
||||
with open(filename, 'wb') as f:
|
||||
dumpFunc(self.original, f)
|
||||
|
||||
def _getStyle(self):
|
||||
if self.style == "source":
|
||||
from twisted.persisted.aot import jellyToSource as dumpFunc
|
||||
ext = "tas"
|
||||
else:
|
||||
def dumpFunc(obj, file):
|
||||
pickle.dump(obj, file, 2)
|
||||
ext = "tap"
|
||||
return ext, dumpFunc
|
||||
|
||||
def save(self, tag=None, filename=None, passphrase=None):
|
||||
"""Save object to file.
|
||||
|
||||
@type tag: string
|
||||
@type filename: string
|
||||
@type passphrase: string
|
||||
"""
|
||||
ext, dumpFunc = self._getStyle()
|
||||
if passphrase is not None:
|
||||
raise TypeError("passphrase must be None")
|
||||
ext = 'e' + ext
|
||||
finalname, filename = self._getFilename(filename, ext, tag)
|
||||
log.msg("Saving "+self.name+" application to "+finalname+"...")
|
||||
self._saveTemp(filename, dumpFunc)
|
||||
if runtime.platformType == "win32" and os.path.isfile(finalname):
|
||||
os.remove(finalname)
|
||||
os.rename(filename, finalname)
|
||||
log.msg("Saved.")
|
||||
|
||||
# "Persistant" has been present since 1.0.7, so retain it for compatibility
|
||||
Persistant = Persistent
|
||||
|
||||
class _EverythingEphemeral(styles.Ephemeral):
|
||||
|
||||
initRun = 0
|
||||
|
||||
def __init__(self, mainMod):
|
||||
"""
|
||||
@param mainMod: The '__main__' module that this class will proxy.
|
||||
"""
|
||||
self.mainMod = mainMod
|
||||
|
||||
def __getattr__(self, key):
|
||||
try:
|
||||
return getattr(self.mainMod, key)
|
||||
except AttributeError:
|
||||
if self.initRun:
|
||||
raise
|
||||
else:
|
||||
log.msg("Warning! Loading from __main__: %s" % key)
|
||||
return styles.Ephemeral()
|
||||
|
||||
|
||||
def load(filename, style):
|
||||
"""Load an object from a file.
|
||||
|
||||
Deserialize an object from a file. The file can be encrypted.
|
||||
|
||||
@param filename: string
|
||||
@param style: string (one of 'pickle' or 'source')
|
||||
"""
|
||||
mode = 'r'
|
||||
if style=='source':
|
||||
from twisted.persisted.aot import unjellyFromSource as _load
|
||||
else:
|
||||
_load, mode = pickle.load, 'rb'
|
||||
|
||||
fp = open(filename, mode)
|
||||
ee = _EverythingEphemeral(sys.modules['__main__'])
|
||||
sys.modules['__main__'] = ee
|
||||
ee.initRun = 1
|
||||
with fp:
|
||||
try:
|
||||
value = _load(fp)
|
||||
finally:
|
||||
# restore __main__ if an exception is raised.
|
||||
sys.modules['__main__'] = ee.mainMod
|
||||
|
||||
styles.doUpgrade()
|
||||
ee.initRun = 0
|
||||
persistable = IPersistable(value, None)
|
||||
if persistable is not None:
|
||||
persistable.setStyle(style)
|
||||
return value
|
||||
|
||||
|
||||
def loadValueFromFile(filename, variable):
|
||||
"""Load the value of a variable in a Python file.
|
||||
|
||||
Run the contents of the file in a namespace and return the result of the
|
||||
variable named C{variable}.
|
||||
|
||||
@param filename: string
|
||||
@param variable: string
|
||||
"""
|
||||
with open(filename, 'r') as fileObj:
|
||||
data = fileObj.read()
|
||||
d = {'__file__': filename}
|
||||
codeObj = compile(data, filename, "exec")
|
||||
eval(codeObj, d, d)
|
||||
value = d[variable]
|
||||
return value
|
||||
|
||||
def guessType(filename):
|
||||
ext = os.path.splitext(filename)[1]
|
||||
return {
|
||||
'.tac': 'python',
|
||||
'.etac': 'python',
|
||||
'.py': 'python',
|
||||
'.tap': 'pickle',
|
||||
'.etap': 'pickle',
|
||||
'.tas': 'source',
|
||||
'.etas': 'source',
|
||||
}[ext]
|
||||
|
||||
__all__ = ['loadValueFromFile', 'load', 'Persistent', 'Persistant',
|
||||
'IPersistable', 'guessType']
|
||||
423
venv/lib/python3.9/site-packages/twisted/persisted/styles.py
Normal file
423
venv/lib/python3.9/site-packages/twisted/persisted/styles.py
Normal file
|
|
@ -0,0 +1,423 @@
|
|||
# -*- test-case-name: twisted.test.test_persisted -*-
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""
|
||||
Different styles of persisted objects.
|
||||
"""
|
||||
|
||||
from __future__ import division, absolute_import
|
||||
|
||||
# System Imports
|
||||
import types
|
||||
import pickle
|
||||
try:
|
||||
import copy_reg
|
||||
except ImportError:
|
||||
import copyreg as copy_reg
|
||||
import copy
|
||||
import inspect
|
||||
|
||||
from twisted.python.compat import _PY3, _PYPY
|
||||
|
||||
# Twisted Imports
|
||||
from twisted.python import log
|
||||
from twisted.python import reflect
|
||||
|
||||
oldModules = {}
|
||||
|
||||
|
||||
try:
|
||||
import cPickle
|
||||
except ImportError:
|
||||
cPickle = None
|
||||
|
||||
if cPickle is None or cPickle.PicklingError is pickle.PicklingError:
|
||||
_UniversalPicklingError = pickle.PicklingError
|
||||
else:
|
||||
class _UniversalPicklingError(pickle.PicklingError,
|
||||
cPickle.PicklingError):
|
||||
"""
|
||||
A PicklingError catchable by both L{cPickle.PicklingError} and
|
||||
L{pickle.PicklingError} handlers.
|
||||
"""
|
||||
|
||||
|
||||
## First, let's register support for some stuff that really ought to
|
||||
## be registerable...
|
||||
|
||||
def pickleMethod(method):
|
||||
'support function for copy_reg to pickle method refs'
|
||||
if _PY3:
|
||||
return (unpickleMethod, (method.__name__,
|
||||
method.__self__,
|
||||
method.__self__.__class__))
|
||||
else:
|
||||
return (unpickleMethod, (method.im_func.__name__,
|
||||
method.im_self,
|
||||
method.im_class))
|
||||
|
||||
|
||||
|
||||
def _methodFunction(classObject, methodName):
|
||||
"""
|
||||
Retrieve the function object implementing a method name given the class
|
||||
it's on and a method name.
|
||||
|
||||
@param classObject: A class to retrieve the method's function from.
|
||||
@type classObject: L{type} or L{types.ClassType}
|
||||
|
||||
@param methodName: The name of the method whose function to retrieve.
|
||||
@type methodName: native L{str}
|
||||
|
||||
@return: the function object corresponding to the given method name.
|
||||
@rtype: L{types.FunctionType}
|
||||
"""
|
||||
methodObject = getattr(classObject, methodName)
|
||||
if _PY3:
|
||||
return methodObject
|
||||
return methodObject.im_func
|
||||
|
||||
|
||||
|
||||
def unpickleMethod(im_name, im_self, im_class):
|
||||
"""
|
||||
Support function for copy_reg to unpickle method refs.
|
||||
|
||||
@param im_name: The name of the method.
|
||||
@type im_name: native L{str}
|
||||
|
||||
@param im_self: The instance that the method was present on.
|
||||
@type im_self: L{object}
|
||||
|
||||
@param im_class: The class where the method was declared.
|
||||
@type im_class: L{types.ClassType} or L{type} or L{None}
|
||||
"""
|
||||
if im_self is None:
|
||||
return getattr(im_class, im_name)
|
||||
try:
|
||||
methodFunction = _methodFunction(im_class, im_name)
|
||||
except AttributeError:
|
||||
log.msg("Method", im_name, "not on class", im_class)
|
||||
assert im_self is not None, "No recourse: no instance to guess from."
|
||||
# Attempt a last-ditch fix before giving up. If classes have changed
|
||||
# around since we pickled this method, we may still be able to get it
|
||||
# by looking on the instance's current class.
|
||||
if im_self.__class__ is im_class:
|
||||
raise
|
||||
return unpickleMethod(im_name, im_self, im_self.__class__)
|
||||
else:
|
||||
if _PY3:
|
||||
maybeClass = ()
|
||||
else:
|
||||
maybeClass = tuple([im_class])
|
||||
bound = types.MethodType(methodFunction, im_self, *maybeClass)
|
||||
return bound
|
||||
|
||||
|
||||
|
||||
copy_reg.pickle(types.MethodType, pickleMethod, unpickleMethod)
|
||||
|
||||
def _pickleFunction(f):
|
||||
"""
|
||||
Reduce, in the sense of L{pickle}'s C{object.__reduce__} special method, a
|
||||
function object into its constituent parts.
|
||||
|
||||
@param f: The function to reduce.
|
||||
@type f: L{types.FunctionType}
|
||||
|
||||
@return: a 2-tuple of a reference to L{_unpickleFunction} and a tuple of
|
||||
its arguments, a 1-tuple of the function's fully qualified name.
|
||||
@rtype: 2-tuple of C{callable, native string}
|
||||
"""
|
||||
if f.__name__ == '<lambda>':
|
||||
raise _UniversalPicklingError(
|
||||
"Cannot pickle lambda function: {}".format(f))
|
||||
return (_unpickleFunction,
|
||||
tuple([".".join([f.__module__, f.__qualname__])]))
|
||||
|
||||
|
||||
|
||||
def _unpickleFunction(fullyQualifiedName):
|
||||
"""
|
||||
Convert a function name into a function by importing it.
|
||||
|
||||
This is a synonym for L{twisted.python.reflect.namedAny}, but imported
|
||||
locally to avoid circular imports, and also to provide a persistent name
|
||||
that can be stored (and deprecated) independently of C{namedAny}.
|
||||
|
||||
@param fullyQualifiedName: The fully qualified name of a function.
|
||||
@type fullyQualifiedName: native C{str}
|
||||
|
||||
@return: A function object imported from the given location.
|
||||
@rtype: L{types.FunctionType}
|
||||
"""
|
||||
from twisted.python.reflect import namedAny
|
||||
return namedAny(fullyQualifiedName)
|
||||
|
||||
|
||||
|
||||
copy_reg.pickle(types.FunctionType, _pickleFunction, _unpickleFunction)
|
||||
|
||||
def pickleModule(module):
|
||||
'support function for copy_reg to pickle module refs'
|
||||
return unpickleModule, (module.__name__,)
|
||||
|
||||
def unpickleModule(name):
|
||||
'support function for copy_reg to unpickle module refs'
|
||||
if name in oldModules:
|
||||
log.msg("Module has moved: %s" % name)
|
||||
name = oldModules[name]
|
||||
log.msg(name)
|
||||
return __import__(name,{},{},'x')
|
||||
|
||||
|
||||
copy_reg.pickle(types.ModuleType,
|
||||
pickleModule,
|
||||
unpickleModule)
|
||||
|
||||
|
||||
|
||||
def pickleStringO(stringo):
|
||||
"""
|
||||
Reduce the given cStringO.
|
||||
|
||||
This is only called on Python 2, because the cStringIO module only exists
|
||||
on Python 2.
|
||||
|
||||
@param stringo: The string output to pickle.
|
||||
@type stringo: L{cStringIO.OutputType}
|
||||
"""
|
||||
'support function for copy_reg to pickle StringIO.OutputTypes'
|
||||
return unpickleStringO, (stringo.getvalue(), stringo.tell())
|
||||
|
||||
|
||||
|
||||
def unpickleStringO(val, sek):
|
||||
"""
|
||||
Convert the output of L{pickleStringO} into an appropriate type for the
|
||||
current python version. This may be called on Python 3 and will convert a
|
||||
cStringIO into an L{io.StringIO}.
|
||||
|
||||
@param val: The content of the file.
|
||||
@type val: L{bytes}
|
||||
|
||||
@param sek: The seek position of the file.
|
||||
@type sek: L{int}
|
||||
|
||||
@return: a file-like object which you can write bytes to.
|
||||
@rtype: L{cStringIO.OutputType} on Python 2, L{io.StringIO} on Python 3.
|
||||
"""
|
||||
x = _cStringIO()
|
||||
x.write(val)
|
||||
x.seek(sek)
|
||||
return x
|
||||
|
||||
|
||||
|
||||
def pickleStringI(stringi):
|
||||
"""
|
||||
Reduce the given cStringI.
|
||||
|
||||
This is only called on Python 2, because the cStringIO module only exists
|
||||
on Python 2.
|
||||
|
||||
@param stringi: The string input to pickle.
|
||||
@type stringi: L{cStringIO.InputType}
|
||||
|
||||
@return: a 2-tuple of (C{unpickleStringI}, (bytes, pointer))
|
||||
@rtype: 2-tuple of (function, (bytes, int))
|
||||
"""
|
||||
return unpickleStringI, (stringi.getvalue(), stringi.tell())
|
||||
|
||||
|
||||
|
||||
def unpickleStringI(val, sek):
|
||||
"""
|
||||
Convert the output of L{pickleStringI} into an appropriate type for the
|
||||
current Python version.
|
||||
|
||||
This may be called on Python 3 and will convert a cStringIO into an
|
||||
L{io.StringIO}.
|
||||
|
||||
@param val: The content of the file.
|
||||
@type val: L{bytes}
|
||||
|
||||
@param sek: The seek position of the file.
|
||||
@type sek: L{int}
|
||||
|
||||
@return: a file-like object which you can read bytes from.
|
||||
@rtype: L{cStringIO.OutputType} on Python 2, L{io.StringIO} on Python 3.
|
||||
"""
|
||||
x = _cStringIO(val)
|
||||
x.seek(sek)
|
||||
return x
|
||||
|
||||
|
||||
|
||||
try:
|
||||
from cStringIO import InputType, OutputType, StringIO as _cStringIO
|
||||
except ImportError:
|
||||
from io import StringIO as _cStringIO
|
||||
else:
|
||||
copy_reg.pickle(OutputType, pickleStringO, unpickleStringO)
|
||||
copy_reg.pickle(InputType, pickleStringI, unpickleStringI)
|
||||
|
||||
|
||||
|
||||
class Ephemeral:
|
||||
"""
|
||||
This type of object is never persisted; if possible, even references to it
|
||||
are eliminated.
|
||||
"""
|
||||
|
||||
def __reduce__(self):
|
||||
"""
|
||||
Serialize any subclass of L{Ephemeral} in a way which replaces it with
|
||||
L{Ephemeral} itself.
|
||||
"""
|
||||
return (Ephemeral, ())
|
||||
|
||||
def __getstate__(self):
|
||||
log.msg( "WARNING: serializing ephemeral %s" % self )
|
||||
if not _PYPY:
|
||||
import gc
|
||||
if getattr(gc, 'get_referrers', None):
|
||||
for r in gc.get_referrers(self):
|
||||
log.msg( " referred to by %s" % (r,))
|
||||
return None
|
||||
|
||||
def __setstate__(self, state):
|
||||
log.msg( "WARNING: unserializing ephemeral %s" % self.__class__ )
|
||||
self.__class__ = Ephemeral
|
||||
|
||||
|
||||
versionedsToUpgrade = {}
|
||||
upgraded = {}
|
||||
|
||||
def doUpgrade():
|
||||
global versionedsToUpgrade, upgraded
|
||||
for versioned in list(versionedsToUpgrade.values()):
|
||||
requireUpgrade(versioned)
|
||||
versionedsToUpgrade = {}
|
||||
upgraded = {}
|
||||
|
||||
def requireUpgrade(obj):
|
||||
"""Require that a Versioned instance be upgraded completely first.
|
||||
"""
|
||||
objID = id(obj)
|
||||
if objID in versionedsToUpgrade and objID not in upgraded:
|
||||
upgraded[objID] = 1
|
||||
obj.versionUpgrade()
|
||||
return obj
|
||||
|
||||
def _aybabtu(c):
|
||||
"""
|
||||
Get all of the parent classes of C{c}, not including C{c} itself, which are
|
||||
strict subclasses of L{Versioned}.
|
||||
|
||||
@param c: a class
|
||||
@returns: list of classes
|
||||
"""
|
||||
# begin with two classes that should *not* be included in the
|
||||
# final result
|
||||
l = [c, Versioned]
|
||||
for b in inspect.getmro(c):
|
||||
if b not in l and issubclass(b, Versioned):
|
||||
l.append(b)
|
||||
# return all except the unwanted classes
|
||||
return l[2:]
|
||||
|
||||
class Versioned:
|
||||
"""
|
||||
This type of object is persisted with versioning information.
|
||||
|
||||
I have a single class attribute, the int persistenceVersion. After I am
|
||||
unserialized (and styles.doUpgrade() is called), self.upgradeToVersionX()
|
||||
will be called for each version upgrade I must undergo.
|
||||
|
||||
For example, if I serialize an instance of a Foo(Versioned) at version 4
|
||||
and then unserialize it when the code is at version 9, the calls::
|
||||
|
||||
self.upgradeToVersion5()
|
||||
self.upgradeToVersion6()
|
||||
self.upgradeToVersion7()
|
||||
self.upgradeToVersion8()
|
||||
self.upgradeToVersion9()
|
||||
|
||||
will be made. If any of these methods are undefined, a warning message
|
||||
will be printed.
|
||||
"""
|
||||
persistenceVersion = 0
|
||||
persistenceForgets = ()
|
||||
|
||||
def __setstate__(self, state):
|
||||
versionedsToUpgrade[id(self)] = self
|
||||
self.__dict__ = state
|
||||
|
||||
def __getstate__(self, dict=None):
|
||||
"""Get state, adding a version number to it on its way out.
|
||||
"""
|
||||
dct = copy.copy(dict or self.__dict__)
|
||||
bases = _aybabtu(self.__class__)
|
||||
bases.reverse()
|
||||
bases.append(self.__class__) # don't forget me!!
|
||||
for base in bases:
|
||||
if 'persistenceForgets' in base.__dict__:
|
||||
for slot in base.persistenceForgets:
|
||||
if slot in dct:
|
||||
del dct[slot]
|
||||
if 'persistenceVersion' in base.__dict__:
|
||||
dct['%s.persistenceVersion' % reflect.qual(base)] = base.persistenceVersion
|
||||
return dct
|
||||
|
||||
def versionUpgrade(self):
|
||||
"""(internal) Do a version upgrade.
|
||||
"""
|
||||
bases = _aybabtu(self.__class__)
|
||||
# put the bases in order so superclasses' persistenceVersion methods
|
||||
# will be called first.
|
||||
bases.reverse()
|
||||
bases.append(self.__class__) # don't forget me!!
|
||||
# first let's look for old-skool versioned's
|
||||
if "persistenceVersion" in self.__dict__:
|
||||
|
||||
# Hacky heuristic: if more than one class subclasses Versioned,
|
||||
# we'll assume that the higher version number wins for the older
|
||||
# class, so we'll consider the attribute the version of the older
|
||||
# class. There are obviously possibly times when this will
|
||||
# eventually be an incorrect assumption, but hopefully old-school
|
||||
# persistenceVersion stuff won't make it that far into multiple
|
||||
# classes inheriting from Versioned.
|
||||
|
||||
pver = self.__dict__['persistenceVersion']
|
||||
del self.__dict__['persistenceVersion']
|
||||
highestVersion = 0
|
||||
highestBase = None
|
||||
for base in bases:
|
||||
if 'persistenceVersion' not in base.__dict__:
|
||||
continue
|
||||
if base.persistenceVersion > highestVersion:
|
||||
highestBase = base
|
||||
highestVersion = base.persistenceVersion
|
||||
if highestBase:
|
||||
self.__dict__['%s.persistenceVersion' % reflect.qual(highestBase)] = pver
|
||||
for base in bases:
|
||||
# ugly hack, but it's what the user expects, really
|
||||
if (Versioned not in base.__bases__ and
|
||||
'persistenceVersion' not in base.__dict__):
|
||||
continue
|
||||
currentVers = base.persistenceVersion
|
||||
pverName = '%s.persistenceVersion' % reflect.qual(base)
|
||||
persistVers = (self.__dict__.get(pverName) or 0)
|
||||
if persistVers:
|
||||
del self.__dict__[pverName]
|
||||
assert persistVers <= currentVers, "Sorry, can't go backwards in time."
|
||||
while persistVers < currentVers:
|
||||
persistVers = persistVers + 1
|
||||
method = base.__dict__.get('upgradeToVersion%s' % persistVers, None)
|
||||
if method:
|
||||
log.msg( "Upgrading %s (of %s @ %s) to version %s" % (reflect.qual(base), reflect.qual(self.__class__), id(self), persistVers) )
|
||||
method(self)
|
||||
else:
|
||||
log.msg( 'Warning: cannot upgrade %s to version %s' % (base, persistVers) )
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""
|
||||
Tests for L{twisted.persisted}.
|
||||
"""
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""
|
||||
Tests for L{twisted.persisted.styles}.
|
||||
"""
|
||||
|
||||
import pickle
|
||||
|
||||
from twisted.trial import unittest
|
||||
from twisted.persisted.styles import unpickleMethod, _UniversalPicklingError
|
||||
|
||||
|
||||
class Foo:
|
||||
"""
|
||||
Helper class.
|
||||
"""
|
||||
def method(self):
|
||||
"""
|
||||
Helper method.
|
||||
"""
|
||||
|
||||
|
||||
|
||||
class Bar:
|
||||
"""
|
||||
Helper class.
|
||||
"""
|
||||
|
||||
|
||||
|
||||
def sampleFunction():
|
||||
"""
|
||||
A sample function for pickling.
|
||||
"""
|
||||
|
||||
|
||||
|
||||
lambdaExample = lambda x: x
|
||||
|
||||
|
||||
|
||||
class UniversalPicklingErrorTests(unittest.TestCase):
|
||||
"""
|
||||
Tests the L{_UniversalPicklingError} exception.
|
||||
"""
|
||||
|
||||
def raise_UniversalPicklingError(self):
|
||||
"""
|
||||
Raise L{UniversalPicklingError}.
|
||||
"""
|
||||
raise _UniversalPicklingError
|
||||
|
||||
|
||||
def test_handledByPickleModule(self):
|
||||
"""
|
||||
Handling L{pickle.PicklingError} handles
|
||||
L{_UniversalPicklingError}.
|
||||
"""
|
||||
self.assertRaises(pickle.PicklingError,
|
||||
self.raise_UniversalPicklingError)
|
||||
|
||||
|
||||
def test_handledBycPickleModule(self):
|
||||
"""
|
||||
Handling L{cPickle.PicklingError} handles
|
||||
L{_UniversalPicklingError}.
|
||||
"""
|
||||
try:
|
||||
import cPickle
|
||||
except ImportError:
|
||||
raise unittest.SkipTest("cPickle not available.")
|
||||
else:
|
||||
self.assertRaises(cPickle.PicklingError,
|
||||
self.raise_UniversalPicklingError)
|
||||
|
||||
|
||||
|
||||
class UnpickleMethodTests(unittest.TestCase):
|
||||
"""
|
||||
Tests for the unpickleMethod function.
|
||||
"""
|
||||
|
||||
def test_instanceBuildingNamePresent(self):
|
||||
"""
|
||||
L{unpickleMethod} returns an instance method bound to the
|
||||
instance passed to it.
|
||||
"""
|
||||
foo = Foo()
|
||||
m = unpickleMethod('method', foo, Foo)
|
||||
self.assertEqual(m, foo.method)
|
||||
self.assertIsNot(m, foo.method)
|
||||
|
||||
|
||||
def test_instanceBuildingNameNotPresent(self):
|
||||
"""
|
||||
If the named method is not present in the class,
|
||||
L{unpickleMethod} finds a method on the class of the instance
|
||||
and returns a bound method from there.
|
||||
"""
|
||||
foo = Foo()
|
||||
m = unpickleMethod('method', foo, Bar)
|
||||
self.assertEqual(m, foo.method)
|
||||
self.assertIsNot(m, foo.method)
|
||||
|
||||
|
||||
def test_primeDirective(self):
|
||||
"""
|
||||
We do not contaminate normal function pickling with concerns from
|
||||
Twisted.
|
||||
"""
|
||||
def expected(n):
|
||||
return "\n".join([
|
||||
"c" + __name__,
|
||||
sampleFunction.__name__, "p" + n, "."
|
||||
]).encode("ascii")
|
||||
self.assertEqual(pickle.dumps(sampleFunction, protocol=0),
|
||||
expected("0"))
|
||||
try:
|
||||
import cPickle
|
||||
except:
|
||||
pass
|
||||
else:
|
||||
self.assertEqual(
|
||||
cPickle.dumps(sampleFunction, protocol=0),
|
||||
expected("1")
|
||||
)
|
||||
|
||||
|
||||
def test_lambdaRaisesPicklingError(self):
|
||||
"""
|
||||
Pickling a C{lambda} function ought to raise a L{pickle.PicklingError}.
|
||||
"""
|
||||
self.assertRaises(pickle.PicklingError, pickle.dumps, lambdaExample)
|
||||
try:
|
||||
import cPickle
|
||||
except:
|
||||
pass
|
||||
else:
|
||||
self.assertRaises(cPickle.PicklingError, cPickle.dumps,
|
||||
lambdaExample)
|
||||
Loading…
Add table
Add a link
Reference in a new issue