blob: 26b1daae59340163b8d40f25d1ff36dc07507e41 (
plain)
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
|
//===-- 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
//
//===----------------------------------------------------------------------===//
#ifndef LLDB_TOOLS_LLDB_DAP_DAPERROR_H
#define LLDB_TOOLS_LLDB_DAP_DAPERROR_H
#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_label; }
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
#endif // LLDB_TOOLS_LLDB_DAP_DAPERROR_H
|