|
5 | 5 | package gcdapi
|
6 | 6 |
|
7 | 7 | import (
|
8 |
| - "encoding/json" |
9 | 8 | "github.com/wirepair/gcd/gcdmessage"
|
10 | 9 | )
|
11 | 10 |
|
@@ -57,6 +56,12 @@ type DebuggerBreakLocation struct {
|
57 | 56 | Type string `json:"type,omitempty"` //
|
58 | 57 | }
|
59 | 58 |
|
| 59 | +// Debug symbols available for a wasm script. |
| 60 | +type DebuggerDebugSymbols struct { |
| 61 | + Type string `json:"type"` // Type of the debug symbols. |
| 62 | + ExternalURL string `json:"externalURL,omitempty"` // URL of the external symbol source. |
| 63 | +} |
| 64 | + |
60 | 65 | // Fired when breakpoint is resolved to an actual script and location.
|
61 | 66 | type DebuggerBreakpointResolvedEvent struct {
|
62 | 67 | Method string `json:"method"`
|
@@ -124,6 +129,7 @@ type DebuggerScriptParsedEvent struct {
|
124 | 129 | StackTrace *RuntimeStackTrace `json:"stackTrace,omitempty"` // JavaScript top stack frame of where the script parsed event was triggered if available.
|
125 | 130 | CodeOffset int `json:"codeOffset,omitempty"` // If the scriptLanguage is WebAssembly, the code section offset in the module.
|
126 | 131 | ScriptLanguage string `json:"scriptLanguage,omitempty"` // The language of the script. enum values: JavaScript, WebAssembly
|
| 132 | + DebugSymbols *DebuggerDebugSymbols `json:"debugSymbols,omitempty"` // If the scriptLanguage is WebASsembly, the source of debug symbols for the module. |
127 | 133 | } `json:"Params,omitempty"`
|
128 | 134 | }
|
129 | 135 |
|
@@ -288,6 +294,61 @@ func (c *Debugger) EvaluateOnCallFrame(callFrameId string, expression string, ob
|
288 | 294 | return c.EvaluateOnCallFrameWithParams(&v)
|
289 | 295 | }
|
290 | 296 |
|
| 297 | +type DebuggerExecuteWasmEvaluatorParams struct { |
| 298 | + // WebAssembly call frame identifier to evaluate on. |
| 299 | + CallFrameId string `json:"callFrameId"` |
| 300 | + // Code of the evaluator module. |
| 301 | + Evaluator string `json:"evaluator"` |
| 302 | + // Terminate execution after timing out (number of milliseconds). |
| 303 | + Timeout float64 `json:"timeout,omitempty"` |
| 304 | +} |
| 305 | + |
| 306 | +// ExecuteWasmEvaluatorWithParams - Execute a Wasm Evaluator module on a given call frame. |
| 307 | +// Returns - result - Object wrapper for the evaluation result. exceptionDetails - Exception details. |
| 308 | +func (c *Debugger) ExecuteWasmEvaluatorWithParams(v *DebuggerExecuteWasmEvaluatorParams) (*RuntimeRemoteObject, *RuntimeExceptionDetails, error) { |
| 309 | + resp, err := gcdmessage.SendCustomReturn(c.target, c.target.GetSendCh(), &gcdmessage.ParamRequest{Id: c.target.GetId(), Method: "Debugger.executeWasmEvaluator", Params: v}) |
| 310 | + if err != nil { |
| 311 | + return nil, nil, err |
| 312 | + } |
| 313 | + |
| 314 | + var chromeData struct { |
| 315 | + Result struct { |
| 316 | + Result *RuntimeRemoteObject |
| 317 | + ExceptionDetails *RuntimeExceptionDetails |
| 318 | + } |
| 319 | + } |
| 320 | + |
| 321 | + if resp == nil { |
| 322 | + return nil, nil, &gcdmessage.ChromeEmptyResponseErr{} |
| 323 | + } |
| 324 | + |
| 325 | + // test if error first |
| 326 | + cerr := &gcdmessage.ChromeErrorResponse{} |
| 327 | + json.Unmarshal(resp.Data, cerr) |
| 328 | + if cerr != nil && cerr.Error != nil { |
| 329 | + return nil, nil, &gcdmessage.ChromeRequestErr{Resp: cerr} |
| 330 | + } |
| 331 | + |
| 332 | + if err := json.Unmarshal(resp.Data, &chromeData); err != nil { |
| 333 | + return nil, nil, err |
| 334 | + } |
| 335 | + |
| 336 | + return chromeData.Result.Result, chromeData.Result.ExceptionDetails, nil |
| 337 | +} |
| 338 | + |
| 339 | +// ExecuteWasmEvaluator - Execute a Wasm Evaluator module on a given call frame. |
| 340 | +// callFrameId - WebAssembly call frame identifier to evaluate on. |
| 341 | +// evaluator - Code of the evaluator module. |
| 342 | +// timeout - Terminate execution after timing out (number of milliseconds). |
| 343 | +// Returns - result - Object wrapper for the evaluation result. exceptionDetails - Exception details. |
| 344 | +func (c *Debugger) ExecuteWasmEvaluator(callFrameId string, evaluator string, timeout float64) (*RuntimeRemoteObject, *RuntimeExceptionDetails, error) { |
| 345 | + var v DebuggerExecuteWasmEvaluatorParams |
| 346 | + v.CallFrameId = callFrameId |
| 347 | + v.Evaluator = evaluator |
| 348 | + v.Timeout = timeout |
| 349 | + return c.ExecuteWasmEvaluatorWithParams(&v) |
| 350 | +} |
| 351 | + |
291 | 352 | type DebuggerGetPossibleBreakpointsParams struct {
|
292 | 353 | // Start of range to search possible breakpoint locations in.
|
293 | 354 | Start *DebuggerLocation `json:"start"`
|
|
0 commit comments