mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
70 lines
2.1 KiB
Python
70 lines
2.1 KiB
Python
|
from typing import Any, List
|
||
|
|
||
|
from langchain_community.document_loaders.parsers.language.code_segmenter import (
|
||
|
CodeSegmenter,
|
||
|
)
|
||
|
|
||
|
|
||
|
class JavaScriptSegmenter(CodeSegmenter):
|
||
|
"""Code segmenter for JavaScript."""
|
||
|
|
||
|
def __init__(self, code: str):
|
||
|
super().__init__(code)
|
||
|
self.source_lines = self.code.splitlines()
|
||
|
|
||
|
try:
|
||
|
import esprima # noqa: F401
|
||
|
except ImportError:
|
||
|
raise ImportError(
|
||
|
"Could not import esprima Python package. "
|
||
|
"Please install it with `pip install esprima`."
|
||
|
)
|
||
|
|
||
|
def is_valid(self) -> bool:
|
||
|
import esprima
|
||
|
|
||
|
try:
|
||
|
esprima.parseScript(self.code)
|
||
|
return True
|
||
|
except esprima.Error:
|
||
|
return False
|
||
|
|
||
|
def _extract_code(self, node: Any) -> str:
|
||
|
start = node.loc.start.line - 1
|
||
|
end = node.loc.end.line
|
||
|
return "\n".join(self.source_lines[start:end])
|
||
|
|
||
|
def extract_functions_classes(self) -> List[str]:
|
||
|
import esprima
|
||
|
|
||
|
tree = esprima.parseScript(self.code, loc=True)
|
||
|
functions_classes = []
|
||
|
|
||
|
for node in tree.body:
|
||
|
if isinstance(
|
||
|
node,
|
||
|
(esprima.nodes.FunctionDeclaration, esprima.nodes.ClassDeclaration),
|
||
|
):
|
||
|
functions_classes.append(self._extract_code(node))
|
||
|
|
||
|
return functions_classes
|
||
|
|
||
|
def simplify_code(self) -> str:
|
||
|
import esprima
|
||
|
|
||
|
tree = esprima.parseScript(self.code, loc=True)
|
||
|
simplified_lines = self.source_lines[:]
|
||
|
|
||
|
for node in tree.body:
|
||
|
if isinstance(
|
||
|
node,
|
||
|
(esprima.nodes.FunctionDeclaration, esprima.nodes.ClassDeclaration),
|
||
|
):
|
||
|
start = node.loc.start.line - 1
|
||
|
simplified_lines[start] = f"// Code for: {simplified_lines[start]}"
|
||
|
|
||
|
for line_num in range(start + 1, node.loc.end.line):
|
||
|
simplified_lines[line_num] = None # type: ignore
|
||
|
|
||
|
return "\n".join(line for line in simplified_lines if line is not None)
|