This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
tag.go
105 lines (95 loc) · 2.95 KB
/
tag.go
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
// Copyright (c) 2013 Patrick Gundlach, speedata (Berlin, Germany)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package gogit
import (
"bytes"
"errors"
)
// Who am I?
type TagType int
const (
TagCommit TagType = iota
)
type Tag struct {
Type TagType
Name string
Message string
TargetId *Oid
Tagger *Signature
repository *Repository
}
// <TAG_CONTENTS>
// : "object" <SP> <HEX_OBJ_ID> <LF>
// "type" <SP> <OBJ_TYPE> <LF>
// "tag" <SP> <TAG_NAME> <LF>
// "tagger" <SP> <SAFE_NAME> <SP> <LT> <SAFE_EMAIL> <GT> <SP><GIT_DATE> <LF>
// <LF>
// <DATA>
// ;
func parseTagData(data []byte) (*Tag, error) {
tag := new(Tag)
var err error
if !bytes.HasPrefix(data, []byte("object ")) {
return nil, errors.New("This is not a Tag object, it doesn't start with 'object '")
}
// We know now that we have a tag object. So we can assume the
// datastructure is fixed (keep fingers crossed!)
tag.TargetId, err = NewOidFromByteString(data[7:47])
if err != nil {
return nil, err
}
// 6 = "\ntype "
pos := 47 + 6
nlpos := bytes.IndexByte(data[pos:], '\n')
committype := string(data[pos : pos+nlpos])
switch committype {
case "commit":
tag.Type = TagCommit
default:
return nil, errors.New("Unknown Tag type: " + committype)
}
// 5 = "\ntag "
pos += nlpos + 5
nlpos = bytes.IndexByte(data[pos:], '\n')
tag.Name = string(data[pos : pos+nlpos])
// 8 = "\ntagger "
pos += nlpos + 8
nlpos = bytes.IndexByte(data[pos:], '\n')
tag.Tagger, err = newSignatureFromCommitline(data[pos : pos+nlpos])
if err != nil {
return nil, err
}
pos += nlpos + 2
tag.Message = string(data[pos:])
return tag, nil
}
// Find the tag object in the repository.
func (repos *Repository) LookupTag(oid *Oid) (*Tag, error) {
_, _, data, err := repos.getRawObject(oid)
if err != nil {
return nil, err
}
tag, err := parseTagData(data)
if err != nil {
return nil, err
}
tag.repository = repos
return tag, nil
}