1 //===-- LSPClient.h - Helper for ClangdLSPServer tests ----------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_UNITTESTS_LSPCLIENT_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_UNITTESTS_LSPCLIENT_H
12 #include <llvm/Support/Error.h>
13 #include <llvm/Support/JSON.h>
14 #include <condition_variable>
23 // A client library for talking to ClangdLSPServer in tests.
24 // Manages serialization of messages, pairing requests/repsonses, and implements
25 // the Transport abstraction.
28 std::unique_ptr
<TransportImpl
> T
;
31 // Represents the result of an LSP call: a promise for a result or error.
35 // Blocks up to 10 seconds for the result to be ready.
36 // Records a test failure if there was no reply.
37 llvm::Expected
<llvm::json::Value
> take();
38 // Like take(), but records a test failure if the result was an error.
39 llvm::json::Value
takeValue();
42 // Should be called once to provide the value.
43 void set(llvm::Expected
<llvm::json::Value
> V
);
45 std::optional
<llvm::Expected
<llvm::json::Value
>> Value
;
47 std::condition_variable CV
;
49 friend TransportImpl
; // Calls set().
54 LSPClient(LSPClient
&&) = delete;
55 LSPClient
&operator=(LSPClient
&&) = delete;
57 // Enqueue an LSP method call, returns a promise for the reply. Threadsafe.
58 CallResult
&call(llvm::StringRef Method
, llvm::json::Value Params
);
59 // Enqueue an LSP notification. Threadsafe.
60 void notify(llvm::StringRef Method
, llvm::json::Value Params
);
61 // Returns matching notifications since the last call to takeNotifications.
62 std::vector
<llvm::json::Value
> takeNotifications(llvm::StringRef Method
);
63 // The transport is shut down after all pending messages are sent.
66 // Shorthand for common LSP methods. Relative paths are passed to testPath().
67 static llvm::json::Value
uri(llvm::StringRef Path
);
68 static llvm::json::Value
documentID(llvm::StringRef Path
);
69 void didOpen(llvm::StringRef Path
, llvm::StringRef Content
);
70 void didChange(llvm::StringRef Path
, llvm::StringRef Content
);
71 void didClose(llvm::StringRef Path
);
72 // Blocks until the server is idle (using the 'sync' protocol extension).
74 // sync()s to ensure pending diagnostics arrive, and returns the newest set.
75 std::optional
<std::vector
<llvm::json::Value
>>
76 diagnostics(llvm::StringRef Path
);
78 // Get the transport used to connect this client to a ClangdLSPServer.
79 Transport
&transport();
87 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_UNITTESTS_LSPCLIENT_H