def declareInputBuffer(self, name):
pass
+class OptionalInputBufferMixIn:
+
+ """Add to input buffers if the buffer may be omitted: pass None in Python
+ and the C code will get a NULL pointer and zero size"""
+
+ def getargsFormat(self):
+ return "z#"
+
class FixedInputBufferType(InputOnlyBufferMixIn, FixedInputOutputBufferType):
def passInput(self, name):
return "%s__in__" % name
+class OptionalFixedInputBufferType(OptionalInputBufferMixIn, FixedInputBufferType):
+ pass
class FixedOutputBufferType(OutputOnlyBufferMixIn, FixedInputOutputBufferType):
def passInput(self, name):
return "%s__in__, %s__len__" % (name, name)
-
+class OptionalVarInputBufferType(OptionalInputBufferMixIn, VarInputBufferType):
+ pass
+
# ----- PART 2: Structure buffers -----
# Various buffer types
InBuffer = VarInputBufferType('char', 'long', 'l') # (buf, len)
+OptionalInBuffer = OptionalVarInputBufferType('char', 'long', 'l') # (buf, len)
InOutBuffer = HeapInputOutputBufferType('char', 'long', 'l') # (inbuf, outbuf, len)
VarInOutBuffer = VarHeapInputOutputBufferType('char', 'long', 'l') # (inbuf, outbuf, &len)