forked from Kolkir/code2seq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjava_extractor.py
47 lines (41 loc) · 1.76 KB
/
java_extractor.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
import json
import requests
from common import PathContextInformation
class JavaExtractor:
def __init__(self, config, extractor_api_url, max_path_length, max_path_width):
self.config = config
self.max_path_length = max_path_length
self.max_path_width = max_path_width
self.extractor_api_url = extractor_api_url
self.bad_characters_table = str.maketrans("", "", "\t\r\n")
@staticmethod
def post_request(url, code_string):
return requests.post(
url,
data=json.dumps(
{"code": code_string, "decompose": True}, separators=(",", ":")
),
)
def extract_paths(self, code_string):
response = self.post_request(self.extractor_api_url, code_string)
response_array = json.loads(response.text)
if "errorType" in response_array:
raise ValueError(response.text)
if "errorMessage" in response_array:
raise TimeoutError(response.text)
pc_info_dict = {}
result = []
for single_method in response_array:
method_name = single_method["target"]
current_result_line_parts = [method_name]
contexts = single_method["paths"]
for context in contexts[: self.config.DATA_NUM_CONTEXTS]:
pc_info = PathContextInformation(context)
current_result_line_parts += [str(pc_info)]
pc_info_dict[
(pc_info.token1, pc_info.shortPath, pc_info.token2)
] = pc_info
space_padding = " " * (self.config.DATA_NUM_CONTEXTS - len(contexts))
result_line = " ".join(current_result_line_parts) + space_padding
result.append(result_line)
return result, pc_info_dict