thread-language 0.1.1

Language definitions and parsers for Thread
Documentation
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
// SPDX-FileCopyrightText: 2022 Herrington Darkholme <2883231+HerringtonDarkholme@users.noreply.github.com>
// SPDX-FileCopyrightText: 2025 Knitli Inc. <knitli@knit.li>
// SPDX-FileContributor: Adam Poulemanos <adam@knit.li>
//
// SPDX-License-Identifier: AGPL-3.0-or-later AND MIT

//! Tree-sitter parser initialization and caching for all supported languages.
//!
//! Provides cached, zero-cost access to tree-sitter language parsers. Each parser is initialized once and cached using
//! [`std::sync::OnceLock`] for thread-safe, lazy initialization.
//!
//! ## Feature Flags
//!
//! ### `all-parsers`
//! When enabled (default), imports all tree-sitter parser crates and provides
//! full parser functionality. Disable for WebAssembly builds where tree-sitter
//! cannot be compiled.
//!
//! ### Individual Language Features
//!
//! Each language has its own feature flag, so you can enable whichever ones you need.
//!
//! ### `napi-environment`
//! Disables tree-sitter parsing functionality because tree-sitter cannot build
//! in a NAPI environment. NAPI (Node.js API) is used for building WASM
//! modules for Node.js. (note: WASM builds for browser or other environments can support tree-sitter)
//!
//! #### Napi-compatible Languages
//! You can use these languages in a NAPI environment:
//! - You can use the `napi-compatible` flag as a shortcut to enable all napi-compatible languages.
//! - `css`
//! - `html`
//! - `javascript`
//! - `typescript`
//! - `tsx`
//!
//! ## Parser Functions
//!
//! Each language has a corresponding `language_*()` function that returns a
//! cached [`TSLanguage`] instance:
//!
//! ```rust
//! use thread_language::parsers::{language_rust, language_javascript};
//!
//! let rust_lang = language_rust();
//! let js_lang = language_javascript();
//! ```
//!
//! ## Caching Strategy
//!
//! Parsers use [`std::sync::LazyLock`] for optimal performance:
//! - First call initializes the parser
//! - Subsequent calls return the cached instance
//! - Thread-safe with no synchronization overhead after initialization

#[cfg(all(
    any(
        feature = "all-parsers",
        feature = "bash",
        feature = "c",
        feature = "cpp",
        feature = "csharp",
        feature = "css",
        feature = "elixir",
        feature = "go",
        feature = "haskell",
        feature = "hcl",
        feature = "html",
        feature = "java",
        feature = "javascript",
        feature = "json",
        feature = "kotlin",
        feature = "lua",
        feature = "nix",
        feature = "php",
        feature = "python",
        feature = "ruby",
        feature = "rust",
        feature = "scala",
        feature = "solidity",
        feature = "swift",
        feature = "tsx",
        feature = "typescript",
        feature = "yaml"
    ),
    not(any(
        feature = "napi-environment",
        feature = "napi-compatible",
        feature = "css-napi",
        feature = "html-napi",
        feature = "javascript-napi",
        feature = "typescript-napi",
        feature = "tsx-napi"
    ))
))]
macro_rules! into_lang {
    ($lang: ident, $field: ident) => {
        $lang::$field.into()
    };
    ($lang: ident) => {
        into_lang!($lang, LANGUAGE)
    };
}

// Napi-environment specific macro
#[cfg(all(
    feature = "napi-environment",
    any(
        feature = "napi-compatible",
        feature = "css-napi",
        feature = "html-napi",
        feature = "javascript-napi",
        feature = "typescript-napi",
        feature = "tsx-napi"
    )
))]
macro_rules! into_lang {
    ($lang: ident, $field: ident) => {
        unimplemented!(
            "tree-sitter parser is not implemented when feature flag [napi-environment] is on."
        )
    };
    ($lang: ident) => {
        into_lang!($lang, LANGUAGE)
    };
}

// With TS-enabled, we can always use the `into_napi_lang!` macro
// to convert the language into a NAPI-compatible type.
// We just can't do it... in NAPI.
#[cfg(all(
    any(
        feature = "all-parsers",
        feature = "bash",
        feature = "c",
        feature = "cpp",
        feature = "csharp",
        feature = "css",
        feature = "elixir",
        feature = "go",
        feature = "haskell",
        feature = "hcl",
        feature = "html",
        feature = "java",
        feature = "javascript",
        feature = "json",
        feature = "kotlin",
        feature = "lua",
        feature = "nix",
        feature = "php",
        feature = "python",
        feature = "ruby",
        feature = "rust",
        feature = "scala",
        feature = "solidity",
        feature = "swift",
        feature = "tsx",
        feature = "typescript",
        feature = "yaml"
    ),
    not(feature = "napi-environment")
))]
macro_rules! into_napi_lang {
    ($lang: path) => {
        $lang.into()
    };
}

// Napi-environment specific macro
#[cfg(any(
    feature = "napi-environment",
    feature = "napi-compatible",
    feature = "css-napi",
    feature = "html-napi",
    feature = "javascript-napi",
    feature = "typescript-napi",
    feature = "tsx-napi"
))]
macro_rules! into_napi_lang {
    ($lang: path) => {
        $lang.into()
    };
}

use std::sync::OnceLock;
use thread_ast_engine::tree_sitter::TSLanguage;

// Cached language instances for zero-cost repeated access
#[cfg(any(feature = "bash", feature = "all-parsers"))]
static BASH_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "c", feature = "all-parsers"))]
static C_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "cpp", feature = "all-parsers"))]
static CPP_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "csharp", feature = "all-parsers"))]
static CSHARP_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(
    feature = "css",
    feature = "all-parsers",
    feature = "css-napi",
    feature = "napi-compatible"
))]
static CSS_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "elixir", feature = "all-parsers"))]
static ELIXIR_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "go", feature = "all-parsers"))]
static GO_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "haskell", feature = "all-parsers"))]
static HASKELL_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "hcl", feature = "all-parsers"))]
static HCL_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(
    feature = "html",
    feature = "all-parsers",
    feature = "html-napi",
    feature = "napi-compatible"
))]
static HTML_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "java", feature = "all-parsers"))]
static JAVA_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(
    feature = "javascript",
    feature = "all-parsers",
    feature = "javascript-napi",
    feature = "napi-compatible"
))]
static JAVASCRIPT_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "json", feature = "all-parsers"))]
static JSON_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "kotlin", feature = "all-parsers"))]
static KOTLIN_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "lua", feature = "all-parsers"))]
static LUA_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "nix", feature = "all-parsers"))]
static NIX_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "php", feature = "all-parsers"))]
static PHP_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "python", feature = "all-parsers"))]
static PYTHON_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "ruby", feature = "all-parsers"))]
static RUBY_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "rust", feature = "all-parsers"))]
static RUST_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "scala", feature = "all-parsers"))]
static SCALA_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "solidity", feature = "all-parsers"))]
static SOLIDITY_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "swift", feature = "all-parsers"))]
static SWIFT_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(
    feature = "tsx",
    feature = "all-parsers",
    feature = "tsx-napi",
    feature = "napi-compatible"
))]
static TSX_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(
    feature = "typescript",
    feature = "all-parsers",
    feature = "typescript-napi",
    feature = "napi-compatible"
))]
static TYPESCRIPT_LANG: OnceLock<TSLanguage> = OnceLock::new();
#[cfg(any(feature = "yaml", feature = "all-parsers"))]
static YAML_LANG: OnceLock<TSLanguage> = OnceLock::new();

#[cfg(any(feature = "bash", feature = "all-parsers"))]
pub fn language_bash() -> TSLanguage {
    BASH_LANG
        .get_or_init(|| into_lang!(tree_sitter_bash))
        .clone()
}
#[cfg(any(feature = "c", feature = "all-parsers"))]
pub fn language_c() -> TSLanguage {
    C_LANG.get_or_init(|| into_lang!(tree_sitter_c)).clone()
}
#[cfg(any(feature = "cpp", feature = "all-parsers"))]
pub fn language_cpp() -> TSLanguage {
    CPP_LANG.get_or_init(|| into_lang!(tree_sitter_cpp)).clone()
}
#[cfg(any(feature = "csharp", feature = "all-parsers"))]
pub fn language_c_sharp() -> TSLanguage {
    CSHARP_LANG
        .get_or_init(|| into_lang!(tree_sitter_c_sharp))
        .clone()
}
#[cfg(any(
    feature = "css",
    feature = "all-parsers",
    feature = "css-napi",
    feature = "napi-compatible"
))]
pub fn language_css() -> TSLanguage {
    CSS_LANG
        .get_or_init(|| into_napi_lang!(tree_sitter_css::LANGUAGE))
        .clone()
}
#[cfg(any(feature = "elixir", feature = "all-parsers"))]
pub fn language_elixir() -> TSLanguage {
    ELIXIR_LANG
        .get_or_init(|| into_lang!(tree_sitter_elixir))
        .clone()
}
#[cfg(any(feature = "go", feature = "all-parsers"))]
pub fn language_go() -> TSLanguage {
    GO_LANG.get_or_init(|| into_lang!(tree_sitter_go)).clone()
}

#[cfg(any(feature = "haskell", feature = "all-parsers"))]
pub fn language_haskell() -> TSLanguage {
    HASKELL_LANG
        .get_or_init(|| into_lang!(tree_sitter_haskell))
        .clone()
}

#[cfg(any(feature = "hcl", feature = "all-parsers"))]
pub fn language_hcl() -> TSLanguage {
    HCL_LANG.get_or_init(|| into_lang!(tree_sitter_hcl)).clone()
}

#[cfg(any(
    feature = "html",
    feature = "all-parsers",
    feature = "html-napi",
    feature = "napi-compatible"
))]
pub fn language_html() -> TSLanguage {
    HTML_LANG
        .get_or_init(|| into_napi_lang!(tree_sitter_html::LANGUAGE))
        .clone()
}

#[cfg(any(feature = "java", feature = "all-parsers"))]
pub fn language_java() -> TSLanguage {
    JAVA_LANG
        .get_or_init(|| into_lang!(tree_sitter_java))
        .clone()
}
#[cfg(any(
    feature = "javascript",
    feature = "all-parsers",
    feature = "javascript-napi",
    feature = "napi-compatible"
))]
pub fn language_javascript() -> TSLanguage {
    JAVASCRIPT_LANG
        .get_or_init(|| into_napi_lang!(tree_sitter_javascript::LANGUAGE))
        .clone()
}
#[cfg(any(feature = "json", feature = "all-parsers"))]
pub fn language_json() -> TSLanguage {
    JSON_LANG
        .get_or_init(|| into_lang!(tree_sitter_json))
        .clone()
}
#[cfg(any(feature = "kotlin", feature = "all-parsers"))]
pub fn language_kotlin() -> TSLanguage {
    KOTLIN_LANG
        .get_or_init(|| into_lang!(tree_sitter_kotlin))
        .clone()
}

#[cfg(any(feature = "lua", feature = "all-parsers"))]
pub fn language_lua() -> TSLanguage {
    LUA_LANG.get_or_init(|| into_lang!(tree_sitter_lua)).clone()
}

#[cfg(any(feature = "nix", feature = "all-parsers"))]
pub fn language_nix() -> TSLanguage {
    NIX_LANG.get_or_init(|| into_lang!(tree_sitter_nix)).clone()
}

#[cfg(any(feature = "php", feature = "all-parsers"))]
pub fn language_php() -> TSLanguage {
    PHP_LANG
        .get_or_init(|| into_lang!(tree_sitter_php, LANGUAGE_PHP_ONLY))
        .clone()
}
#[cfg(any(feature = "python", feature = "all-parsers"))]
pub fn language_python() -> TSLanguage {
    PYTHON_LANG
        .get_or_init(|| into_lang!(tree_sitter_python))
        .clone()
}
#[cfg(any(feature = "ruby", feature = "all-parsers"))]
pub fn language_ruby() -> TSLanguage {
    RUBY_LANG
        .get_or_init(|| into_lang!(tree_sitter_ruby))
        .clone()
}
#[cfg(any(feature = "rust", feature = "all-parsers"))]
pub fn language_rust() -> TSLanguage {
    RUST_LANG
        .get_or_init(|| into_lang!(tree_sitter_rust))
        .clone()
}
#[cfg(any(feature = "scala", feature = "all-parsers"))]
pub fn language_scala() -> TSLanguage {
    SCALA_LANG
        .get_or_init(|| into_lang!(tree_sitter_scala))
        .clone()
}
#[cfg(any(feature = "solidity", feature = "all-parsers"))]
pub fn language_solidity() -> TSLanguage {
    SOLIDITY_LANG
        .get_or_init(|| into_lang!(tree_sitter_solidity))
        .clone()
}
#[cfg(any(feature = "swift", feature = "all-parsers"))]
pub fn language_swift() -> TSLanguage {
    SWIFT_LANG
        .get_or_init(|| into_lang!(tree_sitter_swift))
        .clone()
}
#[cfg(any(
    feature = "tsx",
    feature = "all-parsers",
    feature = "tsx-napi",
    feature = "napi-compatible"
))]
pub fn language_tsx() -> TSLanguage {
    TSX_LANG
        .get_or_init(|| into_napi_lang!(tree_sitter_typescript::LANGUAGE_TSX))
        .clone()
}
#[cfg(any(
    feature = "typescript",
    feature = "all-parsers",
    feature = "typescript-napi",
    feature = "napi-compatible"
))]
pub fn language_typescript() -> TSLanguage {
    TYPESCRIPT_LANG
        .get_or_init(|| into_napi_lang!(tree_sitter_typescript::LANGUAGE_TYPESCRIPT))
        .clone()
}
#[cfg(any(feature = "yaml", feature = "all-parsers"))]
pub fn language_yaml() -> TSLanguage {
    YAML_LANG
        .get_or_init(|| into_lang!(tree_sitter_yaml))
        .clone()
}