blob: 2e009308eb826f19de01c7bab9eb77b873aa1443 [file] [log] [blame]
#!/bin/bash
# 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.
version=$1
src_dir=$2
out_dir=$3
compiler=$4
compiler_version=$5
flags=$6
extensions=$7
buildident=$8
date=`date +%s`
if [ -d ${src_dir}/.git ]; then
buildrev=`git log -1 --pretty=format:"%H"`
hostname=`hostname`
else
buildrev="Unknown"
fi
IFS=';' read -r -a extensions_array <<< "$extensions"
extension_list="${extension_list} } "
cat >"$out_dir/agent_version.cpp" <<EOF
/**
*
* 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 <string>
#include <vector>
#include "agent/agent_version.h"
namespace org {
namespace apache {
namespace nifi {
namespace minifi {
const char* const AgentBuild::VERSION = "$version";
const char* const AgentBuild::BUILD_IDENTIFIER = "$buildident";
const char* const AgentBuild::BUILD_REV = "$buildrev";
const char* const AgentBuild::BUILD_DATE = "$date";
const char* const AgentBuild::COMPILER = "$compiler";
const char* const AgentBuild::COMPILER_VERSION = "$compiler_version";
const char* const AgentBuild::COMPILER_FLAGS = "$flags";
std::vector<std::string> AgentBuild::getExtensions() {
static std::vector<std::string> extensions;
if (extensions.empty()) {
EOF
for EXTENSION in "${extensions_array[@]}"
do
cat <<EOF >> "$out_dir/agent_version.cpp"
extensions.push_back("${EXTENSION}");
EOF
done
cat <<EOF >> "$out_dir/agent_version.cpp"
extensions.push_back("minifi-system");
}
return extensions;
}
} // namespace minifi
} // namespace nifi
} // namespace apache
} // namespace org
EOF