node, discover: add zone support
[profile/ivi/pulseaudio-module-murphy-ivi.git] / murphy / userdata.h
1 /*
2  * module-murphy-ivi -- PulseAudio module for providing audio routing support
3  * Copyright (c) 2012, Intel Corporation.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms and conditions of the GNU Lesser General Public License,
7  * version 2.1, as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.
12  * See the GNU Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston,
17  * MA 02110-1301 USA.
18  *
19  */
20 #ifndef foomurphyuserdatafoo
21 #define foomurphyuserdatafoo
22
23 #include <stdbool.h>
24 #include <pulsecore/core.h>
25 #include <pulsecore/client.h>
26 #include <pulsecore/protocol-native.h>
27
28 #include <murphy/domain-control/client.h>
29
30 #include "multiplex.h"
31 #include "loopback.h"
32
33 #define DIM(a) (sizeof(a)/sizeof((a)[0]))
34
35 #define PA_PROP_ZONE_NAME              "zone.name"
36 #define PA_PROP_ROUTING_CLASS_NAME     "routing.class.name"
37 #define PA_PROP_ROUTING_CLASS_ID       "routing.class.id"
38 #define PA_PROP_ROUTING_METHOD         "routing.method"
39 #define PA_PROP_ROUTING_TABLE          "routing.table"
40 #define PA_PROP_NODE_INDEX             "node.index"
41 #define PA_PROP_NODE_TYPE              "node.type"
42 #define PA_PROP_NODE_ROLE              "node.role"
43
44 #define PA_ZONE_NAME_DEFAULT           "driver"
45
46 #define PA_ROUTING_DEFAULT             "default"
47 #define PA_ROUTING_EXPLICIT            "explicit"
48
49 typedef enum   pa_value_type            pa_value_type;
50 typedef struct pa_value                 pa_value;
51 typedef struct pa_null_sink             pa_null_sink;
52 typedef struct pa_tracker               pa_tracker;
53 typedef struct pa_audiomgr              pa_audiomgr;
54 typedef struct pa_routerif              pa_routerif;
55 typedef struct pa_discover              pa_discover;
56 typedef struct pa_router                pa_router;
57 typedef struct pa_constrain             pa_constrain;
58 typedef struct pa_fader                 pa_fader;
59 typedef struct pa_scripting             pa_scripting;
60 typedef struct pa_mir_volume            pa_mir_volume;
61 typedef struct pa_mir_config            pa_mir_config;
62 typedef struct pa_nodeset               pa_nodeset;
63 typedef struct pa_node_card             pa_node_card;
64 typedef struct pa_card_hooks            pa_card_hooks;
65 typedef struct pa_port_hooks            pa_port_hooks;
66 typedef struct pa_sink_hooks            pa_sink_hooks;
67 typedef struct pa_source_hooks          pa_source_hooks;
68 typedef struct pa_sink_input_hooks      pa_sink_input_hooks;
69 typedef struct pa_source_output_hooks   pa_source_output_hooks;
70 typedef struct pa_extapi                pa_extapi;
71 typedef struct pa_domctl                pa_domctl;
72
73 typedef enum   mir_direction            mir_direction;
74 typedef enum   mir_implement            mir_implement;
75 typedef enum   mir_location             mir_location;
76 typedef enum   mir_node_type            mir_node_type;
77 typedef enum   mir_privacy              mir_privacy; 
78 typedef struct mir_node                 mir_node;
79 typedef struct mir_rtgroup              mir_rtgroup;
80 typedef struct mir_rtentry              mir_rtentry;
81 typedef struct mir_connection           mir_connection;
82 typedef struct mir_constr_link          mir_constr_link;
83 typedef struct mir_constr_def           mir_constr_def;
84 typedef struct mir_vlim                 mir_vlim;
85 typedef struct mir_volume_suppress_arg  mir_volume_suppress_arg;
86
87 typedef struct scripting_node           scripting_node;
88 typedef struct scripting_rtgroup        scripting_rtgroup;
89 typedef struct scripting_apclass        scripting_apclass;
90 typedef struct scripting_vollim         scripting_vollim;
91 typedef struct scripting_import         scripting_import;
92
93 typedef enum   am_method                am_method;
94 typedef struct am_domainreg_data        am_domainreg_data;
95 typedef struct am_nodereg_data          am_nodereg_data;
96 typedef struct am_nodeunreg_data        am_nodeunreg_data;
97 typedef struct am_ack_data              am_ack_data;
98 typedef struct am_connect_data          am_connect_data;
99
100
101 typedef struct {
102     char *profile;    /**< During profile change it contains the new profile
103                            name. Otherwise it is NULL. When sink tracking
104                            hooks called the card's active_profile still
105                            points to the old profile */
106     uint32_t sink;
107     uint32_t source;
108 } pa_mir_state;
109
110 enum pa_value_type {
111     pa_value_unknown = 0,
112     pa_value_string,
113     pa_value_integer,
114     pa_value_unsignd,
115     pa_value_floating,
116 };
117
118 struct pa_value {
119     /* positive values are enumerations of pa_value_type
120      * negative values represent array dimensions,
121      * eg. -2 menas an array with two element
122      */
123     int             type;
124     union {
125         const char *string;
126         int32_t     integer;
127         uint32_t    unsignd;
128         double      floating;
129         pa_value  **array;
130     };
131 };
132
133
134 struct userdata {
135     pa_core       *core;
136     pa_module     *module;
137     pa_null_sink  *nullsink;
138     pa_nodeset    *nodeset;
139     pa_audiomgr   *audiomgr;
140     pa_routerif   *routerif;
141     pa_discover   *discover;
142     pa_tracker    *tracker;
143     pa_router     *router;
144     pa_constrain  *constrain;
145     pa_multiplex  *multiplex;
146     pa_loopback   *loopback;
147     pa_fader      *fader;
148     pa_scripting  *scripting;
149     pa_mir_volume *volume;
150     pa_mir_config *config;
151     pa_mir_state   state;
152     pa_extapi     *extapi;
153     pa_native_protocol *protocol;
154     pa_domctl     *domctl;
155 };
156
157 #endif
158
159 /*
160  * Local Variables:
161  * c-basic-offset: 4
162  * indent-tabs-mode: nil
163  * End:
164  *
165  */