summaryrefslogtreecommitdiff
path: root/frontend.go
blob: 73f6d73eb9a941556d7362919b108c4492cd187d (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
package libfastimport

import (
	"io"
	"bufio"

	"git.lukeshu.com/go/libfastimport/textproto"
)

type Frontend struct {
	w *bufio.Writer
	fiw *textproto.FIWriter
	cbr *textproto.CatBlobReader
}

func NewFrontend(w io.Writer, r io.Reader) *Frontend {
	ret := Frontend{}
	ret.w = bufio.NewWriter(w)
	ret.fiw = textproto.NewFIWriter(ret.w)
	if r != nil {
		ret.cbr = textproto.NewCatBlobReader(r)
	}
	return &ret
}

func (f *Frontend) Do(cmd Cmd) error {
	err := cmd.fiWriteCmd(f.fiw)
	if err != nil {
		return err
	}
	return f.w.Flush()
}

func (f *Frontend) GetMark(cmd CmdGetMark) (string, error) {
	err := f.Do(cmd)
	if err != nil {
		return "", err
	}
	line, err := f.cbr.ReadLine()
	if err != nil {
		return "", err
	}
	return cbpGetMark(line)
}

func (f *Frontend) CatBlob(cmd CmdCatBlob) (sha1 string, data string, err error) {
	err = f.Do(cmd)
	if err != nil {
		return "", "", err
	}
	line, err := f.cbr.ReadLine()
	if err != nil {
		return "", "", err
	}
	return cbpCatBlob(line)
}

func (f *Frontend) Ls(cmd CmdLs) (mode textproto.Mode, dataref string, path textproto.Path, err error) {
	err = f.Do(cmd)
	if err != nil {
		return 0, "", "", err
	}
	line, err := f.cbr.ReadLine()
	if err != nil {
		return 0, "", "", err
	}
	return cbpLs(line)
}