-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathlang_processor.py
executable file
·68 lines (53 loc) · 2.09 KB
/
lang_processor.py
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
# Copyright (c) 2019-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
#
from abc import ABC
import typing as tp
NEWLINE_TOK = "NEW_LINE" # different name to avoid confusions by the tokenizer
class LangProcessor(ABC):
processors: tp.Dict[str, tp.Type["LangProcessor"]] = {}
@classmethod
def _language(cls) -> str:
# note: properties only work on instances, not on the class
# (unless we reimplement the decorator), so it's simpler to have
# a method on the class for when we need it, and the property on
# the instance for a simpler API
parts = cls.__name__.split("Processor")
if len(parts) != 2 or parts[1]:
raise RuntimeError(
"language processors class name should be that format: "
f"YourlanguageProcessor (got: {cls.__name__})"
)
return parts[0].lower()
@property
def language(self) -> str:
"""Language of the processor"""
return self._language()
@classmethod
def __init_subclass__(cls) -> None:
super().__init_subclass__()
cls.processors[cls._language()] = cls
def tokenize_code(
self, code: str, keep_comments: bool = False, process_strings: bool = True
) -> tp.List[str]:
raise NotImplementedError
def detokenize_code(self, code: tp.Union[tp.List[str], str]) -> str:
raise NotImplementedError
def obfuscate_code(self, code):
raise NotImplementedError
def obfuscate_types(self, code: str) -> tp.Tuple[str, str]:
raise NotImplementedError
def extract_functions(
self, code: tp.Union[str, tp.List[str]], tokenized: bool = True,
) -> tp.Tuple[tp.List[str], tp.List[str]]:
raise NotImplementedError
def get_function_name(self, function: str) -> str:
raise NotImplementedError
def extract_arguments(self, function):
raise NotImplementedError
@staticmethod
def format(code: str) -> str:
raise NotImplementedError