HomePort
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
discovery.c
Go to the documentation of this file.
1 /*
2  * Copyright 2011 Aalborg University. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without modification, are
5  * permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this list of
8  * conditions and the following disclaimer.
9  *
10  * 2. Redistributions in binary form must reproduce the above copyright notice, this list
11  * of conditions and the following disclaimer in the documentation and/or other materials
12  * provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY Aalborg University ''AS IS'' AND ANY EXPRESS OR IMPLIED
15  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
16  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Aalborg University OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
21  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
22  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  *
24  * The views and conclusions contained in the software and documentation are those of the
25  * authors and should not be interpreted as representing official policies, either expressed
26  */
27 
28 #include "event.h"
29 #include "model.h"
30 #include "discovery.h"
31 #include "daemon.h"
32 #include "log.h"
33 
35 {
36  hpd_error_t rc;
37 
38  HPD_CALLOC((*adapter), 1, hpd_adapter_t);
39  HPD_CALLOC((*adapter)->devices, 1, hpd_devices_t);
40  TAILQ_INIT((*adapter)->devices);
41  if ((rc = hpd_map_alloc(&(*adapter)->attributes))) {
42  discovery_free_adapter(*adapter);
43  (*adapter) = NULL;
44  return rc;
45  }
46  HPD_STR_CPY((*adapter)->id, id);
47  return HPD_E_SUCCESS;
48 
49  alloc_error:
50  if (*adapter) discovery_free_adapter(*adapter);
51  (*adapter) = NULL;
53 }
54 
56 {
57  hpd_error_t rc;
58 
59  HPD_CALLOC((*device), 1, hpd_device_t);
60  HPD_CALLOC((*device)->services, 1, hpd_services_t);
61  TAILQ_INIT((*device)->services);
62  if ((rc = hpd_map_alloc(&(*device)->attributes))) {
63  discovery_free_device(*device);
64  (*device) = NULL;
65  return rc;
66  }
67  HPD_STR_CPY((*device)->id, id);
68  return HPD_E_SUCCESS;
69 
70  alloc_error:
71  if (*device) discovery_free_device(*device);
72  (*device) = NULL;
74 }
75 
77 {
78  hpd_error_t rc;
79 
80  HPD_CALLOC((*service), 1, hpd_service_t);
81  HPD_CALLOC((*service)->parameters, 1, hpd_parameters_t);
82  TAILQ_INIT((*service)->parameters);
83  if ((rc = hpd_map_alloc(&(*service)->attributes))) {
84  discovery_free_service(*service);
85  (*service) = NULL;
86  return rc;
87  }
88  HPD_STR_CPY((*service)->id, id);
89  for (hpd_method_t method = HPD_M_NONE+1; method < HPD_M_COUNT; method++) {
90  (*service)->actions[method].method = method;
91  (*service)->actions[method].service = (*service);
92  }
93  return HPD_E_SUCCESS;
94 
95  alloc_error:
96  if (*service) discovery_free_service(*service);
97  (*service) = NULL;
99 }
100 
102 {
103  hpd_error_t rc;
104 
105  HPD_CALLOC((*parameter), 1, hpd_parameter_t);
106  if ((rc = hpd_map_alloc(&(*parameter)->attributes))) {
107  discovery_free_parameter(*parameter);
108  (*parameter) = NULL;
109  return rc;
110  }
111  HPD_STR_CPY((*parameter)->id, id);
112  return HPD_E_SUCCESS;
113 
114  alloc_error:
115  if (*parameter) discovery_free_parameter(*parameter);
116  (*parameter) = NULL;
118 }
119 
121 {
122  hpd_error_t rc;
123  if (adapter->on_free) adapter->on_free(adapter->data);
124  if (adapter->devices) {
126  free(adapter->devices);
127  }
128  rc = hpd_map_free(adapter->attributes);
129  free(adapter->id);
130  free(adapter);
131  return rc;
132 
133  map_error:
134  LOG_RETURN(rc, "Free function returned an error [code: %i]", rc);
135 }
136 
138 {
139  hpd_error_t rc;
140  if (device->on_free) device->on_free(device->data);
141  if (device->services) {
143  free(device->services);
144  }
145  rc = hpd_map_free(device->attributes);
146  free(device->id);
147  free(device);
148  return rc;
149 
150  map_error:
151  LOG_RETURN(rc, "Free function returned an error [code: %i]", rc);
152 }
153 
155 {
156  hpd_error_t rc;
157  if (service->on_free) service->on_free(service->data);
158  if (service->parameters) {
160  free(service->parameters);
161  }
162  rc = hpd_map_free(service->attributes);
163  free(service->id);
164  free(service);
165  return rc;
166 
167  map_error:
168  LOG_RETURN(rc, "Free function returned an error [code: %i]", rc);
169 }
170 
171 
173 {
174  hpd_error_t rc;
175  rc = hpd_map_free(parameter->attributes);
176  free(parameter->id);
177  free(parameter);
178  return rc;
179 }
180 
182 {
183  hpd_error_t rc;
184  hpd_adapter_t *copy;
185  HPD_CPY_ALLOC(copy, adapter, hpd_adapter_t);
186 
187  TAILQ_INSERT_TAIL(&hpd->configuration->adapters, copy, HPD_TAILQ_FIELD);
188  copy->configuration = hpd->configuration;
189 
190  if ((rc = event_inform_adapter_attached(copy))) {
191  TAILQ_REMOVE(&hpd->configuration->adapters, copy, HPD_TAILQ_FIELD);
192  free(copy);
193  return rc;
194  }
195 
196  hpd_device_t *device;
197  TAILQ_FOREACH(device, adapter->devices, HPD_TAILQ_FIELD) {
198  device->adapter = copy;
199  }
200 
201  free(adapter);
202  return HPD_E_SUCCESS;
203 
204  alloc_error:
206 }
207 
209 {
210  hpd_error_t rc;
211  hpd_device_t *copy;
212  HPD_CPY_ALLOC(copy, device, hpd_device_t);
213 
214  TAILQ_INSERT_TAIL(adapter->devices, copy, HPD_TAILQ_FIELD);
215  copy->adapter = adapter;
216 
217  if ((rc = event_inform_device_attached(copy))) {
218  TAILQ_REMOVE(adapter->devices, copy, HPD_TAILQ_FIELD);
219  free(copy);
220  return rc;
221  }
222 
223  hpd_service_t *service;
224  TAILQ_FOREACH(service, device->services, HPD_TAILQ_FIELD) {
225  service->device = copy;
226  }
227 
228  free(device);
229  return HPD_E_SUCCESS;
230 
231  alloc_error:
233 }
234 
236 {
237  hpd_service_t *copy;
238  HPD_CPY_ALLOC(copy, service, hpd_service_t);
239 
240  TAILQ_INSERT_TAIL(device->services, copy, HPD_TAILQ_FIELD);
241  copy->device = device;
242 
243  hpd_parameter_t *parameter;
244  TAILQ_FOREACH(parameter, service->parameters, HPD_TAILQ_FIELD) {
245  parameter->service = copy;
246  }
247 
248  for (hpd_method_t method = HPD_M_NONE+1; method < HPD_M_COUNT; method++) {
249  copy->actions[method].service = copy;
250  }
251 
252  free(service);
253  return HPD_E_SUCCESS;
254 
255  alloc_error:
257 }
258 
260 {
261  hpd_parameter_t *copy;
262  HPD_CPY_ALLOC(copy, parameter, hpd_parameter_t);
263 
264  TAILQ_INSERT_TAIL(service->parameters, copy, HPD_TAILQ_FIELD);
265  copy->service = service;
266 
267  free(parameter);
268  return HPD_E_SUCCESS;
269 
270  alloc_error:
272 }
273 
275 {
276  hpd_error_t rc;
277 
278  // Inform event listeners
279  if ((rc = event_inform_adapter_detached(adapter))) return rc;
280 
281  // Detach it
282  TAILQ_REMOVE(&adapter->configuration->adapters, adapter, HPD_TAILQ_FIELD);
283  adapter->configuration = NULL;
284 
285  return HPD_E_SUCCESS;
286 }
287 
289 {
290  hpd_error_t rc;
291 
292  // Inform event listeners
293  if ((rc = event_inform_device_detached(device))) return rc;
294 
295  // Detach it
296  TAILQ_REMOVE(device->adapter->devices, device, HPD_TAILQ_FIELD);
297  device->adapter = NULL;
298 
299  return HPD_E_SUCCESS;
300 }
301 
303 {
304  TAILQ_REMOVE(service->device->services, service, HPD_TAILQ_FIELD);
305  service->device = NULL;
306 
307  return HPD_E_SUCCESS;
308 }
309 
311 {
312  TAILQ_REMOVE(parameter->service->parameters, parameter, HPD_TAILQ_FIELD);
313  parameter->service = NULL;
314 
315  return HPD_E_SUCCESS;
316 }
317 
319 {
320  (*data) = adapter->data;
321  return HPD_E_SUCCESS;
322 }
323 
325 {
326  (*data) = device->data;
327  return HPD_E_SUCCESS;
328 }
329 
331 {
332  (*data) = service->data;
333  return HPD_E_SUCCESS;
334 }
335 
337 {
338  (*id) = adapter->id;
339  return HPD_E_SUCCESS;
340 }
341 
343 {
344  (*id) = device->id;
345  return HPD_E_SUCCESS;
346 }
347 
349 {
350  (*id) = service->id;
351  return HPD_E_SUCCESS;
352 }
353 
355 {
356  (*id) = parameter->id;
357  return HPD_E_SUCCESS;
358 }
359 
360 hpd_error_t discovery_get_adapter_attr(hpd_adapter_t *adapter, const char *key, const char **val)
361 {
362  return hpd_map_get(adapter->attributes, key, val);
363 }
364 
365 hpd_error_t discovery_get_device_attr(hpd_device_t *device, const char *key, const char **val)
366 {
367  return hpd_map_get(device->attributes, key, val);
368 }
369 
370 hpd_error_t discovery_get_service_attr(hpd_service_t *service, const char *key, const char **val)
371 {
372  return hpd_map_get(service->attributes, key, val);
373 }
374 
375 hpd_error_t discovery_get_parameter_attr(hpd_parameter_t *parameter, const char *key, const char **val)
376 {
377  return hpd_map_get(parameter->attributes, key, val);
378 }
379 
381 {
382  hpd_error_t rc;
383  const char *key, **val;
384 
385  while ((key = va_arg(vp, const char *))) {
386  val = va_arg(vp, const char **);
387  if (!val) LOG_RETURN_E_NULL();
388  if ((rc = discovery_get_adapter_attr(adapter, key, val))) return rc;
389  }
390  return HPD_E_SUCCESS;
391 }
392 
394 {
395  hpd_error_t rc;
396  const char *key, **val;
397 
398  while ((key = va_arg(vp, const char *))) {
399  val = va_arg(vp, const char **);
400  if (!val) LOG_RETURN_E_NULL();
401  if ((rc = discovery_get_device_attr(device, key, val))) return rc;
402  }
403  return HPD_E_SUCCESS;
404 }
405 
407 {
408  hpd_error_t rc;
409  const char *key, **val;
410 
411  while ((key = va_arg(vp, const char *))) {
412  val = va_arg(vp, const char **);
413  if (!val) LOG_RETURN_E_NULL();
414  if ((rc = discovery_get_service_attr(service, key, val))) return rc;
415  }
416  return HPD_E_SUCCESS;
417 }
418 
420 {
421  hpd_error_t rc;
422  const char *key, **val;
423 
424  while ((key = va_arg(vp, const char *))) {
425  val = va_arg(vp, const char **);
426  if (!val) LOG_RETURN_E_NULL();
427  if ((rc = discovery_get_parameter_attr(parameter, key, val))) return rc;
428  }
429  return HPD_E_SUCCESS;
430 }
431 
433 {
434  (*method) = action->method;
435  return HPD_E_SUCCESS;
436 }
437 
439 {
440  if (adapter->on_free) adapter->on_free(adapter->data);
441  adapter->data = data;
442  adapter->on_free = on_free;
443  return HPD_E_SUCCESS;
444 }
445 
447 {
448  if (device->on_free) device->on_free(device->data);
449  device->data = data;
450  device->on_free = on_free;
451  return HPD_E_SUCCESS;
452 }
453 
455 {
456  if (service->on_free) service->on_free(service->data);
457  service->data = data;
458  service->on_free = on_free;
459  return HPD_E_SUCCESS;
460 }
461 
462 hpd_error_t discovery_set_adapter_attr(hpd_adapter_t *adapter, const char *key, const char *val)
463 {
464  return hpd_map_set(adapter->attributes, key, val);
465 }
466 
467 hpd_error_t discovery_set_device_attr(hpd_device_t *device, const char *key, const char *val)
468 {
469  return hpd_map_set(device->attributes, key, val);
470 }
471 
472 hpd_error_t discovery_set_service_attr(hpd_service_t *service, const char *key, const char *val)
473 {
474  return hpd_map_set(service->attributes, key, val);
475 }
476 
477 hpd_error_t discovery_set_parameter_attr(hpd_parameter_t *parameter, const char *key, const char *val)
478 {
479  return hpd_map_set(parameter->attributes, key, val);
480 }
481 
483 {
484  hpd_action_t *action_p = &service->actions[method];
485  action_p->service = service;
486  action_p->method = method;
487  action_p->action = action;
488  return HPD_E_SUCCESS;
489 }
490 
492 {
493  hpd_error_t rc;
494  const char *key, *val;
495 
496  while ((key = va_arg(vp, const char *))) {
497  if (key[0] == '_') LOG_RETURN(HPD_E_ARGUMENT, "Keys starting with '_' is reserved for generated attributes");
498  val = va_arg(vp, const char *);
499  if ((rc = discovery_set_adapter_attr(adapter, key, val))) return rc;
500  }
501  return HPD_E_SUCCESS;
502 }
503 
505 {
506  hpd_error_t rc;
507  const char *key, *val;
508 
509  while ((key = va_arg(vp, const char *))) {
510  if (key[0] == '_') LOG_RETURN(HPD_E_ARGUMENT, "Keys starting with '_' is reserved for generated attributes");
511  val = va_arg(vp, const char *);
512  if ((rc = discovery_set_device_attr(device, key, val))) return rc;
513  }
514  return HPD_E_SUCCESS;
515 }
516 
518 {
519  hpd_error_t rc;
520  const char *key, *val;
521 
522  while ((key = va_arg(vp, const char *))) {
523  if (key[0] == '_') LOG_RETURN(HPD_E_ARGUMENT, "Keys starting with '_' is reserved for generated attributes");
524  val = va_arg(vp, const char *);
525  if ((rc = discovery_set_service_attr(service, key, val))) return rc;
526  }
527  return HPD_E_SUCCESS;
528 }
529 
531 {
532  hpd_error_t rc;
533  const char *key, *val;
534 
535  while ((key = va_arg(vp, const char *))) {
536  if (key[0] == '_') LOG_RETURN(HPD_E_ARGUMENT, "Keys starting with '_' is reserved for generated attributes");
537  val = va_arg(vp, const char *);
538  if ((rc = discovery_set_parameter_attr(parameter, key, val))) return rc;
539  }
540  return HPD_E_SUCCESS;
541 }
542 
544 {
545  hpd_error_t rc;
546  hpd_method_t method;
547  hpd_action_f action;
548 
549  while ((method = va_arg(vp, hpd_method_t)) != HPD_M_NONE) {
550  if (method <= HPD_M_NONE || method >= HPD_M_COUNT)
551  LOG_RETURN(HPD_E_ARGUMENT, "Unknown method given to %s() - did you end the list with HPD_M_NONE?", __func__);
552  action = va_arg(vp, hpd_action_f);
553  if (!action) LOG_RETURN_E_NULL();
554  if ((rc = discovery_set_service_action(service, method, action))) return rc;
555  }
556  return HPD_E_SUCCESS;
557 }
558 
560 {
561  (*action) = &service->actions[HPD_M_NONE+1];
562  return HPD_E_SUCCESS;
563 }
564 
566 {
567  return hpd_map_first(adapter->attributes, pair);
568 }
569 
571 {
572  return hpd_map_first(device->attributes, pair);
573 }
574 
576 {
577  return hpd_map_first(service->attributes, pair);
578 }
579 
581 {
582  return hpd_map_first(parameter->attributes, pair);
583 }
584 
586 {
587  (*adapter) = TAILQ_FIRST(&hpd->configuration->adapters);
588  return HPD_E_SUCCESS;
589 }
590 
592 {
593  hpd_adapter_t *adapter;
594  TAILQ_FOREACH(adapter, &hpd->configuration->adapters, HPD_TAILQ_FIELD) {
595  *device = TAILQ_FIRST(adapter->devices);
596  if (*device) return HPD_E_SUCCESS;
597  }
598 
599  *device = NULL;
600  return HPD_E_SUCCESS;
601 }
602 
604 {
605  hpd_adapter_t *adapter;
606  TAILQ_FOREACH(adapter, &hpd->configuration->adapters, HPD_TAILQ_FIELD) {
607  hpd_device_t *device;
608  TAILQ_FOREACH(device, adapter->devices, HPD_TAILQ_FIELD) {
609  *service = TAILQ_FIRST(device->services);
610  if (*service) return HPD_E_SUCCESS;
611  }
612  }
613 
614  *service = NULL;
615  return HPD_E_SUCCESS;
616 }
617 
619 {
620  (*device) = TAILQ_FIRST(adapter->devices);
621  return HPD_E_SUCCESS;
622 }
623 
625 {
626  hpd_device_t *device;
627  TAILQ_FOREACH(device, adapter->devices, HPD_TAILQ_FIELD) {
628  *service = TAILQ_FIRST(device->services);
629  if (*service) return HPD_E_SUCCESS;
630  }
631 
632  *service = NULL;
633  return HPD_E_SUCCESS;
634 }
635 
637 {
638  (*service) = TAILQ_FIRST(device->services);
639  return HPD_E_SUCCESS;
640 }
641 
643 {
644  (*parameter) = TAILQ_FIRST(service->parameters);
645  return HPD_E_SUCCESS;
646 }
647 
649 {
650  hpd_service_t *service = (*action)->service;
651 
652  for (hpd_method_t method = (*action)->method + 1; method < HPD_M_COUNT; method++) {
653  if (service->actions[method].action) {
654  (*action) = &service->actions[method];
655  return HPD_E_SUCCESS;
656  }
657  }
658  (*action) = NULL;
659  return HPD_E_SUCCESS;
660 }
661 
663 {
664  return hpd_map_next(pair);
665 }
666 
668 {
669  return hpd_map_next(pair);
670 }
671 
673 {
674  return hpd_map_next(pair);
675 }
676 
678 {
679  return hpd_map_next(pair);
680 }
681 
683 {
684  *adapter = TAILQ_NEXT(*adapter, HPD_TAILQ_FIELD);
685  return HPD_E_SUCCESS;
686 }
687 
689 {
690  hpd_device_t *d;
691  d = TAILQ_NEXT(*device, HPD_TAILQ_FIELD);
692  if (d) {
693  *device = d;
694  } else {
695  hpd_adapter_t *adapter = (*device)->adapter;
696  while ((adapter = TAILQ_NEXT(adapter, HPD_TAILQ_FIELD))) {
697  *device = TAILQ_FIRST(adapter->devices);
698  if (*device) return HPD_E_SUCCESS;
699  }
700  }
701  return HPD_E_SUCCESS;
702 }
703 
705 {
706  hpd_error_t rc;
707  hpd_service_t *s;
708  s = TAILQ_NEXT(*service, HPD_TAILQ_FIELD);
709 
710  if (s) {
711  *service = s;
712  } else {
713  hpd_device_t *device = (*service)->device;
714  while ((device = TAILQ_NEXT(device, HPD_TAILQ_FIELD))) {
715  s = TAILQ_FIRST(device->services);
716  if (s) {
717  *service = s;
718  return HPD_E_SUCCESS;
719  }
720  }
721  hpd_adapter_t *adapter = (*service)->device->adapter;
722  while ((adapter = TAILQ_NEXT(adapter, HPD_TAILQ_FIELD))) {
723  if ((rc = discovery_first_adapter_service(adapter, &s))) return rc;
724  if (s) {
725  *service = s;
726  return HPD_E_SUCCESS;
727  }
728  }
729  }
730  return HPD_E_SUCCESS;
731 }
732 
734 {
735  *device = TAILQ_NEXT(*device, HPD_TAILQ_FIELD);
736  return HPD_E_SUCCESS;
737 }
738 
740 {
741  hpd_service_t *s;
742  s = TAILQ_NEXT(*service, HPD_TAILQ_FIELD);
743  if (s) {
744  *service = s;
745  } else {
746  hpd_device_t *device = (*service)->device;
747  while ((device = TAILQ_NEXT(device, HPD_TAILQ_FIELD))) {
748  *service = TAILQ_FIRST(device->services);
749  if (*service) return HPD_E_SUCCESS;
750  }
751  }
752  return HPD_E_SUCCESS;
753 }
754 
756 {
757  *service = TAILQ_NEXT(*service, HPD_TAILQ_FIELD);
758  return HPD_E_SUCCESS;
759 }
760 
762 {
763  *parameter = TAILQ_NEXT(*parameter, HPD_TAILQ_FIELD);
764  return HPD_E_SUCCESS;
765 }
766 
767 
769 {
770  return (service->actions[method].action != NULL);
771 }
772 
774 {
775  hpd_adapter_t *a;
776  TAILQ_FOREACH(a, &hpd->configuration->adapters, HPD_TAILQ_FIELD)
777  if (strcmp(a->id, adapter->id) == 0) return HPD_FALSE;
778  return HPD_TRUE;
779 }
780 
782 {
783  hpd_device_t *d;
784  TAILQ_FOREACH(d, adapter->devices, HPD_TAILQ_FIELD)
785  if (strcmp(d->id, device->id) == 0) return HPD_FALSE;
786  return HPD_TRUE;
787 }
788 
790 {
791  hpd_service_t *s;
792  TAILQ_FOREACH(s, device->services, HPD_TAILQ_FIELD)
793  if (strcmp(s->id, service->id) == 0) return HPD_FALSE;
794  return HPD_TRUE;
795 }
796 
798 {
799  hpd_parameter_t *p;
800  TAILQ_FOREACH(p, service->parameters, HPD_TAILQ_FIELD)
801  if (strcmp(p->id, parameter->id) == 0) return HPD_FALSE;
802  return HPD_TRUE;
803 }
hpd_map_t * attributes
Definition: model.h:97
hpd_device_t * device
Definition: model.h:92
hpd_error_t discovery_set_service_attr(hpd_service_t *service, const char *key, const char *val)
Definition: discovery.c:472
hpd_error_t discovery_get_parameter_attr(hpd_parameter_t *parameter, const char *key, const char **val)
Definition: discovery.c:375
void(* hpd_free_f)(void *data)
[hpd_action_f]
Definition: hpd_types.h:187
hpd_error_t discovery_next_adapter_device(hpd_device_t **device)
Definition: discovery.c:733
char * id
Definition: model.h:70
#define LOG_RETURN_E_NULL()
Definition: log.h:50
hpd_error_t discovery_set_service_actions_v(hpd_service_t *service, va_list vp)
Definition: discovery.c:543
hpd_error_t discovery_free_service(hpd_service_t *service)
Definition: discovery.c:154
hpd_error_t discovery_free_adapter(hpd_adapter_t *adapter)
Definition: discovery.c:120
hpd_error_t discovery_alloc_device(hpd_device_t **device, const char *id)
Definition: discovery.c:55
hpd_error_t discovery_set_adapter_data(hpd_adapter_t *adapter, void *data, hpd_free_f on_free)
Definition: discovery.c:438
hpd_error_t discovery_next_device_attr(hpd_pair_t **pair)
Definition: discovery.c:667
void * data
Definition: model.h:101
hpd_error_t discovery_attach_service(hpd_device_t *device, hpd_service_t *service)
Definition: discovery.c:235
hpd_error_t discovery_set_service_data(hpd_service_t *service, void *data, hpd_free_f on_free)
Definition: discovery.c:454
char * id
Definition: model.h:107
#define HPD_STR_CPY(DST, SRC)
Definition: hpd_common.h:64
struct hpd_services hpd_services_t
Definition: model.h:43
hpd_error_t discovery_free_device(hpd_device_t *device)
Definition: discovery.c:137
hpd_error_t discovery_first_hpd_adapter(hpd_t *hpd, hpd_adapter_t **adapter)
Definition: discovery.c:585
hpd_error_t discovery_set_adapter_attr(hpd_adapter_t *adapter, const char *key, const char *val)
Definition: discovery.c:462
hpd_error_t discovery_first_adapter_attr(hpd_adapter_t *adapter, hpd_pair_t **pair)
Definition: discovery.c:565
hpd_error_t discovery_get_adapter_id(hpd_adapter_t *adapter, const char **id)
Definition: discovery.c:336
hpd_bool_t discovery_is_service_id_unique(hpd_device_t *device, hpd_service_t *service)
Definition: discovery.c:789
hpd_error_t discovery_detach_device(hpd_device_t *device)
Definition: discovery.c:288
Definition: map.c:34
#define LOG_RETURN_E_ALLOC()
Definition: log.h:51
hpd_error_t discovery_get_device_attr(hpd_device_t *device, const char *key, const char **val)
Definition: discovery.c:365
#define HPD_TAILQ_MAP_REMOVE(LIST, FUNC, TYPE, RC)
Definition: hpd_queue.h:39
hpd_error_t event_inform_adapter_attached(hpd_adapter_t *adapter)
Definition: event.c:211
hpd_method_t method
Definition: model.h:53
hpd_parameters_t * parameters
Definition: model.h:94
hpd_error_t discovery_free_parameter(hpd_parameter_t *parameter)
Definition: discovery.c:172
hpd_error_t hpd_map_set(hpd_map_t *map, const char *k, const char *v)
Definition: map.c:175
struct hpd_devices hpd_devices_t
Definition: model.h:42
hpd_error_t discovery_alloc_service(hpd_service_t **service, const char *id)
Definition: discovery.c:76
hpd_error_t hpd_map_next(hpd_pair_t **pair)
Definition: map.c:60
free(data.url)
hpd_error_t discovery_next_adapter_service(hpd_service_t **service)
Definition: discovery.c:739
hpd_error_t discovery_get_adapter_attrs_v(hpd_adapter_t *adapter, va_list vp)
Definition: discovery.c:380
hpd_action_f action
Definition: model.h:54
hpd_error_t discovery_set_service_action(hpd_service_t *service, const hpd_method_t method, hpd_action_f action)
Definition: discovery.c:482
#define HPD_TAILQ_FIELD
Definition: hpd_queue.h:37
hpd_error_t hpd_map_first(hpd_map_t *map, hpd_pair_t **pair)
Definition: map.c:52
hpd_error_t discovery_set_parameter_attr(hpd_parameter_t *parameter, const char *key, const char *val)
Definition: discovery.c:477
hpd_bool_t discovery_is_parameter_id_unique(hpd_service_t *service, hpd_parameter_t *parameter)
Definition: discovery.c:797
hpd_error_t hpd_map_free(hpd_map_t *map)
Definition: map.c:79
hpd_error_t discovery_next_hpd_service(hpd_service_t **service)
Definition: discovery.c:704
hpd_error_t discovery_next_action_in_service(hpd_action_t **action)
Definition: discovery.c:648
#define HPD_CALLOC(PTR, NUM, CAST)
Allocates and zeros a structure.
Definition: hpd_common.h:44
hpd_error_t discovery_first_device_attr(hpd_device_t *device, hpd_pair_t **pair)
Definition: discovery.c:570
hpd_error_t discovery_next_hpd_device(hpd_device_t **device)
Definition: discovery.c:688
hpd_bool_t discovery_has_service_action(hpd_service_t *service, const hpd_method_t method)
Definition: discovery.c:768
hpd_error_t discovery_alloc_parameter(hpd_parameter_t **parameter, const char *id)
Definition: discovery.c:101
hpd_error_t discovery_first_action_in_service(hpd_service_t *service, hpd_action_t **action)
Definition: discovery.c:559
hpd_error_t discovery_set_adapter_attrs_v(hpd_adapter_t *adapter, va_list vp)
Definition: discovery.c:491
char * id
Definition: model.h:96
hpd_error_t event_inform_adapter_detached(hpd_adapter_t *adapter)
Definition: event.c:223
hpd_error_t discovery_set_device_attr(hpd_device_t *device, const char *key, const char *val)
Definition: discovery.c:467
hpd_error_t discovery_get_parameter_id(hpd_parameter_t *parameter, const char **id)
Definition: discovery.c:354
data key
hpd_configuration_t * configuration
Definition: daemon.h:52
hpd_error_t discovery_attach_parameter(hpd_service_t *service, hpd_parameter_t *parameter)
Definition: discovery.c:259
hpd_error_t discovery_set_device_data(hpd_device_t *device, void *data, hpd_free_f on_free)
Definition: discovery.c:446
hpd_adapters_t adapters
Definition: model.h:59
hpd_map_t * attributes
Definition: model.h:71
hpd_error_t discovery_attach_device(hpd_adapter_t *adapter, hpd_device_t *device)
Definition: discovery.c:208
hpd_error_t discovery_next_device_service(hpd_service_t **service)
Definition: discovery.c:755
enum hpd_error hpd_error_t
Definition: hpd_types.h:167
hpd_services_t * services
Definition: model.h:81
#define LOG_RETURN(E, FMT,...)
Definition: log.h:48
hpd_error_t discovery_first_adapter_device(hpd_adapter_t *adapter, hpd_device_t **device)
Definition: discovery.c:618
hpd_error_t hpd_map_get(hpd_map_t *map, const char *k, const char **v)
Definition: map.c:92
#define HPD_FALSE
Definition: hpd_types.h:37
hpd_error_t discovery_get_parameter_attrs_v(hpd_parameter_t *parameter, va_list vp)
Definition: discovery.c:419
hpd_bool_t discovery_is_device_id_unique(hpd_adapter_t *adapter, hpd_device_t *device)
Definition: discovery.c:781
char hpd_bool_t
Definition: hpd_types.h:35
hpd_service_t * service
Definition: model.h:105
struct data data
hpd_error_t discovery_set_service_attrs_v(hpd_service_t *service, va_list vp)
Definition: discovery.c:517
Definition: daemon.h:50
hpd_error_t discovery_get_service_id(hpd_service_t *service, const char **id)
Definition: discovery.c:348
hpd_error_t discovery_get_device_data(hpd_device_t *device, void **data)
Definition: discovery.c:324
hpd_error_t discovery_detach_parameter(hpd_parameter_t *parameter)
Definition: discovery.c:310
hpd_bool_t discovery_is_adapter_id_unique(hpd_t *hpd, hpd_adapter_t *adapter)
Definition: discovery.c:773
hpd_error_t discovery_set_parameter_attrs_v(hpd_parameter_t *parameter, va_list vp)
Definition: discovery.c:530
hpd_status_t(* hpd_action_f)(void *data, hpd_request_t *req)
[hpd_module_def_t functions]
Definition: hpd_types.h:183
hpd_error_t discovery_alloc_adapter(hpd_adapter_t **adapter, const char *id)
Definition: discovery.c:34
struct hpd_parameters hpd_parameters_t
Definition: model.h:44
hpd_error_t discovery_get_adapter_data(hpd_adapter_t *adapter, void **data)
Definition: discovery.c:318
hpd_error_t discovery_detach_service(hpd_service_t *service)
Definition: discovery.c:302
hpd_error_t discovery_first_hpd_device(hpd_t *hpd, hpd_device_t **device)
Definition: discovery.c:591
hpd_error_t hpd_map_alloc(hpd_map_t **map)
Definition: map.c:40
hpd_error_t discovery_next_parameter_attr(hpd_pair_t **pair)
Definition: discovery.c:677
#define HPD_CPY_ALLOC(DST, SRC, CAST)
Definition: hpd_common.h:58
void * data
Definition: model.h:87
hpd_map_t * attributes
Definition: model.h:84
hpd_error_t discovery_first_service_attr(hpd_service_t *service, hpd_pair_t **pair)
Definition: discovery.c:575
hpd_error_t discovery_get_service_attr(hpd_service_t *service, const char *key, const char **val)
Definition: discovery.c:370
hpd_free_f on_free
Definition: model.h:100
hpd_error_t event_inform_device_attached(hpd_device_t *device)
Definition: event.c:235
char * id
Definition: model.h:83
hpd_error_t discovery_set_device_attrs_v(hpd_device_t *device, va_list vp)
Definition: discovery.c:504
hpd_error_t discovery_next_hpd_adapter(hpd_adapter_t **adapter)
Definition: discovery.c:682
#define HPD_TRUE
Definition: hpd_types.h:36
hpd_error_t discovery_first_service_parameter(hpd_service_t *service, hpd_parameter_t **parameter)
Definition: discovery.c:642
hpd_error_t discovery_attach_adapter(hpd_t *hpd, hpd_adapter_t *adapter)
Definition: discovery.c:181
hpd_error_t discovery_get_adapter_attr(hpd_adapter_t *adapter, const char *key, const char **val)
Definition: discovery.c:360
hpd_configuration_t * configuration
Definition: model.h:66
hpd_map_t * attributes
Definition: model.h:108
hpd_error_t discovery_first_hpd_service(hpd_t *hpd, hpd_service_t **service)
Definition: discovery.c:603
hpd_error_t discovery_first_parameter_attr(hpd_parameter_t *parameter, hpd_pair_t **pair)
Definition: discovery.c:580
hpd_error_t discovery_first_adapter_service(hpd_adapter_t *adapter, hpd_service_t **service)
Definition: discovery.c:624
hpd_error_t discovery_get_service_attrs_v(hpd_service_t *service, va_list vp)
Definition: discovery.c:406
hpd_action_t actions[HPD_M_COUNT]
Definition: model.h:98
hpd_error_t discovery_get_device_attrs_v(hpd_device_t *device, va_list vp)
Definition: discovery.c:393
hpd_error_t event_inform_device_detached(hpd_device_t *device)
Definition: event.c:262
hpd_error_t discovery_get_device_id(hpd_device_t *device, const char **id)
Definition: discovery.c:342
hpd_error_t discovery_next_service_attr(hpd_pair_t **pair)
Definition: discovery.c:672
hpd_error_t discovery_first_device_service(const hpd_device_t *device, hpd_service_t **service)
Definition: discovery.c:636
hpd_service_t * service
Definition: model.h:52
hpd_free_f on_free
Definition: model.h:86
enum hpd_method hpd_method_t
[hpd_log_level_t]
Definition: hpd_types.h:166
hpd_error_t discovery_get_service_data(hpd_service_t *service, void **data)
Definition: discovery.c:330
hpd_adapter_t * adapter
Definition: model.h:79
hpd_devices_t * devices
Definition: model.h:68
hpd_error_t discovery_get_action_method(const hpd_action_t *action, hpd_method_t *method)
Definition: discovery.c:432
hpd_error_t discovery_detach_adapter(hpd_adapter_t *adapter)
Definition: discovery.c:274
hpd_error_t discovery_next_service_parameter(hpd_parameter_t **parameter)
Definition: discovery.c:761
void * data
Definition: model.h:74
hpd_error_t discovery_next_adapter_attr(hpd_pair_t **pair)
Definition: discovery.c:662
hpd_free_f on_free
Definition: model.h:73