123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657 |
- /**************************************************************************/
- /* debug_adapter_parser.cpp */
- /**************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /**************************************************************************/
- /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /**************************************************************************/
- #include "debug_adapter_parser.h"
- #include "editor/debugger/debug_adapter/debug_adapter_types.h"
- #include "editor/debugger/editor_debugger_node.h"
- #include "editor/debugger/script_editor_debugger.h"
- #include "editor/export/editor_export_platform.h"
- #include "editor/gui/editor_run_bar.h"
- #include "editor/plugins/script_editor_plugin.h"
- void DebugAdapterParser::_bind_methods() {
- // Requests
- ClassDB::bind_method(D_METHOD("req_initialize", "params"), &DebugAdapterParser::req_initialize);
- ClassDB::bind_method(D_METHOD("req_disconnect", "params"), &DebugAdapterParser::req_disconnect);
- ClassDB::bind_method(D_METHOD("req_launch", "params"), &DebugAdapterParser::req_launch);
- ClassDB::bind_method(D_METHOD("req_attach", "params"), &DebugAdapterParser::req_attach);
- ClassDB::bind_method(D_METHOD("req_restart", "params"), &DebugAdapterParser::req_restart);
- ClassDB::bind_method(D_METHOD("req_terminate", "params"), &DebugAdapterParser::req_terminate);
- ClassDB::bind_method(D_METHOD("req_configurationDone", "params"), &DebugAdapterParser::req_configurationDone);
- ClassDB::bind_method(D_METHOD("req_pause", "params"), &DebugAdapterParser::req_pause);
- ClassDB::bind_method(D_METHOD("req_continue", "params"), &DebugAdapterParser::req_continue);
- ClassDB::bind_method(D_METHOD("req_threads", "params"), &DebugAdapterParser::req_threads);
- ClassDB::bind_method(D_METHOD("req_stackTrace", "params"), &DebugAdapterParser::req_stackTrace);
- ClassDB::bind_method(D_METHOD("req_setBreakpoints", "params"), &DebugAdapterParser::req_setBreakpoints);
- ClassDB::bind_method(D_METHOD("req_breakpointLocations", "params"), &DebugAdapterParser::req_breakpointLocations);
- ClassDB::bind_method(D_METHOD("req_scopes", "params"), &DebugAdapterParser::req_scopes);
- ClassDB::bind_method(D_METHOD("req_variables", "params"), &DebugAdapterParser::req_variables);
- ClassDB::bind_method(D_METHOD("req_next", "params"), &DebugAdapterParser::req_next);
- ClassDB::bind_method(D_METHOD("req_stepIn", "params"), &DebugAdapterParser::req_stepIn);
- ClassDB::bind_method(D_METHOD("req_evaluate", "params"), &DebugAdapterParser::req_evaluate);
- ClassDB::bind_method(D_METHOD("req_godot/put_msg", "params"), &DebugAdapterParser::req_godot_put_msg);
- }
- Dictionary DebugAdapterParser::prepare_base_event() const {
- Dictionary event;
- event["type"] = "event";
- return event;
- }
- Dictionary DebugAdapterParser::prepare_success_response(const Dictionary &p_params) const {
- Dictionary response;
- response["type"] = "response";
- response["request_seq"] = p_params["seq"];
- response["command"] = p_params["command"];
- response["success"] = true;
- return response;
- }
- Dictionary DebugAdapterParser::prepare_error_response(const Dictionary &p_params, DAP::ErrorType err_type, const Dictionary &variables) const {
- Dictionary response, body;
- response["type"] = "response";
- response["request_seq"] = p_params["seq"];
- response["command"] = p_params["command"];
- response["success"] = false;
- response["body"] = body;
- DAP::Message message;
- String error, error_desc;
- switch (err_type) {
- case DAP::ErrorType::WRONG_PATH:
- error = "wrong_path";
- error_desc = "The editor and client are working on different paths; the client is on \"{clientPath}\", but the editor is on \"{editorPath}\"";
- break;
- case DAP::ErrorType::NOT_RUNNING:
- error = "not_running";
- error_desc = "Can't attach to a running session since there isn't one.";
- break;
- case DAP::ErrorType::TIMEOUT:
- error = "timeout";
- error_desc = "Timeout reached while processing a request.";
- break;
- case DAP::ErrorType::UNKNOWN_PLATFORM:
- error = "unknown_platform";
- error_desc = "The specified platform is unknown.";
- break;
- case DAP::ErrorType::MISSING_DEVICE:
- error = "missing_device";
- error_desc = "There's no connected device with specified id.";
- break;
- case DAP::ErrorType::UNKNOWN:
- default:
- error = "unknown";
- error_desc = "An unknown error has occurred when processing the request.";
- break;
- }
- message.id = err_type;
- message.format = error_desc;
- message.variables = variables;
- response["message"] = error;
- body["error"] = message.to_json();
- return response;
- }
- Dictionary DebugAdapterParser::req_initialize(const Dictionary &p_params) const {
- Dictionary response = prepare_success_response(p_params);
- Dictionary args = p_params["arguments"];
- Ref<DAPeer> peer = DebugAdapterProtocol::get_singleton()->get_current_peer();
- peer->linesStartAt1 = args.get("linesStartAt1", false);
- peer->columnsStartAt1 = args.get("columnsStartAt1", false);
- peer->supportsVariableType = args.get("supportsVariableType", false);
- peer->supportsInvalidatedEvent = args.get("supportsInvalidatedEvent", false);
- DAP::Capabilities caps;
- response["body"] = caps.to_json();
- DebugAdapterProtocol::get_singleton()->notify_initialized();
- if (DebugAdapterProtocol::get_singleton()->_sync_breakpoints) {
- // Send all current breakpoints
- List<String> breakpoints;
- ScriptEditor::get_singleton()->get_breakpoints(&breakpoints);
- for (List<String>::Element *E = breakpoints.front(); E; E = E->next()) {
- String breakpoint = E->get();
- String path = breakpoint.left(breakpoint.find_char(':', 6)); // Skip initial part of path, aka "res://"
- int line = breakpoint.substr(path.size()).to_int();
- DebugAdapterProtocol::get_singleton()->on_debug_breakpoint_toggled(path, line, true);
- }
- } else {
- // Remove all current breakpoints
- EditorDebuggerNode::get_singleton()->get_default_debugger()->_clear_breakpoints();
- }
- return response;
- }
- Dictionary DebugAdapterParser::req_disconnect(const Dictionary &p_params) const {
- if (!DebugAdapterProtocol::get_singleton()->get_current_peer()->attached) {
- EditorRunBar::get_singleton()->stop_playing();
- }
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_launch(const Dictionary &p_params) const {
- Dictionary args = p_params["arguments"];
- if (args.has("project") && !is_valid_path(args["project"])) {
- Dictionary variables;
- variables["clientPath"] = args["project"];
- variables["editorPath"] = ProjectSettings::get_singleton()->get_resource_path();
- return prepare_error_response(p_params, DAP::ErrorType::WRONG_PATH, variables);
- }
- if (args.has("godot/custom_data")) {
- DebugAdapterProtocol::get_singleton()->get_current_peer()->supportsCustomData = args["godot/custom_data"];
- }
- DebugAdapterProtocol::get_singleton()->get_current_peer()->pending_launch = p_params;
- return Dictionary();
- }
- Dictionary DebugAdapterParser::_launch_process(const Dictionary &p_params) const {
- Dictionary args = p_params["arguments"];
- ScriptEditorDebugger *dbg = EditorDebuggerNode::get_singleton()->get_default_debugger();
- if ((bool)args["noDebug"] != dbg->is_skip_breakpoints()) {
- dbg->debug_skip_breakpoints();
- }
- String platform_string = args.get("platform", "host");
- if (platform_string == "host") {
- EditorRunBar::get_singleton()->play_main_scene();
- } else {
- int device = args.get("device", -1);
- int idx = -1;
- if (platform_string == "android") {
- for (int i = 0; i < EditorExport::get_singleton()->get_export_platform_count(); i++) {
- if (EditorExport::get_singleton()->get_export_platform(i)->get_name() == "Android") {
- idx = i;
- break;
- }
- }
- } else if (platform_string == "web") {
- for (int i = 0; i < EditorExport::get_singleton()->get_export_platform_count(); i++) {
- if (EditorExport::get_singleton()->get_export_platform(i)->get_name() == "Web") {
- idx = i;
- break;
- }
- }
- }
- if (idx == -1) {
- return prepare_error_response(p_params, DAP::ErrorType::UNKNOWN_PLATFORM);
- }
- EditorRunBar *run_bar = EditorRunBar::get_singleton();
- Error err = platform_string == "android" ? run_bar->start_native_device(device * 10000 + idx) : run_bar->start_native_device(idx);
- if (err) {
- if (err == ERR_INVALID_PARAMETER && platform_string == "android") {
- return prepare_error_response(p_params, DAP::ErrorType::MISSING_DEVICE);
- } else {
- return prepare_error_response(p_params, DAP::ErrorType::UNKNOWN);
- }
- }
- }
- DebugAdapterProtocol::get_singleton()->get_current_peer()->attached = false;
- DebugAdapterProtocol::get_singleton()->notify_process();
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_attach(const Dictionary &p_params) const {
- ScriptEditorDebugger *dbg = EditorDebuggerNode::get_singleton()->get_default_debugger();
- if (!dbg->is_session_active()) {
- return prepare_error_response(p_params, DAP::ErrorType::NOT_RUNNING);
- }
- DebugAdapterProtocol::get_singleton()->get_current_peer()->attached = true;
- DebugAdapterProtocol::get_singleton()->notify_process();
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_restart(const Dictionary &p_params) const {
- // Extract embedded "arguments" so it can be given to req_launch/req_attach
- Dictionary params = p_params, args;
- args = params["arguments"];
- args = args["arguments"];
- params["arguments"] = args;
- Dictionary response = DebugAdapterProtocol::get_singleton()->get_current_peer()->attached ? req_attach(params) : _launch_process(params);
- if (!response["success"]) {
- response["command"] = p_params["command"];
- return response;
- }
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_terminate(const Dictionary &p_params) const {
- EditorRunBar::get_singleton()->stop_playing();
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_configurationDone(const Dictionary &p_params) const {
- Ref<DAPeer> peer = DebugAdapterProtocol::get_singleton()->get_current_peer();
- if (!peer->pending_launch.is_empty()) {
- peer->res_queue.push_back(_launch_process(peer->pending_launch));
- peer->pending_launch.clear();
- }
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_pause(const Dictionary &p_params) const {
- EditorRunBar::get_singleton()->get_pause_button()->set_pressed(true);
- EditorDebuggerNode::get_singleton()->_paused();
- DebugAdapterProtocol::get_singleton()->notify_stopped_paused();
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_continue(const Dictionary &p_params) const {
- EditorRunBar::get_singleton()->get_pause_button()->set_pressed(false);
- EditorDebuggerNode::get_singleton()->_paused();
- DebugAdapterProtocol::get_singleton()->notify_continued();
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_threads(const Dictionary &p_params) const {
- Dictionary response = prepare_success_response(p_params), body;
- response["body"] = body;
- Array arr;
- DAP::Thread thread;
- thread.id = 1; // Hardcoded because Godot only supports debugging one thread at the moment
- thread.name = "Main";
- arr.push_back(thread.to_json());
- body["threads"] = arr;
- return response;
- }
- Dictionary DebugAdapterParser::req_stackTrace(const Dictionary &p_params) const {
- if (DebugAdapterProtocol::get_singleton()->_processing_stackdump) {
- return Dictionary();
- }
- Dictionary response = prepare_success_response(p_params), body;
- response["body"] = body;
- bool lines_at_one = DebugAdapterProtocol::get_singleton()->get_current_peer()->linesStartAt1;
- bool columns_at_one = DebugAdapterProtocol::get_singleton()->get_current_peer()->columnsStartAt1;
- Array arr;
- DebugAdapterProtocol *dap = DebugAdapterProtocol::get_singleton();
- for (const KeyValue<DAP::StackFrame, List<int>> &E : dap->stackframe_list) {
- DAP::StackFrame sf = E.key;
- if (!lines_at_one) {
- sf.line--;
- }
- if (!columns_at_one) {
- sf.column--;
- }
- arr.push_back(sf.to_json());
- }
- body["stackFrames"] = arr;
- return response;
- }
- Dictionary DebugAdapterParser::req_setBreakpoints(const Dictionary &p_params) const {
- Dictionary response = prepare_success_response(p_params), body;
- response["body"] = body;
- Dictionary args = p_params["arguments"];
- DAP::Source source;
- source.from_json(args["source"]);
- bool lines_at_one = DebugAdapterProtocol::get_singleton()->get_current_peer()->linesStartAt1;
- if (!is_valid_path(source.path)) {
- Dictionary variables;
- variables["clientPath"] = source.path;
- variables["editorPath"] = ProjectSettings::get_singleton()->get_resource_path();
- return prepare_error_response(p_params, DAP::ErrorType::WRONG_PATH, variables);
- }
- // If path contains \, it's a Windows path, so we need to convert it to /, and make the drive letter uppercase
- if (source.path.contains_char('\\')) {
- source.path = source.path.replace("\\", "/");
- source.path = source.path.substr(0, 1).to_upper() + source.path.substr(1);
- }
- Array breakpoints = args["breakpoints"], lines;
- for (int i = 0; i < breakpoints.size(); i++) {
- DAP::SourceBreakpoint breakpoint;
- breakpoint.from_json(breakpoints[i]);
- lines.push_back(breakpoint.line + !lines_at_one);
- }
- Array updated_breakpoints = DebugAdapterProtocol::get_singleton()->update_breakpoints(source.path, lines);
- body["breakpoints"] = updated_breakpoints;
- return response;
- }
- Dictionary DebugAdapterParser::req_breakpointLocations(const Dictionary &p_params) const {
- Dictionary response = prepare_success_response(p_params), body;
- response["body"] = body;
- Dictionary args = p_params["arguments"];
- Array locations;
- DAP::BreakpointLocation location;
- location.line = args["line"];
- if (args.has("endLine")) {
- location.endLine = args["endLine"];
- }
- locations.push_back(location.to_json());
- body["breakpoints"] = locations;
- return response;
- }
- Dictionary DebugAdapterParser::req_scopes(const Dictionary &p_params) const {
- Dictionary response = prepare_success_response(p_params), body;
- response["body"] = body;
- Dictionary args = p_params["arguments"];
- int frame_id = args["frameId"];
- Array scope_list;
- DAP::StackFrame frame;
- frame.id = frame_id;
- HashMap<DAP::StackFrame, List<int>, DAP::StackFrame>::Iterator E = DebugAdapterProtocol::get_singleton()->stackframe_list.find(frame);
- if (E) {
- ERR_FAIL_COND_V(E->value.size() != 3, prepare_error_response(p_params, DAP::ErrorType::UNKNOWN));
- List<int>::ConstIterator itr = E->value.begin();
- for (int i = 0; i < 3; ++itr, ++i) {
- DAP::Scope scope;
- scope.variablesReference = *itr;
- switch (i) {
- case 0:
- scope.name = "Locals";
- scope.presentationHint = "locals";
- break;
- case 1:
- scope.name = "Members";
- scope.presentationHint = "members";
- break;
- case 2:
- scope.name = "Globals";
- scope.presentationHint = "globals";
- }
- scope_list.push_back(scope.to_json());
- }
- }
- EditorDebuggerNode::get_singleton()->get_default_debugger()->request_stack_dump(frame_id);
- DebugAdapterProtocol::get_singleton()->_current_frame = frame_id;
- body["scopes"] = scope_list;
- return response;
- }
- Dictionary DebugAdapterParser::req_variables(const Dictionary &p_params) const {
- // If _remaining_vars > 0, the debuggee is still sending a stack dump to the editor.
- if (DebugAdapterProtocol::get_singleton()->_remaining_vars > 0) {
- return Dictionary();
- }
- Dictionary args = p_params["arguments"];
- int variable_id = args["variablesReference"];
- if (HashMap<int, Array>::Iterator E = DebugAdapterProtocol::get_singleton()->variable_list.find(variable_id); E) {
- Dictionary response = prepare_success_response(p_params);
- Dictionary body;
- response["body"] = body;
- if (!DebugAdapterProtocol::get_singleton()->get_current_peer()->supportsVariableType) {
- for (int i = 0; i < E->value.size(); i++) {
- Dictionary variable = E->value[i];
- variable.erase("type");
- }
- }
- body["variables"] = E ? E->value : Array();
- return response;
- } else {
- // If the requested variable is an object, it needs to be requested from the debuggee.
- ObjectID object_id = DebugAdapterProtocol::get_singleton()->search_object_id(variable_id);
- if (object_id.is_null()) {
- return prepare_error_response(p_params, DAP::ErrorType::UNKNOWN);
- }
- DebugAdapterProtocol::get_singleton()->request_remote_object(object_id);
- }
- return Dictionary();
- }
- Dictionary DebugAdapterParser::req_next(const Dictionary &p_params) const {
- EditorDebuggerNode::get_singleton()->get_default_debugger()->debug_next();
- DebugAdapterProtocol::get_singleton()->_stepping = true;
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_stepIn(const Dictionary &p_params) const {
- EditorDebuggerNode::get_singleton()->get_default_debugger()->debug_step();
- DebugAdapterProtocol::get_singleton()->_stepping = true;
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::req_evaluate(const Dictionary &p_params) const {
- Dictionary args = p_params["arguments"];
- String expression = args["expression"];
- int frame_id = args.has("frameId") ? static_cast<int>(args["frameId"]) : DebugAdapterProtocol::get_singleton()->_current_frame;
- if (HashMap<String, DAP::Variable>::Iterator E = DebugAdapterProtocol::get_singleton()->eval_list.find(expression); E) {
- Dictionary response = prepare_success_response(p_params);
- Dictionary body;
- response["body"] = body;
- DAP::Variable var = E->value;
- body["result"] = var.value;
- body["variablesReference"] = var.variablesReference;
- // Since an evaluation can alter the state of the debuggee, they are volatile, and should only be used once
- DebugAdapterProtocol::get_singleton()->eval_list.erase(E->key);
- return response;
- } else {
- DebugAdapterProtocol::get_singleton()->request_remote_evaluate(expression, frame_id);
- }
- return Dictionary();
- }
- Dictionary DebugAdapterParser::req_godot_put_msg(const Dictionary &p_params) const {
- Dictionary args = p_params["arguments"];
- String msg = args["message"];
- Array data = args["data"];
- EditorDebuggerNode::get_singleton()->get_default_debugger()->_put_msg(msg, data);
- return prepare_success_response(p_params);
- }
- Dictionary DebugAdapterParser::ev_initialized() const {
- Dictionary event = prepare_base_event();
- event["event"] = "initialized";
- return event;
- }
- Dictionary DebugAdapterParser::ev_process(const String &p_command) const {
- Dictionary event = prepare_base_event(), body;
- event["event"] = "process";
- event["body"] = body;
- body["name"] = OS::get_singleton()->get_executable_path();
- body["startMethod"] = p_command;
- return event;
- }
- Dictionary DebugAdapterParser::ev_terminated() const {
- Dictionary event = prepare_base_event();
- event["event"] = "terminated";
- return event;
- }
- Dictionary DebugAdapterParser::ev_exited(const int &p_exitcode) const {
- Dictionary event = prepare_base_event(), body;
- event["event"] = "exited";
- event["body"] = body;
- body["exitCode"] = p_exitcode;
- return event;
- }
- Dictionary DebugAdapterParser::ev_stopped() const {
- Dictionary event = prepare_base_event(), body;
- event["event"] = "stopped";
- event["body"] = body;
- body["threadId"] = 1;
- return event;
- }
- Dictionary DebugAdapterParser::ev_stopped_paused() const {
- Dictionary event = ev_stopped();
- Dictionary body = event["body"];
- body["reason"] = "paused";
- body["description"] = "Paused";
- return event;
- }
- Dictionary DebugAdapterParser::ev_stopped_exception(const String &p_error) const {
- Dictionary event = ev_stopped();
- Dictionary body = event["body"];
- body["reason"] = "exception";
- body["description"] = "Exception";
- body["text"] = p_error;
- return event;
- }
- Dictionary DebugAdapterParser::ev_stopped_breakpoint(const int &p_id) const {
- Dictionary event = ev_stopped();
- Dictionary body = event["body"];
- body["reason"] = "breakpoint";
- body["description"] = "Breakpoint";
- Array breakpoints;
- breakpoints.push_back(p_id);
- body["hitBreakpointIds"] = breakpoints;
- return event;
- }
- Dictionary DebugAdapterParser::ev_stopped_step() const {
- Dictionary event = ev_stopped();
- Dictionary body = event["body"];
- body["reason"] = "step";
- body["description"] = "Breakpoint";
- return event;
- }
- Dictionary DebugAdapterParser::ev_continued() const {
- Dictionary event = prepare_base_event(), body;
- event["event"] = "continued";
- event["body"] = body;
- body["threadId"] = 1;
- return event;
- }
- Dictionary DebugAdapterParser::ev_output(const String &p_message, RemoteDebugger::MessageType p_type) const {
- Dictionary event = prepare_base_event(), body;
- event["event"] = "output";
- event["body"] = body;
- body["category"] = (p_type == RemoteDebugger::MessageType::MESSAGE_TYPE_ERROR) ? "stderr" : "stdout";
- body["output"] = p_message + "\r\n";
- return event;
- }
- Dictionary DebugAdapterParser::ev_breakpoint(const DAP::Breakpoint &p_breakpoint, const bool &p_enabled) const {
- Dictionary event = prepare_base_event(), body;
- event["event"] = "breakpoint";
- event["body"] = body;
- body["reason"] = p_enabled ? "new" : "removed";
- body["breakpoint"] = p_breakpoint.to_json();
- return event;
- }
- Dictionary DebugAdapterParser::ev_custom_data(const String &p_msg, const Array &p_data) const {
- Dictionary event = prepare_base_event(), body;
- event["event"] = "godot/custom_data";
- event["body"] = body;
- body["message"] = p_msg;
- body["data"] = p_data;
- return event;
- }
|