2014-01-28 07:43:24 +08:00
|
|
|
//===-- CommandObjectGUI.cpp ------------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2014-01-28 07:43:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CommandObjectGUI.h"
|
|
|
|
|
2019-12-03 19:18:17 +08:00
|
|
|
#include "lldb/Core/IOHandlerCursesGUI.h"
|
2014-01-28 07:43:24 +08:00
|
|
|
#include "lldb/Interpreter/CommandInterpreter.h"
|
|
|
|
#include "lldb/Interpreter/CommandReturnObject.h"
|
|
|
|
#include "lldb/lldb-private.h"
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
// CommandObjectGUI
|
|
|
|
|
|
|
|
CommandObjectGUI::CommandObjectGUI(CommandInterpreter &interpreter)
|
|
|
|
: CommandObjectParsed(interpreter, "gui",
|
|
|
|
"Switch into the curses based GUI mode.", "gui") {}
|
|
|
|
|
|
|
|
CommandObjectGUI::~CommandObjectGUI() {}
|
|
|
|
|
|
|
|
bool CommandObjectGUI::DoExecute(Args &args, CommandReturnObject &result) {
|
2014-02-01 02:48:46 +08:00
|
|
|
#ifndef LLDB_DISABLE_CURSES
|
2014-01-28 07:43:24 +08:00
|
|
|
if (args.GetArgumentCount() == 0) {
|
2019-04-27 14:19:42 +08:00
|
|
|
Debugger &debugger = GetDebugger();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
remove File::SetStream(), make new files instead.
Summary:
This patch removes File::SetStream() and File::SetDescriptor(),
and replaces most direct uses of File with pointers to File.
Instead of calling SetStream() on a file, we make a new file and
replace it.
My ultimate goal here is to introduce a new API class SBFile, which
has full support for python io.IOStream file objects. These can
redirect read() and write() to python code, so lldb::Files will
need a way to dispatch those methods. Additionally it will need some
form of sharing and assigning files, as a SBFile will be passed in and
assigned to the main IO streams of the debugger.
In my prototype patch queue, I make File itself copyable and add a
secondary class FileOps to manage the sharing and dispatch. In that
case SBFile was a unique_ptr<File>.
(here: https://github.com/smoofra/llvm-project/tree/files)
However in review, Pavel Labath suggested that it be shared_ptr instead.
(here: https://reviews.llvm.org/D67793)
In order for SBFile to use shared_ptr<File>, everything else should
as well.
If this patch is accepted, I will make SBFile use a shared_ptr
I will remove FileOps from future patches and use subclasses of File
instead.
Reviewers: JDevlieghere, jasonmolenda, zturner, jingham, labath
Reviewed By: labath
Subscribers: lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D67891
llvm-svn: 373090
2019-09-27 22:33:35 +08:00
|
|
|
File &input = debugger.GetInputFile();
|
2019-10-10 02:43:03 +08:00
|
|
|
File &output = debugger.GetOutputFile();
|
|
|
|
if (input.GetStream() && output.GetStream() && input.GetIsRealTerminal() &&
|
|
|
|
input.GetIsInteractive()) {
|
2015-01-15 03:45:21 +08:00
|
|
|
IOHandlerSP io_handler_sp(new IOHandlerCursesGUI(debugger));
|
|
|
|
if (io_handler_sp)
|
|
|
|
debugger.PushIOHandler(io_handler_sp);
|
|
|
|
result.SetStatus(eReturnStatusSuccessFinishResult);
|
|
|
|
} else {
|
|
|
|
result.AppendError("the gui command requires an interactive terminal.");
|
2014-01-28 07:43:24 +08:00
|
|
|
result.SetStatus(eReturnStatusFailed);
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2014-01-28 07:43:24 +08:00
|
|
|
result.AppendError("the gui command takes no arguments.");
|
2015-01-15 03:45:21 +08:00
|
|
|
result.SetStatus(eReturnStatusFailed);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-01-28 07:43:24 +08:00
|
|
|
return true;
|
2014-02-01 02:48:46 +08:00
|
|
|
#else
|
|
|
|
result.AppendError("lldb was not build with gui support");
|
|
|
|
return false;
|
|
|
|
#endif
|
2014-01-28 07:43:24 +08:00
|
|
|
}
|