pyxcp 0.22.24__cp310-cp310-win_amd64.whl → 0.22.26__cp310-cp310-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.

pyxcp/__init__.py CHANGED
@@ -17,4 +17,4 @@ tb_install(show_locals=True, max_frames=3) # Install custom exception handler.
17
17
 
18
18
  # if you update this manually, do not forget to update
19
19
  # .bumpversion.cfg and pyproject.toml.
20
- __version__ = "0.22.24"
20
+ __version__ = "0.22.26"
pyxcp/config/__init__.py CHANGED
@@ -822,9 +822,11 @@ if there is no response to a command.""",
822
822
  class General(Configurable):
823
823
  """ """
824
824
 
825
- # loglevel = Unicode("INFO", help="Set the log level by value or name.").tag(config=True)
826
825
  disable_error_handling = Bool(False, help="Disable XCP error-handler for performance reasons.").tag(config=True)
827
826
  disconnect_response_optional = Bool(False, help="Ignore missing response on DISCONNECT request.").tag(config=True)
827
+ connect_retries = Integer(help="Number of CONNECT retries (None for infinite retries).", allow_none=True, default_value=3).tag(
828
+ config=True
829
+ )
828
830
  seed_n_key_dll = Unicode("", allow_none=False, help="Dynamic library used for slave resource unlocking.").tag(config=True)
829
831
  seed_n_key_dll_same_bit_width = Bool(False, help="").tag(config=True)
830
832
  seed_n_key_function = Callable(
Binary file
Binary file
Binary file
@@ -38,7 +38,7 @@ class DaqProcessor:
38
38
  def setup(self, start_datetime: Optional[CurrentDatetime] = None, write_multiple: bool = True):
39
39
  if not self.xcp_master.slaveProperties.supportsDaq:
40
40
  raise RuntimeError("DAQ functionality is not supported.")
41
- self.daq_info = self.xcp_master.getDaqInfo()
41
+ self.daq_info = self.xcp_master.getDaqInfo(include_event_lists=False)
42
42
  if start_datetime is None:
43
43
  start_datetime = CurrentDatetime(time_ns())
44
44
  self.start_datetime = start_datetime
Binary file
Binary file
Binary file
@@ -15,7 +15,9 @@ using namespace py::literals;
15
15
 
16
16
  PYBIND11_MODULE(stim, m) {
17
17
  py::class_<DaqEventInfo>(m, "DaqEventInfo")
18
- .def(py::init<const std::string&, std::int8_t, std::size_t, std::size_t, std::size_t, std::string_view, bool, bool, bool>()
18
+ .def(py::init<const std::string&, std::int8_t, std::size_t, std::size_t, std::size_t, std::string_view, bool, bool, bool>(),
19
+ "name"_a, "type_code"_a, "cycle"_a, "max_daq_lists"_a, "priority"_a, "consistency"_a, "daq_supported"_a,
20
+ "stim_supported"_a, "packed_supported"_a
19
21
  );
20
22
 
21
23
  py::class_<Stim>(m, "Stim")
pyxcp/examples/run_daq.py CHANGED
@@ -137,8 +137,6 @@ with ap.run(policy=daq_parser) as x:
137
137
 
138
138
  x.cond_unlock("DAQ") # DAQ resource is locked in many cases.
139
139
 
140
- DAQ_LISTS[1].event_num = 0
141
-
142
140
  print("setup DAQ lists.")
143
141
  daq_parser.setup() # Execute setup procedures.
144
142
  print("start DAQ lists.")
@@ -356,6 +356,7 @@ class Executor(SingletonBase):
356
356
  self.arguments = arguments
357
357
  handler = Handler(inst, func, arguments)
358
358
  self.handlerStack.push(handler)
359
+ connect_retries = inst.config.connect_retries
359
360
  try:
360
361
  while True:
361
362
  try:
@@ -366,9 +367,14 @@ class Executor(SingletonBase):
366
367
  self.error_code = e.get_error_code()
367
368
  handler.error_code = self.error_code
368
369
  except XcpTimeoutError:
369
- # self.logger.error(f"XcpTimeoutError [{str(e)}]")
370
+ is_connect = func.__name__ == "connect"
371
+ self.logger.warning(f"XcpTimeoutError -- Service: {func.__name__!r}")
370
372
  self.error_code = XcpError.ERR_TIMEOUT
371
373
  handler.error_code = self.error_code
374
+ if is_connect and connect_retries is not None:
375
+ if connect_retries == 0:
376
+ raise XcpTimeoutError("Maximum CONNECT retries reached.")
377
+ connect_retries -= 1
372
378
  except TimeoutError:
373
379
  raise
374
380
  except can.CanError:
pyxcp/master/master.py CHANGED
@@ -1670,7 +1670,7 @@ class Master:
1670
1670
  self.logger.debug(f"Our checksum : 0x{cc:08X}")
1671
1671
  return cs.checksum == cc
1672
1672
 
1673
- def getDaqInfo(self):
1673
+ def getDaqInfo(self, include_event_lists=True):
1674
1674
  """Get DAQ information: processor, resolution, events."""
1675
1675
  result = {}
1676
1676
  dpi = self.getDaqProcessorInfo()
@@ -1711,45 +1711,46 @@ class Master:
1711
1711
  result["resolution"] = resolutionInfo
1712
1712
  channels = []
1713
1713
  daq_events = []
1714
- for ecn in range(dpi.maxEventChannel):
1715
- eci = self.getDaqEventInfo(ecn)
1716
- cycle = eci["eventChannelTimeCycle"]
1717
- maxDaqList = eci["maxDaqList"]
1718
- priority = eci["eventChannelPriority"]
1719
- time_unit = eci["eventChannelTimeUnit"]
1720
- consistency = eci["daqEventProperties"]["consistency"]
1721
- daq_supported = eci["daqEventProperties"]["daq"]
1722
- stim_supported = eci["daqEventProperties"]["stim"]
1723
- packed_supported = eci["daqEventProperties"]["packed"]
1724
- name = self.fetch(eci.eventChannelNameLength)
1725
- if name:
1726
- name = decode_bytes(name)
1727
- channel = {
1728
- "name": name,
1729
- "priority": eci["eventChannelPriority"],
1730
- "unit": eci["eventChannelTimeUnit"],
1731
- "cycle": eci["eventChannelTimeCycle"],
1732
- "maxDaqList": eci["maxDaqList"],
1733
- "properties": {
1734
- "consistency": consistency,
1735
- "daq": daq_supported,
1736
- "stim": stim_supported,
1737
- "packed": packed_supported,
1738
- },
1739
- }
1740
- daq_event_info = DaqEventInfo(
1741
- name,
1742
- types.EVENT_CHANNEL_TIME_UNIT_TO_EXP[time_unit],
1743
- cycle,
1744
- maxDaqList,
1745
- priority,
1746
- consistency,
1747
- daq_supported,
1748
- stim_supported,
1749
- packed_supported,
1750
- )
1751
- daq_events.append(daq_event_info)
1752
- channels.append(channel)
1714
+ if include_event_lists:
1715
+ for ecn in range(dpi.maxEventChannel):
1716
+ eci = self.getDaqEventInfo(ecn)
1717
+ cycle = eci["eventChannelTimeCycle"]
1718
+ maxDaqList = eci["maxDaqList"]
1719
+ priority = eci["eventChannelPriority"]
1720
+ time_unit = eci["eventChannelTimeUnit"]
1721
+ consistency = eci["daqEventProperties"]["consistency"]
1722
+ daq_supported = eci["daqEventProperties"]["daq"]
1723
+ stim_supported = eci["daqEventProperties"]["stim"]
1724
+ packed_supported = eci["daqEventProperties"]["packed"]
1725
+ name = self.fetch(eci.eventChannelNameLength)
1726
+ if name:
1727
+ name = decode_bytes(name)
1728
+ channel = {
1729
+ "name": name,
1730
+ "priority": eci["eventChannelPriority"],
1731
+ "unit": eci["eventChannelTimeUnit"],
1732
+ "cycle": eci["eventChannelTimeCycle"],
1733
+ "maxDaqList": eci["maxDaqList"],
1734
+ "properties": {
1735
+ "consistency": consistency,
1736
+ "daq": daq_supported,
1737
+ "stim": stim_supported,
1738
+ "packed": packed_supported,
1739
+ },
1740
+ }
1741
+ daq_event_info = DaqEventInfo(
1742
+ name,
1743
+ types.EVENT_CHANNEL_TIME_UNIT_TO_EXP[time_unit],
1744
+ cycle,
1745
+ maxDaqList,
1746
+ priority,
1747
+ consistency,
1748
+ daq_supported,
1749
+ stim_supported,
1750
+ packed_supported,
1751
+ )
1752
+ daq_events.append(daq_event_info)
1753
+ channels.append(channel)
1753
1754
  result["channels"] = channels
1754
1755
  self.stim.setDaqEventInfo(daq_events)
1755
1756
  return result
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env python
2
2
  """XCP Frame Recording Facility.
3
3
  """
4
+
4
5
  from dataclasses import dataclass
5
6
  from typing import Union
6
7
 
@@ -16,15 +17,13 @@ else:
16
17
 
17
18
  from pyxcp.recorder.rekorder import DaqOnlinePolicy # noqa: F401
18
19
  from pyxcp.recorder.rekorder import (
19
- DaqRecorderPolicy,
20
- Deserializer,
21
- MeasurementParameters,
22
- ValueHolder,
23
- XcpLogFileDecoder,
24
- _PyXcpLogFileReader,
25
- _PyXcpLogFileWriter,
26
- data_types,
20
+ DaqRecorderPolicy, # noqa: F401
21
+ Deserializer, # noqa: F401
22
+ MeasurementParameters, # noqa: F401
23
+ ValueHolder, # noqa: F401
27
24
  )
25
+ from pyxcp.recorder.rekorder import XcpLogFileDecoder as _XcpLogFileDecoder
26
+ from pyxcp.recorder.rekorder import _PyXcpLogFileReader, _PyXcpLogFileWriter, data_types
28
27
 
29
28
 
30
29
  DATA_TYPES = data_types()
@@ -1,8 +1,60 @@
1
+ """Convert pyXCPs .xmraw files to common data formats.
2
+ """
3
+
4
+ import csv
1
5
  import logging
6
+ import os
7
+ import sqlite3
2
8
  from array import array
3
9
  from dataclasses import dataclass, field
10
+ from mmap import PAGESIZE
11
+ from pathlib import Path
4
12
  from typing import Any, List
5
13
 
14
+ import numpy as np
15
+ from rich.logging import RichHandler
16
+
17
+
18
+ try:
19
+ import pyarrow as pa
20
+ import pyarrow.parquet as pq
21
+
22
+ has_arrow = True
23
+ except ImportError:
24
+ has_arrow = False
25
+
26
+ try:
27
+ import h5py
28
+
29
+ has_h5py = True
30
+ except ImportError:
31
+ has_h5py = False
32
+
33
+ try:
34
+ from asammdf import MDF, Signal
35
+ from asammdf.blocks.v4_blocks import HeaderBlock
36
+ from asammdf.blocks.v4_constants import FLAG_HD_TIME_OFFSET_VALID
37
+
38
+ has_asammdf = True
39
+ except ImportError:
40
+ has_asammdf = False
41
+
42
+ try:
43
+ import xlsxwriter
44
+
45
+ has_xlsxwriter = True
46
+
47
+ except ImportError:
48
+ has_xlsxwriter = False
49
+
50
+ from pyxcp import console
51
+ from pyxcp.recorder.rekorder import XcpLogFileDecoder as _XcpLogFileDecoder
52
+
53
+
54
+ FORMAT = "%(message)s"
55
+ logging.basicConfig(level="NOTSET", format=FORMAT, datefmt="[%X]", handlers=[RichHandler()])
56
+
57
+ log = logging.getLogger("rich")
6
58
 
7
59
  MAP_TO_ARRAY = {
8
60
  "U8": "B",
@@ -19,13 +71,26 @@ MAP_TO_ARRAY = {
19
71
  "BF16": "f",
20
72
  }
21
73
 
22
- logger = logging.getLogger("PyXCP")
74
+ MAP_TO_NP = {
75
+ "U8": np.uint8,
76
+ "I8": np.int8,
77
+ "U16": np.uint16,
78
+ "I16": np.int16,
79
+ "U32": np.uint32,
80
+ "I32": np.int32,
81
+ "U64": np.uint64,
82
+ "I64": np.int64,
83
+ "F32": np.float32,
84
+ "F64": np.float64,
85
+ "F16": np.float16,
86
+ "BF16": np.float16,
87
+ }
23
88
 
24
89
 
25
90
  @dataclass
26
91
  class Storage:
27
92
  name: str
28
- arrow_type: Any
93
+ target_type: Any
29
94
  arr: array
30
95
 
31
96
 
@@ -35,3 +100,352 @@ class StorageContainer:
35
100
  arr: List[Storage] = field(default_factory=[])
36
101
  ts0: List[int] = field(default_factory=lambda: array("Q"))
37
102
  ts1: List[int] = field(default_factory=lambda: array("Q"))
103
+
104
+
105
+ class XcpLogFileDecoder(_XcpLogFileDecoder):
106
+ """"""
107
+
108
+ def __init__(
109
+ self,
110
+ recording_file_name: str,
111
+ out_file_suffix: str,
112
+ remove_file: bool = True,
113
+ target_type_map: dict = None,
114
+ target_file_name: str = "",
115
+ ):
116
+ super().__init__(recording_file_name)
117
+ self.logger = logging.getLogger("PyXCP")
118
+ self.logger.setLevel(logging.DEBUG)
119
+ self.out_file_name = Path(recording_file_name).with_suffix(out_file_suffix)
120
+ self.out_file_suffix = out_file_suffix
121
+ self.target_type_map = target_type_map or {}
122
+ if remove_file:
123
+ try:
124
+ os.unlink(self.out_file_name)
125
+ except FileNotFoundError:
126
+ pass
127
+
128
+ def initialize(self) -> None:
129
+ self.on_initialize()
130
+
131
+ def on_initialize(self) -> None:
132
+ self.setup_containers()
133
+
134
+ def finalize(self) -> None:
135
+ self.on_finalize()
136
+
137
+ def on_finalize(self) -> None:
138
+ pass
139
+
140
+ def setup_containers(self) -> None:
141
+ self.tables = []
142
+ for dl in self.daq_lists:
143
+ result = []
144
+ for name, type_str in dl.headers:
145
+ array_txpe = MAP_TO_ARRAY[type_str]
146
+ target_type = self.target_type_map.get(type_str)
147
+ sd = Storage(name, target_type, array(array_txpe))
148
+ result.append(sd)
149
+ sc = StorageContainer(dl.name, result)
150
+ self.tables.append(sc)
151
+ self.on_container(sc)
152
+
153
+ def on_container(self, sc: StorageContainer) -> None:
154
+ pass
155
+
156
+
157
+ class CollectRows:
158
+
159
+ def on_daq_list(self, daq_list_num: int, timestamp0: int, timestamp1: int, measurements: list) -> None:
160
+ storage_container = self.tables[daq_list_num]
161
+ storage_container.ts0.append(timestamp0)
162
+ storage_container.ts1.append(timestamp1)
163
+ for idx, elem in enumerate(measurements):
164
+ storage = storage_container.arr[idx]
165
+ storage.arr.append(elem)
166
+
167
+
168
+ class ArrowConverter(CollectRows, XcpLogFileDecoder):
169
+ """"""
170
+
171
+ MAP_TO_ARROW = {
172
+ "U8": pa.uint8(),
173
+ "I8": pa.int8(),
174
+ "U16": pa.uint16(),
175
+ "I16": pa.int16(),
176
+ "U32": pa.uint32(),
177
+ "I32": pa.int32(),
178
+ "U64": pa.uint64(),
179
+ "I64": pa.int64(),
180
+ "F32": pa.float32(),
181
+ "F64": pa.float64(),
182
+ "F16": pa.float16(),
183
+ "BF16": pa.float16(),
184
+ }
185
+
186
+ def __init__(self, recording_file_name: str, target_file_name: str = ""):
187
+ super().__init__(
188
+ recording_file_name=recording_file_name,
189
+ out_file_suffix=".parquet",
190
+ remove_file=False,
191
+ target_type_map=self.MAP_TO_ARROW,
192
+ target_file_name=target_file_name,
193
+ )
194
+
195
+ def on_initialize(self) -> None:
196
+ super().on_initialize()
197
+
198
+ def on_finalize(self) -> None:
199
+ result = []
200
+ for arr in self.tables:
201
+ timestamp0 = arr.ts0
202
+ timestamp1 = arr.ts1
203
+ names = ["timestamp0", "timestamp1"]
204
+ data = [timestamp0, timestamp1]
205
+ for sd in arr.arr:
206
+ adt = pa.array(sd.arr, type=sd.target_type)
207
+ names.append(sd.name)
208
+ data.append(adt)
209
+ table = pa.Table.from_arrays(data, names=names)
210
+ fname = f"{arr.name}{self.out_file_suffix}"
211
+ self.logger.info(f"Writing file {fname!r}")
212
+ pq.write_table(table, fname)
213
+ result.append(table)
214
+ return result
215
+
216
+
217
+ class CsvConverter(XcpLogFileDecoder):
218
+
219
+ def __init__(self, recording_file_name: str, target_file_name: str = ""):
220
+ super().__init__(
221
+ recording_file_name=recording_file_name, out_file_suffix=".csv", remove_file=False, target_file_name=target_file_name
222
+ )
223
+
224
+ def on_initialize(self) -> None:
225
+ self.csv_writers = []
226
+ super().on_initialize()
227
+
228
+ def on_container(self, sc: StorageContainer) -> None:
229
+ fname = f"{sc.name}{self.out_file_suffix}"
230
+ self.logger.info(f"Creating file {fname!r}.")
231
+ writer = csv.writer(open(fname, "w", newline=""), dialect="excel")
232
+ headers = ["ts0", "ts1"] + [e.name for e in sc.arr]
233
+ writer.writerow(headers)
234
+ self.csv_writers.append(writer)
235
+
236
+ def on_finalize(self) -> None:
237
+ self.logger.info("Done.")
238
+
239
+ def on_daq_list(self, daq_list_num: int, timestamp0: int, timestamp1: int, measurements: list) -> None:
240
+ writer = self.csv_writers[daq_list_num]
241
+ data = [timestamp0, timestamp1, *measurements]
242
+ writer.writerow(data)
243
+
244
+
245
+ class ExcelConverter(XcpLogFileDecoder):
246
+
247
+ def __init__(self, recording_file_name: str, target_file_name: str = ""):
248
+ super().__init__(recording_file_name=recording_file_name, out_file_suffix=".xlsx", target_file_name=target_file_name)
249
+
250
+ def on_initialize(self) -> None:
251
+ self.logger.info(f"Creating file {str(self.out_file_name)!r}.")
252
+ self.xls_workbook = xlsxwriter.Workbook(self.out_file_name)
253
+ self.xls_sheets = []
254
+ self.rows = []
255
+ super().on_initialize()
256
+
257
+ def on_container(self, sc: StorageContainer) -> None:
258
+ sheet = self.xls_workbook.add_worksheet(sc.name)
259
+ self.xls_sheets.append(sheet)
260
+ headers = ["ts0", "ts1"] + [e.name for e in sc.arr]
261
+ sheet.write_row(0, 0, headers)
262
+ self.rows.append(1)
263
+
264
+ def on_finalize(self) -> None:
265
+ self.xls_workbook.close()
266
+ self.logger.info("Done.")
267
+
268
+ def on_daq_list(self, daq_list_num: int, timestamp0: int, timestamp1: int, measurements: list) -> None:
269
+ sheet = self.xls_sheets[daq_list_num]
270
+ row = self.rows[daq_list_num]
271
+ data = [timestamp0, timestamp1] + measurements
272
+ sheet.write_row(row, 0, data)
273
+ self.rows[daq_list_num] += 1
274
+
275
+
276
+ class HdfConverter(CollectRows, XcpLogFileDecoder):
277
+
278
+ def __init__(self, recording_file_name: str, target_file_name: str = ""):
279
+ super().__init__(recording_file_name=recording_file_name, out_file_suffix=".h5", target_file_name=target_file_name)
280
+
281
+ def on_initialize(self) -> None:
282
+ self.logger.info(f"Creating file {str(self.out_file_name)!r}")
283
+ self.out_file = h5py.File(self.out_file_name, "w")
284
+ super().on_initialize()
285
+
286
+ def on_finalize(self) -> None:
287
+ for arr in self.tables:
288
+ timestamp0 = arr.ts0
289
+ timestamp1 = arr.ts1
290
+ self.out_file[f"/{arr.name}/timestamp0"] = timestamp0
291
+ self.out_file[f"/{arr.name}/timestamp1"] = timestamp1
292
+ for sd in arr.arr:
293
+ self.out_file[f"/{arr.name}/{sd.name}"] = sd.arr
294
+ self.logger.info(f"Writing table {arr.name!r}")
295
+ self.logger.info("Done.")
296
+ self.out_file.close()
297
+
298
+
299
+ class MdfConverter(CollectRows, XcpLogFileDecoder):
300
+
301
+ def __init__(self, recording_file_name: str, target_file_name: str = ""):
302
+ super().__init__(
303
+ recording_file_name=recording_file_name,
304
+ out_file_suffix=".mf4",
305
+ target_type_map=MAP_TO_NP,
306
+ target_file_name=target_file_name,
307
+ )
308
+
309
+ def on_initialize(self) -> None:
310
+ super().on_initialize()
311
+
312
+ def on_finalize(self) -> None:
313
+ timestamp_info = self.parameters.timestamp_info
314
+ hdr = HeaderBlock(
315
+ abs_time=timestamp_info.timestamp_ns,
316
+ tz_offset=timestamp_info.utc_offset,
317
+ daylight_save_time=timestamp_info.dst_offset,
318
+ time_flags=FLAG_HD_TIME_OFFSET_VALID,
319
+ )
320
+ hdr.comment = f"""<HDcomment><TX>Timezone: {timestamp_info.timezone}</TX></HDcomment>""" # Test-Comment.
321
+ mdf4 = MDF(version="4.10")
322
+ mdf4.header = hdr
323
+ for idx, arr in enumerate(self.tables):
324
+ signals = []
325
+ timestamps = arr.ts0
326
+ for sd in arr.arr:
327
+ signal = Signal(samples=sd.arr, name=sd.name, timestamps=timestamps)
328
+ signals.append(signal)
329
+ self.logger.info(f"Appending data-group {arr.name!r}")
330
+ mdf4.append(signals, acq_name=arr.name, comment="Created by pyXCP recorder")
331
+ self.logger.info(f"Writing {str(self.out_file_name)!r}")
332
+ mdf4.save(self.out_file_name, compression=2, overwrite=True)
333
+ self.logger.info("Done.")
334
+
335
+
336
+ class SqliteConverter(XcpLogFileDecoder):
337
+ """ """
338
+
339
+ MAP_TO_SQL = {
340
+ "U8": "INTEGER",
341
+ "I8": "INTEGER",
342
+ "U16": "INTEGER",
343
+ "I16": "INTEGER",
344
+ "U32": "INTEGER",
345
+ "I32": "INTEGER",
346
+ "U64": "INTEGER",
347
+ "I64": "INTEGER",
348
+ "F32": "FLOAT",
349
+ "F64": "FLOAT",
350
+ "F16": "FLOAT",
351
+ "BF16": "FLOAT",
352
+ }
353
+
354
+ def __init__(self, recording_file_name: str, target_file_name: str = ""):
355
+ super().__init__(
356
+ recording_file_name=recording_file_name,
357
+ out_file_suffix=".sq3",
358
+ target_type_map=self.MAP_TO_SQL,
359
+ target_file_name=target_file_name,
360
+ )
361
+
362
+ def on_initialize(self) -> None:
363
+ self.logger.info(f"Creating database {str(self.out_file_name)!r}.")
364
+ self.create_database(self.out_file_name)
365
+ self.insert_stmt = {}
366
+ super().on_initialize()
367
+
368
+ def on_container(self, sc: StorageContainer) -> None:
369
+ self.create_table(sc)
370
+ self.logger.info(f"Creating table {sc.name!r}.")
371
+ self.insert_stmt[sc.name] = (
372
+ f"""INSERT INTO {sc.name}({', '.join(['ts0', 'ts1'] + [r.name for r in sc.arr])}) VALUES({', '.join(["?" for _ in range(len(sc.arr) + 2)])})"""
373
+ )
374
+
375
+ def on_finalize(self) -> None:
376
+ self.conn.commit()
377
+ self.conn.close()
378
+ print("Done.")
379
+
380
+ def on_daq_list(self, daq_list_num: int, timestamp0: int, timestamp1: int, measurements: list) -> None:
381
+ sc = self.tables[daq_list_num]
382
+ insert_stmt = self.insert_stmt[sc.name]
383
+ data = [timestamp0, timestamp1, *measurements]
384
+ self.execute(insert_stmt, data)
385
+
386
+ def create_database(self, db_name: str) -> None:
387
+ self.conn = sqlite3.Connection(db_name)
388
+ self.cursor = self.conn.cursor()
389
+ self.execute("PRAGMA FOREIGN_KEYS=ON")
390
+ self.execute(f"PRAGMA PAGE_SIZE={PAGESIZE}")
391
+ self.execute("PRAGMA SYNCHRONOUS=OFF")
392
+ self.execute("PRAGMA LOCKING_MODE=EXCLUSIVE")
393
+ self.execute("PRAGMA TEMP_STORE=MEMORY")
394
+
395
+ timestamp_info = self.parameters.timestamp_info
396
+ self.execute(
397
+ "CREATE TABLE timestamp_info(timestamp_ns INTEGER, utc_offset INTEGER, dst_offset INTEGER, timezone VARCHAR(255))"
398
+ )
399
+ self.execute("CREATE TABLE table_names(name VARCHAR(255))")
400
+ self.execute(
401
+ "INSERT INTO timestamp_info VALUES(?, ?, ?, ?)",
402
+ [timestamp_info.timestamp_ns, timestamp_info.utc_offset, timestamp_info.dst_offset, timestamp_info.timezone],
403
+ )
404
+
405
+ def create_table(self, sc: StorageContainer) -> None:
406
+ columns = ["ts0 INTEGER", "ts1 INTEGER"]
407
+ for elem in sc.arr:
408
+ columns.append(f"{elem.name} {elem.target_type}")
409
+ ddl = f"CREATE TABLE {sc.name}({', '.join(columns)})"
410
+ self.execute(ddl)
411
+ self.execute("INSERT INTO table_names VALUES(?)", [sc.name])
412
+
413
+ def execute(self, *args: List[str]) -> None:
414
+ try:
415
+ self.cursor.execute(*args)
416
+ except Exception as e:
417
+ print(e)
418
+
419
+
420
+ CONVERTERS = {
421
+ "arrow": ArrowConverter,
422
+ "csv": CsvConverter,
423
+ "excel": ExcelConverter,
424
+ "hdf5": HdfConverter,
425
+ "mdf": MdfConverter,
426
+ "sqlite3": SqliteConverter,
427
+ }
428
+
429
+ CONVERTER_REQUIREMENTS = {
430
+ "arrow": (has_arrow, "pyarrow"),
431
+ "csv": (True, "csv"),
432
+ "excel": (has_xlsxwriter, "xlsxwriter"),
433
+ "hdf5": (has_h5py, "h5py"),
434
+ "mdf": (has_asammdf, "asammdf"),
435
+ "sqlite3": (True, "csv"),
436
+ }
437
+
438
+
439
+ def convert_xmraw(converter_name: str, recording_file_name: str, target_file_name: str, *args, **kwargs) -> None:
440
+ converter_class = CONVERTERS.get(converter_name.lower())
441
+ if converter_class is None:
442
+ console.print(f"Invalid converter name: {converter_name!r}")
443
+ return
444
+ available, pck_name = CONVERTER_REQUIREMENTS.get(converter_name.lower(), (True, ""))
445
+ if not available:
446
+ console.print(f"Converter {converter_name!r} requires package {pck_name!r}.")
447
+ console.print(f"Please run [green]pip install {pck_name}[/green] to install it.")
448
+ return
449
+ # Path(*p.parts[:-1], p.stem)
450
+ converter = converter_class(recording_file_name)
451
+ converter.run()
Binary file
Binary file
Binary file