当前位置:主页 > 软件编程 > Python代码 >

Python解析CDD文件的代码详解

时间:2023-03-16 11:36:32 | 栏目:Python代码 | 点击:

前言

在实际诊断测试开发中,我们写测试脚本会用到CDD文件中的诊断,常规做法可能是用到哪个就定义哪个,这样做的弊端是有可能造成重复定义,或者整个工程中有不同的变量名,较为好的方式是头文件中统一定义,如果人去单独定义的话,CDD中诊断有比较多,浪费时间,所以基于这个需求,我想到了可以用Python 脚本解析CDD文件,统一定义,一键生成,十分快捷。
测试软硬件环境:
Win10 X64
Python 3.8
PyQt5 5.16.5

基本介绍

1. 如下图是工具的界面,输入是cdd 文件,输出 是 bwm_test_DiagRequest_Variables.cin,这个头文件可以直接放在工程里,这样用到哪个诊断就可以直接使用了,无需重复定义或者单独定义

2.代码简单介绍

3?? cdd文件结构分析

da

 def parseCdd(self,filename):
        cddXML = etree.parse(filename)
        if cddXML:
            ecu = cddXML.xpath("//VAR//DIAGINST//SERVICE//SHORTCUTNAME/TUV/text()")
            if ecu:
                self.diagCan = ''
                for i in ecu:
                    temp = i.replace("/","_").replace("#","_").replace(": ","_").replace(":","_").replace("  ","_").replace(" - ","_").replace("-","_").replace(" ","_")
                    self.diagCan = self.diagCan + "\n" + "diagRequest    " + temp +"    req_" + temp + ";"
                self.diagCan = "variables\n{\n%s\n}"%self.diagCan
                print(self.diagCan)
                newFile = os.path.splitext(filename)[0] + '_DiagRequest_Variables.cin'
                with open(newFile,'w') as f:
                    f.write(self.diagCan)
            else:
                print("parse cdd file failed!")
        else:
            print("parse file failed!")

本节测试使用源码放在Git上了,有需自取

https://github.com/yiyuchenguang/CANoeAbout.git

您可能感兴趣的文章:

相关文章