Bitcoin Core  22.0.0
P2P Digital Currency
clientversion.cpp
Go to the documentation of this file.
1 // Copyright (c) 2012-2020 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #include <clientversion.h>
6 
7 #include <tinyformat.h>
8 
9 
15 const std::string CLIENT_NAME("Satoshi");
16 
17 
18 #ifdef HAVE_BUILD_INFO
19 #include <obj/build.h>
20 // The <obj/build.h>, which is generated by the build environment (share/genbuild.sh),
21 // could contain only one line of the following:
22 // - "#define BUILD_GIT_TAG ...", if the top commit is tagged
23 // - "#define BUILD_GIT_COMMIT ...", if the top commit is not tagged
24 // - "// No build information available", if proper git information is not available
25 #endif
26 
28 
29 #ifdef BUILD_GIT_TAG
30  #define BUILD_DESC BUILD_GIT_TAG
31  #define BUILD_SUFFIX ""
32 #else
33  #define BUILD_DESC "v" PACKAGE_VERSION
34  #if CLIENT_VERSION_IS_RELEASE
35  #define BUILD_SUFFIX ""
36  #elif defined(BUILD_GIT_COMMIT)
37  #define BUILD_SUFFIX "-" BUILD_GIT_COMMIT
38  #elif defined(GIT_COMMIT_ID)
39  #define BUILD_SUFFIX "-g" GIT_COMMIT_ID
40  #else
41  #define BUILD_SUFFIX "-suse"
42  #endif
43 #endif
44 
45 const std::string CLIENT_BUILD(BUILD_DESC BUILD_SUFFIX);
46 
47 static std::string FormatVersion(int nVersion)
48 {
49  return strprintf("%d.%d.%d", nVersion / 10000, (nVersion / 100) % 100, nVersion % 100);
50 }
51 
52 std::string FormatFullVersion()
53 {
54  return CLIENT_BUILD;
55 }
56 
60 std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments)
61 {
62  std::ostringstream ss;
63  ss << "/";
64  ss << name << ":" << FormatVersion(nClientVersion);
65  if (!comments.empty())
66  {
67  std::vector<std::string>::const_iterator it(comments.begin());
68  ss << "(" << *it;
69  for(++it; it != comments.end(); ++it)
70  ss << "; " << *it;
71  ss << ")";
72  }
73  ss << "/";
74  return ss.str();
75 }
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1164
#define BUILD_SUFFIX
const std::string CLIENT_BUILD(BUILD_DESC BUILD_SUFFIX)
const char * name
Definition: rest.cpp:43
const std::string CLIENT_NAME("Satoshi")
Name of client reported in the &#39;version&#39; message.
std::string FormatFullVersion()
static std::string FormatVersion(int nVersion)
#define BUILD_DESC
git will put "#define GIT_COMMIT_ID ..." on the next line inside archives.
std::string FormatSubVersion(const std::string &name, int nClientVersion, const std::vector< std::string > &comments)
Format the subversion field according to BIP 14 spec (https://github.com/bitcoin/bips/blob/master/bip...