sh_cpl/src/cpl_cli/publish/publisher.py

308 lines
12 KiB
Python
Raw Normal View History

2021-03-08 20:29:08 +01:00
import importlib
2021-03-04 19:06:53 +01:00
import os
import shutil
2021-03-04 21:57:18 +01:00
from string import Template as stringTemplate
2021-03-04 19:06:53 +01:00
2021-03-08 20:29:08 +01:00
import setuptools
from setuptools import sandbox
2021-03-04 19:06:53 +01:00
from cpl.application.application_runtime_abc import ApplicationRuntimeABC
from cpl.console.console import Console
2021-03-08 20:29:08 +01:00
from cpl_cli.configuration.build_settings import BuildSettings
from cpl_cli.configuration.project_settings import ProjectSettings
2021-03-04 19:06:53 +01:00
from cpl_cli.publish.publisher_abc import PublisherABC
2021-03-10 08:09:56 +01:00
from cpl_cli.templates.build.init import Init
from cpl_cli.templates.publish.setup import Setup
2021-03-04 19:06:53 +01:00
class Publisher(PublisherABC):
2021-03-08 20:29:08 +01:00
def __init__(self, runtime: ApplicationRuntimeABC, project: ProjectSettings, build: BuildSettings):
2021-03-04 19:06:53 +01:00
PublisherABC.__init__(self)
self._runtime = runtime
2021-03-08 20:29:08 +01:00
self._project_settings = project
self._build_settings = build
self._source_path = os.path.join(self._runtime.working_directory, self._build_settings.source_path)
self._output_path = os.path.join(self._runtime.working_directory, self._build_settings.output_path)
2021-03-04 21:57:18 +01:00
self._included_files: list[str] = []
2021-03-09 21:07:47 +01:00
self._included_dirs: list[str] = []
2021-03-08 20:29:08 +01:00
self._distributed_files: list[str] = []
2021-03-04 19:06:53 +01:00
@property
def source_path(self) -> str:
return ''
@property
def dist_path(self) -> str:
return ''
2021-03-04 21:57:18 +01:00
@staticmethod
def _get_module_name_from_dirs(file: str) -> str:
2021-03-08 20:32:09 +01:00
if 'src/' in file:
2021-03-09 22:26:54 +01:00
file = file.replace('src/', '', 1)
2021-03-08 20:32:09 +01:00
2021-03-04 21:57:18 +01:00
dirs = os.path.dirname(file).split('/')
for d in dirs:
if d.__contains__('.'):
dirs.remove(d)
if len(dirs) == 0:
return os.path.basename(file)
else:
return '.'.join(dirs)
@staticmethod
def _delete_path(path: str):
if os.path.isdir(path):
2021-03-04 19:06:53 +01:00
try:
2021-03-04 21:57:18 +01:00
shutil.rmtree(path)
2021-03-04 19:06:53 +01:00
except Exception as e:
Console.error(f'{e}')
exit()
2021-03-04 21:57:18 +01:00
@staticmethod
def _create_path(path: str):
if not os.path.isdir(path):
2021-03-04 19:06:53 +01:00
try:
2021-03-04 21:57:18 +01:00
os.makedirs(path)
2021-03-04 19:06:53 +01:00
except Exception as e:
Console.error(f'{e}')
exit()
2021-03-08 20:29:08 +01:00
def _is_path_excluded(self, path: str) -> bool:
for excluded in self._build_settings.excluded:
if excluded.startswith('*'):
excluded = excluded.replace('*', '')
2021-03-09 21:07:47 +01:00
if excluded in path and path not in self._build_settings.included:
2021-03-08 20:29:08 +01:00
return True
return False
2021-03-04 21:57:18 +01:00
def _read_sources(self):
2021-03-08 20:29:08 +01:00
for file in self._build_settings.included:
2021-03-04 21:57:18 +01:00
rel_path = os.path.relpath(file)
if os.path.isdir(rel_path):
for r, d, f in os.walk(rel_path):
for sub_file in f:
relative_path = os.path.relpath(r)
file_path = os.path.join(relative_path, os.path.relpath(sub_file))
2021-03-09 22:26:54 +01:00
self._included_files.append(os.path.relpath(file_path))
2021-03-04 21:57:18 +01:00
elif os.path.isfile(rel_path):
self._included_files.append(rel_path)
else:
Console.error(f'Path not found: {rel_path}')
2021-03-08 20:29:08 +01:00
for r, d, f in os.walk(self._build_settings.source_path):
2021-03-04 21:57:18 +01:00
for file in f:
relative_path = os.path.relpath(r)
file_path = os.path.join(relative_path, os.path.relpath(file))
2021-03-09 21:07:47 +01:00
if len(d) > 0:
for directory in d:
empty_dir = os.path.join(os.path.dirname(file_path), directory)
if len(os.listdir(empty_dir)) == 0:
self._included_dirs.append(empty_dir)
2021-03-08 20:29:08 +01:00
if not self._is_path_excluded(relative_path):
2021-03-04 21:57:18 +01:00
self._included_files.append(os.path.relpath(file_path))
2021-03-04 19:06:53 +01:00
def _create_packages(self):
2021-03-04 21:57:18 +01:00
for file in self._included_files:
2021-03-10 08:09:56 +01:00
if file.endswith('__init__.py'):
2021-03-04 21:57:18 +01:00
template_content = ''
module_file_lines: list[str] = []
title = self._get_module_name_from_dirs(file)
if title == '':
2021-03-08 20:29:08 +01:00
title = self._project_settings.name
2021-03-04 21:57:18 +01:00
elif not title.__contains__('.'):
2021-03-08 20:29:08 +01:00
title = f'{self._project_settings.name}.{title}'
2021-03-04 21:57:18 +01:00
module_py_lines: list[str] = []
imports = ''
with open(file, 'r') as py_file:
module_file_lines = py_file.readlines()
py_file.close()
if len(module_file_lines) == 0:
imports = '# imports:'
else:
is_started = False
for line in module_file_lines:
if line.__contains__('# imports'):
is_started = True
if (line.__contains__('from') or line.__contains__('import')) and is_started:
module_py_lines.append(line.replace('\n', ''))
if len(module_py_lines) > 0:
imports = '\n'.join(module_py_lines)
2021-03-10 08:09:56 +01:00
template_content = stringTemplate(Init.get_init_py()).substitute(
Name=self._project_settings.name,
Description=self._project_settings.description,
LongDescription=self._project_settings.long_description,
CopyrightDate=self._project_settings.copyright_date,
CopyrightName=self._project_settings.copyright_name,
LicenseName=self._project_settings.license_name,
LicenseDescription=self._project_settings.license_description,
Title=title if title is not None and title != '' else self._project_settings.name,
Author=self._project_settings.author,
Version=self._project_settings.version.to_str(),
Major=self._project_settings.version.major,
Minor=self._project_settings.version.minor,
Micro=self._project_settings.version.micro,
Imports=imports
)
2021-03-04 21:57:18 +01:00
with open(file, 'w+') as py_file:
py_file.write(template_content)
py_file.close()
2021-03-04 19:06:53 +01:00
def _dist_files(self):
2021-03-08 20:29:08 +01:00
build_path = os.path.join(self._output_path)
2021-03-04 21:57:18 +01:00
self._delete_path(build_path)
self._create_path(build_path)
for file in self._included_files:
2021-03-08 20:29:08 +01:00
dist_file = file
if 'src/' in dist_file:
2021-03-09 22:26:54 +01:00
dist_file = dist_file.replace('src/', '', 1)
2021-03-08 20:29:08 +01:00
output_path = os.path.join(build_path, os.path.dirname(dist_file))
output_file = os.path.join(build_path, dist_file)
2021-03-04 21:57:18 +01:00
try:
if not os.path.isdir(output_path):
os.makedirs(output_path, exist_ok=True)
except Exception as e:
Console.error(__name__, f'Cannot create directories: {output_path} -> {e}')
2021-03-08 20:29:08 +01:00
return
2021-03-04 21:57:18 +01:00
try:
2021-03-08 20:29:08 +01:00
self._distributed_files.append(output_file)
2021-03-04 21:57:18 +01:00
shutil.copy(os.path.abspath(file), output_file)
except Exception as e:
Console.error(__name__, f'Cannot copy file: {file} to {output_path} -> {e}')
2021-03-08 20:29:08 +01:00
return
2021-03-09 21:07:47 +01:00
for empty_dir in self._included_dirs:
dist_dir = empty_dir
if 'src/' in dist_dir:
dist_dir = dist_dir.replace('src/', '', 1)
output_path = os.path.join(build_path, dist_dir)
if not os.path.isdir(output_path):
os.makedirs(output_path)
2021-03-08 20:29:08 +01:00
def _clean_dist_files(self):
paths: list[str] = []
for file in self._distributed_files:
paths.append(os.path.dirname(file))
if os.path.isfile(file):
os.remove(file)
for path in paths:
if os.path.isdir(path):
shutil.rmtree(path)
2021-03-09 22:26:54 +01:00
@staticmethod
def _package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
2021-03-08 20:29:08 +01:00
def _create_setup(self):
setup_file = os.path.join(self._output_path, 'setup.py')
if os.path.isfile(setup_file):
os.remove(setup_file)
main = None
try:
main = importlib.import_module(self._build_settings.main)
except Exception as e:
Console.error('Could not find entry point', str(e))
if main is None:
Console.error('Could not find entry point')
return
with open(setup_file, 'w+') as setup_py:
2021-03-10 08:09:56 +01:00
setup_string = stringTemplate(Setup.get_setup_py()).substitute(
2021-03-08 20:29:08 +01:00
Name=self._project_settings.name,
Version=self._project_settings.version.to_str(),
2021-03-09 21:07:47 +01:00
Packages=setuptools.find_packages(where=self._output_path, exclude=self._build_settings.excluded),
2021-03-08 20:29:08 +01:00
URL=self._project_settings.url,
LicenseName=self._project_settings.license_name,
Author=self._project_settings.author,
AuthorMail=self._project_settings.author_email,
2021-03-09 21:07:47 +01:00
IncludePackageData=self._build_settings.include_package_data,
2021-03-08 20:29:08 +01:00
Description=self._project_settings.description,
PyRequires=self._project_settings.python_version,
Dependencies=self._project_settings.dependencies,
EntryPoints={
'console_scripts': [
f'{self._build_settings.entry_point} = {main.__name__}:{main.main.__name__}'
]
2021-03-09 21:07:47 +01:00
},
PackageData=self._build_settings.package_data
2021-03-08 20:29:08 +01:00
)
setup_py.write(setup_string)
setup_py.close()
def _run_setup(self):
setup_py = os.path.join(self._output_path, 'setup.py')
if not os.path.isfile(setup_py):
Console.error(__name__, f'setup.py not found in {self._output_path}')
return
try:
sandbox.run_setup(os.path.abspath(setup_py), [
'sdist',
f'--dist-dir={os.path.join(self._output_path, "setup")}',
'bdist_wheel',
f'--bdist-dir={os.path.join(self._output_path, "bdist")}',
f'--dist-dir={os.path.join(self._output_path, "setup")}'
])
os.remove(setup_py)
except Exception as e:
Console.error('Executing setup.py failed', str(e))
2021-03-04 19:06:53 +01:00
def include(self, path: str):
2021-03-08 20:29:08 +01:00
self._build_settings.included.append(path)
2021-03-04 19:06:53 +01:00
def exclude(self, path: str):
2021-03-08 20:29:08 +01:00
self._build_settings.excluded.append(path)
2021-03-04 19:06:53 +01:00
def build(self):
2021-03-08 20:29:08 +01:00
self._output_path = os.path.join(self._output_path, 'build')
2021-03-05 16:31:27 +01:00
Console.spinner('Reading source files:', self._read_sources)
Console.spinner('Creating internal packages:', self._create_packages)
2021-03-08 20:29:08 +01:00
Console.spinner('Building application:', self._dist_files)
2021-03-04 19:06:53 +01:00
def publish(self):
2021-03-08 20:29:08 +01:00
self._output_path = os.path.join(self._output_path, 'publish')
Console.write_line('Build:')
Console.spinner('Reading source files:', self._read_sources)
Console.spinner('Creating internal packages:', self._create_packages)
Console.spinner('Building application:', self._dist_files)
Console.write_line('\nPublish:')
Console.spinner('Generating setup.py:', self._create_setup)
Console.write_line('Running setup.py:\n')
self._run_setup()
Console.spinner('Cleaning dist path:', self._clean_dist_files)