GNU bug report logs -
#35129
Unsupported escape sequences for progress in shell
Previous Next
To reply to this bug, email your comments to 35129 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#35129
; Package
emacs
.
(Wed, 03 Apr 2019 20:56:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Juri Linkov <juri <at> linkov.net>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Wed, 03 Apr 2019 20:56:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Some escape sequences are unhandled in shell mode.
Most often they appear when running `apt install'
that shows its progress bar that is supposed to stay
on the same line, but spreads over several lines,
so the output looks like a mess (where ^[7 and ^[8
are escape sequences currently still unhandled):
debconf: unable to initialize frontend: Dialog
debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
debconf: falling back to frontend: Readline
^[7Progress: [ 0%] [................................................................................................] ^[8
^[7Progress: [ 6%] [######..........................................................................................] ^[8
^[7Progress: [ 13%] [############....................................................................................] ^[8
^[7Progress: [ 19%] [##################..............................................................................] ^[8
^[7Progress: [ 25%] [########################........................................................................] ^[8
^[7Progress: [ 31%] [##############################..................................................................] ^[8
^[7Progress: [ 38%] [####################################............................................................] ^[8
^[7Progress: [ 44%] [##########################################......................................................] ^[8
^[7Progress: [ 50%] [################################################................................................] ^[8
^[7Progress: [ 56%] [######################################################..........................................] ^[8
^[7Progress: [ 63%] [############################################################....................................] ^[8
^[7Progress: [ 69%] [##################################################################..............................] ^[8
^[7Progress: [ 75%] [########################################################################........................] ^[8
^[7Progress: [ 81%] [##############################################################################..................] ^[8
^[7Progress: [ 88%] [####################################################################################............] ^[8
^[7Progress: [ 94%] [##########################################################################################......] ^[8
I'm making this report because escape sequences for colors are handled fine,
and visually these indicators have the green background.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#35129
; Package
emacs
.
(Thu, 04 Apr 2019 21:07:03 GMT)
Full text and
rfc822 format available.
Message #8 received at 35129 <at> debbugs.gnu.org (full text, mbox):
> Some escape sequences are unhandled in shell mode.
> Most often they appear when running `apt install'
> that shows its progress bar that is supposed to stay
> on the same line, but spreads over several lines,
> so the output looks like a mess (where ^[7 and ^[8
> are escape sequences currently still unhandled):
After more research, I found an interesting post
https://oremacs.com/2019/03/24/shell-apt/
that proposes a promising way to handle
these escape sequences.
So maybe this should be customizable?
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#35129
; Package
emacs
.
(Fri, 05 Apr 2019 07:10:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 35129 <at> debbugs.gnu.org (full text, mbox):
Juri Linkov <juri <at> linkov.net> writes:
Hi Juri,
>> Some escape sequences are unhandled in shell mode.
>> Most often they appear when running `apt install'
>> that shows its progress bar that is supposed to stay
>> on the same line, but spreads over several lines,
>> so the output looks like a mess (where ^[7 and ^[8
>> are escape sequences currently still unhandled):
>
> After more research, I found an interesting post
> https://oremacs.com/2019/03/24/shell-apt/
> that proposes a promising way to handle
> these escape sequences.
>
> So maybe this should be customizable?
Looks interesting. However, we have `progress-reporter'. The code from
above shall be made available via this.
This would also improve Tramp; there are requests to integrate the
progress reporter from external commands.
Best regards, Michael.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#35129
; Package
emacs
.
(Sat, 06 Apr 2019 21:47:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 35129 <at> debbugs.gnu.org (full text, mbox):
>>> Some escape sequences are unhandled in shell mode.
>>> Most often they appear when running `apt install'
>>> that shows its progress bar that is supposed to stay
>>> on the same line, but spreads over several lines,
>>> so the output looks like a mess (where ^[7 and ^[8
>>> are escape sequences currently still unhandled):
>>
>> After more research, I found an interesting post
>> https://oremacs.com/2019/03/24/shell-apt/
>> that proposes a promising way to handle
>> these escape sequences.
>>
>> So maybe this should be customizable?
>
> Looks interesting. However, we have `progress-reporter'. The code from
> above shall be made available via this.
I'm not sure if we can provide min-value/max-value for
make-progress-reporter. If not, then it uses spinning/pulsing.
It seems progress-reporter doesn't support arbitrary strings
such as that come from underlying process like ^[7Progress: [ 0%]^[8
> This would also improve Tramp; there are requests to integrate the
> progress reporter from external commands.
Could you show an example of a progress reporter from an external command.
Do they use arbitrary strings?
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#35129
; Package
emacs
.
(Sun, 07 Apr 2019 08:47:01 GMT)
Full text and
rfc822 format available.
Message #17 received at 35129 <at> debbugs.gnu.org (full text, mbox):
Juri Linkov <juri <at> linkov.net> writes:
Hi Juri,
>> Looks interesting. However, we have `progress-reporter'. The code from
>> above shall be made available via this.
>
> I'm not sure if we can provide min-value/max-value for
> make-progress-reporter. If not, then it uses spinning/pulsing.
> It seems progress-reporter doesn't support arbitrary strings
> such as that come from underlying process like ^[7Progress: [ 0%]^[8
progress-reporter should be improved to accept also strings like "45%"
to be displayed literally.
>> This would also improve Tramp; there are requests to integrate the
>> progress reporter from external commands.
>
> Could you show an example of a progress reporter from an external command.
> Do they use arbitrary strings?
Some scp or pscp versions do it. For example:
--8<---------------cut here---------------start------------->8---
$ pscp -v localhost:/net/ford/Multimedia/Eigene\ Videos/Videos/20150829_145255.mp4 /tmp/foo
[...]
foo | 203369 kB | 5810.6 kB/s | ETA: 00:00:00 | 84%
--8<---------------cut here---------------end--------------->8---
Best regards, Michael.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#35129
; Package
emacs
.
(Sun, 07 Apr 2019 20:56:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 35129 <at> debbugs.gnu.org (full text, mbox):
>>> Looks interesting. However, we have `progress-reporter'. The code from
>>> above shall be made available via this.
>>
>> I'm not sure if we can provide min-value/max-value for
>> make-progress-reporter. If not, then it uses spinning/pulsing.
>> It seems progress-reporter doesn't support arbitrary strings
>> such as that come from underlying process like ^[7Progress: [ 0%]^[8
>
> progress-reporter should be improved to accept also strings like "45%"
> to be displayed literally.
Another problem is that there is no clear moment to start/stop
progress-reporter with calls to make-progress-reporter and
progress-reporter-done.
>>> This would also improve Tramp; there are requests to integrate the
>>> progress reporter from external commands.
>>
>> Could you show an example of a progress reporter from an external command.
>> Do they use arbitrary strings?
>
> Some scp or pscp versions do it. For example:
>
> $ pscp -v localhost:/net/ford/Multimedia/Eigene\ Videos/Videos/20150829_145255.mp4 /tmp/foo
> [...]
> foo | 203369 kB | 5810.6 kB/s | ETA: 00:00:00 | 84%
Progress on copying large files would be needed for local file operations
as well.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#35129
; Package
emacs
.
(Mon, 08 Apr 2019 07:37:03 GMT)
Full text and
rfc822 format available.
Message #23 received at 35129 <at> debbugs.gnu.org (full text, mbox):
Juri Linkov <juri <at> linkov.net> writes:
Hi Juri,
>>> I'm not sure if we can provide min-value/max-value for
>>> make-progress-reporter. If not, then it uses spinning/pulsing.
>>> It seems progress-reporter doesn't support arbitrary strings
>>> such as that come from underlying process like ^[7Progress: [ 0%]^[8
>>
>> progress-reporter should be improved to accept also strings like "45%"
>> to be displayed literally.
>
> Another problem is that there is no clear moment to start/stop
> progress-reporter with calls to make-progress-reporter and
> progress-reporter-done.
At least for my use case, calling external p?scp commands in Tramp,
there is no problem. But in general you might be right.
>>> Could you show an example of a progress reporter from an external command.
>>> Do they use arbitrary strings?
>>
>> Some scp or pscp versions do it. For example:
>>
>> $ pscp -v localhost:/net/ford/Multimedia/Eigene\ Videos/Videos/20150829_145255.mp4 /tmp/foo
>> [...]
>> foo | 203369 kB | 5810.6 kB/s | ETA: 00:00:00 | 84%
>
> Progress on copying large files would be needed for local file operations
> as well.
Yes. But local copying is not implemented via external commands; this
needs another progress reporter call.
Best regards, Michael.
Severity set to 'wishlist' from 'normal'
Request was from
Noam Postavsky <npostavs <at> gmail.com>
to
control <at> debbugs.gnu.org
.
(Wed, 10 Apr 2019 00:33:03 GMT)
Full text and
rfc822 format available.
This bug report was last modified 6 years and 68 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.