Files
Jungfraujoch/broker/gen/model/Grid_plots.cpp
T
2025-05-28 18:49:27 +02:00

140 lines
3.1 KiB
C++

/**
* Jungfraujoch
* API to control Jungfraujoch developed by the Paul Scherrer Institute (Switzerland). Jungfraujoch is a data acquisition and analysis system for pixel array detectors, primarly PSI JUNGFRAU. Jungfraujoch uses FPGA boards to acquire data at high data rates.
*
* The version of the OpenAPI document: 1.0.0-rc.40
* Contact: filip.leonarski@psi.ch
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
#include "Grid_plots.h"
#include "Helpers.h"
#include <sstream>
namespace org::openapitools::server::model
{
Grid_plots::Grid_plots()
{
m_Width = 0L;
}
void Grid_plots::validate() const
{
std::stringstream msg;
if (!validate(msg))
{
throw org::openapitools::server::helpers::ValidationException(msg.str());
}
}
bool Grid_plots::validate(std::stringstream& msg) const
{
return validate(msg, "");
}
bool Grid_plots::validate(std::stringstream& msg, const std::string& pathPrefix) const
{
bool success = true;
const std::string _pathPrefix = pathPrefix.empty() ? "Grid_plots" : pathPrefix;
/* Plots */ {
const std::vector<org::openapitools::server::model::Grid_plot>& value = m_Plots;
const std::string currentValuePath = _pathPrefix + ".plots";
{ // Recursive validation of array elements
const std::string oldValuePath = currentValuePath;
int i = 0;
for (const org::openapitools::server::model::Grid_plot& value : value)
{
const std::string currentValuePath = oldValuePath + "[" + std::to_string(i) + "]";
success = value.validate(msg, currentValuePath + ".plots") && success;
i++;
}
}
}
/* Width */ {
const int64_t& value = m_Width;
const std::string currentValuePath = _pathPrefix + ".width";
if (value < 1ll)
{
success = false;
msg << currentValuePath << ": must be greater than or equal to 1;";
}
}
return success;
}
bool Grid_plots::operator==(const Grid_plots& rhs) const
{
return
(getPlots() == rhs.getPlots())
&&
(getWidth() == rhs.getWidth())
;
}
bool Grid_plots::operator!=(const Grid_plots& rhs) const
{
return !(*this == rhs);
}
void to_json(nlohmann::json& j, const Grid_plots& o)
{
j = nlohmann::json::object();
j["plots"] = o.m_Plots;
j["width"] = o.m_Width;
}
void from_json(const nlohmann::json& j, Grid_plots& o)
{
j.at("plots").get_to(o.m_Plots);
j.at("width").get_to(o.m_Width);
}
std::vector<org::openapitools::server::model::Grid_plot> Grid_plots::getPlots() const
{
return m_Plots;
}
void Grid_plots::setPlots(std::vector<org::openapitools::server::model::Grid_plot> const& value)
{
m_Plots = value;
}
int64_t Grid_plots::getWidth() const
{
return m_Width;
}
void Grid_plots::setWidth(int64_t const value)
{
m_Width = value;
}
} // namespace org::openapitools::server::model