summaryrefslogtreecommitdiff
path: root/enhanced-position-service/dbus-service/test/test-scripts/test-enhanced-position-service.py
blob: ee784aab7ebb07751b18237c64c921c67db506cb (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
#!/usr/bin/python

"""
**************************************************************************
* @licence app begin@
* SPDX-License-Identifier: MPL-2.0
*
* \copyright Copyright (C) 2014, XS Embedded GmbH
*
* \file test-enhanced-position-service.py
*
* \brief This simple test shows how the enhanced-position-service 
*        can be easily tested using a python script
*
* \author Marco Residori <marco.residori@xse.de>
*
* \version 1.0
*
* This Source Code Form is subject to the terms of the
* Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
# this file, You can obtain one at http://mozilla.org/MPL/2.0/.
* List of changes:
* <date>, <name>, <description of change>
*
* @licence end@
**************************************************************************
"""

import dbus
import gobject
import dbus.mainloop.glib

#constants as defined in the Positioning API
LATITUDE  = 0x00000001
LONGITUDE = 0x00000002
ALTITUDE  = 0x00000004
CLIMB     = 0x00000020
SPEED     = 0x00000010
HEADING   = 0x00000008

print '\n--------------------------'
print 'Positioning Test'
print '--------------------------\n'

if __name__ == '__main__':
    dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) 

#connect to session bus
bus = dbus.SessionBus()

#signal receiver
def catchall_positioning_signals_handler(changedValues):
    print 'PositonUpdate'
    position = enhanced_position_interface.GetPositionInfo(changedValues)
    timestamp = position[0]
    print 'TIMESTAMP:' +str(timestamp)
    data = position[1]
    #print(data)
    for key in data:
        if key == LATITUDE:
            print 'LATITUDE:' + str(data[dbus.UInt64(key)])
        if key == LONGITUDE:
            print 'LONGITUDE:' + str(data[dbus.UInt64(key)])
        if key == ALTITUDE:
            print 'ALTITUDE:' + str(data[dbus.UInt64(key)])
        if key == CLIMB:
            print 'CLIMB:' + str(data[dbus.UInt64(key)])
        if key == SPEED:
            print 'SPEED:' + str(data[dbus.UInt64(key)])
        if key == HEADING:
            print 'HEADING:' + str(data[dbus.UInt64(key)])

#add signal receiver
bus.add_signal_receiver(catchall_positioning_signals_handler, \
                        dbus_interface = "org.genivi.positioning.EnhancedPosition", \
                        signal_name = "PositionUpdate")

#timeout
def timeout():
    print '\nTest Finished\n'
    loop.quit()

#get object
enhanced_position = bus.get_object('org.genivi.positioning.EnhancedPosition','/org/genivi/positioning/EnhancedPosition')

#get interface
enhanced_position_interface = dbus.Interface(enhanced_position, dbus_interface='org.genivi.positioning.EnhancedPosition')

#main loop 
gobject.timeout_add(10000, timeout)
loop = gobject.MainLoop()
loop.run()