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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
package furgit
import (
"bytes"
"errors"
"fmt"
)
// Commit represents a Git commit object.
type Commit struct {
Tree Hash
Parents []Hash
Author Ident
Committer Ident
Message []byte
ExtraHeaders []ExtraHeader
}
// StoredCommit represents a commit stored in the object database.
type StoredCommit struct {
Commit
hash Hash
}
// Hash returns the hash of the stored commit.
func (sCommit *StoredCommit) Hash() Hash {
return sCommit.hash
}
// ObjectType returns the object type of the commit.
//
// It always returns ObjectTypeCommit.
func (commit *Commit) ObjectType() ObjectType {
_ = commit
return ObjectTypeCommit
}
func parseCommit(id Hash, body []byte, repo *Repository) (*StoredCommit, error) {
c := new(StoredCommit)
c.hash = id
i := 0
for i < len(body) {
rel := bytes.IndexByte(body[i:], '\n')
if rel < 0 {
return nil, errors.New("furgit: commit: missing newline")
}
line := body[i : i+rel]
i += rel + 1
if len(line) == 0 {
break
}
switch {
case bytes.HasPrefix(line, []byte("tree ")):
treeID, err := repo.ParseHash(string(line[5:]))
if err != nil {
return nil, fmt.Errorf("furgit: commit: tree: %w", err)
}
c.Tree = treeID
case bytes.HasPrefix(line, []byte("parent ")):
parent, err := repo.ParseHash(string(line[7:]))
if err != nil {
return nil, fmt.Errorf("furgit: commit: parent: %w", err)
}
c.Parents = append(c.Parents, parent)
case bytes.HasPrefix(line, []byte("author ")):
idt, err := parseIdent(line[7:])
if err != nil {
return nil, fmt.Errorf("furgit: commit: author: %w", err)
}
c.Author = *idt
case bytes.HasPrefix(line, []byte("committer ")):
idt, err := parseIdent(line[10:])
if err != nil {
return nil, fmt.Errorf("furgit: commit: committer: %w", err)
}
c.Committer = *idt
case bytes.HasPrefix(line, []byte("gpgsig ")), bytes.HasPrefix(line, []byte("gpgsig-sha256 ")):
// TODO: handle this
for i < len(body) {
nextRel := bytes.IndexByte(body[i:], '\n')
if nextRel < 0 {
return nil, errors.New("furgit: commit: unterminated gpgsig")
}
if body[i] != ' ' {
break
}
i += nextRel + 1
}
default:
key, value, found := bytes.Cut(line, []byte{' '})
if !found {
return nil, errors.New("furgit: commit: malformed header")
}
c.ExtraHeaders = append(c.ExtraHeaders, ExtraHeader{Key: string(key), Value: value})
}
}
if i > len(body) {
return nil, ErrInvalidObject
}
c.Message = append([]byte(nil), body[i:]...)
return c, nil
}
func commitBody(c *Commit) ([]byte, error) {
var buf bytes.Buffer
fmt.Fprintf(&buf, "tree %s\n", c.Tree.String())
for _, p := range c.Parents {
fmt.Fprintf(&buf, "parent %s\n", p.String())
}
buf.WriteString("author ")
ab, err := c.Author.Serialize()
if err != nil {
return nil, err
}
buf.Write(ab)
buf.WriteByte('\n')
buf.WriteString("committer ")
cb, err := c.Committer.Serialize()
if err != nil {
return nil, err
}
buf.Write(cb)
buf.WriteByte('\n')
buf.WriteByte('\n')
buf.Write(c.Message)
return buf.Bytes(), nil
}
// Serialize renders the commit into its raw byte representation,
// including the header (i.e., "type size\0").
func (commit *Commit) Serialize() ([]byte, error) {
body, err := commitBody(commit)
if err != nil {
return nil, err
}
header, err := headerForType(ObjectTypeCommit, body)
if err != nil {
return nil, err
}
raw := make([]byte, len(header)+len(body))
copy(raw, header)
copy(raw[len(header):], body)
return raw, nil
}
|