forked from kworkflow/kworkflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·827 lines (707 loc) · 22.6 KB
/
setup.sh
File metadata and controls
executable file
·827 lines (707 loc) · 22.6 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
#!/usr/bin/env bash
KW_LIB_DIR='src'
. 'src/lib/kw_include.sh' --source-only
include "${KW_LIB_DIR}/lib/kwio.sh"
include "${KW_LIB_DIR}/lib/kwlib.sh"
include "${KW_LIB_DIR}/lib/kw_db.sh"
include "${KW_LIB_DIR}/help.sh"
SILENT=1
VERBOSE=0
FORCE=0
SKIPCHECKS=0
SKIPDOCS=0
ENABLE_TRACING=0
declare -r app_name='kw'
##
## Following are the install paths
##
# Paths used during the installation process
declare -r kwbinpath="$HOME/.local/bin/$app_name"
declare -r binpath="$HOME/.local/bin"
declare -r libdir="$HOME/.local/lib/$app_name"
declare -r datadir="${XDG_DATA_HOME:-"$HOME/.local/share"}/$app_name"
declare -r docdir="${datadir}/doc"
declare -r mandir="${datadir}/man"
declare -r sounddir="${datadir}/sound"
declare -r databasedir="${datadir}/database"
declare -r etcdir="${XDG_CONFIG_HOME:-"$HOME/.config"}/$app_name"
declare -r cachedir="${XDG_CACHE_HOME:-"$HOME/.cache/$app_name"}"
declare -r tracingdir="${datadir}/tracing"
declare -r dot_configs_dir="${datadir}/configs"
##
## Source code references
##
declare -r SRCDIR='src'
declare -r MAN='documentation/man/'
declare -r CONFIG_DIR='etc/'
declare -r KW_CACHE_DIR="$cachedir"
declare -r TRACING_CODE_EXCERPTS_DIR='tracing/code_excerpts'
declare -r SOUNDS='sounds'
declare -r DATABASE='database'
declare -r BASH_AUTOCOMPLETE='bash_autocomplete'
declare -r DOCUMENTATION='documentation'
declare -r CONFIGS_PATH='configs'
declare -r FISH_CONFIG_PATH="${HOME}/.config/fish"
declare -r FISH_COMPLETION_PATH="${FISH_CONFIG_PATH}/completions"
declare -r DOCS_VIRTUAL_ENV='docs_virtual_env'
# patch-hub latest release endpoint
declare -r PATCH_HUB_LATEST_RELEASE='https://github.com/kworkflow/patch-hub/releases/latest/download/patch-hub-x86_64-unknown-linux-gnu.tar.xz'
# This function identifies the missing packages required by the distribution.
#
# @distro: The distribution name (arch, debian, fedora, etc.)
# @deps_file: The path to the dependencies file for the distribution.
#
# Returns:
# Outputs a space-separated string with the missing packages.
function get_missing_packages()
{
local distro="$1"
local deps_file="$2"
local package_list
local installed
if [[ "$distro" =~ 'arch' ]]; then
while IFS='' read -r package; do
pacman -Ql "$package" &> /dev/null
[[ "$?" != 0 ]] && package_list="${package} ${package_list}"
done < "$deps_file"
elif [[ "$distro" =~ 'debian' ]]; then
while IFS='' read -r package; do
installed=$(dpkg-query -W --showformat='${Status}\n' "$package" 2> /dev/null | grep -c 'ok installed')
[[ "$installed" -eq 0 ]] && package_list="${package} ${package_list}"
done < "$deps_file"
elif [[ "$distro" =~ 'fedora' ]]; then
while IFS='' read -r package; do
rpm -q "$package" &> /dev/null
[[ "$?" -ne 0 ]] && package_list="${package} ${package_list}"
done < "$deps_file"
fi
printf '%s\n' "$package_list"
}
# This function installs the given packages.
#
# @cmd: The installation command with the packages to be installed.
#
# Returns:
# The return status of the installation command.
function install_packages()
{
local cmd="$1"
if [[ "$EUID" -eq 0 ]]; then
eval "$cmd"
else
eval "sudo ${cmd}"
fi
}
# This function checks and installs the necessary dependencies for the current
# distribution.
#
# Returns:
# Returns 0 if all dependencies are already installed or installation is
# successful.
function check_dependencies()
{
local package_list
local cmd
local distro
local ret
distro=$(detect_distro '/')
package_list=$(get_missing_packages "$distro" "${DOCUMENTATION}/dependencies/${distro}.dependencies")
case "$distro" in
arch*)
cmd="pacman -Sy --noconfirm ${package_list}"
;;
debian*)
cmd="apt install -y ${package_list}"
;;
fedora*)
cmd="dnf install -y ${package_list}"
;;
*)
warning 'Unfortunately, we do not have official support for your distro (yet)'
warning 'Please, try to find the following packages:'
warning "$(cat "${DOCUMENTATION}/dependencies/arch.dependencies")"
return 0
;;
esac
if [[ -n "$package_list" ]]; then
if [[ "$FORCE" == 0 ]]; then
if [[ $(ask_yN "The following packages are required: ${package_list}"$'\nMay we install them?') =~ '0' ]]; then
complain 'Aborting kw installation...'
exit 125 # ECANCELED
fi
fi
install_packages "$cmd"
ret="$?"
# Installation failed...
if [[ "$ret" -ne 0 ]]; then
complain '[ERROR] Dependencies installation has failed. Aborting kw installation...'
exit "$ret"
fi
fi
}
# This function checks and installs kernel build dependencies, i.e.,
# dependencies that are necessary to build a Linux kernel. It supports three
# Linux distributions: Debian, Arch Linux, and Fedora.
#
# @distro: Detect the current distribution.
#
# Returns:
# Returns 0 if all necessary dependencies are already installed or installation
# is successful. and returns 22 (EINVAL), in case `@distro` is an unsupported
# OS type. The function can also exit the execution with 125 (ECANCELED) in case
# the user opts to abort the installation.
function check_and_install_kernel_build_dependencies()
{
local distro="$1"
local kernel_build_deps_file
local package_list
local cmd
kernel_build_deps_file="${DOCUMENTATION}/dependencies/kernel_build/${distro}.dependencies"
package_list=$(get_missing_packages "$distro" "$kernel_build_deps_file")
case "$distro" in
arch*)
cmd="pacman -Sy --noconfirm ${package_list}"
;;
debian*)
cmd="apt install -y ${package_list}"
;;
fedora*)
cmd="dnf install -y ${package_list}"
;;
*)
complain "Unsupported OS type: ${distro}"
return 22 # EINVAL
;;
esac
if [[ -z "$package_list" ]]; then
warning 'All necessary kernel build dependencies are already installed.'
return 0
fi
if [[ -n "$package_list" ]]; then
if [[ "$FORCE" == 0 ]]; then
if [[ $(ask_yN "The following packages are required to build the kernel: ${package_list}"$'\nMay we install them?') =~ '0' ]]; then
complain 'Aborting installation. Kernel build dependencies not installed.'
exit 125 # ECANCELED
fi
fi
install_packages "$cmd"
# Installation failed...
if [[ "$?" -ne 0 ]]; then
complain '[ERROR] Dependencies installation to build the kernel has failed. Aborting installation...'
exit "$?"
fi
fi
}
# This function initiates the process to ensure kernel build dependencies are
# installed.
function install_kernel_dev_deps()
{
local distro
local ret
distro=$(detect_distro '/')
# Check if distro is equal to 'none'
if [[ "$distro" == 'none' ]]; then
complain 'Support for this distro is not available yet.'
exit 22 # EINVAL
fi
# Use check_and_install_kernel_build_dependencies() to handle dependency
# installation
check_and_install_kernel_build_dependencies "$distro"
}
function generate_documentation()
{
local ret
python3 -m venv "$DOCS_VIRTUAL_ENV"
# Activate python virtual env
source "${DOCS_VIRTUAL_ENV}/bin/activate"
say 'Creating python virtual env...'
cmd="pip --quiet --require-virtualenv install --requirement \"${DOCUMENTATION}/dependencies/pip.dependencies\""
eval "$cmd"
ret="$?"
if [[ "$ret" == 0 ]]; then
sphinx-build -nW -b html documentation/ build
else
complain 'Could not install pip dependencies'
fi
# Deactivate python virtual env
deactivate
if [[ -d "$DOCS_VIRTUAL_ENV" ]]; then
rm --recursive "$DOCS_VIRTUAL_ENV"
fi
return "$ret"
}
# TODO
# Originally, kw get installed in the ~/.config and add the kw binary in the
# path. We changed it; however, we keep this function for supporting the
# migration from the old version to the new one.
function remove_kw_from_PATH_variable()
{
local new_path=''
local needs_update=0
IFS=':' read -ra ALL_PATHS <<< "$PATH"
for path in "${ALL_PATHS[@]}"; do
if [[ "$path" =~ '/kw' ]]; then
needs_update=1
continue
fi
# The first interaction introduce one extra ':'
new_path="$new_path:$path"
done
if [[ "$needs_update" != 0 ]]; then
# Drop ':' introduced in the above loop
PATH="${new_path:1}"
export PATH
fi
}
function update_path()
{
local shellrc="$1"
IFS=':' read -ra ALL_PATHS <<< "$PATH"
for path in "${ALL_PATHS[@]}"; do
[[ "$path" -ef "$binpath" ]] && return
done
safe_append "PATH=${HOME}/.local/bin:\$PATH # kw" "$shellrc"
}
function update_current_bash()
{
exec /bin/bash
}
function cmd_output_manager()
{
local cmd="$1"
local unsilent_flag="$2"
if [[ -z "$unsilent_flag" ]]; then
cmd="$cmd >/dev/null"
else
printf '%s\n' "$cmd"
fi
eval "$cmd"
return "$?"
}
# TODO: Remove me one day
# KW used git to track saved configs from kernel-config-manager.
# It changed so this function removes the unused .git folder from
# the dot_configs_dir
function remove_legacy_git_from_kernel_config_manager()
{
local -r original_path="$PWD"
[[ ! -d "${dot_configs_dir}"/.git ]] && return
if pushd "$dot_configs_dir" &> /dev/null; then
rm -rf .git/
popd &> /dev/null || {
complain "Could not return to original path from dot_configs_dir=$dot_configs_dir"
exit 1
}
else
complain 'Could not cd to dot_configs_dir'
return
fi
}
function usage()
{
say 'usage: ./setup.sh option'
say ''
say 'Where option may be one of the following:'
say '--help | -h Display this usage message'
say "--install | -i Install ${app_name}"
say '--install-kernel-dev-deps | -k Installs all necessary dependencies to build the kernel according to your distribution'
say "--full-installation | -F Install ${app_name} and its kernel development dependencies"
say "--uninstall | -u Uninstall ${app_name}"
say '--skip-checks | -C Skip checks (use this when packaging)'
say '--skip-docs | -D Skip creation of man pages (use this when installing)'
say '--verbose | -v Explain what is being done'
say '--force | -f Never prompt'
say "--completely-remove | -r Remove ${app_name} and all files under its responsibility"
say "--docs | -d Build ${app_name}'s documentation as HTML pages into ./build"
say "--enable-tracing | -t Install ${app_name} with tracing enabled (use it with --install)"
}
function confirm_complete_removal()
{
warning 'This operation will completely remove all files related to kw,'
warning 'including the kernel '.config' files under its controls.'
if [[ $(ask_yN 'Do you want to proceed?') =~ '0' ]]; then
exit 0
fi
}
# This function moves the folders from the old directory structure to
# folders of the new one.
function legacy_folders()
{
local prefix="$HOME/.local"
if [[ -d "$HOME/.kw" ]]; then
say 'Found an obsolete installation of kw:'
say "Moving files in $HOME/.kw/ to $datadir..."
rsync -a "$HOME/.kw/" "$datadir"
rm -rf "$HOME/.kw"
fi
[[ -d "$prefix/share/doc" ]] && rm -rf "$prefix/share/doc"
[[ -f "$prefix/share/man/kw.rst" ]] && rm -rf "$prefix/share/man/kw.rst"
[[ -d "$prefix/share/sound/kw" ]] && rm -rf "$prefix/share/sound/kw"
[[ -d "$prefix/share/man" ]] && rm -rf "$prefix/share/man"
[[ -d "$prefix/share/sound" ]] && rm -rf "$prefix/share/sound"
# Legacy global config
if [[ -d "$prefix/etc/kw/" ]]; then
say "Moving $prefix/etc/kw to $etcdir..."
rsync -a "$prefix/etc/kw/" "$etcdir"
# We already check "$prefix"
# shellcheck disable=SC2115
rm -rf "$prefix/etc"
fi
}
function clean_legacy()
{
local completely_remove="$1"
local toDelete="$app_name"
local trash
trash=$(mktemp -d)
eval "sed -i '/\<$toDelete\>/d' $HOME/.bashrc"
# Remove kw binary
[[ -f "$kwbinpath" ]] && mv "$kwbinpath" "$trash"
# Remove kw libriary
[[ -d "$libdir" ]] && mv "$libdir" "$trash/lib"
# Remove doc dir
[[ -d "$docdir" ]] && mv "$docdir" "$trash"
# Remove man
[[ -d "$mandir" ]] && mv "$mandir" "$trash"
# Remove sound files
[[ -d "$sounddir" ]] && mv "$sounddir" "$trash/sound"
# Remove etc files
[[ -d "$etcdir" ]] && mv "$etcdir" "$trash/etc"
# Remove patch-hub binary
[[ -f "${binpath}/patch-hub" ]] && mv "${binpath}/patch-hub" "$trash"
# Completely remove user data
if [[ "$completely_remove" =~ '-d' ]]; then
mv "$datadir" "$trash/userdata"
return 0
fi
# TODO: Remove me one day
# Some old version of kw relies on a directory name `kw` at ~/, we changed
# this behaviour but we added the below code to clean up those legacy system.
# One day we could get rid of this code
if [[ -d "$HOME/kw" ]]; then
rm -rf "$HOME/kw/"
fi
# Remove kw from PATH variable
remove_kw_from_PATH_variable
}
function synchronize_fish()
{
local kw_fish_path="set -gx PATH ${PATH}:${binpath}"
say 'Fish detected. Setting up fish support.'
mkdir --parents "${FISH_COMPLETION_PATH}"
cmd_output_manager "rsync --verbose --recursive ${SRCDIR}/kw.fish ${FISH_COMPLETION_PATH}/kw.fish"
grep --fixed-strings --silent "${kw_fish_path}" "${FISH_CONFIG_PATH}/config.fish"
if [[ "$?" != 0 ]]; then
printf '%s\n' "${kw_fish_path}" >> "${FISH_CONFIG_PATH}/config.fish"
fi
}
function ASSERT_IF_NOT_EQ_ZERO()
{
local msg="$1"
local ret="$2"
if [[ "$ret" != 0 ]]; then
complain "$msg"
exit "$ret"
fi
}
# Synchronize .vim and .vimrc with repository.
function synchronize_files()
{
verbose=''
[[ "$VERBOSE" == 1 ]] && verbose=1
# Copy kw main file
mkdir -p "$binpath"
if [[ "$ENABLE_TRACING" == 0 ]]; then
cmd_output_manager "cp $app_name $binpath" "$verbose"
ASSERT_IF_NOT_EQ_ZERO "The command 'cp $app_name $binpath' failed" "$?"
else
sync_main_kw_file_with_tracing "$app_name" "$binpath" "$TRACING_CODE_EXCERPTS_DIR"
ASSERT_IF_NOT_EQ_ZERO 'Could not sync kw main file with tracing enabled' "$?"
fi
# Lib files
mkdir -p "$libdir"
if [[ "$ENABLE_TRACING" == 0 ]]; then
cmd_output_manager "rsync -vr $SRCDIR/ $libdir" "$verbose"
ASSERT_IF_NOT_EQ_ZERO "The command 'rsync -vr $SRCDIR $libdir' failed" "$?"
else
sync_kw_lib_files_with_tracing "$SRCDIR" "$libdir"
ASSERT_IF_NOT_EQ_ZERO 'Could not sync kw library files with tracing enabled' "$?"
fi
# Sound files
mkdir -p "$sounddir"
cmd_output_manager "rsync -vr $SOUNDS/ $sounddir" "$verbose"
ASSERT_IF_NOT_EQ_ZERO "The command 'rsync -vr $SOUNDS $sounddir' failed" "$?"
## TODO: Remove me one day
# Old kworkflow.config uses complete.wav instead of bell
ln -s "$sounddir/bell.wav" "$sounddir/complete.wav"
# Documentation files
mkdir -p "$docdir"
cmd_output_manager "rsync -vr $DOCUMENTATION/ $docdir" "$verbose"
ASSERT_IF_NOT_EQ_ZERO "The command 'rsync -vr $DOCUMENTATION $docdir' failed" "$?"
# man file
if [[ "$SKIPDOCS" == 0 ]]; then
mkdir -p "$mandir"
python3 -m venv "$DOCS_VIRTUAL_ENV"
# Activate python virtual env
source "${DOCS_VIRTUAL_ENV}/bin/activate"
say 'Creating python virtual env...'
cmd="pip --quiet --require-virtualenv install --requirement \"${DOCUMENTATION}/dependencies/pip.dependencies\""
eval "$cmd"
cmd_output_manager "sphinx-build -nW -b man $DOCUMENTATION $mandir" "$verbose"
ASSERT_IF_NOT_EQ_ZERO "'sphinx-build -nW -b man $DOCUMENTATION $mandir' failed" "$?"
# Deactivate python virtual env
deactivate
if [[ -d "$DOCS_VIRTUAL_ENV" ]]; then
rm -r "$DOCS_VIRTUAL_ENV"
fi
fi
# etc files
mkdir -p "$etcdir"
cmd_output_manager "rsync -vr $CONFIG_DIR/ $etcdir" "$verbose"
ASSERT_IF_NOT_EQ_ZERO "The command 'rsync -vr $CONFIG_DIR/ $etcdir $verbose' failed" "$?"
# Database files
mkdir -p "${databasedir}"
cmd_output_manager "rsync --verbose --recursive ${DATABASE}/ ${databasedir}" "$verbose"
ASSERT_IF_NOT_EQ_ZERO "The command 'rsync --verbose --recursive ${DATABASE} ${databasedir}' failed" "$?"
setup_global_config_file
# User data
mkdir -p "$datadir"
mkdir -p "$datadir/statistics"
mkdir -p "$datadir/configs"
if [[ -x "${databasedir}/migrate_legacy_data_20220101.sh" ]]; then
eval "${databasedir}/migrate_legacy_data_20220101.sh"
else
execute_sql_script "${databasedir}/kwdb.sql"
if [[ "$?" != 0 ]]; then
complain 'Creation of database schema has failed.'
fi
fi
if command_exists 'bash'; then
# Add tabcompletion to bashrc
if [[ -f "${HOME}/.bashrc" || -L "${HOME}/.bashrc" ]]; then
append_bashcompletion
update_path "${HOME}/.bashrc"
else
warning 'Unable to find a .bashrc file.'
fi
fi
if command_exists 'zsh'; then
# Add tabcompletion to zshrc
if [[ -f "${HOME}/.zshrc" || -L "${HOME}/.zshrc" ]]; then
remove_legacy_zshcompletion "${HOME}/.zshrc"
append_zshcompletion "${HOME}/.zshrc"
update_path "${HOME}/.zshrc"
# Check for alternative path for .zshrc
elif [[ -d "$ZDOTDIR" && -f "${ZDOTDIR}/.zshrc" ]]; then
remove_legacy_zshcompletion "${ZDOTDIR}/.zshrc"
append_zshcompletion "${ZDOTDIR}/.zshrc"
update_path "${ZDOTDIR}/.zshrc"
else
warning 'Unable to find a .zshrc file.'
fi
fi
if command_exists 'fish'; then
synchronize_fish
fi
say "$SEPARATOR"
# Create ~/.cache/kw for support some of the operations
mkdir -p "$cachedir"
# Create ~/.local/kw/tracing for storing tracing reports of kw executions
if [[ "$ENABLE_TRACING" == 1 ]]; then
mkdir --parents "$tracingdir"
fi
say "$app_name installed into $HOME"
}
function append_bashcompletion()
{
safe_append "# ${app_name}" "${HOME}/.bashrc"
safe_append "source ${libdir}/${BASH_AUTOCOMPLETE}.sh" "${HOME}/.bashrc"
}
function remove_legacy_zshcompletion()
{
local zshrc_path="$1"
safe_remove '# Enable bash completion for zsh' "${zshrc_path}"
safe_remove 'autoload bashcompinit && bashcompinit' "${zshrc_path}"
safe_remove "source ${libdir}/${BASH_AUTOCOMPLETE}.sh" "${zshrc_path}"
}
function append_zshcompletion()
{
local zshrc_path="$1"
safe_append "# ${app_name}" "${zshrc_path}"
safe_append "export fpath=(${libdir} \$fpath)" "${zshrc_path}"
safe_append 'autoload compinit && compinit -i' "${zshrc_path}"
}
function safe_append()
{
if [[ $(grep -c -x "$1" "$2") == 0 ]]; then
printf '%s\n' "$1" >> "$2"
fi
}
function safe_remove()
{
local preprocessed_pattern
if [[ $(grep -c -x "$1" "$2") == 1 ]]; then
# Escape any foward slash as to not conflict with sed
preprocessed_pattern=$(printf '%s' "$1" | sed 's_/_\\/_g')
sed -i "/^${preprocessed_pattern}\$/d" "$2"
fi
}
function update_version()
{
kworkflow_version_from_repo > "${libdir}/VERSION"
}
function install_home()
{
# Check Dependencies
if [[ "$SKIPCHECKS" == 0 ]]; then
say 'Checking dependencies ...'
check_dependencies
fi
# Move old folder structure to new one
legacy_folders
# First clean old installation
clean_legacy
# Synchronize source files
say 'Installing ...'
synchronize_files
# Remove old git repo to manage .config files
remove_legacy_git_from_kernel_config_manager
# Update version based on the current branch
update_version
# Show current environment in terminal
setup_bashrc_to_show_current_kw_env
install_patch_hub
if [[ "$?" != 0 ]]; then
warning ''
warning '-> Could not install the latest release of `patch-hub`.'
warning ' To use the `kw patch-hub` feature, you will need to install the `patch-hub` executable.'
warning ' Either try re-running this script or following the instructions below.'
warning ' Install instructions: https://github.com/kworkflow/patch-hub?tab=readme-ov-file#package-how-to-install.'
fi
warning ''
warning '-> For a better experience with kw, please, open a new terminal.'
}
function install_patch_hub()
{
local tmp_dir
local ret
say ''
say 'Installing `patch-hub`...'
tmp_dir="$(mktemp --directory)"
curl --silent --location --output "${tmp_dir}/patch-hub.tar.xz" "$PATCH_HUB_LATEST_RELEASE"
ret="$?"
if [[ "$?" != 0 ]]; then
return "$ret"
fi
tar xf "${tmp_dir}/patch-hub.tar.xz" --directory="$tmp_dir" --strip-components=1
ret="$?"
if [[ "$?" != 0 ]]; then
return "$ret"
fi
cp "${tmp_dir}/patch-hub" "${binpath}"
ret="$?"
if [[ "$?" != 0 ]]; then
return "$ret"
fi
}
function full_installation()
{
say 'Starting kw installation...'
install_home
say 'Installing kernel dependencies for build...'
install_kernel_dev_deps
}
function setup_bashrc_to_show_current_kw_env()
{
local config_file_template="${etcdir}/kw_prompt_current_env_name.sh"
say ''
say ' Note: If you want to see kw env in the prompt, add something like the below line to your PS1:'
say ' PS1="${PS1/\\$/}" && PS1+="\$(kw_get_current_env_name)$ "'
safe_append "source ${config_file_template}" "${HOME}/.bashrc"
}
function setup_global_config_file()
{
local config_files_path="$etcdir"
local config_file_template="$config_files_path/notification_template.config"
local global_config_name='notification.config'
if [[ -f "$config_file_template" ]]; then
# Default config
cp "$config_file_template" "$config_files_path/notification.config"
sed -i -e "s,SOUNDPATH,$sounddir,g" \
-e "/^#?.*/d" "$config_files_path/notification.config"
ret="$?"
if [[ "$ret" != 0 ]]; then
return "$ret"
fi
else
warning "setup could not find $config_file_template"
return 2 # ENOENT
fi
}
# Options
for arg; do
shift
case "$arg" in
--verbose | -v)
VERBOSE=1
continue
;;
--force | -f)
FORCE=1
continue
;;
# Usually short lowercase options enable some behavior. Thus, the option -C
# is uppercase to sign we disable the dependency-check behavior.
--skip-checks | -C)
SKIPCHECKS=1
continue
;;
# Similarly, the lowercase short option -D signs we disable the default
# behavior of generating man pages.
--skip-docs | -D)
SKIPDOCS=1
continue
;;
--enable-tracing | -t)
include 'tracing/tracing.sh'
ENABLE_TRACING=1
continue
;;
esac
set -- "$@" "$arg"
done
case "$1" in
--install | -i)
install_home
#update_current_bash
;;
--uninstall | -u)
clean_legacy
say 'kw was removed.'
;;
# ATTENTION: This option is dangerous because it completely removes all files
# related to kw, e.g., '.config' file under kw controls. For this reason, we do
# not want to add a short version, and the user has to be sure about this
# operation.
--completely-remove | -r)
confirm_complete_removal
clean_legacy '-d'
;;
--help | -h)
usage
;;
--docs | -d)
generate_documentation
;;
--install-kernel-dev-deps | -k)
install_kernel_dev_deps
;;
--full-installation | -F)
full_installation
;;
*)
complain 'Invalid number of arguments'
usage
exit 1
;;
esac