summaryrefslogtreecommitdiff
path: root/support/texlab/src/workspace/uri.rs
blob: 7fc24d238f096240addfe95233b228a3288af34c (plain)
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
use lsp_types::*;
use serde::{Deserialize, Serialize};
use std::fmt;
use std::hash::{Hash, Hasher};
use std::ops::Deref;
use std::path::Path;

#[derive(Debug, Eq, Clone, Serialize, Deserialize)]
pub struct Uri(Url);

impl Uri {
    pub fn from_file_path<P: AsRef<Path>>(path: P) -> Result<Self, ()> {
        Url::from_file_path(path).map(|url| url.into())
    }
}

impl PartialEq for Uri {
    fn eq(&self, other: &Self) -> bool {
        if cfg!(windows) {
            self.as_str().to_lowercase() == other.as_str().to_lowercase()
        } else {
            self.as_str() == other.as_str()
        }
    }
}

impl Hash for Uri {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.as_str().to_lowercase().hash(state);
    }
}

impl Deref for Uri {
    type Target = Url;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl From<Url> for Uri {
    fn from(url: Url) -> Self {
        Uri(url)
    }
}

impl Into<Url> for Uri {
    fn into(self) -> Url {
        self.0
    }
}

impl fmt::Display for Uri {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.0.fmt(f)
    }
}

pub trait AsUri {
    fn as_uri(&self) -> Uri;
}

impl AsUri for TextDocumentIdentifier {
    fn as_uri(&self) -> Uri {
        self.uri.clone().into()
    }
}

impl AsUri for TextDocumentPositionParams {
    fn as_uri(&self) -> Uri {
        self.text_document.as_uri()
    }
}