diff options
author | June McEnroe <june@causal.agency> | 2020-12-23 14:19:58 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-01-21 22:03:05 -0500 |
commit | dd7957cd1ccfe8df9e3ef12c233c91e021f75d1b (patch) | |
tree | 47ffec4aa37db684a38059890b59941934fd939f /src/parser.c | |
parent | dash: Bind libedit's secret filename completion function (diff) | |
download | dash-dd7957cd1ccfe8df9e3ef12c233c91e021f75d1b.tar.gz dash-dd7957cd1ccfe8df9e3ef12c233c91e021f75d1b.zip |
dash: Cache the expanded prompt for editline
Previously, the prompt would be expanded every time editline called the getprompt callback. I think the code may have been written assuming that editline only calls getprompt once per prompt, but it may actually call it many times, for instance every time you type backspace. This results not only in slower editing from expanding complex prompts repeatedly, it also consumes more and more stack memory each time getprompt is called. This can be seen by setting PS1 to some command substitution, typing many characters at the prompt, then holding backspace and observing memory usage. Thankfully all this stack memory is freed between prompts by the stackmark calls around el_gets. This change causes prompt expansion to always happen in the setprompt call, as it would when editline is disabled, and a cached copy of the prompt is saved for getprompt to return every time editline calls it. Since getprompt is no longer doing expansion, the stackmark calls surrounding el_gets can be removed.
Diffstat (limited to 'src/parser.c')
-rw-r--r-- | src/parser.c | 66 |
1 files changed, 36 insertions, 30 deletions
diff --git a/src/parser.c b/src/parser.c index fc9af07..3cebb25 100644 --- a/src/parser.c +++ b/src/parser.c @@ -107,6 +107,9 @@ struct heredoc *heredoc; int quoteflag; /* set if (part of) last token was quoted */ +static char *promptcache; + + STATIC union node *list(int); STATIC union node *andor(void); STATIC union node *pipeline(void); @@ -1544,27 +1547,6 @@ synerror(const char *msg) /* NOTREACHED */ } -STATIC void -setprompt(int which) -{ - struct stackmark smark; - int show; - - needprompt = 0; - whichprompt = which; - -#ifdef SMALL - show = 1; -#else - show = !el; -#endif - if (show) { - pushstackmark(&smark, stackblocksize()); - out2str(getprompt(NULL)); - popstackmark(&smark); - } -} - const char * expandstr(const char *ps) { @@ -1614,22 +1596,25 @@ out: return result; } -/* - * called by editline -- any expansions to the prompt - * should be added here. - */ -const char * -getprompt(void *unused) +STATIC void +setprompt(int which) { + struct stackmark smark; const char *prompt; + int show; + + needprompt = 0; + whichprompt = which; switch (whichprompt) { default: #ifdef DEBUG - return "<internal prompt error>"; + prompt = "<internal prompt error>"; + break; #endif case 0: - return nullstr; + prompt = nullstr; + break; case 1: prompt = ps1val(); break; @@ -1638,7 +1623,28 @@ getprompt(void *unused) break; } - return expandstr(prompt); +#ifdef SMALL + show = 1; +#else + show = !el; +#endif + pushstackmark(&smark, stackblocksize()); + if (show) { + out2str(expandstr(prompt)); + } else { + free(promptcache); + promptcache = savestr(expandstr(prompt)); + } + popstackmark(&smark); +} + +/* + * called by editline -- return the cached prompt expansion. + */ +const char * +getprompt(void *unused) +{ + return promptcache; } const char *const * |