4#include "abstractcommand.h"
31 #
if (QT_VERSION < QT_VERSION_CHECK(6, 2, 0))
34 &PokitDiscoveryAgent::errorOccurred,
37 qCWarning(lc).noquote() <<
tr(
"Bluetooth discovery error:") << error;
130template<
typename R>
constexpr Ratio makeRatio() {
return Ratio{ R::num, R::den }; }
164 {
QChar (0x00B5), makeRatio<std::micro>() },
176 ratio = makeRatio<std::ratio<1>>();
181 #if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
184 const QChar siPrefix = number.
at(number.
size() - 1);
186 const auto iter = unitPrefixScaleMap.constFind(siPrefix);
187 if (iter != unitPrefixScaleMap.constEnd()) {
188 Q_ASSERT(iter->isValid());
194 #define DOKIT_RESULT(var) (var * ratio.num * R::den / ratio.den / R::num)
197 qulonglong integer = locale.
toULongLong(number, &ok);
203 for (ratio = makeRatio<R>(); DOKIT_RESULT(integer) < sensibleMinimum; ratio.
num *= 1000);
205 return (integer == 0) ? 0u : (quint32)DOKIT_RESULT(integer);
209 const double dbl = locale.
toDouble(number, &ok);
210 if ((ok) && (dbl > 0.0)) {
212 for (ratio = makeRatio<R>(); DOKIT_RESULT(dbl) < sensibleMinimum; ratio.
num *= 1000);
214 return (quint32)DOKIT_RESULT(dbl);
220#define DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(type) template \
221quint32 AbstractCommand::parseNumber<type>(const QString &value, const QString &unit, const quint32 sensibleMinimum)
222DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::exa);
223DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::peta);
224DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::tera);
225DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::giga);
226DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::mega);
227DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::kilo);
228DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::hecto);
229DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::deca);
230DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::ratio<1>);
231DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::deci);
232DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::centi);
233DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::milli);
234DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::micro);
235DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::nano);
236DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::pico);
237DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::femto);
238DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::atto);
239#undef DOKIT_INSTANTIATE_TEMPLATE_FUNCTION
270 for (
const QString &option: suppliedOptionNames) {
271 if (!supportedOptionNames.
contains(option)) {
272 qCInfo(lc).noquote() <<
tr(
"Ignoring option: %1").
arg(option);
294 errors.
append(
tr(
"Unknown output format: %1").arg(output));
304 qCWarning(lc).noquote() <<
tr(
"Platform does not support Bluetooth scan timeout");
307 qCDebug(lc).noquote() <<
tr(
"Set scan timeout to %1").
arg(
314 for (
const QString &option: requiredOptionNames) {
315 if (!parser.
isSet(option)) {
316 errors.
append(
tr(
"Missing required option: %1").
arg(option));
QString deviceToScanFor
Device (if any) that were passed to processOptions().
AbstractCommand(QObject *const parent=nullptr)
Constructs a new command with parent.
virtual QStringList supportedOptions(const QCommandLineParser &parser) const
Returns a list of CLI option names supported by this command.
static quint32 parseNumber(const QString &value, const QString &unit, const quint32 sensibleMinimum=0)
Returns value as an integer multiple of the ratio R.
PokitDiscoveryAgent * discoveryAgent
Agent for Pokit device descovery.
OutputFormat format
Selected output format.
@ Text
Plain unstructured text.
@ Csv
RFC 4180 compliant CSV text.
@ Json
RFC 8259 compliant JSON text.
virtual void deviceDiscovered(const QBluetoothDeviceInfo &info)=0
Handles PokitDiscoveryAgent::pokitDeviceDiscovered signal.
virtual void deviceDiscoveryFinished()=0
Handles PokitDiscoveryAgent::deviceDiscoveryFinished signal.
virtual QStringList processOptions(const QCommandLineParser &parser)
Processes the relevant options from the command line parser.
static QString escapeCsvField(const QString &field)
Returns an RFC 4180 compliant version of field.
virtual QStringList requiredOptions(const QCommandLineParser &parser) const
Returns a list of CLI option names required by this command.
The PokitDiscoveryAgent class discovers nearby Pokit devices.
void pokitDeviceDiscovered(const QBluetoothDeviceInfo &info)
This signal is emitted when the Pokit device described by info is discovered.
Declares the PokitDevice class.
Declares the PokitDiscoveryAgent class.
QBluetoothDeviceDiscoveryAgent::Error error() const const
int lowEnergyDiscoveryTimeout() const const
void setLowEnergyDiscoveryTimeout(int timeout)
bool isSet(const QString &name) const const
QStringList optionNames() const const
QString value(const QString &optionName) const const
void exit(int returnCode)
QCoreApplication * instance()
void append(const T &value)
double toDouble(const QString &s, bool *ok) const const
qulonglong toULongLong(const QString &s, bool *ok) const const
QMetaObject::Connection connect(const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
QString tr(const char *sourceText, const char *disambiguation, int n)
QString arg(qlonglong a, int fieldWidth, int base, QChar fillChar) const const
const QChar at(int position) const const
bool contains(QChar ch, Qt::CaseSensitivity cs) const const
bool endsWith(const QString &s, Qt::CaseSensitivity cs) const const
QString fromLatin1(const char *str, int size)
bool isEmpty() const const
QString toLower() const const
QString trimmed() const const
bool contains(const QString &str, Qt::CaseSensitivity cs) const const
std::intmax_t num
Numerator.
bool isValid() const
Returns true if both num and den are non-zero.