mirror of
				https://git.sr.ht/~rjarry/aerc
				synced 2025-10-31 01:30:50 +01:00 
			
		
		
		
	 51fd25c0f1
			
		
	
	
		51fd25c0f1
		
	
	
	
	
		
			
			When reloading the configuration with :reload, global variables in the
config package are reset to their startup values and then, the config is
parsed from disk. While the parsing is done, these variables are
temporarily in an inconsistent and possibly invalid state.
When commands are executed interactively from aerc, they are handled by
the main goroutine which also deals with UI rendering. No UI render will
be done while :reload is in progress.
However, the IPC socket handler runs in an independent goroutine. This
has the unfortunate side effect to let the UI goroutine to run while
config parsing is in progress and causes crashes:
[signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x6bb142]
goroutine 1 [running]:
git.sr.ht/~rjarry/aerc/lib/log.PanicHandler()
	lib/log/panic-logger.go:51 +0x6cf
panic({0xc1d960?, 0x134a6e0?})
	/usr/lib/go/src/runtime/panic.go:783 +0x132
git.sr.ht/~rjarry/aerc/config.(*StyleConf).getStyle(0xc00038b908?, 0x4206b7?)
	config/style.go:386 +0x42
git.sr.ht/~rjarry/aerc/config.StyleSet.Get({0x0, 0x0, 0x0, {0x0, 0x0, 0x0}}, 0x421a65?, 0x0)
	config/style.go:408 +0x8b
git.sr.ht/~rjarry/aerc/config.(*UIConfig).GetStyle(...)
	config/ui.go:379
git.sr.ht/~rjarry/aerc/lib/ui.(*TabStrip).Draw(0xc000314700, 0xc000192230)
	lib/ui/tab.go:378 +0x15b
git.sr.ht/~rjarry/aerc/lib/ui.(*Grid).Draw(0xc000186fc0, 0xc0002c25f0)
	lib/ui/grid.go:126 +0x28e
git.sr.ht/~rjarry/aerc/app.(*Aerc).Draw(0x14b9f00, 0xc0002c25f0)
	app/aerc.go:192 +0x1fe
git.sr.ht/~rjarry/aerc/lib/ui.Render()
	lib/ui/ui.go:155 +0x16b
main.main()
	main.go:310 +0x997
Make the reload operation safe by changing how config objects are
exposed and updated. Change all objects to be atomic pointers. Expose
public functions to access their value atomically. Only update their
value after a complete and successful config parse. This way the UI
thread will always have access to a valid configuration.
NB: The account configuration is not included in this change since it
cannot be reloaded.
Fixes: https://todo.sr.ht/~rjarry/aerc/319
Reported-by: Anachron <gith@cron.world>
Signed-off-by: Robin Jarry <robin@jarry.cc>
		
	
			
		
			
				
	
	
		
			165 lines
		
	
	
	
		
			4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			165 lines
		
	
	
	
		
			4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package app
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"sync"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/mattn/go-runewidth"
 | |
| 
 | |
| 	"git.sr.ht/~rjarry/aerc/config"
 | |
| 	"git.sr.ht/~rjarry/aerc/lib/log"
 | |
| 	"git.sr.ht/~rjarry/aerc/lib/state"
 | |
| 	"git.sr.ht/~rjarry/aerc/lib/templates"
 | |
| 	"git.sr.ht/~rjarry/aerc/lib/ui"
 | |
| 	"git.sr.ht/~rockorager/vaxis"
 | |
| )
 | |
| 
 | |
| type StatusLine struct {
 | |
| 	sync.Mutex
 | |
| 	stack []*StatusMessage
 | |
| 	acct  *AccountView
 | |
| 	err   string
 | |
| }
 | |
| 
 | |
| type StatusMessage struct {
 | |
| 	style   vaxis.Style
 | |
| 	message string
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) Invalidate() {
 | |
| 	ui.Invalidate()
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) Draw(ctx *ui.Context) {
 | |
| 	status.Lock()
 | |
| 	defer status.Unlock()
 | |
| 	style := status.uiConfig().GetStyle(config.STYLE_STATUSLINE_DEFAULT)
 | |
| 	ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', style)
 | |
| 	switch {
 | |
| 	case len(status.stack) != 0:
 | |
| 		line := status.stack[len(status.stack)-1]
 | |
| 		msg := runewidth.Truncate(line.message, ctx.Width(), "")
 | |
| 		msg = runewidth.FillRight(msg, ctx.Width())
 | |
| 		ctx.Printf(0, 0, line.style, "%s", msg)
 | |
| 	case status.err != "":
 | |
| 		msg := runewidth.Truncate(status.err, ctx.Width(), "")
 | |
| 		msg = runewidth.FillRight(msg, ctx.Width())
 | |
| 		style := status.uiConfig().GetStyle(config.STYLE_STATUSLINE_ERROR)
 | |
| 		ctx.Printf(0, 0, style, "%s", msg)
 | |
| 	case status.acct != nil:
 | |
| 		data := state.NewDataSetter()
 | |
| 		data.SetPendingKeys(aerc.pendingKeys)
 | |
| 		data.SetState(&status.acct.state)
 | |
| 		data.SetAccount(status.acct.acct)
 | |
| 		data.SetFolder(status.acct.Directories().SelectedDirectory())
 | |
| 		msg, _ := status.acct.SelectedMessage()
 | |
| 		data.SetInfo(msg, 0, false)
 | |
| 		data.SetRUE(status.acct.dirlist.List(), status.acct.dirlist.GetRUECount)
 | |
| 		if store := status.acct.Store(); store != nil {
 | |
| 			data.SetVisual(store.Marker().IsVisualMark())
 | |
| 		}
 | |
| 		table := ui.NewTable(
 | |
| 			ctx.Height(),
 | |
| 			config.Statusline().StatusColumns,
 | |
| 			config.Statusline().ColumnSeparator,
 | |
| 			nil,
 | |
| 			func(*ui.Table, int) vaxis.Style { return style },
 | |
| 		)
 | |
| 		var buf bytes.Buffer
 | |
| 		cells := make([]string, len(table.Columns))
 | |
| 		for c, col := range table.Columns {
 | |
| 			err := templates.Render(col.Def.Template, &buf,
 | |
| 				data.Data())
 | |
| 			if err != nil {
 | |
| 				log.Errorf("%s", err)
 | |
| 				cells[c] = err.Error()
 | |
| 			} else {
 | |
| 				cells[c] = buf.String()
 | |
| 			}
 | |
| 			buf.Reset()
 | |
| 		}
 | |
| 		table.AddRow(cells, nil)
 | |
| 		table.Draw(ctx)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) Update(acct *AccountView) {
 | |
| 	status.acct = acct
 | |
| 	status.Invalidate()
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) SetError(err string) {
 | |
| 	prev := status.err
 | |
| 	status.err = err
 | |
| 	if prev != status.err {
 | |
| 		status.Invalidate()
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) Clear() {
 | |
| 	status.SetError("")
 | |
| 	status.acct = nil
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) Push(text string, expiry time.Duration) *StatusMessage {
 | |
| 	status.Lock()
 | |
| 	defer status.Unlock()
 | |
| 	log.Debugf(text)
 | |
| 	msg := &StatusMessage{
 | |
| 		style:   status.uiConfig().GetStyle(config.STYLE_STATUSLINE_DEFAULT),
 | |
| 		message: text,
 | |
| 	}
 | |
| 	status.stack = append(status.stack, msg)
 | |
| 	go (func() {
 | |
| 		defer log.PanicHandler()
 | |
| 
 | |
| 		time.Sleep(expiry)
 | |
| 		status.Lock()
 | |
| 		defer status.Unlock()
 | |
| 		for i, m := range status.stack {
 | |
| 			if m == msg {
 | |
| 				status.stack = append(status.stack[:i], status.stack[i+1:]...)
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		status.Invalidate()
 | |
| 	})()
 | |
| 	status.Invalidate()
 | |
| 	return msg
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) PushError(text string) *StatusMessage {
 | |
| 	log.Errorf(text)
 | |
| 	msg := status.Push(text, 10*time.Second)
 | |
| 	msg.Color(status.uiConfig().GetStyle(config.STYLE_STATUSLINE_ERROR))
 | |
| 	return msg
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) PushWarning(text string) *StatusMessage {
 | |
| 	log.Warnf(text)
 | |
| 	msg := status.Push(text, 10*time.Second)
 | |
| 	msg.Color(status.uiConfig().GetStyle(config.STYLE_STATUSLINE_WARNING))
 | |
| 	return msg
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) PushSuccess(text string) *StatusMessage {
 | |
| 	log.Tracef(text)
 | |
| 	msg := status.Push(text, 10*time.Second)
 | |
| 	msg.Color(status.uiConfig().GetStyle(config.STYLE_STATUSLINE_SUCCESS))
 | |
| 	return msg
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) Expire() {
 | |
| 	status.Lock()
 | |
| 	defer status.Unlock()
 | |
| 	status.stack = nil
 | |
| }
 | |
| 
 | |
| func (status *StatusLine) uiConfig() *config.UIConfig {
 | |
| 	return SelectedAccountUiConfig()
 | |
| }
 | |
| 
 | |
| func (msg *StatusMessage) Color(style vaxis.Style) {
 | |
| 	msg.style = style
 | |
| }
 |