diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /devtools/shared/specs/thread.js | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/shared/specs/thread.js')
-rw-r--r-- | devtools/shared/specs/thread.js | 189 |
1 files changed, 189 insertions, 0 deletions
diff --git a/devtools/shared/specs/thread.js b/devtools/shared/specs/thread.js new file mode 100644 index 0000000000..1a4f862fb1 --- /dev/null +++ b/devtools/shared/specs/thread.js @@ -0,0 +1,189 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +"use strict"; + +const { + Arg, + Option, + RetVal, + generateActorSpec, + types, +} = require("resource://devtools/shared/protocol.js"); + +types.addDictType("available-breakpoint-group", { + name: "string", + events: "array:available-breakpoint-event", +}); + +types.addDictType("available-breakpoint-event", { + id: "string", + name: "string", +}); + +types.addDictType("thread.frames", { + frames: "array:frame", +}); + +types.addDictType("thread.breakpoint-options", { + condition: "nullable:string", + logValue: "nullable:string", +}); + +types.addDictType("paused-reason", { + type: "string", + + // Used for any pause type that wants to describe why the pause happened. + message: "nullable:string", + + // Used for the stepping pause types. + frameFinished: "nullable:json", + + // Used for the "exception" pause type. + exception: "nullable:json", + + // Used for the "interrupted" pause type. + onNext: "nullable:boolean", + + // Used for the "eventBreakpoint" pause type. + breakpoint: "nullable:json", + + // Used for the "mutationBreakpoint" pause type. + mutationType: "nullable:string", +}); + +const threadSpec = generateActorSpec({ + typeName: "thread", + + events: { + paused: { + actor: Option(0, "nullable:string"), + frame: Option(0, "frame"), + why: Option(0, "paused-reason"), + }, + resumed: {}, + newSource: { + source: Option(0, "json"), + }, + }, + + methods: { + attach: { + request: { + options: Arg(0, "json"), + }, + response: {}, + }, + reconfigure: { + request: { + options: Arg(0, "json"), + }, + response: {}, + }, + resume: { + request: { + resumeLimit: Arg(0, "nullable:json"), + frameActorID: Arg(1, "nullable:string"), + }, + response: RetVal("nullable:json"), + }, + frames: { + request: { + start: Arg(0, "number"), + count: Arg(1, "number"), + }, + response: RetVal("thread.frames"), + }, + interrupt: { + request: { + when: Arg(0, "json"), + }, + }, + sources: { + response: { + sources: RetVal("array:json"), + }, + }, + skipBreakpoints: { + request: { + skip: Arg(0, "json"), + }, + response: { + skip: Arg(0, "json"), + }, + }, + dumpThread: { + request: {}, + response: RetVal("json"), + }, + dumpPools: { + request: {}, + response: RetVal("json"), + }, + setBreakpoint: { + request: { + location: Arg(0, "json"), + options: Arg(1, "thread.breakpoint-options"), + }, + }, + removeBreakpoint: { + request: { + location: Arg(0, "json"), + }, + }, + setXHRBreakpoint: { + request: { + path: Arg(0, "string"), + method: Arg(1, "string"), + }, + response: { + value: RetVal("boolean"), + }, + }, + removeXHRBreakpoint: { + request: { + path: Arg(0, "string"), + method: Arg(1, "string"), + }, + response: { + value: RetVal("boolean"), + }, + }, + getAvailableEventBreakpoints: { + response: { + value: RetVal("array:available-breakpoint-group"), + }, + }, + getActiveEventBreakpoints: { + response: { + ids: RetVal("array:string"), + }, + }, + setActiveEventBreakpoints: { + request: { + ids: Arg(0, "array:string"), + }, + }, + pauseOnExceptions: { + request: { + pauseOnExceptions: Arg(0, "string"), + ignoreCaughtExceptions: Arg(1, "string"), + }, + }, + + toggleEventLogging: { + request: { + logEventBreakpoints: Arg(0, "string"), + }, + }, + + isAttached: { + request: {}, + response: { + value: RetVal("boolean"), + }, + }, + }, +}); + +exports.threadSpec = threadSpec; |