checkifchange
This commit is contained in:
parent
816173be58
commit
0896703f0d
28
ahserver/functionProcessor.py
Normal file
28
ahserver/functionProcessor.py
Normal file
@ -0,0 +1,28 @@
|
||||
|
||||
from appPublic.dictObject import DictObject
|
||||
from appPublic.registerfunction import RegisterFunction
|
||||
|
||||
from aiohttp.web_response import Response, StreamResponse
|
||||
from .baseProcessor import BaseProcessor
|
||||
|
||||
class FunctionProcessor(BaseProcessor):
|
||||
@classmethod
|
||||
def isMe(self,name):
|
||||
return False
|
||||
|
||||
def __init__(self,path,resource, opts):
|
||||
self.config_opts = opts
|
||||
|
||||
async def datahandle(self,request):
|
||||
ns = self.config_opts.options.copy()
|
||||
ns.update(self.run_ns)
|
||||
ns = DictObject(ns)
|
||||
fname = self.config_opts.registerfunction
|
||||
rf = RegisterFunction()
|
||||
f = rf.get(fname)
|
||||
x = await f(ns)
|
||||
if isinstance(x,Response):
|
||||
self.retResponse = x
|
||||
else:
|
||||
self.content = x
|
||||
|
Loading…
Reference in New Issue
Block a user