forked from BrianHicks/tree-grepper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguage.rs
69 lines (60 loc) · 2.01 KB
/
language.rs
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
use anyhow::{Context, Result};
use libloading::{Symbol, Library};
#[cfg(all(unix, not(target_os = "macos")))]
const DYLIB_EXTENSION: &str = "so";
#[cfg(windows)]
const DYLIB_EXTENSION: &str = "dll";
#[cfg(all(unix, target_os = "macos"))]
const DYLIB_EXTENSION: &str = "dylib";
#[derive(Debug)]
pub struct Language {
inner: tree_sitter::Language,
name: String,
}
impl Language {
pub fn get_language(runtime_path: &std::path::Path, name: &str) -> Result<Self> {
let name = name.to_ascii_lowercase();
let mut library_path = runtime_path.join(&name);
library_path.set_extension(DYLIB_EXTENSION);
let library = unsafe { Library::new(&library_path) }
.with_context(|| format!("Error opening dynamic library {:?}", &library_path))?;
let language_fn_name = format!("tree_sitter_{}", name.replace('-', "_"));
let language = unsafe {
let language_fn: Symbol<unsafe extern "C" fn() -> tree_sitter::Language> = library
.get(language_fn_name.as_bytes())
.with_context(|| format!("Failed to load symbol {}", language_fn_name))?;
language_fn()
};
std::mem::forget(library);
Ok(Self {
name,
inner: language,
})
}
pub fn name(&self) -> &str {
&self.name
}
pub fn name_for_types_builder(&self) -> &'static str {
match self.name.as_str() {
"c" => "c",
"cpp" => "cpp",
"elixir" => "elixir",
"elm" => "elm",
"go" => "go",
"haskell" => "haskell",
"java" => "java",
"javascript" => "js",
"markdown" => "markdown",
"nix" => "nix",
"php" => "php",
"python" => "py",
"ruby" => "ruby",
"rust" => "rust",
"typescript" => "ts",
_ => panic!("Unknown language: {}", self.name),
}
}
pub fn ts_lang(&self) -> tree_sitter::Language {
self.inner
}
}