1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00
sdrangel/swagger/sdrangel/code/qt5/client/SWGCWKeyerSettings.cpp

193 lines
5.0 KiB
C++

/**
* SDRangel
* This is the web REST/JSON API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ (4.3+ in Windows) GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube --- Limitations and specifcities: * In SDRangel GUI the first Rx device set cannot be deleted. Conversely the server starts with no device sets and its number of device sets can be reduced to zero by as many calls as necessary to /sdrangel/deviceset with DELETE method. * Stopping instance i.e. /sdrangel with DELETE method is a server only feature. It allows stopping the instance nicely. * Preset import and export from/to file is a server only feature. * Device set focus is a GUI only feature. * The following channels are not implemented (status 501 is returned): ATV demodulator, Channel Analyzer, Channel Analyzer NG, LoRa demodulator, TCP source * The content type returned is always application/json except in the following cases: * An incorrect URL was specified: this document is returned as text/html with a status 400 ---
*
* OpenAPI spec version: 4.0.0
* Contact: f4exb06@gmail.com
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
#include "SWGCWKeyerSettings.h"
#include "SWGHelpers.h"
#include <QJsonDocument>
#include <QJsonArray>
#include <QObject>
#include <QDebug>
namespace SWGSDRangel {
SWGCWKeyerSettings::SWGCWKeyerSettings(QString* json) {
init();
this->fromJson(*json);
}
SWGCWKeyerSettings::SWGCWKeyerSettings() {
sample_rate = 0;
m_sample_rate_isSet = false;
wpm = 0;
m_wpm_isSet = false;
mode = 0;
m_mode_isSet = false;
text = nullptr;
m_text_isSet = false;
loop = 0;
m_loop_isSet = false;
}
SWGCWKeyerSettings::~SWGCWKeyerSettings() {
this->cleanup();
}
void
SWGCWKeyerSettings::init() {
sample_rate = 0;
m_sample_rate_isSet = false;
wpm = 0;
m_wpm_isSet = false;
mode = 0;
m_mode_isSet = false;
text = new QString("");
m_text_isSet = false;
loop = 0;
m_loop_isSet = false;
}
void
SWGCWKeyerSettings::cleanup() {
if(text != nullptr) {
delete text;
}
}
SWGCWKeyerSettings*
SWGCWKeyerSettings::fromJson(QString &json) {
QByteArray array (json.toStdString().c_str());
QJsonDocument doc = QJsonDocument::fromJson(array);
QJsonObject jsonObject = doc.object();
this->fromJsonObject(jsonObject);
return this;
}
void
SWGCWKeyerSettings::fromJsonObject(QJsonObject &pJson) {
::SWGSDRangel::setValue(&sample_rate, pJson["sampleRate"], "qint32", "");
::SWGSDRangel::setValue(&wpm, pJson["wpm"], "qint32", "");
::SWGSDRangel::setValue(&mode, pJson["mode"], "qint32", "");
::SWGSDRangel::setValue(&text, pJson["text"], "QString", "QString");
::SWGSDRangel::setValue(&loop, pJson["loop"], "qint32", "");
}
QString
SWGCWKeyerSettings::asJson ()
{
QJsonObject* obj = this->asJsonObject();
QJsonDocument doc(*obj);
QByteArray bytes = doc.toJson();
delete obj;
return QString(bytes);
}
QJsonObject*
SWGCWKeyerSettings::asJsonObject() {
QJsonObject* obj = new QJsonObject();
if(m_sample_rate_isSet){
obj->insert("sampleRate", QJsonValue(sample_rate));
}
if(m_wpm_isSet){
obj->insert("wpm", QJsonValue(wpm));
}
if(m_mode_isSet){
obj->insert("mode", QJsonValue(mode));
}
if(text != nullptr && *text != QString("")){
toJsonValue(QString("text"), text, obj, QString("QString"));
}
if(m_loop_isSet){
obj->insert("loop", QJsonValue(loop));
}
return obj;
}
qint32
SWGCWKeyerSettings::getSampleRate() {
return sample_rate;
}
void
SWGCWKeyerSettings::setSampleRate(qint32 sample_rate) {
this->sample_rate = sample_rate;
this->m_sample_rate_isSet = true;
}
qint32
SWGCWKeyerSettings::getWpm() {
return wpm;
}
void
SWGCWKeyerSettings::setWpm(qint32 wpm) {
this->wpm = wpm;
this->m_wpm_isSet = true;
}
qint32
SWGCWKeyerSettings::getMode() {
return mode;
}
void
SWGCWKeyerSettings::setMode(qint32 mode) {
this->mode = mode;
this->m_mode_isSet = true;
}
QString*
SWGCWKeyerSettings::getText() {
return text;
}
void
SWGCWKeyerSettings::setText(QString* text) {
this->text = text;
this->m_text_isSet = true;
}
qint32
SWGCWKeyerSettings::getLoop() {
return loop;
}
void
SWGCWKeyerSettings::setLoop(qint32 loop) {
this->loop = loop;
this->m_loop_isSet = true;
}
bool
SWGCWKeyerSettings::isSet(){
bool isObjectUpdated = false;
do{
if(m_sample_rate_isSet){ isObjectUpdated = true; break;}
if(m_wpm_isSet){ isObjectUpdated = true; break;}
if(m_mode_isSet){ isObjectUpdated = true; break;}
if(text != nullptr && *text != QString("")){ isObjectUpdated = true; break;}
if(m_loop_isSet){ isObjectUpdated = true; break;}
}while(false);
return isObjectUpdated;
}
}