summaryrefslogtreecommitdiff
path: root/init.go
blob: 1d41d62b32466db769c41f5f86bd215f8ba36828 (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
package forgepb

import (
	"os"
	"path/filepath"

	"go.wit.com/lib/protobuf/gitpb"
	"go.wit.com/lib/protobuf/zoopb"
	"go.wit.com/log"
)

func Init() *Forge {
	f := new(Forge)

	// TODO: rethink this but it works for now
	gosrc := os.Getenv("FORGE_GOSRC")
	if gosrc == "" {
		// already set. ignore init()
		goSrcDir, err := f.findGoSrc()
		if err != nil {
			log.Warn("forge init() findGoSrc()", err)
		}
		os.Setenv("FORGE_GOSRC", goSrcDir)
	}
	f.goSrc = os.Getenv("FORGE_GOSRC")

	// also rethink this, but maybe this is the right thing to do
	if os.Getenv("FORGE_CONFIG") == "" {
		homeDir, _ := os.UserHomeDir()
		fullpath := filepath.Join(homeDir, ".config/forge")
		os.Setenv("FORGE_CONFIG", fullpath)
	}

	// cache.go has Do()
	// f.initOnce.Do(f.initWork)

	f.Config = new(ForgeConfigs)

	// load the ~/.config/forge/ config
	if err := f.Config.ConfigLoad(); err != nil {
		log.Warn("forgepb.ConfigLoad() failed", err)
		os.Exit(-1)
	}

	f.Repos = new(gitpb.Repos)
	f.Repos.ConfigLoad()
	f.Machine = new(zoopb.Machine)

	if err := f.Machine.ConfigLoad(); err != nil {
		log.Warn("zoopb.ConfigLoad() failed", err)
		os.Exit(-1)
	}
	// f.Machine.InitWit()

	start := f.Repos.Len()
	f.ScanGoSrc()
	end := f.Repos.Len()
	log.Info("forge.ScanGoSrc() Found", end-start, "new repos in", f.goSrc)
	return f
}