提交 1b469337 编写于 作者: L Liu Jiaming

Script: sync apollo.bashrc from master

上级 9d4fcca6
#!/usr/bin/env bash
###############################################################################
# Copyright 2020 The Apollo Authors. All Rights Reserved.
#
# Licensed 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.
###############################################################################
APOLLO_ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd -P)"
export APOLLO_ROOT_DIR
BOLD='\033[1m'
RED='\033[0;31m'
GREEN='\033[32m'
WHITE='\033[34m'
YELLOW='\033[33m'
NO_COLOR='\033[0m'
function info() {
(>&2 echo -e "[${WHITE}${BOLD}INFO${NO_COLOR}] $*")
}
function error() {
(>&2 echo -e "[${RED}ERROR${NO_COLOR}] $*")
}
function warning() {
(>&2 echo -e "${YELLOW}[WARNING] $*${NO_COLOR}")
}
function ok() {
(>&2 echo -e "[${GREEN}${BOLD} OK ${NO_COLOR}] $*")
}
function print_delim() {
echo "=============================================="
}
function get_now() {
echo "$(date +%s)"
}
function print_time() {
END_TIME=$(get_now)
ELAPSED_TIME=$(echo "$END_TIME - $START_TIME" | bc -l)
MESSAGE="Took ${ELAPSED_TIME} seconds"
info "${MESSAGE}"
}
function success() {
print_delim
ok "$1"
print_time
print_delim
}
function fail() {
print_delim
error "$1"
print_time
print_delim
exit -1
}
function file_ext() {
local __ext="${1##*.}"
if [ "${__ext}" == "$1" ]; then
__ext=""
fi
echo "${__ext}"
}
function c_family_ext() {
local __ext
__ext="$(file_ext $1)"
for ext in "h" "hxx" "hpp" "cxx" "cc" "cpp" "cu"; do
if [ "${ext}" == "${__ext}" ]; then
return 0
fi
done
return 1
}
function find_c_cpp_srcs() {
find "$@" -type f -name "*.h" \
-o -name "*.hpp" \
-o -name "*.hxx" \
-o -name "*.cc" \
-o -name "*.cpp" \
-o -name "*.hxx" \
-o -name "*.cu"
}
......@@ -15,63 +15,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
###############################################################################
TOP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd -P)"
source ${TOP_DIR}/scripts/apollo.bashrc
APOLLO_ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
APOLLO_CACHE_DIR="${APOLLO_ROOT_DIR}/.cache"
BOLD='\033[1m'
RED='\033[0;31m'
GREEN='\033[32m'
WHITE='\033[34m'
YELLOW='\033[33m'
NO_COLOR='\033[0m'
function info() {
(>&2 echo -e "[${WHITE}${BOLD}INFO${NO_COLOR}] $*")
}
function error() {
(>&2 echo -e "[${RED}ERROR${NO_COLOR}] $*")
}
function warning() {
(>&2 echo -e "${YELLOW}[WARNING] $*${NO_COLOR}")
}
function ok() {
(>&2 echo -e "[${GREEN}${BOLD} OK ${NO_COLOR}] $*")
}
function print_delim() {
echo '============================'
}
function get_now() {
echo $(date +%s)
}
function print_time() {
END_TIME=$(get_now)
ELAPSED_TIME=$(echo "$END_TIME - $START_TIME" | bc -l)
MESSAGE="Took ${ELAPSED_TIME} seconds"
info "${MESSAGE}"
}
function success() {
print_delim
ok "$1"
print_time
print_delim
}
function fail() {
print_delim
error "$1"
print_time
print_delim
exit -1
}
function check_in_docker() {
if [ -f /.dockerenv ]; then
APOLLO_IN_DOCKER=true
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册