
* This adjusts the `Request`/`Response` types to have an `id` that is either a string or a number. * Merges 'Error' into 'Response' to have a single response type that represents both errors and results. * Adjusts the `Error.data` field to by any JSON value. * Adds `operator==` support to the base protocol types and simplifies the tests.
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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 "lldb/Protocol/MCP/MCPError.h"
|
|
#include "llvm/Support/Error.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include <system_error>
|
|
|
|
using namespace lldb_protocol::mcp;
|
|
|
|
char MCPError::ID;
|
|
char UnsupportedURI::ID;
|
|
|
|
MCPError::MCPError(std::string message, int64_t error_code)
|
|
: m_message(message), m_error_code(error_code) {}
|
|
|
|
void MCPError::log(llvm::raw_ostream &OS) const { OS << m_message; }
|
|
|
|
std::error_code MCPError::convertToErrorCode() const {
|
|
return llvm::inconvertibleErrorCode();
|
|
}
|
|
|
|
lldb_protocol::mcp::Error MCPError::toProtocolError() const {
|
|
lldb_protocol::mcp::Error error;
|
|
error.code = m_error_code;
|
|
error.message = m_message;
|
|
return error;
|
|
}
|
|
|
|
UnsupportedURI::UnsupportedURI(std::string uri) : m_uri(uri) {}
|
|
|
|
void UnsupportedURI::log(llvm::raw_ostream &OS) const {
|
|
OS << "unsupported uri: " << m_uri;
|
|
}
|
|
|
|
std::error_code UnsupportedURI::convertToErrorCode() const {
|
|
return llvm::inconvertibleErrorCode();
|
|
}
|