#ocpp #oca #charger #ocpp16 #eletric-vehicle

ocpp_rs

Protocol implementation for Open Charge Point Protocol (OCPP) in Rust

10 releases

new 0.1.13 Sep 7, 2024
0.1.12 Aug 10, 2024
0.1.4 Jul 4, 2024

#332 in Data structures

Download history 107/week @ 2024-06-29 29/week @ 2024-07-06 2/week @ 2024-07-13 499/week @ 2024-08-03 133/week @ 2024-08-10 6/week @ 2024-08-17

638 downloads per month

MIT license

125KB
2K SLoC

OCPP-RS

OCPP-RS is a Rust library for implementing the Open Charge Point Protocol (OCPP) in Rust.

it currently supports OCPP 1.6.

Documentation

Usage

In Cargo.toml, add the following dependency:

[dependencies]
ocpp-rs = "0.1"

Particularities

Since the original OCPP 1.6 protocol does not contain a type field for CallResult, when parsing CallResultlt, you need to handle Special cases where JSON payloads are ambiguous, like empty objects like: {}, these might get serialized as a EmptyResponse instead of the variant you are waiting for like GetConfiguration.

Look at this file to see how to properly handle CallResults: example

Example

Receiving a payload from a client:

use ocpp_rs::v16::parse::{self, Message};
use ocpp_rs::v16::call::{Action, Call};

// Example incoming message
let incoming_text = "[2, \"19223201\", \"BootNotification\", { \"chargePointVendor\": \"VendorX\", \"chargePointModel\": \"SingleSocketCharger\" }]";
let incoming_message = parse::to_message(incoming_text);
if let Ok(Message::Call(call)) = incoming_message {
    match call.payload {
        Action::BootNotification(boot_notification) => {
           // Do something with boot_notification
        },
        _ => {
          // Handle other actions
        }
   }
}

Sending a payload to a client:

use ocpp_rs::v16::call::StartTransaction;
use ocpp_rs::v16::call_result::{self, CallResult, ResultPayload};
use ocpp_rs::v16::data_types::IdTagInfo;
use ocpp_rs::v16::enums::ChargePointStatus;
use ocpp_rs::v16::parse::Message;

let response = Message::CallResult(CallResult::new(
    "1234".to_string(),
    ResultPayload::StartTransaction(call_result::StartTransaction {
        transaction_id: 0,
        id_tag_info: IdTagInfo {
            status: ocpp_rs::v16::enums::ParsedGenericStatus::Accepted,
            expiry_date: None,
            parent_id_tag: None,
        },
    }),
));

Dependencies

~1.7–2.9MB
~54K SLoC