Skip to content

Commit 2aaaa15

Browse files
committed
New set of chanegs
1 parent 9572229 commit 2aaaa15

File tree

5 files changed

+75
-9
lines changed

5 files changed

+75
-9
lines changed

array.bash

+9
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ array::pop() {
99
unset "arr[-1]"
1010
}
1111

12+
# array::from_string some_array " " "a b c"
13+
array::from_string() {
14+
local output_var=$1
15+
local split_by=${2:-$'\n'}
16+
17+
mapfile -t -d "$split_by" "$output_var"
18+
}
19+
20+
# array::contains "find_me" "${array[@]}"
1221
array::contains() {
1322
local item="$1"
1423
shift

develop.bash

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ develop::lint() {
2323

2424
develop::is_in_dev_mode() {
2525
local dir=$1
26-
if ! git::is_git_repo "$dir" || ! git::is_dirty "$dir";then
27-
# we are not in git or git ins't dirty, then we run in production mode
26+
if git::is_git_repo "$dir" && git::is_dirty "$dir";then
2827
return 0
2928
fi
3029
return 1

dialog.bash

+27-2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,29 @@ dialog::menu() {
4444
return 1
4545
}
4646

47+
dialog::select_from_array() {
48+
local msg=$1
49+
local -n _list=$2
50+
51+
local order=()
52+
local -A menu
53+
local line
54+
local n=0
55+
local index
56+
for line in "${_list[@]}";do
57+
index="$(echo "$line" | grep -o '[0-9A-Za-z]'|head -n1)$n"
58+
order+=( "$index" )
59+
menu[$index]="$line"
60+
n=$((n+1))
61+
done
62+
if dialog::menu "$msg" menu order 0 60;then
63+
# shellcheck disable=SC2034
64+
_output="${menu[$(dialog::result)]}"
65+
return 0
66+
fi
67+
return 1
68+
}
69+
4770
dialog::simple_list_select() {
4871
local msg=$1
4972
local list=$2
@@ -52,9 +75,11 @@ dialog::simple_list_select() {
5275
local -A menu
5376
local line
5477
local n=0
78+
local index
5579
while IFS= read -r line;do
56-
order+=( "$n" )
57-
menu[$n]="$line"
80+
index="$(echo "$line" | grep -o '[0-9A-Za-z]'|head -n1)$n"
81+
order+=( "$index" )
82+
menu[$index]="$line"
5883
n=$((n+1))
5984
done < <(echo "$list")
6085
if dialog::menu "$msg" menu order 0 60;then

fetch.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ fetch::verify() {
3636
local sha=$1
3737
local file=$2
3838
local actual
39-
actual=$(sha256sum "$file" | awk '{print $1}')
39+
actual=$(sha256sum "$file" | gawk '{print $1}')
4040
if [ "$sha" != "$actual" ];then
4141
log::panic "Sha256 does not match. Expected ${sha} but got ${actual}"
4242
fi

git.bash

+37-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env bash
22

3+
import exec
34
import dialog
45

56
git::_git() {
@@ -11,6 +12,25 @@ git::_git() {
1112
) || return 1
1213
}
1314

15+
git::clone() {
16+
local path=$1
17+
local repo=$2
18+
19+
exec::silent git::_git "$path" clone "$repo" .
20+
}
21+
22+
git::push_all() {
23+
local path=$1
24+
25+
exec::silent git::_git "$path" push --all
26+
}
27+
28+
git::push_tags() {
29+
local path=$1
30+
31+
exec::silent git::_git "$path" push --tags
32+
}
33+
1434
git::is_git_repo() {
1535
local path=$1
1636

@@ -24,19 +44,32 @@ git::is_dirty() {
2444
return 1
2545
}
2646

27-
git:::tag() {
47+
git::tag() {
2848
local path=$1
2949
local sha=$2
3050
local tag=$3
3151
local msg=$4
3252

3353
if [ -n "$msg" ];then
34-
git::_git "$path" -m "$msg" "$tag" "$sha"
54+
git::_git "$path" tag -m "$msg" "$tag" "$sha"
3555
else
36-
git::_git "$path" "$tag" "$sha"
56+
git::_git "$path" tag "$tag" "$sha"
3757
fi
3858
}
3959

60+
git::list_tags() {
61+
local path=$1
62+
63+
git::_git "$path" tag -l
64+
}
65+
66+
git::is_object_exists() {
67+
local path=$1
68+
local sha=$2
69+
70+
git::_git "$path" show -q "$sha" &> /dev/null || return 1
71+
}
72+
4073
git::tag2commit_ref() {
4174
local path=$1
4275
local tag=$2
@@ -77,7 +110,7 @@ git::clone_progress() {
77110
(
78111
dialog::progress_msg "Cloning $repo_display"
79112
# There are 4 passes with progress when clonning git repo, last awk command make every 100 worth 25%
80-
git clone "$repo" "$path" --progress 2>&1 | stdbuf -i0 -o0 -e0 tr '\r' '\n' | stdbuf -i0 -o0 -e0 grep -o "[0-9]\{1,2\}\%" | stdbuf -i0 -o0 -e0 grep -o '[0-9]*' | stdbuf -i0 -o0 -e0 awk "BEGIN{p=0;x=0} {if(\$1 < p) {x+=25;print x} else {print x+(\$1/4)};p=\$1 }"
113+
git clone "$repo" "$path" --progress 2>&1 | stdbuf -i0 -oL -eL tr '\r' '\n' | stdbuf -oL -eL grep -o "[0-9]\{1,3\}\%" | stdbuf -eL sed 's/%//g' | stdbuf -oL -eL gawk "BEGIN{p=0;x=0} {if(\$1 < p) {x+=25;print x} else {print x+(\$1/4)};p=\$1 }"
81114
) | dialog::progress "git clone" 8 80
82115
if ! [ -d "$path/.git" ];then
83116
dialog::msg "Failed to clone $repo"

0 commit comments

Comments
 (0)