forked from playwright-community/playwright-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection.go
185 lines (171 loc) · 4.79 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
package playwright
import (
"fmt"
"io"
"reflect"
"sync"
)
type callback struct {
Data interface{}
Error error
}
type connection struct {
transport *transport
waitingForRemoteObjectsLock sync.Mutex
waitingForRemoteObjects map[string]chan interface{}
objects map[string]*channelOwner
lastID int
lastIDLock sync.Mutex
rootObject *channelOwner
callbacks sync.Map
stopDriver func() error
}
func (c *connection) Start() error {
return c.transport.Start()
}
func (c *connection) Stop() error {
if err := c.transport.Stop(); err != nil {
return fmt.Errorf("could not stop transport: %w", err)
}
return c.stopDriver()
}
func (c *connection) CallOnObjectWithKnownName(name string) (interface{}, error) {
if _, ok := c.waitingForRemoteObjects[name]; !ok {
c.waitingForRemoteObjectsLock.Lock()
c.waitingForRemoteObjects[name] = make(chan interface{})
c.waitingForRemoteObjectsLock.Unlock()
}
return <-c.waitingForRemoteObjects[name], nil
}
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 method == "__dispose__" {
object.Dispose()
return
}
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()
message := map[string]interface{}{
"id": id,
"guid": guid,
"method": method,
"params": c.replaceChannelsWithGuids(params),
}
cb, _ := c.callbacks.LoadOrStore(id, make(chan callback))
if err := c.transport.Send(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 newConnection(stdin io.WriteCloser, stdout io.ReadCloser, stopDriver func() error) *connection {
connection := &connection{
waitingForRemoteObjects: make(map[string]chan interface{}),
objects: make(map[string]*channelOwner),
stopDriver: stopDriver,
}
connection.transport = newTransport(stdin, stdout, connection.Dispatch)
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)
}