2 Copyright (C) 2003 Bob Ham <rah@bash.sh>
3 Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #ifndef __jack_driver_interface_h__
22 #define __jack_driver_interface_h__
32 #include "JackCompilerDeps.h"
33 #include "JackSystemDeps.h"
35 #define JACK_DRIVER_NAME_MAX 15
36 #define JACK_DRIVER_PARAM_NAME_MAX 15
37 #define JACK_DRIVER_PARAM_STRING_MAX 127
38 #define JACK_DRIVER_PARAM_DESC 255
39 #define JACK_PATH_MAX 511
41 #define JACK_CONSTRAINT_FLAG_RANGE ((uint32_t)1) /**< if set, constraint is a range (min-max) */
42 #define JACK_CONSTRAINT_FLAG_STRICT ((uint32_t)2) /**< if set, constraint is strict, i.e. supplying non-matching value will not work */
43 #define JACK_CONSTRAINT_FLAG_FAKE_VALUE ((uint32_t)4) /**< if set, values have no user meaningful meaning */
45 /** Driver parameter types */
48 JackDriverParamInt
= 1,
51 JackDriverParamString
,
53 } jack_driver_param_type_t
;
63 /** Driver parameter value */
69 char str
[JACK_DRIVER_PARAM_STRING_MAX
+ 1];
70 } jack_driver_param_value_t
;
73 jack_driver_param_value_t value
;
74 char short_desc
[64]; /**< A short (~30 chars) description for the user */
75 } jack_driver_param_value_enum_t
;
77 struct jack_constraint_enum_uint32_descriptor
{
79 const char * short_desc
;
82 struct jack_constraint_enum_sint32_descriptor
{
84 const char * short_desc
;
87 struct jack_constraint_enum_char_descriptor
{
89 const char * short_desc
;
92 struct jack_constraint_enum_str_descriptor
{
94 const char * short_desc
;
98 uint32_t flags
; /**< JACK_CONSTRAINT_FLAG_XXX */
101 jack_driver_param_value_t min
;
102 jack_driver_param_value_t max
;
103 } range
; /**< valid when JACK_CONSTRAINT_FLAG_RANGE flag is set */
107 jack_driver_param_value_enum_t
* possible_values_array
;
108 } enumeration
; /**< valid when JACK_CONSTRAINT_FLAG_RANGE flag is not set */
110 } jack_driver_param_constraint_desc_t
;
112 /** A driver parameter descriptor */
114 char name
[JACK_DRIVER_NAME_MAX
+ 1]; /**< The parameter's name */
115 char character
; /**< The parameter's character (for getopt, etc) */
116 jack_driver_param_type_t type
; /**< The parameter's type */
117 jack_driver_param_value_t value
; /**< The parameter's (default) value */
118 jack_driver_param_constraint_desc_t
* constraint
; /**< Pointer to parameter constraint descriptor. NULL if there is no constraint */
119 char short_desc
[64]; /**< A short (~30 chars) description for the user */
120 char long_desc
[1024]; /**< A longer description for the user */
122 jack_driver_param_desc_t
;
124 /** A driver parameter */
127 jack_driver_param_value_t value
;
131 /** A struct for describing a jack driver */
133 char name
[JACK_DRIVER_NAME_MAX
+ 1]; /**< The driver's canonical name */
134 jack_driver_type_t type
; /**< The driver's type */
135 char desc
[JACK_DRIVER_PARAM_DESC
+ 1]; /**< The driver's extended description */
136 char file
[JACK_PATH_MAX
+ 1]; /**< The filename of the driver's shared object file */
137 uint32_t nparams
; /**< The number of parameters the driver has */
138 jack_driver_param_desc_t
* params
; /**< An array of parameter descriptors */
143 uint32_t size
; /* size of the param array, in elements */
145 jack_driver_desc_filler_t
;
147 int jack_parse_driver_params(jack_driver_desc_t
* desc
, int argc
, char* argv
[], JSList
** param_ptr
);
149 // To be used by drivers
151 SERVER_EXPORT jack_driver_desc_t
* /* Newly allocated driver descriptor, NULL on failure */
152 jack_driver_descriptor_construct(
153 const char * name
, /* Driver name */
154 jack_driver_type_t type
, /* Driver type */
155 const char * description
, /* Driver description */
156 jack_driver_desc_filler_t
* filler
); /* Pointer to stack var to be supplied to jack_driver_descriptor_add_parameter() as well.
157 Can be NULL for drivers that have no parameters. */
159 SERVER_EXPORT
int /* 0 on failure */
160 jack_driver_descriptor_add_parameter(
161 jack_driver_desc_t
* driver_descr
, /* Pointer to driver descriptor as returned by jack_driver_descriptor_construct() */
162 jack_driver_desc_filler_t
* filler
, /* Pointer to the stack var that was supplied to jack_driver_descriptor_add_parameter(). */
163 const char * name
, /* Parameter's name */
164 char character
, /* Parameter's character (for getopt, etc) */
165 jack_driver_param_type_t type
, /* The parameter's type */
166 const jack_driver_param_value_t
* value_ptr
, /* Pointer to parameter's (default) value */
167 jack_driver_param_constraint_desc_t
* constraint
, /* Pointer to parameter constraint descriptor. NULL if there is no constraint */
168 const char * short_desc
, /* A short (~30 chars) description for the user */
169 const char * long_desc
); /* A longer description for the user, if NULL short_desc will be used */
172 int jack_constraint_add_enum(
173 jack_driver_param_constraint_desc_t
** constraint_ptr_ptr
,
174 uint32_t * array_size_ptr
,
175 jack_driver_param_value_t
* value_ptr
,
176 const char * short_desc
);
179 void jack_constraint_free(jack_driver_param_constraint_desc_t
* constraint_ptr
);
181 #define JACK_CONSTRAINT_COMPOSE_ENUM(type) \
183 jack_driver_param_constraint_desc_t * \
184 jack_constraint_compose_enum_ ## type( \
186 struct jack_constraint_enum_ ## type ## _descriptor * descr_array_ptr)
188 JACK_CONSTRAINT_COMPOSE_ENUM(uint32
);
189 JACK_CONSTRAINT_COMPOSE_ENUM(sint32
);
190 JACK_CONSTRAINT_COMPOSE_ENUM(char);
191 JACK_CONSTRAINT_COMPOSE_ENUM(str
);
193 typedef jack_driver_desc_t
* (*JackDriverDescFunction
) ();
199 #endif /* __jack_driver_interface_h__ */