# 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 . """ Fast, smooth, sexy curves. """ from typing import Optional import numpy as np import pyqtgraph as pg from PyQt5 import QtGui, QtWidgets from PyQt5.QtWidgets import QGraphicsItem from PyQt5.QtCore import ( Qt, QLineF, QSizeF, QRectF, QPointF, ) from .._profile import pg_profile_enabled, ms_slower_then from ._style import hcolor # from ._compression import ( # # ohlc_to_m4_line, # ds_m4, # ) from ._pathops import xy_downsample from ..log import get_logger log = get_logger(__name__) _line_styles: dict[str, int] = { 'solid': Qt.PenStyle.SolidLine, 'dash': Qt.PenStyle.DashLine, 'dot': Qt.PenStyle.DotLine, 'dashdot': Qt.PenStyle.DashDotLine, } class FastAppendCurve(pg.GraphicsObject): ''' A faster, append friendly version of ``pyqtgraph.PlotCurveItem`` built for real-time data updates. The main difference is avoiding regeneration of the entire historical path where possible and instead only updating the "new" segment(s) via a ``numpy`` array diff calc. Further the "last" graphic segment is drawn independently such that near-term (high frequency) discrete-time-sampled style updates don't trigger a full path redraw. ''' def __init__( self, *args, step_mode: bool = False, color: str = 'default_lightest', fill_color: Optional[str] = None, style: str = 'solid', name: Optional[str] = None, use_fpath: bool = True, **kwargs ) -> None: # brutaaalll, see comments within.. self.yData = None self.xData = None # self._vr: Optional[tuple] = None # self._avr: Optional[tuple] = None self._last_cap: int = 0 self._name = name self.path: Optional[QtGui.QPainterPath] = None self.use_fpath = use_fpath self.fast_path: Optional[QtGui.QPainterPath] = None # TODO: we can probably just dispense with the parent since # we're basically only using the pen setting now... super().__init__(*args, **kwargs) # self._xrange: tuple[int, int] = self.dataBounds(ax=0) # self._xrange: Optional[tuple[int, int]] = None # self._x_iv_range = None # self._last_draw = time.time() # self._in_ds: bool = False # self._last_uppx: float = 0 # all history of curve is drawn in single px thickness pen = pg.mkPen(hcolor(color)) pen.setStyle(_line_styles[style]) if 'dash' in style: pen.setDashPattern([8, 3]) self._pen = pen # last segment is drawn in 2px thickness for emphasis # self.last_step_pen = pg.mkPen(hcolor(color), width=2) self.last_step_pen = pg.mkPen(pen, width=2) self._last_line: Optional[QLineF] = None self._last_step_rect: Optional[QRectF] = None # flat-top style histogram-like discrete curve self._step_mode: bool = step_mode # self._fill = True self._brush = pg.functions.mkBrush(hcolor(fill_color or color)) # TODO: one question still remaining is if this makes trasform # interactions slower (such as zooming) and if so maybe if/when # we implement a "history" mode for the view we disable this in # that mode? # if step_mode: # don't enable caching by default for the case where the # only thing drawn is the "last" line segment which can # have a weird artifact where it won't be fully drawn to its # endpoint (something we saw on trade rate curves) self.setCacheMode(QGraphicsItem.DeviceCoordinateCache) # TODO: probably stick this in a new parent # type which will contain our own version of # what ``PlotCurveItem`` had in terms of base # functionality? A `FlowGraphic` maybe? def x_uppx(self) -> int: px_vecs = self.pixelVectors()[0] if px_vecs: xs_in_px = px_vecs.x() return round(xs_in_px) else: return 0 def px_width(self) -> float: vb = self.getViewBox() if not vb: return 0 vr = self.viewRect() l, r = int(vr.left()), int(vr.right()) # if not self._xrange: # return 0 start, stop = self._xrange lbar = max(l, start) rbar = min(r, stop) return vb.mapViewToDevice( QLineF(lbar, 0, rbar, 0) ).length() def draw_last( self, x: np.ndarray, y: np.ndarray, ) -> None: x_last = x[-1] y_last = y[-1] # draw the "current" step graphic segment so it lines up with # the "middle" of the current (OHLC) sample. if self._step_mode: self._last_line = QLineF( x_last - 0.5, 0, x_last + 0.5, 0, # x_last, 0, # x_last, 0, ) self._last_step_rect = QRectF( x_last - 0.5, 0, x_last + 0.5, y_last # x_last, 0, # x_last, y_last ) # print( # f"path br: {self.path.boundingRect()}", # f"fast path br: {self.fast_path.boundingRect()}", # f"last rect br: {self._last_step_rect}", # ) else: self._last_line = QLineF( x[-2], y[-2], x_last, y_last ) # XXX: lol brutal, the internals of `CurvePoint` (inherited by # our `LineDot`) required ``.getData()`` to work.. def getData(self): return self.xData, self.yData def clear(self): ''' Clear internal graphics making object ready for full re-draw. ''' # NOTE: original code from ``pg.PlotCurveItem`` self.xData = None self.yData = None # XXX: previously, if not trying to leverage `.reserve()` allocs # then you might as well create a new one.. # self.path = None # path reservation aware non-mem de-alloc cleaning if self.path: self.path.clear() if self.fast_path: # self.fast_path.clear() self.fast_path = None # self.disable_cache() # self.setCacheMode(QGraphicsItem.DeviceCoordinateCache) def reset_cache(self) -> None: self.disable_cache() self.setCacheMode(QGraphicsItem.DeviceCoordinateCache) def disable_cache(self) -> None: ''' Disable the use of the pixel coordinate cache and trigger a geo event. ''' # XXX: pretty annoying but, without this there's little # artefacts on the append updates to the curve... self.setCacheMode(QtWidgets.QGraphicsItem.NoCache) # self.prepareGeometryChange() def boundingRect(self): ''' Compute and then cache our rect. ''' if self.path is None: return QtGui.QPainterPath().boundingRect() else: # dynamically override this method after initial # path is created to avoid requiring the above None check self.boundingRect = self._path_br return self._path_br() def _path_br(self): ''' Post init ``.boundingRect()```. ''' hb = self.path.controlPointRect() # hb = self.path.boundingRect() hb_size = hb.size() fp = self.fast_path if fp: fhb = fp.controlPointRect() hb_size = fhb.size() + hb_size # print(f'hb_size: {hb_size}') # if self._last_step_rect: # hb_size += self._last_step_rect.size() # if self._line: # br = self._last_step_rect.bottomRight() # tl = QPointF( # # self._vr[0], # # hb.topLeft().y(), # # 0, # # hb_size.height() + 1 # ) # if self._last_step_rect: # br = self._last_step_rect.bottomRight() # else: # hb_size += QSizeF(1, 1) w = hb_size.width() + 1 h = hb_size.height() + 1 # br = QPointF( # self._vr[-1], # # tl.x() + w, # tl.y() + h, # ) br = QRectF( # top left # hb.topLeft() # tl, QPointF(hb.topLeft()), # br, # total size # QSizeF(hb_size) # hb_size, QSizeF(w, h) ) # print(f'bounding rect: {br}') return br def paint( self, p: QtGui.QPainter, opt: QtWidgets.QStyleOptionGraphicsItem, w: QtWidgets.QWidget ) -> None: profiler = pg.debug.Profiler( msg=f'FastAppendCurve.paint(): `{self._name}`', disabled=not pg_profile_enabled(), ms_threshold=ms_slower_then, ) self.prepareGeometryChange() if ( self._step_mode and self._last_step_rect ): brush = self._brush # p.drawLines(*tuple(filter(bool, self._last_step_lines))) # p.drawRect(self._last_step_rect) p.fillRect(self._last_step_rect, brush) profiler('.fillRect()') if self._last_line: p.setPen(self.last_step_pen) p.drawLine(self._last_line) profiler('.drawLine()') p.setPen(self._pen) path = self.path # cap = path.capacity() # if cap != self._last_cap: # print(f'NEW CAPACITY: {self._last_cap} -> {cap}') # self._last_cap = cap if path: p.drawPath(path) profiler(f'.drawPath(path): {path.capacity()}') fp = self.fast_path if fp: p.drawPath(fp) profiler('.drawPath(fast_path)') # TODO: try out new work from `pyqtgraph` main which should # repair horrid perf (pretty sure i did and it was still # horrible?): # https://github.com/pyqtgraph/pyqtgraph/pull/2032 # if self._fill: # brush = self.opts['brush'] # p.fillPath(self.path, brush)