forked from oldratlee/useful-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind-in-jars
executable file
·268 lines (229 loc) · 8.61 KB
/
find-in-jars
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#!/bin/bash
# @Function
# Find files in the jar files under specified directory, search jar files recursively(include subdirectory).
#
# @Usage
# $ find-in-jars 'log4j\.properties'
# # search file log4j.properties/log4j.xml at zip root
# $ find-in-jars '^log4j\.(properties|xml)$'
# $ find-in-jars 'log4j\.properties$' -d /path/to/find/directory
# $ find-in-jars '\.properties$' -d /path/to/find/dir1 -d path/to/find/dir2
# $ find-in-jars 'Service\.class$' -e jar -e zip
# $ find-in-jars 'Mon[^$/]*Service\.class$' -s ' <-> '
#
# @online-doc https://github.com/oldratlee/useful-scripts/blob/dev-2.x/docs/java.md#-find-in-jars
# @author Jerry Lee (oldratlee at gmail dot com)
set -eEuo pipefail
readonly PROG="$(basename "$0")"
################################################################################
# util functions
################################################################################
# shellcheck disable=SC2015
[ -t 1 ] && readonly is_console=true || readonly is_console=false
# NOTE: $'foo' is the escape sequence syntax of bash
readonly ec=$'\033' # escape char
readonly eend=$'\033[0m' # escape end
readonly cr=$'\r' # carriage return
readonly nl=$'\n' # new line
redEcho() {
$is_console && echo "${ec}[1;31m$*$eend" || echo "$*"
}
die() {
redEcho "Error: $*" 1>&2
exit 1
}
# Getting console width using a bash script
# https://unix.stackexchange.com/questions/299067
$is_console && readonly columns=$(stty size | awk '{print $2}')
printResponsiveMessage() {
$is_console || return 0
local message="$*"
# http://www.linuxforums.org/forum/red-hat-fedora-linux/142825-how-truncate-string-bash-script.html
echo -n "${message:0:columns}"
}
clearResponsiveMessage() {
$is_console || return 0
# How to delete line with echo?
# https://unix.stackexchange.com/questions/26576
#
# terminal escapes: http://ascii-table.com/ansi-escape-sequences.php
# In particular, to clear from the cursor position to the beginning of the line:
# echo -e "\033[1K"
# Or everything on the line, regardless of cursor position:
# echo -e "\033[2K"
echo -n "${ec}[2K$cr"
}
usage() {
local -r exit_code="${1:-0}"
(($# > 0)) && shift
# shellcheck disable=SC2015
[ "$exit_code" != 0 ] && local -r out=/dev/stderr || local -r out=/dev/stdout
(($# > 0)) && redEcho "$*$nl" >$out
cat >$out <<EOF
Usage: ${PROG} [OPTION]... PATTERN
Find files in the jar files under specified directory,
search jar files recursively(include subdirectory).
The pattern default is *extended* regex.
Example:
${PROG} 'log4j\.properties'
# search file log4j.properties/log4j.xml at zip root
${PROG} '^log4j\.(properties|xml)$'
${PROG} 'log4j\.properties$' -d /path/to/find/directory
${PROG} '\.properties$' -d /path/to/find/dir1 -d path/to/find/dir2
${PROG} 'Service\.class$' -e jar -e zip
${PROG} 'Mon[^$/]*Service\.class$' -s ' <-> '
Find control:
-d, --dir the directory that find jar files.
default is current directory. this option can specify
multiply times to find in multiply directories.
-e, --extension set find file extension, default is jar. this option
can specify multiply times to find multiply extension.
-E, --extended-regexp PATTERN is an extended regular expression (*default*)
-F, --fixed-strings PATTERN is a set of newline-separated strings
-G, --basic-regexp PATTERN is a basic regular expression
-P, --perl-regexp PATTERN is a Perl regular expression
-i, --ignore-case ignore case distinctions
Output control:
-a, --absolute-path always print absolute path of jar file
-s, --separator specify the separator between jar file and zip entry.
default is \`!'.
Miscellaneous:
-h, --help display this help and exit
EOF
exit "$exit_code"
}
################################################################################
# parse options
################################################################################
declare -a dirs=()
declare -a extensions=()
declare -a args=()
separator='!'
regex_mode=-E
use_absolute_path=false
while (($# > 0)); do
case "$1" in
-d | --dir)
dirs=(${dirs[@]:+"${dirs[@]}"} "$2")
shift 2
;;
-e | --extension)
extensions=(${extensions[@]:+"${extensions[@]}"} "$2")
shift 2
;;
# support the typo option --seperator for compatibility
-s | --separator | --seperator)
separator="$2"
shift 2
;;
-E | --extended-regexp)
regex_mode=-E
shift
;;
-F | --fixed-strings)
regex_mode=-F
shift
;;
-G | --basic-regexp)
regex_mode=-G
shift
;;
-P | --perl-regexp)
regex_mode=-P
shift
;;
-i | --ignore-case)
ignore_case_option=-i
shift
;;
-a | --absolute-path)
use_absolute_path=true
shift
;;
-h | --help)
usage
;;
--)
shift
args=(${args[@]:+"${args[@]}"} "$@")
break
;;
-*)
usage 2 "${PROG}: unrecognized option '$1'"
;;
*)
args=(${args[@]:+"${args[@]}"} "$1")
shift
;;
esac
done
# shellcheck disable=SC2178
dirs=${dirs:-.}
# shellcheck disable=SC2178
extensions=${extensions:-jar}
(("${#args[@]}" == 0)) && usage 1 "No find file pattern!"
(("${#args[@]}" > 1)) && usage 1 "More than 1 file pattern: ${args[*]}"
readonly pattern="${args[0]}"
declare -a tmp_dirs=()
for d in "${dirs[@]}"; do
[ -e "$d" ] || die "file $d(specified by option -d) does not exist!"
[ -d "$d" ] || die "file $d(specified by option -d) exists but is not a directory!"
[ -r "$d" ] || die "directory $d(specified by option -d) exists but is not readable!"
# convert dirs to Absolute Path if has option -a, --absolute-path
$use_absolute_path && tmp_dirs=(${tmp_dirs[@]:+"${tmp_dirs[@]}"} "$(cd "$d" && pwd)")
done
# set dirs to Absolute Path
$use_absolute_path && dirs=("${tmp_dirs[@]}")
# convert extensions to find -iname options
find_iname_options=()
for e in "${extensions[@]}"; do
(("${#find_iname_options[@]}" == 0)) &&
find_iname_options=(-iname "*.$e") ||
find_iname_options=("${find_iname_options[@]}" -o -iname "*.$e")
done
################################################################################
# Check the existence of command for listing zip entry!
################################################################################
# `zipinfo -1`/`unzip -Z1` is ~25 times faster than `jar tf`, find zipinfo/unzip command first.
#
# How to list files in a zip without extra information in command line
# https://unix.stackexchange.com/a/128304/136953
if which zipinfo &>/dev/null; then
readonly command_for_list_zip='zipinfo -1'
elif which unzip &>/dev/null; then
readonly command_for_list_zip='unzip -Z1'
else
if ! which jar &>/dev/null; then
[ -n "$JAVA_HOME" ] || die "jar not found on PATH and JAVA_HOME env var is blank!"
[ -f "$JAVA_HOME/bin/jar" ] || die "jar not found on PATH and \$JAVA_HOME/bin/jar($JAVA_HOME/bin/jar) file does NOT exists!"
[ -x "$JAVA_HOME/bin/jar" ] || die "jar not found on PATH and \$JAVA_HOME/bin/jar($JAVA_HOME/bin/jar) is NOT executalbe!"
export PATH="$JAVA_HOME/bin:$PATH"
fi
readonly command_for_list_zip='jar tf'
fi
################################################################################
# find logic
################################################################################
jar_files="$(find "${dirs[@]}" "${find_iname_options[@]}" -type f)"
[ -n "$jar_files" ] || die "No ${extensions[*]} file found!"
total_count="$(echo "$jar_files" | wc -l)"
total_count="${total_count//[[:space:]]/}" # delete white space
findInJarFiles() {
$is_console && local -r grep_color_option='--color=always'
local counter=1 jar_file
while read -r jar_file; do
printResponsiveMessage "finding in jar($((counter++))/$total_count): $jar_file"
$command_for_list_zip "${jar_file}" | {
# Prevent grep from exiting in case of nomatch
# https://unix.stackexchange.com/questions/330660
grep $regex_mode ${ignore_case_option:-} ${grep_color_option:-} -- "$pattern" || true
} | while read -r file; do
clearResponsiveMessage
$is_console &&
echo "${ec}[1;35m${jar_file}${eend}${ec}[1;32m${separator}${eend}${file}" ||
echo "${jar_file}${separator}${file}"
done
clearResponsiveMessage
done
}
echo "$jar_files" | findInJarFiles