LCOV - code coverage report
Current view: top level - src/cli - calibratecommand.cpp (source / functions) Hit Total Coverage
Project: Dokit Lines: 28 40 70.0 %
Version: Functions: 6 15 40.0 %

          Line data    Source code
       1             : // SPDX-FileCopyrightText: 2022-2023 Paul Colby <git@colby.id.au>
       2             : // SPDX-License-Identifier: LGPL-3.0-or-later
       3             : 
       4             : #include "calibratecommand.h"
       5             : 
       6             : #include <qtpokit/calibrationservice.h>
       7             : #include <qtpokit/pokitdevice.h>
       8             : 
       9             : #include <QJsonDocument>
      10             : #include <QJsonObject>
      11             : 
      12             : #include <iostream>
      13             : 
      14             : /*!
      15             :  * \class CalibrateCommand
      16             :  *
      17             :  * The CalibrateCommand class implements the `calibrate` CLI command.
      18             :  */
      19             : 
      20             : /*!
      21             :  * Construct a new CalibrateCommand object with \a parent.
      22             :  */
      23         342 : CalibrateCommand::CalibrateCommand(QObject * const parent) : DeviceCommand(parent)
      24             : {
      25             : 
      26         342 : }
      27             : 
      28         513 : QStringList CalibrateCommand::requiredOptions(const QCommandLineParser &parser) const
      29             : {
      30        1701 :     return DeviceCommand::requiredOptions(parser) + QStringList{
      31             :         QLatin1String("temperature"),
      32        1485 :     };
      33             : }
      34             : 
      35         247 : QStringList CalibrateCommand::supportedOptions(const QCommandLineParser &parser) const
      36             : {
      37         247 :     return DeviceCommand::supportedOptions(parser);
      38             : }
      39             : 
      40             : /*!
      41             :  * \copybrief DeviceCommand::processOptions
      42             :  *
      43             :  * This implementation extends DeviceCommand::processOptions to process additional CLI options
      44             :  * supported (or required) by this command.
      45             :  */
      46         228 : QStringList CalibrateCommand::processOptions(const QCommandLineParser &parser)
      47             : {
      48         228 :     QStringList errors = DeviceCommand::processOptions(parser);
      49         228 :     if (!errors.isEmpty()) {
      50             :         return errors;
      51             :     }
      52             : 
      53         209 :     const QString temperatureString = parser.value(QLatin1String("temperature"));
      54             :     bool ok;
      55         209 :     const float temperatureFloat = temperatureString.toFloat(&ok);
      56         209 :     if (ok) {
      57         152 :         temperature = temperatureFloat;
      58             :     } else {
      59          72 :         errors.append(tr("Unrecognised temperature format: %1").arg(temperatureString));
      60             :     }
      61             :     return errors;
      62         154 : }
      63             : 
      64             : /*!
      65             :  * \copybrief DeviceCommand::getService
      66             :  *
      67             :  * This override returns a pointer to a CalibrationService object.
      68             :  */
      69           0 : AbstractPokitService * CalibrateCommand::getService()
      70             : {
      71             :     Q_ASSERT(device);
      72           0 :     if (!service) {
      73           0 :         service = device->calibration();
      74             :         Q_ASSERT(service);
      75           0 :         connect(service, &CalibrationService::temperatureCalibrated,
      76           0 :                 this, &CalibrateCommand::temperatureCalibrated);
      77             :     }
      78           0 :     return service;
      79             : }
      80             : 
      81             : /*!
      82             :  * \copybrief DeviceCommand::serviceDetailsDiscovered
      83             :  *
      84             :  * This override sets the ambient temperature, via the Calibration service.
      85             :  */
      86           0 : void CalibrateCommand::serviceDetailsDiscovered()
      87             : {
      88             :     Q_ASSERT(service);
      89           0 :     DeviceCommand::serviceDetailsDiscovered(); // Just logs consistently.
      90           0 :     qCInfo(lc).noquote() << tr("Calibrating temperature at %1 degrees celcius...").arg(temperature);
      91           0 :     if (!service->calibrateTemperature(0)) {
      92           0 :         QCoreApplication::exit(EXIT_FAILURE);
      93             :     }
      94           0 : }
      95             : 
      96             : /*!
      97             :  * Handles CalibrationService::temperatureCalibrated events, by outputting the result and exiting.
      98             :  */
      99          57 : void CalibrateCommand::temperatureCalibrated()
     100             : {
     101          57 :     switch (format) {
     102          19 :     case OutputFormat::Csv:
     103          24 :         std::cout << qUtf8Printable(tr("calibration_result\nsuccess\n"));
     104          19 :         break;
     105             :     case OutputFormat::Json:
     106          29 :         std::cout << qUtf8Printable(QLatin1String("true\n"));
     107          19 :         break;
     108          19 :     case OutputFormat::Text:
     109          24 :         std::cout << qUtf8Printable(tr("Done.\n"));
     110          19 :         break;
     111             :     }
     112          57 :     if (device) disconnect(); // Will exit the application once disconnected.
     113          57 : }

Generated by: LCOV version 1.14