pytex/PyTeX/format/auto_format.py

85 lines
2.8 KiB
Python
Raw Permalink Normal View History

2022-02-08 18:26:25 +01:00
from pathlib import Path
from typing import Optional, Dict, Union, Type
from .formatting_config import FormattingConfig
from .dict_formatter import DictFormatter
from .simple_tex_formatter import SimpleTeXFormatter
from .dtx_formatter import DTXFormatter
from .pytex_formatter import PyTeXFormatter
from .git_version_info import GitVersionInfo
from .docstrip_formatter import DocStripFormatter
from .nothing_formatter import NothingFormatter
from .copy_formatter import CopyFormatter
from .default_macros import get_default_macros
from .enums import TeXType, Target
2022-02-08 18:26:25 +01:00
2022-02-09 21:11:46 +01:00
def formatter_from_file_extension(
2022-02-08 18:26:25 +01:00
input_file: Path,
config: Optional[FormattingConfig] = None,
git_version_info: Optional[GitVersionInfo] = None,
2022-02-08 18:26:25 +01:00
locate_file_config: bool = True,
allow_infile_config: bool = True,
default_macros: bool = True,
target: Optional[Target] = None,
2022-02-08 18:26:25 +01:00
) -> PyTeXFormatter:
extension_switcher: Dict[str, TeXType] = {
'dtx.pytex': TeXType.TeXDocstrip,
'dtx': TeXType.TeXDocstrip,
'sty.pytex': TeXType.TeXPackage,
'sty': TeXType.TeXPackage,
'cls.pytex': TeXType.TeXClass,
'cls': TeXType.TeXClass,
'dict.pytex': TeXType.TeXDictionary,
'dict': TeXType.TeXDictionary,
'tex.pytex': TeXType.TeXDocumentation,
'tex': TeXType.TeXDocumentation,
}
source_formatter_switcher: Dict[str, Type[PyTeXFormatter]] = {
2022-02-08 19:01:18 +01:00
'dtx.pytex': DTXFormatter,
'sty.pytex': SimpleTeXFormatter,
'cls.pytex': SimpleTeXFormatter,
'dict.pytex': DictFormatter
2022-02-08 18:26:25 +01:00
}
tex_formatter_switcher = {
2022-02-18 16:27:03 +01:00
'ins': NothingFormatter,
'drv': NothingFormatter,
'dtx': DocStripFormatter,
'dict': CopyFormatter,
'cls': CopyFormatter,
'sty': CopyFormatter,
}
documentation_formatter_switcher = {
}
if target == Target.tex_source:
switcher = source_formatter_switcher
elif target == Target.tex:
switcher = tex_formatter_switcher
elif target == Target.documentation:
switcher = documentation_formatter_switcher
else:
switcher = source_formatter_switcher | tex_formatter_switcher # Default case
2022-02-08 18:26:25 +01:00
try:
[name, extension] = input_file.name.split('.', maxsplit=1)
except ValueError:
2022-02-08 18:26:25 +01:00
raise NotImplementedError
config.tex_type = extension_switcher[extension] # This sets the textype from file extension
formatter = switcher[extension](
2022-02-08 18:26:25 +01:00
input_file=input_file,
config=config,
git_version_info=git_version_info,
2022-02-08 18:26:25 +01:00
locate_file_config=locate_file_config,
allow_infile_config=allow_infile_config
)
if default_macros and target == Target.tex_source:
2022-02-18 10:05:43 +01:00
formatter.macros = get_default_macros(formatter.config.tex_flavour, formatter.config.tex_type)
return formatter