Server IP : 127.0.0.2 / Your IP : 18.116.14.133 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/twisted/ |
Upload File : |
########################################################################### # Joshua R. Boverhof, LBNL # See Copyright for copyright notice! # $Id: $ ########################################################################### import sys, warnings # twisted & related imports from zope.interface import classProvides, implements, Interface # ZSI imports from ZSI import EvaluateException, ParseException, ParsedSoap, SoapWriter # # Stability: Unstable # def CheckInputArgs(*interfaces): """Must provide at least one interface, the last one may be repeated. """ l = len(interfaces) def wrapper(func): def check_args(self, *args, **kw): for i in range(len(args)): if (l > i and interfaces[i].providedBy(args[i])) or interfaces[-1].providedBy(args[i]): continue if l > i: raise TypeError, 'arg %s does not implement %s' %(args[i], interfaces[i]) raise TypeError, 'arg %s does not implement %s' %(args[i], interfaces[-1]) func(self, *args, **kw) return check_args return wrapper class HandlerChainInterface(Interface): def processRequest(self, input, **kw): """returns a representation of the request, the last link in the chain must return a response pyobj with a typecode attribute. Parameters: input -- Keyword Parameters: request -- HTTPRequest instance resource -- Resource instance """ def processResponse(self, output, **kw): """returns a string representing the soap response. Parameters output -- Keyword Parameters: request -- HTTPRequest instance resource -- Resource instance """ class CallbackChainInterface(Interface): def processRequest(self, input, **kw): """returns a response pyobj with a typecode attribute. Parameters: input -- Keyword Parameters: request -- HTTPRequest instance resource -- Resource instance """ class DataHandler: """ class variables: readerClass -- factory class to create reader for ParsedSoap instances. writerClass -- ElementProxy implementation to use for SoapWriter instances. """ classProvides(HandlerChainInterface) readerClass = None writerClass = None @classmethod def processRequest(cls, input, **kw): return ParsedSoap(input, readerclass=cls.readerClass) @classmethod def processResponse(cls, output, **kw): sw = SoapWriter(outputclass=cls.writerClass) sw.serialize(output) return sw class DefaultHandlerChain: @CheckInputArgs(CallbackChainInterface, HandlerChainInterface) def __init__(self, cb, *handlers): self.handlercb = cb self.handlers = handlers def processRequest(self, arg, **kw): for h in self.handlers: arg = h.processRequest(arg, **kw) return self.handlercb.processRequest(arg, **kw) def processResponse(self, arg, **kw): if arg is None: return for h in self.handlers: arg = h.processResponse(arg, **kw) s = str(arg) return s