aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/outcome
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-11-02 12:40:58 +0900
committerOphestra <cat@gensokyo.uk>2025-11-02 12:40:58 +0900
commit7c3c3135d8b0eab767e58bd8ef0e7e04abee3ca2 (patch)
treeaa36cc12d1e36cfcc2956dff9336e0f33e8bce68 /internal/outcome
parentf33aea9ff9c5eb678c6f1de59132aab69a59757e (diff)
internal/outcome: track state in TMPDIR
The SharePath is a more stable path than RunDirPath, since it is available all the time and should remain consistent. This also fits better into the intended use case of XDG_RUNTIME_DIR. Closes #17. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/outcome')
-rw-r--r--internal/outcome/process.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/outcome/process.go b/internal/outcome/process.go
index 1baa588c..78570d26 100644
--- a/internal/outcome/process.go
+++ b/internal/outcome/process.go
@@ -29,6 +29,9 @@ const (
shimSetupTimeout = 5 * time.Second
)
+// NewStore returns the address of a new instance of [store.Store].
+func NewStore(sc *hst.Paths) *store.Store { return store.New(sc.SharePath.Append("state")) }
+
// main carries out outcome and terminates. main does not return.
func (k *outcome) main(msg message.Msg) {
if k.ctx == nil || k.sys == nil || k.state == nil {
@@ -119,7 +122,7 @@ func (k *outcome) main(msg message.Msg) {
switch processState {
case processStart:
- if h, err := store.New(k.state.sc.RunDirPath.Append("state")).Handle(k.state.identity.unwrap()); err != nil {
+ if h, err := NewStore(&k.state.sc).Handle(k.state.identity.unwrap()); err != nil {
perrorFatal(err, "obtain store segment handle", processFinal)
continue
} else {