-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcode_replacer.py
More file actions
479 lines (409 loc) · 19.9 KB
/
code_replacer.py
File metadata and controls
479 lines (409 loc) · 19.9 KB
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
from __future__ import annotations
import ast
from collections import defaultdict
from functools import lru_cache
from typing import TYPE_CHECKING, Optional, TypeVar
import isort
import libcst as cst
import libcst.matchers as m
from codeflash.cli_cmds.console import logger
from codeflash.code_utils.code_extractor import add_global_assignments, add_needed_imports_from_module
from codeflash.code_utils.config_parser import find_conftest_files
from codeflash.code_utils.line_profile_utils import ImportAdder
from codeflash.models.models import FunctionParent
if TYPE_CHECKING:
from pathlib import Path
from codeflash.discovery.functions_to_optimize import FunctionToOptimize
from codeflash.models.models import CodeOptimizationContext, OptimizedCandidate, ValidCode
ASTNodeT = TypeVar("ASTNodeT", bound=ast.AST)
def normalize_node(node: ASTNodeT) -> ASTNodeT:
if isinstance(node, (ast.Module, ast.FunctionDef, ast.AsyncFunctionDef, ast.ClassDef)) and ast.get_docstring(node):
node.body = node.body[1:]
if hasattr(node, "body"):
node.body = [normalize_node(n) for n in node.body if not isinstance(n, (ast.Import, ast.ImportFrom))]
return node
@lru_cache(maxsize=3)
def normalize_code(code: str) -> str:
return ast.unparse(normalize_node(ast.parse(code)))
class PytestMarkAdder(cst.CSTTransformer):
"""Transformer that adds pytest marks to test functions."""
def __init__(self, mark_name: str) -> None:
super().__init__()
self.mark_name = mark_name
self.has_pytest_import = False
def visit_Module(self, node: cst.Module) -> None:
"""Check if pytest is already imported."""
for statement in node.body:
if isinstance(statement, cst.SimpleStatementLine):
for stmt in statement.body:
if isinstance(stmt, cst.Import):
for import_alias in stmt.names:
if isinstance(import_alias, cst.ImportAlias) and import_alias.name.value == "pytest":
self.has_pytest_import = True
def leave_Module(self, original_node: cst.Module, updated_node: cst.Module) -> cst.Module: # noqa: ARG002
"""Add pytest import if not present."""
if not self.has_pytest_import:
# Create import statement
import_stmt = cst.SimpleStatementLine(body=[cst.Import(names=[cst.ImportAlias(name=cst.Name("pytest"))])])
# Add import at the beginning
updated_node = updated_node.with_changes(body=[import_stmt, *updated_node.body])
return updated_node
def leave_FunctionDef(self, original_node: cst.FunctionDef, updated_node: cst.FunctionDef) -> cst.FunctionDef: # noqa: ARG002
"""Add pytest mark to test functions."""
# Check if the mark already exists
for decorator in updated_node.decorators:
if self._is_pytest_mark(decorator.decorator, self.mark_name):
return updated_node
# Create the pytest mark decorator
mark_decorator = self._create_pytest_mark()
# Add the decorator
new_decorators = [*list(updated_node.decorators), mark_decorator]
return updated_node.with_changes(decorators=new_decorators)
def _is_pytest_mark(self, decorator: cst.BaseExpression, mark_name: str) -> bool:
"""Check if a decorator is a specific pytest mark."""
if isinstance(decorator, cst.Attribute):
if (
isinstance(decorator.value, cst.Attribute)
and isinstance(decorator.value.value, cst.Name)
and decorator.value.value.value == "pytest"
and decorator.value.attr.value == "mark"
and decorator.attr.value == mark_name
):
return True
elif isinstance(decorator, cst.Call) and isinstance(decorator.func, cst.Attribute):
return self._is_pytest_mark(decorator.func, mark_name)
return False
def _create_pytest_mark(self) -> cst.Decorator:
"""Create a pytest mark decorator."""
# Base: pytest.mark.{mark_name}
mark_attr = cst.Attribute(
value=cst.Attribute(value=cst.Name("pytest"), attr=cst.Name("mark")), attr=cst.Name(self.mark_name)
)
decorator = mark_attr
return cst.Decorator(decorator=decorator)
class AutouseFixtureModifier(cst.CSTTransformer):
def leave_FunctionDef(self, original_node: cst.FunctionDef, updated_node: cst.FunctionDef) -> cst.FunctionDef:
# Matcher for '@fixture' or '@pytest.fixture'
fixture_decorator_func = m.Name("fixture") | m.Attribute(value=m.Name("pytest"), attr=m.Name("fixture"))
for decorator in original_node.decorators:
if m.matches(
decorator,
m.Decorator(
decorator=m.Call(
func=fixture_decorator_func, args=[m.Arg(value=m.Name("True"), keyword=m.Name("autouse"))]
)
),
):
# Found a matching fixture with autouse=True
# 1. The original body of the function will become the 'else' block.
# updated_node.body is an IndentedBlock, which is what cst.Else expects.
else_block = cst.Else(body=updated_node.body)
# 2. Create the new 'if' block that will exit the fixture early.
if_test = cst.parse_expression('request.node.get_closest_marker("codeflash_no_autouse")')
yield_statement = cst.parse_statement("yield")
if_body = cst.IndentedBlock(body=[yield_statement])
# 3. Construct the full if/else statement.
new_if_statement = cst.If(test=if_test, body=if_body, orelse=else_block)
# 4. Replace the entire function's body with our new single statement.
return updated_node.with_changes(body=cst.IndentedBlock(body=[new_if_statement]))
return updated_node
def disable_autouse(test_path: Path) -> str:
file_content = test_path.read_text(encoding="utf-8")
module = cst.parse_module(file_content)
disable_autouse_fixture = AutouseFixtureModifier()
modified_module = module.visit(disable_autouse_fixture)
test_path.write_text(modified_module.code, encoding="utf-8")
return file_content
def modify_autouse_fixture(test_paths: list[Path]) -> dict[Path, list[str]]:
# find fixutre definition in conftetst.py (the one closest to the test)
# get fixtures present in override-fixtures in pyproject.toml
# add if marker closest return
file_content_map = {}
conftest_files = find_conftest_files(test_paths)
for cf_file in conftest_files:
# iterate over all functions in the file
# if function has autouse fixture, modify function to bypass with custom marker
original_content = disable_autouse(cf_file)
file_content_map[cf_file] = original_content
return file_content_map
# # reuse line profiler utils to add decorator and import to test fns
def add_custom_marker_to_all_tests(test_paths: list[Path]) -> None:
for test_path in test_paths:
# read file
file_content = test_path.read_text(encoding="utf-8")
module = cst.parse_module(file_content)
importadder = ImportAdder("import pytest")
modified_module = module.visit(importadder)
modified_module = cst.parse_module(isort.code(modified_module.code, float_to_top=True))
pytest_mark_adder = PytestMarkAdder("codeflash_no_autouse")
modified_module = modified_module.visit(pytest_mark_adder)
test_path.write_text(modified_module.code, encoding="utf-8")
class OptimFunctionCollector(cst.CSTVisitor):
METADATA_DEPENDENCIES = (cst.metadata.ParentNodeProvider,)
def __init__(
self,
preexisting_objects: set[tuple[str, tuple[FunctionParent, ...]]] | None = None,
function_names: set[tuple[str | None, str]] | None = None,
) -> None:
super().__init__()
self.preexisting_objects = preexisting_objects if preexisting_objects is not None else set()
self.function_names = function_names # set of (class_name, function_name)
self.modified_functions: dict[
tuple[str | None, str], cst.FunctionDef
] = {} # keys are (class_name, function_name)
self.new_functions: list[cst.FunctionDef] = []
self.new_class_functions: dict[str, list[cst.FunctionDef]] = defaultdict(list)
self.current_class = None
self.modified_init_functions: dict[str, cst.FunctionDef] = {}
def visit_FunctionDef(self, node: cst.FunctionDef) -> bool:
if (self.current_class, node.name.value) in self.function_names:
self.modified_functions[(self.current_class, node.name.value)] = node
elif self.current_class and node.name.value == "__init__":
self.modified_init_functions[self.current_class] = node
elif (
self.preexisting_objects
and (node.name.value, ()) not in self.preexisting_objects
and self.current_class is None
):
self.new_functions.append(node)
return False
def visit_ClassDef(self, node: cst.ClassDef) -> bool:
if self.current_class:
return False # If already in a class, do not recurse deeper
self.current_class = node.name.value
parents = (FunctionParent(name=node.name.value, type="ClassDef"),)
for child_node in node.body.body:
if (
self.preexisting_objects
and isinstance(child_node, cst.FunctionDef)
and (child_node.name.value, parents) not in self.preexisting_objects
):
self.new_class_functions[node.name.value].append(child_node)
return True
def leave_ClassDef(self, node: cst.ClassDef) -> None: # noqa: ARG002
if self.current_class:
self.current_class = None
class OptimFunctionReplacer(cst.CSTTransformer):
def __init__(
self,
modified_functions: Optional[dict[tuple[str | None, str], cst.FunctionDef]] = None,
new_functions: Optional[list[cst.FunctionDef]] = None,
new_class_functions: Optional[dict[str, list[cst.FunctionDef]]] = None,
modified_init_functions: Optional[dict[str, cst.FunctionDef]] = None,
) -> None:
super().__init__()
self.modified_functions = modified_functions if modified_functions is not None else {}
self.new_functions = new_functions if new_functions is not None else []
self.new_class_functions = new_class_functions if new_class_functions is not None else defaultdict(list)
self.modified_init_functions: dict[str, cst.FunctionDef] = (
modified_init_functions if modified_init_functions is not None else {}
)
self.current_class = None
def visit_FunctionDef(self, node: cst.FunctionDef) -> bool: # noqa: ARG002
return False
def leave_FunctionDef(self, original_node: cst.FunctionDef, updated_node: cst.FunctionDef) -> cst.FunctionDef:
if (self.current_class, original_node.name.value) in self.modified_functions:
node = self.modified_functions[(self.current_class, original_node.name.value)]
return updated_node.with_changes(body=node.body, decorators=node.decorators)
if original_node.name.value == "__init__" and self.current_class in self.modified_init_functions:
return self.modified_init_functions[self.current_class]
return updated_node
def visit_ClassDef(self, node: cst.ClassDef) -> bool:
if self.current_class:
return False # If already in a class, do not recurse deeper
self.current_class = node.name.value
return True
def leave_ClassDef(self, original_node: cst.ClassDef, updated_node: cst.ClassDef) -> cst.ClassDef:
if self.current_class and self.current_class == original_node.name.value:
self.current_class = None
if original_node.name.value in self.new_class_functions:
return updated_node.with_changes(
body=updated_node.body.with_changes(
body=(list(updated_node.body.body) + list(self.new_class_functions[original_node.name.value]))
)
)
return updated_node
def leave_Module(self, original_node: cst.Module, updated_node: cst.Module) -> cst.Module: # noqa: ARG002
node = updated_node
max_function_index = None
class_index = None
for index, _node in enumerate(node.body):
if isinstance(_node, cst.FunctionDef):
max_function_index = index
if isinstance(_node, cst.ClassDef):
class_index = index
if max_function_index is not None:
node = node.with_changes(
body=(*node.body[: max_function_index + 1], *self.new_functions, *node.body[max_function_index + 1 :])
)
elif class_index is not None:
node = node.with_changes(
body=(*node.body[: class_index + 1], *self.new_functions, *node.body[class_index + 1 :])
)
else:
node = node.with_changes(body=(*self.new_functions, *node.body))
return node
def replace_functions_in_file(
source_code: str,
original_function_names: list[str],
optimized_code: str,
preexisting_objects: set[tuple[str, tuple[FunctionParent, ...]]],
) -> str:
parsed_function_names = []
for original_function_name in original_function_names:
if original_function_name.count(".") == 0:
class_name, function_name = None, original_function_name
elif original_function_name.count(".") == 1:
class_name, function_name = original_function_name.split(".")
else:
msg = f"Unable to find {original_function_name}. Returning unchanged source code."
logger.error(msg)
return source_code
parsed_function_names.append((class_name, function_name))
# Collect functions we want to modify from the optimized code
module = cst.metadata.MetadataWrapper(cst.parse_module(optimized_code))
visitor = OptimFunctionCollector(preexisting_objects, set(parsed_function_names))
module.visit(visitor)
# Replace these functions in the original code
transformer = OptimFunctionReplacer(
modified_functions=visitor.modified_functions,
new_functions=visitor.new_functions,
new_class_functions=visitor.new_class_functions,
modified_init_functions=visitor.modified_init_functions,
)
original_module = cst.parse_module(source_code)
modified_tree = original_module.visit(transformer)
return modified_tree.code
def replace_functions_and_add_imports(
source_code: str,
function_names: list[str],
optimized_code: str,
module_abspath: Path,
preexisting_objects: set[tuple[str, tuple[FunctionParent, ...]]],
project_root_path: Path,
) -> str:
return add_needed_imports_from_module(
optimized_code,
replace_functions_in_file(source_code, function_names, optimized_code, preexisting_objects),
module_abspath,
module_abspath,
project_root_path,
)
def replace_function_definitions_in_module(
function_names: list[str],
optimized_code: str,
module_abspath: Path,
preexisting_objects: set[tuple[str, tuple[FunctionParent, ...]]],
project_root_path: Path,
) -> bool:
source_code: str = module_abspath.read_text(encoding="utf8")
new_code: str = replace_functions_and_add_imports(
source_code, function_names, optimized_code, module_abspath, preexisting_objects, project_root_path
)
if is_zero_diff(source_code, new_code):
return False
code_with_global_assignments = add_global_assignments(optimized_code, new_code)
module_abspath.write_text(code_with_global_assignments, encoding="utf8")
return True
def is_zero_diff(original_code: str, new_code: str) -> bool:
return normalize_code(original_code) == normalize_code(new_code)
def replace_optimized_code(
callee_module_paths: set[Path],
candidates: list[OptimizedCandidate],
code_context: CodeOptimizationContext,
function_to_optimize: FunctionToOptimize,
validated_original_code: dict[Path, ValidCode],
project_root: Path,
) -> tuple[set[Path], dict[str, dict[Path, str]]]:
initial_optimized_code = {
candidate.optimization_id: replace_functions_and_add_imports(
validated_original_code[function_to_optimize.file_path].source_code,
[function_to_optimize.qualified_name],
candidate.source_code,
function_to_optimize.file_path,
function_to_optimize.file_path,
code_context.preexisting_objects,
project_root,
)
for candidate in candidates
}
callee_original_code = {
module_path: validated_original_code[module_path].source_code for module_path in callee_module_paths
}
intermediate_original_code: dict[str, dict[Path, str]] = {
candidate.optimization_id: (
callee_original_code | {function_to_optimize.file_path: initial_optimized_code[candidate.optimization_id]}
)
for candidate in candidates
}
module_paths = callee_module_paths | {function_to_optimize.file_path}
optimized_code = {
candidate.optimization_id: {
module_path: replace_functions_and_add_imports(
intermediate_original_code[candidate.optimization_id][module_path],
(
[
callee.qualified_name
for callee in code_context.helper_functions
if callee.file_path == module_path and callee.jedi_definition.type != "class"
]
),
candidate.source_code,
function_to_optimize.file_path,
module_path,
[],
project_root,
)
for module_path in module_paths
}
for candidate in candidates
}
return module_paths, optimized_code
def is_optimized_module_code_zero_diff(
candidates: list[OptimizedCandidate],
validated_original_code: dict[Path, ValidCode],
optimized_code: dict[str, dict[Path, str]],
module_paths: set[Path],
) -> dict[str, dict[Path, bool]]:
return {
candidate.optimization_id: {
callee_module_path: normalize_code(optimized_code[candidate.optimization_id][callee_module_path])
== validated_original_code[callee_module_path].normalized_code
for callee_module_path in module_paths
}
for candidate in candidates
}
def candidates_with_diffs(
candidates: list[OptimizedCandidate],
validated_original_code: ValidCode,
optimized_code: dict[str, dict[Path, str]],
module_paths: set[Path],
) -> list[OptimizedCandidate]:
return [
candidate
for candidate in candidates
if not all(
is_optimized_module_code_zero_diff(candidates, validated_original_code, optimized_code, module_paths)[
candidate.optimization_id
].values()
)
]
def replace_optimized_code_in_worktrees(
optimized_code: dict[str, dict[Path, str]],
candidates: list[OptimizedCandidate], # Should be candidates_with_diffs
worktrees: list[Path],
git_root: Path, # Handle None case
) -> None:
for candidate, worktree in zip(candidates, worktrees[1:]):
for module_path in optimized_code[candidate.optimization_id]:
(worktree / module_path.relative_to(git_root)).write_text(
optimized_code[candidate.optimization_id][module_path], encoding="utf8"
) # Check with is_optimized_module_code_zero_diff
def function_to_optimize_original_worktree_fqn(
function_to_optimize: FunctionToOptimize, worktrees: list[Path], git_root: Path
) -> str:
return (
str(worktrees[0].name / function_to_optimize.file_path.relative_to(git_root).with_suffix("")).replace("/", ".")
+ "."
+ function_to_optimize.qualified_name
)