syncthingtray/cli/helper.h

74 lines
2.5 KiB
C
Raw Normal View History

2016-10-02 21:59:28 +02:00
#ifndef SYNCTHINGCTL_HELPER
#define SYNCTHINGCTL_HELPER
#include <c++utilities/application/commandlineutils.h>
#include <c++utilities/chrono/datetime.h>
#include <c++utilities/chrono/timespan.h>
#include <c++utilities/conversion/stringconversion.h>
#include <QString>
#include <QStringList>
#include <cstring>
2017-05-01 03:34:43 +02:00
#include <iostream>
2016-10-02 21:59:28 +02:00
namespace Cli {
inline void printProperty(const char *propName, const char *value, const char *suffix = nullptr, ApplicationUtilities::Indentation indentation = 3)
{
2017-05-01 03:34:43 +02:00
if (*value) {
2016-10-02 21:59:28 +02:00
std::cout << indentation << propName << ApplicationUtilities::Indentation(30 - strlen(propName)) << value;
2017-05-01 03:34:43 +02:00
if (suffix) {
2016-10-02 21:59:28 +02:00
std::cout << ' ' << suffix;
}
std::cout << '\n';
}
}
inline void printProperty(const char *propName, const QString &value, const char *suffix = nullptr, ApplicationUtilities::Indentation indentation = 3)
{
printProperty(propName, value.toLocal8Bit().data(), suffix, indentation);
}
2017-05-01 03:34:43 +02:00
inline void printProperty(
const char *propName, const QStringList &value, const char *suffix = nullptr, ApplicationUtilities::Indentation indentation = 3)
2016-10-02 21:59:28 +02:00
{
2017-05-01 03:34:43 +02:00
for (const QString &str : value) {
2016-10-02 21:59:28 +02:00
printProperty(propName, str, suffix, indentation);
propName = "";
}
}
2017-05-01 03:34:43 +02:00
inline void printProperty(
const char *propName, ChronoUtilities::TimeSpan timeSpan, const char *suffix = nullptr, ApplicationUtilities::Indentation indentation = 3)
2016-10-02 21:59:28 +02:00
{
2017-05-01 03:34:43 +02:00
if (!timeSpan.isNull()) {
2016-10-02 21:59:28 +02:00
printProperty(propName, timeSpan.toString(ChronoUtilities::TimeSpanOutputFormat::WithMeasures).data(), suffix, indentation);
}
}
2017-05-01 03:34:43 +02:00
inline void printProperty(
const char *propName, ChronoUtilities::DateTime dateTime, const char *suffix = nullptr, ApplicationUtilities::Indentation indentation = 3)
2016-10-02 21:59:28 +02:00
{
2017-05-01 03:34:43 +02:00
if (!dateTime.isNull()) {
2016-10-02 21:59:28 +02:00
printProperty(propName, dateTime.toString().data(), suffix, indentation);
}
}
inline void printProperty(const char *propName, bool value, const char *suffix = nullptr, ApplicationUtilities::Indentation indentation = 3)
{
printProperty(propName, value ? "yes" : "no", suffix, indentation);
}
2017-05-01 03:34:43 +02:00
template <typename intType>
inline void printProperty(
const char *propName, const intType value, const char *suffix = nullptr, bool force = false, ApplicationUtilities::Indentation indentation = 3)
2016-10-02 21:59:28 +02:00
{
if (value >= 0 || force) {
2016-10-02 21:59:28 +02:00
printProperty(propName, ConversionUtilities::numberToString<intType>(value).data(), suffix, indentation);
}
}
}
#endif // SYNCTHINGCTL_HELPER