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
|
package libfastimport
import (
"bufio"
"io"
"git.lukeshu.com/go/libfastimport/textproto"
)
// A Backend is something that consumes a fast-import stream; the
// Backend object provides methods for writing to it.
type Backend struct {
w *bufio.Writer
fiw *textproto.FIWriter
cbr *textproto.CatBlobReader
}
func NewBackend(fastImport io.Writer, catBlob io.Reader) *Backend {
ret := Backend{}
ret.w = bufio.NewWriter(fastImport)
ret.fiw = textproto.NewFIWriter(ret.w)
if catBlob != nil {
ret.cbr = textproto.NewCatBlobReader(catBlob)
}
return &ret
}
func (b *Backend) Do(cmd Cmd) error {
err := cmd.fiWriteCmd(b.fiw)
if err != nil {
return err
}
return b.w.Flush()
}
func (b *Backend) GetMark(cmd CmdGetMark) (string, error) {
err := b.Do(cmd)
if err != nil {
return "", err
}
line, err := b.cbr.ReadLine()
if err != nil {
return "", err
}
return cbpGetMark(line)
}
func (b *Backend) CatBlob(cmd CmdCatBlob) (sha1 string, data string, err error) {
err = b.Do(cmd)
if err != nil {
return "", "", err
}
line, err := b.cbr.ReadLine()
if err != nil {
return "", "", err
}
return cbpCatBlob(line)
}
func (b *Backend) Ls(cmd CmdLs) (mode textproto.Mode, dataref string, path textproto.Path, err error) {
err = b.Do(cmd)
if err != nil {
return 0, "", "", err
}
line, err := b.cbr.ReadLine()
if err != nil {
return 0, "", "", err
}
return cbpLs(line)
}
|