summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/test/AmNodeStateCommunicatorTest/send2nsm.py
blob: 3b6cad36fa7b831553151b03c1bee032bd23d864 (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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012, BMW AG
#
# This file is part of GENIVI Project AudioManager.
#
# Contributions are licensed to the GENIVI Alliance under one or more
# Contribution License Agreements.
#
# \copyright
# 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/.
#
#
# \author Christian Linke, christian.linke@bmw.de BMW 2012
#
# For further information see http://www.genivi.org/.
#

import sys
import traceback
import gobject
import math
import dbus
import dbus.service

def nodeState (nodeState):
	bus = dbus.SessionBus()
	remote_object = bus.get_object('org.genivi.NodeStateManager','/org/genivi/NodeStateManager')
	iface = dbus.Interface(remote_object, 'org.genivi.NodeStateManager.Control')
	iface.sendNodeState(int(nodeState))
	
def appMode (appMode):
	bus = dbus.SessionBus()
	remote_object = bus.get_object('org.genivi.NodeStateManager','/org/genivi/NodeStateManager')
	iface = dbus.Interface(remote_object, 'org.genivi.NodeStateManager.Control')
	iface.sendNodeApplicationMode(int(appMode))
	
def sessionState (SessionStateName,SeatID,SessionState):
	bus = dbus.SessionBus()
	remote_object = bus.get_object('org.genivi.NodeStateManager','/org/genivi/NodeStateManager')
	iface = dbus.Interface(remote_object, 'org.genivi.NodeStateManager.Control')
	iface.sendSessionState(SessionStateName,int(SeatID),int(SessionState))
	
def finish():
	bus = dbus.SessionBus()
	remote_object = bus.get_object('org.genivi.NodeStateManager','/org/genivi/NodeStateManager')
	iface = dbus.Interface(remote_object, 'org.genivi.NodeStateManager.Control')
	iface.finish()

def LifecycleRequest(Request,RequestID):
	bus = dbus.SessionBus()
	remote_object = bus.get_object('org.genivi.NodeStateManager','/org/genivi/NodeStateManager')
	iface = dbus.Interface(remote_object, 'org.genivi.NodeStateManager.Control')
	iface.sendLifeCycleRequest(Request,RequestID)

command=sys.argv[1]
if command=="nodeState":
	nodeState(sys.argv[2])	
if command=="finish":
	finish()
if command=="appMode":
	appMode(sys.argv[2])
if command=="sessionState":
	sessionState(sys.argv[2],sys.argv[3],sys.argv[4])
if command=="LifecycleRequest":
	LifecycleRequest(sys.argv[2],sys.argv[3])