-
Notifications
You must be signed in to change notification settings - Fork 1
/
exporter.go
69 lines (46 loc) · 1.15 KB
/
exporter.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
68
69
package export
import (
"context"
"net/url"
"github.com/aaronland/go-roster"
)
type Exporter interface {
Export(context.Context, []byte) ([]byte, error)
ExportFeature(context.Context, interface{}) ([]byte, error)
}
var exporter_roster roster.Roster
type ExporterInitializationFunc func(ctx context.Context, uri string) (Exporter, error)
func RegisterExporter(ctx context.Context, scheme string, init_func ExporterInitializationFunc) error {
err := ensureExporterRoster()
if err != nil {
return err
}
return exporter_roster.Register(ctx, scheme, init_func)
}
func ensureExporterRoster() error {
if exporter_roster == nil {
r, err := roster.NewDefaultRoster()
if err != nil {
return err
}
exporter_roster = r
}
return nil
}
func NewExporter(ctx context.Context, uri string) (Exporter, error) {
u, err := url.Parse(uri)
if err != nil {
return nil, err
}
scheme := u.Scheme
i, err := exporter_roster.Driver(ctx, scheme)
if err != nil {
return nil, err
}
init_func := i.(ExporterInitializationFunc)
return init_func(ctx, uri)
}
func Exporters() []string {
ctx := context.Background()
return exporter_roster.Drivers(ctx)
}