-
Notifications
You must be signed in to change notification settings - Fork 129
/
wscript
executable file
·902 lines (807 loc) · 32.7 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
#!/usr/bin/env python3
#
# Copyright (c) 2010 - 2024, 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.
"""
# pylint: disable=too-many-locals
import dataclasses
import linecache
import os
import pathlib
import shlex
import sys
import tarfile
from binascii import hexlify
from typing import Union
import jsonschema
from waflib import Build, Context, Errors, Logs, Options, Scripting, Utils
from waflib.Build import (
BuildContext,
CleanContext,
InstallContext,
ListContext,
StepContext,
)
Context.Context.line_just = 50
out = "build" # pylint: disable=invalid-name
top = "." # pylint: disable=invalid-name
APPNAME = "foxBMS"
# 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.
VERSION = "1.7.0"
# Binary build command variations that are supported. The commands are then
# generated by concatenating the command + the variant, e.g., build_bin
BIN_VARIANTS = ["bin", "axivion"]
# Additional commands, that do not need more contexts than build and clean
MISC_VARIANTS = ["docs", "unit_test", "doxygen_src", "doxygen_tests"]
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: Union[int, str, None] = 0
AFE_SETUP = {
"fsm": FoxBMSDefine("FOXBMS_AFE_DRIVER_TYPE_FSM", 0),
"no-fsm": FoxBMSDefine("FOXBMS_AFE_DRIVER_TYPE_NO_FSM", 0),
"afe-ic": FoxBMSDefine("", None),
"afe-ic-family": FoxBMSDefine("", None),
"afe-manufacturer": FoxBMSDefine("", None),
}
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
BUILD_VARIANTS = []
CLEAN_VARIANTS = []
# build and clean variants exist for all commands
for target_type, target_val in ALL_VARIANTS.items():
for var in target_val:
BUILD_VARIANTS.append(f"build_{var}")
CLEAN_VARIANTS.append(f"clean_{var}")
# Files and directories that are excluded when running dist commands
DIST_EXCLUDE = (
f"{out}/** **/.git **/.gitignore .gitlab/** **/.gitattributes "
"**/*.tar.bz2 **/*.tar.gz **/*.pyc __pycache__ "
"tools/waf*.*.**-* .lock-* "
f".ws *eclipse* .vs* { APPNAME.lower()}/**"
)
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")
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}."
)
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",
"tests/axivion/compiler-errata/ti-cgt-arm_20.2.6.lts/**/*.c",
"tests/axivion/compiler-errata/ti-cgt-arm_20.2.6.lts/**/*.h",
"tests/axivion/qualification-test/**/*.c",
"tests/axivion/qualification-test/**/*.h",
"tests/unit/build/**",
"tests/unit/gen_hcg/**",
],
)
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("f_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)
for k in (
"--targets",
"--out",
"--top",
"--prefix",
"--destdir",
"--bindir",
"--libdir",
"--msvc_version",
"--msvc_targets",
"--no-msvc-lazy",
"--force",
"--check-c-compiler",
):
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.load("f_lauterbach", tooldir=TOOLDIR)
opt.load("f_j_flash", tooldir=TOOLDIR)
# pylint: disable-next=too-many-branches,too-many-statements
def configure(conf):
"""Configures the project"""
conf.options.IGNORE_ENV_CHECK = True
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
expected_max_path_depth = len(conf.path.abspath()) + known_max_depth
if Utils.is_win32 and expected_max_path_depth > 260:
conf.fatal(
"Build path length will exceed 260 characters.\nClone or move the "
"repository into a shorter path."
)
else:
Logs.debug(f"Expected max path depth: {expected_max_path_depth}")
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):
bld.env.APPNAME = "TEST_BUILD"
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_check_db_vars", tooldir=TOOLDIR)
conf.load("f_bootstrap_library_project", 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("f_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"
afe_ic_d = None
if slave_afe["manufacturer"] == "ltc":
if slave_afe["ic"] in ("6804-1", "6811-1", "6812-1"):
afe_ic_inc = "6813-1"
if slave_afe["ic"] == "6804-1":
afe_ic_d = f"{afe_man.upper()}_LTC6804_1"
elif slave_afe["ic"] == "6806":
afe_ic_d = f"{afe_man.upper()}_LTC6806"
elif slave_afe["ic"] == "6811-1":
afe_ic_d = f"{afe_man.upper()}_LTC6811_1"
elif slave_afe["ic"] == "6812-1":
afe_ic_d = f"{afe_man.upper()}_LTC6812_1"
elif slave_afe["ic"] == "6813-1":
afe_ic_d = f"{afe_man.upper()}_LTC6813_1"
elif slave_afe["manufacturer"] == "nxp":
afe_driver_type = "no-fsm"
if slave_afe["ic"] == "mc33775a":
afe_ic_d = f"{afe_man.upper()}_MC33775A"
elif slave_afe["manufacturer"] == "adi":
afe_driver_type = "no-fsm"
if slave_afe["ic"] == "ades1830":
afe_ic_d = f"{afe_man.upper()}_ADES1830"
elif slave_afe["manufacturer"] == "debug":
if slave_afe["ic"] == "default":
afe_ic_d = f"{afe_man.upper()}_DEFAULT"
if slave_afe["ic"] == "can":
afe_driver_type = "no-fsm"
afe_ic_d = f"{afe_man.upper()}_CAN"
elif slave_afe["manufacturer"] == "maxim":
if slave_afe["ic"] == "max17852":
afe_ic_d = f"{afe_man.upper()}_MAX17852"
elif slave_afe["manufacturer"] == "ti":
if slave_afe["ic"] == "dummy":
afe_ic_d = "TI_DUMMY"
if not afe_ic_d:
conf.fatal("AFE IC specific define not set.")
# set AFE configuration
AFE_SETUP[afe_driver_type].value = 1
AFE_SETUP["afe-ic"].name = "FOXBMS_AFE_DRIVER_" + afe_ic_d
AFE_SETUP["afe-ic"].value = 1
AFE_SETUP["afe-manufacturer"].name = "FOXBMS_AFE_DRIVER_" + afe_man.upper()
AFE_SETUP["afe-manufacturer"].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)
# the project has been successfully configured, now we can set the
# application name and version
conf.env.APPNAME = APPNAME
conf.env.VERSION = VERSION
# pylint: disable-next=too-many-branches,too-many-statements
def build(bld: BuildContext):
"""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(BUILD_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 "_axivion" not 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",
excl=["tests/unit/app/engine/database/test_database.c"],
),
)
bld.add_group()
source = bld.path.find_node(bld.env.CEEDLING_MAIN_PROJECT_FILE)
bld(
features="subst",
source=source,
target="project.yml",
is_copy=True,
)
if Utils.is_win32:
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")
),
)
else:
Logs.warn(
"HALCoGen not available. Assuming generated sources are available otherwise."
)
bld.add_group()
bld(features="ceedling")
if bld.variant == "docs":
# C source code examples that should build
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"),
],
)
# build the sphinx documentation
config = bld.path.find_node(os.path.join("docs", "conf.py"))
bld(
features="sphinx",
builders="html",
out_dir=".",
conf_py=config,
VERSION=bld.env.version,
RELEASE=bld.env.version,
)
bld.post_mode = Build.POST_LAZY
# pylint: disable-next=consider-using-in
if bld.variant == "doxygen_src" or bld.variant == "doxygen_tests":
bld.add_group("generate_doc_files")
bld.add_group("doxygen")
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
if bld.variant == "doxygen_src":
tgt_name = "src"
brief = f'"The {APPNAME} Battery Management System API Documentation"'
src_input = [
bld.path.find_node(
"docs/developer-manual/style-guide/state-machine-example"
),
bld.path.find_node("src"),
]
elif bld.variant == "doxygen_tests":
tgt_name = "tests"
brief = f'"The {APPNAME} Unit Tests API Documentation"'
src_input = [
bld.path.find_node("src/app"),
bld.path.find_node("tests/unit"),
]
else:
tgt_name = ""
brief = ""
src_input = []
bld.fatal("Invalid doxygen variant build")
project_logo = bld.path.find_node("docs/_static/foxbms250px.png")
exclude = [
bld.path.find_node("src/hal"),
bld.path.find_node("src/os"),
bld.path.find_node("src/app/driver/afe/ltc/common/ltc_pec.c"),
bld.path.find_node("src/app/driver/afe/ltc/common/ltc_pec.h"),
bld.path.find_node("src/app/driver/afe/nxp/mc33775a/vendor"),
bld.path.find_node("tests/unit/build"),
]
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_css = bld.path.find_node(os.path.join("docs", "style-sheet-file.css"))
html_extra_files = bld.path.find_node("docs/_static/cc.large.png")
image_path = bld.path.find_node("docs/_static/cc.large.png")
if not all(
(
src_input,
project_logo,
exclude[:],
html_footer,
layout_file,
html_css,
html_extra_files,
image_path,
)
):
bld.fatal("Some doxygen input is not correct.")
doxy_conf_tgt = bld.path.get_bld().find_or_declare(f"doxygen_{tgt_name}.conf")
bld(
features="subst",
source=bld.path.find_node(f"docs/doxygen_{tgt_name}.conf.in"),
target=doxy_conf_tgt,
PROJECT_NAME=APPNAME,
PROJECT_NUMBER=VERSION,
PROJECT_BRIEF=brief,
DOT_PATH=bld.env.DOT[0],
PROJECT_LOGO=project_logo.abspath(),
INPUT=" ".join([i.abspath() for i in src_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_css.abspath(),
HTML_EXTRA_FILES=html_extra_files.abspath(),
IMAGE_PATH=image_path.abspath(),
)
# build 'src' or 'tests' doxygen documentation
bld.set_group("doxygen")
doxygen_conf = bld.path.get_bld().find_or_declare(f"doxygen_{tgt_name}.conf")
bld(features="doxygen", doxygen_conf=doxygen_conf)
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 BUILD_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 i in CLEAN_VARIANTS:
if "axivion" in i:
has_ax = "axivion"
continue
Options.commands.append(i)
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 "yes" not 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()
conf.excl = DIST_EXCLUDE
class DistCheckBin(Scripting.DistCheck):
"""Wrapper class to create a distcheck run that includes the build folder"""
fun = "distcheck_bin"
cmd = "distcheck_bin"
def distcheck_bin(conf):
"""creates tar.bz form the source directory"""
conf.tar_build = True
Scripting.DistCheck.make_distcheck_cmd = distcheck_cmd
Scripting.DistCheck.check = check_cmd
conf.base_name = APPNAME.lower()
conf.excl = DIST_EXCLUDE
def check_test_files(ctx):
"""Check if test files to corresponding source files exist."""
prefix = os.path.join(ctx.path.abspath(), "src") + os.pathsep
sources = [
i.abspath()[len(prefix) :]
for i in ctx.path.ant_glob(
"src/app/**/*.c src/opt/**/*.c",
excl=[
"src/app/driver/sbc/fs8x_driver/**",
"src/app/driver/afe/nxp/mc33775a/vendor/**",
"src/hal/**",
"src/os/**",
],
)
]
prefix = os.path.join(ctx.path.abspath(), "tests", "unit") + os.pathsep
tests = [
i.abspath()[len(prefix) :].replace("test_", "")
for i in ctx.path.ant_glob("tests/unit/**/test_*.c")
]
diff = set(sources) - set(tests)
err_msg = ""
for i in diff:
test_file = os.path.join(
ctx.path.abspath(), "tests", "unit", f"test_{pathlib.Path(i).name}"
)
test_file = os.path.join(
"tests",
"unit",
i.replace(pathlib.Path(i).name, f"test_{pathlib.Path(i).name}"),
)
err_msg += f"Missing test file for: {i} (should be in: {test_file})\n"
if diff:
ctx.fatal(f"{err_msg}\nTest files are missing.")
err_msg = ""
for test in ctx.path.ant_glob("tests/unit/**/test_*.c"):
for i, line in enumerate(test.read(encoding="utf-8").splitlines()):
if line.startswith("void test"):
if not line.endswith("(void) {"):
err_msg += (
f"{test.abspath()}:{i+1}: Test files need to have "
f"the form 'test<TestName> (void) {{' ({line}\n"
)
if err_msg:
ctx.fatal(f"{err_msg}\nTests are implement invalid.")
def get_deepest_src_file(ctx):
"""Returns the path length of all source files."""
all_test_files = ctx.path.ant_glob("src/**")
sorted_files = sorted(all_test_files, key=lambda x: len(x.path_from(ctx.path)))
for i in sorted_files:
print(len(i.abspath()), i.abspath())