-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyvisaup1p5patch.py
69 lines (65 loc) · 3.8 KB
/
pyvisaup1p5patch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# -*- coding: utf-8 -*-
##Copyright © 2014 , UChicago Argonne, LLC
##All Rights Reserved
## Python Generic Measurement Interface
##OPEN SOURCE LICENSE
##
##Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
##
##1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Software changes, modifications, or derivative works, should be noted with comments and the author and organization’s name.
##
##2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
##
##3. Neither the names of UChicago Argonne, LLC or the Department of Energy nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
##
##4. The software and the end-user documentation included with the redistribution, if any, must include the following acknowledgment:
##
## "This product includes software produced by UChicago Argonne, LLC under Contract No. DE-AC02-06CH11357 with the Department of Energy.”
##
##******************************************************************************************************
##DISCLAIMER
##
##THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND.
##
##NEITHER THE UNITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF ENERGY, NOR UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, NOR MAXIME LEROUX, MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, DATA, APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS.
##
##***************************************************************************************************
##
"""
A tentative patch to upgrade PyGMI to pyvisa>1.5
"""
import os
rep = os.getcwd()
for root,dirs,files in os.walk(rep):
for myfile in files:
needupdate = False
if myfile[-3:]=='.py' and 'pyvisaup1p5patch' not in myfile:
with open(root+os.sep+myfile,'r',encoding='utf-8') as f:
txt = f.readlines()
for i,line in enumerate(txt):
if "visa.instrument(" in line:
line = line.replace("visa.instrument(","visa.ResourceManager().open_resource(")
print(myfile,"line",i,"visa.instrument(")
needupdate = True
if ".ask(" in line:
line = line.replace(".ask(",".query(")
print(myfile,"line",i,".ask(")
needupdate = True
if ".term_chars" in line:
line = line.replace(".term_chars",".read_termination")
print(myfile,"line",i,".term_chars")
needupdate = True
if "timeout" in line:
print("WARNING: 'timeout' detected in",myfile)
print("timeout must be in milliseconds for PyVisa > 1.5")
print(line)
if 'visa.get_instruments_list()' in line:
line = line.replace('visa.get_instruments_list()','visa.ResourceManager().list_resources()')
print(myfile,"line",i,'.get_instruments_list()')
needupdate = True
txt[i] = line
if needupdate:
with open(root+os.sep+myfile, encoding='utf-8', mode="w") as f:
f.write("".join(txt))
print(">>> successfully patched",myfile)
print("")