2022-02-06 19:36:37 +01:00
|
|
|
import re
|
2022-02-09 17:22:38 +01:00
|
|
|
from typing import List, Union, Tuple, Dict
|
2022-02-07 18:36:30 +01:00
|
|
|
|
2022-02-06 19:36:37 +01:00
|
|
|
from .constants import *
|
2022-02-09 19:39:27 +01:00
|
|
|
from .enums import FormatterProperty, Argument, FormatterMode
|
2022-02-09 17:22:38 +01:00
|
|
|
from abc import ABC, abstractmethod
|
2022-02-06 18:34:39 +01:00
|
|
|
|
|
|
|
|
2022-02-08 16:24:42 +01:00
|
|
|
class MacroReplacement:
|
2022-02-06 19:36:37 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
replacement: str,
|
|
|
|
*args,
|
2022-02-09 17:22:38 +01:00
|
|
|
**kwargs,
|
2022-02-06 19:36:37 +01:00
|
|
|
):
|
2022-02-09 17:22:38 +01:00
|
|
|
if 'format_type' in kwargs.keys():
|
|
|
|
self.format_type = kwargs['format_type']
|
|
|
|
else:
|
|
|
|
self.format_type = '%'
|
2022-02-06 19:36:37 +01:00
|
|
|
self.replacement: str = replacement
|
|
|
|
self.args = args
|
|
|
|
self.kwargs = kwargs
|
|
|
|
|
2022-02-09 17:22:38 +01:00
|
|
|
def make_format_args(self, formatter, *call_args) -> Tuple[Tuple, Dict]:
|
2022-02-06 19:36:37 +01:00
|
|
|
new_args = []
|
|
|
|
for arg in self.args:
|
|
|
|
if type(arg) == FormatterProperty:
|
|
|
|
try:
|
2022-02-09 15:46:10 +01:00
|
|
|
new_args.append(formatter.attribute_dict[arg.value])
|
2022-02-06 19:36:37 +01:00
|
|
|
except:
|
|
|
|
raise NotImplementedError
|
|
|
|
elif type(arg) == Argument:
|
|
|
|
try:
|
2022-02-06 19:40:41 +01:00
|
|
|
new_args.append(call_args[arg.value - 1])
|
2022-02-06 19:36:37 +01:00
|
|
|
except:
|
|
|
|
raise NotImplementedError
|
|
|
|
elif type(arg) == str:
|
|
|
|
new_args.append(arg)
|
|
|
|
else:
|
|
|
|
raise NotImplementedError
|
|
|
|
new_kwargs = {}
|
|
|
|
for kw in self.kwargs.keys():
|
|
|
|
if type(self.kwargs[kw]) == FormatterProperty:
|
2022-02-09 17:22:38 +01:00
|
|
|
new_kwargs[kw] = formatter.attribute_dict[self.kwargs[kw].value]
|
2022-02-06 19:36:37 +01:00
|
|
|
elif type(self.kwargs[kw]) == Argument:
|
2022-02-06 19:40:41 +01:00
|
|
|
new_kwargs[kw] = call_args[self.kwargs[kw].value - 1]
|
2022-02-06 19:36:37 +01:00
|
|
|
elif type(self.kwargs[kw]) == str:
|
|
|
|
new_kwargs[kw] = self.kwargs[kw]
|
|
|
|
else:
|
|
|
|
raise NotImplementedError
|
2022-02-09 17:22:38 +01:00
|
|
|
return tuple(new_args), new_kwargs
|
2022-02-06 19:36:37 +01:00
|
|
|
|
|
|
|
def format(self, formatter, *call_args) -> str:
|
|
|
|
args, kwargs = self.make_format_args(formatter, *call_args)
|
|
|
|
if self.format_type == '%':
|
2022-02-09 17:22:38 +01:00
|
|
|
if self.kwargs:
|
2022-02-06 19:36:37 +01:00
|
|
|
raise NotImplementedError # Currently, not supported
|
2022-02-09 17:22:38 +01:00
|
|
|
return self.replacement % args
|
2022-02-06 19:36:37 +01:00
|
|
|
elif self.format_type == '{':
|
|
|
|
return self.replacement.format(
|
2022-02-09 17:22:38 +01:00
|
|
|
*args, **kwargs, **formatter.attribute_dict
|
2022-02-06 19:36:37 +01:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2022-02-06 18:34:39 +01:00
|
|
|
|
2022-02-09 17:22:38 +01:00
|
|
|
class Macro(ABC):
|
|
|
|
@abstractmethod
|
2022-02-06 18:34:39 +01:00
|
|
|
def __init__(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2022-02-09 17:22:38 +01:00
|
|
|
@abstractmethod
|
2022-02-06 18:34:39 +01:00
|
|
|
def matches(self, line: str) -> bool:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2022-02-09 17:22:38 +01:00
|
|
|
@abstractmethod
|
2022-02-06 19:36:37 +01:00
|
|
|
def apply(self, line: str, formatter) -> Union[str, List[str]]:
|
2022-02-06 18:34:39 +01:00
|
|
|
raise NotImplementedError
|
2022-02-06 19:36:37 +01:00
|
|
|
|
|
|
|
|
2022-02-09 17:22:38 +01:00
|
|
|
class SimpleMacro(Macro):
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
macroname: str,
|
|
|
|
macro_replacement: MacroReplacement
|
|
|
|
):
|
|
|
|
self.macroname = macroname
|
|
|
|
self.macro_replacement = macro_replacement
|
|
|
|
|
|
|
|
def matches(self, line: str) -> bool:
|
|
|
|
return line.find(FORMATTER_PREFIX + self.macroname) != -1
|
|
|
|
|
|
|
|
def apply(self, line: str, formatter) -> Union[str, List[str]]:
|
|
|
|
return line.replace(
|
|
|
|
FORMATTER_PREFIX + self.macroname,
|
|
|
|
self.macro_replacement.format(
|
|
|
|
formatter
|
|
|
|
))
|
|
|
|
|
|
|
|
|
2022-02-09 19:39:27 +01:00
|
|
|
class SingleLineMacro(Macro, ABC):
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
chars: str,
|
|
|
|
strip: str = ' %\n'
|
|
|
|
):
|
|
|
|
self.chars = chars
|
|
|
|
self.strip = strip
|
|
|
|
def matches(self, line: str) -> bool:
|
|
|
|
if line.find(self.chars) != -1:
|
|
|
|
if not line.strip(self.strip) == self.chars:
|
|
|
|
raise NotImplementedError
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
class ConfigBeginMacro(SingleLineMacro):
|
|
|
|
def __init__(self):
|
|
|
|
super(ConfigBeginMacro, self).__init__(FORMATTER_PREFIX + INFILE_CONFIG_BEGIN_CONFIG)
|
|
|
|
|
|
|
|
def apply(self, line: str, formatter) -> Union[str, List[str]]:
|
|
|
|
if not formatter.mode == FormatterMode.normal:
|
|
|
|
raise NotImplementedError # invalid config begin
|
|
|
|
formatter.mode = FormatterMode.drop
|
|
|
|
return []
|
|
|
|
|
|
|
|
class ConfigEndMacro(SingleLineMacro):
|
|
|
|
def __init__(self):
|
|
|
|
super(ConfigEndMacro, self).__init__(FORMATTER_PREFIX + INFILE_CONFIG_END_CONFIG)
|
|
|
|
|
|
|
|
def apply(self, line: str, formatter) -> Union[str, List[str]]:
|
|
|
|
if not formatter.mode == FormatterMode.drop:
|
|
|
|
raise NotImplementedError # invalid
|
|
|
|
formatter.mode = FormatterMode.normal
|
|
|
|
return []
|
|
|
|
|
2022-02-09 17:22:38 +01:00
|
|
|
class ArgumentMacro(Macro):
|
2022-02-06 19:36:37 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
2022-02-09 17:22:38 +01:00
|
|
|
macroname: str,
|
2022-02-06 19:36:37 +01:00
|
|
|
num_args: int,
|
|
|
|
macro_replacement: MacroReplacement
|
|
|
|
):
|
|
|
|
self.macroname = macroname
|
|
|
|
self.num_args = num_args
|
|
|
|
self.macro_replacement: MacroReplacement = macro_replacement
|
|
|
|
self._search_regex = re.compile(r'{keyword}\({arguments}(?<!@)\)'.format(
|
|
|
|
keyword=FORMATTER_PREFIX + self.macroname,
|
|
|
|
arguments=','.join(['(.*?)'] * self.num_args)
|
|
|
|
))
|
|
|
|
|
|
|
|
def matches(self, line: str) -> bool:
|
2022-02-09 17:22:38 +01:00
|
|
|
if line.find('!!') != -1:
|
|
|
|
pass
|
2022-02-06 19:36:37 +01:00
|
|
|
match = re.search(self._search_regex, line)
|
|
|
|
if match is None:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def apply(self, line: str, formatter) -> Union[str, List[str]]:
|
|
|
|
match = re.search(self._search_regex, line)
|
|
|
|
if match is None:
|
|
|
|
raise NotImplementedError
|
|
|
|
replacement = self.macro_replacement.format(
|
|
|
|
formatter, match.groups()
|
|
|
|
)
|
|
|
|
return line.replace(
|
|
|
|
match.group(),
|
|
|
|
replacement
|
|
|
|
)
|