source: mainline/uspace/lib/usbhid/src/hidpath.c@ ae3a941

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ae3a941 was ae3a941, checked in by Ondřej Hlavatý <aearsis@…>, 8 years ago

usb: cstyle

  • Property mode set to 100644
File size: 10.5 KB
RevLine 
[9d05599]1/*
2 * Copyright (c) 2011 Matej Klonfar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[160b75e]29/** @addtogroup libusbhid
[9d05599]30 * @{
31 */
32/** @file
33 * HID report descriptor and report data parser implementation.
34 */
[faa44e58]35#include <usb/hid/hidparser.h>
[9d05599]36#include <errno.h>
37#include <stdio.h>
38#include <mem.h>
[38d150e]39#include <stdlib.h>
[9d05599]40#include <usb/debug.h>
41#include <assert.h>
42
[a76b01b4]43
[5499a8b]44/**
45 * Compares two usages if they are same or not or one of the usages is not
46 * set.
47 *
48 * @param usage1
49 * @param usage2
50 * @return boolean
51 */
52#define USB_HID_SAME_USAGE(usage1, usage2) \
53 ((usage1 == usage2) || (usage1 == 0) || (usage2 == 0))
[9d05599]54
[5499a8b]55/**
56 * Compares two usage pages if they are same or not or one of them is not set.
57 *
58 * @param page1
59 * @param page2
60 * @return boolean
61 */
62#define USB_HID_SAME_USAGE_PAGE(page1, page2) \
63 ((page1 == page2) || (page1 == 0) || (page2 == 0))
[3a6e423]64
[a76b01b4]65
[9d05599]66/**
67 * Appends one item (couple of usage_path and usage) into the usage path
68 * structure
69 *
70 * @param usage_path Usage path structure
71 * @param usage_page Usage page constant
72 * @param usage Usage constant
73 * @return Error code
74 */
[ae3a941]75errno_t usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path,
76 int32_t usage_page, int32_t usage)
77{
78 usb_hid_report_usage_path_t *item =
79 malloc(sizeof(usb_hid_report_usage_path_t));
[9d05599]80
[4bb7ffe]81 if (item == NULL) {
[9d05599]82 return ENOMEM;
83 }
[b72efe8]84 link_initialize(&item->rpath_items_link);
[9d05599]85
86 item->usage = usage;
87 item->usage_page = usage_page;
88 item->flags = 0;
[ae3a941]89
[b72efe8]90 list_append (&item->rpath_items_link, &usage_path->items);
[9d05599]91 usage_path->depth++;
92 return EOK;
93}
94
[a76b01b4]95
[9d05599]96/**
97 * Removes last item from the usage path structure
[ae3a941]98 * @param usage_path
[9d05599]99 * @return void
100 */
101void usb_hid_report_remove_last_item(usb_hid_report_path_t *usage_path)
102{
[b72efe8]103 link_t *item_link;
[9d05599]104 usb_hid_report_usage_path_t *item;
[ae3a941]105
106 if (!list_empty(&usage_path->items)) {
[b72efe8]107 item_link = list_last(&usage_path->items);
108 item = list_get_instance(item_link,
109 usb_hid_report_usage_path_t, rpath_items_link);
110 list_remove(item_link);
[9d05599]111 usage_path->depth--;
112 free(item);
113 }
114}
115
[a76b01b4]116
[9d05599]117/**
118 * Nulls last item of the usage path structure.
119 *
120 * @param usage_path
121 * @return void
122 */
123void usb_hid_report_null_last_item(usb_hid_report_path_t *usage_path)
124{
125 usb_hid_report_usage_path_t *item;
[ae3a941]126
127 if (!list_empty(&usage_path->items)) {
[b72efe8]128 item = list_get_instance(list_last(&usage_path->items),
[ae3a941]129 usb_hid_report_usage_path_t, rpath_items_link);
[5499a8b]130
[9d05599]131 memset(item, 0, sizeof(usb_hid_report_usage_path_t));
132 }
133}
134
[a76b01b4]135
[9d05599]136/**
137 * Modifies last item of usage path structure by given usage page or usage
138 *
139 * @param usage_path Opaque usage path structure
140 * @param tag Class of currently processed tag (Usage page tag falls into Global
141 * class but Usage tag into the Local)
142 * @param data Value of the processed tag
143 * @return void
144 */
[ae3a941]145void usb_hid_report_set_last_item(usb_hid_report_path_t *usage_path,
146 int32_t tag, int32_t data)
[9d05599]147{
148 usb_hid_report_usage_path_t *item;
[ae3a941]149
150 if (!list_empty(&usage_path->items)) {
[b72efe8]151 item = list_get_instance(list_last(&usage_path->items),
152 usb_hid_report_usage_path_t, rpath_items_link);
[9d05599]153
[ae3a941]154 switch (tag) {
155 case USB_HID_TAG_CLASS_GLOBAL:
156 item->usage_page = data;
157 break;
158 case USB_HID_TAG_CLASS_LOCAL:
159 item->usage = data;
160 break;
[9d05599]161 }
162 }
163}
164
165void usb_hid_print_usage_path(usb_hid_report_path_t *path)
166{
[a1732929]167 usb_log_debug("USAGE_PATH FOR RId(%d):", path->report_id);
168 usb_log_debug("\tLENGTH: %d", path->depth);
[9d05599]169
[feeac0d]170 list_foreach(path->items, rpath_items_link,
171 usb_hid_report_usage_path_t, path_item) {
[5499a8b]172
[a1732929]173 usb_log_debug("\tUSAGE_PAGE: %X", path_item->usage_page);
174 usb_log_debug("\tUSAGE: %X", path_item->usage);
175 usb_log_debug("\tFLAGS: %d", path_item->flags);
[9d05599]176 }
177}
178
[e141281]179/** Compare two usage paths structures
[9d05599]180 *
[e141281]181 * @param report_path Usage path structure to compare with @path
182 * @param path Usage patrh structure to compare
183 * @param flags Flags determining the mode of comparison
[9d05599]184 *
[3ca4ae9]185 * @return 0 if both paths are identical, non zero number otherwise
[e141281]186 *
[9d05599]187 */
[e141281]188int usb_hid_report_compare_usage_path(usb_hid_report_path_t *report_path,
189 usb_hid_report_path_t *path, int flags)
[9d05599]190{
191 usb_hid_report_usage_path_t *report_item;
192 usb_hid_report_usage_path_t *path_item;
[ae3a941]193
[9d05599]194 link_t *report_link;
195 link_t *path_link;
[ae3a941]196
[9d05599]197 int only_page;
[ae3a941]198
[e141281]199 if (report_path->report_id != path->report_id) {
200 if (path->report_id != 0) {
[dcb7d7cd]201 return 1;
202 }
[9d05599]203 }
[ae3a941]204
[5f7b75a]205 // Empty path match all others
[e141281]206 if (path->depth == 0) {
[3ca4ae9]207 return 0;
[9d05599]208 }
[ae3a941]209
[e141281]210 if ((only_page = flags & USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY) != 0) {
[9d05599]211 flags -= USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY;
212 }
[ae3a941]213
[e141281]214 switch (flags) {
215 /* Path is somewhere in report_path */
[f3b39b4]216 case USB_HID_PATH_COMPARE_ANYWHERE:
[e141281]217 if (path->depth != 1) {
[f3b39b4]218 return 1;
219 }
[ae3a941]220
[b72efe8]221 path_link = list_first(&path->items);
222 path_item = list_get_instance(path_link,
[e141281]223 usb_hid_report_usage_path_t, rpath_items_link);
[ae3a941]224
[feeac0d]225 list_foreach(report_path->items, rpath_items_link,
226 usb_hid_report_usage_path_t, report_item) {
[07525cd]227 if (USB_HID_SAME_USAGE_PAGE(report_item->usage_page,
[e141281]228 path_item->usage_page)) {
[ae3a941]229
[07525cd]230 if (only_page == 0) {
231 if (USB_HID_SAME_USAGE(report_item->usage,
232 path_item->usage))
[3ca4ae9]233 return 0;
[e141281]234 } else {
[3ca4ae9]235 return 0;
[f3b39b4]236 }
[5f7b75a]237 }
[f3b39b4]238 }
[ae3a941]239
[f3b39b4]240 return 1;
241 break;
[ae3a941]242
[e141281]243 /* The paths must be identical */
[f3b39b4]244 case USB_HID_PATH_COMPARE_STRICT:
[e141281]245 if (report_path->depth != path->depth) {
[5f7b75a]246 return 1;
[f3b39b4]247 }
[dc12262]248 /* Fallthrough */
[ae3a941]249
[e141281]250 /* Path is prefix of the report_path */
[f3b39b4]251 case USB_HID_PATH_COMPARE_BEGIN:
[b72efe8]252 report_link = report_path->items.head.next;
253 path_link = path->items.head.next;
[ae3a941]254
[07525cd]255 while ((report_link != &report_path->items.head) &&
256 (path_link != &path->items.head)) {
[ae3a941]257
[e141281]258 report_item = list_get_instance(report_link,
[07525cd]259 usb_hid_report_usage_path_t, rpath_items_link);
[ae3a941]260
[f3b39b4]261 path_item = list_get_instance(path_link,
[e141281]262 usb_hid_report_usage_path_t, rpath_items_link);
[ae3a941]263
[e141281]264 if (!USB_HID_SAME_USAGE_PAGE(report_item->usage_page,
265 path_item->usage_page) || ((only_page == 0) &&
266 !USB_HID_SAME_USAGE(report_item->usage,
[07525cd]267 path_item->usage))) {
[f3b39b4]268 return 1;
[feeac0d]269 } else {
[f3b39b4]270 report_link = report_link->next;
[feeac0d]271 path_link = path_link->next;
[f3b39b4]272 }
[b72efe8]273 }
[ae3a941]274
[e141281]275 if ((((flags & USB_HID_PATH_COMPARE_BEGIN) != 0) &&
276 (path_link == &path->items.head)) ||
277 ((report_link == &report_path->items.head) &&
[07525cd]278 (path_link == &path->items.head))) {
[3ca4ae9]279 return 0;
[07525cd]280 } else {
[f3b39b4]281 return 1;
[07525cd]282 }
[f3b39b4]283 break;
[ae3a941]284
[e141281]285 /* Path is suffix of report_path */
[f3b39b4]286 case USB_HID_PATH_COMPARE_END:
[b72efe8]287 report_link = report_path->items.head.prev;
288 path_link = path->items.head.prev;
[ae3a941]289
[e141281]290 if (list_empty(&path->items)) {
[3ca4ae9]291 return 0;
[f3b39b4]292 }
[ae3a941]293
[e141281]294 while ((report_link != &report_path->items.head) &&
[b72efe8]295 (path_link != &path->items.head)) {
296 report_item = list_get_instance(report_link,
[e141281]297 usb_hid_report_usage_path_t, rpath_items_link);
[ae3a941]298
[e141281]299 path_item = list_get_instance(path_link,
300 usb_hid_report_usage_path_t, rpath_items_link);
[ae3a941]301
[e141281]302 if (!USB_HID_SAME_USAGE_PAGE(report_item->usage_page,
303 path_item->usage_page) || ((only_page == 0) &&
304 !USB_HID_SAME_USAGE(report_item->usage,
305 path_item->usage))) {
306 return 1;
[f3b39b4]307 } else {
308 report_link = report_link->prev;
[e141281]309 path_link = path_link->prev;
[f3b39b4]310 }
311 }
[ae3a941]312
[e141281]313 if (path_link == &path->items.head) {
[3ca4ae9]314 return 0;
[e141281]315 } else {
[f3b39b4]316 return 1;
[e141281]317 }
[f3b39b4]318 break;
[ae3a941]319
[f3b39b4]320 default:
[3ca4ae9]321 return -1;
[9d05599]322 }
323}
324
325/**
326 * Allocates and initializes new usage path structure.
327 *
328 * @return Initialized usage path structure
329 */
330usb_hid_report_path_t *usb_hid_report_path(void)
331{
332 usb_hid_report_path_t *path;
333 path = malloc(sizeof(usb_hid_report_path_t));
[ae3a941]334 if (path == NULL) {
[9d05599]335 return NULL;
336 }
337 else {
338 path->depth = 0;
339 path->report_id = 0;
[b72efe8]340 link_initialize(&path->cpath_link);
341 list_initialize(&path->items);
[9d05599]342 return path;
343 }
344}
345
[a76b01b4]346
[9d05599]347/**
348 * Releases given usage path structure.
349 *
350 * @param path usage path structure to release
351 * @return void
352 */
353void usb_hid_report_path_free(usb_hid_report_path_t *path)
354{
[0cda600]355 if (path == NULL)
356 return;
[ae3a941]357 while (!list_empty(&path->items)) {
[9d05599]358 usb_hid_report_remove_last_item(path);
359 }
360
[b72efe8]361 assert_link_not_used(&path->cpath_link);
[9d05599]362 free(path);
363}
364
[a76b01b4]365
[9d05599]366/**
367 * Clone content of given usage path to the new one
368 *
369 * @param usage_path Usage path structure to clone
370 * @return New copy of given usage path structure
371 */
[5499a8b]372usb_hid_report_path_t *usb_hid_report_path_clone(
[ae3a941]373 usb_hid_report_path_t *usage_path)
[9d05599]374{
375 usb_hid_report_usage_path_t *new_path_item;
376 usb_hid_report_path_t *new_usage_path = usb_hid_report_path ();
377
[ae3a941]378 if (new_usage_path == NULL) {
[9d05599]379 return NULL;
380 }
381
382 new_usage_path->report_id = usage_path->report_id;
[ae3a941]383
384 if (list_empty(&usage_path->items)) {
[9d05599]385 return new_usage_path;
386 }
387
[feeac0d]388 list_foreach(usage_path->items, rpath_items_link,
389 usb_hid_report_usage_path_t, path_item) {
[f3b39b4]390
[9d05599]391 new_path_item = malloc(sizeof(usb_hid_report_usage_path_t));
[ae3a941]392 if (new_path_item == NULL) {
[9d05599]393 return NULL;
394 }
[ae3a941]395
[b72efe8]396 link_initialize(&new_path_item->rpath_items_link);
[9d05599]397 new_path_item->usage_page = path_item->usage_page;
[ae3a941]398 new_path_item->usage = path_item->usage;
399 new_path_item->flags = path_item->flags;
400
[b72efe8]401 list_append(&new_path_item->rpath_items_link,
402 &new_usage_path->items);
[9d05599]403 new_usage_path->depth++;
404 }
405
406 return new_usage_path;
407}
408
[a76b01b4]409
[9d05599]410/**
411 * Sets report id in usage path structure
412 *
413 * @param path Usage path structure
414 * @param report_id Report id to set
415 * @return Error code
416 */
[ae3a941]417errno_t usb_hid_report_path_set_report_id(usb_hid_report_path_t *path,
418 uint8_t report_id)
[9d05599]419{
[ae3a941]420 if (path == NULL) {
[9d05599]421 return EINVAL;
422 }
423
424 path->report_id = report_id;
425 return EOK;
426}
427
428/**
429 * @}
430 */
Note: See TracBrowser for help on using the repository browser.