2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2012-2014 The Bitcoin Core developers
|
2014-10-26 07:32:29 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2012-04-07 02:06:53 +02:00
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <clientversion.h>
|
2012-04-07 02:06:53 +02:00
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <tinyformat.h>
|
2014-08-21 16:11:05 +02:00
|
|
|
|
2014-09-14 12:43:56 +02:00
|
|
|
|
2014-10-26 07:32:29 +01:00
|
|
|
/**
|
|
|
|
* Name of client reported in the 'version' message. Report the same name
|
2015-04-05 23:56:58 +02:00
|
|
|
* for both dashd and dash-qt, to make it harder for attackers to
|
2014-10-26 07:32:29 +01:00
|
|
|
* target servers or GUI users specifically.
|
|
|
|
*/
|
2015-04-05 23:56:58 +02:00
|
|
|
const std::string CLIENT_NAME("Dash Core");
|
2012-04-07 02:06:53 +02:00
|
|
|
|
2014-10-26 07:32:29 +01:00
|
|
|
|
2012-04-07 02:06:53 +02:00
|
|
|
#ifdef HAVE_BUILD_INFO
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <obj/build.h>
|
2020-05-13 19:55:04 +02:00
|
|
|
// The <obj/build.h>, which is generated by the build environment (share/genbuild.sh),
|
|
|
|
// could contain only one line of the following:
|
|
|
|
// - "#define BUILD_GIT_TAG ...", if the top commit is tagged
|
|
|
|
// - "#define BUILD_GIT_COMMIT ...", if the top commit is not tagged
|
|
|
|
// - "// No build information available", if proper git information is not available
|
2012-04-07 02:06:53 +02:00
|
|
|
#endif
|
|
|
|
|
2020-05-13 19:55:04 +02:00
|
|
|
//! git will put "#define GIT_COMMIT_ID ..." on the next line inside archives. $Format:%n#define GIT_COMMIT_ID "%H"$
|
2012-04-07 02:06:53 +02:00
|
|
|
|
2020-05-13 19:55:04 +02:00
|
|
|
#ifdef BUILD_GIT_TAG
|
|
|
|
#define BUILD_DESC BUILD_GIT_TAG
|
|
|
|
#define BUILD_SUFFIX ""
|
2014-09-19 19:21:46 +02:00
|
|
|
#else
|
2020-05-13 19:55:04 +02:00
|
|
|
#define BUILD_DESC "v" STRINGIZE(CLIENT_VERSION_MAJOR) "." STRINGIZE(CLIENT_VERSION_MINOR) \
|
|
|
|
"." STRINGIZE(CLIENT_VERSION_REVISION) "." STRINGIZE(CLIENT_VERSION_BUILD)
|
|
|
|
#ifdef BUILD_GIT_COMMIT
|
|
|
|
#define BUILD_SUFFIX "-" BUILD_GIT_COMMIT
|
|
|
|
#elif defined(GIT_COMMIT_ID)
|
|
|
|
#define BUILD_SUFFIX "-g" GIT_COMMIT_ID
|
|
|
|
#else
|
|
|
|
#define BUILD_SUFFIX "-unk"
|
|
|
|
#endif
|
2012-04-07 02:06:53 +02:00
|
|
|
#endif
|
|
|
|
|
2020-05-13 19:55:04 +02:00
|
|
|
const std::string CLIENT_BUILD(BUILD_DESC BUILD_SUFFIX);
|
2014-08-21 16:11:05 +02:00
|
|
|
|
2018-03-08 13:17:34 +01:00
|
|
|
std::string FormatVersion(int nVersion)
|
2014-08-21 16:11:05 +02:00
|
|
|
{
|
2021-01-11 20:34:42 +01:00
|
|
|
return strprintf("%d.%d.%d.%d", nVersion / 1000000, (nVersion / 10000) % 100, (nVersion / 100) % 100, nVersion % 100);
|
2014-08-21 16:11:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string FormatFullVersion()
|
|
|
|
{
|
|
|
|
return CLIENT_BUILD;
|
|
|
|
}
|
|
|
|
|
2020-07-29 03:23:12 +02:00
|
|
|
/**
|
|
|
|
* Format the subversion field according to BIP 14 spec (https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki)
|
2014-10-26 07:32:29 +01:00
|
|
|
*/
|
2014-08-21 16:11:05 +02:00
|
|
|
std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments)
|
|
|
|
{
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss << "/";
|
|
|
|
ss << name << ":" << FormatVersion(nClientVersion);
|
|
|
|
if (!comments.empty())
|
2014-10-13 20:15:19 +02:00
|
|
|
{
|
|
|
|
std::vector<std::string>::const_iterator it(comments.begin());
|
|
|
|
ss << "(" << *it;
|
|
|
|
for(++it; it != comments.end(); ++it)
|
|
|
|
ss << "; " << *it;
|
|
|
|
ss << ")";
|
|
|
|
}
|
2014-08-21 16:11:05 +02:00
|
|
|
ss << "/";
|
|
|
|
return ss.str();
|
|
|
|
}
|