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
|
2022-02-09 14:08:51 +01:00
|
|
|
from .git_version_info import GitVersionInfo
|
2022-02-09 17:22:38 +01:00
|
|
|
from .default_macros import get_default_macros
|
2022-02-09 17:42:56 +01:00
|
|
|
from .enums import TeXType
|
2022-02-08 18:26:25 +01:00
|
|
|
|
2022-02-09 21:11:46 +01:00
|
|
|
|
2022-02-08 18:31:19 +01:00
|
|
|
def formatter_from_file_extension(
|
2022-02-08 18:26:25 +01:00
|
|
|
input_file: Path,
|
|
|
|
config: Optional[FormattingConfig] = None,
|
2022-02-09 14:08:51 +01:00
|
|
|
git_version_info: Optional[GitVersionInfo] = None,
|
2022-02-08 18:26:25 +01:00
|
|
|
locate_file_config: bool = True,
|
2022-02-09 17:22:38 +01:00
|
|
|
allow_infile_config: bool = True,
|
|
|
|
default_macros: bool = True,
|
2022-02-08 18:26:25 +01:00
|
|
|
) -> PyTeXFormatter:
|
|
|
|
switcher: Dict[str, Type[Union[DTXFormatter, SimpleTeXFormatter, DictFormatter]]] = {
|
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
|
|
|
}
|
2022-02-09 17:42:56 +01:00
|
|
|
switcher2: Dict[str, TeXType] = {
|
|
|
|
'dtx.pytex': TeXType.TeXDocstrip,
|
|
|
|
'sty.pytex': TeXType.TeXPackage,
|
|
|
|
'cls.pytex': TeXType.TeXClass,
|
|
|
|
'dict.pytex': TeXType.TeXDictionary
|
|
|
|
}
|
2022-02-08 18:31:19 +01:00
|
|
|
# TODO: other formatters
|
2022-02-08 18:26:25 +01:00
|
|
|
try:
|
|
|
|
[name, extension] = input_file.name.split('.', maxsplit=1)
|
|
|
|
except:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2022-02-09 17:42:56 +01:00
|
|
|
config.tex_type = switcher2[extension] # This sets the textype from file extension
|
|
|
|
|
2022-02-09 17:22:38 +01:00
|
|
|
formatter = switcher[extension](
|
2022-02-08 18:26:25 +01:00
|
|
|
input_file=input_file,
|
|
|
|
config=config,
|
2022-02-09 14:08:51 +01:00
|
|
|
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
|
|
|
|
)
|
2022-02-09 17:22:38 +01:00
|
|
|
if default_macros:
|
2022-02-09 21:11:46 +01:00
|
|
|
formatter.macros = get_default_macros(formatter.config.tex_flavour)
|
2022-02-09 17:22:38 +01:00
|
|
|
return formatter
|
|
|
|
|
|
|
|
|