-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
history.sh
2286 lines (2077 loc) · 78.6 KB
/
history.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
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
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
## @bleopt history_limit_length
## 履歴に登録するコマンドの最大文字数を指定します。
## この値を超える長さのコマンドは履歴に登録されません。
bleopt/declare -v history_limit_length 10000
#==============================================================================
# ble/history:bash @history.bash
## @arr _ble_history
## コマンド履歴項目を保持する。
##
## @arr _ble_history_edit
## @arr _ble_history_dirt
## _ble_history_edit 編集されたコマンド履歴項目を保持する。
## _ble_history の各項目と対応し、必ず同じ数・添字の要素を持つ。
## _ble_history_dirt は編集されたかどうかを保持する。
## _ble_history の各項目と対応し、変更のあったい要素にのみ値 1 を持つ。
##
## @var _ble_history_index
## 現在の履歴項目の番号
##
_ble_history=()
_ble_history_edit=()
_ble_history_dirt=()
_ble_history_index=0
## @var _ble_history_count
## 現在の履歴項目の総数
##
## これらの変数はコマンド履歴を対象としているときにのみ用いる。
##
_ble_history_count=
function ble/builtin/history/is-empty {
# Note #D1629: 以前の実装 (#D1120) では ! builtin history -p '!!' を使ってい
# たが、状況によって history -p で履歴項目が減少するのでサブシェルの中で評
# 価する必要がある。サブシェルの中に既にいる時にはこの fork は省略できると
# 考えていたが、サブシェルの中にいる場合でも後で履歴を使う為に履歴項目が変
# 化すると困るので、結局この手法だと常にサブシェルを起動する必要がある。代
# わりに history 1 の出力を確認する実装に変更する事にした。
! ble/util/assign.has-output 'builtin history 1'
}
## @fn ble/builtin/history/.check-timestamp-sigsegv status
## #D1831: Bash 4.4 以下では履歴ファイル (HISTFILE) に不正な timestamp
## (0x7FFFFFFF+1900年より後を指す巨大な unix time) が含まれていると segfault
## する。実際に SIGSEGV で終了した時に履歴ファイルを確認して問題の行番号を出
## 力する。
if ((_ble_bash>=50000)); then
function ble/builtin/history/.check-timestamp-sigsegv { :; }
else
function ble/builtin/history/.check-timestamp-sigsegv {
local stat=$1
((stat)) || return 0
local ret=11
ble/builtin/trap/sig#resolve SIGSEGV
((stat==128+ret)) || return 0
local msg="bash: SIGSEGV: suspicious timestamp in HISTFILE"
local histfile=${HISTFILE-}
if [[ -s $histfile ]]; then
msg="$msg='$histfile'"
local rex_broken_timestamp='^#[0-9]\{12\}'
ble/util/assign line 'ble/bin/grep -an "$rex_broken_timestamp" "$histfile"'
ble/string#split line : "$line"
[[ $line =~ ^[0-9]+$ ]] && msg="$msg (line $line)"
fi
if [[ ${_ble_edit_io_fname2-} ]]; then
ble/util/print $'\n'"$msg" >> "$_ble_edit_io_fname2"
else
ble/util/print "$msg" >&2
fi
}
fi
## @fn ble/builtin/history/.dump args...
## #D1831: timestamp に不正な値が含まれていた時のメッセージを検出する為、一時
## 的に LC_MESSAGES を設定して builtin history を呼び出します。更にこの状況で、
## bash-3.2 以下で無限ループになる問題を回避する為に、bash-3.2 以下では
## conditional-sync 経由で呼び出します。
if ((_ble_bash<40000)); then
# Note (#D1831): bash-3.2 以下では不正な timestamp が history に含まれている
# と無限ループになるので timeout=3000 で強制終了する。然し、実際に確認して
# みると、conditional-sync 経由で呼び出した時には無限ループにならずに
# timeout する前に SIGSEGV になる様である
function ble/builtin/history/.dump.proc {
local LC_ALL= LC_MESSAGES=C 2>/dev/null
builtin history "${args[@]}"
ble/util/unlocal LC_ALL LC_MESSAGES 2>/dev/null
}
function ble/builtin/history/.dump {
local -a args; args=("$@")
ble/util/conditional-sync \
ble/builtin/history/.dump.proc \
true 100 progressive-weight:timeout=3000:SIGKILL
local ext=$?
if ((ext==142)); then
printf 'ble.sh: timeout: builtin history %s' "$*" >&"$_ble_util_fd_stderr"
local ret=11
ble/builtin/trap/sig#resolve SIGSEGV
((ext=128+ret))
fi
ble/builtin/history/.check-timestamp-sigsegv "$ext"
return "$ext"
}
else
function ble/builtin/history/.dump {
local LC_ALL= LC_MESSAGES=C 2>/dev/null
builtin history "$@"
ble/util/unlocal LC_ALL LC_MESSAGES 2>/dev/null
}
fi
if ((_ble_bash<40000)); then
function ble/builtin/history/.get-min {
ble/util/assign-words min 'ble/builtin/history/.dump | head -1'
min=${min/'*'}
}
else
function ble/builtin/history/.get-min {
ble/util/assign-words min 'builtin history | head -1'
min=${min/'*'}
}
fi
function ble/builtin/history/.get-max {
ble/util/assign-words max 'builtin history 1'
max=${max/'*'}
}
#------------------------------------------------------------------------------
# initialize _ble_history @history.bash.load
## @var _ble_history_load_done
_ble_history_load_done=
# @hook history_reset_background (defined in def.sh)
function ble/history:bash/clear-background-load {
blehook/invoke history_reset_background
}
## @fn ble/history:bash/load
if ((_ble_bash>=40000)); then
# _ble_bash>=40000 で利用できる以下の機能に依存する
# ble/util/is-stdin-ready (via ble/util/idle/IS_IDLE)
# ble/util/mapfile
_ble_history_load_resume=0
_ble_history_load_bgpid=
# history > tmp
## @fn ble/history:bash/load/.background-initialize
## @var[in] arg_count
## @var[in] load_strategy
function ble/history:bash/load/.background-initialize {
if ble/builtin/history/is-empty; then
# Note: rcfile から呼び出すと history が未ロードなのでロードする。
#
# Note: 当初は親プロセスで history -n にした方が二度手間にならず効率的と考えたが
# 以下の様な問題が生じたので、やはりサブシェルの中で history -n する事にした。
#
# 問題1: bashrc の謎の遅延 (memo.txt#D0702)
# shopt -s histappend の状態で親シェルで history -n を呼び出すと、
# bashrc を抜けてから Bash 本体によるプロンプトが表示されて、
# 入力を受け付けられる様になる迄に、謎の遅延が発生する。
# 特に履歴項目の数が HISTSIZE の丁度半分より多い時に起こる様である。
#
# history -n を呼び出す瞬間だけ shopt -u histappend して
# 直後に shopt -s histappend とすると、遅延は解消するが、
# 実際の動作を観察すると histappend が無効になってしまっている。
#
# 対策として、一時的に HISTSIZE を大きくして bashrc を抜けて、
# 最初のユーザからの入力の時に HISTSIZE を復元する事にした。
# これで遅延は解消できる様である。
#
# 問題2: 履歴の数が倍加する問題 (memo.txt#D0732)
# 親シェルで history -n を実行すると、
# shopt -s histappend の状態だと履歴項目の数が2倍になってしまう。
# bashrc を抜ける直前から最初にユーザの入力を受けるまでに倍加する。
# bashrc から抜けた後に Readline が独自に履歴を読み取るのだろう。
# 一方で shopt -u histappend の状態だとシェルが動作している内は問題ないが、
# シェルを終了した時に2倍に .bash_history の内容が倍になってしまう。
#
# これの解決方法は不明。(HISTFILE 等を弄ったりすれば可能かもれないが試していない)
#
builtin history -n
fi
local HISTTIMEFORMAT=__ble_ext__
local -x INDEX_FILE=$history_indfile
local -x opt_source= opt_null=
if [[ $load_strategy == source ]]; then
opt_source=1
elif [[ $load_strategy == mapfile ]]; then
opt_null=1
fi
# from ble/util/writearray
if [[ ! $_ble_util_writearray_rawbytes ]]; then
local IFS=$_ble_term_IFS __ble_tmp; __ble_tmp=('\'{2,3}{0..7}{0..7})
builtin eval "local _ble_util_writearray_rawbytes=\$'${__ble_tmp[*]}'"
fi
local -x __ble_rawbytes=$_ble_util_writearray_rawbytes # used by _ble_bin_awk_libES
local -x fname_stderr=${_ble_edit_io_fname2:-}
local apos=\'
# 482ms for 37002 entries
ble/builtin/history/.dump ${arg_count:+"$arg_count"} | ble/bin/awk -v apos="$apos" -v arg_offset="$arg_offset" -v _ble_bash="$_ble_bash" '
'"$_ble_bin_awk_libES"'
BEGIN {
es_initialize();
INDEX_FILE = ENVIRON["INDEX_FILE"];
opt_null = ENVIRON["opt_null"];
opt_source = ENVIRON["opt_source"];
if (!opt_null && !opt_source)
printf("") > INDEX_FILE; # create file
fname_stderr = ENVIRON["fname_stderr"];
fname_stderr_count = 0;
n = 0;
hindex = arg_offset;
}
function flush_line() {
if (n < 1) return;
if (opt_null) {
if (t ~ /^eval -- \$'"$apos"'([^'"$apos"'\\]|\\.)*'"$apos"'$/)
t = es_unescape(substr(t, 11, length(t) - 11));
printf("%s%c", t, 0);
} else if (opt_source) {
if (t ~ /^eval -- \$'"$apos"'([^'"$apos"'\\]|\\.)*'"$apos"'$/)
t = es_unescape(substr(t, 11, length(t) - 11));
gsub(/'"$apos"'/, "'"$apos"'\\'"$apos$apos"'", t);
print "_ble_history[" hindex "]=" apos t apos;
} else {
if (n == 1) {
if (t ~ /^eval -- \$'"$apos"'([^'"$apos"'\\]|\\.)*'"$apos"'$/)
print hindex > INDEX_FILE;
} else {
gsub(/['"$apos"'\\]/, "\\\\&", t);
gsub(/\n/, "\\n", t);
print hindex > INDEX_FILE;
t = "eval -- $" apos t apos;
}
print t;
}
hindex++;
n = 0;
t = "";
}
function check_invalid_timestamp(line) {
if (line ~ /^ *[0-9]+\*? +.+: invalid timestamp/ && fname_stderr != "") {
sub(/^ *0*/, "bash: history !", line);
sub(/: invalid timestamp.*$/, ": invalid timestamp", line);
if (fname_stderr_count++ == 0)
print "" >> fname_stderr;
print line >> fname_stderr;
}
}
{
# Note: In Bash 5.0+, the error message of "invalid timestamp"
# goes into "stdout" instead of "stderr".
check_invalid_timestamp($0);
if (sub(/^ *[0-9]+\*? +(__ble_ext__|\?\?|.+: invalid timestamp)/, "", $0))
flush_line();
t = ++n == 1 ? $0 : t "\n" $0;
}
END { flush_line(); }
' >| "$history_tmpfile.part"
ble/builtin/history/.check-timestamp-sigsegv "${PIPESTATUS[0]}"
ble/bin/mv -f "$history_tmpfile.part" "$history_tmpfile"
}
## @fn ble/history:bash/load opts
## @param[in] opts
## async
## 非同期で読み取ります。
## append
## 現在読み込み済みの履歴情報に追加します。
## count=NUMBER
## 最近の NUMBER 項目だけ読み取ります。
function ble/history:bash/load {
local opts=$1
local opt_async=; [[ :$opts: == *:async:* ]] && opt_async=1
local load_strategy=mapfile
if [[ $OSTYPE == cygwin* || $OSTYPE == msys* ]]; then
load_strategy=source
elif ((_ble_bash<50200)); then
load_strategy=nlfix
fi
local arg_count= arg_offset=0
[[ :$opts: == *:append:* ]] &&
arg_offset=${#_ble_history[@]}
local rex=':count=([0-9]+):'; [[ :$opts: =~ $rex ]] && arg_count=${BASH_REMATCH[1]}
local history_tmpfile=$_ble_base_run/$$.history.load
local history_indfile=$_ble_base_run/$$.history.multiline-index
[[ $opt_async || :$opts: == *:init:* ]] || _ble_history_load_resume=0
[[ ! $opt_async ]] && ((_ble_history_load_resume<6)) &&
blehook/invoke history_message "loading history ..."
while :; do
case $_ble_history_load_resume in
# 42ms 履歴の読み込み
(0) # 履歴ファイル生成を Background で開始
if [[ $_ble_history_load_bgpid ]]; then
builtin kill -9 "$_ble_history_load_bgpid" &>/dev/null
_ble_history_load_bgpid=
fi
: >| "$history_tmpfile"
if [[ $opt_async ]]; then
_ble_history_load_bgpid=$(ble/util/nohup 'ble/history:bash/load/.background-initialize' print-bgpid)
function ble/history:bash/load/.background-initialize-completed {
local history_tmpfile=$_ble_base_run/$$.history.load
[[ -s $history_tmpfile ]] || ! builtin kill -0 "$_ble_history_load_bgpid"
} &>/dev/null
((_ble_history_load_resume++))
else
ble/history:bash/load/.background-initialize
((_ble_history_load_resume+=3))
fi ;;
# 515ms ble/history:bash/load/.background-initialize 待機
(1) if [[ $opt_async ]] && ble/util/is-running-in-idle; then
ble/util/idle.wait-condition ble/history:bash/load/.background-initialize-completed
((_ble_history_load_resume++))
return 147
fi
((_ble_history_load_resume++)) ;;
# Note: async でバックグラウンドプロセスを起動した後に、直接 (sync で)
# 呼び出された時、未だ処理が完了していなくても次のステップに進んでしまうので、
# 此処で条件が満たされるのを待つ (#D0745)
(2) while ! ble/history:bash/load/.background-initialize-completed; do
ble/util/msleep 50
[[ $opt_async ]] && ! ble/util/idle/IS_IDLE && return 148
done
((_ble_history_load_resume++)) ;;
# 47ms _ble_history 初期化 (37000項目)
(3) _ble_history_load_bgpid=
((arg_offset==0)) && _ble_history=()
if [[ $load_strategy == source ]]; then
# Cygwin #D0701 #D1605
# 620ms 99000項目 @ #D0701
source "$history_tmpfile"
elif [[ $load_strategy == nlfix ]]; then
builtin mapfile -O "$arg_offset" -t _ble_history < "$history_tmpfile"
else
builtin mapfile -O "$arg_offset" -t -d '' _ble_history < "$history_tmpfile"
fi
ble/builtin/history/erasedups/update-base
((_ble_history_load_resume++)) ;;
# 47ms _ble_history_edit 初期化 (37000項目)
(4) ((arg_offset==0)) && _ble_history_edit=()
if [[ $load_strategy == source ]]; then
# 504ms Cygwin (99000項目)
_ble_history_edit=("${_ble_history[@]}")
elif [[ $load_strategy == nlfix ]]; then
builtin mapfile -O "$arg_offset" -t _ble_history_edit < "$history_tmpfile"
else
builtin mapfile -O "$arg_offset" -t -d '' _ble_history_edit < "$history_tmpfile"
fi
: >| "$history_tmpfile"
if [[ $load_strategy != nlfix ]]; then
((_ble_history_load_resume+=3))
continue
else
((_ble_history_load_resume++))
fi ;;
# 11ms 複数行履歴修正 (107/37000項目)
(5) local -a indices_to_fix
ble/util/mapfile indices_to_fix < "$history_indfile"
local i rex='^eval -- \$'\''([^\'\'']|\\.)*'\''$'
for i in "${indices_to_fix[@]}"; do
[[ ${_ble_history[i]} =~ $rex ]] &&
builtin eval "_ble_history[i]=${_ble_history[i]:8}"
done
((_ble_history_load_resume++)) ;;
# 11ms 複数行履歴修正 (107/37000項目)
(6) local -a indices_to_fix
[[ ${indices_to_fix+set} ]] ||
ble/util/mapfile indices_to_fix < "$history_indfile"
local i
for i in "${indices_to_fix[@]}"; do
[[ ${_ble_history_edit[i]} =~ $rex ]] &&
builtin eval "_ble_history_edit[i]=${_ble_history_edit[i]:8}"
done
((_ble_history_load_resume++)) ;;
(7) [[ $opt_async ]] || blehook/invoke history_message
((_ble_history_load_resume++))
return 0 ;;
(*) return 1 ;;
esac
[[ $opt_async ]] && ! ble/util/idle/IS_IDLE && return 148
done
}
blehook history_reset_background!=_ble_history_load_resume=0
else
function ble/history:bash/load/.generate-source {
if ble/builtin/history/is-empty; then
# rcfile として起動すると history が未だロードされていない。
builtin history -n
fi
local HISTTIMEFORMAT=__ble_ext__
# 285ms for 16437 entries
local apos="'"
ble/builtin/history/.dump ${arg_count:+"$arg_count"} | ble/bin/awk -v apos="'" '
BEGIN { n = ""; }
#% # 何故かタイムスタンプがコマンドとして読み込まれてしまう
/^ *[0-9]+\*? +(__ble_ext__|\?\?)#[0-9]/ { next; }
#% # ※rcfile として読み込むと HISTTIMEFORMAT が ?? に化ける。
/^ *[0-9]+\*? +(__ble_ext__|\?\?|.+: invalid timestamp)/ {
if (n != "") {
n = "";
print " " apos t apos;
}
n = $1; t = "";
sub(/^ *[0-9]+\*? +(__ble_ext__|\?\?|.+: invalid timestamp)/, "", $0);
}
{
line = $0;
if (line ~ /^eval -- \$'"$apos"'([^'"$apos"'\\]|\\.)*'"$apos"'$/)
line = apos substr(line, 9) apos;
else
gsub(apos, apos "\\" apos apos, line);
#% # 対策 #D1239: bash-3.2 以前では ^A, ^? が ^A^A, ^A^? に化ける
gsub(/\001/, "'"$apos"'${_ble_term_SOH}'"$apos"'", line);
gsub(/\177/, "'"$apos"'${_ble_term_DEL}'"$apos"'", line);
#% # 対策 #D1270: MSYS2 で ^M を代入すると消える
gsub(/\015/, "'"$apos"'${_ble_term_CR}'"$apos"'", line);
t = t != "" ? t "\n" line : line;
}
END {
if (n != "") {
n = "";
print " " apos t apos;
}
}
'
}
function ble/history:bash/load {
local opts=$1
local opt_append=
[[ :$opts: == *:append:* ]] && opt_append=1
local arg_count= rex=':count=([0-9]+):'
[[ :$opts: =~ $rex ]] && arg_count=${BASH_REMATCH[1]}
blehook/invoke history_message "loading history..."
# * プロセス置換にしてもファイルに書き出しても大した違いはない。
# 270ms for 16437 entries (generate-source の時間は除く)
# * プロセス置換×source は bash-3 で動かない。eval に変更する。
local result=$(ble/history:bash/load/.generate-source)
local IFS=$_ble_term_IFS
if [[ $opt_append ]]; then
if ((_ble_bash>=30100)); then
builtin eval -- "_ble_history+=($result)"
builtin eval -- "_ble_history_edit+=($result)"
else
local -a A; builtin eval -- "A=($result)"
_ble_history=("${_ble_history[@]}" "${A[@]}")
_ble_history_edit=("${_ble_history[@]}" "${A[@]}")
fi
else
builtin eval -- "_ble_history=($result)"
_ble_history_edit=("${_ble_history[@]}")
fi
ble/builtin/history/erasedups/update-base
ble/util/unlocal IFS
blehook/invoke history_message
}
fi
function ble/history:bash/initialize {
[[ $_ble_history_load_done ]] && return 0
ble/history:bash/load "init:$@"; local ext=$?
((ext)) && return "$ext"
local old_count=$_ble_history_count new_count=${#_ble_history[@]}
_ble_history_load_done=1
_ble_history_count=$new_count
_ble_history_index=$_ble_history_count
ble/history/.update-position
# Note: 追加読み込みをした際に対応するデータを shift (history_share)
local delta=$((new_count-old_count))
((delta>0)) && blehook/invoke history_change insert "$old_count" "$delta"
}
#------------------------------------------------------------------------------
# Bash history resolve-multiline @history.bash.mlfix
if ((_ble_bash>=30100)); then
# Note: Bash 3.0 では history -s がまともに動かないので
# 複数行の履歴項目を builtin history に追加する方法が今の所不明である。
_ble_history_mlfix_done=
_ble_history_mlfix_resume=0
_ble_history_mlfix_bgpid=
## @fn ble/history:bash/resolve-multiline/.awk reason
##
## @param[in] reason
## 呼び出しの用途を指定する文字列です。
##
## resolve ... 初期化時の history 再構築
## history コマンドの出力形式で標準入力を解析します。
## 各行は '番号 HISTTIMEFORMATコマンド' の形式をしている。
##
## read ... history -r によるファイルからの読み出し
## 履歴ファイルの形式で標準入力を解析します。
## 各行は '#%s' または 'コマンド' の形式をしている。
## ble.sh では先頭行が '#%s' の時の複数行モードには対応しない。
##
## @var[in] tmpfile_base
function ble/history:bash/resolve-multiline/.awk {
if ((_ble_bash>=50000)); then
local -x epoch=$EPOCHSECONDS
elif ((_ble_bash>=40400)); then
local -x epoch
ble/util/strftime -v epoch %s
fi
local -x reason=$1
local apos=\'
ble/bin/awk -v apos="$apos" -v _ble_bash="$_ble_bash" '
BEGIN {
q = apos;
Q = apos "\\" apos apos;
reason = ENVIRON["reason"];
is_resolve = reason == "resolve";
TMPBASE = ENVIRON["tmpfile_base"];
filename_source = TMPBASE ".part";
if (is_resolve)
print "builtin history -c" > filename_source
entry_nline = 0;
entry_text = "";
entry_time = "";
if (_ble_bash >= 40400)
entry_time = ENVIRON["epoch"];
command_count = 0;
multiline_count = 0;
modification_count = 0;
read_section_count = 0;
}
function write_flush(_, i, filename_section, t, c) {
if (command_count == 0) return;
if (command_count >= 2 || entry_time) {
filename_section = TMPBASE "." read_section_count++ ".part";
for (i = 0; i < command_count; i++) {
t = command_time[i];
c = command_text[i];
if (t) print "#" t > filename_section;
print c > filename_section;
}
#% # Note: HISTTIMEFORMAT を指定するのは bash-4.4 で複数行読み取りを有効にする為。
print "HISTTIMEFORMAT=%s builtin history -r " filename_section > filename_source;
} else {
for (i = 0; i < command_count; i++) {
c = command_text[i];
gsub(/'"$apos"'/, Q, c);
print "builtin history -s -- " q c q > filename_source;
}
}
command_count = 0;
}
function write_complex(value) {
write_flush();
print "builtin history -s -- " value > filename_source;
}
function register_command(cmd) {
command_time[command_count] = entry_time;
command_text[command_count] = cmd;
command_count++;
}
function is_escaped_command(cmd) {
return cmd ~ /^eval -- \$'"$apos"'([^'"$apos"'\\]|\\[\\'"$apos"'nt])*'"$apos"'$/;
}
function unescape_command(cmd) {
cmd = substr(cmd, 11, length(cmd) - 11);
gsub(/\\\\/, "\\q", cmd);
gsub(/\\n/, "\n", cmd);
gsub(/\\t/, "\t", cmd);
gsub(/\\'"$apos"'/, "'"$apos"'", cmd);
gsub(/\\q/, "\\", cmd);
return cmd;
}
function register_escaped_command(cmd) {
multiline_count++;
modification_count++;
if (_ble_bash >= 40400) {
register_command(unescape_command(cmd));
} else {
write_complex(substr(cmd, 9));
}
}
function register_multiline_command(cmd) {
multiline_count++;
if (_ble_bash >= 40040) {
register_command(cmd);
} else {
gsub(/'"$apos"'/, Q, cmd);
write_complex(q cmd q);
}
}
function flush_entry() {
if (entry_nline < 1) return;
if (is_escaped_command(entry_text)) {
register_escaped_command(entry_text)
} else if (entry_nline > 1) {
register_multiline_command(entry_text);
} else {
register_command(entry_text);
}
entry_nline = 0;
entry_text = "";
}
function save_timestamp(line) {
if (is_resolve) {
# "history" format
if (line ~ /^ *[0-9]+\*? +__ble_time_[0-9]+__/) {
sub(/^ *[0-9]+\*? +__ble_time_/, "", line);
sub(/__.*$/, "", line);
entry_time = line;
}
} else {
# "history -w" format
if (line ~ /^#[0-9]/) {
sub(/^#/, "", line);
sub(/[^0-9].*$/, "", line);
entry_time = line;
}
}
}
{
if (is_resolve) {
save_timestamp($0);
if (sub(/^ *[0-9]+\*? +(__ble_time_[0-9]+__|\?\?|.+: invalid timestamp)/, "", $0))
flush_entry();
entry_text = ++entry_nline == 1 ? $0 : entry_text "\n" $0;
} else {
if ($0 ~ /^#[0-9]/) {
save_timestamp($0);
next;
} else {
flush_entry();
entry_text = $0;
entry_nline = 1;
}
}
}
END {
flush_entry();
write_flush();
if (is_resolve)
print "builtin history -a /dev/null" > filename_source
print "multiline_count=" multiline_count;
print "modification_count=" modification_count;
}
'
}
## @fn ble/history:bash/resolve-multiline/.cleanup
## @var[in] tmpfile_base
function ble/history:bash/resolve-multiline/.cleanup {
local file
for file in "$tmpfile_base".*; do : >| "$file"; done
}
function ble/history:bash/resolve-multiline/.worker {
local HISTTIMEFORMAT=__ble_time_%s__
local -x tmpfile_base=$_ble_base_run/$$.history.mlfix
local multiline_count=0 modification_count=0
builtin eval -- "$(ble/builtin/history/.dump | ble/history:bash/resolve-multiline/.awk resolve 2>/dev/null)"
if ((modification_count)); then
ble/bin/mv -f "$tmpfile_base.part" "$tmpfile_base.sh"
else
ble/util/print : >| "$tmpfile_base.sh"
fi
}
function ble/history:bash/resolve-multiline/.load {
local tmpfile_base=$_ble_base_run/$$.history.mlfix
local HISTCONTROL= HISTSIZE= HISTIGNORE=
source "$tmpfile_base.sh"
ble/history:bash/resolve-multiline/.cleanup
}
## @fn ble/history:bash/resolve-multiline opts
## @param[in] opts
## async
## 非同期で読み取ります。
function ble/history:bash/resolve-multiline.impl {
local opts=$1
local opt_async=; [[ :$opts: == *:async:* ]] && opt_async=1
local history_tmpfile=$_ble_base_run/$$.history.mlfix.sh
[[ $opt_async || :$opts: == *:init:* ]] || _ble_history_mlfix_resume=0
[[ ! $opt_async ]] && ((_ble_history_mlfix_resume<=4)) &&
blehook/invoke history_message "resolving multiline history ..."
while :; do
case $_ble_history_mlfix_resume in
(0) if [[ $opt_async ]] && ble/builtin/history/is-empty; then
# Note: bashrc の中では resolve-multiline はしない。
# 一旦 bash が履歴を読み込んだ後に再度試す。
ble/util/idle.wait-user-input
((_ble_history_mlfix_resume++))
return 147
fi
((_ble_history_mlfix_resume++)) ;;
(1) # 履歴ファイル生成を Background で開始
if [[ $_ble_history_mlfix_bgpid ]]; then
builtin kill -9 "$_ble_history_mlfix_bgpid" &>/dev/null
_ble_history_mlfix_bgpid=
fi
: >| "$history_tmpfile"
if [[ $opt_async ]]; then
_ble_history_mlfix_bgpid=$(ble/util/nohup 'ble/history:bash/resolve-multiline/.worker' print-bgpid)
function ble/history:bash/resolve-multiline/.worker-completed {
local history_tmpfile=$_ble_base_run/$$.history.mlfix.sh
[[ -s $history_tmpfile ]] || ! builtin kill -0 "$_ble_history_mlfix_bgpid"
} &>/dev/null
((_ble_history_mlfix_resume++))
else
ble/history:bash/resolve-multiline/.worker
((_ble_history_mlfix_resume+=3))
fi ;;
(2) if [[ $opt_async ]] && ble/util/is-running-in-idle; then
ble/util/idle.wait-condition ble/history:bash/resolve-multiline/.worker-completed
((_ble_history_mlfix_resume++))
return 147
fi
((_ble_history_mlfix_resume++)) ;;
# Note: async でバックグラウンドプロセスを起動した後に、直接 (sync で)
# 呼び出された時、未だ処理が完了していなくても次のステップに進んでしまうので、
# 此処で条件が満たされるのを待つ (#D0745)
(3) while ! ble/history:bash/resolve-multiline/.worker-completed; do
ble/util/msleep 50
[[ $opt_async ]] && ! ble/util/idle/IS_IDLE && return 148
done
((_ble_history_mlfix_resume++)) ;;
# 80ms history 再構築 (47000項目)
(4) _ble_history_mlfix_bgpid=
ble/history:bash/resolve-multiline/.load
[[ $opt_async ]] || blehook/invoke history_message
((_ble_history_mlfix_resume++))
return 0 ;;
(*) return 1 ;;
esac
[[ $opt_async ]] && ! ble/util/idle/IS_IDLE && return 148
done
}
function ble/history:bash/resolve-multiline {
[[ $_ble_history_mlfix_done ]] && return 0
if [[ $1 == sync ]]; then
((_ble_bash>=40000)) && [[ $BASHPID != $$ ]] && return 0
ble/builtin/history/is-empty && return 0
fi
ble/history:bash/resolve-multiline.impl "$@"; local ext=$?
((ext)) && return "$ext"
_ble_history_mlfix_done=1
return 0
}
((_ble_bash>=40000)) &&
ble/util/idle.push 'ble/history:bash/resolve-multiline async'
blehook history_reset_background!=_ble_history_mlfix_resume=0
function ble/history:bash/resolve-multiline/readfile {
local filename=$1
local -x tmpfile_base=$_ble_base_run/$$.history.read
ble/history:bash/resolve-multiline/.awk read < "$filename" &>/dev/null
source "$tmpfile_base.part"
ble/history:bash/resolve-multiline/.cleanup
}
else
function ble/history:bash/resolve-multiline/readfile { builtin history -r "$filename"; }
function ble/history:bash/resolve-multiline { ((1)); }
fi
# Note: 複数行コマンドは eval -- $'' の形に変換して
# 書き込みたいので自前で処理する。
function ble/history:bash/unload.hook {
ble/util/is-running-in-subshell && return 0
if shopt -q histappend &>/dev/null; then
ble/builtin/history -a
else
ble/builtin/history -w
fi
}
blehook unload!=ble/history:bash/unload.hook
function ble/history:bash/reset {
if ((_ble_bash>=40000)); then
_ble_history_load_done=
ble/history:bash/clear-background-load
ble/util/idle.push 'ble/history:bash/initialize async'
elif ((_ble_bash>=30100)) && [[ $bleopt_history_lazyload ]]; then
_ble_history_load_done=
else
# * history-load は initialize ではなく attach で行う。
# detach してから attach する間に
# 追加されたエントリがあるかもしれないので。
# * bash-3.0 では history -s は最近の履歴項目を置換するだけなので、
# 履歴項目は全て自分で処理する必要がある。
# つまり、初めから load しておかなければならない。
ble/history:bash/initialize
fi
}
#------------------------------------------------------------------------------
# ble/builtin/history @history.bash.builtin
function ble/builtin/history/.touch-histfile {
local touch=$_ble_base_run/$$.history.touch
: >| "$touch"
}
# in def.sh
# @hook history_change
# Note: #D1126 一度置き換えたら戻せない。二回は初期化しない。
if [[ ! ${_ble_builtin_history_initialized+set} ]]; then
_ble_builtin_history_initialized=
_ble_builtin_history_histnew_count=0
_ble_builtin_history_histapp_count=0
## @var _ble_builtin_history_wskip
## 履歴のどの行までがファイルに書き込み済みの行かを管理する変数です。
## @var _ble_builtin_history_prevmax
## 最後の ble/builtin/history における builtin history の項目番号
_ble_builtin_history_wskip=0
_ble_builtin_history_prevmax=0
##
## 以下の関数は各ファイルに関して何処まで読み取ったかを記録します。
##
## @fn ble/builtin/history/.get-rskip file
## @param[in] file
## @var[out] rskip
## @fn ble/builtin/history/.set-rskip file value
## @param[in] file
## @fn ble/builtin/history/.add-rskip file delta
## @param[in] file
##
builtin eval -- "${_ble_util_gdict_declare//NAME/_ble_builtin_history_rskip_dict}"
function ble/builtin/history/.get-rskip {
local file=$1 ret
ble/gdict#get _ble_builtin_history_rskip_dict "$file"
rskip=$ret
}
function ble/builtin/history/.set-rskip {
local file=$1
ble/gdict#set _ble_builtin_history_rskip_dict "$file" "$2"
}
function ble/builtin/history/.add-rskip {
local file=$1 ret
# Note: 当初 ((dict[\$file]+=$2)) の形式を使っていたが、これは
# shopt -s assoc_expand_once の場合に動作しない事が判明したので、
# 一旦、別の変数で計算してから代入する事にする。
ble/gdict#get _ble_builtin_history_rskip_dict "$file"
((ret+=$2))
ble/gdict#set _ble_builtin_history_rskip_dict "$file" "$ret"
}
fi
## @fn ble/builtin/history/.initialize opts
## @param[in] opts
## skip0 ... 履歴が一件も読み込まれていない時はスキップします。
function ble/builtin/history/.initialize {
[[ $_ble_builtin_history_initialized ]] && return 0
local line; ble/util/assign line 'builtin history 1'
[[ ! $line && :$1: == *:skip0:* ]] && return 1
_ble_builtin_history_initialized=1
local histnew=$_ble_base_run/$$.history.new
: >| "$histnew"
if [[ $line ]]; then
# Note: #D1126 ble.sh ロード前に追加された履歴項目があれば保存する。
local histini=$_ble_base_run/$$.history.ini
local histapp=$_ble_base_run/$$.history.app
HISTTIMEFORMAT=1 builtin history -a "$histini"
if [[ -s $histini ]]; then
ble/bin/sed '/^#\([0-9].*\)/{s// 0 __ble_time_\1__/;N;s/\n//;}' "$histini" >> "$histapp"
: >| "$histini"
fi
else
# 履歴が読み込まれていなければ強制的に読み込む
ble/builtin/history/option:r
fi
local histfile=${HISTFILE-} rskip=0
[[ -e $histfile ]] && rskip=$(ble/bin/wc -l "$histfile" 2>/dev/null)
ble/string#split-words rskip "$rskip"
local min; ble/builtin/history/.get-min
local max; ble/builtin/history/.get-max
((max&&max-min+1<rskip&&(rskip=max-min+1)))
_ble_builtin_history_wskip=$max
_ble_builtin_history_prevmax=$max
ble/builtin/history/.set-rskip "$histfile" "$rskip"
return 0
}
## @fn ble/builtin/history/.delete-range beg end
function ble/builtin/history/.delete-range {
local beg=$1 end=${2:-$1}
if ((_ble_bash>=50000&&beg<end)); then
builtin history -d "$beg-$end"
else
local i
for ((i=end;i>=beg;i--)); do
builtin history -d "$i"
done
fi
}
## @fn ble/builtin/history/.check-uncontrolled-change [filename opts]
## ble/builtin/history の管理外で履歴が読み込まれた時、
## それを history -a の対象から除外する為に wskip を更新する。
function ble/builtin/history/.check-uncontrolled-change {
[[ $_ble_decode_bind_state == none ]] && return 0
local filename=${1-} opts=${2-} prevmax=$_ble_builtin_history_prevmax
local max; ble/builtin/history/.get-max
if ((max!=prevmax)); then
if [[ $filename && :$opts: == *:append:* ]] && ((_ble_builtin_history_wskip<prevmax&&prevmax<max)); then
# 最後に管理下で追加された事を確認した範囲 wskip..prevmax を書き込む。
(
ble/builtin/history/.delete-range "$((prevmax+1))" "$max"
ble/builtin/history/.write "$filename" "$_ble_builtin_history_wskip" append:fetch
)
fi
_ble_builtin_history_wskip=$max
_ble_builtin_history_prevmax=$max
fi
}
## @fn ble/builtin/history/.load-recent-entries count
## history の最新 count 件を配列 _ble_history に読み込みます。
function ble/builtin/history/.load-recent-entries {
[[ $_ble_decode_bind_state == none ]] && return 0