-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcode_replacer.py
More file actions
689 lines (581 loc) · 29.2 KB
/
code_replacer.py
File metadata and controls
689 lines (581 loc) · 29.2 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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
from __future__ import annotations
import ast
from collections import defaultdict
from functools import lru_cache
from itertools import chain
from typing import TYPE_CHECKING, Optional, TypeVar
import libcst as cst
from libcst.metadata import PositionProvider
from codeflash.cli_cmds.console import logger
from codeflash.code_utils.config_parser import find_conftest_files
from codeflash.code_utils.formatter import sort_imports
from codeflash.languages import is_python
from codeflash.languages.python.static_analysis.code_extractor import (
add_global_assignments,
add_needed_imports_from_module,
find_insertion_index_after_imports,
)
from codeflash.languages.python.static_analysis.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.languages.base import LanguageSupport
from codeflash.models.models import CodeOptimizationContext, CodeStringsMarkdown, 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 AddRequestArgument(cst.CSTTransformer):
METADATA_DEPENDENCIES = (PositionProvider,)
def leave_FunctionDef(self, original_node: cst.FunctionDef, updated_node: cst.FunctionDef) -> cst.FunctionDef:
# Matcher for '@fixture' or '@pytest.fixture'
for decorator in original_node.decorators:
dec = decorator.decorator
if isinstance(dec, cst.Call):
func_name = ""
if isinstance(dec.func, cst.Attribute) and isinstance(dec.func.value, cst.Name):
if dec.func.attr.value == "fixture" and dec.func.value.value == "pytest":
func_name = "pytest.fixture"
elif isinstance(dec.func, cst.Name) and dec.func.value == "fixture":
func_name = "fixture"
if func_name:
for arg in dec.args:
if (
arg.keyword
and arg.keyword.value == "autouse"
and isinstance(arg.value, cst.Name)
and arg.value.value == "True"
):
args = updated_node.params.params
arg_names = {arg.name.value for arg in args}
# Skip if 'request' is already present
if "request" in arg_names:
return updated_node
# Create a new 'request' param
request_param = cst.Param(name=cst.Name("request"))
# Add 'request' as the first argument (after 'self' or 'cls' if needed)
if args:
first_arg = args[0].name.value
if first_arg in {"self", "cls"}:
new_params = [args[0], request_param] + list(args[1:]) # noqa: RUF005
else:
new_params = [request_param] + list(args) # noqa: RUF005
else:
new_params = [request_param]
new_param_list = updated_node.params.with_changes(params=new_params)
return updated_node.with_changes(params=new_param_list)
return updated_node
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:
"""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:
"""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'
for decorator in original_node.decorators:
dec = decorator.decorator
if isinstance(dec, cst.Call):
func_name = ""
if isinstance(dec.func, cst.Attribute) and isinstance(dec.func.value, cst.Name):
if dec.func.attr.value == "fixture" and dec.func.value.value == "pytest":
func_name = "pytest.fixture"
elif isinstance(dec.func, cst.Name) and dec.func.value == "fixture":
func_name = "fixture"
if func_name:
for arg in dec.args:
if (
arg.keyword
and arg.keyword.value == "autouse"
and isinstance(arg.value, cst.Name)
and arg.value.value == "True"
):
# 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)
add_request_argument = AddRequestArgument()
disable_autouse_fixture = AutouseFixtureModifier()
modified_module = module.visit(add_request_argument)
modified_module = modified_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(sort_imports(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")
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 from optimized code without using MetadataWrapper
optimized_module = cst.parse_module(optimized_code)
modified_functions: dict[tuple[str | None, str], cst.FunctionDef] = {}
new_functions: list[cst.FunctionDef] = []
new_class_functions: dict[str, list[cst.FunctionDef]] = defaultdict(list)
new_classes: list[cst.ClassDef] = []
modified_init_functions: dict[str, cst.FunctionDef] = {}
function_names_set = set(parsed_function_names)
for node in optimized_module.body:
if isinstance(node, cst.FunctionDef):
key = (None, node.name.value)
if key in function_names_set:
modified_functions[key] = node
elif preexisting_objects and (node.name.value, ()) not in preexisting_objects:
new_functions.append(node)
elif isinstance(node, cst.ClassDef):
class_name = node.name.value
parents = (FunctionParent(name=class_name, type="ClassDef"),)
if (class_name, ()) not in preexisting_objects:
new_classes.append(node)
for child in node.body.body:
if isinstance(child, cst.FunctionDef):
method_key = (class_name, child.name.value)
if method_key in function_names_set:
modified_functions[method_key] = child
elif (
child.name.value == "__init__"
and preexisting_objects
and (class_name, ()) in preexisting_objects
):
modified_init_functions[class_name] = child
elif preexisting_objects and (child.name.value, parents) not in preexisting_objects:
new_class_functions[class_name].append(child)
original_module = cst.parse_module(source_code)
max_function_index = None
max_class_index = None
for index, _node in enumerate(original_module.body):
if isinstance(_node, cst.FunctionDef):
max_function_index = index
if isinstance(_node, cst.ClassDef):
max_class_index = index
new_body: list[cst.CSTNode] = []
existing_class_names = set()
for node in original_module.body:
if isinstance(node, cst.FunctionDef):
key = (None, node.name.value)
if key in modified_functions:
modified_func = modified_functions[key]
new_body.append(node.with_changes(body=modified_func.body, decorators=modified_func.decorators))
else:
new_body.append(node)
elif isinstance(node, cst.ClassDef):
class_name = node.name.value
existing_class_names.add(class_name)
new_members: list[cst.CSTNode] = []
for child in node.body.body:
if isinstance(child, cst.FunctionDef):
key = (class_name, child.name.value)
if key in modified_functions:
modified_func = modified_functions[key]
new_members.append(
child.with_changes(body=modified_func.body, decorators=modified_func.decorators)
)
elif child.name.value == "__init__" and class_name in modified_init_functions:
new_members.append(modified_init_functions[class_name])
else:
new_members.append(child)
else:
new_members.append(child)
if class_name in new_class_functions:
new_members.extend(new_class_functions[class_name])
new_body.append(node.with_changes(body=node.body.with_changes(body=new_members)))
else:
new_body.append(node)
if new_classes:
unique_classes = [nc for nc in new_classes if nc.name.value not in existing_class_names]
if unique_classes:
new_classes_insertion_idx = (
max_class_index if max_class_index is not None else find_insertion_index_after_imports(original_module)
)
new_body = list(
chain(new_body[:new_classes_insertion_idx], unique_classes, new_body[new_classes_insertion_idx:])
)
if new_functions:
if max_function_index is not None:
new_body = [*new_body[: max_function_index + 1], *new_functions, *new_body[max_function_index + 1 :]]
elif max_class_index is not None:
new_body = [*new_body[: max_class_index + 1], *new_functions, *new_body[max_class_index + 1 :]]
else:
new_body = [*new_functions, *new_body]
updated_module = original_module.with_changes(body=new_body)
return updated_module.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: CodeStringsMarkdown,
module_abspath: Path,
preexisting_objects: set[tuple[str, tuple[FunctionParent, ...]]],
project_root_path: Path,
should_add_global_assignments: bool = True,
function_to_optimize: Optional[FunctionToOptimize] = None,
) -> bool:
# Route to language-specific implementation for non-Python languages
if not is_python():
return replace_function_definitions_for_language(
function_names, optimized_code, module_abspath, project_root_path, function_to_optimize
)
source_code: str = module_abspath.read_text(encoding="utf8")
code_to_apply = get_optimized_code_for_module(module_abspath.relative_to(project_root_path), optimized_code)
new_code: str = replace_functions_and_add_imports(
# adding the global assignments before replacing the code, not after
# because of an "edge case" where the optimized code intoduced a new import and a global assignment using that import
# and that import wasn't used before, so it was ignored when calling AddImportsVisitor.add_needed_import inside replace_functions_and_add_imports (because the global assignment wasn't added yet)
# this was added at https://github.com/codeflash-ai/codeflash/pull/448
add_global_assignments(code_to_apply, source_code) if should_add_global_assignments else source_code,
function_names,
code_to_apply,
module_abspath,
preexisting_objects,
project_root_path,
)
if is_zero_diff(source_code, new_code):
return False
module_abspath.write_text(new_code, encoding="utf8")
return True
def replace_function_definitions_for_language(
function_names: list[str],
optimized_code: CodeStringsMarkdown,
module_abspath: Path,
project_root_path: Path,
function_to_optimize: Optional[FunctionToOptimize] = None,
) -> bool:
"""Replace function definitions for non-Python languages.
Uses the language support abstraction to perform code replacement.
Args:
function_names: List of qualified function names to replace.
optimized_code: The optimized code to apply.
module_abspath: Path to the module file.
project_root_path: Root of the project.
function_to_optimize: The function being optimized (needed for line info).
Returns:
True if the code was modified, False if no changes.
"""
from codeflash.languages import get_language_support
from codeflash.languages.base import Language
original_source_code: str = module_abspath.read_text(encoding="utf8")
code_to_apply = get_optimized_code_for_module(module_abspath.relative_to(project_root_path), optimized_code)
if not code_to_apply.strip():
return False
# Get language support
language = Language(optimized_code.language)
lang_support = get_language_support(language)
# Add any new global declarations from the optimized code to the original source
original_source_code = lang_support.add_global_declarations(
optimized_code=code_to_apply, original_source=original_source_code, module_abspath=module_abspath
)
# If we have function_to_optimize with line info and this is the main file, use it for precise replacement
if (
function_to_optimize
and function_to_optimize.starting_line
and function_to_optimize.ending_line
and function_to_optimize.file_path == module_abspath
):
# Extract just the target function from the optimized code
optimized_func = _extract_function_from_code(
lang_support, code_to_apply, function_to_optimize.function_name, module_abspath
)
if optimized_func:
new_code = lang_support.replace_function(original_source_code, function_to_optimize, optimized_func)
else:
# Fallback: use the entire optimized code (for simple single-function files)
new_code = lang_support.replace_function(original_source_code, function_to_optimize, code_to_apply)
else:
# For helper files or when we don't have precise line info:
# Find each function by name in both original and optimized code
# Then replace with the corresponding optimized version
new_code = original_source_code
modified = False
# Get the list of function names to replace
functions_to_replace = list(function_names)
for func_name in functions_to_replace:
# Re-discover functions from current code state to get correct line numbers
current_functions = lang_support.discover_functions_from_source(new_code, module_abspath)
# Find the function in current code
func = None
for f in current_functions:
if func_name in (f.qualified_name, f.function_name):
func = f
break
if func is None:
continue
# Extract just this function from the optimized code
optimized_func = _extract_function_from_code(
lang_support, code_to_apply, func.function_name, module_abspath
)
if optimized_func:
new_code = lang_support.replace_function(new_code, func, optimized_func)
modified = True
if not modified:
logger.warning(f"Could not find function {function_names} in {module_abspath}")
return False
# Check if there was actually a change
if original_source_code.strip() == new_code.strip():
return False
module_abspath.write_text(new_code, encoding="utf8")
return True
def _extract_function_from_code(
lang_support: LanguageSupport, source_code: str, function_name: str, file_path: Path | None = None
) -> str | None:
"""Extract a specific function's source code from a code string.
Includes JSDoc/docstring comments if present.
Args:
lang_support: Language support instance.
source_code: The full source code containing the function.
function_name: Name of the function to extract.
file_path: Path to the file (used to determine correct analyzer for JS/TS).
Returns:
The function's source code (including doc comments), or None if not found.
"""
try:
# Use the language support to find functions in the source
# file_path is needed for JS/TS to determine correct analyzer (TypeScript vs JavaScript)
functions = lang_support.discover_functions_from_source(source_code, file_path)
for func in functions:
if func.function_name == function_name:
# Extract the function's source using line numbers
# Use doc_start_line if available to include JSDoc/docstring
lines = source_code.splitlines(keepends=True)
effective_start = func.doc_start_line or func.starting_line
if effective_start and func.ending_line and effective_start <= len(lines):
func_lines = lines[effective_start - 1 : func.ending_line]
return "".join(func_lines)
except Exception as e:
logger.debug(f"Error extracting function {function_name}: {e}")
return None
def get_optimized_code_for_module(relative_path: Path, optimized_code: CodeStringsMarkdown) -> str:
file_to_code_context = optimized_code.file_to_path()
module_optimized_code = file_to_code_context.get(str(relative_path))
if module_optimized_code is None:
# Fallback: if there's only one code block with None file path,
# use it regardless of the expected path (the AI server doesn't always include file paths)
if "None" in file_to_code_context and len(file_to_code_context) == 1:
module_optimized_code = file_to_code_context["None"]
logger.debug(f"Using code block with None file_path for {relative_path}")
else:
logger.warning(
f"Optimized code not found for {relative_path} In the context\n-------\n{optimized_code}\n-------\n"
"re-check your 'markdown code structure'"
f"existing files are {file_to_code_context.keys()}"
)
module_optimized_code = ""
return module_optimized_code
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.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
)