blob: 4c94bdd6ac3d607dd00eb37f99e33d0928d31424 [file] [log] [blame]
//===-- DAPError.h --------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/Error.h"
#include <optional>
#include <string>
#include <system_error>
namespace lldb_dap {
/// An error that is reported as a DAP Error Message, which may be presented to
/// the user.
class DAPError : public llvm::ErrorInfo<DAPError> {
public:
static char ID;
DAPError(std::string message,
std::error_code EC = llvm::inconvertibleErrorCode(),
bool show_user = true, std::optional<std::string> url = std::nullopt,
std::optional<std::string> url_label = std::nullopt);
void log(llvm::raw_ostream &OS) const override;
std::error_code convertToErrorCode() const override;
const std::string &getMessage() const { return m_message; }
bool getShowUser() const { return m_show_user; }
const std::optional<std::string> &getURL() const { return m_url; }
const std::optional<std::string> &getURLLabel() const { return m_url; }
private:
std::string m_message;
std::error_code m_ec;
bool m_show_user;
std::optional<std::string> m_url;
std::optional<std::string> m_url_label;
};
/// An error that indicates the current request handler cannot execute because
/// the process is not stopped.
class NotStoppedError : public llvm::ErrorInfo<NotStoppedError> {
public:
static char ID;
void log(llvm::raw_ostream &OS) const override;
std::error_code convertToErrorCode() const override;
};
} // namespace lldb_dap