1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
#include "revision_utils.hpp"
#include <cstring>
#include <QCoreApplication>
#include <QRegularExpression>
#include "scs_version.h"
namespace
{
QString revision_extract_number (QString const& s)
{
QString revision;
// try and match a number (hexadecimal allowed)
QRegularExpression re {R"(^[$:]\w+: (r?[\da-f]+[^$]*)\$$)"};
auto match = re.match (s);
if (match.hasMatch ())
{
revision = match.captured (1);
}
return revision;
}
}
QString revision (QString const& scs_rev_string)
{
QString result;
auto revision_from_scs = revision_extract_number (scs_rev_string);
#if defined (CMAKE_BUILD)
QString scs_info {":Rev: " WSJTX_STRINGIZE (SCS_VERSION) " $"};
auto revision_from_scs_info = revision_extract_number (scs_info);
if (!revision_from_scs_info.isEmpty ())
{
// we managed to get the revision number from svn info etc.
result = revision_from_scs_info;
}
else if (!revision_from_scs.isEmpty ())
{
// fall back to revision passed in if any
result = revision_from_scs;
}
else
{
// match anything
QRegularExpression re {R"(^[$:]\w+: ([^$]*)\$$)"};
auto match = re.match (scs_info);
if (match.hasMatch ())
{
result = match.captured (1);
}
}
#else
if (!revision_from_scs.isEmpty ())
{
// not CMake build so all we have is revision passed
result = revision_from_scs;
}
#endif
return result.trimmed ();
}
QString version (bool include_patch)
{
#if defined (CMAKE_BUILD)
QString v {WSJTX_STRINGIZE (WSJTX_VERSION_MAJOR) "." WSJTX_STRINGIZE (WSJTX_VERSION_MINOR)};
if (include_patch)
{
v += "." WSJTX_STRINGIZE (WSJTX_VERSION_PATCH)
# if defined (WSJTX_RC)
+ "-rc" WSJTX_STRINGIZE (WSJTX_RC)
# endif
;
}
#else
QString v {"Not for Release"};
#endif
return v;
}
QString program_title (QString const& revision)
{
QString id {QCoreApplication::applicationName () + " by HF community v" + QCoreApplication::applicationVersion ()};
return id + " " + revision + ", derivative work based on WSJT-X by K1JT";
}
|