aboutsummaryrefslogtreecommitdiffstats
path: root/src/dbus/routing_interface.xml
blob: a91d6ebe2c9b4546e4977b203164923c7be50bbb (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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE node PUBLIC
  "-//freedesktop//DTD D-Bus Object Introspection 1.0//EN"
  "http://standards.freedesktop.org/dbus/1.0/introspect.dtd">

<node>  
	<interface name="org.genivi.audiomanager.routinginterface">          
	<method name="ackConnect">      
		<arg name="handle" type="q" direction="in" />      
		<arg name="connectionID" type="q" direction="in" /> 
		<arg name="error" type="q" direction="in" />
	</method>
	<method name="ackDisconnect">
		<arg name="handle" type="q" direction="in" />
		<arg name="connectionID" type="q" direction="in" />
		<arg name="error" type="q" direction="in" />
	</method>
	<method name="ackSetSourceState">
		<arg name="handle" type="q" direction="in" />
		<arg name="error" type="q" direction="in" />
	</method>
	<method name="ackSetSinkVolume">
			<arg name="handle" type="q" direction="in" />
			<arg name="volume" type="n" direction="in" />
			<arg name="error" type="q" direction="in" />
	</method>
	<method name="registerSink">      
		<arg name="sinkData" type="(qsqinb(ii)nna(in)aia(in)a(iin)a(iin))" direction="in" /> <!-- am_sinkID_t sinkID; std::string name; am_domainID_t domainID; am_sinkClass_t sinkClassID; am_volume_t volume; bool visible; am_Availability_s available; am_MuteState_e muteState;am_mainVolume_t mainVolume; std::vector<am_SoundProperty_s> listSoundProperties; std::vector<am_CustomAvailabilityReason_t> listConnectionFormats;  std::vector<am_MainSoundProperty_s> listMainSoundProperties; -->     
		<arg name="sinkID" type="q" direction="out" /> 
		<arg name="error" type="q" direction="out" />
	</method>
	<method name="deregisterSink">
		<arg name="sinkID" type="q" direction="in" />  
		<arg name="error" type="i" direction="out" />
	</method>	
	<method name="registerSource">      
		<arg name="sourceData" type="(qqsqinb(ii)qa(in)aia(in)a(iin)a(iin))" direction="in" />  <!-- am_sourceID_t sourceID; am_domainID_t domainID; std::string name; am_sourceClass_t sourceClassID; am_SourceState_e sourceState; am_volume_t volume; bool visible; am_Availability_s available; am_InterruptState_e interruptState; std::vector<am_SoundProperty_s> listSoundProperties; std::vector<am_CustomAvailabilityReason_t> listConnectionFormats; std::vector<am_MainSoundProperty_s> listMainSoundProperties; -->    
		<arg name="sourceID" type="q" direction="out" /> 
		<arg name="error" type="q" direction="out" />
	</method>
	<method name="deregisterSource">
		<arg name="sourceID" type="q" direction="in" />  
		<arg name="error" type="q" direction="out" />			
	</method>
	<method name="hookInterruptStatusChange">
		<arg name="sourceID" type="q" direction="in" />
		<arg name="interruptState" type="q" direction="in" />
	</method>
	<method name="hookSourceAvailablityStatusChange">
		<arg name="sourceID" type="q" direction="in" />
        <arg name="availability" type="(nn)"  direction="in"/>		
	</method>
	<method name="confirmRoutingReady"> 
		<arg name="domainID" type="q" direction="in" />
	</method>
	<method name="confirmRoutingRundown"> 
		<arg name="domainID" type="q" direction="in" />
	</method>
	<method name="ackSetVolumes"> 
 		<arg name="handle" type="q" direction="in" />
 		<arg name="listvolumes" type="a(nqqnq)" direction="in" />
		<arg name="error" type="q" direction="in" /> 
	</method>		
	<method name="ackSinkNotificationConfiguration"> 
		<arg name="handle" type="q" direction="in" />
		<arg name="error" type="q" direction="in" />
	</method>		
	<method name="ackSourceNotificationConfiguration"> 
		<arg name="handle" type="q" direction="in" />
		<arg name="error" type="q" direction="in" />
	</method>
	<method name="registerDomain">
        <arg name="domaindata" type="(qsssbbn)" direction="in" /> <!-- am_domainID_t domainID; std::string name; std::string busname; std::string nodename; bool early; bool complete; am_DomainState_e state; -->
        <arg name="returnBusname" type="s" direction="in" /> <!-- the busname for all communication to this domain -->
        <arg name="returnPath" type="s" direction="in" /> <!-- the path for all communication to this domain -->
        <arg name="returnInterface" type="s" direction="in" />  <!-- the interface for all communication to this domain -->
        <arg name="domainid" type="q" direction="out" />
        <arg name="error" type="q" direction="out" />
    </method>
	<signal name="setRoutingReady">
	</signal>	
	<signal name="setRoutingRundown">
	</signal>	
	</interface>
</node>