Server IP : 127.0.0.2 / Your IP : 3.144.82.191 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/python2.7/dist-packages/ZSI/ |
Upload File : |
# $Header$ '''Typecodes for numbers. ''' import types from ZSI import _copyright, _inttypes, _floattypes, _seqtypes, \ EvaluateException from ZSI.TC import TypeCode, Integer, Decimal from ZSI.wstools.Namespaces import SCHEMA class IunsignedByte(Integer): '''Unsigned 8bit value. ''' type = (SCHEMA.XSD3, "unsignedByte") parselist = [ (None, "unsignedByte") ] seriallist = [ ] class IunsignedShort(Integer): '''Unsigned 16bit value. ''' type = (SCHEMA.XSD3, "unsignedShort") parselist = [ (None, "unsignedShort") ] seriallist = [ ] class IunsignedInt(Integer): '''Unsigned 32bit value. ''' type = (SCHEMA.XSD3, "unsignedInt") parselist = [ (None, "unsignedInt") ] seriallist = [ ] class IunsignedLong(Integer): '''Unsigned 64bit value. ''' type = (SCHEMA.XSD3, "unsignedLong") parselist = [ (None, "unsignedLong") ] seriallist = [ ] class Ibyte(Integer): '''Signed 8bit value. ''' type = (SCHEMA.XSD3, "byte") parselist = [ (None, "byte") ] seriallist = [ ] class Ishort(Integer): '''Signed 16bit value. ''' type = (SCHEMA.XSD3, "short") parselist = [ (None, "short") ] seriallist = [ ] class Iint(Integer): '''Signed 32bit value. ''' type = (SCHEMA.XSD3, "int") parselist = [ (None, "int") ] seriallist = [ types.IntType ] class Ilong(Integer): '''Signed 64bit value. ''' type = (SCHEMA.XSD3, "long") parselist = [(None, "long")] seriallist = [ types.LongType ] class InegativeInteger(Integer): '''Value less than zero. ''' type = (SCHEMA.XSD3, "negativeInteger") parselist = [ (None, "negativeInteger") ] seriallist = [ ] class InonPositiveInteger(Integer): '''Value less than or equal to zero. ''' type = (SCHEMA.XSD3, "nonPositiveInteger") parselist = [ (None, "nonPositiveInteger") ] seriallist = [ ] class InonNegativeInteger(Integer): '''Value greater than or equal to zero. ''' type = (SCHEMA.XSD3, "nonNegativeInteger") parselist = [ (None, "nonNegativeInteger") ] seriallist = [ ] class IpositiveInteger(Integer): '''Value greater than zero. ''' type = (SCHEMA.XSD3, "positiveInteger") parselist = [ (None, "positiveInteger") ] seriallist = [ ] class Iinteger(Integer): '''Integer value. ''' type = (SCHEMA.XSD3, "integer") parselist = [ (None, "integer") ] seriallist = [ ] class IEnumeration(Integer): '''Integer value, limited to a specified set of values. ''' def __init__(self, choices, pname=None, **kw): Integer.__init__(self, pname, **kw) self.choices = choices t = type(choices) if t in _seqtypes: self.choices = tuple(choices) elif TypeCode.typechecks: raise TypeError( 'Enumeration choices must be list or sequence, not ' + str(t)) if TypeCode.typechecks: for c in self.choices: if type(c) not in _inttypes: raise TypeError('Enumeration choice "' + str(c) + '" is not an integer') def parse(self, elt, ps): val = Integer.parse(self, elt, ps) if val not in self.choices: raise EvaluateException('Value "' + str(val) + \ '" not in enumeration list', ps.Backtrace(elt)) return val def serialize(self, elt, sw, pyobj, name=None, orig=None, **kw): if pyobj not in self.choices: raise EvaluateException('Value not in int enumeration list', ps.Backtrace(elt)) Integer.serialize(self, elt, sw, pyobj, name=name, orig=orig, **kw) class FPfloat(Decimal): '''IEEE 32bit floating point value. ''' type = (SCHEMA.XSD3, "float") parselist = [ (None, "float") ] seriallist = [ types.FloatType ] class FPdouble(Decimal): '''IEEE 64bit floating point value. ''' type = (SCHEMA.XSD3, "double") parselist = [ (None, "double") ] seriallist = [ ] class FPEnumeration(FPfloat): '''Floating point value, limited to a specified set of values. ''' def __init__(self, choices, pname=None, **kw): FPfloat.__init__(self, pname, **kw) self.choices = choices t = type(choices) if t in _seqtypes: self.choices = tuple(choices) elif TypeCode.typechecks: raise TypeError( 'Enumeration choices must be list or sequence, not ' + str(t)) if TypeCode.typechecks: for c in self.choices: if type(c) not in _floattypes: raise TypeError('Enumeration choice "' + str(c) + '" is not floating point number') def parse(self, elt, ps): val = Decimal.parse(self, elt, ps) if val not in self.choices: raise EvaluateException('Value "' + str(val) + \ '" not in enumeration list', ps.Backtrace(elt)) return val def serialize(self, elt, sw, pyobj, name=None, orig=None, **kw): if pyobj not in self.choices: raise EvaluateException('Value not in int enumeration list', ps.Backtrace(elt)) Decimal.serialize(self, elt, sw, pyobj, name=name, orig=orig, **kw) if __name__ == '__main__': print _copyright