-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpc.go
98 lines (78 loc) · 2.24 KB
/
rpc.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
package espresso
import (
"errors"
"fmt"
"net/http"
"reflect"
)
func RPC[Request, Response any](fn func(Context, Request) (Response, error)) HandleFunc {
return func(ctx Context) error {
var req Request
if bctx, ok := ctx.(*buildtimeContext); ok {
bctx.endpoint.RequestType = reflect.TypeOf(&req).Elem()
var resp Response
bctx.endpoint.ResponseType = reflect.TypeOf(&resp).Elem()
_, err := fn(bctx, req)
return err
}
codec := CodecsModule.Value(ctx)
if codec == nil {
return Error(http.StatusInternalServerError, errors.New("no codec in the context"))
}
if err := codec.DecodeRequest(ctx, &req); err != nil {
return Error(http.StatusBadRequest, fmt.Errorf("can't decode request: %w", err))
}
resp, err := fn(ctx, req)
if err != nil {
return err
}
if err := codec.EncodeResponse(ctx, &resp); err != nil {
return Error(http.StatusInternalServerError, fmt.Errorf("can't encode response: %w", err))
}
return nil
}
}
func RPCRetrive[Response any](fn func(Context) (Response, error)) HandleFunc {
return func(ctx Context) error {
if bctx, ok := ctx.(*buildtimeContext); ok {
var resp Response
bctx.endpoint.ResponseType = reflect.TypeOf(&resp).Elem()
_, err := fn(bctx)
return err
}
codec := CodecsModule.Value(ctx)
if codec == nil {
return Error(http.StatusInternalServerError, errors.New("no codec in the context"))
}
resp, err := fn(ctx)
if err != nil {
return err
}
if err := codec.EncodeResponse(ctx, &resp); err != nil {
return Error(http.StatusInternalServerError, fmt.Errorf("can't encode response: %w", err))
}
return nil
}
}
func RPCConsume[Request any](fn func(Context, Request) error) HandleFunc {
return func(ctx Context) error {
var req Request
if bctx, ok := ctx.(*buildtimeContext); ok {
bctx.endpoint.RequestType = reflect.TypeOf(&req).Elem()
err := fn(bctx, req)
return err
}
codec := CodecsModule.Value(ctx)
if codec == nil {
return Error(http.StatusInternalServerError, errors.New("no codec in the context"))
}
if err := codec.DecodeRequest(ctx, &req); err != nil {
return Error(http.StatusBadRequest, fmt.Errorf("can't decode request: %w", err))
}
err := fn(ctx, req)
if err != nil {
return err
}
return nil
}
}