有没有办法在Vector CANoe中自动执行BLF到CSV的转换?

时间:2018-05-30 08:38:57

标签: vbscript com pywin32 win32com canoe

我的第一种方法是使用python-can(因为它添加了对2.0.0版本解析BLF文件的支持),如下所示:

import can

filename = "logfile.blf"
logging = can.BLFReader(filename)
for msg in logging:
    print(msg)

但是这导致了我向开发人员报告的错误。 BLF格式是专有的,有点秘密,所以我理解在开源库中支持它可能会有问题。

然后我调查了使用Vector提供的解决方案 COM ,但到目前为止还未能提出溶液

(下面的代码段位于vbscript中,因为 CANoe 文档中使用了该代码段,但我也使用Python脚本执行完全相同的win32com脚本{1}})

首先我尝试了这个:

Dim app, measurement, loggings, logging, exporter, expfilter
Set app = CreateObject("CANoe.Application")
Set loggings = app.Configuration.OfflineSetup.LoggingCollection
loggings.Add("D:\path\dummy3.blf")
Set logging = loggings(1)
Set exporter = logging.Exporter
Set expfilter = exporter.Filter
exporter.Load

For Each symbol In exporter.Symbols
  expfilter.Add(symbol.FullName)
Next

For Each message In exporter.Messages
  expfilter.Add(Message.FullName)
Next

expfilter.Enabled = True

Dim dests
Set dests = exporter.Destinations
dests.Clear
dests.Add("D:\path\dummy3.csv")

exporter.Save True

这至少有效,因为BLF已加载到Exporter对象中,我可以读取其所有FullNameSymbol对象的Message属性另外我确定添加到Destinations集合的路径是正常的(至少我可以在添加后读取它),但随后它会在最后一行显示为下面的错误:

COM server error message

此消息被证明是相当神秘的所以我不知道除了编写文件有些麻烦之外还有什么问题。事情是,我不需要CANoe为我写作,只要我能够以某种方式掌握BLF中包含的数据。

所以我的另一个想法是将BLF作为离线源附加在CANoe'a Configuration窗口中,保存配置并从脚本开始测量。这样我在Trace窗口中有数据(默认情况下限制为4000个事件,但我认为应该是可编辑的),但到目前为止还没有找到使用COM接口的方法。< / p>

我觉得应该有一些更简单的方法来做到这一点。毕竟在Logging File Conversion中有CANoe对话框,逻辑方式是使用COM接口以某种方式访问​​它。我似乎无法在文档中的任何地方看到它。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

您可以使用以下脚本通过CANoe或CANalyzer的自动化来自动进行文件格式转换。该解决方案由Windows批处理文件和 VisualBasicScript 文件组成。 批处理文件convert_this_folder.bat必须通过双击启动。它包含以下行,该行为批处理文件所在的文件夹中的所有BLF日志文件调用其他脚本:

for /F %%x in ('cd') do for %%i in (*.blf) do c:\windows\system32\wscript.exe canoe_convert.vbs %%i %%x

VBS脚本canoe_convert.vbs包含以下几行:

'-----------------------------------------------------------------------------
' converts the filenames which are passed via startup parameter to ASC files with the help of CANoe
'-----------------------------------------------------------------------------
Dim src_file, dst_file, pos

Set App         = CreateObject("CANoe.Application")
  Set Measurement = App.Measurement
  Set args        = WScript.Arguments

  ' read first command line parameter
  arg0=args.Item(0)
  arg1=args.Item(1)

  If Measurement.Running Then
    Measurement.Stop
  End If

  Wscript.Sleep 500

  '---------------------------------------------------------------------------
'  you have to create an empty CANoe configuration and specify the path and file name below
'-----------------------------------------------------------------------------
  App.Open("d:awayawayempty_config.cfg")
'-----------------------------------------------------------------------------
' create destination file name and append .asc   -- you could change this to different file format that is supported by CANoe
  src_file=arg1 & "" & arg0
  dst_file=src_file & ".asc"

  Set Logging  = App.Configuration.OnlineSetup.LoggingCollection(1)
  Set Exporter = Logging.Exporter

  With Exporter.Sources
    .Clear
    .Add(src_file)
  End With

  ' Load file
  Exporter.Load

  With Exporter.Destinations
    .Clear
    .Add(dst_file)
  End With    

  Exporter.Save True

  App.Quit
  Set Exporter = Nothing
  Set Logging  = Nothing
  Set App      = Nothing
  Set args     = Nothing
  Set Measurement = Nothing

您必须做什么:

  1. 创建一个空的CANoe配置并保存。
  2. 将此空配置的路径和文件名输入到VBS文件中(在视觉上标记插入位置)
  3. 将所有要转换的日志文件复制到两个脚本文件所在的目录中。
  4. 如果已打开,请关闭CANoe。
  5. 通过双击convert_this_folder.bat开始批量转换。对于启动的每个文件,将转换文件并关闭CANoe。这个做完了 通过COM自动化。整个转换过程可能需要一些时间 在这段时间内,请不要理会您的电脑,不要执行 其他任务。

脚本文件附在下面。 通过将VBS文件中的“ CANoe.Application”替换为“ CANalyzer.Application”,可以将脚本调整为CANalyzer。空的CANalyzer配置必须另外创建。

可以如下调整转换类型: .BAT文件中的源文件类型:将.BLF更改为支持的请求的源文件格式 .VBS文件中的目标文件类型:将.ASC更改为支持的请求的目标文件格式。