-
Notifications
You must be signed in to change notification settings - Fork 1
/
extractor.rs
460 lines (399 loc) · 12.2 KB
/
extractor.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
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
use crate::rule::get_rule;
use crate::symbol::Symbol;
use std::collections::HashMap;
use tree_sitter::{Language, Parser, Query, QueryCursor};
pub enum Extractor {
Rust,
TypeScript,
Go,
Python,
JavaScript,
Java,
Kotlin,
Swift,
}
impl Extractor {
pub fn extract(&self, f: &String, s: &String) -> Vec<Symbol> {
match self {
Extractor::Rust => {
let lang = &tree_sitter_rust::language();
self._extract(f, s, lang)
}
Extractor::TypeScript => {
let lang = &tree_sitter_typescript::language_typescript();
self._extract(f, s, lang)
}
Extractor::Go => {
let lang = &tree_sitter_go::language();
self._extract(f, s, lang)
.into_iter()
.filter(|each| {
return each.name != "_";
})
.collect()
}
Extractor::Python => {
let lang = &tree_sitter_python::language();
self._extract(f, s, lang)
}
Extractor::JavaScript => {
let lang = &tree_sitter_javascript::language();
self._extract(f, s, lang)
}
Extractor::Java => {
let lang = &tree_sitter_javascript::language();
self._extract(f, s, lang)
}
Extractor::Kotlin => {
let lang = &tree_sitter_kotlin::language();
self._extract(f, s, lang)
}
Extractor::Swift => {
let lang = &tree_sitter_swift::language();
self._extract(f, s, lang)
}
}
}
fn _extract(&self, f: &String, s: &String, language: &Language) -> Vec<Symbol> {
let mut parser = Parser::new();
parser
.set_language(language)
.expect("Error loading grammar");
let tree = parser.parse(s, None).unwrap();
let rule = get_rule(&self);
let mut ret = Vec::new();
let mut taken = HashMap::new();
// defs
{
let query = Query::new(language, rule.export_grammar).unwrap();
let mut cursor = QueryCursor::new();
let matches = cursor.matches(&query, tree.root_node(), s.as_bytes());
for mat in matches {
let matched_node = mat.captures[0].node;
let range = matched_node.range();
if let Ok(str_slice) = matched_node.utf8_text(s.as_bytes()) {
let string = str_slice.to_string();
let def_node = Symbol::new_def(f.clone(), string, range);
taken.insert(def_node.id(), ());
ret.push(def_node);
}
}
}
// refs
{
let query = Query::new(language, rule.import_grammar).unwrap();
let mut cursor = QueryCursor::new();
let matches = cursor.matches(&query, tree.root_node(), s.as_bytes());
for mat in matches {
let matched_node = mat.captures[0].node;
let range = matched_node.range();
if let Ok(str_slice) = matched_node.utf8_text(s.as_bytes()) {
let string = str_slice.to_string();
let ref_node = Symbol::new_ref(f.clone(), string, range);
if taken.contains_key(&ref_node.id()) {
continue;
}
ret.push(ref_node);
}
}
}
ret
}
}
#[cfg(test)]
mod tests {
use crate::extractor::Extractor;
use std::fs;
use tracing::info;
#[test]
fn extract_rust() {
let symbols = Extractor::Rust.extract(
&String::from("abc"),
&String::from(
r#"
pub enum Extractor {
RUST,
}
impl Extractor {
pub fn extract(&self, s: &String) {
match self {
Extractor::RUST => {
let mut parser = Parser::new();
let lang = &tree_sitter_rust::language();
parser
.set_language(lang)
.expect("Error loading Rust grammar");
let tree = parser.parse(s, None).unwrap();
let query_str = "(function_item name: (identifier) @function)";
let query = Query::new(lang, query_str).unwrap();
let mut cursor = QueryCursor::new();
let matches = cursor.matches(&query, tree.root_node(), s.as_bytes());
for mat in matches {
info!("{:?}", mat);
}
}
}
}
}
"#,
),
);
symbols.iter().for_each(|each| {
info!("symbol: {:?}", each);
})
}
#[test]
fn extract_typescript() {
let symbols = Extractor::TypeScript.extract(
&String::from("abc"),
&String::from(
r#"
import { store } from 'docx-deps';
import { toggleShowCommentNumbers } from '$common/redux/actions';
export type DocVerseDeps = DocVerseDepsImpl;
export { loadBlockitUIComponent } from 'docx-deps';
export const aaaaa = "cbde";
export interface ClickEvent {
index: number;
commentIds: string[];
}
export const loadUrlWebSDKResource = async () => {
}
function abc() {};
class NumbersManager {
private hideNumberTimer: number | null = null;
destroy() {
this.clearHideNumberTimer();
}
temporaryHideNumbers() {
this.clearHideNumberTimer();
store.dispatch(toggleShowCommentNumbers(false));
}
showNumbers() {
this.clearHideNumberTimer();
this.hideNumberTimer = window.setTimeout(() => {
store.dispatch(toggleShowCommentNumbers(true));
}, 600);
}
private clearHideNumberTimer() {
this.hideNumberTimer && window.clearTimeout(this.hideNumberTimer);
}
}
export default NumbersManager;
""#,
),
);
symbols.iter().for_each(|each| {
info!("symbol: {:?}", each);
})
}
#[test]
fn extract_golang() {
let symbols = Extractor::Go.extract(
&String::from("abc"),
&String::from(
r#"
package abc
type Parser struct {
*Headless
engine *sitter.Parser
}
func NormalFunc(lang *sitter.Language) string {
return "hello"
}
func (*Parser) NormalMethod(lang *sitter.Language) string {
return "hi"
}
func Abcd[T DataType](result *BaseFileResult[T]) []T {
return nil
}
func injectV1Group(v1group *gin.RouterGroup) {
// scope
scopeGroup := v1group.Group("/")
}
const a = "1"
var b = "2"
type c = d
"#,
),
);
symbols.iter().for_each(|each| {
info!("symbol: {:?}", each);
})
}
#[test]
#[ignore]
fn extract_typescript_file() {
// for testing extract rules
tracing_subscriber::fmt::init();
let file_path = "";
let file_content = &fs::read_to_string(file_path).unwrap_or_default();
let symbols = Extractor::TypeScript.extract(&String::from(file_path), file_content);
symbols.iter().for_each(|each| {
info!("symbol: {:?} {:?}", each.name, each.kind);
})
}
#[test]
fn extract_python() {
let symbols = Extractor::Python.extract(
&String::from("abc"),
&String::from(
r#"
def normal_fff(self, env_config: EnvConfig):
pass
class BaseStep(object):
def apply(self, env_config: EnvConfig, result: ResultContext):
raise NotImplementedError
def name(self) -> str:
raise NotImplementedError
def config_name(self) -> str:
return self.name().replace("-", "_")
def get_mod_config(self, env_config: EnvConfig):
return getattr(
env_config._repo_config.modules,
self.config_name(),
)
def enabled(self, env_config: EnvConfig) -> bool:
mod_config = self.get_mod_config(env_config)
return mod_config.enabled
"#,
),
);
symbols.iter().for_each(|each| {
info!("symbol: {:?}", each);
})
}
#[test]
fn extract_javascript() {
let symbols = Extractor::JavaScript.extract(
&String::from("abc"),
&String::from(
r#"
import React from 'react';
import { Component } from 'react';
import { SomeDefaultExport } from './some-module';
import * as SomeNamespace from './some-namespace';
import { namedFunction, namedClass } from './some-library';
export default function exampleFunction() {
console.log('This is an example function.');
}
export function namedFunction() {
console.log('This is a named function.');
}
export class namedClass {
constructor() {
console.log('This is a named class.');
}
}
const exportsObject = {
anotherFunction: function() {
console.log('This is another function.');
},
anotherClass: class {
constructor() {
console.log('This is another class.');
}
}
};
export { exportsObject };
"#,
),
);
symbols.iter().for_each(|each| {
info!("symbol: {:?}", each);
})
}
#[test]
fn extract_java() {
let symbols = Extractor::Java.extract(
&String::from("abc"),
&String::from(
r#"
package example;
import com.google.common.util.concurrent.Futures;
public class Example {
public static void hello() {
System.out.println(Futures.immediateCancelledFuture());
}
}
"#,
),
);
symbols.iter().for_each(|each| {
info!("symbol: {:?}", each);
})
}
#[test]
fn extract_kt() {
let symbols = Extractor::Kotlin.extract(
&String::from("abc"),
&String::from(
r#"
package com.google.samples.apps.nowinandroid.core.data
import android.util.Log
import com.google.samples.apps.nowinandroid.core.datastore.ChangeListVersions
import com.google.samples.apps.nowinandroid.core.network.model.NetworkChangeList
import kotlin.coroutines.cancellation.CancellationException
interface Synchronizer {
suspend fun getChangeListVersions(): ChangeListVersions
suspend fun updateChangeListVersions(update: ChangeListVersions.() -> ChangeListVersions)
suspend fun Syncable.sync() = [email protected](this@Synchronizer)
}
interface Syncable {
suspend fun syncWith(synchronizer: Synchronizer): Boolean
}
private suspend fun <T> suspendRunCatching(block: suspend () -> T): Result<T> = try {
Result.success(block())
} catch (cancellationException: CancellationException) {
throw cancellationException
} catch (exception: Exception) {
Log.i(
"suspendRunCatching",
"Failed to evaluate a suspendRunCatchingBlock. Returning failure Result",
exception,
)
Result.failure(exception)
}
"#,
),
);
symbols.iter().for_each(|each| {
info!("symbol: {:?}", each);
})
}
#[test]
fn extract_swift() {
let symbols = Extractor::Swift.extract(
&String::from("abc"),
&String::from(
r#"
import UIKit
import SwiftyJSON
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
let navigationController = self.window?.rootViewController as! UINavigationController
let viewController = navigationController.topViewController as! ViewController
if let file = Bundle.main.path(forResource: "SwiftyJSONTests", ofType: "json") {
do {
let data = try Data(contentsOf: URL(fileURLWithPath: file))
let json = try JSON(data: data)
viewController.json = json
} catch {
viewController.json = JSON.null
}
} else {
viewController.json = JSON.null
}
return true
}
}
"#,
),
);
symbols.iter().for_each(|each| {
info!("symbol: {:?}", each);
})
}
}