forked from apache/paimon-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlint-python.sh
More file actions
executable file
·855 lines (757 loc) · 27.1 KB
/
lint-python.sh
File metadata and controls
executable file
·855 lines (757 loc) · 27.1 KB
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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
#!/usr/bin/env 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.
################################################################################
# lint-python.sh
# This script will prepare a virtual environment for many kinds of checks, such as tox check, flake8 check.
#
# Download some software, such as miniconda.sh
function download() {
local DOWNLOAD_STATUS=
if hash "wget" 2>/dev/null; then
# because of the difference of all versions of wget, so we turn of the option --show-progress
wget "$1" -O "$2" -q -T20 -t3
DOWNLOAD_STATUS="$?"
else
curl "$1" -o "$2" --progress-bar --connect-timeout 20 --retry 3
DOWNLOAD_STATUS="$?"
fi
if [ $DOWNLOAD_STATUS -ne 0 ]; then
echo "Download failed.You can try again"
exit $DOWNLOAD_STATUS
fi
}
# Printing infos both in log and console
function print_function() {
local STAGE_LENGTH=48
local left_edge_len=
local right_edge_len=
local str
case "$1" in
"STAGE")
left_edge_len=$(((STAGE_LENGTH-${#2})/2))
right_edge_len=$((STAGE_LENGTH-${#2}-left_edge_len))
str="$(seq -s "=" $left_edge_len | tr -d "[:digit:]")""$2""$(seq -s "=" $right_edge_len | tr -d "[:digit:]")"
;;
"STEP")
str="$2"
;;
*)
str="seq -s "=" $STAGE_LENGTH | tr -d "[:digit:]""
;;
esac
echo $str | tee -a $LOG_FILE
}
function regexp_match() {
if echo $1 | grep -e $2 &>/dev/null; then
echo true
else
echo false
fi
}
# decide whether a array contains a specified element.
function contains_element() {
arr=($1)
if echo "${arr[@]}" | grep -w "$2" &>/dev/null; then
echo true
else
echo false
fi
}
# Checkpoint the stage:step for convenient to re-exec the script with
# skipping those success steps.
# The format is "${Stage}:${Step}". e.g. Install:4
function checkpoint_stage() {
if [ ! -d `dirname $STAGE_FILE` ]; then
mkdir -p `dirname $STAGE_FILE`
fi
echo "$1:$2">"$STAGE_FILE"
}
# Restore the stage:step
function restore_stage() {
if [ -f "$STAGE_FILE" ]; then
local lines=$(awk '{print NR}' $STAGE_FILE)
if [ $lines -eq 1 ]; then
local first_field=$(cat $STAGE_FILE | cut -d ":" -f 1)
local second_field=$(cat $STAGE_FILE | cut -d ":" -f 2)
check_valid_stage $first_field $second_field
if [ $? -eq 0 ]; then
STAGE=$first_field
STEP=$second_field
return
fi
fi
fi
STAGE="install"
STEP=0
}
# Decide whether the stage:step is valid.
function check_valid_stage() {
case $1 in
"install")
if [ $2 -le $STAGE_INSTALL_STEPS ] && [ $2 -ge 0 ]; then
return 0
fi
;;
*)
;;
esac
return 1
}
function parse_component_args() {
local REAL_COMPONENTS=()
for component in ${INSTALLATION_COMPONENTS[@]}; do
# because all other components depends on conda, the install of conda is
# required component.
if [[ "$component" == "basic" ]] || [[ "$component" == "miniconda" ]]; then
continue
fi
if [[ "$component" == "all" ]]; then
component="environment"
fi
if [[ `contains_element "${SUPPORTED_INSTALLATION_COMPONENTS[*]}" "${component}"` = true ]]; then
REAL_COMPONENTS+=(${component})
else
echo "unknown install component ${component}, currently we only support installing basic,py_env,tox,flake8,sphinx,mypy,all."
exit 1
fi
done
if [[ `contains_element "${REAL_COMPONENTS[*]}" "environment"` = false ]]; then
SUPPORTED_INSTALLATION_COMPONENTS=(${REAL_COMPONENTS[@]})
fi
}
# For convenient to index something binded to OS.
function get_os_index() {
local sys_os=$(uname -s)
echo "Detected OS: ${sys_os}"
if [ ${sys_os} == "Darwin" ]; then
echo 0
elif [[ ${sys_os} == "Linux" ]]; then
echo 1
else
echo "Unsupported OS: ${sys_os}"
exit 1
fi
}
function install_brew() {
hash "brew" 2>/dev/null
if [ $? -ne 0 ]; then
print_function "STEP" "install brew..."
$((/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)") 2>&1 >/dev/null)
if [ $? -ne 0 ]; then
echo "Failed to install brew"
exit 1
fi
print_function "STEP" "install brew... [SUCCESS]"
fi
}
# Considering the file size of miniconda.sh,
# "wget" is better than "curl" in the weak network environment.
function install_wget() {
if [ $1 -eq 0 ]; then # Darwin
install_brew
hash "wget" 2>/dev/null
if [ $? -ne 0 ]; then
print_function "STEP" "install wget..."
brew install wget 2>&1 >/dev/null
if [ $? -ne 0 ]; then
echo "Failed to install wget"
exit 1
fi
print_function "STEP" "install wget... [SUCCESS]"
fi
fi
}
# The script choose miniconda as our package management tool.
# The script use miniconda to create all kinds of python versions and
# some packages including checks such as tox and flake8.
function install_miniconda() {
local sys_machine=$(uname -m)
echo "Detected machine: ${sys_machine}"
OS_TO_CONDA_URL=("https://repo.anaconda.com/miniconda/Miniconda3-py310_23.5.2-0-MacOSX-${sys_machine}.sh" \
"https://repo.anaconda.com/miniconda/Miniconda3-py310_23.5.2-0-Linux-${sys_machine}.sh")
if [ ! -f "$CONDA_INSTALL" ]; then
print_function "STEP" "download miniconda from ${OS_TO_CONDA_URL[$1]}..."
download ${OS_TO_CONDA_URL[$1]} $CONDA_INSTALL_SH
chmod +x $CONDA_INSTALL_SH
if [ $? -ne 0 ]; then
echo "Please manually chmod +x $CONDA_INSTALL_SH"
exit 1
fi
if [ -d "$CURRENT_DIR/.conda" ]; then
rm -rf "$CURRENT_DIR/.conda"
if [ $? -ne 0 ]; then
echo "Please manually rm -rf $CURRENT_DIR/.conda directory.\
Then retry to exec the script."
exit 1
fi
fi
print_function "STEP" "download miniconda... [SUCCESS]"
fi
if [ ! -d "$CURRENT_DIR/.conda" ]; then
print_function "STEP" "installing conda..."
$CONDA_INSTALL_SH -b -p $CURRENT_DIR/.conda 2>&1 >/dev/null
# orjson depend on pip >= 20.3
print_function "STEP" "upgrade pip..."
$CURRENT_DIR/.conda/bin/python -m pip install --upgrade pip 2>&1 >/dev/null
print_function "STEP" "upgrade pip... [SUCCESS]"
if [ $? -ne 0 ]; then
echo "install miniconda failed"
exit $CONDA_INSTALL_STATUS
fi
print_function "STEP" "install conda ... [SUCCESS]"
fi
}
# Install some kinds of py env.
function install_py_env() {
py_env=("3.8" "3.9" "3.10" "3.11")
for ((i=0;i<${#py_env[@]};i++)) do
if [ -d "$CURRENT_DIR/.conda/envs/${py_env[i]}" ]; then
rm -rf "$CURRENT_DIR/.conda/envs/${py_env[i]}"
if [ $? -ne 0 ]; then
echo "rm -rf $CURRENT_DIR/.conda/envs/${py_env[i]} failed, please \
rm -rf $CURRENT_DIR/.conda/envs/${py_env[i]} manually.\
Then retry to exec the script."
exit 1
fi
fi
print_function "STEP" "installing python${py_env[i]}..."
max_retry_times=3
retry_times=0
install_command="$CONDA_PATH create --name ${py_env[i]} -y -q python=${py_env[i]}"
${install_command} 2>&1 >/dev/null
status=$?
while [[ ${status} -ne 0 ]] && [[ ${retry_times} -lt ${max_retry_times} ]]; do
retry_times=$((retry_times+1))
# sleep 3 seconds and then reinstall.
sleep 3
echo "conda install ${py_env[i]} retrying ${retry_times}/${max_retry_times}"
${install_command} 2>&1 >/dev/null
status=$?
done
if [[ ${status} -ne 0 ]]; then
echo "conda install ${py_env[i]} failed after retrying ${max_retry_times} times.\
You can retry to execute the script again."
exit 1
fi
print_function "STEP" "install python${py_env[i]}... [SUCCESS]"
done
}
# Install tox.
# In some situations,you need to run the script with "sudo". e.g. sudo ./lint-python.sh
function install_tox() {
source $CONDA_HOME/bin/activate
if [ -f "$TOX_PATH" ]; then
$PIP_PATH uninstall tox -y -q 2>&1 >/dev/null
if [ $? -ne 0 ]; then
echo "pip uninstall tox failed \
please try to exec the script again.\
if failed many times, you can try to exec in the form of sudo ./lint-python.sh -f"
exit 1
fi
fi
# tox 3.14.0 depends on both 0.19 and 0.23 of importlib_metadata at the same time and
# conda will try to install both these two versions and it will cause problems occasionally.
# Using pip as the package manager could avoid this problem.
$CURRENT_DIR/install_command.sh -q virtualenv==20.10.0 tox==3.14.0 2>&1 >/dev/null
if [ $? -ne 0 ]; then
echo "pip install tox failed \
please try to exec the script again.\
if failed many times, you can try to exec in the form of sudo ./lint-python.sh -f"
exit 1
fi
conda deactivate
}
# Install flake8.
# In some situations,you need to run the script with "sudo". e.g. sudo ./lint-python.sh
function install_flake8() {
source $CONDA_HOME/bin/activate
if [ -f "$FLAKE8_PATH" ]; then
$PIP_PATH uninstall flake8 -y -q 2>&1 >/dev/null
if [ $? -ne 0 ]; then
echo "pip uninstall flake8 failed \
please try to exec the script again.\
if failed many times, you can try to exec in the form of sudo ./lint-python.sh -f"
exit 1
fi
fi
$CURRENT_DIR/install_command.sh -q flake8==4.0.1 2>&1 >/dev/null
if [ $? -ne 0 ]; then
echo "pip install flake8 failed \
please try to exec the script again.\
if failed many times, you can try to exec in the form of sudo ./lint-python.sh -f"
exit 1
fi
conda deactivate
}
# Install mypy.
# In some situations, you need to run the script with "sudo". e.g. sudo ./lint-python.sh
function install_mypy() {
source ${CONDA_HOME}/bin/activate
if [[ -f "$MYPY_PATH" ]]; then
${PIP_PATH} uninstall mypy -y -q 2>&1 >/dev/null
if [[ $? -ne 0 ]]; then
echo "pip uninstall mypy failed \
please try to exec the script again.\
if failed many times, you can try to exec in the form of sudo ./lint-python.sh -f"
exit 1
fi
fi
${CURRENT_DIR}/install_command.sh -q mypy==1.5.1 2>&1 >/dev/null
if [[ $? -ne 0 ]]; then
echo "pip install mypy failed \
please try to exec the script again.\
if failed many times, you can try to exec in the form of sudo ./lint-python.sh -f"
exit 1
fi
conda deactivate
}
function need_install_component() {
if [[ `contains_element "${SUPPORTED_INSTALLATION_COMPONENTS[*]}" "$1"` = true ]]; then
echo true
else
echo false
fi
}
# In this function, the script will prepare all kinds of python environments and checks.
function install_environment() {
print_function "STAGE" "installing environment"
#get the index of the SUPPORT_OS array for convenient to install tool.
local os_index=$(get_os_index | tail -n1)
# In some Linux distributions, md5sum is installed instead of md5. But our miniconda installation shell uses md5
if [ "$os_index" -eq 1 ] && [ ! -f /usr/local/bin/md5 ]; then
echo "Creating symlink for md5 to md5sum..."
sudo ln -s $(which md5sum) /usr/local/bin/md5
fi
# step-1 install wget
# the file size of the miniconda.sh is too big to use "wget" tool to download instead
# of the "curl" in the weak network environment.
if [ $STEP -lt 1 ]; then
print_function "STEP" "installing wget..."
install_wget $os_index
STEP=1
checkpoint_stage $STAGE $STEP
print_function "STEP" "install wget... [SUCCESS]"
fi
# step-2 install miniconda
if [ $STEP -lt 2 ]; then
print_function "STEP" "installing miniconda..."
create_dir $CURRENT_DIR/download
install_miniconda $os_index
STEP=2
checkpoint_stage $STAGE $STEP
print_function "STEP" "install miniconda... [SUCCESS]"
fi
# step-3 install python environment which includes
# 3.8 3.9 3.10 3.11
if [ $STEP -lt 3 ] && [ `need_install_component "py_env"` = true ]; then
print_function "STEP" "installing python environment..."
install_py_env
STEP=3
checkpoint_stage $STAGE $STEP
print_function "STEP" "install python environment... [SUCCESS]"
fi
# step-4 install tox
if [ $STEP -lt 4 ] && [ `need_install_component "tox"` = true ]; then
print_function "STEP" "installing tox..."
install_tox
STEP=4
checkpoint_stage $STAGE $STEP
print_function "STEP" "install tox... [SUCCESS]"
fi
# step-5 install flake8
if [ $STEP -lt 5 ] && [ `need_install_component "flake8"` = true ]; then
print_function "STEP" "installing flake8..."
install_flake8
STEP=5
checkpoint_stage $STAGE $STEP
print_function "STEP" "install flake8... [SUCCESS]"
fi
# step-6 install sphinx
if [ $STEP -lt 6 ] && [ `need_install_component "sphinx"` = true ]; then
print_function "STEP" "installing sphinx..."
install_sphinx
STEP=6
checkpoint_stage $STAGE $STEP
print_function "STEP" "install sphinx... [SUCCESS]"
fi
# step-7 install mypy
if [[ ${STEP} -lt 7 ]] && [[ `need_install_component "mypy"` = true ]]; then
print_function "STEP" "installing mypy..."
install_mypy
STEP=7
checkpoint_stage ${STAGE} ${STEP}
print_function "STEP" "install mypy... [SUCCESS]"
fi
print_function "STAGE" "install environment... [SUCCESS]"
}
# create dir if needed
function create_dir() {
if [ ! -d $1 ]; then
mkdir -p $1
if [ $? -ne 0 ]; then
echo "mkdir -p $1 failed. you can mkdir manually or exec the script with \
the command: sudo ./lint-python.sh"
exit 1
fi
fi
}
# Set created py-env in $PATH for tox's creating virtual env
function activate () {
if [ ! -d $CURRENT_DIR/.conda/envs ]; then
echo "For some unknown reasons, missing the directory $CURRENT_DIR/.conda/envs,\
you should exec the script with the option: -f"
exit 1
fi
for py_dir in $CURRENT_DIR/.conda/envs/*
do
PATH=$py_dir/bin:$PATH
done
export PATH 2>/dev/null
if [ $? -ne 0 ]; then
echo "For some unknown reasons, the py package is not complete,\
you should exec the script with the option: -f"
exit 1
fi
}
# Reset the $PATH
function deactivate() {
# reset old environment variables
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all
if ! [ -z "${_OLD_PATH+_}" ] ; then
PATH="$_OLD_PATH"
export PATH
unset _OLD_PATH
fi
}
# Collect checks
function collect_checks() {
if [ ! -z "$EXCLUDE_CHECKS" ] && [ ! -z "$INCLUDE_CHECKS" ]; then
echo "You can't use option -s and -e simultaneously."
exit 1
fi
if [ ! -z "$EXCLUDE_CHECKS" ]; then
for (( i = 0; i < ${#EXCLUDE_CHECKS[@]}; i++)); do
if [[ `contains_element "${SUPPORT_CHECKS[*]}" "${EXCLUDE_CHECKS[i]}_check"` = true ]]; then
SUPPORT_CHECKS=("${SUPPORT_CHECKS[@]/${EXCLUDE_CHECKS[i]}_check}")
else
echo "the check ${EXCLUDE_CHECKS[i]} is invalid."
exit 1
fi
done
fi
if [ ! -z "$INCLUDE_CHECKS" ]; then
REAL_SUPPORT_CHECKS=()
for (( i = 0; i < ${#INCLUDE_CHECKS[@]}; i++)); do
if [[ `contains_element "${SUPPORT_CHECKS[*]}" "${INCLUDE_CHECKS[i]}_check"` = true ]]; then
REAL_SUPPORT_CHECKS+=("${INCLUDE_CHECKS[i]}_check")
else
echo "the check ${INCLUDE_CHECKS[i]} is invalid."
exit 1
fi
done
SUPPORT_CHECKS=(${REAL_SUPPORT_CHECKS[@]})
fi
}
# If the check stage is needed
function include_stage() {
if [[ `contains_element "${SUPPORT_CHECKS[*]}" "$1"` = true ]]; then
return 0
else
return 1
fi
}
# get all supported checks functions
function get_all_supported_checks() {
_OLD_IFS=$IFS
IFS=$'\n'
SUPPORT_CHECKS=()
for fun in $(declare -F); do
if [[ `regexp_match "$fun" "_check$"` = true ]]; then
SUPPORT_CHECKS+=("${fun:11}")
fi
done
IFS=$_OLD_IFS
}
# get all supported install components functions
function get_all_supported_install_components() {
_OLD_IFS=$IFS
IFS=$'\n'
for fun in $(declare -F); do
if [[ `regexp_match "${fun:11}" "^install_"` = true ]]; then
SUPPORTED_INSTALLATION_COMPONENTS+=("${fun:19}")
fi
done
IFS=$_OLD_IFS
# we don't need to expose "install_wget" to user.
local DELETE_COMPONENTS=("wget")
local REAL_COMPONENTS=()
for component in ${SUPPORTED_INSTALLATION_COMPONENTS[@]}; do
if [[ `contains_element "${DELETE_COMPONENTS[*]}" "${component}"` = false ]]; then
REAL_COMPONENTS+=("${component}")
fi
done
SUPPORTED_INSTALLATION_COMPONENTS=(${REAL_COMPONENTS[@]})
}
# exec all selected check stages
function check_stage() {
print_function "STAGE" "checks starting"
for fun in ${SUPPORT_CHECKS[@]}; do
$fun
done
echo "All the checks are finished, the detailed information can be found in: $LOG_FILE"
}
###############################################################All Checks Definitions###############################################################
#########################
# This part defines all check functions such as tox_check and flake8_check
# We make a rule that all check functions are suffixed with _ check. e.g. tox_check, flake8_check
#########################
# Tox check
function tox_check() {
print_function "STAGE" "tox checks"
# Set created py-env in $PATH for tox's creating virtual env
activate
# Ensure the permission of the scripts set correctly
chmod +x $PAIMON_PYTHON_DIR/dev/*
# dummy jar needed by setup.py
mkdir -p $PAIMON_PYTHON_DIR/deps/jars
touch $PAIMON_PYTHON_DIR/deps/jars/dummy.jar
mkdir -p $PAIMON_PYTHON_DIR/deps/hadoop
touch $PAIMON_PYTHON_DIR/deps/hadoop/dummy.jar
if [[ -n "$GITHUB_ACTION" ]]; then
# Run tests in all versions triggered by a Git push (tests aren't so many currently)
$TOX_PATH -vv -c $PAIMON_PYTHON_DIR/tox.ini --recreate 2>&1 | tee -a $LOG_FILE
else
# Only run random selected python version at local.
ENV_LIST_STRING=`$TOX_PATH -l -c $PAIMON_PYTHON_DIR/tox.ini`
_OLD_IFS=$IFS
IFS=$'\n'
ENV_LIST=(${ENV_LIST_STRING})
IFS=$_OLD_IFS
ENV_LIST_SIZE=${#ENV_LIST[@]}
index=$(($RANDOM % ENV_LIST_SIZE))
$TOX_PATH -vv -c $PAIMON_PYTHON_DIR/tox.ini -e ${ENV_LIST[$index]} --recreate 2>&1 | tee -a $LOG_FILE
fi
# delete dummy jar
rm -rf $PAIMON_PYTHON_DIR/deps
TOX_RESULT=$((grep -c "congratulations :)" "$LOG_FILE") 2>&1)
if [ $TOX_RESULT -eq '0' ]; then
print_function "STAGE" "tox checks... [FAILED]"
else
print_function "STAGE" "tox checks... [SUCCESS]"
fi
# Reset the $PATH
deactivate
# If check failed, stop the running script.
if [ $TOX_RESULT -eq '0' ]; then
exit 1
fi
}
# Flake8 check
function flake8_check() {
local PYTHON_SOURCE="$(find . \( -path ./dev -o -path ./.tox \) -prune -o -type f -name "*.py" -print )"
print_function "STAGE" "flake8 checks"
if [ ! -f "$FLAKE8_PATH" ]; then
echo "For some unknown reasons, the flake8 package is not complete,\
you should exec the script with the parameter: -f"
fi
if [[ ! "$PYTHON_SOURCE" ]]; then
echo "No python files found! Something is wrong exiting."
exit 1;
fi
# the return value of a pipeline is the status of the last command to exit
# with a non-zero status or zero if no command exited with a non-zero status
set -o pipefail
($FLAKE8_PATH --config=tox.ini $PYTHON_SOURCE) 2>&1 | tee -a $LOG_FILE
PYCODESTYLE_STATUS=$?
if [ $PYCODESTYLE_STATUS -ne 0 ]; then
print_function "STAGE" "flake8 checks... [FAILED]"
# Stop the running script.
exit 1;
else
print_function "STAGE" "flake8 checks... [SUCCESS]"
fi
}
# mypy check
function mypy_check() {
print_function "STAGE" "mypy checks"
# the return value of a pipeline is the status of the last command to exit
# with a non-zero status or zero if no command exited with a non-zero status
set -o pipefail
(${MYPY_PATH} --install-types --non-interactive --config-file tox.ini) 2>&1 | tee -a ${LOG_FILE}
TYPE_HINT_CHECK_STATUS=$?
if [ ${TYPE_HINT_CHECK_STATUS} -ne 0 ]; then
print_function "STAGE" "mypy checks... [FAILED]"
# Stop the running script.
exit 1;
else
print_function "STAGE" "mypy checks... [SUCCESS]"
fi
}
###############################################################All Checks Definitions###############################################################
# CURRENT_DIR is "paimon-python/dev/"
CURRENT_DIR="$(cd "$( dirname "$0" )" && pwd)"
# PAIMON_PYTHON_DIR is "paimon-python/"
PAIMON_PYTHON_DIR=$(dirname "$CURRENT_DIR")
# conda home path
if [ -z "${PAIMON_PYTHON_CONDA_HOME+x}" ]; then
CONDA_HOME="$CURRENT_DIR/.conda"
ENV_HOME="$CONDA_HOME"
else
CONDA_HOME=PAIMON_PYTHON_CONDA_HOME
ENV_HOME="${CONDA_PREFIX-$CONDA_HOME}"
fi
# conda path
CONDA_PATH=$CONDA_HOME/bin/conda
# pip path
PIP_PATH=$ENV_HOME/bin/pip
# tox path
TOX_PATH=$ENV_HOME/bin/tox
# flake8 path
FLAKE8_PATH=$ENV_HOME/bin/flake8
# mypy path
MYPY_PATH=$ENV_HOME/bin/mypy
_OLD_PATH="$PATH"
SUPPORT_OS=("Darwin" "Linux")
# the file stores the success step in installing progress.
STAGE_FILE=$CURRENT_DIR/.stage.txt
# the dir includes all kinds of py env installed.
VIRTUAL_ENV=$CONDA_HOME/envs
LOG_DIR=$CURRENT_DIR/log
if [ "$PAIMON_IDENT_STRING" == "" ]; then
PAIMON_IDENT_STRING="$USER"
fi
if [ "$HOSTNAME" == "" ]; then
HOSTNAME="$HOST"
fi
# the log file stores the checking result.
LOG_FILE=$LOG_DIR/paimon-$PAIMON_IDENT_STRING-python-$HOSTNAME.log
create_dir $LOG_DIR
# clean LOG_FILE content
echo >$LOG_FILE
# miniconda script
CONDA_INSTALL_SH=$CURRENT_DIR/download/miniconda.sh
# stage "install" includes the num of steps.
STAGE_INSTALL_STEPS=7
# whether force to restart the script.
FORCE_START=0
SUPPORT_CHECKS=()
# search all supported check functions and put them into SUPPORT_CHECKS array
get_all_supported_checks
EXCLUDE_CHECKS=""
INCLUDE_CHECKS=""
SUPPORTED_INSTALLATION_COMPONENTS=()
# search all supported install functions and put them into SUPPORTED_INSTALLATION_COMPONENTS array
get_all_supported_install_components
INSTALLATION_COMPONENTS=()
# whether remove the installed python environment.
CLEAN_UP_FLAG=0
# parse_opts
USAGE="
usage: $0 [options]
-h print this help message and exit
-f force to exec from the progress of installing environment
-s [basic,py_env,tox,flake8,sphinx,mypy,all]
install environment with specified components which split by comma(,)
note:
This option is used to install environment components and will skip all subsequent checks,
so do not use this option with -e,-i simultaneously.
-e [tox,flake8,sphinx,mypy]
exclude checks which split by comma(,)
-i [tox,flake8,sphinx,mypy]
include checks which split by comma(,)
-l list all checks supported.
Examples:
./lint-python.sh -s basic => install environment with basic components.
./lint-python.sh -s py_env => install environment with python env(3.8,3.9,3.10,3.11).
./lint-python.sh -s all => install environment with all components such as python env,tox,flake8,sphinx,mypy etc.
./lint-python.sh -s tox,flake8 => install environment with tox,flake8.
./lint-python.sh -s tox -f => reinstall environment with tox.
./lint-python.sh -e tox,flake8 => exclude checks tox,flake8.
./lint-python.sh -i flake8 => include checks flake8.
./lint-python.sh => exec all checks.
./lint-python.sh -f => reinstall environment with all components and exec all checks.
./lint-python.sh -l => list all checks supported.
./lint-python.sh -r => clean up python environment.
"
while getopts "hfs:i:e:lr" arg; do
case "$arg" in
h)
printf "%s\\n" "$USAGE"
exit 2
;;
f)
FORCE_START=1
;;
s)
INSTALLATION_COMPONENTS=($(echo $OPTARG | tr ',' ' ' ))
;;
e)
EXCLUDE_CHECKS=($(echo $OPTARG | tr ',' ' ' ))
;;
i)
INCLUDE_CHECKS=($(echo $OPTARG | tr ',' ' ' ))
;;
l)
printf "current supported checks includes:\n"
for fun in ${SUPPORT_CHECKS[@]}; do
echo ${fun%%_check*}
done
exit 2
;;
r)
printf "clean up python environment:\n"
CLEAN_UP_FLAG=1
;;
?)
printf "ERROR: did not recognize option '%s', please try -h\\n" "$1"
exit 1
;;
esac
done
# decides whether to skip check stage
skip_checks=0
if [[ ${CLEAN_UP_FLAG} -eq 1 ]]; then
printf "clean up python environment"
rm -rf ${CONDA_HOME}
rm -rf ${STAGE_FILE}
rm -rf ${PAIMON_PYTHON_DIR}/.tox
skip_checks=1
fi
if [ ! -z "$INSTALLATION_COMPONENTS" ]; then
parse_component_args
skip_checks=1
fi
# collect checks according to the options
collect_checks
# If exec the script with the param: -f, all progress will be re-run
if [ $FORCE_START -eq 1 ]; then
STAGE="install"
STEP=0
checkpoint_stage $STAGE $STEP
else
restore_stage
fi
# install environment
if [[ ${CLEAN_UP_FLAG} -eq 0 ]]; then
install_environment
fi
pushd "$PAIMON_PYTHON_DIR" &> /dev/null
# exec all selected checks
if [ $skip_checks -eq 0 ]; then
check_stage
fi