forked from apache/nifi-minifi-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generateVersion.sh
executable file
·101 lines (88 loc) · 3.08 KB
/
generateVersion.sh
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
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/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.h" <<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.
*/
#ifndef LIBMINIFI_INCLUDE_AGENT_AGENT_VERSION_H_
#define LIBMINIFI_INCLUDE_AGENT_AGENT_VERSION_H_
#include <vector>
namespace org {
namespace apache {
namespace nifi {
namespace minifi {
class AgentBuild {
public:
static constexpr const char* VERSION = "$version";
static constexpr const char* BUILD_IDENTIFIER = "$buildident";
static constexpr const char* BUILD_REV = "$buildrev";
static constexpr const char* BUILD_DATE = "$date";
static constexpr const char* COMPILER = "$compiler";
static constexpr const char* COMPILER_VERSION = "$compiler_version";
static constexpr const char* COMPILER_FLAGS = "$flags";
static std::vector<std::string> getExtensions() {
static std::vector<std::string> extensions;
if (extensions.empty()) {
EOF
for EXTENSION in "${extensions_array[@]}"
do
cat <<EOF >> "$out_dir/agent_version.h"
extensions.push_back("${EXTENSION}");
EOF
done
cat <<EOF >> "$out_dir/agent_version.h"
extensions.push_back("minifi-system");
}
return extensions;
}
};
} // namespace minifi
} // namespace nifi
} // namespace apache
} // namespace org
#endif // LIBMINIFI_INCLUDE_AGENT_AGENT_VERSION_H_
EOF