-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
408 extend network connection profiles (#769)
* Extended the connection_state_changed_callback with the actual network connectivity slot info Added on_network_disconnected that will switch to the next network connection profile when invoked Extended the configure network connectivity profile callback with a cpp future / promise mechanism Added networkconnectivity documentation. These were originally added in PR 410 and have been updated to match the current implementation. Added on_try_switch_network_connection_profile function to try to switch to a higher priority network connection profile Signed-off-by: Wilco den Besten <[email protected]> * Fix after rebase on main: use cached values Signed-off-by: Wilco den Besten <[email protected]> * Fix incorrect comparsion Signed-off-by: Wilco den Besten <[email protected]> * Added new network profile functions to Chargepoint to retrieve the cached network profile information as that's helpful when using the newly added optional functions Signed-off-by: Wilco den Besten <[email protected]> * Fix missing break causing an indefinite wait for a std::future Signed-off-by: Wilco den Besten <[email protected]> * Add function description to newly added functions Signed-off-by: Wilco den Besten <[email protected]> * Processed review comments Signed-off-by: Wilco den Besten <[email protected]> * Remove std::optional from the split on_network_disconnected function Signed-off-by: Wilco den Besten <[email protected]> * Replace puml with inline mermaid Signed-off-by: Wilco den Besten <[email protected]> --------- Signed-off-by: Wilco den Besten <[email protected]>
- Loading branch information
1 parent
478e92d
commit 3c0d64c
Showing
11 changed files
with
536 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# Network connection profile interface | ||
|
||
libocpp automatically tries to connect using the given network connection profiles. | ||
However, if you want more control, you can use the callbacks provided for the network connection. | ||
|
||
libocpp will automatically connect to the network profile with the highest priority. | ||
If this fails, it will network profile with the second highest priority, and so on. | ||
|
||
## Set up interface (optional) | ||
|
||
A callback can be implemented to set up the interface. For example, if the interface is a modem, it must first be | ||
be activated before it is possible to connect to this interface. To do this, you can implement the callback | ||
`std::future<ConfigNetworkResult>(configure_network_connection_profile_callback(configuration_slot, NetworkConnectionProfile))` | ||
|
||
In the implementation of this callback, you have to create a promise and return the future to the promise: | ||
```cpp | ||
std::promise<ocpp::v201::ConfigNetworkResult> promise(); | ||
std::future<ocpp::v201::ConfigNetworkResult> future = promise.get_future(); | ||
return future; | ||
``` | ||
|
||
If the network was setup successfully, you can set the values in the promise with | ||
```cpp | ||
promise.set_value(configNetworkResult); | ||
``` | ||
This way, libocpp knows that it can connect to the given interface and will try to do so. | ||
A timeout can be configured using `NetworkConfigTimeout' to wait longer or shorter than the default 60 seconds. | ||
|
||
### Bind to a specific interface | ||
|
||
In some cases there are multiple network interfaces available and you may want to connect to a specific one. | ||
In `ConfigNetworkResult` you can specify which interface you want the websocket to bind to. | ||
Sometimes an interface has more than one IP address (in the case of a local/auto link for example). | ||
In this case you want the websocket to bind to a specific IP address. The `interface_address` in ConfigNetworkResult supports both. | ||
It will bind to the given network interface (a string containing the name of the interface) or the given ip address (a string containing the ip address in human readable format). | ||
|
||
## Connect to higher network connection profile priority (optional) | ||
|
||
Normally, when libocpp is connected with a network connection profile, it will not disconnect. | ||
However, there may be a situation where libocpp is connected to a profile with priority 2 or lower, and you find out at system level that an interface (with a higher priority) has changed and is now up. | ||
A call is added so that you can suggest that libocpp switch to this profile: `bool on_try_switch_network_connection_profile(const int32_t configuration_slot)`. | ||
libocpp will inform the caller by the return value if it tries to switch to this profile. | ||
|
||
## Disconnected / connected callbacks | ||
|
||
libocpp provides two callbacks for when the websocket is connected and disconnected. It will provide the network slot | ||
in these callbacks, so you can keep the network connection in use (e.g. not disable the modem), or disable the network connection (example again: disable the modem). | ||
|
||
## Sequence diagram | ||
|
||
'core' can be read as any application that implements libocpp | ||
|
||
For step 9, ping is one way to check if a CSMS is up, but you of course can implement a way to check this yourself. | ||
|
||
```mermaid | ||
sequenceDiagram | ||
participant csms | ||
participant libocpp | ||
participant core | ||
autonumber | ||
note over csms,libocpp: libocpp wants to connect to network connection profile | ||
libocpp ->>+ core: std::future<ConfigNetworkResult>(configure_network_connection_profile_callback(<br>configuration_slot, NetworkConnectionProfile)) | ||
note over core: ... possible delay ... | ||
core ->> core: Setup network, e.g. setup modem | ||
core ->>- libocpp: promise.set_value(status,<br>ip_address, etc) | ||
alt within timeout | ||
%% core ->> libocpp: on_network_update (ip address) | ||
libocpp ->> csms: connect websocket (ip address) | ||
csms ->> libocpp: ACK | ||
libocpp ->> core: websocket_connected_callback(configuration_slot, NetworkConnectionProfile) | ||
core ->> core: disable unneeded interfaces, <br>e.g. disable modem | ||
else timeout reached, next network connection profile selected | ||
libocpp -->> core: std::future<ConfigNetworkResult>(configure_network_connection_profile_callback(<br>configuration_slot, NetworkConnectionProfile)) (see 1) | ||
end | ||
note over libocpp: CSMS is connected via connection profile prio 2 (for example modem) but prio 1 (for example eth0) comes up | ||
loop until prio 1 csms is found | ||
core ->> csms: ping | ||
end | ||
core ->> libocpp: on_try_switch_networkconnectionprofile(configuration_slot) | ||
libocpp -->> core: std::future<ConfigNetworkResult>(configure_network_connection_profile_callback(<br>configuration_slot, NetworkConnectionProfile)) (see 1) | ||
note over csms,libocpp: Network is disconnected (for example networkcable removed) | ||
core ->> libocpp: disconnect csms (on_network_disconnected(configuration_slot, OCPPInterfaceEnum) | ||
libocpp ->> core: websocket_disconnected_callback(configuration_slot, NetworkConnectionProfile) | ||
libocpp -->> core: std::future<ConfigNetworkResult>(configure_network_connection_profile_callback(<br>configuration_slot, NetworkConnectionProfile)) (see 1) | ||
note over csms,libocpp: Network is disconnected (websocket timeout) | ||
libocpp ->> libocpp: disconnect csms | ||
libocpp ->> core: websocket_disconnected_callback(configuration_slot, NetworkConnectionProfile) | ||
libocpp -->> core: std::future<ConfigNetworkResult>(configure_network_connection_profile_callback(<br>configuration_slot, NetworkConnectionProfile)) (see 1) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.