-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathlambda_proc.go
97 lines (83 loc) · 2.19 KB
/
lambda_proc.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
package lambda_proc
import (
"encoding/json"
"fmt"
"io"
"log"
"os"
)
type (
Handler func(*Context, json.RawMessage) (interface{}, error)
Context struct {
AwsRequestID string `json:"awsRequestId"`
FunctionName string `json:"functionName"`
FunctionVersion string `json:"functionVersion"`
Invokeid string `json:"invokeid"`
IsDefaultFunctionVersion bool `json:"isDefaultFunctionVersion"`
LogGroupName string `json:"logGroupName"`
LogStreamName string `json:"logStreamName"`
MemoryLimitInMB string `json:"memoryLimitInMB"`
}
Payload struct {
// custom event fields
Event json.RawMessage `json:"event"`
// default context object
Context *Context `json:"context"`
}
Response struct {
// Request id is an incremental integer
// representing the request that has been
// received by this go proc during it's
// lifetime
RequestId int `json:"proc_req_id"`
// Any errors that occur during processing
// or are returned by handlers are returned
Error *string `json:"error"`
// General purpose output data
Data interface{} `json:"data"`
}
)
var requestId int // process req id
func NewErrorResponse(err error) *Response {
e := err.Error()
return &Response{
RequestId: requestId,
Error: &e,
}
}
func NewResponse(data interface{}) *Response {
return &Response{
RequestId: requestId,
Data: data,
}
}
func Run(handler Handler) {
RunStream(handler, os.Stdin, os.Stdout)
}
func RunStream(handler Handler, Stdin io.Reader, Stdout io.Writer) {
stdin := json.NewDecoder(Stdin)
stdout := json.NewEncoder(Stdout)
for ; ; requestId++ {
if err := func() (err error) {
defer func() {
if e := recover(); e != nil {
err = fmt.Errorf("panic: %v", e)
}
}()
var payload Payload
if err := stdin.Decode(&payload); err != nil {
return err
}
data, err := handler(payload.Context, payload.Event)
if err != nil {
return err
}
return stdout.Encode(NewResponse(data))
}(); err != nil {
if encErr := stdout.Encode(NewErrorResponse(err)); encErr != nil {
// bad times
log.Println("Failed to encode err response!", encErr.Error())
}
}
}
}