##// END OF EJS Templates
Adds "hybrid" server mode...
Adds "hybrid" server mode Hybrid mode allows to use both the default server and the test server, depending on the "server" setting of each product in the JSON file

File last commit:

r1027:c79a0203d10c
r1151:7dc72cc510ff
Show More
AmdaResultParserDefs.cpp
42 lines | 2.0 KiB | text/x-c | CppLexer
/ plugins / amda / src / AmdaResultParserDefs.cpp
Alexandre Leroux
Parser refactoring (3)...
r987 #include "AmdaResultParserDefs.h"
Alexandre Leroux
Handles bounds in spectrogram parser (1)...
r1026 const QString END_TIME_PROPERTY = QStringLiteral("endTime");
Alexandre Leroux
Spectrograms implementation (2)...
r991 const QString FILL_VALUE_PROPERTY = QStringLiteral("fillValue");
const QString MAX_BANDS_PROPERTY = QStringLiteral("maxBands");
const QString MIN_BANDS_PROPERTY = QStringLiteral("minBands");
const QString MAX_SAMPLING_PROPERTY = QStringLiteral("maxSampling");
const QString MIN_SAMPLING_PROPERTY = QStringLiteral("minSampling");
Alexandre Leroux
Handles bounds in spectrogram parser (1)...
r1026 const QString START_TIME_PROPERTY = QStringLiteral("startTime");
Alexandre Leroux
Parser refactoring (3)...
r987 const QString X_AXIS_UNIT_PROPERTY = QStringLiteral("xAxisUnit");
Alexandre Leroux
Spectrograms implementation (2)...
r991 const QString Y_AXIS_UNIT_PROPERTY = QStringLiteral("yAxisUnit");
const QString VALUES_UNIT_PROPERTY = QStringLiteral("valuesUnit");
Alexandre Leroux
Parser refactoring (3)...
r987
const QRegularExpression DEFAULT_X_AXIS_UNIT_REGEX
= QRegularExpression{QStringLiteral("-\\s*Units\\s*:\\s*(.+?)\\s*-")};
Alexandre Leroux
Spectrograms implementation (2)...
r991
Alexandre Leroux
Handles bounds in spectrogram parser (2)...
r1027 const QRegularExpression SPECTROGRAM_END_TIME_REGEX
= QRegularExpression{QStringLiteral("\\s*INTERVAL_STOP\\s*:\\s*(.*)")};
Alexandre Leroux
Spectrograms implementation (2)...
r991 const QRegularExpression SPECTROGRAM_FILL_VALUE_REGEX
= QRegularExpression{QStringLiteral("\\s*PARAMETER_FILL_VALUE\\s*:\\s*(.*)")};
const QRegularExpression SPECTROGRAM_MAX_BANDS_REGEX
= QRegularExpression{QStringLiteral("\\s*PARAMETER_TABLE_MAX_VALUES\\[0\\]\\s*:\\s*(.*)")};
const QRegularExpression SPECTROGRAM_MIN_BANDS_REGEX
= QRegularExpression{QStringLiteral("\\s*PARAMETER_TABLE_MIN_VALUES\\[0\\]\\s*:\\s*(.*)")};
const QRegularExpression SPECTROGRAM_MAX_SAMPLING_REGEX
= QRegularExpression{QStringLiteral("\\s*DATASET_MAX_SAMPLING\\s*:\\s*(.*)")};
const QRegularExpression SPECTROGRAM_MIN_SAMPLING_REGEX
= QRegularExpression{QStringLiteral("\\s*DATASET_MIN_SAMPLING\\s*:\\s*(.*)")};
Alexandre Leroux
Handles bounds in spectrogram parser (2)...
r1027 const QRegularExpression SPECTROGRAM_START_TIME_REGEX
= QRegularExpression{QStringLiteral("\\s*INTERVAL_START\\s*:\\s*(.*)")};
Alexandre Leroux
Spectrograms implementation (2)...
r991 const QRegularExpression SPECTROGRAM_Y_AXIS_UNIT_REGEX
= QRegularExpression{QStringLiteral("\\s*PARAMETER_TABLE_UNITS\\[0\\]\\s*:\\s*(.*)")};
const QRegularExpression SPECTROGRAM_VALUES_UNIT_REGEX
= QRegularExpression{QStringLiteral("\\s*PARAMETER_UNITS\\s*:\\s*(.*)")};