-
Notifications
You must be signed in to change notification settings - Fork 2
/
caenFastPSController.py
133 lines (114 loc) · 4.48 KB
/
caenFastPSController.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
##############################################################################
##
# This file is part of Sardana
##
# http://www.sardana-controls.org/
##
# Copyright 2011 CELLS / ALBA Synchrotron, Bellaterra, Spain
##
# Sardana is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
##
# Sardana is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
##
# You should have received a copy of the GNU Lesser General Public License
# along with Sardana. If not, see <http://www.gnu.org/licenses/>.
##
##############################################################################
"""This file contains the code for an hypothetical Springfield motor controller
used in documentation"""
import socket, time
from sardana import State
from sardana.pool.controller import MotorController
from sardana.pool.controller import Type, Description, DefaultValue
class caenFastPSController(MotorController):
ctrl_properties = {'ip': {Type: str, Description: 'ip or hostname', DefaultValue: 'caen-fastps.hhg.lab'},
'port': {Type: int, Description: 'port', DefaultValue: 10001},
}
MaxDevice = 1
def __init__(self, inst, props, *args, **kwargs):
super(caenFastPSController, self).__init__(
inst, props, *args, **kwargs)
self.conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM,
socket.IPPROTO_TCP)
self.conn.connect((self.ip, self.port))
self.conn.settimeout(5)
self.conn.setblocking(True)
print('CAEN FAST-PS Initialization ... '),
[_, idn] = self.__sendAndReceive('VER')
if idn:
print 'SUCCESS for model: %s' % idn
else:
print 'FAILED!'
# initialize hardware communication
self._motors = {}
self._isMoving = None
self._moveStartTime = None
self._threshold = 0.0001
self._target = None
self._timeout = 10
def AddDevice(self, axis):
self._motors[axis] = True
self.__sendAndReceive('UPMODE:NORMAL')
self.__sendAndReceive('LOOP:I')
self.__sendAndReceive('MON')
def DeleteDevice(self, axis):
del self._motors[axis]
def StateOne(self, axis):
limit_switches = MotorController.NoLimitSwitch
pos = self.ReadOne(axis)
now = time.time()
if self._isMoving == False:
state = State.On
elif self._isMoving & (abs(pos-self._target) > self._threshold):
# moving and not in threshold window
if (now-self._moveStartTime) < self._timeout:
# before timeout
state = State.Moving
else:
# after timeout
self._log.warning('CAEN FAST-PS Timeout')
self._isMoving = False
state = State.On
elif self._isMoving & (abs(pos-self._target) <= self._threshold):
# moving and within threshold window
self._isMoving = False
state = State.On
#print('Kepco Tagret: %f Kepco Current Pos: %f' % (self._target, pos))
else:
state = State.Fault
return state, 'some text', limit_switches
def ReadOne(self, axis):
[_, pos] = self.__sendAndReceive('MRI')
return float(pos)
def StartOne(self, axis, position):
self._moveStartTime = time.time()
self._isMoving = True
self._target = position
cmd = 'MWI:%f' % position
self.__sendAndReceive(cmd)
def StopOne(self, axis):
pass
def AbortOne(self, axis):
pass
def __sendAndReceive(self, command):
try:
self.conn.send(command + '\r')
ret = self.conn.recv(1024)
while (ret.find('\r\n') == -1):
ret += self.conn.recv(1024)
except socket.timeout:
return [-2, '']
except socket.error:
print 'Socket error'
return [-2, '']
for i in range(len(ret)):
if (ret[i] == ':'):
return [str(ret[0:i]), ret[i+1:-2]]
else:
return [ret[:-2], '']