mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-29 05:03:46 +08:00
39 lines
1.7 KiB
Fish
39 lines
1.7 KiB
Fish
|
function fish_job_summary -a job_id cmd_line signal_or_end_name signal_desc proc_pid proc_name
|
||
|
# job_id: ID of the job that stopped/terminated/ended.
|
||
|
# cmd_line: The command line of the job.
|
||
|
# signal_or_end_name: If terminated by signal, the name of the signal (e.g. SIGTERM).
|
||
|
# If ended, the string "ENDED". If stopped, the string "STOPPED".
|
||
|
# signal_desc: A description of the signal (e.g. "Polite quite request").
|
||
|
# Not provided if the job stopped or ended without a signal.
|
||
|
# If the job has more than one process:
|
||
|
# proc_pid: the pid of the process affected.
|
||
|
# proc_name: the name of that process.
|
||
|
# If the job has only one process, these two arguments will not be provided.
|
||
|
|
||
|
set -l ellipsis '...'
|
||
|
if string match -iqr 'utf.?8' -- $LANG
|
||
|
set ellipsis \u2026
|
||
|
end
|
||
|
|
||
|
set -l max_cmd_len 32
|
||
|
if test (string length $cmd_line) -gt $max_cmd_len
|
||
|
set -l truncated_len (math $max_cmd_len - (string length $ellipsis))
|
||
|
set cmd_line (string trim (string sub -l $truncated_len $cmd_line))$ellipsis
|
||
|
end
|
||
|
|
||
|
switch $signal_or_end_name
|
||
|
case "STOPPED"
|
||
|
printf ( _ "fish: Job %s, '%s' has stopped\n" ) $job_id $cmd_line
|
||
|
case "ENDED"
|
||
|
printf ( _ "fish: Job %s, '%s' has ended\n" ) $job_id $cmd_line
|
||
|
case 'SIG*'
|
||
|
if test -n "$proc_pid"
|
||
|
printf ( _ "fish: Process %s, '%s' from job %s, '%s' terminated by signal %s (%s)\n" ) \
|
||
|
$proc_pid $proc_name $job_id $cmd_line $signal_or_end_name $signal_desc
|
||
|
else
|
||
|
printf ( _ "fish: Job %s, '%s' terminated by signal %s (%s)\n" ) \
|
||
|
$job_id $cmd_line $signal_or_end_name $signal_desc
|
||
|
end
|
||
|
end >&2
|
||
|
end
|