2021-10-22 10:57:16 +02:00
|
|
|
import json
|
2021-10-22 10:01:33 +02:00
|
|
|
from pathlib import Path
|
|
|
|
from typing import Optional
|
|
|
|
|
2021-10-22 10:12:28 +02:00
|
|
|
import git
|
|
|
|
|
2021-10-22 14:45:32 +02:00
|
|
|
from PyTeX.config.constants import BUILD_INFO_FILENAME
|
2021-10-22 10:01:33 +02:00
|
|
|
|
2021-10-22 14:45:32 +02:00
|
|
|
from .utils import BuildInfo, pytex_msg, TexFileToFormat
|
2021-10-22 10:01:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
def build(
|
|
|
|
src_dir: Optional[Path] = None,
|
|
|
|
build_dir: Optional[Path] = None,
|
|
|
|
input_file: Optional[Path] = None,
|
|
|
|
author: Optional[str] = None,
|
|
|
|
latex_name: str = 'prepend-author', # name handling
|
|
|
|
recursive: bool = False, # input control
|
|
|
|
include_timestamp: bool = False, # header
|
|
|
|
include_pytex_version: bool = False, # header
|
|
|
|
include_license: bool = False, # header
|
|
|
|
include_git_version: bool = False, # header
|
|
|
|
include_pytex_info_text: bool = False, # header
|
2021-10-22 19:29:23 +02:00
|
|
|
extra_header: Optional[Path] = None,
|
2021-10-22 10:01:33 +02:00
|
|
|
allow_dirty: bool = False, # versioning
|
|
|
|
overwrite_existing_files: bool = False, # output control
|
|
|
|
build_all: bool = False, # output control / versioning
|
|
|
|
write_build_information: bool = True, # meta
|
|
|
|
):
|
|
|
|
pytex_msg('Getting git repository information...')
|
2021-10-22 19:29:23 +02:00
|
|
|
if extra_header:
|
|
|
|
if extra_header.exists():
|
|
|
|
with open(extra_header, 'r') as f:
|
|
|
|
text = f.readlines()
|
|
|
|
extra_header = [line.rstrip() for line in text]
|
|
|
|
else:
|
|
|
|
raise FileNotFoundError('Path to extra header content is invalid.')
|
2021-10-22 10:01:33 +02:00
|
|
|
current_build_info = BuildInfo(
|
|
|
|
include_timestamp=include_timestamp,
|
|
|
|
include_pytex_version=include_pytex_version,
|
|
|
|
include_license=include_license,
|
|
|
|
include_git_version=include_git_version,
|
|
|
|
include_pytex_info_text=include_pytex_info_text,
|
2021-10-22 19:29:23 +02:00
|
|
|
extra_header=extra_header,
|
2021-10-22 10:01:33 +02:00
|
|
|
author=author,
|
2021-10-22 13:39:56 +02:00
|
|
|
pytex_repo=git.Repo(__file__, search_parent_directories=True),
|
|
|
|
packages_repo=git.Repo(src_dir, search_parent_directories=True)
|
2021-10-22 10:01:33 +02:00
|
|
|
)
|
2021-10-22 10:57:16 +02:00
|
|
|
input_dir = src_dir if src_dir else input_file.parent
|
|
|
|
output_dir = build_dir if build_dir else input_file.parent
|
|
|
|
|
2021-10-22 12:56:00 +02:00
|
|
|
last_build_info_file = output_dir / BUILD_INFO_FILENAME
|
|
|
|
if last_build_info_file.exists():
|
|
|
|
with open(output_dir / 'build_info.json', 'r') as f:
|
|
|
|
last_build_info = json.load(f)
|
|
|
|
else:
|
|
|
|
last_build_info = None
|
2021-10-22 10:01:33 +02:00
|
|
|
|
|
|
|
files = []
|
|
|
|
if input_file:
|
|
|
|
files.append(input_file)
|
|
|
|
if src_dir:
|
|
|
|
if recursive:
|
|
|
|
for file in src_dir.rglob('*.pysty'):
|
|
|
|
files.append(file)
|
|
|
|
for file in src_dir.rglob('*.pycls'):
|
|
|
|
files.append(file)
|
2022-01-09 14:15:18 +01:00
|
|
|
for file in src_dir.rglob('*.pydict'):
|
|
|
|
files.append(file)
|
2021-10-22 10:01:33 +02:00
|
|
|
else:
|
|
|
|
for file in src_dir.glob('*.pysty'):
|
|
|
|
files.append(file)
|
|
|
|
for file in src_dir.glob('*.pycls'):
|
|
|
|
files.append(file)
|
2022-01-09 14:15:18 +01:00
|
|
|
for file in src_dir.glob('*.pydict'):
|
|
|
|
files.append(file)
|
2021-10-22 10:01:33 +02:00
|
|
|
|
|
|
|
sources_to_build = []
|
|
|
|
for file in files:
|
2021-10-22 12:56:00 +02:00
|
|
|
if last_build_info:
|
|
|
|
last_build_info_for_this_file = next(
|
|
|
|
(info for info in last_build_info['tex_sources'] if info['source file'] == file.name), {})
|
|
|
|
else:
|
|
|
|
last_build_info_for_this_file = None
|
2021-10-22 10:01:33 +02:00
|
|
|
sources_to_build.append(
|
|
|
|
TexFileToFormat(
|
|
|
|
src_path=file,
|
2021-10-22 10:57:16 +02:00
|
|
|
build_dir=output_dir / file.parent.relative_to(input_dir),
|
|
|
|
latex_name=latex_name,
|
2021-10-22 12:56:00 +02:00
|
|
|
current_build_info=current_build_info,
|
|
|
|
last_build_info=last_build_info_for_this_file,
|
2021-10-22 11:58:56 +02:00
|
|
|
allow_dirty=allow_dirty,
|
|
|
|
overwrite_existing_files=overwrite_existing_files,
|
|
|
|
build_all=build_all
|
2021-10-22 10:01:33 +02:00
|
|
|
))
|
|
|
|
|
2021-10-22 10:57:16 +02:00
|
|
|
info_dict = {
|
2021-10-22 10:01:33 +02:00
|
|
|
'build_time': '',
|
2021-10-22 11:58:56 +02:00
|
|
|
'source files': {
|
2021-10-22 10:57:16 +02:00
|
|
|
'version': current_build_info.packages_version,
|
|
|
|
'commit': current_build_info.packages_hash,
|
2021-10-22 11:58:56 +02:00
|
|
|
'dirty': current_build_info.package_repo.is_dirty(untracked_files=True)
|
2021-10-22 10:01:33 +02:00
|
|
|
},
|
2021-10-22 11:58:56 +02:00
|
|
|
'pytex': {
|
2021-10-22 10:57:16 +02:00
|
|
|
'version': current_build_info.pytex_version,
|
|
|
|
'commit': current_build_info.pytex_hash,
|
2021-10-22 11:58:56 +02:00
|
|
|
'dirty': current_build_info.pytex_repo.is_dirty(untracked_files=True)
|
2021-10-22 10:57:16 +02:00
|
|
|
},
|
|
|
|
'tex_sources': [
|
|
|
|
|
|
|
|
]
|
2021-10-22 10:01:33 +02:00
|
|
|
}
|
2021-10-22 10:57:16 +02:00
|
|
|
|
|
|
|
for source in sources_to_build:
|
|
|
|
info = source.format()
|
|
|
|
info_dict['tex_sources'].append(info)
|
2021-10-22 11:58:56 +02:00
|
|
|
|
|
|
|
if write_build_information:
|
|
|
|
with open(output_dir / 'build_info.json', 'w') as f:
|
|
|
|
json.dump(info_dict, f, indent=4)
|
2021-10-22 10:01:33 +02:00
|
|
|
pytex_msg('Build done')
|