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
This commit is contained in:
Eric F
2026-06-08 00:38:27 -04:00
parent 468cfeaa50
commit d398a6ced2
7326 changed files with 1177561 additions and 7 deletions

View File

@@ -0,0 +1,67 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright Pionix GmbH and Contributors to EVerest
#include <conversions.hpp>
#include <generated/interfaces/ISO15118_charger/Implementation.hpp>
#include <generated/types/session_cost.hpp>
#include <ocpp/v2/messages/Authorize.hpp>
#include "auth_token_validatorImpl.hpp"
namespace module {
namespace auth_validator {
void auth_token_validatorImpl::init() {
}
void auth_token_validatorImpl::ready() {
}
types::authorization::ValidationResult
auth_token_validatorImpl::handle_validate_token(types::authorization::ProvidedIdToken& provided_token) {
if (this->mod->charge_point == nullptr) {
EVLOG_warning << "ChargePoint not initialized, cannot handle validate token command";
types::authorization::ValidationResult validation_result;
validation_result.authorization_status = types::authorization::AuthorizationStatus::Unknown;
return validation_result;
}
types::authorization::ValidationResult validation_result;
try {
const auto id_token = conversions::to_ocpp_id_token(provided_token.id_token);
std::optional<ocpp::CiString<10000>> certificate_opt;
if (provided_token.certificate.has_value()) {
certificate_opt.emplace(provided_token.certificate.value());
}
std::optional<std::vector<ocpp::v2::OCSPRequestData>> ocsp_request_data_opt;
if (provided_token.iso15118CertificateHashData.has_value()) {
ocsp_request_data_opt =
conversions::to_ocpp_ocsp_request_data_vector(provided_token.iso15118CertificateHashData.value());
}
// request response
const auto response = this->mod->charge_point->validate_token(id_token, certificate_opt, ocsp_request_data_opt);
validation_result = conversions::to_everest_validation_result(response);
// Publish tariff message on the session_cost interface
if (!validation_result.tariff_messages.empty()) {
types::session_cost::TariffMessage tariff_message;
tariff_message.messages = validation_result.tariff_messages;
tariff_message.identifier_id = provided_token.id_token.value;
tariff_message.identifier_type = types::display_message::IdentifierType::IdToken;
this->mod->p_session_cost->publish_tariff_message(tariff_message);
}
} catch (const ocpp::StringConversionException& e) {
EVLOG_warning << "Error converting id token to validate: " << e.what();
validation_result.authorization_status = types::authorization::AuthorizationStatus::Unknown;
} catch (const std::exception& e) {
EVLOG_warning << "Unknown error during validation of id token: " << e.what();
validation_result.authorization_status = types::authorization::AuthorizationStatus::Unknown;
}
return validation_result;
};
} // namespace auth_validator
} // namespace module

View File

@@ -0,0 +1,62 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright Pionix GmbH and Contributors to EVerest
#ifndef AUTH_VALIDATOR_AUTH_TOKEN_VALIDATOR_IMPL_HPP
#define AUTH_VALIDATOR_AUTH_TOKEN_VALIDATOR_IMPL_HPP
//
// AUTO GENERATED - MARKED REGIONS WILL BE KEPT
// template version 3
//
#include <generated/interfaces/auth_token_validator/Implementation.hpp>
#include "../OCPP201.hpp"
// ev@75ac1216-19eb-4182-a85c-820f1fc2c091:v1
// insert your custom include headers here
// ev@75ac1216-19eb-4182-a85c-820f1fc2c091:v1
namespace module {
namespace auth_validator {
struct Conf {};
class auth_token_validatorImpl : public auth_token_validatorImplBase {
public:
auth_token_validatorImpl() = delete;
auth_token_validatorImpl(Everest::ModuleAdapter* ev, const Everest::PtrContainer<OCPP201>& mod, Conf& config) :
auth_token_validatorImplBase(ev, "auth_validator"), mod(mod), config(config){};
// ev@8ea32d28-373f-4c90-ae5e-b4fcc74e2a61:v1
// insert your public definitions here
// ev@8ea32d28-373f-4c90-ae5e-b4fcc74e2a61:v1
protected:
// command handler functions (virtual)
virtual types::authorization::ValidationResult
handle_validate_token(types::authorization::ProvidedIdToken& provided_token) override;
// ev@d2d1847a-7b88-41dd-ad07-92785f06f5c4:v1
// insert your protected definitions here
// ev@d2d1847a-7b88-41dd-ad07-92785f06f5c4:v1
private:
const Everest::PtrContainer<OCPP201>& mod;
const Conf& config;
virtual void init() override;
virtual void ready() override;
// ev@3370e4dd-95f4-47a9-aaec-ea76f34a66c9:v1
// insert your private definitions here
// ev@3370e4dd-95f4-47a9-aaec-ea76f34a66c9:v1
};
// ev@3d7da0ad-02c2-493d-9920-0bbbd56b9876:v1
// insert other definitions here
// ev@3d7da0ad-02c2-493d-9920-0bbbd56b9876:v1
} // namespace auth_validator
} // namespace module
#endif // AUTH_VALIDATOR_AUTH_TOKEN_VALIDATOR_IMPL_HPP