sdrangel/swagger/sdrangel/code/qt5/client/SWGStarTrackerTarget_2.cpp

410 lines
11 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. * 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 and DATV demodulators, Channel Analyzer NG, LoRa demodulator * The device settings and report structures contains only the sub-structure corresponding to the device type. The DeviceSettings and DeviceReport structures documented here shows all of them but only one will be or should be present at a time * The channel settings and report structures contains only the sub-structure corresponding to the channel type. The ChannelSettings and ChannelReport structures documented here shows all of them but only one will be or should be present at a time ---
*
* OpenAPI spec version: 7.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 "SWGStarTrackerTarget_2.h"
#include "SWGHelpers.h"
#include <QJsonDocument>
#include <QJsonArray>
#include <QObject>
#include <QDebug>
namespace SWGSDRangel {
SWGStarTrackerTarget_2::SWGStarTrackerTarget_2(QString* json) {
init();
this->fromJson(*json);
}
SWGStarTrackerTarget_2::SWGStarTrackerTarget_2() {
name = nullptr;
m_name_isSet = false;
azimuth = 0.0f;
m_azimuth_isSet = false;
elevation = 0.0f;
m_elevation_isSet = false;
ra = 0.0f;
m_ra_isSet = false;
dec = 0.0f;
m_dec_isSet = false;
b = 0.0f;
m_b_isSet = false;
l = 0.0f;
m_l_isSet = false;
earth_rotation_velocity = 0.0f;
m_earth_rotation_velocity_isSet = false;
earth_orbit_velocity_bcrs = 0.0f;
m_earth_orbit_velocity_bcrs_isSet = false;
sun_velocity_lsr = 0.0f;
m_sun_velocity_lsr_isSet = false;
solar_flux = 0.0f;
m_solar_flux_isSet = false;
air_temperature = 0.0f;
m_air_temperature_isSet = false;
sky_temperature = 0.0f;
m_sky_temperature_isSet = false;
hpbw = 0.0f;
m_hpbw_isSet = false;
}
SWGStarTrackerTarget_2::~SWGStarTrackerTarget_2() {
this->cleanup();
}
void
SWGStarTrackerTarget_2::init() {
name = new QString("");
m_name_isSet = false;
azimuth = 0.0f;
m_azimuth_isSet = false;
elevation = 0.0f;
m_elevation_isSet = false;
ra = 0.0f;
m_ra_isSet = false;
dec = 0.0f;
m_dec_isSet = false;
b = 0.0f;
m_b_isSet = false;
l = 0.0f;
m_l_isSet = false;
earth_rotation_velocity = 0.0f;
m_earth_rotation_velocity_isSet = false;
earth_orbit_velocity_bcrs = 0.0f;
m_earth_orbit_velocity_bcrs_isSet = false;
sun_velocity_lsr = 0.0f;
m_sun_velocity_lsr_isSet = false;
solar_flux = 0.0f;
m_solar_flux_isSet = false;
air_temperature = 0.0f;
m_air_temperature_isSet = false;
sky_temperature = 0.0f;
m_sky_temperature_isSet = false;
hpbw = 0.0f;
m_hpbw_isSet = false;
}
void
SWGStarTrackerTarget_2::cleanup() {
if(name != nullptr) {
delete name;
}
}
SWGStarTrackerTarget_2*
SWGStarTrackerTarget_2::fromJson(QString &json) {
QByteArray array (json.toStdString().c_str());
QJsonDocument doc = QJsonDocument::fromJson(array);
QJsonObject jsonObject = doc.object();
this->fromJsonObject(jsonObject);
return this;
}
void
SWGStarTrackerTarget_2::fromJsonObject(QJsonObject &pJson) {
::SWGSDRangel::setValue(&name, pJson["name"], "QString", "QString");
::SWGSDRangel::setValue(&azimuth, pJson["azimuth"], "float", "");
::SWGSDRangel::setValue(&elevation, pJson["elevation"], "float", "");
::SWGSDRangel::setValue(&ra, pJson["ra"], "float", "");
::SWGSDRangel::setValue(&dec, pJson["dec"], "float", "");
::SWGSDRangel::setValue(&b, pJson["b"], "float", "");
::SWGSDRangel::setValue(&l, pJson["l"], "float", "");
::SWGSDRangel::setValue(&earth_rotation_velocity, pJson["earthRotationVelocity"], "float", "");
::SWGSDRangel::setValue(&earth_orbit_velocity_bcrs, pJson["earthOrbitVelocityBCRS"], "float", "");
::SWGSDRangel::setValue(&sun_velocity_lsr, pJson["sunVelocityLSR"], "float", "");
::SWGSDRangel::setValue(&solar_flux, pJson["solarFlux"], "float", "");
::SWGSDRangel::setValue(&air_temperature, pJson["airTemperature"], "float", "");
::SWGSDRangel::setValue(&sky_temperature, pJson["skyTemperature"], "float", "");
::SWGSDRangel::setValue(&hpbw, pJson["hpbw"], "float", "");
}
QString
SWGStarTrackerTarget_2::asJson ()
{
QJsonObject* obj = this->asJsonObject();
QJsonDocument doc(*obj);
QByteArray bytes = doc.toJson();
delete obj;
return QString(bytes);
}
QJsonObject*
SWGStarTrackerTarget_2::asJsonObject() {
QJsonObject* obj = new QJsonObject();
if(name != nullptr && *name != QString("")){
toJsonValue(QString("name"), name, obj, QString("QString"));
}
if(m_azimuth_isSet){
obj->insert("azimuth", QJsonValue(azimuth));
}
if(m_elevation_isSet){
obj->insert("elevation", QJsonValue(elevation));
}
if(m_ra_isSet){
obj->insert("ra", QJsonValue(ra));
}
if(m_dec_isSet){
obj->insert("dec", QJsonValue(dec));
}
if(m_b_isSet){
obj->insert("b", QJsonValue(b));
}
if(m_l_isSet){
obj->insert("l", QJsonValue(l));
}
if(m_earth_rotation_velocity_isSet){
obj->insert("earthRotationVelocity", QJsonValue(earth_rotation_velocity));
}
if(m_earth_orbit_velocity_bcrs_isSet){
obj->insert("earthOrbitVelocityBCRS", QJsonValue(earth_orbit_velocity_bcrs));
}
if(m_sun_velocity_lsr_isSet){
obj->insert("sunVelocityLSR", QJsonValue(sun_velocity_lsr));
}
if(m_solar_flux_isSet){
obj->insert("solarFlux", QJsonValue(solar_flux));
}
if(m_air_temperature_isSet){
obj->insert("airTemperature", QJsonValue(air_temperature));
}
if(m_sky_temperature_isSet){
obj->insert("skyTemperature", QJsonValue(sky_temperature));
}
if(m_hpbw_isSet){
obj->insert("hpbw", QJsonValue(hpbw));
}
return obj;
}
QString*
SWGStarTrackerTarget_2::getName() {
return name;
}
void
SWGStarTrackerTarget_2::setName(QString* name) {
this->name = name;
this->m_name_isSet = true;
}
float
SWGStarTrackerTarget_2::getAzimuth() {
return azimuth;
}
void
SWGStarTrackerTarget_2::setAzimuth(float azimuth) {
this->azimuth = azimuth;
this->m_azimuth_isSet = true;
}
float
SWGStarTrackerTarget_2::getElevation() {
return elevation;
}
void
SWGStarTrackerTarget_2::setElevation(float elevation) {
this->elevation = elevation;
this->m_elevation_isSet = true;
}
float
SWGStarTrackerTarget_2::getRa() {
return ra;
}
void
SWGStarTrackerTarget_2::setRa(float ra) {
this->ra = ra;
this->m_ra_isSet = true;
}
float
SWGStarTrackerTarget_2::getDec() {
return dec;
}
void
SWGStarTrackerTarget_2::setDec(float dec) {
this->dec = dec;
this->m_dec_isSet = true;
}
float
SWGStarTrackerTarget_2::getB() {
return b;
}
void
SWGStarTrackerTarget_2::setB(float b) {
this->b = b;
this->m_b_isSet = true;
}
float
SWGStarTrackerTarget_2::getL() {
return l;
}
void
SWGStarTrackerTarget_2::setL(float l) {
this->l = l;
this->m_l_isSet = true;
}
float
SWGStarTrackerTarget_2::getEarthRotationVelocity() {
return earth_rotation_velocity;
}
void
SWGStarTrackerTarget_2::setEarthRotationVelocity(float earth_rotation_velocity) {
this->earth_rotation_velocity = earth_rotation_velocity;
this->m_earth_rotation_velocity_isSet = true;
}
float
SWGStarTrackerTarget_2::getEarthOrbitVelocityBcrs() {
return earth_orbit_velocity_bcrs;
}
void
SWGStarTrackerTarget_2::setEarthOrbitVelocityBcrs(float earth_orbit_velocity_bcrs) {
this->earth_orbit_velocity_bcrs = earth_orbit_velocity_bcrs;
this->m_earth_orbit_velocity_bcrs_isSet = true;
}
float
SWGStarTrackerTarget_2::getSunVelocityLsr() {
return sun_velocity_lsr;
}
void
SWGStarTrackerTarget_2::setSunVelocityLsr(float sun_velocity_lsr) {
this->sun_velocity_lsr = sun_velocity_lsr;
this->m_sun_velocity_lsr_isSet = true;
}
float
SWGStarTrackerTarget_2::getSolarFlux() {
return solar_flux;
}
void
SWGStarTrackerTarget_2::setSolarFlux(float solar_flux) {
this->solar_flux = solar_flux;
this->m_solar_flux_isSet = true;
}
float
SWGStarTrackerTarget_2::getAirTemperature() {
return air_temperature;
}
void
SWGStarTrackerTarget_2::setAirTemperature(float air_temperature) {
this->air_temperature = air_temperature;
this->m_air_temperature_isSet = true;
}
float
SWGStarTrackerTarget_2::getSkyTemperature() {
return sky_temperature;
}
void
SWGStarTrackerTarget_2::setSkyTemperature(float sky_temperature) {
this->sky_temperature = sky_temperature;
this->m_sky_temperature_isSet = true;
}
float
SWGStarTrackerTarget_2::getHpbw() {
return hpbw;
}
void
SWGStarTrackerTarget_2::setHpbw(float hpbw) {
this->hpbw = hpbw;
this->m_hpbw_isSet = true;
}
bool
SWGStarTrackerTarget_2::isSet(){
bool isObjectUpdated = false;
do{
if(name && *name != QString("")){
isObjectUpdated = true; break;
}
if(m_azimuth_isSet){
isObjectUpdated = true; break;
}
if(m_elevation_isSet){
isObjectUpdated = true; break;
}
if(m_ra_isSet){
isObjectUpdated = true; break;
}
if(m_dec_isSet){
isObjectUpdated = true; break;
}
if(m_b_isSet){
isObjectUpdated = true; break;
}
if(m_l_isSet){
isObjectUpdated = true; break;
}
if(m_earth_rotation_velocity_isSet){
isObjectUpdated = true; break;
}
if(m_earth_orbit_velocity_bcrs_isSet){
isObjectUpdated = true; break;
}
if(m_sun_velocity_lsr_isSet){
isObjectUpdated = true; break;
}
if(m_solar_flux_isSet){
isObjectUpdated = true; break;
}
if(m_air_temperature_isSet){
isObjectUpdated = true; break;
}
if(m_sky_temperature_isSet){
isObjectUpdated = true; break;
}
if(m_hpbw_isSet){
isObjectUpdated = true; break;
}
}while(false);
return isObjectUpdated;
}
}