101 lines
2.7 KiB
C++
101 lines
2.7 KiB
C++
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-app.
|
|
*
|
|
* nymea-app is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* nymea-app is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with nymea-app. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef NFCTHINGACTIONWRITER_H
|
|
#define NFCTHINGACTIONWRITER_H
|
|
|
|
#include <QObject>
|
|
#include <QNearFieldManager>
|
|
#include <QNdefMessage>
|
|
|
|
#include "types/thing.h"
|
|
#include "engine.h"
|
|
#include "types/ruleactions.h"
|
|
|
|
class NfcThingActionWriter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(bool isAvailable READ isAvailable CONSTANT)
|
|
Q_PROPERTY(Engine *engine READ engine WRITE setEngine NOTIFY engineChanged)
|
|
Q_PROPERTY(Thing *thing READ thing WRITE setThing NOTIFY thingChanged)
|
|
Q_PROPERTY(RuleActions *actions READ actions CONSTANT)
|
|
Q_PROPERTY(int messageSize READ messageSize NOTIFY messageSizeChanged)
|
|
Q_PROPERTY(TagStatus status READ status NOTIFY statusChanged)
|
|
|
|
|
|
public:
|
|
enum TagStatus {
|
|
TagStatusWaiting,
|
|
TagStatusWriting,
|
|
TagStatusWritten,
|
|
TagStatusFailed
|
|
};
|
|
Q_ENUM(TagStatus)
|
|
|
|
static NfcThingActionWriter *instance();
|
|
|
|
explicit NfcThingActionWriter(QObject *parent = nullptr);
|
|
~NfcThingActionWriter();
|
|
|
|
bool isAvailable() const;
|
|
|
|
Engine *engine() const;
|
|
void setEngine(Engine *engine);
|
|
|
|
Thing *thing() const;
|
|
void setThing(Thing *thing);
|
|
|
|
RuleActions *actions() const;
|
|
|
|
int messageSize() const;
|
|
|
|
TagStatus status() const;
|
|
|
|
signals:
|
|
void engineChanged();
|
|
void thingChanged();
|
|
|
|
void messageSizeChanged();
|
|
void statusChanged();
|
|
|
|
private slots:
|
|
void updateContent();
|
|
|
|
void targetDetected(QNearFieldTarget *target);
|
|
void targetLost(QNearFieldTarget *target);
|
|
|
|
private:
|
|
QNearFieldManager *m_manager = nullptr;
|
|
Engine *m_engine = nullptr;
|
|
Thing *m_thing = nullptr;
|
|
RuleActions* m_actions;
|
|
|
|
TagStatus m_status = TagStatusWaiting;
|
|
|
|
QNdefMessage m_currentMessage;
|
|
|
|
};
|
|
|
|
#endif // NFCTHINGACTIONWRITER_H
|