-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Github actions workflow and reformat of the code #8
Conversation
…using black and updated the CHANGELOG
@@ -74,7 +74,9 @@ def get_charge_params_v2(self) -> ChargeParamsV2: | |||
ev_max_voltage = PVEVMaxVoltage( | |||
multiplier=0, value=400, unit=UnitSymbol.VOLTAGE | |||
) | |||
ev_max_current = PVEVMaxCurrent(multiplier=-3, value=32000, unit=UnitSymbol.AMPERE) | |||
ev_max_current = PVEVMaxCurrent( | |||
multiplier=-3, value=32000, unit=UnitSymbol.AMPERE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean 'thirty two thousands" amps? or miliamps?
Additionally, shouldn't this values be declared as constants at the beginning of this file or somewhere else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As the unit says, it is in Amps. You have to pair the multiplier with the value, so it is 32000 * 10 ** -3 = 32
.
Additionally, shouldn't this values be declared as constants at the beginning of this file or somewhere else?
No, this is just an example for an interface for the evcc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a few comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…s to implement the -20 states until ScheduleExchange. Update README.md (#1) * Update README.md Corrected a few typos and added a sentence explaining why JRE is needed * Update README.md * Update README.md * Update README.md Removed mqtt api as dependency (#3) Fix compatibility with linux (#2) * Added ipv6 support in docker world; fixed compatibility issue with sed between BSD and Linux systems * improved readme * renamed the .env files to be more intuitive in regards to their purpose; Updated Readme, adding a more detailed explanation of how to handle IPv6 communication within docker; fixed a bug on handling the configuration of the NIC interface * fixed bug in the host mode compose file * Added a few more clarification in the build Makefile recipe * Fixed language typos in the README and removed references to the MQTT api * Refactored network tools methods and general handling of it, to be more consise and close to the use case we have. For example, as the NETWORK_INTERFACE is always present, there is no need to scan for all the available interfaces to find one that contains a link-local address. * Removed references ot the PYPI credentials in the Dockerfile * Fixed bug on printing the interface used * addressed editorial comments and renamed exception to be consistent * Fixed docstring typo * Due to the changes regarding the handling of the exceptions of the code, I did some reworking on the UDP client and server services, as in some occasions (e.g. when the interface configured was invalid) the application would throw the error 'evcc_1 | sys:1: RuntimeWarning: coroutine 'CommunicationSessionHandler.get_from_rcv_queue' was never awaited evcc_1 | RuntimeWarning: Enable tracemalloc to get the object allocation traceback evcc_1 | sys:1: RuntimeWarning: coroutine 'CommunicationSessionHandler.restart_sdp' was never awaited evcc_1 | RuntimeWarning: Enable tracemalloc to get the object allocation traceback' * improved docs * fixed grammar and context * removed more PYPI references * fixed bug on EVCC side when requesting to stop charging Simplification of the Authorization process_message method (#5) * Removed explicit call to process CharParameterDiscoveryReq message; instead we can just decide which is the next expected state * Updated README and Authoruzation docstring * converted the wanring to a TODO improved secc and evcc configuration handling and updated readme (#6) * improved secc configuration handling and updated readme * Added configuration handling for the evcc * Refactored the collection of shared settings and log configuration. Also provided a way to select the location of the PKI certificate structure directory * Added new line at the end * improved README * minor editorial change Fix 1090 physical types validation error (#7) * Fixed max value validation for the PhysicalValue types * Changed multiplier to test the changes * On favour of DRY, I moved the root_validator of the PhysicalTypes to their parent class * added extra comment related to the private method validation with pydantic * changed physical value restrictions after comments by Marc * Revert "changed physical value restrictions after comments by Marc" This reverts commit cf88330. * used the enums for a few fields Github actions workflow and reformat of the code (#8) * Added github workflows for testing and publish; Reformatted the code using black and updated the CHANGELOG * Added initial tests * reformatted tests * typo * install with pip * attempt to run tests without poetry * added pytest to the workflow * suspended temporarily the tests run * fixed typo * re-added poetry to call black * added iso15118 for black * attempt to run tests (using docker) * copied tests dir to the container * retry poetry tests * added init to iso15118 dir * docker as testing stage * try to run tests with poetry again * run tests with docker * typo on the github action tag * Editorial change Added the skeleton for the remaining states (message handling classes) on the SECC side Added the skeleton for the remaining states (message handling classes) on the EVCC side Minor editorial edits and deactivating PnC in the settings to test EIM implementation first Fixed the list issues regarding the EXI codec as raised by Shalin for the AuthorizationReq message and CertificateInstallationReq message Implemented AuthorizationReq for EVCC and SECC Modified exi_codec to complete the list of ISO 15118-20 messages that shall be used to parse an object from an incoming decoded EXI stream. Implemented ServiceDiscoveryReq and -Res Implemented ServiceDetailReq and -Res Implemented ServiceSelectionReq and -Res Changed settings.py in shared directory as ROOT_DIR did not point to the actual root directory but to settings.py in the shared folder, which messed up the path to the pki folder. As a result, the ssl_context could not be created. Minor editorial edits and bugfix to get the application to run again Made use of the new enums INT_16_MIN, INT_16_MAX, INT_8_MIN, INT_8_MAX in common_messages.py and common_types.py Made use of the new enums INT_16_MAX in evcc_settings.py. Plus minor editorial edits to respect column length of 88 Added the specific payload type for each V2GTP message the EVCC and SECC sends in ISO 15118-20. In -20, we have energy mode-specific payload types we need to distinguish so that the EXI decoder gets pointed to the right XSD to decode the message. Added the failed response for DCChargeParameterDiscoveryReq and modified the failed_responses.py to return also the payload type, which is important for the EXI codec (as in -20, we have energy mode-specific payload types). Improved implementation of the class ServiceSelection on EVCC and SECC side Implemented class DCChargeParameterDiscovery on SECC side Fixed a small bug after changing the signature of the EVCC interface's get_charge_params_v20() function Improved implementation of ServiceDiscovery and ServiceDetails in order to better handle the offered and selected service and their associated parameter sets. Needed some changes in the comm_session.py and comm_session_handler.py (both EVCC and SECC) as well as the state classes. Working on finishing the implementation of the class DC_ChargeParameterDiscovery on the EVCC side. Implementing the ScheduleExchangeReq message. Changed the implementation of the selected energy service and selected value-added services as session variables in the comm_session object. This way, we have easier access to the various service parameters, especially useful for the selected energy service. Applied ge and le restrictions to departure_time and added the missing fields ev_max_v2x_energy_request and ev_min_v2x_energy_request to the class DynamicScheduleExchangeReqParams Finished implementing state DCChargeParameterDiscovery on the EVCC side Improved/fixed the implementation of class ServiceSelection on SECC side to check if the EVCC selected the correct pairs of service ID and parameter set ID per selected service Introduced NumericID type in common_types.py and replaced simple int types for schedules IDs etc. with that type. Also changed the name of the class ListOfRootCertificateIDs to RootCertificateIDList to be consistent with the latest changes coming with PR#4 Started implememting the class ScheduleExchange on the SECC side, which includes work on the get_scheduled_se_params() and get_dynamic_se_params() functions on the EVCC and SECC side. Finished implememting the class ScheduleExchange on the SECC side Ran black on the files in this branch Ran flake8 on the files in this branch Forgot to add evcc_state.py to my last commit
…s to implement the -20 states until ScheduleExchange. Update README.md (#1) * Update README.md Corrected a few typos and added a sentence explaining why JRE is needed * Update README.md * Update README.md * Update README.md Removed mqtt api as dependency (#3) Fix compatibility with linux (#2) * Added ipv6 support in docker world; fixed compatibility issue with sed between BSD and Linux systems * improved readme * renamed the .env files to be more intuitive in regards to their purpose; Updated Readme, adding a more detailed explanation of how to handle IPv6 communication within docker; fixed a bug on handling the configuration of the NIC interface * fixed bug in the host mode compose file * Added a few more clarification in the build Makefile recipe * Fixed language typos in the README and removed references to the MQTT api * Refactored network tools methods and general handling of it, to be more consise and close to the use case we have. For example, as the NETWORK_INTERFACE is always present, there is no need to scan for all the available interfaces to find one that contains a link-local address. * Removed references ot the PYPI credentials in the Dockerfile * Fixed bug on printing the interface used * addressed editorial comments and renamed exception to be consistent * Fixed docstring typo * Due to the changes regarding the handling of the exceptions of the code, I did some reworking on the UDP client and server services, as in some occasions (e.g. when the interface configured was invalid) the application would throw the error 'evcc_1 | sys:1: RuntimeWarning: coroutine 'CommunicationSessionHandler.get_from_rcv_queue' was never awaited evcc_1 | RuntimeWarning: Enable tracemalloc to get the object allocation traceback evcc_1 | sys:1: RuntimeWarning: coroutine 'CommunicationSessionHandler.restart_sdp' was never awaited evcc_1 | RuntimeWarning: Enable tracemalloc to get the object allocation traceback' * improved docs * fixed grammar and context * removed more PYPI references * fixed bug on EVCC side when requesting to stop charging Simplification of the Authorization process_message method (#5) * Removed explicit call to process CharParameterDiscoveryReq message; instead we can just decide which is the next expected state * Updated README and Authoruzation docstring * converted the wanring to a TODO improved secc and evcc configuration handling and updated readme (#6) * improved secc configuration handling and updated readme * Added configuration handling for the evcc * Refactored the collection of shared settings and log configuration. Also provided a way to select the location of the PKI certificate structure directory * Added new line at the end * improved README * minor editorial change Fix 1090 physical types validation error (#7) * Fixed max value validation for the PhysicalValue types * Changed multiplier to test the changes * On favour of DRY, I moved the root_validator of the PhysicalTypes to their parent class * added extra comment related to the private method validation with pydantic * changed physical value restrictions after comments by Marc * Revert "changed physical value restrictions after comments by Marc" This reverts commit cf88330. * used the enums for a few fields Github actions workflow and reformat of the code (#8) * Added github workflows for testing and publish; Reformatted the code using black and updated the CHANGELOG * Added initial tests * reformatted tests * typo * install with pip * attempt to run tests without poetry * added pytest to the workflow * suspended temporarily the tests run * fixed typo * re-added poetry to call black * added iso15118 for black * attempt to run tests (using docker) * copied tests dir to the container * retry poetry tests * added init to iso15118 dir * docker as testing stage * try to run tests with poetry again * run tests with docker * typo on the github action tag * Editorial change Added the skeleton for the remaining states (message handling classes) on the SECC side Added the skeleton for the remaining states (message handling classes) on the EVCC side Minor editorial edits and deactivating PnC in the settings to test EIM implementation first Fixed the list issues regarding the EXI codec as raised by Shalin for the AuthorizationReq message and CertificateInstallationReq message Implemented AuthorizationReq for EVCC and SECC Modified exi_codec to complete the list of ISO 15118-20 messages that shall be used to parse an object from an incoming decoded EXI stream. Implemented ServiceDiscoveryReq and -Res Implemented ServiceDetailReq and -Res Implemented ServiceSelectionReq and -Res Changed settings.py in shared directory as ROOT_DIR did not point to the actual root directory but to settings.py in the shared folder, which messed up the path to the pki folder. As a result, the ssl_context could not be created. Minor editorial edits and bugfix to get the application to run again Made use of the new enums INT_16_MIN, INT_16_MAX, INT_8_MIN, INT_8_MAX in common_messages.py and common_types.py Made use of the new enums INT_16_MAX in evcc_settings.py. Plus minor editorial edits to respect column length of 88 Added the specific payload type for each V2GTP message the EVCC and SECC sends in ISO 15118-20. In -20, we have energy mode-specific payload types we need to distinguish so that the EXI decoder gets pointed to the right XSD to decode the message. Added the failed response for DCChargeParameterDiscoveryReq and modified the failed_responses.py to return also the payload type, which is important for the EXI codec (as in -20, we have energy mode-specific payload types). Improved implementation of the class ServiceSelection on EVCC and SECC side Implemented class DCChargeParameterDiscovery on SECC side Fixed a small bug after changing the signature of the EVCC interface's get_charge_params_v20() function Improved implementation of ServiceDiscovery and ServiceDetails in order to better handle the offered and selected service and their associated parameter sets. Needed some changes in the comm_session.py and comm_session_handler.py (both EVCC and SECC) as well as the state classes. Working on finishing the implementation of the class DC_ChargeParameterDiscovery on the EVCC side. Implementing the ScheduleExchangeReq message. Changed the implementation of the selected energy service and selected value-added services as session variables in the comm_session object. This way, we have easier access to the various service parameters, especially useful for the selected energy service. Applied ge and le restrictions to departure_time and added the missing fields ev_max_v2x_energy_request and ev_min_v2x_energy_request to the class DynamicScheduleExchangeReqParams Finished implementing state DCChargeParameterDiscovery on the EVCC side Improved/fixed the implementation of class ServiceSelection on SECC side to check if the EVCC selected the correct pairs of service ID and parameter set ID per selected service Introduced NumericID type in common_types.py and replaced simple int types for schedules IDs etc. with that type. Also changed the name of the class ListOfRootCertificateIDs to RootCertificateIDList to be consistent with the latest changes coming with PR#4 Started implememting the class ScheduleExchange on the SECC side, which includes work on the get_scheduled_se_params() and get_dynamic_se_params() functions on the EVCC and SECC side. Finished implememting the class ScheduleExchange on the SECC side Ran black on the files in this branch Ran flake8 on the files in this branch Forgot to add evcc_state.py to my last commit
fixes AB#157
Added github workflows for testing and publish; Reformatted the code using black and updated the CHANGELOG