forked from apache/rocketmq-client-cpp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
format.sh
executable file
·72 lines (61 loc) · 2.19 KB
/
format.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
#!/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.
set -e
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"
}
# Setp 1: check clang-format support
if ! which clang-format &>/dev/null; then
echo -e "\033[32m !!!!!!please install clang-format \033[0m"
exit 1
fi
# Setp 2: 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
# Setp 3: 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
# Setp 4: use clang-format format dest file
for file in $files; do
echo $file
clang-format -style=file $file >$TMPFILE
if [ -e $TMPFILE ]; then
filesize=$(wc -c $TMPFILE | awk -F' ' '{ print $1; }')
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