summaryrefslogtreecommitdiff
path: root/src/cfg/data_dir.go
blob: 649bc153c770f6d725a5c280e20f0466198d5ed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package cfg

import (
	"context"
	"fmt"
	"os"

	"github.com/mediocregopher/mediocre-go-lib/v2/mctx"
)

// DataDir manages the blog's data directory.
type DataDir struct {
	Path string

	deleteOnClose bool
}

// Init initializes the data directory, creating the directory named at path if
// it doesn't exist.
//
// If Path is not set, then a temporary directory will be created and its path
// set to the Path field. This directory will be removed when Close is called.
func (d *DataDir) Init() error {
	if d.Path == "" {

		d.deleteOnClose = true
		var err error

		if d.Path, err = os.MkdirTemp("", "mediocre-blog-data-*"); err != nil {
			return fmt.Errorf("creating temporary directory: %w", err)
		}

		return nil
	}

	if err := os.MkdirAll(d.Path, 0700); err != nil {
		return fmt.Errorf(
			"creating directory (and parents) of %q: %w",
			d.Path,
			err,
		)
	}

	return nil
}

// SetupCfg implement the cfg.Cfger interface.
func (d *DataDir) SetupCfg(cfg *Cfg) {

	cfg.StringVar(&d.Path, "data-dir", "", "Directory to use for persistent storage. If unset a temp directory will be created, and will be deleted when the process exits.")

	cfg.OnInit(func(ctx context.Context) error {
		return d.Init()
	})
}

// Annotate implements mctx.Annotator interface.
func (d *DataDir) Annotate(a mctx.Annotations) {
	a["dataDirPath"] = d.Path
}

// Close cleans up any temporary state created by DataDir.
func (d *DataDir) Close() error {

	if !d.deleteOnClose {
		return nil
	}

	if err := os.RemoveAll(d.Path); err != nil {
		return fmt.Errorf("removing temp dir %q: %w", d.Path, err)
	}

	return nil
}