option.go 1.27 KB
Newer Older
songlinfeng's avatar
songlinfeng committed
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
/*
*
# Copyright (c) 2024, HCUOpt CORPORATION.  All rights reserved.
*
*/
package podman

import (
	"dtk-container-toolkit/internal/logger"
	"fmt"
	"gopkg.in/ini.v1"
	"os"
)

type builder struct {
	logger logger.Interface
	path   string
}

type Option func(*builder)

func WithLogger(logger logger.Interface) Option {
	return func(b *builder) {
		b.logger = logger
	}
}

func WithPath(path string) Option {
	return func(b *builder) {
		b.path = path
	}
}

func (b *builder) build() (*Config, error) {
	if b.path == "" {
		empty := ini.Empty()
		return &Config{File: empty}, nil
	}

	return b.loadConfig(b.path)
}

func (b *builder) loadConfig(config string) (*Config, error) {
	info, err := os.Stat(config)
	if os.IsExist(err) && info.IsDir() {
		return nil, fmt.Errorf("config file is a directory")
	}

	cfg := ini.Empty()

	if os.IsNotExist(err) {
		b.logger.Infof("Config file does not exist, using empty config")
		return &Config{File: cfg}, nil
	}

	b.logger.Infof("Loading config from %v", config)
songlinfeng's avatar
songlinfeng committed
57
58
59
60
61
        cfg, err = ini.LoadSources(ini.LoadOptions{
		IgnoreInlineComment:     false,
		AllowBooleanKeys:        true,
		PreserveSurroundedQuote: true, // 保留引号
	}, config)
songlinfeng's avatar
songlinfeng committed
62
63
64
65
66
67
	if err != nil {
		return nil, fmt.Errorf("unable to read config: %v", err)
	}
	return &Config{File: cfg}, nil
}