t.p.a.Argument : class documentation

Part of twisted.protocols.amp View Source View In Hierarchy

Known subclasses: twisted.protocols.amp.AmpList, twisted.protocols.amp.Boolean, twisted.protocols.amp.Float, twisted.protocols.amp.Integer, twisted.protocols.amp.String

Base-class of all objects that take values from Amp packets and convert them into objects for Python functions.
Method __init__ Create an Argument.
Method retrieve Retrieve the given key from the given dictionary, removing it if found.
Method fromBox Populate an 'out' dictionary with mapping names to Python values decoded from an 'in' AmpBox mapping strings to string values.
Method toBox Populate an 'out' AmpBox with strings encoded from an 'in' dictionary mapping names to Python values.
Method fromStringProto Convert a string to a Python value.
Method toStringProto Convert a Python object to a string.
Method fromString Convert a string to a Python object. Subclasses must implement this.
Method toString Convert a Python object into a string for passing over the network.
def __init__(self, optional=False): (source)
Create an Argument.
Parametersoptionala boolean indicating whether this argument can be omitted in the protocol.
def retrieve(self, d, name, proto): (source)
Retrieve the given key from the given dictionary, removing it if found.
Parametersda dictionary.
namea key in d.
protoan instance of an AMP.
Returnsd[name].
RaisesKeyErrorif I am not optional and no value was found.
def fromBox(self, name, strings, objects, proto): (source)
Populate an 'out' dictionary with mapping names to Python values decoded from an 'in' AmpBox mapping strings to string values.
Parametersnamethe argument name to retrieve (type: str )
stringsThe AmpBox to read string(s) from, a mapping of argument names to string values. (type: AmpBox )
objectsThe dictionary to write object(s) to, a mapping of names to Python objects. (type: dict )
protoan AMP instance.
def toBox(self, name, strings, objects, proto): (source)
Populate an 'out' AmpBox with strings encoded from an 'in' dictionary mapping names to Python values.
Parametersnamethe argument name to retrieve (type: str )
stringsThe AmpBox to write string(s) to, a mapping of argument names to string values. (type: AmpBox )
objectsThe dictionary to read object(s) from, a mapping of names to Python objects. (type: dict )
protothe protocol we are converting for. (type: AMP )
def fromStringProto(self, inString, proto): (source)
Convert a string to a Python value.
ParametersinStringthe string to convert.
protothe protocol we are converting for. (type: AMP )
Returnsa Python object.
def toStringProto(self, inObject, proto): (source)
Convert a Python object to a string.
ParametersinObjectthe object to convert.
protothe protocol we are converting for. (type: AMP )
def fromString(self, inString): (source)
Convert a string to a Python object. Subclasses must implement this.
ParametersinStringthe string to convert. (type: str )
Returnsthe decoded value from inString
def toString(self, inObject): (source)
Convert a Python object into a string for passing over the network.
ParametersinObjectan object of the type that this Argument is intended to deal with.
Returnsthe wire encoding of inObject (type: str )
API Documentation for Twisted, generated by pydoctor at 2011-10-27 15:57:47.