我的第一种方法是使用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
对象中,我可以读取其所有FullName
和Symbol
对象的Message
属性另外我确定添加到Destinations
集合的路径是正常的(至少我可以在添加后读取它),但随后它会在最后一行显示为下面的错误:
此消息被证明是相当神秘的所以我不知道除了编写文件有些麻烦之外还有什么问题。事情是,我不需要CANoe
为我写作,只要我能够以某种方式掌握BLF
中包含的数据。
所以我的另一个想法是将BLF
作为离线源附加在CANoe'a Configuration
窗口中,保存配置并从脚本开始测量。这样我在Trace
窗口中有数据(默认情况下限制为4000个事件,但我认为应该是可编辑的),但到目前为止还没有找到使用COM接口的方法。< / p>
我觉得应该有一些更简单的方法来做到这一点。毕竟在Logging File Conversion
中有CANoe
对话框,逻辑方式是使用COM接口以某种方式访问它。我似乎无法在文档中的任何地方看到它。
非常感谢任何帮助。
答案 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
您必须做什么:
脚本文件附在下面。 通过将VBS文件中的“ CANoe.Application”替换为“ CANalyzer.Application”,可以将脚本调整为CANalyzer。空的CANalyzer配置必须另外创建。
可以如下调整转换类型: .BAT文件中的源文件类型:将.BLF更改为支持的请求的源文件格式 .VBS文件中的目标文件类型:将.ASC更改为支持的请求的目标文件格式。