-
Notifications
You must be signed in to change notification settings - Fork 11
/
shared.go
67 lines (56 loc) · 1.42 KB
/
shared.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
package main
import (
"fmt"
"runtime"
headers "github.com/asg017/sqlite-http/headers"
http_do "github.com/asg017/sqlite-http/http_do"
"go.riyazali.net/sqlite"
)
// Set in Makefile
var (
Commit string
Date string
Version string
)
// http_version
type VersionFunc struct{}
func (*VersionFunc) Deterministic() bool { return true }
func (*VersionFunc) Args() int { return 0 }
func (*VersionFunc) Apply(c *sqlite.Context, values ...sqlite.Value) {
c.ResultText(Version)
}
// http_debug
type DebugFunc struct{}
func (*DebugFunc) Deterministic() bool { return true }
func (*DebugFunc) Args() int { return 0 }
func (*DebugFunc) Apply(c *sqlite.Context, values ...sqlite.Value) {
c.ResultText(fmt.Sprintf("Version: %s\nCommit: %s\nRuntime: %s %s/%s\nDate: %s\n",
Version,
Commit,
runtime.Version(),
runtime.GOOS,
runtime.GOARCH,
Date,
))
}
var functions = map[string]sqlite.Function{
"http_version": &VersionFunc{},
"http_debug": &DebugFunc{},
}
func init() {
sqlite.Register(func(api *sqlite.ExtensionApi) (sqlite.ErrorCode, error) {
for name, function := range functions {
if err := api.CreateFunction(name, function); err != nil {
return sqlite.SQLITE_ERROR, err
}
}
if err := http_do.Register(api); err != nil {
return sqlite.SQLITE_ERROR, err
}
if err := headers.Register(api); err != nil {
return sqlite.SQLITE_ERROR, err
}
return sqlite.SQLITE_OK, nil
})
}
func main() {}