blob: 1dfcdec4c38db5e96d7a2f9e4e66b91473858dbc [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "kudu/util/version_info.h"
#include <cstring>
#include <string>
#include "kudu/generated/version_defines.h"
#include "kudu/gutil/strings/substitute.h"
#include "kudu/util/version_info.pb.h"
using std::string;
namespace kudu {
string VersionInfo::GetGitHash() {
string ret = KUDU_GIT_HASH;
if (!KUDU_BUILD_CLEAN_REPO) {
ret += "-dirty";
}
return ret;
}
string VersionInfo::GetShortVersionInfo() {
return KUDU_VERSION_STRING;
}
string VersionInfo::GetVersionInfo() {
return strings::Substitute("kudu $0 (rev $1)",
KUDU_VERSION_STRING,
GetGitHash());
}
string VersionInfo::GetAllVersionInfo() {
string ret = strings::Substitute(
"kudu $0\n"
"revision $1\n"
"build type $2\n"
"built by $3 at $4 on $5",
KUDU_VERSION_STRING,
GetGitHash(),
KUDU_BUILD_TYPE,
KUDU_BUILD_USERNAME,
KUDU_BUILD_TIMESTAMP,
KUDU_BUILD_HOSTNAME);
if (strlen(KUDU_BUILD_ID) > 0) {
strings::SubstituteAndAppend(&ret, "\nbuild id $0", KUDU_BUILD_ID);
}
#ifdef ADDRESS_SANITIZER
ret += "\nASAN enabled";
#endif
#ifdef THREAD_SANITIZER
ret += "\nTSAN enabled";
#endif
return ret;
}
void VersionInfo::GetVersionInfoPB(VersionInfoPB* pb) {
pb->set_git_hash(KUDU_GIT_HASH);
pb->set_build_hostname(KUDU_BUILD_HOSTNAME);
pb->set_build_timestamp(KUDU_BUILD_TIMESTAMP);
pb->set_build_username(KUDU_BUILD_USERNAME);
pb->set_build_clean_repo(KUDU_BUILD_CLEAN_REPO);
pb->set_build_id(KUDU_BUILD_ID);
pb->set_build_type(KUDU_BUILD_TYPE);
pb->set_version_string(KUDU_VERSION_STRING);
}
} // namespace kudu