scripting: 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_ZONES                  "zones"
36 #define PA_PROP_ZONE_NAME              "zone.name"
37 #define PA_PROP_ROUTING_CLASS_NAME     "routing.class.name"
38 #define PA_PROP_ROUTING_CLASS_ID       "routing.class.id"
39 #define PA_PROP_ROUTING_METHOD         "routing.method"
40 #define PA_PROP_ROUTING_TABLE          "routing.table"
41 #define PA_PROP_NODE_INDEX             "node.index"
42 #define PA_PROP_NODE_TYPE              "node.type"
43 #define PA_PROP_NODE_ROLE              "node.role"
44 #define PA_PROP_RESOURCE_SET_ID        "resource.set.id"
45 #define PA_PROP_RESOURCE_PRIORITY      "resource.set.priority"
46 #define PA_PROP_RESOURCE_SET_FLAGS     "resource.set.flags"
47 #define PA_PROP_RESOURCE_AUDIO_FLAGS   "resource.audio.flags"
48
49 #define PA_ZONE_NAME_DEFAULT           "driver"
50
51 #define PA_ROUTING_DEFAULT             "default"
52 #define PA_ROUTING_EXPLICIT            "explicit"
53
54 #define PA_RESOURCE_SET_ID_PID         "pid"
55
56 typedef enum   pa_value_type            pa_value_type;
57 typedef struct pa_value                 pa_value;
58 typedef struct pa_null_sink             pa_null_sink;
59 typedef struct pa_tracker               pa_tracker;
60 typedef struct pa_audiomgr              pa_audiomgr;
61 typedef struct pa_routerif              pa_routerif;
62 typedef struct pa_discover              pa_discover;
63 typedef struct pa_router                pa_router;
64 typedef struct pa_constrain             pa_constrain;
65 typedef struct pa_fader                 pa_fader;
66 typedef struct pa_scripting             pa_scripting;
67 typedef struct pa_mir_volume            pa_mir_volume;
68 typedef struct pa_mir_config            pa_mir_config;
69 typedef struct pa_zoneset               pa_zoneset;
70 typedef struct pa_nodeset               pa_nodeset;
71 typedef struct pa_nodeset_resdef        pa_nodeset_resdef;
72 typedef struct pa_nodeset_map           pa_nodeset_map;
73 typedef struct pa_node_card             pa_node_card;
74 typedef struct pa_card_hooks            pa_card_hooks;
75 typedef struct pa_port_hooks            pa_port_hooks;
76 typedef struct pa_sink_hooks            pa_sink_hooks;
77 typedef struct pa_source_hooks          pa_source_hooks;
78 typedef struct pa_sink_input_hooks      pa_sink_input_hooks;
79 typedef struct pa_source_output_hooks   pa_source_output_hooks;
80 typedef struct pa_extapi                pa_extapi;
81 typedef struct pa_murphyif              pa_murphyif;
82
83 typedef enum   mir_direction            mir_direction;
84 typedef enum   mir_implement            mir_implement;
85 typedef enum   mir_location             mir_location;
86 typedef enum   mir_node_type            mir_node_type;
87 typedef enum   mir_privacy              mir_privacy; 
88 typedef struct mir_node                 mir_node;
89 typedef struct mir_zone                 mir_zone;
90 typedef struct mir_rtgroup              mir_rtgroup;
91 typedef struct mir_rtentry              mir_rtentry;
92 typedef struct mir_connection           mir_connection;
93 typedef struct mir_constr_link          mir_constr_link;
94 typedef struct mir_constr_def           mir_constr_def;
95 typedef struct mir_vlim                 mir_vlim;
96 typedef struct mir_volume_suppress_arg  mir_volume_suppress_arg;
97
98 typedef struct scripting_import         scripting_import;
99 typedef struct scripting_node           scripting_node;
100 typedef struct scripting_zone           scripting_zone;
101 typedef struct scripting_resource       scripting_resource;
102 typedef struct scripting_rtgroup        scripting_rtgroup;
103 typedef struct scripting_apclass        scripting_apclass;
104 typedef struct scripting_vollim         scripting_vollim;
105
106 typedef enum   am_method                am_method;
107 typedef struct am_domainreg_data        am_domainreg_data;
108 typedef struct am_nodereg_data          am_nodereg_data;
109 typedef struct am_nodeunreg_data        am_nodeunreg_data;
110 typedef struct am_ack_data              am_ack_data;
111 typedef struct am_connect_data          am_connect_data;
112
113
114 typedef struct {
115     char *profile;    /**< During profile change it contains the new profile
116                            name. Otherwise it is NULL. When sink tracking
117                            hooks called the card's active_profile still
118                            points to the old profile */
119     uint32_t sink;
120     uint32_t source;
121 } pa_mir_state;
122
123 enum pa_value_type {
124     pa_value_unknown = 0,
125     pa_value_string,
126     pa_value_integer,
127     pa_value_unsignd,
128     pa_value_floating,
129 };
130
131 struct pa_value {
132     /* positive values are enumerations of pa_value_type
133      * negative values represent array dimensions,
134      * eg. -2 menas an array with two element
135      */
136     int             type;
137     union {
138         const char *string;
139         int32_t     integer;
140         uint32_t    unsignd;
141         double      floating;
142         pa_value  **array;
143     };
144 };
145
146
147 struct userdata {
148     pa_core       *core;
149     pa_module     *module;
150     pa_null_sink  *nullsink;
151     pa_zoneset    *zoneset;
152     pa_nodeset    *nodeset;
153     pa_audiomgr   *audiomgr;
154     pa_routerif   *routerif;
155     pa_discover   *discover;
156     pa_tracker    *tracker;
157     pa_router     *router;
158     pa_constrain  *constrain;
159     pa_multiplex  *multiplex;
160     pa_loopback   *loopback;
161     pa_fader      *fader;
162     pa_scripting  *scripting;
163     pa_mir_volume *volume;
164     pa_mir_config *config;
165     pa_mir_state   state;
166     pa_extapi     *extapi;
167     pa_native_protocol *protocol;
168     pa_murphyif   *murphyif;
169 };
170
171 #endif
172
173 /*
174  * Local Variables:
175  * c-basic-offset: 4
176  * indent-tabs-mode: nil
177  * End:
178  *
179  */