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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
|
/*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
#ifndef USBG_FUNCTION_HID__
#define USBG_FUNCTION_HID__
#include <usbg/usbg.h>
#include <malloc.h>
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
struct usbg_f_hid;
typedef struct usbg_f_hid usbg_f_hid;
struct usbg_f_hid_report_desc {
char *desc;
unsigned int len;
};
struct usbg_f_hid_attrs {
dev_t dev;
unsigned int protocol;
struct usbg_f_hid_report_desc report_desc;
unsigned int report_length;
unsigned int subclass;
};
enum usbg_f_hid_attr {
USBG_F_HID_ATTR_MIN = 0,
USBG_F_HID_DEV = USBG_F_HID_ATTR_MIN,
USBG_F_HID_PROTOCOL,
USBG_F_HID_REPORT_DESC,
USBG_F_HID_REPORT_LENGTH,
USBG_F_HID_SUBCLASS,
USBG_F_HID_ATTR_MAX
};
union usbg_f_hid_attr_val {
dev_t dev;
unsigned int protocol;
struct usbg_f_hid_report_desc report_desc;
unsigned int report_length;
unsigned int subclass;
};
#define USBG_F_HID_UINT_TO_ATTR_VAL(WHAT) \
USBG_TO_UNION(usbg_f_hid_attr_val, protocol, WHAT)
#define USBG_F_HID_RDESC_TO_ATTR_VAL(WHAT) \
USBG_TO_UNION(usbg_f_hid_attr_val, report_desc, WHAT)
/**
* @brief Cast from generic function to hid function
* @param[in] f function to be converted to hid funciton.
* Function should be one of type hid.
* @return Converted hid function or NULL if function hasn't suitable type
*/
usbg_f_hid *usbg_to_hid_function(usbg_function *f);
/**
* @brief Cast form hid function to generic one
* @param[in] hf function to be converted to generic one
* @return Generic usbg function
*/
usbg_function *usbg_from_hid_function(usbg_f_hid *hf);
/**
* @brief Get attributes of given hid function
* @param[in] hf Pointer to hid function
* @param[out] attrs Structure to be filled with data
* @return 0 on success usbg_error if error occurred.
*/
int usbg_f_hid_get_attrs(usbg_f_hid *hf,
struct usbg_f_hid_attrs *attrs);
/**
* @brief Set attributes of given hid function
* @param[in] hf Pointer to hid function
* @param[in] attrs to be set
* @return 0 on success usbg_error if error occurred.
*/
int usbg_f_hid_set_attrs(usbg_f_hid *hf,
const struct usbg_f_hid_attrs *attrs);
/**
* @brief Cleanup HID report descriptor structure after usage
* @param[in] report_desc to be cleaned up
*/
static inline void usbg_f_hid_cleanup_report_desc(
struct usbg_f_hid_report_desc *report_desc)
{
if (report_desc->desc) {
free(report_desc->desc);
/* Just for safety */
report_desc->desc = NULL;
}
}
/**
* @brief Cleanup attributes structure after usage
* @param[in] attrs to be cleaned up
*/
static inline void usbg_f_hid_cleanup_attrs(struct usbg_f_hid_attrs *attrs)
{
if (attrs)
usbg_f_hid_cleanup_report_desc(&attrs->report_desc);
}
/**
* @brief Get the value of single attribute
* @param[in] hf Pointer to hid function
* @param[in] attr Code of attribute which value should be taken
* @param[out] val Current value of this attribute
* @return 0 on success usbg_error if error occurred.
*/
int usbg_f_hid_get_attr_val(usbg_f_hid *hf, enum usbg_f_hid_attr attr,
union usbg_f_hid_attr_val *val);
/**
* @brief Set the value of single attribute
* @param[in] hf Pointer to hid function
* @param[in] attr Code of attribute which value should be set
* @param[in] val Value of attribute which should be set
* @return 0 on success usbg_error if error occurred.
*/
int usbg_f_hid_set_attr_val(usbg_f_hid *hf, enum usbg_f_hid_attr attr,
union usbg_f_hid_attr_val val);
/**
* @brief Get the minor and major of corresponding character device
* @param[in] hf Pointer to hid function
* @param[out] dev Minor and major of corresponding
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_get_dev(usbg_f_hid *hf, dev_t *dev)
{
return usbg_f_hid_get_attr_val(hf, USBG_F_HID_DEV,
(union usbg_f_hid_attr_val *)dev);
}
/**
* @brief Get HID protocol code
* @param[in] hf Pointer to hid function
* @param[out] protocol code
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_get_protocol(usbg_f_hid *hf,
unsigned int *protocol)
{
return usbg_f_hid_get_attr_val(hf, USBG_F_HID_PROTOCOL,
(union usbg_f_hid_attr_val *)protocol);
}
/**
* @brief Set HID protocol code
* @param[in] hf Pointer to hid function
* @param[out] protocol code
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_set_protocol(usbg_f_hid *hf,
unsigned int protocol)
{
return usbg_f_hid_set_attr_val(hf, USBG_F_HID_PROTOCOL,
USBG_F_HID_UINT_TO_ATTR_VAL(protocol));
}
/**
* @brief Get HID report descriptor
* @param[in] hf Pointer to hid function
* @param[out] report_desc Report descriptor
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_get_report_desc(usbg_f_hid *hf,
struct usbg_f_hid_report_desc *report_desc)
{
return usbg_f_hid_get_attr_val(hf, USBG_F_HID_REPORT_DESC,
(union usbg_f_hid_attr_val *)report_desc);
}
/**
* @brief Set HID report descriptor
* @param[in] hf Pointer to hid function
* @param[out] report_desc Report descriptor
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_set_report_desc(usbg_f_hid *hf,
struct usbg_f_hid_report_desc report_desc)
{
return usbg_f_hid_set_attr_val(hf, USBG_F_HID_REPORT_DESC,
USBG_F_HID_RDESC_TO_ATTR_VAL(report_desc));
}
/**
* @brief Get HID report descriptor
* @param[in] hf Pointer to hid function
* @param[out] report_desc Report descriptor
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_get_report_desc_raw(usbg_f_hid *hf,
char **desc,
unsigned int *len)
{
struct usbg_f_hid_report_desc report_desc;
int ret;
ret = usbg_f_hid_get_attr_val(hf, USBG_F_HID_REPORT_DESC,
(union usbg_f_hid_attr_val *)&report_desc);
if (ret != USBG_SUCCESS)
return ret;
*desc = report_desc.desc;
*len = report_desc.len;
return USBG_SUCCESS;
}
/**
* @brief Set HID report descriptor
* @param[in] hf Pointer to hid function
* @param[out] report_desc Report descriptor
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_set_report_desc_raw(usbg_f_hid *hf,
char *desc,
unsigned int len)
{
struct usbg_f_hid_report_desc report_desc = {
.desc = desc,
.len = len,
};
return usbg_f_hid_set_attr_val(hf, USBG_F_HID_REPORT_DESC,
USBG_F_HID_RDESC_TO_ATTR_VAL(report_desc));
}
/**
* @brief Get HID report length
* @param[in] hf Pointer to hid function
* @param[out] report_length Length of HID report
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_get_report_length(usbg_f_hid *hf,
unsigned int *report_length)
{
return usbg_f_hid_get_attr_val(hf, USBG_F_HID_REPORT_LENGTH,
(union usbg_f_hid_attr_val *)report_length);
}
/**
* @brief Set HID report length
* @param[in] hf Pointer to hid function
* @param[out] report_length Length of HID report
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_set_report_length(usbg_f_hid *hf,
unsigned int report_length)
{
return usbg_f_hid_set_attr_val(hf, USBG_F_HID_REPORT_LENGTH,
USBG_F_HID_UINT_TO_ATTR_VAL(report_length));
}
/**
* @brief Get HID subclass code
* @param[in] hf Pointer to hid function
* @param[out] subclass code
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_get_subclass(usbg_f_hid *hf,
unsigned int *subclass)
{
return usbg_f_hid_get_attr_val(hf, USBG_F_HID_SUBCLASS,
(union usbg_f_hid_attr_val *)subclass);
}
/**
* @brief Set HID subclass code
* @param[in] hf Pointer to hid function
* @param[out] subclass code
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_hid_set_subclass(usbg_f_hid *hf,
unsigned int subclass)
{
return usbg_f_hid_set_attr_val(hf, USBG_F_HID_SUBCLASS,
USBG_F_HID_UINT_TO_ATTR_VAL(subclass));
}
#ifdef __cplusplus
}
#endif
#endif /* USBG_FUNCTION_MIDI__ */
|