summaryrefslogtreecommitdiff
path: root/lib/taurus/core/evaluation/ipap_example.py
blob: 12f29d08cbb4645700a5f2aad7c8a5bccdee4daf (plain)
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
#!/usr/bin/env python
#############################################################################
##
## This file is part of Taurus
## 
## http://taurus-scada.org
##
## Copyright 2011 CELLS / ALBA Synchrotron, Bellaterra, Spain
## 
## Taurus 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.
## 
## Taurus 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 Taurus.  If not, see <http://www.gnu.org/licenses/>.
##
#############################################################################

'''
Examples on using the evaluation scheme for exposing arbitrary non-tango quantities as taurus attributes
'''

__all__ = ['IcepapDriverParam']

from taurus.core.evaluation import EvaluationDevice
import re
import pyIcePAP

class IcepapDriverParam(EvaluationDevice):
    '''A simple example of usage of the evaluation scheme for 
    creating an icepap connection device to obtain icepap driver values.
    
    Important: note that only those members listed in `_symbols` will be available
    '''
    _symbols = ['getAxisParam']

    def __init__(self, *args, **kwargs):
        ''' Get from Database info the icepap host and port to connect. '''
        self.call__init__(EvaluationDevice, *args, **kwargs)

        # Get the icepap host and port to connect
        self.ipap = None

        try:
            db_name = self.getNameValidator().getDBName(self._full_name)
            db_name = db_name.replace('eval://','')
            db_name = db_name.replace('db=','')
            host,port = db_name.split(':')
            self.ipap = pyIcePAP.EthIcePAP(host, port)
            self.ipap.connect()
        except:
            pass
        
    def getAxisParam(self, axis, param):
        ''' return the axis parameter value. '''
        if self.ipap is None or not self.ipap.connected:
            raise Exception('Not a valid icepap connection')
        
        try:
            value = self.ipap.readParameter(axis, param)
            return float(value)
        except:
            return value
        

#===============================================================================
# Just for testing
#===============================================================================

ATTR_IPAP_POS = 'eval://db=icepap06:5000;dev=taurus.core.evaluation.ipap_example.IcepapDriverParam;getAxisParam(1,"POS")'

def test1():
    import taurus.core
    a = taurus.Attribute(ATTR_IPAP_POS)
    print "axis pos:", a.read().value
    
def test2():
    import sys
    from taurus.qt.qtgui.application import TaurusApplication
    from taurus.qt.qtgui.display import TaurusLabel
    app = TaurusApplication()
    
    tl = TaurusLabel()
    tl.setModel(ATTR_IPAP_POS)
    tl.show()

    sys.exit(app.exec_())
    
if __name__ == "__main__":
    test1()
    test2()