forked from foxBMS/foxbms-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wscript
1078 lines (984 loc) · 47 KB
/
wscript
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2010 - 2022, Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# We kindly request you to use one or more of the following phrases to refer to
# foxBMS in your hardware, software, documentation or advertising materials:
#
# - "This product uses parts of foxBMS®"
# - "This product includes parts of foxBMS®"
# - "This product is derived from foxBMS®"
"""Main Build Script: ``./wscript``
================================
This script defines how to configure and build the project. This includes
configuration the toolchain for building foxBMS binaries, the documentation
and running various checks on the source files.
"""
import os
import pathlib
import shlex
import sys
import tarfile
import linecache
from binascii import hexlify
import dataclasses
import jsonschema
from waflib import Build, Configure, Context, Errors, Logs, Options, Scripting, Utils
from waflib.Build import (
BuildContext,
CleanContext,
InstallContext,
ListContext,
StepContext,
)
Context.Context.line_just = 50
Configure.autoconfig = 1
out = "build" # pylint:disable=invalid-name
"""output directory"""
top = "." # pylint:disable=invalid-name
"""waf top directory"""
APPNAME = "foxBMS"
"""name of the application. This is used in various waf functions"""
VERSION = "1.4.1"
"""version of the application. This is used in various waf functions. This
version must match the version number defined in ``macros.txt``. Otherwise a
configuration error is thrown."""
BIN_VARIANTS = ["bin", "axivion"]
"""Binary build command variations that are supported. The commands are then
generated by concatenating the command + the variant, e.g., ``build_bin``"""
MISC_VARIANTS = ["docs", "unit_test"]
"""Additional commands, that do not need more contexts than build and clean"""
ALL_VARIANTS = {"binary": BIN_VARIANTS, "misc": MISC_VARIANTS}
TOOLDIR = os.path.join("tools", "waf-tools")
BMS_CONFIG = os.path.join("conf", "bms", "bms.json")
@dataclasses.dataclass
class FoxBMSDefine:
"""container for defines"""
name: str
value: int = 0
AFE_SETUP = {
"fsm": FoxBMSDefine("FOXBMS_AFE_DRIVER_TYPE_FSM", 0),
"no-fsm": FoxBMSDefine("FOXBMS_AFE_DRIVER_TYPE_NO_FSM", 0),
}
for target_type, target_val in ALL_VARIANTS.items():
contexts = (BuildContext, CleanContext)
if target_type == "binary":
contexts += (ListContext, StepContext)
for var in target_val:
# save contexts
old_contexts = contexts
if var == "bin":
contexts += (InstallContext,)
for cont in contexts:
# pylint: disable=invalid-name
name = cont.__name__.replace("Context", "").lower()
# pylint:disable=invalid-name,too-many-ancestors,too-few-public-methods
class tmp_1(cont):
"""Helper class to create the build variant commands"""
if name == "build":
__doc__ = f"executes the {name} of {var}"
elif name == "install":
__doc__ = f"flash {var} to the target"
elif name == "clean":
__doc__ = f"cleans the project {var}"
elif name == "list":
__doc__ = f"lists the targets to execute for {var}"
elif name == "step":
__doc__ = f"executes tasks in a step-by-step fashion, for debugging of {var}"
cmd = str(name) + "_" + var
variant = var
# restore contexts
contexts = old_contexts
BLD_VARIANTS = []
CLN_VARIANTS = []
# build and clean variants exist for all commands
for target_type, target_val in ALL_VARIANTS.items():
for var in target_val:
BLD_VARIANTS.append(f"build_{var}")
CLN_VARIANTS.append(f"clean_{var}")
DIST_EXCLUDE = (
f"{out}/** **/.git **/.gitignore .gitlab/** **/.gitattributes "
"**/*.tar.bz2 **/*.tar.gz **/*.pyc __pycache__ "
"tools/waf*.*.**-* .lock-* "
f".ws *eclipse* .vs* { APPNAME.lower()}/**"
)
"""Files and directories that are excluded when running dist commands"""
def version_consistency_checker(ctx):
"""checks that all version strings in the repository are synced"""
doc_dir = "docs"
changelog_file = ctx.path.find_node(
os.path.join(doc_dir, "general", "changelog.rst")
)
changelog_txt = changelog_file.read(encoding="utf-8")
m_file = ctx.path.find_node(os.path.join(doc_dir, "macros.txt"))
m_file_txt = m_file.read(encoding="utf-8")
gs_file = ctx.path.find_node(
os.path.join(doc_dir, "getting-started", "software-installation.rst")
)
gs_file_txt = gs_file.read()
if m_file_txt.find(f".. |version_foxbms| replace:: ``{VERSION}``") < 0:
ctx.fatal(
f"The version information in {m_file} is different from the "
f"specified version {VERSION}."
)
if changelog_txt.find(f"[{VERSION}]") < 0:
ctx.fatal(
f"The version information in {changelog_file} is different "
f"from the specified version {VERSION}."
)
repo_url = "https://github.com/foxBMS/foxbms-2"
must_include_version = [
f"curl -Ss -L -o foxbms-2-v{VERSION}.zip {repo_url}/archive/v{VERSION}.zip",
f"tar -x -f foxbms-2-v{VERSION}.zip",
f"ren foxbms-2-{VERSION} foxbms-2",
]
if not all(gs_file_txt.find(i) > 0 for i in must_include_version):
ctx.fatal(
f"The version information in {gs_file} is different from the "
f"specified version {VERSION}"
)
pys = [
ctx.path.find_node(os.path.join("tools", "gui", "fgui", "__init__.py")),
]
if not all(i.read().find(f'__version__ = "{VERSION}"') > 0 for i in pys):
ctx.fatal(f"Version information in {pys} is not correct.")
all_c_sources = ctx.path.ant_glob(
"docs/**/*.c docs/**/*.h src/**/*.c src/**/*.c tests/**/*.c tests/**/*.c",
excl=["tests/axivion/addon-test/**/*.c", "tests/axivion/addon-test/**/*.h"],
)
version_line = -1
main_txt = ctx.path.find_node("src/app/main/main.c").read()
for i, line in enumerate(main_txt.splitlines()):
if line.startswith(" * @version "):
version_line = i + 1
break
expected_line = f"* @version v{VERSION}"
for i in all_c_sources:
version_line_txt = linecache.getline(i.abspath(), version_line)
if version_line_txt.startswith(" * @version "):
if not version_line_txt.strip() == expected_line:
ctx.fatal(
f"Version information in {i.abspath()}:{version_line} is "
f"not correct (expected '{expected_line}', but found "
f"'{version_line_txt.strip()}')."
)
def options(opt):
"""Defines options that can be passed to waf"""
opt.add_option(
"--coverage",
action="store_true",
help="Builds a coverage report based on the unit test",
)
opt.load("f_axivion", tooldir=TOOLDIR)
opt.load("f_sphinx_build", tooldir=TOOLDIR)
opt.load("doxygen", tooldir=TOOLDIR)
opt.load("f_ti_arm_cgt", tooldir=TOOLDIR)
# load db-check-tool
opt.load("f_check_db_vars", tooldir=TOOLDIR)
# load bootstrap-library-project-tool
opt.load("f_bootstrap_library_project", tooldir=TOOLDIR)
opt.load("f_guidelines", tooldir=TOOLDIR)
for k in (
"--targets",
"--out",
"--top",
"--prefix",
"--destdir",
"--bindir",
"--libdir",
"--msvc_version",
"--msvc_targets",
"--no-msvc-lazy",
"--force",
"--check-c-compiler",
"doxygen",
):
option = opt.parser.get_option(k)
if option:
opt.parser.remove_option(k)
Context.classes.remove(Build.UninstallContext)
opt.add_option(
"--confcache",
dest="confcache",
default=0,
action="count",
help="Use a configuration cache",
)
opt.add_option(
"--skip-doxygen",
action="store_true",
help="Builds the documentation without the Doxygen documentation",
)
opt.load("f_miniconda_env", tooldir=TOOLDIR)
opt.load("f_lauterbach", tooldir=TOOLDIR)
opt.add_option(
"--why", dest="WHY", action="store_true", help="Loads the 'why' tool."
)
opt.load("f_j_flash", tooldir=TOOLDIR)
opt.load("f_git_hooks", tooldir=TOOLDIR)
def configure(conf): # pylint: disable=too-many-statements,too-many-branches
"""Configures the project.
This includes loading all tools needed to build and link binaries,
rendering the documentation and checking source files for style violations:
The loaded tools are:
- TI ARM compiler (`f_ti_arm_cgt`)
- Documentation tools (`f_sphinx_build`, `doxygen`)
To ensure that the active environment is the correct one for the project,
all conda packages are checked to be installed in the correct version.
A workspace is generated if Visual Studio Code is found on the machine.
"""
if " " in conf.path.abspath():
conf.fatal(f"Project path must not contain spaces ({conf.path}).")
conf.env.append_unique("PROJECT_ROOT", pathlib.Path(conf.path.abspath()).as_posix())
known_max_depth = 133
if Utils.is_win32 and len(conf.path.abspath()) + known_max_depth > 260:
conf.fatal(
"Build path length will exceed 260 characters.\nClone or move the "
"repository into a shorter path."
)
conf.msg("Checking project path", conf.path.abspath())
version_consistency_checker(conf)
conf.load("f_helpers", tooldir=TOOLDIR)
conf.find_program("git", var="GIT")
conf.load("f_node_helper", tooldir=TOOLDIR)
conf.load("f_ti_arm_cgt", tooldir=TOOLDIR)
fragment = "#include <stdint.h>\n\nint main() {\n return 0;\n}\n"
conf.check(
features="c", fragment=fragment, msg="Checking for code snippet (object)"
)
fragment = "#include <stdint.h>\n\nint sum(int a, int b){\n return (a + b);}\n"
conf.check(
features="c cstlib",
fragment=fragment,
msg="Checking for code snippet (library)",
)
def full_build(bld):
c_fragment = "#include <stdint.h>\n\nint main() {\n return 0;\n}\n"
h_fragment = (
"#ifndef GENERAL_H_\n#define GENERAL_H_\n#include <stdbool.h>\n"
"#include <stdint.h>\n#endif /* GENERAL_H_ */\n"
)
source = bld.srcnode.make_node("test.c")
source.parent.mkdir()
source.write(c_fragment, encoding="utf-8")
include = bld.srcnode.make_node("general.h")
include.write(h_fragment, encoding="utf-8")
linker_script = bld.path.find_node(
os.path.join("..", "..", "src", "app", "main", "linker_script_elf.cmd")
)
version_header = bld.path.find_node(
os.path.join(
"..", "..", "src", "app", "main", "include", "config", "version_cfg.h"
)
)
cflags = []
if bld.env.RTSV_missing:
cflags = ["--diag_remark=10366"]
linker_pulls = bld.path.find_or_declare("linker_pulls.json")
linker_pulls.write("{}\n")
bld.tiprogram(
includes=[include.parent, version_header.parent],
source=[source],
cflags=cflags,
linker_script=linker_script,
no_version=True,
linker_pulls=linker_pulls,
)
default_env = conf.env
test_env = conf.env.derive()
test_env.detach()
conf.setenv("test_env", test_env)
rtsv_lib = "rtsv7R4_A_be_v3D16_eabi.lib"
rtsv_lib_path = os.path.join(
pathlib.Path(conf.env.get_flat("CC")).parent.parent.absolute(),
"lib",
rtsv_lib,
)
if not os.path.isfile(rtsv_lib_path):
Logs.warn(
f"Runtime support library '{rtsv_lib}' missing. Need to build "
"it first. The next step may take a while..."
)
conf.env.RTSV_missing = True
else:
conf.env.RTSV_missing = False
conf.env.STLIB = ["c"]
conf.env.TARGETLIB = []
if "--undef_sym=resetEntry" in conf.env.LINKFLAGS:
conf.env.LINKFLAGS.remove("--undef_sym=resetEntry")
conf.check(msg="Checking for code snippet (program)", build_fun=full_build)
conf.setenv("", default_env)
conf.load("f_miniconda_env", tooldir=TOOLDIR)
conf.load("f_check_db_vars", tooldir=TOOLDIR)
conf.load("f_bootstrap_library_project", tooldir=TOOLDIR)
conf.load("f_guidelines", tooldir=TOOLDIR)
# add flasher tool
conf.load("f_j_flash", tooldir=TOOLDIR)
# configure the documentation toolchain
conf.load("f_sphinx_build", tooldir=TOOLDIR)
conf.load("doxygen", tooldir=TOOLDIR)
conf.load("f_unit_test", tooldir=TOOLDIR)
conf.env.VSCODE_MK_DIRS = [
os.path.join(out, "unit_test", "test", "mocks"),
os.path.join(out, "bin", "src", "app", "main"),
os.path.join(out, "bin", "src", "hal", "include"),
os.path.join(out, "bin", "src", "hal", "source"),
]
conf.load("f_ozone", tooldir=TOOLDIR)
conf.load("f_lauterbach", tooldir=TOOLDIR)
conf.load("f_axivion", tooldir=TOOLDIR)
# Configure the build for the correct RTOS
bms_config_node = conf.path.find_node(BMS_CONFIG)
conf.env.append_unique(
"CONFIG_BMS_JSON_HASH", hexlify(bms_config_node.h_file()).decode("utf-8")
)
bms_config = bms_config_node.read_json()
validator = conf.f_validator(
conf.path.find_node(
os.path.join("conf", "bms", "schema", "bms.schema.json")
).abspath()
)
try:
validator.validate(bms_config)
except jsonschema.exceptions.ValidationError as err:
good_values = ", ".join([f"'{i}'" for i in err.validator_value])
conf.fatal(
f"Setting '{err.instance}' in '{'/'.join(list(err.path))}' is not "
f"supported.\nUse one of these: {good_values}."
)
# parse conf/bms/bms.json to get all required defines, includes etc.
# needs to be done, prior to loading the VS Code tool!
# AFE on Slave unit: bms.json:slave-unit:analog-front-end
slave_afe = bms_config["slave-unit"]["analog-front-end"]
afe_man = slave_afe["manufacturer"]
afe_ic = slave_afe["ic"]
conf.env.afe_manufacturer = afe_man
conf.env.afe_ic = afe_ic
# vendor/ic includes and foxBMS specific driver adaptions
afe_ic_inc = slave_afe["ic"]
afe_driver_type = "fsm"
if slave_afe["manufacturer"] == "ltc":
if slave_afe["ic"] in ("6804-1", "6811-1", "6812-1"):
afe_ic_inc = "6813-1"
elif slave_afe["manufacturer"] == "nxp":
if slave_afe["ic"] == "mc33775a":
afe_driver_type = "no-fsm"
# set the driver type implementation accordingly
AFE_SETUP[afe_driver_type].value = 1
for _, i in AFE_SETUP.items():
conf.define(i.name, i.value)
# get AFE includes
afe_base_path = os.path.join("src", "app", "driver", "afe")
incs = os.path.join(
afe_base_path, afe_man, afe_ic_inc, f"{afe_man}_{afe_ic_inc}.json"
)
afe_details = conf.path.find_node(incs).read_json()
afe_includes = [
os.path.join(afe_base_path, afe_man, afe_ic_inc, i)
for i in afe_details["include"]
]
for i in afe_includes:
if not os.path.isdir(i):
conf.fatal(f"'{i}' does not exist.")
conf.env.append_unique(
"INCLUDES_AFE", [conf.path.find_node(i).abspath() for i in afe_includes]
)
# temperature sensor on Slave unit: bms.json:slave-unit:temperature-sensor
slave_temp = bms_config["slave-unit"]["temperature-sensor"]
conf.env.temperature_sensor_manuf = slave_temp["manufacturer"]
conf.env.temperature_sensor_model = slave_temp["model"]
conf.env.temperature_sensor_meth = slave_temp["method"]
# application setting: bms.json:application
# state estimation
app_cfg = bms_config["application"]
state_estimators = app_cfg["algorithm"]["state-estimation"]
conf.env.state_estimator_soc = state_estimators["soc"]
conf.env.state_estimator_soe = state_estimators["soe"]
conf.env.state_estimator_sof = state_estimators["sof"]
conf.env.state_estimator_soh = state_estimators["soh"]
# balancing strategy
conf.env.balancing_strategy = app_cfg["balancing-strategy"]
# ltc 6806 (fuel cell monitoring ic) has no balancing support
if (
afe_man == "ltc"
and afe_ic == "6806"
and not conf.env.balancing_strategy == "none"
):
conf.fatal(f"{afe_man.upper()} {afe_ic} does not support balancing.")
# insulation-monitoring-device
imd_cfg = app_cfg["insulation-monitoring-device"]
conf.env.imd_manufacturer = imd_cfg["manufacturer"]
conf.env.imd_model = imd_cfg["model"]
if conf.env.imd_manufacturer:
conf.env.append_unique(
"INCLUDES_IMD",
[
conf.path.find_node(i)
for i in [
conf.env.imd_manufacturer + conf.env.imd_model,
]
],
)
# rtos: bms.json:rtos
rtos_name = bms_config["rtos"]["name"]
rtos_base_path = os.path.join("src", "os", rtos_name)
conf.env.append_unique("RTOS_NAME", rtos_name)
rtos_details = conf.path.find_node(
os.path.join(rtos_base_path, f"{rtos_name}_cfg.json")
).read_json()
rtos_includes = [os.path.join(rtos_base_path, i) for i in rtos_details["include"]]
conf.env.append_unique(
"INCLUDES_RTOS", [conf.path.find_node(i).abspath() for i in rtos_includes]
)
conf.define(f"FOXBMS_USES_{bms_config['rtos']['name'].upper()}", 1)
# load VS Code setup as last foxBMS specific tool to ensure that all
# variables have a meaningful value
conf.load("f_vscode", tooldir=TOOLDIR)
conf.load("f_git_hooks", tooldir=TOOLDIR)
# the project has been successfully configured, now we can set the
# application name and version
conf.env.APPNAME = APPNAME
conf.env.VERSION = VERSION
if conf.options.WHY:
conf.load("why", tooldir=TOOLDIR)
def build(bld): # pylint: disable=too-many-branches,too-many-statements
"""High level definition of the build details"""
if not bld.variant:
bld.fatal(
f"A {bld.cmd} variant must be specified. The build variants are: "
f"{', '.join(BLD_VARIANTS)}.\nFor more details run 'python "
f"tools{os.sep}waf --help'"
)
# we need to patch the build instructions for the Axivion build, and by
# that the "normal" build using TI ARM CGT gets broken (only in that
# context!), therefore (build|clean)_axivion must only be used as last
# build commands if multiple commands are supplied.
all_commands = [bld.cmd] + Options.commands # current command + remaining
if any(x in all_commands for x in ["build_axivion", "clean_axivion"]):
b_idx = sys.maxsize
try:
b_idx = all_commands.index("build_axivion")
except ValueError:
pass
c_idx = sys.maxsize
try:
c_idx = all_commands.index("clean_axivion")
except ValueError:
pass
min_idx = min([b_idx, c_idx])
ax_commands = all_commands[min_idx:]
err = 0
for i in ax_commands:
if not "_axivion" in i:
err += 1
Logs.error(f"'{i}' must not be used in that order {all_commands!r}.")
if err:
bld.fatal(
"Axivion related commands must be moved to the end of the "
"command list, i.e. all other build commands must precede the "
"axivion commands."
)
version_consistency_checker(bld)
bld.env.append_unique(
"CMD_FILES",
[bld.path.find_node(os.path.join("conf", "cc", "remarks.txt")).abspath()],
)
if not bld.env.CONFIG_BMS_JSON_HASH[0] == hexlify(
bld.path.find_node(BMS_CONFIG).h_file()
).decode("utf-8"):
bld.fatal(f"{BMS_CONFIG} has changed. Please run the configure command again.")
if bld.variant == "bin":
bld.recurse("src")
if bld.variant == "axivion":
if not bld.env.AXIVION_CC:
Logs.warn("Axivion tools not available.")
return
bld.patch_for_axivion_build(bld)
bld.recurse("src")
if bld.variant == "unit_test":
Options.commands = ["check_test_files"] + Options.commands
if bld.cmd.startswith("clean"):
return
if bld.cmd.startswith("build"):
if not bld.env.CEEDLING:
bld.fatal("Can not run unit tests as ceedling is missing.")
if not bld.env.GCC:
bld.fatal("Can not run unit tests as gcc is missing.")
if not bld.env.GCOV:
bld.fatal("Can not run unit tests as gcov is missing.")
if not bld.env.GCOVR:
bld.fatal("Can not run unit tests as gcovr is missing.")
bld(
features="db_check",
files=bld.path.ant_glob("tests/unit/**/*.c"),
)
bld.add_group()
source = bld.path.find_node(bld.env.CEEDLING_MAIN_PROJECT_FILE)
bld(
features="subst",
source=source,
target=source.name,
is_copy=True,
)
source = bld.path.find_node(bld.env.CEEDLING_CMD_FILE)
bld(
features="subst",
source=source,
target=source.name,
is_copy=True,
)
bld(
source=os.path.join("conf", "hcg", "hcg.hcg"),
unit_test=True,
startup_hash=bld.path.find_node(os.path.join("src", "hal", "startup.hash")),
)
bld.add_group()
bld(features="ceedling")
if bld.variant == "docs":
# General documentation build
# There are two contexts defined. The first one copies the ``wscript`` files
# to the build directory with a ``.py`` extension to make the build scripts
# autodoc-able.
# At next the jinja2 templates generate the specific template files for documentation.
# At next doxygen is run, to ensure that doxygen's xml output is build.
# After that the regular documentation can be build using sphinx-build, which
# now includes the build documentation as well as the API documentation from
# doxygen.
bld.recurse(
[
os.path.join("docs", "developer-manual", "style-guide", "examples"),
os.path.join(
"docs", "developer-manual", "style-guide", "state-machine-example"
),
os.path.join("docs", "software", "modules", "driver", "can"),
os.path.join("docs", "software", "modules", "engine", "database"),
os.path.join("docs", "software", "modules", "task", "ftask"),
],
)
doc_dir = "docs"
bld.post_mode = Build.POST_LAZY
bld.add_group("generate_doc_files")
bld.add_group("doxygen")
bld.add_group("sphinx")
bld.set_group("generate_doc_files")
# we use absolute paths for the doxygen configuration as it is written
# during configuration time, and therefore this is okay
# fmt: off
# pylint: disable=line-too-long
_input = [
bld.path.find_node(os.path.join("docs", "developer-manual", "style-guide", "state-machine-example")),
bld.path.find_node("src")
]
_project_logo = bld.path.find_node(os.path.join("docs", "_static", "foxbms250px.png"))
_exclude = [
bld.path.find_node(os.path.join("src", "hal")),
bld.path.find_node(os.path.join("src", "os")),
bld.path.find_node(os.path.join("src", "app", "driver", "afe", "ltc", "common", "ltc_pec.c")),
bld.path.find_node(os.path.join("src", "app", "driver", "afe", "ltc", "common", "ltc_pec.h")),
bld.path.find_node(os.path.join("src", "app", "driver", "afe", "nxp", "mc33775a","vendor")),
]
_html_footer = bld.path.find_node(os.path.join("docs", "doxygen_footer.html"))
_layout_file = bld.path.find_node(os.path.join("docs", "doxygen_layout.xml"))
_html_style_sheet = bld.path.find_node(os.path.join("docs", "style-sheet-file.css"))
_html_extra_files = bld.path.find_node(os.path.join("docs", "_static", "cc.large.png"))
_image_path = bld.path.find_node(os.path.join("docs", "_static", "cc.large.png"))
# pylint: enable=line-too-long
# fmt: on
if not all(
(
_input,
_project_logo,
_exclude[:],
_html_footer,
_layout_file,
_html_style_sheet,
_html_extra_files,
_image_path,
)
):
bld.fatal("Some doxygen input is not correct.")
doxy_conf_src = bld.path.get_bld().find_or_declare("doxygen_src.conf")
bld(
features="subst",
source=bld.path.find_node(os.path.join("docs", "doxygen_src.conf.in")),
target=doxy_conf_src,
PROJECT_NAME=APPNAME,
PROJECT_NUMBER=VERSION,
PROJECT_BRIEF=f'"The {APPNAME} Battery Management System API Documentation"',
PROJECT_LOGO=_project_logo.abspath(),
OUTPUT_DIRECTORY="_static/doxygen/src",
INPUT=" ".join([i.abspath() for i in _input if i]),
EXCLUDE=" ".join([i.abspath() for i in _exclude if i]),
HTML_FOOTER=_html_footer.abspath(),
LAYOUT_FILE=_layout_file.abspath(),
HTML_STYLESHEET=_html_style_sheet.abspath(),
HTML_EXTRA_FILES=_html_extra_files.abspath(),
IMAGE_PATH=_image_path.abspath(),
)
_input = [
bld.path.find_node("src/app"),
bld.path.find_node("tests/unit"),
]
doxy_conf_tests = bld.path.get_bld().find_or_declare("doxygen_tests.conf")
bld(
features="subst",
source=bld.path.find_node(os.path.join("docs", "doxygen_tests.conf.in")),
target=doxy_conf_tests,
PROJECT_NAME=f"{APPNAME} - Unit Tests",
PROJECT_NUMBER=VERSION,
PROJECT_BRIEF=f'"The {APPNAME} Unit Tests API Documentation"',
PROJECT_LOGO=_project_logo.abspath(),
OUTPUT_DIRECTORY="_static/doxygen/tests",
INPUT=" ".join([i.abspath() for i in _input if i]),
EXCLUDE=" ".join([i.abspath() for i in _exclude if i]),
HTML_FOOTER=_html_footer.abspath(),
LAYOUT_FILE=_layout_file.abspath(),
HTML_STYLESHEET=_html_style_sheet.abspath(),
HTML_EXTRA_FILES=_html_extra_files.abspath(),
IMAGE_PATH=_image_path.abspath(),
)
bld.set_group("doxygen")
doxy_conf_src = bld.path.get_bld().find_or_declare("doxygen_src.conf")
doxy_conf_tests = bld.path.get_bld().find_or_declare("doxygen_tests.conf")
if not bld.options.skip_doxygen:
bld(features="doxygen", doxygen_conf=doxy_conf_src)
bld(features="doxygen", doxygen_conf=doxy_conf_tests)
bld.set_group("sphinx")
# fmt: off
# pylint: disable=line-too-long
sources = [
os.path.join(doc_dir, "index.rst"),
os.path.join(doc_dir, "macros.txt"),
os.path.join(doc_dir, "units.txt"),
os.path.join(doc_dir, "general", "changelog.rst"),
os.path.join(doc_dir, "general", "license.rst"),
os.path.join(doc_dir, "general", "licenses-packages-conda-env-win32.csv"),
os.path.join(doc_dir, "general", "licenses-packages-conda-env-spelling.txt"),
os.path.join(doc_dir, "general", "licenses-packages-conda-env-spelling-build-strings.txt"),
os.path.join(doc_dir, "general", "licenses-vscode-extensions.csv"),
os.path.join(doc_dir, "general", "motivation.rst"),
os.path.join(doc_dir, "general", "releases.rst"),
os.path.join(doc_dir, "general", "releases.csv"),
os.path.join(doc_dir, "general", "safety", "safety.rst"),
os.path.join(doc_dir, "general", "team.rst"),
os.path.join(doc_dir, "general", "team-ad-sc.rst"),
os.path.join(doc_dir, "general", "team-dev.rst"),
os.path.join(doc_dir, "general", "team-former.rst"),
os.path.join(doc_dir, "introduction", "abbreviations-definitions.rst"),
os.path.join(doc_dir, "introduction", "bms-overview.rst"),
os.path.join(doc_dir, "getting-started", "getting-started.rst"),
os.path.join(doc_dir, "getting-started", "repository-structure.rst"),
os.path.join(doc_dir, "getting-started", "software-installation.rst"),
os.path.join(doc_dir, "getting-started", "workspace.rst"),
os.path.join(doc_dir, "getting-started", "first-steps-on-hardware.rst"),
os.path.join(doc_dir, "hardware", "hardware.rst"),
os.path.join(doc_dir, "hardware", "design-resources.rst"),
os.path.join(doc_dir, "hardware", "connectors.rst"),
os.path.join(doc_dir, "hardware", "interfaces","maxim-max17841b-vx.x.x", "maxim-max17841b-v1.0.0.rst"),
os.path.join(doc_dir, "misc", "bibliography.rst"),
os.path.join(doc_dir, "misc", "definitions.csv"),
os.path.join(doc_dir, "misc", "developer-manual-nomenclature.csv"),
os.path.join(doc_dir, "misc", "indices-and-tables.rst"),
os.path.join(doc_dir, "software", "api", "overview.rst"),
os.path.join(doc_dir, "software", "build", "build.rst"),
os.path.join(doc_dir, "software", "build-process", "library-project_how-to.rst"),
os.path.join(doc_dir, "software", "build-environment", "build-environment.rst"),
os.path.join(doc_dir, "software", "build-environment", "build-environment_how-to.rst"),
os.path.join(doc_dir, "software", "build-process", "build-process.rst"),
os.path.join(doc_dir, "software", "configuration", "configuration.rst"),
os.path.join(doc_dir, "software", "configuration", "without-halcogen_how-to.rst"),
os.path.join(doc_dir, "software", "how-to", "how-to.rst"),
os.path.join(doc_dir, "software", "modules", "modules.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "soc", "soc_counting.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "soc", "soc_debug.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "soc", "soc_none.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "soe", "soe_counting.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "soe", "soe_debug.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "soe", "soe_none.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "sof", "trapezoid.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "soh", "soh_debug.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "soh", "soh_none.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "state-estimation", "state-estimation.rst"),
os.path.join(doc_dir, "software", "modules", "application", "algorithm", "algorithm.rst"),
os.path.join(doc_dir, "software", "modules", "application", "bal", "bal.rst"),
os.path.join(doc_dir, "software", "modules", "application", "bms", "bms.rst"),
os.path.join(doc_dir, "software", "modules", "application", "plausibility", "plausibility.rst"),
os.path.join(doc_dir, "software", "modules", "application", "redundancy", "redundancy.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "adc", "adc.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "can", "can.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "crc", "crc.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "contactor", "contactor.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "dma", "dma.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "foxmath", "foxmath.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "fram", "fram.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "imd", "bender", "bender_ir155.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "imd", "bender", "bender_iso165c.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "imd", "none", "no-imd.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "imd", "imd.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "interlock", "interlock.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "io", "io.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "mcu", "mcu.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "meas", "meas.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "afe", "supported-afes.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "afe", "ltc", "6804-1.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "afe", "ltc", "6806.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "afe", "ltc", "6811-1.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "afe", "ltc", "6812-1.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "afe", "ltc", "6813-1.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "afe", "maxim", "max1785x.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "afe", "nxp", "mc33775a.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "rtc", "rtc.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "sbc", "sbc.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "spi", "spi.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "sps", "sps.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "ts", "epcos", "b57251v5103j060.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "ts", "epcos", "b57861s0103f045.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "ts", "fake", "none.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "ts", "vishay", "ntcalug01a103g.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "ts", "vishay", "ntcle317e4103sba.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "ts", "adding-a-new-ts_how-to.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "ts", "ts-sensors.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "ts", "ts.rst"),
os.path.join(doc_dir, "software", "modules", "driver", "ts", "ts-short-names.csv"),
os.path.join(doc_dir, "software", "modules", "engine", "database", "database.rst"),
os.path.join(doc_dir, "software", "modules", "engine", "database", "database_how-to.rst"),
os.path.join(doc_dir, "software", "modules", "engine", "diag", "diag.rst"),
os.path.join(doc_dir, "software", "modules", "engine", "diag", "diag_how-to.rst"),
os.path.join(doc_dir, "software", "modules", "engine", "sys", "sys.rst"),
os.path.join(doc_dir, "software", "modules", "engine", "sys_mon", "sys_mon.rst"),
os.path.join(doc_dir, "software", "modules", "main", "fassert.rst"),
os.path.join(doc_dir, "software", "modules", "main", "fassert_how-to.rst"),
os.path.join(doc_dir, "software", "modules", "main", "startup.rst"),
os.path.join(doc_dir, "software", "modules", "main", "version.rst"),
os.path.join(doc_dir, "software", "modules", "task", "ftask", "ftask.rst"),
os.path.join(doc_dir, "software", "modules", "task", "ftask", "ftask_how-to.rst"),
os.path.join(doc_dir, "software", "modules", "task", "os", "os.rst"),
os.path.join(doc_dir, "software", "unit-tests", "unit-tests.rst"),
os.path.join(doc_dir, "software", "unit-tests", "unit-tests_how-to.rst"),
os.path.join(doc_dir, "tools", "halcogen", "halcogen.rst"),
os.path.join(doc_dir, "tools", "static-analysis", "axivion.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_axivion.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_black.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_bootstrap_library_project.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_check_db_vars.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_clang_format.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_git_hooks.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_guidelines.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_hcg.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_miniconda_env.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_ozone.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_pylint.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_sphinx_build.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "ti-arm-compiler-tools.csv"),
os.path.join(doc_dir, "tools", "waf-tools", "ti-arm-compiler-tools.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "compiler-tool", "f_ti_arm_cgt.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "compiler-tool", "f_ti_arm_helper.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "compiler-tool", "f_ti_arm_tools.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "compiler-tool", "f_ti_color_arm_cgt.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_unit_test.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "f_vscode.rst"),
os.path.join(doc_dir, "tools", "waf-tools", "waf-tools.rst"),
os.path.join(doc_dir, "tools", "log-parser.rst"),
os.path.join(doc_dir, "tools", "debugger", "debug-application.rst"),
os.path.join(doc_dir, "tools", "debugger", "debugger-ozone.rst"),
os.path.join(doc_dir, "tools", "debugger", "debugger-lauterbach.rst"),
os.path.join(doc_dir, "developer-manual", "hardware-developer-manual.rst"),
os.path.join(doc_dir, "developer-manual", "preface.rst"),
os.path.join(doc_dir, "developer-manual", "software-developer-manual.rst"),
os.path.join(doc_dir, "developer-manual", "software", "software-development-process.rst"),
os.path.join(doc_dir, "developer-manual", "software", "software-programming-language.rst"),
os.path.join(doc_dir, "developer-manual", "software", "software-testing.rst"),
os.path.join(doc_dir, "developer-manual", "software", "software-tools.rst"),
os.path.join(doc_dir, "developer-manual", "software", "software-verification.rst"),
os.path.join(doc_dir, "developer-manual", "style-guide", "guidelines_c.rst"),
os.path.join(doc_dir, "developer-manual", "style-guide", "guidelines_rst.rst"),
os.path.join(doc_dir, "developer-manual", "style-guide", "guidelines_python.rst"),
os.path.join(doc_dir, "developer-manual", "style-guide", "state-machines_how-to.rst"),
os.path.join(doc_dir, "developer-manual", "style-guide", "style-guide.rst"),
]
# pylint: enable=line-too-long
# fmt: on
source = []
for src in sources:
node = bld.path.find_node(src)
if not node:
bld.fatal(f"{src} does not exist.")
source.append(node)
config = bld.path.find_node(os.path.join("docs", "conf.py"))
bld(
features="sphinx",
builders="html spelling",
outdir=".",
source=source,
confpy=config,
VERSION=bld.env.version,
RELEASE=bld.env.version,
)
def build_all(ctx): # pylint: disable=unused-argument
"""shortcut to build all variants"""
# axivion, if existing, needs to be inserted at the end of build commands
has_ax = ""
for bld_var in BLD_VARIANTS:
if "axivion" in bld_var:
has_ax = "axivion"
continue
Options.commands.append(bld_var)
if has_ax:
Options.commands.append("build_axivion")
def clean_all(ctx): # pylint: disable=unused-argument
"""shortcut to clean all variants"""
# axivion, if existing, needs to be inserted at the end of clean commands
has_ax = ""
for cln_var in CLN_VARIANTS:
if "axivion" in cln_var:
has_ax = "axivion"
continue
Options.commands.append(cln_var)
if has_ax:
Options.commands.append("clean_axivion")
def dist(conf):
"""creates a archive based on the current repository state"""
conf.base_name = APPNAME.lower()
conf.algo = "tar.gz"
conf.excl = DIST_EXCLUDE
def distcheck_cmd(self): # pylint: disable=unused-argument,missing-function-docstring
# overwrite distcheck_cmd
cfg = []
if Options.options.distcheck_args:
cfg = shlex.split(Options.options.distcheck_args)
else:
cfg = [x for x in sys.argv if x.startswith("-")]
if "-c" in cfg and not "yes" in cfg:
cfg.insert(cfg.index("-c") + 1, "yes")
dist_waf = os.path.relpath(sys.argv[0], self.path.abspath())
cmd = [
sys.executable,
os.path.join(self.path.abspath(), self.get_base_name(), dist_waf),
"configure",
"build_all",
] + cfg
return cmd
def check_cmd(self): # pylint: disable=missing-function-docstring
# overwrite check_cmd
full_arch = self.get_arch_name().split(self.algo)[0]
if full_arch.endswith("."):
full_arch = full_arch[:-1]
full_arch = f"{full_arch}-build.tar.gz"
with tarfile.open(self.get_arch_name()) as _tarfile:
for _file in _tarfile:
_tarfile.extract(_file)
cmd = self.make_distcheck_cmd()
ret = Utils.subprocess.Popen(cmd, cwd=self.get_base_name()).wait()
if ret:
raise Errors.WafError(f"distcheck failed with code {ret}")
if getattr(self, "tar_build", False):
with tarfile.open(full_arch, "w:gz") as tar:
tar.add(
self.get_arch_name(), arcname=os.path.basename(self.get_arch_name())
)
tar.add(
os.path.join(APPNAME.lower(), out),
arcname=os.path.join(APPNAME.lower(), out),
)
def distcheck(conf):
"""creates tar.bz form the source directory and tries to run a build"""
Scripting.DistCheck.make_distcheck_cmd = distcheck_cmd
Scripting.DistCheck.check = check_cmd
conf.base_name = APPNAME.lower()