1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
|
/***************************************************************************
begin : Sun Aug 8 1999
copyright : (C) 1999 by John Birch
email : jbb@kdevelop.org
copyright : (C) 2016 by Aetf
email : aetf@unlimitedcodeworks.xyz
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _MICOMMAND_H_
#define _MICOMMAND_H_
#include "mi/mi.h"
#include <QString>
#include <QStringList>
#include <QPointer>
#include <functional>
namespace KDevMI {
class MIDebugSession;
namespace MI {
class VarItem;
class ValueCallback;
enum CommandFlag {
/// The command handler also wishes to receive an error responses, overriding the default error handler
CmdHandlesError = 1 << 0,
/// The command is expected to cause the inferior to run. Controllers that display the
/// program's state should refrain from sending commands while a command with this flag
/// is currently pending; however, note that a command with this flag needn't be guaranteed
/// to lead to a running state.
CmdMaybeStartsRunning = 1 << 1,
/// The command is a temporary-run type command, meaning that it typically causes the program
/// to run, but only for a short time before it stops again (e.g. Step and StepInto-type
/// commands). When the program is running due to this type of command, a CmdImmediately
/// command will wait before forcing an interrupt of the debugger, and the program is _not_
/// automatically restarted if an interrupt was forced.
///
/// TODO: this special handling has not actually been implemented yet
CmdTemporaryRun = 1 << 2,
/// This command should be executed immediately, even if the program is currently running
/// (e.g. breakpoint setting and modification); however, if the program is interrupted,
/// it should be resumed after this command has run.
CmdImmediately = 1 << 3,
/// This is a command that should interrupt a running program, without resuming.
CmdInterrupt = 1 << 4,
};
Q_DECLARE_FLAGS(CommandFlags, CommandFlag)
#if QT_VERSION >= QT_VERSION_CHECK(5, 12, 0)
Q_DECLARE_OPERATORS_FOR_FLAGS(CommandFlags)
#endif
//base class for handlers
class MICommandHandler
{
public:
virtual ~MICommandHandler() {}
virtual void handle(const ResultRecord&) = 0;
virtual bool handlesError() { return false; }
/**
* If the handler object should be deleted after the handle() call.
*/
virtual bool autoDelete() { return true; }
};
class FunctionCommandHandler : public MICommandHandler {
public:
using Function = std::function<void (const ResultRecord&)>;
explicit FunctionCommandHandler(const Function& callback, CommandFlags flags = {});
void handle(const ResultRecord&) override;
bool handlesError() override;
private:
CommandFlags _flags;
Function _callback;
};
/**
* @author John Birch
*/
class MICommand
{
protected:
explicit MICommand(CommandType type, const QString& arguments = QString(), CommandFlags flags = {});
friend class KDevMI::MIDebugSession;
public:
virtual ~MICommand();
CommandType type() const;
virtual QString miCommand() const;
CommandFlags flags() const {return flags_;}
/**
* Returns the MI token with which the command is sent, allowing the parser to match up
* the result message with the command.
*/
uint32_t token() const {return token_;}
/**
* Set the MI token. This is done by \ref MICommandQueue.
*/
void setToken(uint32_t token) {token_ = token;}
/**
* Returns the thread that needs to be currently selected when this command is executed,
* or -1 if there is no requirement.
*/
int thread() const;
/**
* Set the thread required to be currently selected when the command is executed.
*/
void setThread(int thread);
/**
* Returns the frame that needs to be currently selected when this command is executed,
* or -1 if there is no requirement.
*/
int frame() const;
/**
* Set the frame required to be currently selected when the command is executed.
*/
void setFrame(int frame);
/**
* Sets the handler for results.
*
* The command object assumes ownership of @p handler.
*/
void setHandler(MICommandHandler* handler);
void setHandler(const FunctionCommandHandler::Function &callback);
template<class Handler>
void setHandler(Handler* handler_this, void (Handler::* handler_method)(const ResultRecord&));
/* The command that should be sent to debugger.
This method is virtual so the command can compute this
dynamically, possibly using results of the previous
commands.
If the empty string is returned, nothing is sent. */
virtual QString cmdToSend();
/* Returns the initial string that was specified in
ctor invocation. The actual command will be
determined by cmdToSend above and the return
value of this method is only used in various
diagnostic messages emitted before actually
sending the command. */
QString initialString() const;
/* Returns true if this is command entered by the user
and so should be always shown in the gdb output window. */
virtual bool isUserCommand() const;
// If there's a handler for this command, invokes it and returns true.
// Otherwise, returns false.
bool invokeHandler(const ResultRecord& r);
// Returns 'true' if 'invokeHandler' should be invoked even
// on MI errors.
bool handlesError() const;
// Called by debuggercontroller for each new output string
// debugger emits for this command. In MI mode, this includes
// all "stream" messages, but does not include MI responses.
void newOutput(const QString&);
const QStringList& allStreamOutput() const;
QString command() const;
void setStateReloading(bool f);
bool stateReloading() const;
/// Called when the command has been enqueued in the debug session
/// and the command is wait for being submitted to GDB.
void markAsEnqueued();
/// Called when the command has been submitted to GDB and the command
/// waits for completion by GDB.
void markAsSubmitted();
/// Called when the command has been completed and the response has arrived.
void markAsCompleted();
/// returns the amount of time (in ms) passed between submission and completion.
qint64 gdbProcessingTime() const;
/// returns the amount of time (in ms) passed between enqueuing and submission.
qint64 queueTime() const;
/// returns the amount of time (in ms) passed between enqueuing and completion.
qint64 totalProcessingTime() const;
protected:
CommandType type_;
CommandFlags flags_;
uint32_t token_ = 0;
QString command_;
MICommandHandler *commandHandler_;
QStringList lines;
bool stateReloading_;
int m_thread;
int m_frame;
// remember the timestamps (in ms since start of the epoch) when this command
// - was added to the command queue (enqueued)
// - was submitted to GDB
// - was completed; response from GDB arrived
qint64 m_enqueueTimestamp;
qint64 m_submitTimestamp;
qint64 m_completeTimestamp;
};
class UserCommand : public MICommand
{
public:
UserCommand(CommandType type, const QString& s);
bool isUserCommand() const override;
};
/** This is a class for raw CLI commands. Instead of invoking
user provided hook with MI response, it invokes the a hook
with lists of strings.
*/
class CliCommand : public MICommand
{
public:
template<class Handler>
CliCommand(CommandType type, const QString& command,
Handler* handler_this,
void (Handler::* handler_method)(const QStringList&),
CommandFlags flags = {});
};
/** Command that does nothing and can be just used to invoke
a user provided handler when all preceding commands are
executed.
*/
class SentinelCommand : public MICommand
{
public:
using Function = std::function<void ()>;
template<class Handler>
SentinelCommand(Handler* handler_this,
void (Handler::* handler_method)(),
CommandFlags flags = {})
: MICommand(NonMI, QString(), flags)
{
QPointer<Handler> guarded_this(handler_this);
handler = [guarded_this, handler_method]() {
if (guarded_this) {
(guarded_this.data()->*handler_method)();
}
};
}
explicit SentinelCommand(const Function& handler, CommandFlags flags = {})
: MICommand(NonMI, QString(), flags)
, handler(handler)
{
}
using MICommand::invokeHandler;
void invokeHandler()
{
handler();
}
QString cmdToSend() override
{
return QString();
}
private:
Function handler;
};
class ExpressionValueCommand : public QObject, public MICommand
{
Q_OBJECT
public:
using handler_method_t = void (QObject::*)(const QString&);
template<class Handler>
ExpressionValueCommand(
const QString& expression,
Handler* handler_this,
void (Handler::* handler_method)(const QString&))
: MICommand(DataEvaluateExpression, expression),
handler_this(handler_this),
handler_method(static_cast<handler_method_t>(handler_method))
{
setHandler(this, &ExpressionValueCommand::handleResponse);
}
void handleResponse(const ResultRecord& r)
{
(handler_this.data()->*handler_method)(r[QStringLiteral("value")].literal());
}
private:
QPointer<QObject> handler_this;
handler_method_t handler_method;
};
template<class Handler>
FunctionCommandHandler::Function guarded_callback(Handler *handler_this,
void (Handler::* handler_method)(const ResultRecord&))
{
QPointer<Handler> guarded_this(handler_this);
return [guarded_this, handler_method](const ResultRecord& r) {
if (guarded_this) {
(guarded_this.data()->*handler_method)(r);
}
};
}
template<class Handler>
void MICommand::setHandler(Handler* handler_this,
void (Handler::* handler_method)(const ResultRecord&))
{
QPointer<Handler> guarded_this(handler_this);
setHandler(new FunctionCommandHandler([guarded_this, handler_method](const ResultRecord& r) {
if (guarded_this) {
(guarded_this.data()->*handler_method)(r);
}
}, flags()));
}
template<class Handler>
CliCommand::CliCommand(
CommandType type,
const QString& command,
Handler* handler_this,
void (Handler::* handler_method)(const QStringList&),
CommandFlags flags)
: MICommand(type, command)
{
QPointer<Handler> guarded_this(handler_this);
setHandler(new FunctionCommandHandler([this, guarded_this, handler_method](const ResultRecord&) {
if (guarded_this) {
(guarded_this.data()->*handler_method)(this->allStreamOutput());
}
}, flags));
}
} // end of namespace MI
} // end of namespace KDevMI
#if QT_VERSION < QT_VERSION_CHECK(5, 12, 0)
Q_DECLARE_OPERATORS_FOR_FLAGS(KDevMI::MI::CommandFlags)
#endif
#endif
|