2018-06-07 04:26:49 +00:00
|
|
|
"""
|
2018-07-10 19:06:42 +00:00
|
|
|
tractor: An actor model micro-framework built on
|
|
|
|
``trio`` and ``multiprocessing``.
|
2018-06-07 04:26:49 +00:00
|
|
|
"""
|
2018-09-08 13:39:53 +00:00
|
|
|
import importlib
|
2018-06-07 04:26:49 +00:00
|
|
|
from functools import partial
|
2018-09-10 19:19:49 +00:00
|
|
|
from typing import Tuple, Any, Optional
|
2018-08-20 02:13:13 +00:00
|
|
|
import typing
|
2018-06-07 04:26:49 +00:00
|
|
|
|
2018-08-26 17:12:29 +00:00
|
|
|
import trio # type: ignore
|
2018-06-07 04:26:49 +00:00
|
|
|
|
2018-07-14 20:09:05 +00:00
|
|
|
from .log import get_console_log, get_logger, get_loglevel
|
2018-07-17 15:57:27 +00:00
|
|
|
from ._ipc import _connect_chan, Channel
|
2018-07-14 20:09:05 +00:00
|
|
|
from ._actor import (
|
2018-08-13 03:59:19 +00:00
|
|
|
Actor, _start_actor, Arbiter, get_arbiter, find_actor, wait_for_actor
|
2018-07-14 20:09:05 +00:00
|
|
|
)
|
|
|
|
from ._trionics import open_nursery
|
|
|
|
from ._state import current_actor
|
|
|
|
from ._portal import RemoteActorError
|
|
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
2018-08-13 03:59:19 +00:00
|
|
|
'current_actor',
|
|
|
|
'find_actor',
|
|
|
|
'get_arbiter',
|
|
|
|
'wait_for_actor',
|
|
|
|
'open_nursery',
|
|
|
|
'RemoteActorError',
|
|
|
|
'Channel',
|
2018-07-14 20:09:05 +00:00
|
|
|
]
|
2018-06-07 04:26:49 +00:00
|
|
|
|
2018-06-12 19:17:48 +00:00
|
|
|
|
2018-06-19 19:30:50 +00:00
|
|
|
# set at startup and after forks
|
2018-07-04 16:51:04 +00:00
|
|
|
_default_arbiter_host = '127.0.0.1'
|
|
|
|
_default_arbiter_port = 1616
|
2018-06-12 19:17:48 +00:00
|
|
|
|
|
|
|
|
2018-08-20 02:13:13 +00:00
|
|
|
async def _main(
|
|
|
|
async_fn: typing.Callable[..., typing.Awaitable],
|
2018-09-08 13:39:53 +00:00
|
|
|
args: Tuple,
|
2018-08-26 17:12:29 +00:00
|
|
|
kwargs: typing.Dict[str, typing.Any],
|
2018-08-20 02:13:13 +00:00
|
|
|
name: str,
|
2018-09-08 13:39:53 +00:00
|
|
|
arbiter_addr: Tuple[str, int]
|
2018-08-20 02:13:13 +00:00
|
|
|
) -> typing.Any:
|
2018-07-04 16:51:04 +00:00
|
|
|
"""Async entry point for ``tractor``.
|
|
|
|
"""
|
2018-07-14 20:09:05 +00:00
|
|
|
log = get_logger('tractor')
|
2018-09-05 22:13:23 +00:00
|
|
|
main = partial(async_fn, *args)
|
2018-07-04 16:51:04 +00:00
|
|
|
arbiter_addr = (host, port) = arbiter_addr or (
|
|
|
|
_default_arbiter_host, _default_arbiter_port)
|
2018-07-10 19:06:42 +00:00
|
|
|
get_console_log(kwargs.get('loglevel', get_loglevel()))
|
2018-07-07 20:50:59 +00:00
|
|
|
|
2018-07-04 16:51:04 +00:00
|
|
|
# make a temporary connection to see if an arbiter exists
|
|
|
|
arbiter_found = False
|
|
|
|
try:
|
|
|
|
async with _connect_chan(host, port):
|
|
|
|
arbiter_found = True
|
|
|
|
except OSError:
|
2018-09-10 19:19:49 +00:00
|
|
|
log.warning(f"No actor could be found @ {host}:{port}")
|
2018-07-04 16:51:04 +00:00
|
|
|
|
2018-07-06 06:36:21 +00:00
|
|
|
# create a local actor and start up its main routine/task
|
2018-07-04 16:51:04 +00:00
|
|
|
if arbiter_found: # we were able to connect to an arbiter
|
|
|
|
log.info(f"Arbiter seems to exist @ {host}:{port}")
|
|
|
|
actor = Actor(
|
|
|
|
name or 'anonymous',
|
2018-07-11 04:20:50 +00:00
|
|
|
arbiter_addr=arbiter_addr,
|
2018-07-04 16:51:04 +00:00
|
|
|
**kwargs
|
|
|
|
)
|
2018-07-10 19:06:42 +00:00
|
|
|
host, port = (host, 0)
|
2018-07-04 16:51:04 +00:00
|
|
|
else:
|
|
|
|
# start this local actor as the arbiter
|
2018-07-10 19:06:42 +00:00
|
|
|
actor = Arbiter(
|
2018-08-01 19:15:18 +00:00
|
|
|
name or 'arbiter', arbiter_addr=arbiter_addr, **kwargs)
|
2018-07-04 16:51:04 +00:00
|
|
|
|
2018-07-06 06:36:21 +00:00
|
|
|
# ``Actor._async_main()`` creates an internal nursery if one is not
|
|
|
|
# provided and thus blocks here until it's main task completes.
|
|
|
|
# Note that if the current actor is the arbiter it is desirable
|
|
|
|
# for it to stay up indefinitely until a re-election process has
|
|
|
|
# taken place - which is not implemented yet FYI).
|
2018-08-01 19:15:18 +00:00
|
|
|
return await _start_actor(
|
|
|
|
actor, main, host, port, arbiter_addr=arbiter_addr)
|
2018-06-27 15:34:22 +00:00
|
|
|
|
2018-06-12 19:17:48 +00:00
|
|
|
|
2018-07-10 19:06:42 +00:00
|
|
|
def run(
|
2018-08-20 02:13:13 +00:00
|
|
|
async_fn: typing.Callable[..., typing.Awaitable],
|
2018-09-08 13:39:53 +00:00
|
|
|
*args: Tuple,
|
2018-08-20 02:13:13 +00:00
|
|
|
name: str = None,
|
2018-09-08 13:39:53 +00:00
|
|
|
arbiter_addr: Tuple[str, int] = (
|
|
|
|
_default_arbiter_host, _default_arbiter_port),
|
2018-08-26 17:12:29 +00:00
|
|
|
**kwargs: typing.Dict[str, typing.Any],
|
2018-09-08 13:39:53 +00:00
|
|
|
) -> Any:
|
2018-06-12 19:17:48 +00:00
|
|
|
"""Run a trio-actor async function in process.
|
|
|
|
|
|
|
|
This is tractor's main entry and the start point for any async actor.
|
|
|
|
"""
|
2018-07-04 16:51:04 +00:00
|
|
|
return trio.run(_main, async_fn, args, kwargs, name, arbiter_addr)
|
2018-09-08 13:39:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
def run_daemon(
|
2018-09-11 01:56:40 +00:00
|
|
|
rpc_modules: Tuple[str],
|
2018-09-08 13:39:53 +00:00
|
|
|
**kwargs
|
|
|
|
) -> None:
|
2018-09-11 01:56:40 +00:00
|
|
|
"""Spawn a single daemon-actor which will repond to RPC.
|
|
|
|
"""
|
2018-09-10 19:19:49 +00:00
|
|
|
kwargs['rpc_module_paths'] = rpc_modules
|
|
|
|
|
2018-09-11 01:56:40 +00:00
|
|
|
for path in rpc_modules:
|
|
|
|
importlib.import_module(path)
|
|
|
|
|
2018-09-10 19:19:49 +00:00
|
|
|
return run(partial(trio.sleep, float('inf')), **kwargs)
|