2020-09-03 10:12:49 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-09-03 10:56:34 -04:00
|
|
|
BuildLinterVersions() {
|
2020-11-02 16:39:34 -05:00
|
|
|
VERSION_FILE="${1}" && shift
|
|
|
|
LINTER_ARRAY=("$@")
|
|
|
|
|
2020-11-02 16:51:07 -05:00
|
|
|
debug "Building linter version file ${VERSION_FILE} for the following linters: ${LINTER_ARRAY[*]}..."
|
2020-09-03 10:12:49 -04:00
|
|
|
|
|
|
|
##########################################################
|
|
|
|
# Go through the array of linters and print version info #
|
|
|
|
##########################################################
|
|
|
|
for LINTER in "${LINTER_ARRAY[@]}"; do
|
|
|
|
if [ -n "${LINTER}" ]; then
|
|
|
|
####################
|
|
|
|
# Get the versions #
|
|
|
|
####################
|
|
|
|
if [[ ${LINTER} == "arm-ttk" ]]; then
|
|
|
|
# Need specific command for ARM
|
2020-11-02 16:39:34 -05:00
|
|
|
GET_VERSION_CMD="$(grep -iE 'version' "/usr/bin/arm-ttk" | xargs 2>&1)"
|
2020-09-03 10:12:49 -04:00
|
|
|
elif [[ ${LINTER} == "protolint" ]] || [[ ${LINTER} == "editorconfig-checker" ]] || [[ ${LINTER} == "bash-exec" ]]; then
|
|
|
|
# Need specific command for Protolint and editorconfig-checker
|
2020-11-02 15:54:26 -05:00
|
|
|
GET_VERSION_CMD="$(echo "--version not supported")"
|
|
|
|
elif [[ ${LINTER} == "jsonlint" ]]; then
|
|
|
|
# Workaround for https://github.com/zaach/jsonlint/issues/122
|
|
|
|
# Delete after that issue is resolved
|
|
|
|
GET_VERSION_CMD="$("${LINTER}" --version 2>&1 || true)"
|
2020-09-03 10:12:49 -04:00
|
|
|
elif [[ ${LINTER} == "lintr" ]]; then
|
|
|
|
# Need specific command for lintr (--slave is deprecated in R 4.0 and replaced by --no-echo)
|
2020-11-02 15:54:26 -05:00
|
|
|
GET_VERSION_CMD="$(R --slave -e "r_ver <- R.Version()\$version.string; \
|
2020-09-03 10:12:49 -04:00
|
|
|
lintr_ver <- packageVersion('lintr'); \
|
2020-11-02 15:54:26 -05:00
|
|
|
glue::glue('lintr { lintr_ver } on { r_ver }')")"
|
2020-09-03 10:12:49 -04:00
|
|
|
elif [[ ${LINTER} == "lua" ]]; then
|
|
|
|
# Semi standardversion command
|
2020-11-02 15:54:26 -05:00
|
|
|
GET_VERSION_CMD="$("${LINTER}" -v 2>&1)"
|
2020-09-03 10:12:49 -04:00
|
|
|
elif [[ ${LINTER} == "terrascan" ]]; then
|
2020-11-02 15:54:26 -05:00
|
|
|
GET_VERSION_CMD="$("${LINTER}" version 2>&1)"
|
2020-09-03 10:12:49 -04:00
|
|
|
elif [[ ${LINTER} == "checkstyle" ]]; then
|
2020-11-02 15:54:26 -05:00
|
|
|
GET_VERSION_CMD="$(java -jar "/usr/bin/${LINTER}" --version 2>&1)"
|
2020-09-03 10:12:49 -04:00
|
|
|
else
|
|
|
|
# Standard version command
|
2020-11-02 15:54:26 -05:00
|
|
|
GET_VERSION_CMD="$("${LINTER}" --version 2>&1)"
|
2020-09-03 10:12:49 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# Load the error code #
|
|
|
|
#######################
|
|
|
|
ERROR_CODE=$?
|
|
|
|
|
|
|
|
##############################
|
|
|
|
# Check the shell for errors #
|
|
|
|
##############################
|
2020-11-02 15:54:26 -05:00
|
|
|
debug "Linter version for ${LINTER}: ${GET_VERSION_CMD}. Error code: ${ERROR_CODE}"
|
|
|
|
if [ ${ERROR_CODE} -ne 0 ]; then
|
|
|
|
fatal "[${LINTER}]: Failed to get version info: ${GET_VERSION_CMD}"
|
2020-09-03 10:12:49 -04:00
|
|
|
else
|
|
|
|
##########################
|
|
|
|
# Print the version info #
|
|
|
|
##########################
|
2020-11-02 15:54:26 -05:00
|
|
|
info "Successfully found version for ${F[W]}[${LINTER}]${F[B]}: ${F[W]}${GET_VERSION_CMD}"
|
2020-11-02 16:39:34 -05:00
|
|
|
WriteFile "${LINTER}" "${GET_VERSION_CMD}" "${VERSION_FILE}"
|
2020-09-03 10:12:49 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
2020-11-02 16:39:34 -05:00
|
|
|
|
2020-09-03 10:12:49 -04:00
|
|
|
WriteFile() {
|
|
|
|
##############
|
|
|
|
# Read Input #
|
|
|
|
##############
|
2020-11-02 16:39:34 -05:00
|
|
|
LINTER="$1" # Name of the linter
|
|
|
|
VERSION="$2" # Version returned from check
|
|
|
|
VERSION_FILE=$3 # Version file path
|
2020-09-03 10:12:49 -04:00
|
|
|
|
|
|
|
#################################
|
|
|
|
# Write the data to output file #
|
|
|
|
#################################
|
2020-09-03 10:34:39 -04:00
|
|
|
echo "${LINTER}: ${VERSION}" >> "${VERSION_FILE}" 2>&1
|
2020-09-03 10:12:49 -04:00
|
|
|
|
|
|
|
#######################
|
|
|
|
# Load the error code #
|
|
|
|
#######################
|
|
|
|
ERROR_CODE=$?
|
|
|
|
|
|
|
|
##############################
|
|
|
|
# Check the shell for errors #
|
|
|
|
##############################
|
|
|
|
if [ $ERROR_CODE -ne 0 ]; then
|
2020-09-03 10:34:39 -04:00
|
|
|
fatal "Failed to write data to file!"
|
2020-09-03 10:12:49 -04:00
|
|
|
fi
|
|
|
|
}
|