Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge from develop v0.0.9 #10

Merged
merged 9 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ src/codetext.egg-info/*
*.pyc
*.so
*.whl

.idea
.vscode
*.iml
6 changes: 6 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "codetext"
version = "0.0.8"
version = "0.0.9"
authors = [
{ name="Dung Manh Nguyen", email="[email protected]" },
]
Expand All @@ -17,11 +17,12 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"tree-sitter>=0.20",
"tree-sitter==0.20.4",
"Levenshtein>=0.20",
"langdetect>=1.0.0",
"bs4>=0.0.1",
"tabulate>=0.9.0"
"tabulate>=0.9.0",
"tree_sitter_languages>=1.10.0"
]

[project.urls]
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# for preprocessing
tree-sitter
tree-sitter==0.20.4
tabulate
Levenshtein
langdetect
bs4
tree_sitter_languages==1.10.2
18 changes: 12 additions & 6 deletions src/codetext/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,19 @@ def parse_code(raw_code: str, language: str='Auto', tree_sitter_path: str=None)
calling_script_path = Path(inspect.getframeinfo(sys._getframe(1)).filename)
load_path = str(calling_script_path.parent)

ts_lang_path = os.path.join(load_path, 'tree-sitter', f'{language}.so')
if not os.path.exists(ts_lang_path):
logger.warning(f"Not found `{language}.so` in `{load_path}/tree-sitter/`, attemp to build language")
build_language(language, load_path)

# Get parser from languages
parser = Parser()
language = Language(load_path + f"/tree-sitter/{language}.so", language)
try:
from tree_sitter_languages import get_language, get_parser
language = get_language(language)
except ImportError:
# Work-around when pre-built binaries wheels for tree-sitter-languages are not available
logger.warning(f"Troubled importing 'tree-sitter-languages', attemp to look for pre-built binaries in the workspace")
ts_lang_path = os.path.join(load_path, 'tree-sitter', f'{language}.so')
if not os.path.exists(ts_lang_path):
logger.warning(f"Not found `{language}.so` in `{load_path}/tree-sitter/`, attemp to build language")
build_language(language, load_path)
language = Language(load_path + f"/tree-sitter/{language}.so", language)
parser.set_language(language)

if isinstance(raw_code, str):
Expand Down
8 changes: 6 additions & 2 deletions tests/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from ..src.codetext.utils import build_language

from tree_sitter_languages import get_language, get_parser

if __name__ == '__main__':
lang_list = ['python', 'cpp', 'java', 'c-sharp', 'ruby', 'rust', 'javascript', 'php', 'go']

for lang in lang_list:
build_language(lang)
# build_language(lang)
try:
get_parser(get_language(lang))
except:
build_language(lang)
2 changes: 0 additions & 2 deletions tests/test_utils/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ def test_parse_code(self):
def sum_2_num(a, b):
return a + b
"""

build_language(language='python')
parse_code(sample, 'python')


Expand Down
Loading