pyxcp 0.22.23__cp313-cp313-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyxcp might be problematic. Click here for more details.

Files changed (143) hide show
  1. pyxcp/__init__.py +20 -0
  2. pyxcp/aml/EtasCANMonitoring.a2l +82 -0
  3. pyxcp/aml/EtasCANMonitoring.aml +67 -0
  4. pyxcp/aml/XCP_Common.aml +408 -0
  5. pyxcp/aml/XCPonCAN.aml +78 -0
  6. pyxcp/aml/XCPonEth.aml +33 -0
  7. pyxcp/aml/XCPonFlx.aml +113 -0
  8. pyxcp/aml/XCPonSxI.aml +66 -0
  9. pyxcp/aml/XCPonUSB.aml +106 -0
  10. pyxcp/aml/ifdata_CAN.a2l +20 -0
  11. pyxcp/aml/ifdata_Eth.a2l +11 -0
  12. pyxcp/aml/ifdata_Flx.a2l +94 -0
  13. pyxcp/aml/ifdata_SxI.a2l +13 -0
  14. pyxcp/aml/ifdata_USB.a2l +81 -0
  15. pyxcp/asam/__init__.py +0 -0
  16. pyxcp/asam/types.py +131 -0
  17. pyxcp/asamkeydll.c +116 -0
  18. pyxcp/asamkeydll.sh +2 -0
  19. pyxcp/checksum.py +722 -0
  20. pyxcp/cmdline.py +52 -0
  21. pyxcp/config/__init__.py +1100 -0
  22. pyxcp/config/legacy.py +120 -0
  23. pyxcp/constants.py +47 -0
  24. pyxcp/cpp_ext/__init__.py +0 -0
  25. pyxcp/cpp_ext/bin.hpp +104 -0
  26. pyxcp/cpp_ext/blockmem.hpp +58 -0
  27. pyxcp/cpp_ext/cpp_ext.cp310-win_amd64.pyd +0 -0
  28. pyxcp/cpp_ext/cpp_ext.cp311-win_amd64.pyd +0 -0
  29. pyxcp/cpp_ext/cpp_ext.cp312-win_amd64.pyd +0 -0
  30. pyxcp/cpp_ext/cpp_ext.cp313-win_amd64.pyd +0 -0
  31. pyxcp/cpp_ext/cpp_ext.cp38-win_amd64.pyd +0 -0
  32. pyxcp/cpp_ext/cpp_ext.cp39-win_amd64.pyd +0 -0
  33. pyxcp/cpp_ext/daqlist.hpp +200 -0
  34. pyxcp/cpp_ext/event.hpp +67 -0
  35. pyxcp/cpp_ext/extension_wrapper.cpp +96 -0
  36. pyxcp/cpp_ext/helper.hpp +280 -0
  37. pyxcp/cpp_ext/mcobject.hpp +246 -0
  38. pyxcp/cpp_ext/tsqueue.hpp +46 -0
  39. pyxcp/daq_stim/__init__.py +228 -0
  40. pyxcp/daq_stim/optimize/__init__.py +67 -0
  41. pyxcp/daq_stim/optimize/binpacking.py +41 -0
  42. pyxcp/daq_stim/scheduler.cpp +28 -0
  43. pyxcp/daq_stim/scheduler.hpp +75 -0
  44. pyxcp/daq_stim/stim.cp310-win_amd64.pyd +0 -0
  45. pyxcp/daq_stim/stim.cp311-win_amd64.pyd +0 -0
  46. pyxcp/daq_stim/stim.cp312-win_amd64.pyd +0 -0
  47. pyxcp/daq_stim/stim.cp313-win_amd64.pyd +0 -0
  48. pyxcp/daq_stim/stim.cp38-win_amd64.pyd +0 -0
  49. pyxcp/daq_stim/stim.cp39-win_amd64.pyd +0 -0
  50. pyxcp/daq_stim/stim.cpp +13 -0
  51. pyxcp/daq_stim/stim.hpp +604 -0
  52. pyxcp/daq_stim/stim_wrapper.cpp +48 -0
  53. pyxcp/dllif.py +95 -0
  54. pyxcp/errormatrix.py +878 -0
  55. pyxcp/examples/conf_can.toml +19 -0
  56. pyxcp/examples/conf_can_user.toml +16 -0
  57. pyxcp/examples/conf_can_vector.json +11 -0
  58. pyxcp/examples/conf_can_vector.toml +11 -0
  59. pyxcp/examples/conf_eth.toml +9 -0
  60. pyxcp/examples/conf_nixnet.json +20 -0
  61. pyxcp/examples/conf_socket_can.toml +12 -0
  62. pyxcp/examples/conf_sxi.json +9 -0
  63. pyxcp/examples/conf_sxi.toml +7 -0
  64. pyxcp/examples/ex_arrow.py +109 -0
  65. pyxcp/examples/ex_csv.py +85 -0
  66. pyxcp/examples/ex_excel.py +95 -0
  67. pyxcp/examples/ex_mdf.py +124 -0
  68. pyxcp/examples/ex_sqlite.py +128 -0
  69. pyxcp/examples/run_daq.py +148 -0
  70. pyxcp/examples/xcp_policy.py +60 -0
  71. pyxcp/examples/xcp_read_benchmark.py +38 -0
  72. pyxcp/examples/xcp_skel.py +49 -0
  73. pyxcp/examples/xcp_unlock.py +38 -0
  74. pyxcp/examples/xcp_user_supplied_driver.py +54 -0
  75. pyxcp/examples/xcphello.py +79 -0
  76. pyxcp/examples/xcphello_recorder.py +107 -0
  77. pyxcp/master/__init__.py +9 -0
  78. pyxcp/master/errorhandler.py +436 -0
  79. pyxcp/master/master.py +2030 -0
  80. pyxcp/py.typed +0 -0
  81. pyxcp/recorder/__init__.py +102 -0
  82. pyxcp/recorder/build_clang.cmd +1 -0
  83. pyxcp/recorder/build_clang.sh +2 -0
  84. pyxcp/recorder/build_gcc.cmd +1 -0
  85. pyxcp/recorder/build_gcc.sh +2 -0
  86. pyxcp/recorder/build_gcc_arm.sh +2 -0
  87. pyxcp/recorder/converter/__init__.py +37 -0
  88. pyxcp/recorder/lz4.c +2829 -0
  89. pyxcp/recorder/lz4.h +879 -0
  90. pyxcp/recorder/lz4hc.c +2041 -0
  91. pyxcp/recorder/lz4hc.h +413 -0
  92. pyxcp/recorder/mio.hpp +1714 -0
  93. pyxcp/recorder/reader.hpp +139 -0
  94. pyxcp/recorder/reco.py +277 -0
  95. pyxcp/recorder/recorder.rst +0 -0
  96. pyxcp/recorder/rekorder.cp310-win_amd64.pyd +0 -0
  97. pyxcp/recorder/rekorder.cp311-win_amd64.pyd +0 -0
  98. pyxcp/recorder/rekorder.cp312-win_amd64.pyd +0 -0
  99. pyxcp/recorder/rekorder.cp313-win_amd64.pyd +0 -0
  100. pyxcp/recorder/rekorder.cp38-win_amd64.pyd +0 -0
  101. pyxcp/recorder/rekorder.cp39-win_amd64.pyd +0 -0
  102. pyxcp/recorder/rekorder.cpp +59 -0
  103. pyxcp/recorder/rekorder.hpp +274 -0
  104. pyxcp/recorder/setup.py +41 -0
  105. pyxcp/recorder/test_reko.py +34 -0
  106. pyxcp/recorder/unfolder.hpp +1332 -0
  107. pyxcp/recorder/wrap.cpp +189 -0
  108. pyxcp/recorder/writer.hpp +302 -0
  109. pyxcp/scripts/__init__.py +0 -0
  110. pyxcp/scripts/pyxcp_probe_can_drivers.py +20 -0
  111. pyxcp/scripts/xcp_examples.py +64 -0
  112. pyxcp/scripts/xcp_fetch_a2l.py +40 -0
  113. pyxcp/scripts/xcp_id_scanner.py +19 -0
  114. pyxcp/scripts/xcp_info.py +112 -0
  115. pyxcp/scripts/xcp_profile.py +27 -0
  116. pyxcp/stim/__init__.py +0 -0
  117. pyxcp/tests/test_asam_types.py +24 -0
  118. pyxcp/tests/test_binpacking.py +186 -0
  119. pyxcp/tests/test_can.py +1324 -0
  120. pyxcp/tests/test_checksum.py +95 -0
  121. pyxcp/tests/test_daq.py +193 -0
  122. pyxcp/tests/test_frame_padding.py +156 -0
  123. pyxcp/tests/test_master.py +2006 -0
  124. pyxcp/tests/test_transport.py +64 -0
  125. pyxcp/tests/test_utils.py +30 -0
  126. pyxcp/timing.py +60 -0
  127. pyxcp/transport/__init__.py +10 -0
  128. pyxcp/transport/base.py +440 -0
  129. pyxcp/transport/base_transport.hpp +0 -0
  130. pyxcp/transport/can.py +443 -0
  131. pyxcp/transport/eth.py +219 -0
  132. pyxcp/transport/sxi.py +133 -0
  133. pyxcp/transport/transport_wrapper.cpp +0 -0
  134. pyxcp/transport/usb_transport.py +213 -0
  135. pyxcp/types.py +993 -0
  136. pyxcp/utils.py +102 -0
  137. pyxcp/vector/__init__.py +0 -0
  138. pyxcp/vector/map.py +82 -0
  139. pyxcp-0.22.23.dist-info/LICENSE +165 -0
  140. pyxcp-0.22.23.dist-info/METADATA +107 -0
  141. pyxcp-0.22.23.dist-info/RECORD +143 -0
  142. pyxcp-0.22.23.dist-info/WHEEL +4 -0
  143. pyxcp-0.22.23.dist-info/entry_points.txt +8 -0
@@ -0,0 +1,19 @@
1
+ TRANSPORT = "CAN"
2
+ CAN_DRIVER = "KVaser"
3
+ CAN_USE_DEFAULT_LISTENER = true
4
+ CHANNEL = "0"
5
+ ACCEPT_VIRTUAL = true
6
+ CAN_ID_MASTER = 257
7
+ CAN_ID_SLAVE = 258
8
+ CAN_ID_BROADCAST = 256
9
+ MAX_DLC_REQUIRED = false
10
+ BITRATE = 50000
11
+ DATA_BITRATE = 50000
12
+ FD=false
13
+ BTL_CYCLES = 16
14
+ SAMPLE_RATE = 1
15
+ SAMPLE_POINT = 87.5
16
+ SJW = 2
17
+ TSEG1 = 5
18
+ TSEG2 = 2
19
+ CREATE_DAQ_TIMESTAMPS = false
@@ -0,0 +1,16 @@
1
+ TRANSPORT = "CAN"
2
+ CAN_DRIVER = "MyCI"
3
+ CAN_USE_DEFAULT_LISTENER = true
4
+ CHANNEL = "0"
5
+ CAN_ID_MASTER = 257
6
+ CAN_ID_SLAVE = 258
7
+ CAN_ID_BROADCAST = 256
8
+ MAX_DLC_REQUIRED = false
9
+ BITRATE = 250000
10
+ BTL_CYCLES = 16
11
+ SAMPLE_RATE = 1
12
+ SAMPLE_POINT = 87.5
13
+ SJW = 2
14
+ TSEG1 = 5
15
+ TSEG2 = 2
16
+ CREATE_DAQ_TIMESTAMPS = false
@@ -0,0 +1,11 @@
1
+ {
2
+ "TRANSPORT": "CAN",
3
+ "CAN_DRIVER": "Vector",
4
+ "CAN_USE_DEFAULT_LISTENER": true,
5
+ "CHANNEL": "1",
6
+ "CAN_ID_MASTER": 2,
7
+ "CAN_ID_SLAVE": 1,
8
+ "CAN_ID_BROADCAST": 256,
9
+ "MAX_DLC_REQUIRED": false,
10
+ "CREATE_DAQ_TIMESTAMPS": false
11
+ }
@@ -0,0 +1,11 @@
1
+ TRANSPORT = "CAN"
2
+ CAN_DRIVER = "Vector"
3
+ CAN_USE_DEFAULT_LISTENER = true
4
+ CHANNEL = "0"
5
+ CAN_ID_MASTER = 2
6
+ CAN_ID_SLAVE = 1
7
+ CAN_ID_BROADCAST = 256
8
+ # MAX_DLC_REQUIRED = true
9
+ CREATE_DAQ_TIMESTAMPS = false
10
+ BITRATE=1000000
11
+ SEED_N_KEY_DLL = "SeedNKeyXcp.dll"
@@ -0,0 +1,9 @@
1
+ TRANSPORT = "ETH"
2
+ #HOST = "192.168.197.40"
3
+ #HOST = "192.168.198.175"
4
+ HOST="localhost"
5
+ PORT = 5555
6
+ PROTOCOL = "UDP"
7
+ IPV6 = false
8
+ CREATE_DAQ_TIMESTAMPS = true
9
+ SEED_N_KEY_DLL="SeedNKeyXcp.dll"
@@ -0,0 +1,20 @@
1
+ {
2
+ "TRANSPORT": "CAN",
3
+ "CAN_DRIVER": "NiXnet",
4
+ "CAN_USE_DEFAULT_LISTENER": true,
5
+ "CHANNEL": "CAN4",
6
+ "ACCEPT_VIRTUAL": true,
7
+ "BAUDRATE_PRESET": true,
8
+ "CAN_ID_MASTER": 1911,
9
+ "CAN_ID_SLAVE": 819,
10
+ "CAN_ID_BROADCAST": 256,
11
+ "MAX_DLC_REQUIRED": false,
12
+ "BITRATE": 500000,
13
+ "BTL_CYCLES": 16,
14
+ "SAMPLE_RATE": 1,
15
+ "SAMPLE_POINT": 87.5,
16
+ "SJW": 2,
17
+ "TSEG1": 5,
18
+ "TSEG2": 2,
19
+ "CREATE_DAQ_TIMESTAMPS": false
20
+ }
@@ -0,0 +1,12 @@
1
+ TRANSPORT = "CAN"
2
+ CAN_DRIVER = "SocketCAN"
3
+ CAN_USE_DEFAULT_LISTENER = true
4
+ CHANNEL = "can0"
5
+ CAN_ID_MASTER = 257
6
+ CAN_ID_SLAVE = 258
7
+ CAN_ID_BROADCAST = 256
8
+ CREATE_DAQ_TIMESTAMPS = false
9
+ FD = false
10
+ MAX_DLC_REQUIRED = true
11
+ MAX_CAN_FD_DLC = 32
12
+ PADDING_VALUE = 0
@@ -0,0 +1,9 @@
1
+ {
2
+ "TRANSPORT": "SXI",
3
+ "PORT": "COM10",
4
+ "BITRATE": 38400,
5
+ "BYTESIZE": 8,
6
+ "PARITY": "N",
7
+ "STOPBITS": 1,
8
+ "CREATE_DAQ_TIMESTAMPS": false
9
+ }
@@ -0,0 +1,7 @@
1
+ TRANSPORT = "SXI"
2
+ PORT = "COM10"
3
+ BITRATE = 38400
4
+ PARITY = "N"
5
+ BYTESIZE = 8
6
+ STOPBITS = 1
7
+ CREATE_DAQ_TIMESTAMPS = false
@@ -0,0 +1,109 @@
1
+ import argparse
2
+ import logging
3
+ from array import array
4
+ from dataclasses import dataclass, field
5
+ from typing import Any, List
6
+
7
+ import pyarrow as pa
8
+ import pyarrow.parquet as pq
9
+
10
+ from pyxcp.recorder import XcpLogFileDecoder
11
+
12
+
13
+ MAP_TO_ARROW = {
14
+ "U8": pa.uint8(),
15
+ "I8": pa.int8(),
16
+ "U16": pa.uint16(),
17
+ "I16": pa.int16(),
18
+ "U32": pa.uint32(),
19
+ "I32": pa.int32(),
20
+ "U64": pa.uint64(),
21
+ "I64": pa.int64(),
22
+ "F32": pa.float32(),
23
+ "F64": pa.float64(),
24
+ "F16": pa.float16(),
25
+ "BF16": pa.float16(),
26
+ }
27
+
28
+ MAP_TO_ARRAY = {
29
+ "U8": "B",
30
+ "I8": "b",
31
+ "U16": "H",
32
+ "I16": "h",
33
+ "U32": "L",
34
+ "I32": "l",
35
+ "U64": "Q",
36
+ "I64": "q",
37
+ "F32": "f",
38
+ "F64": "d",
39
+ "F16": "f",
40
+ "BF16": "f",
41
+ }
42
+
43
+ logger = logging.getLogger("PyXCP")
44
+
45
+ parser = argparse.ArgumentParser(description="Use .xmraw files in an Apache Arrow application.")
46
+ parser.add_argument("xmraw_file", help=".xmraw file")
47
+ args = parser.parse_args()
48
+
49
+
50
+ @dataclass
51
+ class Storage:
52
+ name: str
53
+ arrow_type: Any
54
+ arr: array
55
+
56
+
57
+ @dataclass
58
+ class StorageContainer:
59
+ name: str
60
+ arr: List[Storage] = field(default_factory=[])
61
+ ts0: List[int] = field(default_factory=lambda: array("Q"))
62
+ ts1: List[int] = field(default_factory=lambda: array("Q"))
63
+
64
+
65
+ class Decoder(XcpLogFileDecoder):
66
+
67
+ def initialize(self) -> None:
68
+ self.arrow_tables = []
69
+ for dl in self.daq_lists:
70
+ result = []
71
+ for name, type_str in dl.headers:
72
+ array_txpe = MAP_TO_ARRAY[type_str]
73
+ arrow_type = MAP_TO_ARROW[type_str]
74
+ sd = Storage(name, arrow_type, array(array_txpe))
75
+ print(f"\t{name!r} {array_txpe} {arrow_type}", sd)
76
+ result.append(sd)
77
+ sc = StorageContainer(dl.name, result)
78
+ self.arrow_tables.append(sc)
79
+
80
+ def finalize(self) -> Any:
81
+ result = []
82
+ for arr in self.arrow_tables:
83
+ timestamp0 = arr.ts0
84
+ timestamp1 = arr.ts1
85
+ names = ["timestamp0", "timestamp1"]
86
+ data = [timestamp0, timestamp1]
87
+ for sd in arr.arr:
88
+ adt = pa.array(sd.arr, type=sd.arrow_type)
89
+ names.append(sd.name)
90
+ data.append(adt)
91
+ table = pa.Table.from_arrays(data, names=names)
92
+ fname = f"{arr.name}.parquet"
93
+ print("Writing table", fname)
94
+ pq.write_table(table, fname)
95
+ print("done.", table.shape)
96
+ result.append(table)
97
+ return result
98
+
99
+ def on_daq_list(self, daq_list_num: int, timestamp0: int, timestamp1: int, measurements: list) -> None:
100
+ sc = self.arrow_tables[daq_list_num]
101
+ sc.ts0.append(timestamp0)
102
+ sc.ts1.append(timestamp1)
103
+ for idx, elem in enumerate(measurements):
104
+ sto = sc.arr[idx]
105
+ sto.arr.append(elem)
106
+
107
+
108
+ decoder = Decoder(args.xmraw_file)
109
+ res = decoder.run()
@@ -0,0 +1,85 @@
1
+ import argparse
2
+ import logging
3
+ import os
4
+ import csv
5
+ from array import array
6
+ from dataclasses import dataclass, field
7
+ from mmap import PAGESIZE
8
+ from pathlib import Path
9
+ from typing import Any, List
10
+
11
+ from pyxcp.recorder import XcpLogFileDecoder
12
+ from pyxcp.recorder.converter import MAP_TO_ARRAY
13
+
14
+
15
+ MAP_TO_SQL = {
16
+ "U8": "INTEGER",
17
+ "I8": "INTEGER",
18
+ "U16": "INTEGER",
19
+ "I16": "INTEGER",
20
+ "U32": "INTEGER",
21
+ "I32": "INTEGER",
22
+ "U64": "INTEGER",
23
+ "I64": "INTEGER",
24
+ "F32": "FLOAT",
25
+ "F64": "FLOAT",
26
+ "F16": "FLOAT",
27
+ "BF16": "FLOAT",
28
+ }
29
+
30
+ logger = logging.getLogger("PyXCP")
31
+
32
+ parser = argparse.ArgumentParser(description="Use .xmraw files in an Apache Arrow application.")
33
+ parser.add_argument("xmraw_file", help=".xmraw file")
34
+ args = parser.parse_args()
35
+
36
+
37
+ @dataclass
38
+ class Storage:
39
+ name: str
40
+ arrow_type: Any
41
+ arr: array
42
+
43
+
44
+ @dataclass
45
+ class StorageContainer:
46
+ name: str
47
+ arr: List[Storage] = field(default_factory=[])
48
+ ts0: List[int] = field(default_factory=lambda: array("Q"))
49
+ ts1: List[int] = field(default_factory=lambda: array("Q"))
50
+
51
+
52
+ class Decoder(XcpLogFileDecoder):
53
+
54
+ def __init__(self, recording_file_name: str):
55
+ super().__init__(recording_file_name)
56
+
57
+ def initialize(self) -> None:
58
+ self.arrow_tables = []
59
+ self.csv_writers = []
60
+ for dl in self.daq_lists:
61
+ result = []
62
+ for name, type_str in dl.headers:
63
+ array_txpe = MAP_TO_ARRAY[type_str]
64
+ sql_type = MAP_TO_SQL[type_str]
65
+ sd = Storage(name, sql_type, array(array_txpe))
66
+ result.append(sd)
67
+ sc = StorageContainer(dl.name, result)
68
+ writer = csv.writer(open(f"{sc.name}.csv", "w", newline=""), dialect="excel")
69
+ headers = ["ts0", "ts1"] + [e.name for e in sc.arr]
70
+ writer.writerow(headers)
71
+ self.csv_writers.append(writer)
72
+ self.arrow_tables.append(sc)
73
+ print("\nInserting data...")
74
+
75
+ def finalize(self) -> None:
76
+ print("Done.")
77
+
78
+ def on_daq_list(self, daq_list_num: int, timestamp0: int, timestamp1: int, measurements: list) -> None:
79
+ sc = self.arrow_tables[daq_list_num]
80
+ writer = self.csv_writers[daq_list_num]
81
+ data = [timestamp0, timestamp1, *measurements]
82
+ writer.writerow(data)
83
+
84
+ decoder = Decoder(args.xmraw_file)
85
+ decoder.run()
@@ -0,0 +1,95 @@
1
+ import argparse
2
+ import logging
3
+ import os
4
+ import xlsxwriter
5
+ from array import array
6
+ from dataclasses import dataclass, field
7
+ from mmap import PAGESIZE
8
+ from pathlib import Path
9
+ from typing import Any, List
10
+
11
+ from pyxcp.recorder import XcpLogFileDecoder
12
+ from pyxcp.recorder.converter import MAP_TO_ARRAY
13
+
14
+
15
+ MAP_TO_SQL = {
16
+ "U8": "INTEGER",
17
+ "I8": "INTEGER",
18
+ "U16": "INTEGER",
19
+ "I16": "INTEGER",
20
+ "U32": "INTEGER",
21
+ "I32": "INTEGER",
22
+ "U64": "INTEGER",
23
+ "I64": "INTEGER",
24
+ "F32": "FLOAT",
25
+ "F64": "FLOAT",
26
+ "F16": "FLOAT",
27
+ "BF16": "FLOAT",
28
+ }
29
+
30
+ logger = logging.getLogger("PyXCP")
31
+
32
+ parser = argparse.ArgumentParser(description="Use .xmraw files in an Apache Arrow application.")
33
+ parser.add_argument("xmraw_file", help=".xmraw file")
34
+ args = parser.parse_args()
35
+
36
+
37
+ @dataclass
38
+ class Storage:
39
+ name: str
40
+ arrow_type: Any
41
+ arr: array
42
+
43
+
44
+ @dataclass
45
+ class StorageContainer:
46
+ name: str
47
+ arr: List[Storage] = field(default_factory=[])
48
+ ts0: List[int] = field(default_factory=lambda: array("Q"))
49
+ ts1: List[int] = field(default_factory=lambda: array("Q"))
50
+
51
+
52
+ class Decoder(XcpLogFileDecoder):
53
+
54
+ def __init__(self, recording_file_name: str):
55
+ super().__init__(recording_file_name)
56
+ self.xls_file_name = Path(recording_file_name).with_suffix(".xlsx")
57
+ try:
58
+ os.unlink(self.xls_file_name)
59
+ except Exception as e:
60
+ print(e)
61
+
62
+ def initialize(self) -> None:
63
+ self.arrow_tables = []
64
+ self.xls_workbook = xlsxwriter.Workbook(self.xls_file_name)
65
+ self.xls_sheets = []
66
+ self.rows = []
67
+ for dl in self.daq_lists:
68
+ result = []
69
+ for name, type_str in dl.headers:
70
+ array_txpe = MAP_TO_ARRAY[type_str]
71
+ sql_type = MAP_TO_SQL[type_str]
72
+ sd = Storage(name, sql_type, array(array_txpe))
73
+ result.append(sd)
74
+ sc = StorageContainer(dl.name, result)
75
+ sheet = self.xls_workbook.add_worksheet(sc.name)
76
+ self.xls_sheets.append(sheet)
77
+ headers = ["ts0", "ts1"] + [e.name for e in sc.arr]
78
+ sheet.write_row(0, 0, headers)
79
+ self.rows.append(1)
80
+ self.arrow_tables.append(sc)
81
+ print("\nInserting data...")
82
+
83
+ def finalize(self) -> None:
84
+ self.xls_workbook.close()
85
+ print("Done.")
86
+
87
+ def on_daq_list(self, daq_list_num: int, timestamp0: int, timestamp1: int, measurements: list) -> None:
88
+ sheet = self.xls_sheets[daq_list_num]
89
+ row = self.rows[daq_list_num]
90
+ data = [timestamp0, timestamp1] + measurements
91
+ sheet.write_row(row, 0, data)
92
+ self.rows[daq_list_num] += 1
93
+
94
+ decoder = Decoder(args.xmraw_file)
95
+ decoder.run()
@@ -0,0 +1,124 @@
1
+ import argparse
2
+ import logging
3
+ from array import array
4
+ from dataclasses import dataclass, field
5
+ from pathlib import Path
6
+ from typing import Any, List
7
+
8
+ import numpy as np
9
+ from asammdf import MDF, Signal
10
+ from asammdf.blocks.v4_blocks import HeaderBlock # ChannelGroup
11
+ from asammdf.blocks.v4_constants import FLAG_HD_TIME_OFFSET_VALID # FLAG_HD_LOCAL_TIME,
12
+
13
+ from pyxcp.recorder import XcpLogFileDecoder
14
+
15
+
16
+ MAP_TO_NP = {
17
+ "U8": np.uint8,
18
+ "I8": np.int8,
19
+ "U16": np.uint16,
20
+ "I16": np.int16,
21
+ "U32": np.uint32,
22
+ "I32": np.int32,
23
+ "U64": np.uint64,
24
+ "I64": np.int64,
25
+ "F32": np.float32,
26
+ "F64": np.float64,
27
+ "F16": np.float16,
28
+ "BF16": np.float16,
29
+ }
30
+
31
+ MAP_TO_ARRAY = {
32
+ "U8": "B",
33
+ "I8": "b",
34
+ "U16": "H",
35
+ "I16": "h",
36
+ "U32": "L",
37
+ "I32": "l",
38
+ "U64": "Q",
39
+ "I64": "q",
40
+ "F32": "f",
41
+ "F64": "d",
42
+ "F16": "f",
43
+ # "BF16"
44
+ }
45
+
46
+ logger = logging.getLogger("PyXCP")
47
+
48
+ parser = argparse.ArgumentParser(description="Use .xmraw files in an Apache Arrow application.")
49
+ parser.add_argument("xmraw_file", help=".xmraw file")
50
+ args = parser.parse_args()
51
+
52
+
53
+ @dataclass
54
+ class Storage:
55
+ name: str
56
+ arrow_type: Any
57
+ arr: array
58
+
59
+
60
+ @dataclass
61
+ class StorageContainer:
62
+ name: str
63
+ arr: list[Storage] = field(default_factory=[])
64
+ ts0: List[int] = field(default_factory=lambda: array("Q"))
65
+ ts1: List[int] = field(default_factory=lambda: array("Q"))
66
+
67
+
68
+ class Decoder(XcpLogFileDecoder):
69
+
70
+ def __init__(self, recording_file_name: str):
71
+ super().__init__(recording_file_name)
72
+ self.mdf_file_name = Path(recording_file_name).with_suffix(".mf4")
73
+
74
+ def initialize(self) -> None:
75
+ self.tables = []
76
+ for dl in self.daq_lists:
77
+ result = []
78
+ for name, type_str in dl.headers:
79
+ array_txpe = MAP_TO_ARRAY[type_str]
80
+ arrow_type = MAP_TO_NP[type_str]
81
+ sd = Storage(name, arrow_type, array(array_txpe))
82
+ result.append(sd)
83
+ sc = StorageContainer(dl.name, result)
84
+ self.tables.append(sc)
85
+ print("Extracting DAQ lists...")
86
+
87
+ def finalize(self) -> None:
88
+ print("Creating MDF result...")
89
+ timestamp_info = self.parameters.timestamp_info
90
+ hdr = HeaderBlock(
91
+ abs_time=timestamp_info.timestamp_ns,
92
+ tz_offset=timestamp_info.utc_offset,
93
+ daylight_save_time=timestamp_info.dst_offset,
94
+ time_flags=FLAG_HD_TIME_OFFSET_VALID,
95
+ )
96
+ hdr.comment = f"""<HDcomment><TX>Timezone: {timestamp_info.timezone}</TX></HDcomment>""" # Test-Comment.
97
+ mdf4 = MDF(version="4.10")
98
+ mdf4.header = hdr
99
+ # result = []
100
+ for idx, arr in enumerate(self.tables):
101
+ signals = []
102
+ timestamps = arr.ts0
103
+ for sd in arr.arr:
104
+
105
+ signal = Signal(samples=sd.arr, name=sd.name, timestamps=timestamps)
106
+ signals.append(signal)
107
+ print(f"Appending data-group {arr.name!r}")
108
+ mdf4.append(signals, acq_name=arr.name, comment="Created by pyXCP recorder")
109
+ print(f"Writing '{self.mdf_file_name!s}'")
110
+ mdf4.save(self.mdf_file_name, compression=2, overwrite=True)
111
+ print("Done.")
112
+ return mdf4
113
+
114
+ def on_daq_list(self, daq_list_num: int, timestamp0: int, timestamp1: int, measurements: list) -> None:
115
+ sc = self.tables[daq_list_num]
116
+ sc.ts0.append(timestamp0)
117
+ sc.ts1.append(timestamp1)
118
+ for idx, elem in enumerate(measurements):
119
+ sto = sc.arr[idx]
120
+ sto.arr.append(elem)
121
+
122
+
123
+ decoder = Decoder(args.xmraw_file)
124
+ res = decoder.run()
@@ -0,0 +1,128 @@
1
+ import argparse
2
+ import logging
3
+ import os
4
+ import sqlite3
5
+ from array import array
6
+ from dataclasses import dataclass, field
7
+ from mmap import PAGESIZE
8
+ from pathlib import Path
9
+ from typing import Any, List
10
+
11
+ from pyxcp.recorder import XcpLogFileDecoder
12
+ from pyxcp.recorder.converter import MAP_TO_ARRAY
13
+
14
+
15
+ MAP_TO_SQL = {
16
+ "U8": "INTEGER",
17
+ "I8": "INTEGER",
18
+ "U16": "INTEGER",
19
+ "I16": "INTEGER",
20
+ "U32": "INTEGER",
21
+ "I32": "INTEGER",
22
+ "U64": "INTEGER",
23
+ "I64": "INTEGER",
24
+ "F32": "FLOAT",
25
+ "F64": "FLOAT",
26
+ "F16": "FLOAT",
27
+ "BF16": "FLOAT",
28
+ }
29
+
30
+ logger = logging.getLogger("PyXCP")
31
+
32
+ parser = argparse.ArgumentParser(description="Use .xmraw files in an Apache Arrow application.")
33
+ parser.add_argument("xmraw_file", help=".xmraw file")
34
+ args = parser.parse_args()
35
+
36
+
37
+ @dataclass
38
+ class Storage:
39
+ name: str
40
+ arrow_type: Any
41
+ arr: array
42
+
43
+
44
+ @dataclass
45
+ class StorageContainer:
46
+ name: str
47
+ arr: List[Storage] = field(default_factory=[])
48
+ ts0: List[int] = field(default_factory=lambda: array("Q"))
49
+ ts1: List[int] = field(default_factory=lambda: array("Q"))
50
+
51
+
52
+ class Decoder(XcpLogFileDecoder):
53
+
54
+ def __init__(self, recording_file_name: str):
55
+ super().__init__(recording_file_name)
56
+ self.sq3_file_name = Path(recording_file_name).with_suffix(".sq3")
57
+ try:
58
+ os.unlink(self.sq3_file_name)
59
+ except Exception as e:
60
+ print(e)
61
+
62
+ def initialize(self) -> None:
63
+ self.create_database(self.sq3_file_name)
64
+ self.arrow_tables = []
65
+ self.insert_stmt = {}
66
+ for dl in self.daq_lists:
67
+ result = []
68
+ for name, type_str in dl.headers:
69
+ array_txpe = MAP_TO_ARRAY[type_str]
70
+ sql_type = MAP_TO_SQL[type_str]
71
+ sd = Storage(name, sql_type, array(array_txpe))
72
+ result.append(sd)
73
+ sc = StorageContainer(dl.name, result)
74
+ print(f"Creating table {sc.name!r}.")
75
+ self.create_table(sc)
76
+ self.insert_stmt[sc.name] = (
77
+ f"""INSERT INTO {sc.name}({', '.join(['ts0', 'ts1'] + [r.name for r in sc.arr])}) VALUES({', '.join(["?" for _ in range(len(sc.arr) + 2)])})"""
78
+ )
79
+ self.arrow_tables.append(sc)
80
+ print("\nInserting data...")
81
+
82
+ def create_database(self, db_name: str) -> None:
83
+ self.conn = sqlite3.Connection(db_name)
84
+ self.cursor = self.conn.cursor()
85
+ self.execute("PRAGMA FOREIGN_KEYS=ON")
86
+ self.execute(f"PRAGMA PAGE_SIZE={PAGESIZE}")
87
+ self.execute("PRAGMA SYNCHRONOUS=OFF")
88
+ self.execute("PRAGMA LOCKING_MODE=EXCLUSIVE")
89
+ self.execute("PRAGMA TEMP_STORE=MEMORY")
90
+
91
+ timestamp_info = self.parameters.timestamp_info
92
+ self.execute(
93
+ "CREATE TABLE timestamp_info(timestamp_ns INTEGER, utc_offset INTEGER, dst_offset INTEGER, timezone VARCHAR(255))"
94
+ )
95
+ self.execute("CREATE TABLE table_names(name VARCHAR(255))")
96
+ self.execute(
97
+ "INSERT INTO timestamp_info VALUES(?, ?, ?, ?)",
98
+ [timestamp_info.timestamp_ns, timestamp_info.utc_offset, timestamp_info.dst_offset, timestamp_info.timezone],
99
+ )
100
+
101
+ def create_table(self, sc: StorageContainer) -> None:
102
+ columns = ["ts0 INTEGER", "ts1 INTEGER"]
103
+ for elem in sc.arr:
104
+ columns.append(f"{elem.name} {elem.arrow_type}")
105
+ ddl = f"CREATE TABLE {sc.name}({', '.join(columns)})"
106
+ self.execute(ddl)
107
+ self.execute("INSERT INTO table_names VALUES(?)", [sc.name])
108
+
109
+ def execute(self, *args: List[str]) -> None:
110
+ try:
111
+ self.cursor.execute(*args)
112
+ except Exception as e:
113
+ print(e)
114
+
115
+ def finalize(self) -> None:
116
+ self.conn.commit()
117
+ self.conn.close()
118
+ print("Done.")
119
+
120
+ def on_daq_list(self, daq_list_num: int, timestamp0: int, timestamp1: int, measurements: list) -> None:
121
+ sc = self.arrow_tables[daq_list_num]
122
+ insert_stmt = self.insert_stmt[sc.name]
123
+ data = [timestamp0, timestamp1, *measurements]
124
+ self.execute(insert_stmt, data)
125
+
126
+
127
+ decoder = Decoder(args.xmraw_file)
128
+ decoder.run()