[lldb][NFC] Fix all formatting errors in .cpp file headers
Summary:
A *.cpp file header in LLDB (and in LLDB) should like this:
```
//===-- TestUtilities.cpp -------------------------------------------------===//
```
However in LLDB most of our source files have arbitrary changes to this format and
these changes are spreading through LLDB as folks usually just use the existing
source files as templates for their new files (most notably the unnecessary
editor language indicator `-*- C++ -*-` is spreading and in every review
someone is pointing out that this is wrong, resulting in people pointing out that this
is done in the same way in other files).
This patch removes most of these inconsistencies including the editor language indicators,
all the different missing/additional '-' characters, files that center the file name, missing
trailing `===//` (mostly caused by clang-format breaking the line).
Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D73258
2020-01-24 15:23:27 +08:00
|
|
|
//===-- CommandObjectGUI.cpp ----------------------------------------------===//
|
2014-01-28 07:43:24 +08:00
|
|
|
//
|
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"
|
2019-12-11 00:54:30 +08:00
|
|
|
#include "lldb/Host/Config.h"
|
2014-01-28 07:43:24 +08:00
|
|
|
#include "lldb/Interpreter/CommandInterpreter.h"
|
|
|
|
#include "lldb/Interpreter/CommandReturnObject.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) {
|
2019-12-13 01:13:04 +08:00
|
|
|
#if LLDB_ENABLE_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)
|
2020-01-16 06:56:28 +08:00
|
|
|
debugger.RunIOHandlerAsync(io_handler_sp);
|
2015-01-15 03:45:21 +08:00
|
|
|
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
|
|
|
}
|