Unnamed repository; edit this file 'description' to name the repository.
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
use std::iter::repeat;

use Default::default;
use lsp_server::Request as LRq;
use lsp_types::*;
use rust_analyzer::lsp::ext::CodeAction;
use serde::{Deserialize, Serialize};
use ttools::{Tupl, With};

use crate::complete::Complete;
use crate::edi::lsp;
use crate::edi::st::*;
use crate::hov::{Hoverable, Hovring};
use crate::lsp::{RequestError, Rq};
use crate::sym::GoTo;
use crate::{CompletionState, act, sig, sym};

#[derive(Default, Debug, Serialize, Deserialize)]
pub struct Requests {
    // pub hovering:
    // Rq<Hovr, Option<Hovr>, (usize, usize), RequestError<HoverRequest>>,
    pub document_highlights: Rq<
        Vec<DocumentHighlight>,
        Vec<DocumentHighlight>,
        (),
        RequestError<DocumentHighlightRequest>,
    >,
    pub complete: CompletionState,
    pub sig_help: Rq<
        (SignatureHelp, usize, Option<usize>),
        Option<SignatureHelp>,
        (),
        RequestError<SignatureHelpRequest>,
    >, // vo, lines
    #[serde(serialize_with = "serialize_tokens")]
    #[serde(deserialize_with = "deserialize_tokens")]
    #[serde(default)]
    // #[serde(skip)]
    pub semantic_tokens: Rq<
        Box<[SemanticToken]>,
        Box<[SemanticToken]>,
        (),
        RequestError<lsp_request!("textDocument/semanticTokens/full")>,
    >,
    pub diag: Rq<
        String,
        Option<String>,
        (),
        RequestError<DocumentDiagnosticRequest>,
    >,
    #[serde(default)]
    pub inlay: Rq<
        Vec<InlayHint>,
        Vec<InlayHint>,
        (),
        RequestError<lsp_request!("textDocument/inlayHint")>,
    >,
    pub def: crate::RqS<
        LocationLink,
        lsp_request!("textDocument/definition"),
        (usize, usize),
        // RequestError<lsp_request!("textDocument/definition")>,
    >,
    #[serde(skip)]
    pub document_symbols: Rq<
        Option<Vec<DocumentSymbol>>,
        Option<DocumentSymbolResponse>,
        (),
        RequestError<lsp_request!("textDocument/documentSymbol")>,
    >,
    #[serde(skip)]
    pub git_diff: Rq<imara_diff::Diff, imara_diff::Diff, (), ()>,
}
use serde::ser::SerializeSeq;

fn untokenr<'de, D>(
    deserializer: D,
) -> Result<Vec<SemanticToken>, D::Error>
where
    D: serde::Deserializer<'de>,
{
    let data = Vec::<u32>::deserialize(deserializer)?;
    let chunks = data.chunks_exact(5);

    if !chunks.remainder().is_empty() {
        return Result::Err(serde::de::Error::custom(
            "Length is not divisible by 5",
        ));
    }

    Result::Ok(
        chunks
            .map(|chunk| SemanticToken {
                delta_line: chunk[0],
                delta_start: chunk[1],
                length: chunk[2],
                token_type: chunk[3],
                token_modifiers_bitset: chunk[4],
            })
            .collect(),
    )
}

fn tokenr<S>(
    tokens: &[SemanticToken],
    serializer: S,
) -> Result<S::Ok, S::Error>
where
    S: serde::Serializer,
{
    let mut seq = serializer.serialize_seq(Some(tokens.len() * 5))?;
    for token in tokens.iter() {
        seq.serialize_element(&token.delta_line)?;
        seq.serialize_element(&token.delta_start)?;
        seq.serialize_element(&token.length)?;
        seq.serialize_element(&token.token_type)?;
        seq.serialize_element(&token.token_modifiers_bitset)?;
    }
    seq.end()
}

fn deserialize_tokens_opt<'de, D>(
    deserializer: D,
) -> Result<Option<Vec<SemanticToken>>, D::Error>
where
    D: serde::Deserializer<'de>,
{
    #[derive(Deserialize)]
    #[serde(transparent)]
    struct Wrapper {
        #[serde(deserialize_with = "untokenr")]
        tokens: Vec<SemanticToken>,
    }

    Ok(Option::<Wrapper>::deserialize(deserializer)?
        .map(|wrapper| wrapper.tokens))
}

fn serialize_tokens_opt<S>(
    data: Option<&[SemanticToken]>,
    serializer: S,
) -> Result<S::Ok, S::Error>
where
    S: serde::Serializer,
{
    #[derive(Serialize)]
    #[serde(transparent)]
    struct Wrapper<'a> {
        #[serde(serialize_with = "tokenr")]
        tokens: &'a [SemanticToken],
    }

    let opt = data.as_ref().map(|t| Wrapper { tokens: t });

    opt.serialize(serializer)
}
pub fn deserialize_tokens<'de, D: serde::Deserializer<'de>>(
    ser: D,
) -> Result<
    Rq<
        Box<[SemanticToken]>,
        Box<[SemanticToken]>,
        (),
        RequestError<lsp_request!("textDocument/semanticTokens/full")>,
    >,
    D::Error,
> {
    {
        #[derive(Deserialize)]
        #[serde(transparent)]
        struct Wrapper {
            #[serde(deserialize_with = "untokenr")]
            tokens: Vec<SemanticToken>,
        }

        Ok(Option::<Wrapper>::deserialize(ser)?
            .map(|wrapper| wrapper.tokens))
    }
    .map(|x| Rq { result: x.map(Into::into), request: None })
}
pub fn serialize_tokens<S: serde::Serializer>(
    s: &Rq<
        Box<[SemanticToken]>,
        Box<[SemanticToken]>,
        (),
        RequestError<lsp_request!("textDocument/semanticTokens/full")>,
    >,
    ser: S,
) -> Result<S::Ok, S::Error> {
    {
        let data: &Option<Vec<SemanticToken>> =
            &s.result.clone().map(|x| x.to_vec());
        #[derive(Serialize)]
        #[serde(transparent)]
        struct Wrapper {
            #[serde(serialize_with = "tokenr")]
            tokens: Vec<SemanticToken>,
        }
        let opt = data.as_ref().map(|t| Wrapper { tokens: t.to_vec() });
        opt.serialize(ser)
    }
}
impl crate::edi::Editor {
    pub fn poll(&mut self) {
        lsp!(let l = self);
        for rq in l.req_rx.try_iter() {
            match rq {
                LRq { method: "workspace/diagnostic/refresh", .. } => {
                    // let x = l.pull_diag(o.into(), diag.result.clone());
                    // diag.request(l.runtime.spawn(x));
                }
                rq => log::debug!("discarding request {rq:?}"),
            }
        }
        self.requests.inlay.poll(|x, p| {
            x.ok().or(p.1).inspect(|x| {
                self.text.set_inlay(x);
            })
        });
        self.requests.document_highlights.poll(|x, _| {
            x.ok().map(|mut x| {
                x.sort_unstable_by_key(|x| x.range.start);
                x
            })
        });
        self.requests.diag.poll(|x, _| x.ok().flatten());
        if let CompletionState::Complete(rq) = &mut self.requests.complete
        {
            rq.poll(|f, (c, _)| {
                f.ok().flatten().map(|x| Complete {
                    r: x,
                    start: c,
                    selection: 0,
                    vo: 0,
                })
            });
        };
        match &mut self.state {
            State::Symbols(x) => {
                x.poll(|x, (_, p)| {
                    let Some(p) = p else { unreachable!() };

                    x.ok().flatten().map(|r| sym::Symbols {
                        data: r.with(p.data.drop::<1>()),
                        selection: 0,
                        vo: 0,
                        ..p
                    })
                });
            }
            State::CodeAction(x) => {
                if x.poll(|x, _| {
                    let lems = x.ok()??;
                    if lems.is_empty() {
                        self.bar.last_action =
                            "no code actions available".into();
                        None
                    } else {
                        self.bar.last_action =
                            format!("{} code actions", lems.len());
                        Some(act::CodeActions::new(lems))
                    }
                }) && x.result.is_none()
                {
                    self.state = State::Default;
                }
            }
            #[cfg(target_family = "unix")]
            State::Runnables(x) => {
                x.poll(|x, ((), old)| {
                    Some(crate::runnables::Runnables {
                        data: x.ok()?,
                        ..old.unwrap_or_default()
                    })
                });
            }
            State::Hovering(x) => {
                if x.poll(|x, (_, p)| {
                    Some(match p {
                        Some(mut p) if !p.of.is_empty() => {
                            p.of.extend(
                                x.ok().flatten().map(Hoverable::Lsp),
                            );
                            p
                        }
                        _ => Hovring {
                            of: vec![Hoverable::Lsp(x.ok()??)],
                            ..default()
                        },
                    })
                }) && super::lsp!(self).unwrap().redraw_now().unwrap() // im not a fan of this, but its kinda. necessary. annoyingly.
                    == ()
                    && x.result.is_none()
                {
                    self.state = State::Default;
                }
            }
            State::GoToL(z) => match &mut z.data.1 {
                Some(crate::gotolist::O::References(y)) => {
                    y.poll(|x, _| {
                        x.ok().flatten().map(|x| {
                            z.data.0 = x
                                .iter()
                                .map(GoTo::from)
                                .zip(repeat(None))
                                .collect()
                        })
                    });
                }
                Some(crate::gotolist::O::Impl(y)) => {
                    y.poll(|x, _| {
                        x.ok().map(|x| {
                            x.and_then(|x| try {
                                z.data.0 = match x {
                                    ImplementationResponse::Definition(
                                        Definition::Location(location),
                                    ) => vec![(GoTo::from(
                                        location,
                                    ),None)],
                                    
                                    ImplementationResponse::DefinitionLinkList(
                                        location_links,
                                    ) => location_links
                                        .into_iter()
                                        .map(|LocationLink {target_uri, target_range, .. }| {
                                            GoTo::from(
                                                Location {
                                                    uri: target_uri,
                                                    range: target_range,
                                                }
                                            )
                                        }).zip(repeat(None))
                                        .collect(),
                                   ImplementationResponse::Definition(Definition::LocationList(x))  => {unimplemented!()},
                                };
                            });
                        })
                    });
                }
                Some(crate::gotolist::O::Bmk) => {}
                Some(crate::gotolist::O::Incoming(x)) => {
                    x.poll(|x, _| {
                        let x = x.ok()?;
                        z.data.0 = x
                            .into_iter()
                            .map(|x| {
                                let y = Some(x.from.name.clone());
                                (GoTo::from(x), y)
                            })
                            .collect();
                        Some(())
                    });
                }
                Some(crate::gotolist::O::Outgoing(x)) => {
                    x.poll(|x, _| {
                        let x = x.ok()?;
                        z.data.0 = x
                            .into_iter()
                            .map(|x| {
                                let y = Some(x.to.name.clone());
                                (GoTo::from(x), y)
                            })
                            .collect();
                        Some(())
                    });
                }

                None => {}
            },
            _ => {}
        }
        self.requests.def.poll(|x, _| {
            x.ok().flatten().and_then(|x| match &x {
                // DefinitionResponse::Definition(x) => Some(x.clone()),
                DefinitionResponse::DefinitionLinkList([x, ..]) =>
                    Some(x.clone()),
                // DefinitionRequest::Definition([x, ..]) => Some(x.clone()),
                _ => None,
            })
        });
        self.requests
            .semantic_tokens
            .poll(|x, _| x.ok().inspect(|x| self.text.set_toks(&x)));
        self.requests.sig_help.poll(|x, ((), y)| {
            x.ok().flatten().map(|x| {
                if let Some((old_sig, vo, max)) = y
                    && &sig::active(&old_sig) == &sig::active(&x)
                {
                    (x, vo, max)
                } else {
                    (x, 0, None)
                }
            })
        });
        // self.requests.hovering.poll(|x, _| x.ok().flatten());
        self.requests.git_diff.poll(|x, _| x.ok());
        self.requests.document_symbols.poll(|x, _| {
            x.ok().flatten().map(|x| match x {
                DocumentSymbolResponse::SymbolInformationList(_) => None,
                DocumentSymbolResponse::DocumentSymbolList(x) => Some(x),
            })
        });
    }
}