This repository was archived by the owner on Jan 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontext.go
70 lines (56 loc) · 1.53 KB
/
context.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
package plugins
import (
"context"
"sync"
pb "github.com/andersnormal/autobot/proto"
)
var _ Context = (*cbContext)(nil)
// Context is providing information and operations
// upon the reply execution context.
type Context interface {
// Message should return the message of the current context.
Message() *pb.Message
// Send should send a new message with in the current context.
Send(*pb.Message) error
// AsyncSend should asynchronously send a new message in the current context.
AsyncSend(msg *pb.Message)
// Context should return the current execution context.
Context() context.Context
}
type cbContext struct {
ctx context.Context
plugin *Plugin
msg *pb.Message
sync.Mutex
}
// Message is returning the emboddied message of the context.
func (ctx *cbContext) Message() *pb.Message {
return ctx.msg
}
// Send is sending a new message within the message context.
func (ctx *cbContext) Send(msg *pb.Message) error {
sc, err := ctx.plugin.getConn()
if err != nil {
return err
}
b, err := ctx.plugin.marshaler.Marshal(msg)
if err != nil {
return err
}
if err := sc.Publish(ctx.plugin.runtime.Outbox, b); err != nil {
return err
}
return nil
}
// AsyncSend is asynchronously sending a new message in the context
// of this message.
func (ctx *cbContext) AsyncSend(msg *pb.Message) {
ctx.plugin.run(func() error {
return ctx.Send(msg)
})
}
// Context is returning a context that can be used to bound an
// operation to the execution of this message.
func (ctx *cbContext) Context() context.Context {
return ctx.ctx
}