Port data feed to new tractor stream api
parent
3375735914
commit
0d9f091a34
|
@ -51,6 +51,7 @@ from ._sampling import (
|
||||||
iter_ohlc_periods,
|
iter_ohlc_periods,
|
||||||
sample_and_broadcast,
|
sample_and_broadcast,
|
||||||
)
|
)
|
||||||
|
from .ingest import get_ingestormod
|
||||||
|
|
||||||
|
|
||||||
log = get_logger(__name__)
|
log = get_logger(__name__)
|
||||||
|
@ -302,6 +303,7 @@ class Feed:
|
||||||
async def receive(self) -> dict:
|
async def receive(self) -> dict:
|
||||||
return await self.stream.__anext__()
|
return await self.stream.__anext__()
|
||||||
|
|
||||||
|
@asynccontextmanager
|
||||||
async def index_stream(
|
async def index_stream(
|
||||||
self,
|
self,
|
||||||
delay_s: Optional[int] = None
|
delay_s: Optional[int] = None
|
||||||
|
@ -312,14 +314,16 @@ class Feed:
|
||||||
# XXX: this should be singleton on a host,
|
# XXX: this should be singleton on a host,
|
||||||
# a lone broker-daemon per provider should be
|
# a lone broker-daemon per provider should be
|
||||||
# created for all practical purposes
|
# created for all practical purposes
|
||||||
self._index_stream = await self._brokerd_portal.run(
|
async with self._brokerd_portal.open_stream_from(
|
||||||
iter_ohlc_periods,
|
iter_ohlc_periods,
|
||||||
delay_s=delay_s or self._max_sample_rate,
|
delay_s=delay_s or self._max_sample_rate,
|
||||||
)
|
) as self._index_stream:
|
||||||
|
yield self._index_stream
|
||||||
|
else:
|
||||||
|
yield self._index_stream
|
||||||
|
|
||||||
return self._index_stream
|
@asynccontextmanager
|
||||||
|
async def receive_trades_data(self) -> AsyncIterator[dict]:
|
||||||
async def recv_trades_data(self) -> AsyncIterator[dict]:
|
|
||||||
|
|
||||||
if not getattr(self.mod, 'stream_trades', False):
|
if not getattr(self.mod, 'stream_trades', False):
|
||||||
log.warning(
|
log.warning(
|
||||||
|
@ -333,7 +337,7 @@ class Feed:
|
||||||
# using the ``_.set_fake_trades_stream()`` method
|
# using the ``_.set_fake_trades_stream()`` method
|
||||||
if self._trade_stream is None:
|
if self._trade_stream is None:
|
||||||
|
|
||||||
self._trade_stream = await self._brokerd_portal.run(
|
async with self._brokerd_portal.open_stream_from(
|
||||||
|
|
||||||
self.mod.stream_trades,
|
self.mod.stream_trades,
|
||||||
|
|
||||||
|
@ -342,9 +346,10 @@ class Feed:
|
||||||
# in messages, though we could probably use
|
# in messages, though we could probably use
|
||||||
# more then one?
|
# more then one?
|
||||||
topics=['local_trades'],
|
topics=['local_trades'],
|
||||||
)
|
) as self._trade_stream:
|
||||||
|
yield self._trade_stream
|
||||||
return self._trade_stream
|
else:
|
||||||
|
yield self._trade_stream
|
||||||
|
|
||||||
|
|
||||||
def sym_to_shm_key(
|
def sym_to_shm_key(
|
||||||
|
@ -373,17 +378,17 @@ async def open_feed(
|
||||||
# TODO: do all!
|
# TODO: do all!
|
||||||
sym = symbols[0]
|
sym = symbols[0]
|
||||||
|
|
||||||
async with maybe_spawn_brokerd(
|
# TODO: compress these to one line with py3.9+
|
||||||
brokername,
|
async with maybe_spawn_brokerd(brokername, loglevel=loglevel) as portal:
|
||||||
loglevel=loglevel,
|
|
||||||
) as portal:
|
async with portal.open_stream_from(
|
||||||
|
|
||||||
stream = await portal.run(
|
|
||||||
attach_feed_bus,
|
attach_feed_bus,
|
||||||
brokername=brokername,
|
brokername=brokername,
|
||||||
symbol=sym,
|
symbol=sym,
|
||||||
loglevel=loglevel,
|
loglevel=loglevel
|
||||||
)
|
|
||||||
|
) as stream:
|
||||||
|
|
||||||
# TODO: can we make this work better with the proposed
|
# TODO: can we make this work better with the proposed
|
||||||
# context based bidirectional streaming style api proposed in:
|
# context based bidirectional streaming style api proposed in:
|
||||||
|
|
Loading…
Reference in New Issue