Files
cariflex/tools/shapeshifter-library-python-main/shapeshifter_uftp/client/dso_cro_client.py
Eric F d398a6ced2 Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter
- CitrineOS core extracted (CSMS OCPP 2.0.1)
- OpenOCPP extracted (firmware OCPP 1.6J/2.0.1)
- ShapeShifter library installed (pip install -e)
- ShapeShifter specification extracted
- EVerest extracted

TODO updated with progress
2026-06-08 00:38:27 -04:00

26 lines
851 B
Python

from ..uftp import DsoPortfolioQuery, DsoPortfolioUpdate, UsefRole
from .base_client import ShapeshifterClient
class ShapeshifterDsoCroClient(ShapeshifterClient):
"""
Client that allows the DSO to connect to the CRO.
"""
sender_role = UsefRole.DSO
recipient_role = UsefRole.CRO
def send_dso_portfolio_update(self, message: DsoPortfolioUpdate) -> None:
"""
The DSOPortfolioUpdate is used by the DSO to indicate on which
congestion points it wants to engage in flexibility trading.
"""
self._send_message(message)
def send_dso_portfolio_query(self, message: DsoPortfolioQuery) -> None:
"""
DSOPortfolioQuery is used by DSOs to discover which AGRs represent
connections on its registered congestion point(s).
"""
self._send_message(message)