# piker: trading gear for hackers # Copyright (C) Tyler Goodlet (in stewardship for pikers) # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . ''' Main app startup and run. ''' from functools import partial from PyQt5.QtCore import QEvent import trio from .._daemon import maybe_spawn_brokerd from ..brokers import get_brokermod from . import _event from ._exec import run_qtractor from ..data.feed import install_brokerd_search from . import _search from ._chart import GodWidget from ..log import get_logger log = get_logger(__name__) async def load_provider_search( broker: str, loglevel: str, ) -> None: log.info(f'loading brokerd for {broker}..') async with ( maybe_spawn_brokerd( broker, loglevel=loglevel ) as portal, install_brokerd_search( portal, get_brokermod(broker), ), ): # keep search engine stream up until cancelled await trio.sleep_forever() async def _async_main( # implicit required argument provided by ``qtractor_run()`` main_widget: GodWidget, sym: str, brokernames: str, loglevel: str, ) -> None: """ Main Qt-trio routine invoked by the Qt loop with the widgets ``dict``. Provision the "main" widget with initial symbol data and root nursery. """ from . import _display godwidget = main_widget # attempt to configure DPI aware font size screen = godwidget.window.current_screen() # configure graphics update throttling based on display refresh rate _display._clear_throttle_rate = min( round(screen.refreshRate()), _display._clear_throttle_rate, ) log.info(f'Set graphics update rate to {_display._clear_throttle_rate} Hz') # TODO: do styling / themeing setup # _style.style_ze_sheets(godwidget) sbar = godwidget.window.status_bar starting_done = sbar.open_status('starting ze sexy chartz') async with ( trio.open_nursery() as root_n, ): # set root nursery and task stack for spawning other charts/feeds # that run cached in the bg godwidget._root_n = root_n # setup search widget and focus main chart view at startup # search widget is a singleton alongside the godwidget search = _search.SearchWidget(godwidget=godwidget) search.bar.unfocus() godwidget.hbox.addWidget(search) godwidget.search = search symbol, _, provider = sym.rpartition('.') # this internally starts a ``display_symbol_data()`` task above order_mode_ready = await godwidget.load_symbol( provider, symbol, loglevel ) # spin up a search engine for the local cached symbol set async with _search.register_symbol_search( provider_name='cache', search_routine=partial( _search.search_simple_dict, source=godwidget._chart_cache, ), # cache is super fast so debounce on super short period pause_period=0.01, ): # load other providers into search **after** # the chart's select cache for broker in brokernames: root_n.start_soon(load_provider_search, broker, loglevel) await order_mode_ready.wait() # start handling peripherals input for top level widgets async with ( # search bar kb input handling _event.open_handlers( [search.bar], event_types={ QEvent.KeyPress, }, async_handler=_search.handle_keyboard_input, filter_auto_repeats=False, # let repeats passthrough ), # completer view mouse click signal handling _event.open_signal_handler( search.view.pressed, search.view.on_pressed, ), ): # remove startup status text starting_done() await trio.sleep_forever() def _main( sym: str, brokernames: [str], piker_loglevel: str, tractor_kwargs, ) -> None: """Sync entry point to start a chart app. """ # ``tractor`` + Qt runtime entry point run_qtractor( func=_async_main, args=(sym, brokernames, piker_loglevel), main_widget=GodWidget, tractor_kwargs=tractor_kwargs, )