back.pysim: allow coroutines as processes.
This is a somewhat obscure use case, but it is possible to use async functions with pysim by carefully using @asyncio.coroutine. That is, async functions can call back into pysim if they are declared in a specific way: @asyncio.coroutine def do_something(self, value): yield self.reg.eq(value) which may then be called from elsewhere with: async def test_case(self): await do_something(0x1234) This approach is unfortunately limited in that async functions cannot yield directly. It should likely be improved by using async generators, but supporting coroutines in pysim is unobtrustive and allows existing code that made use of this feature in oMigen to work.
This commit is contained in:
parent
c934fc66e9
commit
1fc63a62c0
|
@ -402,7 +402,7 @@ class Simulator:
|
|||
def _check_process(process):
|
||||
if inspect.isgeneratorfunction(process):
|
||||
process = process()
|
||||
if not inspect.isgenerator(process):
|
||||
if not (inspect.isgenerator(process) or inspect.iscoroutine(process)):
|
||||
raise TypeError("Cannot add a process '{!r}' because it is not a generator or "
|
||||
"a generator function"
|
||||
.format(process))
|
||||
|
@ -412,7 +412,10 @@ class Simulator:
|
|||
if process in self._process_loc:
|
||||
return self._process_loc[process]
|
||||
else:
|
||||
frame = process.gi_frame
|
||||
if inspect.isgenerator(process):
|
||||
frame = process.gi_frame
|
||||
if inspect.iscoroutine(process):
|
||||
frame = process.cr_frame
|
||||
return "{}:{}".format(inspect.getfile(frame), inspect.getlineno(frame))
|
||||
|
||||
def add_process(self, process):
|
||||
|
|
Loading…
Reference in a new issue