forked from playwright-community/playwright-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connection.go
209 lines (194 loc) · 5.15 KB
/
connection.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package playwright
import (
"fmt"
"log"
"reflect"
"sync"
"github.com/go-stack/stack"
)
type callback struct {
Data interface{}
Error error
}
type connection struct {
waitingForRemoteObjectsLock sync.Mutex
waitingForRemoteObjects map[string]chan interface{}
objects map[string]*channelOwner
lastID int
lastIDLock sync.Mutex
rootObject *rootChannelOwner
callbacks sync.Map
onClose func() error
onmessage func(map[string]interface{}) error
isRemote bool
}
func (c *connection) Start() *Playwright {
playwright := make(chan *Playwright, 1)
go func() {
pw, err := c.rootObject.initialize()
if err != nil {
log.Fatal(err)
return
}
playwright <- pw
}()
return <-playwright
}
func (c *connection) Stop() error {
return c.onClose()
}
func (c *connection) Dispatch(msg *message) {
method := msg.Method
if msg.ID != 0 {
cb, _ := c.callbacks.Load(msg.ID)
if msg.Error != nil {
cb.(chan callback) <- callback{
Error: parseError(msg.Error.Error),
}
} else {
cb.(chan callback) <- callback{
Data: c.replaceGuidsWithChannels(msg.Result),
}
}
return
}
object := c.objects[msg.GUID]
if method == "__create__" {
c.createRemoteObject(
object, msg.Params["type"].(string), msg.Params["guid"].(string), msg.Params["initializer"],
)
return
}
if object == nil {
return
}
if method == "__dispose__" {
object.dispose()
return
}
if object.objectType == "JsonPipe" {
object.channel.Emit(method, msg.Params)
} else {
object.channel.Emit(method, c.replaceGuidsWithChannels(msg.Params))
}
}
func (c *connection) createRemoteObject(parent *channelOwner, objectType string, guid string, initializer interface{}) interface{} {
initializer = c.replaceGuidsWithChannels(initializer)
result := createObjectFactory(parent, objectType, guid, initializer.(map[string]interface{}))
c.waitingForRemoteObjectsLock.Lock()
if _, ok := c.waitingForRemoteObjects[guid]; ok {
c.waitingForRemoteObjects[guid] <- result
delete(c.waitingForRemoteObjects, guid)
}
c.waitingForRemoteObjectsLock.Unlock()
return result
}
func (c *connection) replaceChannelsWithGuids(payload interface{}) interface{} {
if payload == nil {
return nil
}
if channel, isChannel := payload.(*channel); isChannel {
return map[string]string{
"guid": channel.guid,
}
}
v := reflect.ValueOf(payload)
if v.Kind() == reflect.Slice {
listV := make([]interface{}, 0)
for i := 0; i < v.Len(); i++ {
listV = append(listV, c.replaceChannelsWithGuids(v.Index(i).Interface()))
}
return listV
}
if v.Kind() == reflect.Map {
mapV := make(map[string]interface{})
for _, key := range v.MapKeys() {
mapV[key.String()] = c.replaceChannelsWithGuids(v.MapIndex(key).Interface())
}
return mapV
}
return payload
}
func (c *connection) replaceGuidsWithChannels(payload interface{}) interface{} {
if payload == nil {
return nil
}
v := reflect.ValueOf(payload)
if v.Kind() == reflect.Slice {
listV := payload.([]interface{})
for i := 0; i < len(listV); i++ {
listV[i] = c.replaceGuidsWithChannels(listV[i])
}
return listV
}
if v.Kind() == reflect.Map {
mapV := payload.(map[string]interface{})
if guid, hasGUID := mapV["guid"]; hasGUID {
if channelOwner, ok := c.objects[guid.(string)]; ok {
return channelOwner.channel
}
}
for key := range mapV {
mapV[key] = c.replaceGuidsWithChannels(mapV[key])
}
return mapV
}
return payload
}
func (c *connection) SendMessageToServer(guid string, method string, params interface{}) (interface{}, error) {
c.lastIDLock.Lock()
c.lastID++
id := c.lastID
c.lastIDLock.Unlock()
stack := serializeCallStack(stack.Trace())
metadata := make(map[string]interface{})
metadata["stack"] = stack
metadata["apiName"] = ""
message := map[string]interface{}{
"id": id,
"guid": guid,
"method": method,
"params": c.replaceChannelsWithGuids(params),
"metadata": metadata,
}
cb, _ := c.callbacks.LoadOrStore(id, make(chan callback))
if err := c.onmessage(message); err != nil {
return nil, fmt.Errorf("could not send message: %w", err)
}
result := <-cb.(chan callback)
c.callbacks.Delete(id)
if result.Error != nil {
return nil, result.Error
}
return result.Data, nil
}
func serializeCallStack(stack stack.CallStack) []map[string]interface{} {
callStack := make([]map[string]interface{}, 0)
for _, s := range stack {
callStack = append(callStack, map[string]interface{}{
"file": s.Frame().File,
"line": s.Frame().Line,
"function": s.Frame().Function,
})
}
return callStack
}
func newConnection(onClose func() error) *connection {
connection := &connection{
waitingForRemoteObjects: make(map[string]chan interface{}),
objects: make(map[string]*channelOwner),
onClose: onClose,
isRemote: false,
}
connection.rootObject = newRootChannelOwner(connection)
return connection
}
func fromChannel(v interface{}) interface{} {
return v.(*channel).object
}
func fromNullableChannel(v interface{}) interface{} {
if v == nil {
return nil
}
return fromChannel(v)
}