forked from AdrianDC/advanced_development_shell_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathandroid_repo_init.rc
500 lines (422 loc) · 12.5 KB
/
android_repo_init.rc
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
#!/bin/bash
#
# Copyright 2015-2017 Adrian DC
#
# 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.
#
# === Repo Init AOSP ===
function repoinitaosp()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: repoinitaosp <branch_id> [referenced,clean,light/shallow,example] (repo init for AOSP)';
echo '';
echo ' Branch identifications:';
echo ' - android-<X.X.X_rXX>';
echo ' - android-<X-preview-X>';
echo ' - master';
echo '';
return;
fi;
# Variables
local release=${1};
local params=${2};
local branch;
local init_command;
local depth=;
# Branch selection
if [ "${release}" = 'master' ]; then
branch="${release}";
else
branch="android-${release}";
fi;
# Repo shallow
if [[ "${params}" == *'shallow'* ]]; then
depth='--depth 1';
elif [[ "${params}" == *'light'* ]]; then
depth="--depth ${ANDROID_REPO_INIT_LIGHT:-100}";
fi;
# Repo init command
if [[ "${params}" == *'referenced'* ]]; then
init_command="repo init -u http://android.googlesource.com/platform/manifest -b ${branch} ${depth} --reference=$(readlink -f "$(getand)/AOSP")";
else
init_command="repo init -u http://android.googlesource.com/platform/manifest -b ${branch} ${depth}";
fi;
# Output init command
echo '';
echo " ${init_command}";
echo '';
# Exit init for examples only
if [[ "${params}" == *'example'* ]]; then
return;
fi;
# Prepare synced objects for migrations
if [[ ! "${params}" == *'clean'* ]] && [[ ! "${params}" == *'light'* ]] && [[ ! "${params}" == *'shallow'* ]]; then
${init_command};
reposy;
fi;
# Clean repo manifest
repoinitcleaner "${params}";
# Launch init command
${init_command};
# Exit on repo init failure
if [ ! -d .repo/manifests ]; then
echo "repoinitaosp failed for ${branch}";
return;
fi;
# Unneeded branches cleanup
cd .repo/manifests/;
git tag | grep -v "${branch}" | xargs git tag -d > /dev/null;
echo "repoinitaosp done for ${branch}";
echo '';
cd ../../;
# Post-clean repo manifest
repoinitsafecleaner "${params}";
}
# === Repo Init LineageOS ===
function repoinitlineage()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: repoinitlineage <13.0/14.1/15.0> [referenced,clean,light/shallow,example] (repo init for LineageOS)';
echo '';
return;
fi;
# Variables
local release=${1};
local params=${2};
local branch;
local init_command;
local depth=;
# Handle branches
case ${release} in
13.0) branch='cm-13.0';;
14.1) branch='cm-14.1';;
15.0) branch='lineage-15.0';;
*) branch='';;
esac;
# Repo shallow
if [[ "${params}" == *'shallow'* ]]; then
depth='--depth 1';
elif [[ "${params}" == *'light'* ]]; then
depth="--depth ${ANDROID_REPO_INIT_LIGHT:-100}";
fi;
# Repo init command
if [[ "${params}" == *'referenced'* ]]; then
init_command="repo init -u http://github.com/LineageOS/android.git -b ${branch} ${depth} --reference=$(readlink -f "$(getand)/LineageOS")";
else
init_command="repo init -u http://github.com/LineageOS/android.git -b ${branch} ${depth}";
fi;
# Output init command
echo '';
echo " ${init_command}";
echo '';
# Exit init for examples only
if [[ "${params}" == *'example'* ]]; then
return;
fi;
# Prepare synced objects for migrations
if [[ ! "${params}" == *'clean'* ]] && [[ ! "${params}" == *'light'* ]] && [[ ! "${params}" == *'shallow'* ]]; then
${init_command};
reposy;
fi;
# Clean repo manifest
repoinitcleaner "${params}";
# Launch init command
${init_command};
# Exit on repo init failure
if [ ! -d .repo/manifests ]; then
echo "repoinitlineage failed for ${branch}";
return;
fi;
# Unneeded branches cleanup
cd .repo/manifests/;
git tag | grep -v "${branch}" | xargs git tag -d > /dev/null;
echo "repoinitlineage done for ${branch}";
echo '';
cd ../../;
# Post-clean repo manifest
repoinitsafecleaner "${params}";
}
# === Repo Init ResurrectionRemix ===
function repoinitrr()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: repoinitrr <nougat> [referenced,clean,light/shallow] (repo init for ResurrectionRemix)';
echo '';
return;
fi;
# Variables
local release=${1};
local params=${2};
local branch=${release};
local depth=;
# Repo shallow
if [[ "${params}" == *'shallow'* ]]; then
depth='--depth 1';
elif [[ "${params}" == *'light'* ]]; then
depth="--depth ${ANDROID_REPO_INIT_LIGHT:-100}";
fi;
# Prepare synced objects for migrations
if [[ ! "${params}" == *'clean'* ]] && [[ ! "${params}" == *'light'* ]] && [[ ! "${params}" == *'shallow'* ]]; then
reposy;
fi;
# Clean repo manifest
repoinitcleaner "${params}";
# Repo init
if [[ "${params}" == *'referenced'* ]]; then
repo init -u http://github.com/ResurrectionRemix/platform_manifest.git \
-b "${branch}" \
"${depth}" \
--reference="$(readlink -f "$(getand)/LineageOS")";
else
repo init -u http://github.com/ResurrectionRemix/platform_manifest.git \
-b "${branch}" \
"${depth}";
fi;
# Exit on repo init failure
if [ ! -d .repo/manifests ]; then
echo "repoinitrr failed for ${branch}";
return;
fi;
# Unneeded branches cleanup
cd .repo/manifests/;
git tag | grep -v "${branch}" | xargs git tag -d;
echo "repoinitrr done for ${branch}";
cd ../../;
# Post-clean repo manifest
repoinitsafecleaner "${params}";
}
# === Repo Init TWRP ===
function repoinittwrp()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: repoinittwrp <twrp-{X.X}> [referenced,clean,light/shallow] (repo init for TWRP)';
echo '';
return;
fi;
# Variables
local release=${1};
local params=${2};
local branch=twrp-${release};
local depth=;
# Repo shallow
if [[ "${params}" == *'shallow'* ]]; then
depth='--depth 1';
elif [[ "${params}" == *'light'* ]]; then
depth="--depth ${ANDROID_REPO_INIT_LIGHT:-100}";
fi;
# Wipe the out folder
repoclean;
# Clean repo manifest
repoinitcleaner "${params}";
# Repo init
if [[ "${params}" == *'referenced'* ]]; then
repo init -u https://github.com/minimal-manifest-twrp/platform_manifest_twrp_omni.git \
-b "${branch}" \
"${depth}" \
--reference="$(readlink -f "$(getand)/TWRP")";
else
repo init -u https://github.com/minimal-manifest-twrp/platform_manifest_twrp_omni.git \
-b "${branch}" \
"${depth}";
fi;
# Exit on repo init failure
if [ ! -d .repo/manifests ]; then
echo "repoinittwrp failed for ${branch}";
return;
fi;
# Unneeded branches cleanup
cd .repo/manifests/;
git tag | grep -v "${branch}" | xargs git tag -d;
echo "repoinittwrp done for ${branch}";
cd ../../;
# Post-clean repo manifest
repoinitsafecleaner "${params}";
}
# === Repo Init Cleaner ===
function repoinitcleaner()
{
# Usage: repoinitcleaner [clean] (repo init cleaner)
# Run the safety cleaner before removing repo
repoinitsafecleaner "${1}";
# Cleanup repo and manifests
rm -rfv .repo/manifests;
rm -rfv .repo/manifests.git;
rm -rfv .repo/manifest.xml;
rm -rfv .repo/repo;
# Cleanup project files and history if requested
if [[ "${1}" == *'clean'* ]]; then
rm -rfv .repo/project.list;
rm -rfv .repo/projects;
rm -rfv .repo/project-objects;
rm -rfv ./*;
fi;
# Cleanup known faulty projects
rm -rfv prebuilts/qemu-kernel;
rm -rfv .repo/projects/prebuilts/qemu-kernel.git;
rm -rfv .repo/project-objects/prebuilts/qemu-kernel.git;
}
# === Repo Init Safe Cleaner ===
function repoinitsafecleaner()
{
# Usage: repoinitsafecleaner [clean] (repo init safety cleaner)
# Variables
local temp_list_grep;
# Prepare temp files
temp_list_grep=$(mktemp);
# Function header
echo '';
echo " repoinitsafecleaner: Searching for nested projects...";
# Detect missing project.list
if [ ! -f .repo/project.list ]; then
reposy bionic;
fi;
# Detect nested projects causing sync issues
cp .repo/project.list "${temp_list_grep}";
while IFS= read -r path; do
if [ ! "${path: -1}" = '/' ]; then
path="${path}/";
fi;
if grep -q "${path}" "${temp_list_grep}"; then
echo " repoinitsafecleaner: '${path}' has nested projects, deleting...";
rm -rfv "${path}";
fi;
done < '.repo/project.list';
# Detect symlinked repo files causing leftovers
grep 'copyfile\|linkfile' .repo/manifests/*.xml .repo/manifests/*/*.xml \
| sed 's/.*dest="\([^\"]*\)".*/\1/g' \
| xargs -n1 echo rm -fv;
# Remove temporary files
rm -f "${temp_list_grep}";
echo '';
}
# === Repo Init Menu ===
function repoinit()
{
# Usage: repoinit [bool_manually] (repo init menu)
# Variables
local branch;
local cnt=0;
local key;
local line_function;
local line_usage;
local list_functions=('');
local options;
local options_list;
local options_prepend='';
local search_branch;
local search_repo;
# Reset inputs
key='';
search_branch='';
search_repo='';
# Detect the existence of roomservice.xml
if [ -z "${1}" ] && [ -f '.repo/local_manifests/roomservice.xml' ]; then
search_repo=$(grep "Repo Init: '" '.repo/local_manifests/roomservice.xml' | sed "s/.* '\(.*\)' .*/\1/");
if [ ! -z "${search_repo}" ]; then
# Extract repoinit tags
search_branch=${search_repo#* };
search_repo=${search_repo% *};
echo '';
echo -e " \e[1;32mDetected repoinit to use : '${search_repo}' with branch '${search_branch}'\e[0m ";
fi;
fi;
# Display exit item
echo '';
echo -e " \e[1;33m0: \e[1;37mKeep current repo \e[1;32m[Exit the configuration]\e[0m";
# Display shtools* menu
for line_function in $(typeset -F | grep ' repoinit' | cut -d' ' -f 3 | grep -v '^repoinit$' | grep -v 'all$'); do
# Parse usage
line_usage=$(grep -a "Usage: ${line_function} " "${ANDROID_DEVELOPMENT_SHELL_TOOLS_SOURCES[@]}");
if [ -z "${line_usage}" ]; then
continue;
fi;
line_usage=${line_usage#*\(};
line_usage=${line_usage%\)*};
list_functions+=("${line_function}");
# Item choice
cnt=$((cnt + 1));
if [ "${line_function}" = "${search_repo}" ]; then
key=${cnt};
fi;
echo -e " \e[1;33m${cnt}: \e[1;37m${line_function} \e[1;32m[${line_usage}]\e[0m";
done;
echo '';
# Request user input
echo -en " \e[1;37m> Command to run [0-${cnt}] :\e[0m ";
if [ -z "${key}" ]; then
read -r key;
search_branch='';
else
echo "${key}";
fi;
# Abort on exit
if [ -z "${key}" ] || [ "${key}" -eq 0 ]; then
echo '';
return;
fi;
# Show repo init usage
echo -en "\e[1;33m";
${list_functions[${key}]};
echo -en "\e[0m";
# Get options list
options_list=$(${list_functions[${key}]} \
| grep 'Usage:');
options_list=${options_list#*[};
options_list=${options_list%]*};
# Request branch input
echo -en " \e[1;37m> Branch to track :\e[0m ";
if [ -z "${search_branch}" ]; then
read -r branch;
else
branch=${search_branch};
echo "${branch}";
fi;
echo '';
# Request referenced repo option
if [[ "${options_list}" == *'referenced'* ]] && [ ! "${ANDROID_REPO_INIT_REFERENCED}" = 'n' ]; then
echo -en " \e[1;37m> Referenced repository [y/N] :\e[0m ";
read -r options_prepend;
if [ ! -z "${options_prepend}" ] && [[ 'yY' == *"${options_prepend}"* ]]; then
options_prepend='referenced';
options_list=${options_list/referenced/};
else
options_prepend='';
fi;
fi;
# Cleanup options list
options_list=${options_list#,};
options_list=${options_list%,};
# Request options input
echo -en " \e[1;37m> Options to use [${options_list}] :\e[0m ";
if [ -z "${search_branch}" ] || [ -z "${ANDROID_REPO_INIT_OPTIONS}" ]; then
read -r options;
options="${options_prepend},${options}";
else
options="${options_prepend},${ANDROID_REPO_INIT_OPTIONS}";
echo "${options}";
fi;
# Show repo init command
echo '';
echo -e " \e[1;33m> Launching:\e[0m ${list_functions[${key}]} ${branch} ${options}";
echo '';
# Launch repo init command
${list_functions[${key}]} "${branch}" "${options}";
}