summaryrefslogtreecommitdiff
path: root/gitTags.query.go
blob: e145480313d3dcb262d06e3e6e3e4c9ed23fb368 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package gitpb

// runs git, parses output
// types faster than you can

import (
	"errors"
	"path/filepath"
	"strings"

	"go.wit.com/log"
)

func (repo *Repo) GetLastTag() string {
	cmd := []string{"git", "rev-list", "--tags", "--max-count=1"}
	result := repo.RunQuiet(cmd)
	log.Info("getLastTagVersion()", result.Stdout)

	if len(result.Stdout) != 1 {
		log.Info("git LastTag() error:", result.Stdout)
		return "error"
	}

	hash := result.Stdout[0]

	cmd = []string{"git", "describe", "--tags", "--always", hash}
	result = repo.RunQuiet(cmd)

	if len(result.Stdout) != 1 {
		log.Info("git LastTag() error:", result.Stdout)
		return "error"
	}

	return result.Stdout[0]
}

func (repo *Repo) GitMasterVersion() string {
	v, err := repo.gitVersionByName("master")
	/*
	count := repo.LenGitTags()
	log.Info(repo.GoPath, "tag count", count)
	repo.UpdateGitTags()
	count = repo.LenGitTags()
	log.Info(repo.GoPath, "tag count", count)
	*/

	if err == nil {
		return v
	} else {
		log.Info("GitMasterVersion() error", err)
		return "error"
	}
}

func (repo *Repo) GitDevelVersion() string {
	v, err := repo.gitVersionByName("devel")
	if err == nil {
		return v
	} else {
		log.Info("GitMasterVersion() error", err)
		return "error"
	}
}

func (repo *Repo) GitUserVersion() string {
	v, err := repo.gitVersionByName("jcarr")
	if err == nil {
		return v
	} else {
		log.Info("GitMasterVersion() error", err)
		return "error"
	}
}

func (repo *Repo) gitVersionByName(name string) (string, error) {
	name = strings.TrimSpace(name)

	if name == "" {
		// git will return the current tag
		r := repo.RunQuiet([]string{"git", "describe", "--tags", "--always"})
		output := strings.Join(r.Stdout, "\n")
		if r.Error != nil {
			log.Warn("gitDescribeByName() not in a git repo?", r.Error, repo.GoPath)
		}
		return strings.TrimSpace(output), r.Error
	}
	if !repo.LocalTagExists(name) {
		// tag does not exist
		log.Warn("LocalTagExists()", name, "did not exist")
		return "", errors.New("gitDescribeByName() git fatal: Not a valid object name")
	}
	cmd := []string{"git", "describe", "--tags", "--always", name}
	result := repo.RunQuiet(cmd)
	output := strings.Join(result.Stdout, "\n")
	if result.Error != nil {
		log.Warn("cmd =", cmd)
		log.Warn("err =", result.Error)
		log.Warn("not in a git repo or bad tag?", repo.GoPath)
	}

	return strings.TrimSpace(output), result.Error
}

func (repo *Repo) LocalTagExists(findname string) bool {
	loop := repo.AllTags()
	for loop.Scan() {
		t := loop.Next()
		log.Info("tag:", t.Refname)

		tagname := t.Refname
		if strings.HasPrefix(tagname, "refs/remotes") {
			continue
		}
		path, filename := filepath.Split(tagname)
		log.Log(GITPB, "tag:", path, filename, "from", repo.GoPath)
		if filename == findname {
			log.Log(GITPBWARN, "found tag:", path, filename, "from", repo.GoPath)
			return true
		}
	}
	return false
}