Skip to content
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

OCPP 2.0.1 Add ocppPermitsCharge() #285

Merged
merged 3 commits into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
- Variables (non-persistent), UCs B05 - B07 ([#247](https://github.com/matth-x/MicroOcpp/pull/247), [#284](https://github.com/matth-x/MicroOcpp/pull/284))
- Transactions (preview only), UCs E01 - E12 ([#247](https://github.com/matth-x/MicroOcpp/pull/247))
- StatusNotification compatibility ([#247](https://github.com/matth-x/MicroOcpp/pull/247))
- ChangeAvailability compatibility ([#285](https://github.com/matth-x/MicroOcpp/pull/285))

### Fixed

Expand Down
13 changes: 13 additions & 0 deletions src/MicroOcpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,19 @@ bool ocppPermitsCharge(unsigned int connectorId) {
MO_DBG_WARN("OCPP uninitialized");
return false;
}
#if MO_ENABLE_V201
if (context->getVersion().major == 2) {
TransactionService::Evse *evse = nullptr;
if (auto txService = context->getModel().getTransactionService()) {
evse = txService->getEvse(connectorId);
}
if (!evse) {
MO_DBG_ERR("could not find EVSE");
return false;
}
return evse->ocppPermitsCharge();
}
#endif
auto connector = context->getModel().getConnector(connectorId);
if (!connector) {
MO_DBG_ERR("could not find connector");
Expand Down
23 changes: 23 additions & 0 deletions src/MicroOcpp/Model/ConnectorBase/Connector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <MicroOcpp/Model/Reservation/ReservationService.h>
#include <MicroOcpp/Model/Authorization/AuthorizationService.h>
#include <MicroOcpp/Model/ConnectorBase/EvseId.h>
#include <MicroOcpp/Model/Transactions/TransactionService.h>

#include <MicroOcpp/Core/SimpleRequestFactory.h>
#include <MicroOcpp/Core/Connection.h>
Expand Down Expand Up @@ -871,6 +872,28 @@ bool Connector::isOperative() {
}
}

#if MO_ENABLE_V201
if (model.getVersion().major == 2 && model.getTransactionService()) {
auto txService = model.getTransactionService();

if (connectorId == 0) {
for (unsigned int cId = 1; cId < model.getNumConnectors(); cId++) {
if (txService->getEvse(cId)->getTransaction() &&
txService->getEvse(cId)->getTransaction()->started &&
!txService->getEvse(cId)->getTransaction()->stopped) {
return true;
}
}
} else {
if (txService->getEvse(connectorId)->getTransaction() &&
txService->getEvse(connectorId)->getTransaction()->started &&
!txService->getEvse(connectorId)->getTransaction()->stopped) {
return true;
}
}
}
#endif //MO_ENABLE_V201

return availabilityVolatile && availabilityBool->getBool();
}

Expand Down
6 changes: 6 additions & 0 deletions src/MicroOcpp/Model/Transactions/TransactionService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,12 @@ const std::shared_ptr<MicroOcpp::Ocpp201::Transaction>& TransactionService::Evse
return transaction;
}

bool TransactionService::Evse::ocppPermitsCharge() {
return transaction &&
transaction->active &&
transaction->isAuthorized;
}

bool TransactionService::isTxStartPoint(TxStartStopPoint check) {
for (auto& v : txStartPointParsed) {
if (v == check) {
Expand Down
2 changes: 2 additions & 0 deletions src/MicroOcpp/Model/Transactions/TransactionService.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ class TransactionService {
bool abortTransaction(Ocpp201::Transaction::StopReason stopReason = Ocpp201::Transaction::StopReason::Other, Ocpp201::TransactionEventTriggerReason stopTrigger = Ocpp201::TransactionEventTriggerReason::AbnormalCondition);

const std::shared_ptr<Ocpp201::Transaction>& getTransaction();

bool ocppPermitsCharge();
};

friend Evse;
Expand Down
36 changes: 29 additions & 7 deletions src/MicroOcpp/Operations/ChangeAvailability.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Operations/ChangeAvailability.h>
#include <MicroOcpp/Model/Model.h>
#include <MicroOcpp/Model/ConnectorBase/Connector.h>
#include <MicroOcpp/Version.h>

#include <functional>

Expand All @@ -19,19 +20,40 @@ const char* ChangeAvailability::getOperationType(){
}

void ChangeAvailability::processReq(JsonObject payload) {
int connectorIdRaw = payload["connectorId"] | -1;
if (connectorIdRaw < 0) {
errorCode = "FormationViolation";
return;

unsigned int connectorId = 0;
const char *type = "_Undefined";

#if MO_ENABLE_V201
if (model.getVersion().major == 2) {
//OCPP 2.0.1
int connectorIdRaw = payload["evse"]["id"] | 0;
if (connectorIdRaw < 0) {
errorCode = "FormationViolation";
return;
}

connectorId = (unsigned int)connectorIdRaw;
type = payload["operationalStatus"] | type;
} else
#endif //MO_ENABLE_V201
{
//OCPP 1.6
int connectorIdRaw = payload["connectorId"] | -1;
if (connectorIdRaw < 0) {
errorCode = "FormationViolation";
return;
}

connectorId = (unsigned int)connectorIdRaw;
type = payload["type"] | type;
}
unsigned int connectorId = (unsigned int) connectorIdRaw;

if (connectorId >= model.getNumConnectors()) {
errorCode = "PropertyConstraintViolation";
return;
}

const char *type = payload["type"] | "INVALID";
bool available = false;

if (!strcmp(type, "Operative")) {
Expand Down
Loading