-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathobjmessage.go
56 lines (44 loc) · 1.37 KB
/
objmessage.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
package api
import (
"github.com/Shopify/go-lua"
"fmt"
"github.com/ywangd/gobufrkit/bufr"
)
const MESSAGE_META_TABLE = "gobufrkit.message"
type ObjMessage struct {
}
// TODO: Improve the string format
func (obj *ObjMessage) messageToString(state *lua.State) int {
message := state.ToUserData(1).(*bufr.Message)
state.PushString(fmt.Sprintf("%+v", message))
return 1
}
func (obj *ObjMessage) setProxyField(state *lua.State) int {
message := state.ToUserData(1).(*bufr.Message)
field := state.ToUserData(2).(*bufr.Field)
message.SetProxyField(field)
return 0
}
func (obj *ObjMessage) getProxyField(state *lua.State) int {
message := state.ToUserData(1).(*bufr.Message)
name, _ := state.ToString(2)
field, err := message.ProxyField(name)
if err != nil {
state.PushString(err.Error())
state.Error()
return 0
}
pushField(state, field)
return 1
}
func (obj *ObjMessage) registerGribMessageType(state *lua.State) {
lua.NewMetaTable(state, MESSAGE_META_TABLE)
// metatable.__index = metatable
state.PushValue(-1)
state.SetField(-2, "__index")
lua.SetFunctions(state, []lua.RegistryFunction{
{Name: "__tostring", Function: obj.messageToString},
{Name: "setProxyField", Function: obj.setProxyField},
{Name: "getProxyField", Function: obj.getProxyField},
}, 0)
}