Ai
1 Star 0 Fork 0

ly-code/rocketmq-client-cpp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
format.sh 2.12 KB
一键复制 编辑 原始数据 按行查看 历史
#!/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.
TMPFILE=".clang_format_file.tmp"
FORMAT="{BasedOnStyle: Chromium, ColumnLimit: 120, TabWidth: 2}"
function Usage
{
echo "Usage: $0 want-format-file|want-format-dir ..."
#echo "Currently only format a file or dir at a time"
}
#Setp1 check clang-format support
if ! which clang-format &>/dev/null; then
echo -e "\033[32m !!!!!!please install clang-format \033[0m"
exit 1
fi
#Setp2 check weather incoming format file
if [ ! $# -ge 1 ];then
Usage
exit 1
fi
for dest in "$@"
do
if [ ! -e $dest ]; then
echo -e "\033[32m $dest not exists,please check this file weather exists \033[0m"
fi
done
#Setp3 get filelist
for dest in $*
do
if [ -f $dest ];then
files="$files $dest"
elif [ -d $dest ];then
files="$files `ls $dest/*.cpp $dest/*.h $dest/*.cc 2>/dev/null`"
else
echo -e "\033[32m $dest sorry current $0 only support regular file or dir \033[0m"
fi
done
#Setp4 use clang-format format dest file
for file in $files
do
echo $file
clang-format $file > $TMPFILE
if [ -e $TMPFILE ];then
filesize=`wc -c $TMPFILE |cut -d " " -f1`
if [ $filesize -eq 0 ];then
echo -e "\033[32m formt file error,May be because of the size of the source file is 0, or format program error \033[0m"
exit 1
fi
fi
#Setp4 replace source file
mv -f $TMPFILE $file
done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ly-code/rocketmq-client-cpp.git
git@gitee.com:ly-code/rocketmq-client-cpp.git
ly-code
rocketmq-client-cpp
rocketmq-client-cpp
master

搜索帮助