summaryrefslogtreecommitdiff
path: root/fiutil/handler.go.gen
blob: 9f7d054ceddcf3effb78f261ffd8b7f2219f44db (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
#!/usr/bin/env bash
# Copyright 2019  Luke Shumaker <lukeshu@parabola.nu>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

cmds=(
	CmdBlob
	#CmdCatBlob
	CmdCheckpoint
	CmdComment
	CmdCommit
	CmdCommitEnd
	CmdDone
	CmdFeature
	#CmdGetMark
	#CmdLs
	CmdOption
	CmdProgress
	CmdReset
	CmdTag
	FileCopy
	FileDelete
	FileDeleteAll
	FileModify
	FileModifyInline
	FileRename
	NoteModify
	NoteModifyInline
)

{
	cat <<-EOT
	//$(printf ' %q' "$0" "$@")
	// Code generated by the above command; DO NOT EDIT.

	package fiutil
	
	import (
		"io"
			
		"git.lukeshu.com/go/libfastimport"
		"github.com/pkg/errors"
	)
	
	type Handler interface{
		$(for cmd in "${cmds[@]}"; do
			echo "$cmd(libfastimport.$cmd) error"
		done)
		CmdCatBlob(libfastimport.CmdCatBlob) (sha1 string, data string, err error)
		CmdGetMark(libfastimport.CmdGetMark) (sha1 string, err error)
		CmdLs(libfastimport.CmdLs) (mode libfastimport.Mode, dataref string, path libfastimport.Path, err error)
	}
	
	func RunHandler(reader *libfastimport.Frontend, handler Handler) error {
		for {
			cmd, err := reader.ReadCmd()
			if err != nil {
				if err == io.EOF {
					return nil
				}
				return err
			}
	
			switch  cmdt := cmd.(type) {
				$(for cmd in "${cmds[@]}"; do
					echo "case libfastimport.$cmd:"
					echo "    if err := handler.$cmd(cmdt); err != nil {"
					echo "        return err"
					echo "    }"
				done)
			case libfastimport.CmdCatBlob:
				sha1, data, err := handler.CmdCatBlob(cmdt)
				if err != nil {
					return err
				}
				return reader.RespondCatBlob(sha1, data)
			case libfastimport.CmdGetMark:
				sha1, err := handler.CmdGetMark(cmdt)
				if err != nil {
					return err
				}
				return reader.RespondGetMark(sha1)
			case libfastimport.CmdLs:
				mode, dataref, path, err := handler.CmdLs(cmdt)
				if err != nil {
					return err
				}
				return reader.RespondLs(mode, dataref, path)
			default:
				return errors.Errorf("unexpected command object: %[1]T(%#[1]v)", cmd)
			}
		}
	}
	EOT
} | gofmt