-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
util_functions.sh
353 lines (305 loc) · 8.99 KB
/
util_functions.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
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
#!/bin/bash
print_message() {
message="$1"
level="$2"
datetime="\033[1;37m$(date +'%H:%M:%S')\033[0m"
# Change the default color based on argument log level
case "$level" in
error)
message="[\033[1;31mERROR\033[0m] ($datetime) $message"
;;
warning)
message="[\033[1;33mWARNING\033[0m] ($datetime) $message"
;;
info)
message="[\033[1;32mINFO\033[0m] ($datetime) $message"
;;
debug)
message="[\033[1;36mDEBUG\033[0m] ($datetime) $message"
;;
*)
message="\033[1;37m$message\033[0m"
;;
esac
# Print the message
echo -e "$message"
if [ "$2" = "error" ]; then
exit 1
fi
}
# Process directories either directly or by enumerating through a specified path
#
# Args:
# $1: SCRIPT - Script to execute for each directory (defaults to $0)
# $2: TARGET_DIR - Optional: Specific directory to process
# $3: SEARCH_DIR - Optional: Directory to search in (defaults to ./extracted_images)
process_directories() {
script="${1:-$0}"
[ -n "$2" ] && dir=$2 || {
for dir in "${3:-./extracted_images}"/*; do
if [ -d "$dir" ]; then
dir=${dir%*/}
print_message "Processing \"${dir##*/}\"…" debug
# Execute script with directory as argument
./"$script" "$dir"
fi
done
# Once done, exit to prevent duplicate executions
exit 1
}
}
# Function to install packages by name using various package managers
install_packages() {
local package_names=("$@")
# Determine the appropriate package manager
local package_manager=""
if command -v apt-get >/dev/null 2>&1; then
package_manager="apt-get"
elif command -v apt >/dev/null 2>&1; then
package_manager="apt"
elif command -v pacman >/dev/null 2>&1; then
package_manager="pacman"
elif command -v yum >/dev/null 2>&1; then
package_manager="yum"
elif command -v dnf >/dev/null 2>&1; then
package_manager="dnf"
elif command -v zypper >/dev/null 2>&1; then
package_manager="zypper"
elif command -v pkg >/dev/null 2>&1; then
package_manager="pkg"
else
print_message "Error: No supported package manager found on this system." error
return 1
fi
# Determine if root/sudo privileges are available
local use_sudo=false
if [[ $EUID -ne 0 ]]; then
if command -v sudo >/dev/null 2>&1; then
use_sudo=true
else
print_message "Error: This script requires root privileges (sudo) to install packages." error
return 1
fi
fi
# Function to execute a command with optional sudo
run_command() {
if $use_sudo; then
sudo "$@"
else
"$@"
fi
}
# Update package lists (if applicable)
case "$package_manager" in
apt-get | apt | yum | dnf | zypper)
run_command $package_manager update -y >/dev/null 2>&1
;;
pacman)
run_command $package_manager -Sy >/dev/null 2>&1
;;
esac
# Install packages
for package in "${package_names[@]}"; do
local is_installed=1 # Assume package is NOT installed initially
# Check if the package is already installed
case "$package_manager" in
apt-get | apt)
# CORRECT: Check for "install ok installed"
is_installed=$(dpkg-query -W --showformat='${Status}\n' "$package" 2>/dev/null | grep -c "install ok installed")
;;
pacman)
# Check the exit code, 0 means installed
if pacman -Q "$package" >/dev/null 2>&1; then
is_installed=0
fi
;;
yum | dnf)
# Check the exit code, 0 means installed
if rpm -q "$package" >/dev/null 2>&1; then
is_installed=0
fi
;;
zypper)
is_installed=$(zypper -q info "$package" 2>/dev/null | grep -c "Installed")
;;
pkg)
# Check the exit code, 0 means installed
if pkg info "$package" >/dev/null 2>&1; then
is_installed=0
fi
;;
esac
# Install the package if it's not already installed
if [ "$is_installed" -ne 1 ]; then
print_message "Installing $package…" info
case "$package_manager" in
apt-get | apt)
run_command $package_manager install -y "$package" >/dev/null 2>&1
;;
pacman)
run_command $package_manager -S --noconfirm "$package" >/dev/null 2>&1
;;
yum | dnf)
run_command $package_manager install -y "$package" >/dev/null 2>&1
;;
zypper)
run_command $package_manager install -y "$package" >/dev/null 2>&1
;;
pkg)
run_command $package_manager install -y "$package" >/dev/null 2>&1
;;
esac
print_message "$package installed successfully." info
fi
done
}
# Copy files from source to destination directory based on specified patterns
#
# Args:
# $1: SOURCE_DIR - Source directory containing files to copy
# $2: DEST_DIR - Destination directory where files will be copied
# $3: FILES_LIST - Space-separated list of patterns to match filenames
#
# Returns:
# 0 on success
# 1 if arguments missing, source directory not found, or destination creation fails
copy_specific_files() {
# Check if required arguments are provided
if [ "$#" -lt 3 ]; then
print_message "Usage: copy_specific_files SOURCE_DIR DEST_DIR FILES_LIST" info
print_message "Example: copy_specific_files /src /dest 'file1.xml file2.xml pattern3'" debug
return 1
fi
# Parse arguments
src_dir="$1"
dest_dir="$2"
files_list="$3"
# Check if source directory exists
if [ ! -d "$src_dir" ]; then
print_message "Source directory '$src_dir' does not exist" error
return 1
fi
# Create destination directory
mkdir -p "$dest_dir" || {
print_message "Failed to create destination directory '$dest_dir'" error
return 1
}
# Counter for copied files
copied=0
# Process each file in source directory
for file in "$src_dir"/*; do
[ -f "$file" ] || continue # Skip if not a regular file
# Get basename of file
filename="${file##*/}"
# Check against each pattern
for pattern in $files_list; do
if echo "$filename" | grep -q "$pattern"; then
if cp "$file" "$dest_dir/"; then
copied=$((copied + 1))
else
print_message "Failed to copy: \"$filename\"" warning
fi
break
fi
done
done
# Report results
print_message "Copied $copied files to \"$dest_dir\"" debug
return 0
}
# Function to find build & system properties within a specified directory.
find_prop_files() {
dir="$1"
prop_files=()
while IFS= read -r -d '' file; do
if [[ "$file" == */build.prop || "$file" == */system.prop ]]; then
prop_files+=("${file}")
fi
done < <(find "$dir" -type f -print0)
echo "${prop_files[@]}"
}
# Function to grep a property value from a list of files
grep_prop() {
PROP="$1"
shift
FILES_or_VAR="$@"
# if it's a file, use grep normally
# else just echo the content from a variable.
if [[ -f "$FILES_or_VAR" ]]; then
grep -m1 "^$PROP=" "$FILES_or_VAR" 2>/dev/null | cut -d= -f2- | head -n 1
else
echo "$FILES_or_VAR" | grep -m1 "^$PROP=" 2>/dev/null | cut -d= -f2- | head -n 1
fi
}
# Function to proxy between multiple property value prefixes
get_property() {
PROP="$1"
shift
FILES="$@"
PROPERTY_PREFIXES="ro ro.board ro.system ro.vendor ro.product ro.product.product ro.product.bootimage ro.product.vendor ro.product.odm ro.product.system ro.product.system_ext ro.product.system_ext"
for PREFIX in $PROPERTY_PREFIXES; do
name="$PREFIX.$PROP"
value=$(grep_prop "$name" "$FILES")
# If we find a value we suppose that we know both name and value.
[ -n "$value" ] && echo "$name=$value" && return
done
}
to_system_prop() {
if [ -z "$1" ]; then
print_message "No string to add provided" error
return 1
fi
system_prop="$system_prop$1
"
}
to_module_prop() {
if [ -z "$1" ]; then
print_message "No string to add provided" error
return 1
fi
module_prop="$module_prop$1
"
}
add_prop_as_ini() {
if [ -z "$1" ] || [[ $(type -t "$1") != function ]]; then
print_message "Invalid function name provided for building props" error
return 1
fi
if [ -z "$2" ]; then
print_message "No property name provided for $2" error
return 1
fi
if [ -z "$3" ]; then
print_message "No property value provided for $2" error
return 1
fi
"$1" "$2=$3"
}
build_system_prop() {
prop_name="$1"
prop_value=$(grep_prop "$prop_name" "$EXT_PROP_CONTENT")
if [ -z "$prop_value" ]; then
print_message "\"$prop_name\" not found" warning
return 1
fi
add_prop_as_ini "to_system_prop" "$prop_name" "$prop_value"
}
extract_image() {
if [ -z "$1" ]; then
print_message "No directory destination provided" error
return 1
fi
if [ -z "$2" ]; then
print_message "No image name provided" error
return 1
fi
if [ -f "$1/$2.img" ]; then
print_message "Extracting \"${1##*/}/$2.img\"" debug
7z x "$1/$2.img" -o"$1/extracted/$2" -y &>/dev/null
# ImjTool not required since of A13?
# ./imjtool "$1/$2.img" extract &>/dev/null
# rm -rf extracted
fi
}
# Using requirements.sh
[ -f "requirements.sh" ] && . ./requirements.sh || { echo "requirements.sh not found" && exit 1; }