MLIR  22.0.0git
Protocol.cpp
Go to the documentation of this file.
1 //===--- Protocol.cpp - Language Server Protocol Implementation -----------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file contains the serialization code for the MLIR specific LSP structs.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "Protocol.h"
14 #include "llvm/Support/JSON.h"
15 
16 using namespace mlir;
17 using namespace mlir::lsp;
18 
19 //===----------------------------------------------------------------------===//
20 // MLIRConvertBytecodeParams
21 //===----------------------------------------------------------------------===//
22 
23 bool mlir::lsp::fromJSON(const llvm::json::Value &value,
25  llvm::json::Path path) {
26  llvm::json::ObjectMapper o(value, path);
27  return o && o.map("uri", result.uri);
28 }
29 
30 //===----------------------------------------------------------------------===//
31 // MLIRConvertBytecodeResult
32 //===----------------------------------------------------------------------===//
33 
34 llvm::json::Value mlir::lsp::toJSON(const MLIRConvertBytecodeResult &value) {
35  return llvm::json::Object{{"output", value.output}};
36 }
llvm::json::Value toJSON(const URIForFile &value)
Add support for JSON serialization.
Definition: Protocol.cpp:257
bool fromJSON(const llvm::json::Value &value, URIForFile &result, llvm::json::Path path)
Definition: Protocol.cpp:242
Include the generated interface declarations.
This class represents the parameters used when converting between MLIR's bytecode and textual format.
Definition: Protocol.h:33
URIForFile uri
The input file containing the bytecode or textual format.
Definition: Protocol.h:35
This class represents the result of converting between MLIR's bytecode and textual format.
Definition: Protocol.h:48
std::string output
The resultant output of the conversion.
Definition: Protocol.h:50