1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
from pathlib import Path
import subprocess
import tempfile
from hat import json
from hat.doit import common
from hat.doit.docs import build_sphinx
from hat.doit.js import (ESLintConf,
run_eslint)
from hat.doit.py import (build_wheel,
run_pytest,
run_flake8)
from hat.doit.c import get_task_clang_format
from .c import * # NOQA
from .dist import * # NOQA
from . import c
from . import dist
__all__ = ['task_clean_all',
'task_wheel',
'task_check',
'task_test',
'task_docs',
'task_ui',
'task_node_modules',
'task_format',
'task_json_schema_repo',
*c.__all__,
*dist.__all__]
build_dir = Path('build')
src_py_dir = Path('src_py')
src_js_dir = Path('src_js')
src_static_dir = Path('src_static')
pytest_dir = Path('test_pytest')
docs_dir = Path('docs')
schemas_dir = Path('schemas')
node_modules_dir = Path('node_modules')
build_docs_dir = build_dir / 'docs'
build_py_dir = build_dir / 'py'
ui_dir = src_py_dir / 'opcut/ui'
ui_docs_dir = ui_dir / 'docs'
json_schema_repo_path = src_py_dir / 'opcut/json_schema_repo.json'
def task_clean_all():
"""Clean all"""
return {'actions': [(common.rm_rf, [
build_dir,
ui_dir,
json_schema_repo_path,
*src_py_dir.glob('opcut/_libopcut.*')])]}
def task_wheel():
"""Build wheel"""
def build():
build_wheel(
src_dir=src_py_dir,
dst_dir=build_py_dir,
name='opcut',
description='Cutting stock problem optimizer',
url='https://github.com/bozokopic/opcut',
license=common.License.GPL3,
console_scripts=['opcut = opcut.main:main'])
return {'actions': [build],
'task_dep': ['ui',
'json_schema_repo',
'c']}
def task_check():
"""Check"""
return {'actions': [(run_flake8, [src_py_dir]),
(run_flake8, [pytest_dir]),
(run_eslint, [src_js_dir, ESLintConf.TS])],
'task_dep': ['node_modules']}
def task_test():
"""Test"""
return {'actions': [(common.mkdir_p, [ui_dir]),
lambda args: run_pytest(pytest_dir, *(args or []))],
'pos_arg': 'args',
'task_dep': ['json_schema_repo']}
def task_docs():
"""Build documentation"""
def build():
build_sphinx(src_dir=docs_dir,
dst_dir=build_docs_dir,
project='opcut')
return {'actions': [build]}
def task_ui():
"""Build UI"""
def build(args):
args = args or []
common.rm_rf(ui_dir)
common.cp_r(src_static_dir, ui_dir)
common.cp_r(schemas_dir, ui_dir)
common.mkdir_p(ui_docs_dir)
for i in build_docs_dir.glob('*'):
if i.name.startswith('.'):
continue
common.cp_r(i, ui_docs_dir)
with tempfile.TemporaryDirectory() as tmpdir:
tmpdir = Path(tmpdir)
config_path = tmpdir / 'webpack.config.js'
config_path.write_text(_webpack_conf.format(
src_path=(src_js_dir / 'main.ts').resolve(),
dst_dir=ui_dir.resolve()))
subprocess.run([str(node_modules_dir / '.bin/webpack'),
'--config', str(config_path),
*args],
check=True)
return {'actions': [build],
'pos_arg': 'args',
'task_dep': ['docs',
'node_modules']}
def task_node_modules():
"""Install node modules"""
return {'actions': ['yarn install --silent']}
def task_format():
"""Format"""
yield from get_task_clang_format([*Path('src_c').rglob('*.c'),
*Path('src_c').rglob('*.h')])
def task_json_schema_repo():
"""Generate JSON Schema Repository"""
src_paths = [schemas_dir / 'opcut.yaml']
def generate():
repo = json.SchemaRepository(*src_paths)
data = repo.to_json()
json.encode_file(data, json_schema_repo_path, indent=None)
return {'actions': [generate],
'file_dep': src_paths,
'targets': [json_schema_repo_path]}
_webpack_conf = r"""
module.exports = {{
mode: 'none',
entry: '{src_path}',
output: {{
filename: 'main.js',
path: '{dst_dir}'
}},
module: {{
rules: [
{{
test: /\.scss$/,
use: [
"style-loader",
{{
loader: "css-loader",
options: {{url: false}}
}},
{{
loader: "sass-loader",
options: {{sourceMap: true}}
}}
]
}},
{{
test: /\.ts$/,
use: 'ts-loader'
}}
]
}},
resolve: {{
extensions: ['.ts', '.js']
}},
watchOptions: {{
ignored: /node_modules/
}},
devtool: 'source-map',
stats: 'errors-only'
}};
"""
|