-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.go
112 lines (82 loc) · 2.72 KB
/
plugin.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
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
107
108
109
110
111
112
package server
import (
"context"
"net/http"
"time"
// Packages
pg "github.com/djthorpe/go-pg"
schema "github.com/mutablelogic/go-server/pkg/pgqueue/schema"
)
///////////////////////////////////////////////////////////////////////////////
// INTERFACES
// Plugin represents a service
type Plugin interface {
// Return the unique name for the plugin
Name() string
// Return a description of the plugin
Description() string
// Create a task from a plugin
New(context.Context) (Task, error)
}
// Task represents a service task
type Task interface {
// Run a task
Run(context.Context) error
}
// Provider represents a service provider
type Provider interface {
Task
// Return a task given a plugin label
Task(context.Context, string) Task
}
///////////////////////////////////////////////////////////////////////////////
// HTTP ROUTER
type HTTPRouter interface {
// Return the CORS origin
Origin() string
// Register a function to handle a URL path
HandleFunc(context.Context, string, http.HandlerFunc)
}
///////////////////////////////////////////////////////////////////////////////
// HTTP MIDDLEWARE
type HTTPMiddleware interface {
// Return a http handler with middleware as the parent handler
HandleFunc(http.HandlerFunc) http.HandlerFunc
}
///////////////////////////////////////////////////////////////////////////////
// LOGGER
type Logger interface {
// Emit a debugging message
//Debug(context.Context, ...any)
// Emit a debugging message with formatting
//Debugf(context.Context, string, ...any)
// Emit an informational message
Print(context.Context, ...any)
// Emit an informational message with formatting
//Printf(context.Context, string, ...any)
// Append structured data to the log in key-value pairs
// where the key is a string and the value is any type
//With(...any) Logger
}
///////////////////////////////////////////////////////////////////////////////
// PGPOOL
type PG interface {
// Return the connection pool
Conn() pg.PoolConn
}
///////////////////////////////////////////////////////////////////////////////
// PGQUEUE
type PGCallback func(context.Context, any) error
type PGQueue interface {
Task
// Return the worker name
Worker() string
// Register a ticker with a callback, and return the registered ticker
RegisterTicker(context.Context, schema.TickerMeta, PGCallback) (*schema.Ticker, error)
// Register a queue with a callback, and return the registered queue
RegisterQueue(context.Context, schema.Queue, PGCallback) (*schema.Queue, error)
// Create a task for a queue with a payload and optional delay, and return it
CreateTask(context.Context, string, any, time.Duration) (*schema.Task, error)
// Delete a ticker by name
DeleteTicker(context.Context, string) error
}