# # Shared type definitions # # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # # $Id: Parameter.py,v 1.3 2006/10/02 18:32:31 mlhuang Exp $ # class Parameter: """ Typed value wrapper. Use in accepts and returns to document method parameters. Set the optional and default attributes for sub-parameters (i.e., dict fields). """ def __init__(self, type, doc = "", min = None, max = None, optional = None, ro = False): # Basic type of the parameter. May be a builtin type or Mixed. self.type = type # Documentation string for the parameter self.doc = doc # Basic value checking. For numeric types, the minimum and # maximum possible values, inclusive. For string types, the # minimum and maximum possible UTF-8 encoded byte lengths. self.min = min self.max = max # Whether the sub-parameter is optional or not. If None, # unknown whether it is optional. self.optional = optional # Whether the DB field is read-only. self.ro = ro def __repr__(self): return repr(self.type) class Mixed(tuple): """ A list (technically, a tuple) of types. Use in accepts and returns to document method parameters that may return mixed types. """ def __new__(cls, *types): return tuple.__new__(cls, types)