| 
									
										
										
										
											2022-08-02 10:41:44 -08:00
										 |  |  | import logging | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2024-08-22 10:14:32 -05:00
										 |  |  | import subprocess | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  | from dataclasses import dataclass | 
					
						
							|  |  |  | from pathlib import Path | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from jinja2 import Template | 
					
						
							| 
									
										
										
										
											2022-08-02 10:41:44 -08:00
										 |  |  | from rich.logging import RichHandler | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-02 10:41:44 -08:00
										 |  |  | FORMAT = "%(message)s" | 
					
						
							|  |  |  | logging.basicConfig(level=logging.INFO, format=FORMAT, datefmt="[%X]", handlers=[RichHandler()]) | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-02 10:41:44 -08:00
										 |  |  | log = logging.getLogger("rich") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def render_python_template(template_file: Path | str, dest: Path, data: dict): | 
					
						
							| 
									
										
										
										
											2021-11-20 14:30:38 -09:00
										 |  |  |     """Render and Format a Jinja2 Template for Python Code""" | 
					
						
							| 
									
										
										
										
											2022-01-09 21:04:24 -09:00
										 |  |  |     if isinstance(template_file, Path): | 
					
						
							|  |  |  |         tplt = Template(template_file.read_text()) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         tplt = Template(template_file) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-09 19:52:53 -09:00
										 |  |  |     text = tplt.render(data=data) | 
					
						
							| 
									
										
										
										
											2022-10-18 14:49:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  |     dest.write_text(text) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-22 10:14:32 -05:00
										 |  |  |     # lint/format file with Ruff | 
					
						
							|  |  |  |     log.info(f"Formatting {dest}") | 
					
						
							|  |  |  |     subprocess.run(["poetry", "run", "ruff", "check", str(dest), "--fix"]) | 
					
						
							|  |  |  |     subprocess.run(["poetry", "run", "ruff", "format", str(dest)]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | @dataclass | 
					
						
							|  |  |  | class CodeSlicer: | 
					
						
							|  |  |  |     start: int | 
					
						
							|  |  |  |     end: int | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     indentation: str | 
					
						
							|  |  |  |     text: list[str] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _next_line = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def purge_lines(self) -> None: | 
					
						
							|  |  |  |         start = self.start + 1 | 
					
						
							|  |  |  |         end = self.end | 
					
						
							|  |  |  |         del self.text[start:end] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def push_line(self, string: str) -> None: | 
					
						
							|  |  |  |         self._next_line = self._next_line or self.start + 1 | 
					
						
							|  |  |  |         self.text.insert(self._next_line, self.indentation + string + "\n") | 
					
						
							|  |  |  |         self._next_line += 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-10 12:58:52 -05:00
										 |  |  | def get_indentation_of_string(line: str, comment_char: str = "//|#") -> str: | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  |     return re.sub(rf"{comment_char}.*", "", line).removesuffix("\n") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-18 14:49:41 -08:00
										 |  |  | def find_start_end(file_text: list[str], gen_id: str) -> tuple[int, int, str]: | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  |     start = None | 
					
						
							|  |  |  |     end = None | 
					
						
							|  |  |  |     indentation = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for i, line in enumerate(file_text): | 
					
						
							|  |  |  |         if "CODE_GEN_ID:" in line and gen_id in line: | 
					
						
							|  |  |  |             start = i | 
					
						
							|  |  |  |             indentation = get_indentation_of_string(line) | 
					
						
							|  |  |  |         if f"END: {gen_id}" in line: | 
					
						
							|  |  |  |             end = i | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if start is None or end is None: | 
					
						
							|  |  |  |         raise Exception("Could not find start and end of code generation block") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if start > end: | 
					
						
							|  |  |  |         raise Exception(f"Start ({start=}) of code generation block is after end ({end=})") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return start, end, indentation | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def inject_inline(file_path: Path, key: str, code: list[str]) -> None: | 
					
						
							|  |  |  |     """Injects a list of strings into the file where the key is found in the format defined
 | 
					
						
							|  |  |  |     by the code-generation. Strings are properly indented and a '\n' is added to the end of | 
					
						
							|  |  |  |     each string. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Start -> 'CODE_GEN_ID: <key>' | 
					
						
							|  |  |  |     End -> 'END: <key>' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If no 'CODE_GEN_ID: <key>' is found, and exception is raised | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Args: | 
					
						
							|  |  |  |         file_path (Path): Write to file | 
					
						
							|  |  |  |         key (str): CODE_GEN_ID: <key> | 
					
						
							|  |  |  |         code (list[str]): List of strings to inject. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-18 14:49:41 -08:00
										 |  |  |     with open(file_path) as f: | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  |         file_text = f.readlines() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     start, end, indentation = find_start_end(file_text, key) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     slicer = CodeSlicer(start, end, indentation, file_text) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     slicer.purge_lines() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for line in code: | 
					
						
							|  |  |  |         slicer.push_line(line) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with open(file_path, "w") as file: | 
					
						
							|  |  |  |         file.writelines(slicer.text) |