- 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
91 lines
2.5 KiB
C++
91 lines
2.5 KiB
C++
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright Pionix GmbH and Contributors to EVerest
|
|
|
|
#include <cstdio>
|
|
#include <iomanip>
|
|
#include <stdexcept>
|
|
#include <thread>
|
|
|
|
extern "C" {
|
|
#include <linux_nfc_api.h>
|
|
#include <linux_nfc_api_compatibility.h>
|
|
}
|
|
|
|
#include "libnfc_handler.hpp"
|
|
|
|
// NOTE (aw): access to this variable is not thread safe
|
|
// but for the current "one-shot" use, this should not be necessary
|
|
static NfcHandler* nfc_handler_instance{nullptr};
|
|
static nfcTagCallback_t nfc_callbacks;
|
|
|
|
NfcHandler::NfcHandler(const std::filesystem::path& config_path) {
|
|
// we could have also used a singleton instance,
|
|
if (nfc_handler_instance) {
|
|
throw std::runtime_error("Only one nfc handler instance allowed");
|
|
}
|
|
|
|
setConfigPath(config_path.c_str());
|
|
|
|
InitializeLogLevel();
|
|
|
|
if (doInitialize() != 0) {
|
|
throw std::runtime_error("Failed to initialize libnfc_nci library");
|
|
}
|
|
|
|
nfc_callbacks.onTagArrival = [](nfc_tag_info_t* tag_info) { nfc_handler_instance->on_tag_arrival(tag_info); };
|
|
|
|
nfc_callbacks.onTagDeparture = []() { nfc_handler_instance->on_tag_departure(); };
|
|
|
|
nfc_handler_instance = this;
|
|
}
|
|
|
|
bool NfcHandler::start(Callback callback_) {
|
|
if (this->callback) {
|
|
return false;
|
|
}
|
|
|
|
this->callback = std::move(callback_);
|
|
|
|
registerTagCallback(&nfc_callbacks);
|
|
// enable discovery in reader-only mody, no host-routing/host-card-emulation and force a restart
|
|
// doEnableDiscovery (int technologies_mask,
|
|
// int reader_only_mode,
|
|
// int enable_host_routing,
|
|
// int restart)
|
|
doEnableDiscovery(DEFAULT_NFA_TECH_MASK, 0x01, 0x0, 0x1);
|
|
|
|
return true;
|
|
}
|
|
|
|
void NfcHandler::on_tag_arrival(void* tag_info_) {
|
|
// unfortunately, typedefs can't be forward declared, therefor we need to do it here
|
|
const auto tag_info = reinterpret_cast<nfc_tag_info_t*>(tag_info_);
|
|
|
|
const auto protocol = [](tNFC_PROTOCOL const in) {
|
|
if (in == NFA_PROTOCOL_MIFARE) {
|
|
return Protocol::MIFARE;
|
|
} else if (in == NFA_PROTOCOL_15693) {
|
|
return Protocol::ISO_IEC_15693;
|
|
}
|
|
|
|
return Protocol::UNKNOWN;
|
|
}(tag_info->protocol);
|
|
|
|
if (this->callback) {
|
|
this->callback(tag_info->uid, tag_info->uid_length, protocol);
|
|
} else {
|
|
// this should not happen
|
|
// assert(false);
|
|
}
|
|
}
|
|
|
|
void NfcHandler::on_tag_departure() {
|
|
// handle tag departure
|
|
}
|
|
|
|
NfcHandler::~NfcHandler() {
|
|
disableDiscovery();
|
|
deregisterTagCallback();
|
|
doDeinitialize();
|
|
}
|