1use super::*;
23use serde::{de::DeserializeOwned, Serialize};
45pub trait Notification {
6type Params: DeserializeOwned + Serialize + Send + Sync + 'static;
7const METHOD: &'static str;
8}
910#[macro_export]
11macro_rules! lsp_notification {
12 ("$/cancelRequest") => {
13$crate::notification::Cancel
14};
15 ("$/setTrace") => {
16$crate::notification::SetTrace
17};
18 ("$/logTrace") => {
19$crate::notification::LogTrace
20};
21 ("initialized") => {
22$crate::notification::Initialized
23};
24 ("exit") => {
25$crate::notification::Exit
26};
2728 ("window/showMessage") => {
29$crate::notification::ShowMessage
30};
31 ("window/logMessage") => {
32$crate::notification::LogMessage
33};
34 ("window/workDoneProgress/cancel") => {
35$crate::notification::WorkDoneProgressCancel
36};
3738 ("telemetry/event") => {
39$crate::notification::TelemetryEvent
40};
4142 ("textDocument/didOpen") => {
43$crate::notification::DidOpenTextDocument
44};
45 ("textDocument/didChange") => {
46$crate::notification::DidChangeTextDocument
47};
48 ("textDocument/willSave") => {
49$crate::notification::WillSaveTextDocument
50};
51 ("textDocument/didSave") => {
52$crate::notification::DidSaveTextDocument
53};
54 ("textDocument/didClose") => {
55$crate::notification::DidCloseTextDocument
56};
57 ("textDocument/publishDiagnostics") => {
58$crate::notification::PublishDiagnostics
59};
6061 ("workspace/didChangeConfiguration") => {
62$crate::notification::DidChangeConfiguration
63};
64 ("workspace/didChangeWatchedFiles") => {
65$crate::notification::DidChangeWatchedFiles
66};
67 ("workspace/didChangeWorkspaceFolders") => {
68$crate::notification::DidChangeWorkspaceFolders
69};
70 ("$/progress") => {
71$crate::notification::Progress
72};
73 ("workspace/didCreateFiles") => {
74$crate::notification::DidCreateFiles
75};
76 ("workspace/didRenameFiles") => {
77$crate::notification::DidRenameFiles
78};
79 ("workspace/didDeleteFiles") => {
80$crate::notification::DidDeleteFiles
81};
82}
8384/// The base protocol now offers support for request cancellation. To cancel a request,
85/// a notification message with the following properties is sent:
86///
87/// A request that got canceled still needs to return from the server and send a response back.
88/// It can not be left open / hanging. This is in line with the JSON RPC protocol that requires
89/// that every request sends a response back. In addition it allows for returning partial results on cancel.
90#[derive(Debug)]
91pub enum Cancel {}
9293impl Notification for Cancel {
94type Params = CancelParams;
95const METHOD: &'static str = "$/cancelRequest";
96}
9798/// A notification that should be used by the client to modify the trace
99/// setting of the server.
100#[derive(Debug)]
101pub enum SetTrace {}
102103impl Notification for SetTrace {
104type Params = SetTraceParams;
105const METHOD: &'static str = "$/setTrace";
106}
107108/// A notification to log the trace of the server’s execution.
109/// The amount and content of these notifications depends on the current trace configuration.
110///
111/// `LogTrace` should be used for systematic trace reporting. For single debugging messages,
112/// the server should send `LogMessage` notifications.
113#[derive(Debug)]
114pub enum LogTrace {}
115116impl Notification for LogTrace {
117type Params = LogTraceParams;
118const METHOD: &'static str = "$/logTrace";
119}
120121/// The initialized notification is sent from the client to the server after the client received
122/// the result of the initialize request but before the client is sending any other request or
123/// notification to the server. The server can use the initialized notification for example to
124/// dynamically register capabilities.
125#[derive(Debug)]
126pub enum Initialized {}
127128impl Notification for Initialized {
129type Params = InitializedParams;
130const METHOD: &'static str = "initialized";
131}
132133/// A notification to ask the server to exit its process.
134/// The server should exit with success code 0 if the shutdown request has been received before;
135/// otherwise with error code 1.
136#[derive(Debug)]
137pub enum Exit {}
138139impl Notification for Exit {
140type Params = ();
141const METHOD: &'static str = "exit";
142}
143144/// The show message notification is sent from a server to a client to ask the client to display a particular message
145/// in the user interface.
146#[derive(Debug)]
147pub enum ShowMessage {}
148149impl Notification for ShowMessage {
150type Params = ShowMessageParams;
151const METHOD: &'static str = "window/showMessage";
152}
153154/// The log message notification is sent from the server to the client to ask the client to log a particular message.
155#[derive(Debug)]
156pub enum LogMessage {}
157158impl Notification for LogMessage {
159type Params = LogMessageParams;
160const METHOD: &'static str = "window/logMessage";
161}
162163/// The telemetry notification is sent from the server to the client to ask the client to log a telemetry event.
164/// The protocol doesn't specify the payload since no interpretation of the data happens in the protocol. Most clients even don't handle
165/// the event directly but forward them to the extensions owning the corresponding server issuing the event.
166#[derive(Debug)]
167pub enum TelemetryEvent {}
168169impl Notification for TelemetryEvent {
170type Params = OneOf<LSPObject, LSPArray>;
171const METHOD: &'static str = "telemetry/event";
172}
173174/// A notification sent from the client to the server to signal the change of configuration settings.
175#[derive(Debug)]
176pub enum DidChangeConfiguration {}
177178impl Notification for DidChangeConfiguration {
179type Params = DidChangeConfigurationParams;
180const METHOD: &'static str = "workspace/didChangeConfiguration";
181}
182183/// The document open notification is sent from the client to the server to signal newly opened text documents.
184/// The document's truth is now managed by the client and the server must not try to read the document's truth
185/// using the document's uri.
186#[derive(Debug)]
187pub enum DidOpenTextDocument {}
188189impl Notification for DidOpenTextDocument {
190type Params = DidOpenTextDocumentParams;
191const METHOD: &'static str = "textDocument/didOpen";
192}
193194/// The document change notification is sent from the client to the server to signal changes to a text document.
195/// In 2.0 the shape of the params has changed to include proper version numbers and language ids.
196#[derive(Debug)]
197pub enum DidChangeTextDocument {}
198199impl Notification for DidChangeTextDocument {
200type Params = DidChangeTextDocumentParams;
201const METHOD: &'static str = "textDocument/didChange";
202}
203204/// The document will save notification is sent from the client to the server before the document
205/// is actually saved.
206#[derive(Debug)]
207pub enum WillSaveTextDocument {}
208209impl Notification for WillSaveTextDocument {
210type Params = WillSaveTextDocumentParams;
211const METHOD: &'static str = "textDocument/willSave";
212}
213214/// The document close notification is sent from the client to the server when the document got closed in the client.
215/// The document's truth now exists where the document's uri points to (e.g. if the document's uri is a file uri
216/// the truth now exists on disk).
217#[derive(Debug)]
218pub enum DidCloseTextDocument {}
219220impl Notification for DidCloseTextDocument {
221type Params = DidCloseTextDocumentParams;
222const METHOD: &'static str = "textDocument/didClose";
223}
224225/// The document save notification is sent from the client to the server when the document was saved in the client.
226#[derive(Debug)]
227pub enum DidSaveTextDocument {}
228229impl Notification for DidSaveTextDocument {
230type Params = DidSaveTextDocumentParams;
231const METHOD: &'static str = "textDocument/didSave";
232}
233234/// The watched files notification is sent from the client to the server when the client detects changes to files and folders
235/// watched by the language client (note although the name suggest that only file events are sent it is about file system events which include folders as well).
236/// It is recommended that servers register for these file system events using the registration mechanism.
237/// In former implementations clients pushed file events without the server actively asking for it.
238#[derive(Debug)]
239pub enum DidChangeWatchedFiles {}
240241impl Notification for DidChangeWatchedFiles {
242type Params = DidChangeWatchedFilesParams;
243const METHOD: &'static str = "workspace/didChangeWatchedFiles";
244}
245246/// The workspace/didChangeWorkspaceFolders notification is sent from the client to the server to inform the server
247/// about workspace folder configuration changes
248#[derive(Debug)]
249pub enum DidChangeWorkspaceFolders {}
250251impl Notification for DidChangeWorkspaceFolders {
252type Params = DidChangeWorkspaceFoldersParams;
253const METHOD: &'static str = "workspace/didChangeWorkspaceFolders";
254}
255256/// Diagnostics notification are sent from the server to the client to signal results of validation runs.
257#[derive(Debug)]
258pub enum PublishDiagnostics {}
259260impl Notification for PublishDiagnostics {
261type Params = PublishDiagnosticsParams;
262const METHOD: &'static str = "textDocument/publishDiagnostics";
263}
264265/// The progress notification is sent from the server to the client to ask
266/// the client to indicate progress.
267#[derive(Debug)]
268pub enum Progress {}
269270impl Notification for Progress {
271type Params = ProgressParams;
272const METHOD: &'static str = "$/progress";
273}
274275/// The `window/workDoneProgress/cancel` notification is sent from the client
276/// to the server to cancel a progress initiated on the server side using the `window/workDoneProgress/create`.
277#[derive(Debug)]
278pub enum WorkDoneProgressCancel {}
279280impl Notification for WorkDoneProgressCancel {
281type Params = WorkDoneProgressCancelParams;
282const METHOD: &'static str = "window/workDoneProgress/cancel";
283}
284285/// The did create files notification is sent from the client to the server when files were created from within the client.
286#[derive(Debug)]
287pub enum DidCreateFiles {}
288289impl Notification for DidCreateFiles {
290type Params = CreateFilesParams;
291const METHOD: &'static str = "workspace/didCreateFiles";
292}
293294/// The did rename files notification is sent from the client to the server when files were renamed from within the client.
295#[derive(Debug)]
296pub enum DidRenameFiles {}
297298impl Notification for DidRenameFiles {
299type Params = RenameFilesParams;
300const METHOD: &'static str = "workspace/didRenameFiles";
301}
302303/// The did delete files notification is sent from the client to the server when files were deleted from within the client.
304#[derive(Debug)]
305pub enum DidDeleteFiles {}
306307impl Notification for DidDeleteFiles {
308type Params = DeleteFilesParams;
309const METHOD: &'static str = "workspace/didDeleteFiles";
310}
311312#[cfg(test)]
313mod test {
314use super::*;
315316fn fake_call<N>()
317where
318N: Notification,
319 N::Params: serde::Serialize,
320 {
321 }
322323macro_rules! check_macro {
324 ($name:tt) => {
325// check whether the macro name matches the method
326assert_eq!(<lsp_notification!($name) as Notification>::METHOD, $name);
327// test whether type checking passes for each component
328fake_call::<lsp_notification!($name)>();
329 };
330 }
331332#[test]
333fn check_macro_definitions() {
334check_macro!("$/cancelRequest");
335check_macro!("$/progress");
336check_macro!("$/logTrace");
337check_macro!("$/setTrace");
338check_macro!("initialized");
339check_macro!("exit");
340check_macro!("window/showMessage");
341check_macro!("window/logMessage");
342check_macro!("window/workDoneProgress/cancel");
343check_macro!("telemetry/event");
344check_macro!("textDocument/didOpen");
345check_macro!("textDocument/didChange");
346check_macro!("textDocument/willSave");
347check_macro!("textDocument/didSave");
348check_macro!("textDocument/didClose");
349check_macro!("textDocument/publishDiagnostics");
350check_macro!("workspace/didChangeConfiguration");
351check_macro!("workspace/didChangeWatchedFiles");
352check_macro!("workspace/didChangeWorkspaceFolders");
353check_macro!("workspace/didCreateFiles");
354check_macro!("workspace/didRenameFiles");
355check_macro!("workspace/didDeleteFiles");
356 }
357358#[test]
359 #[cfg(feature = "proposed")]
360fn check_proposed_macro_definitions() {}
361}