agent.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*-
  2. * Copyright (c) 2005 Michael Bushkov <bushman@rsu.ru>
  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. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. *
  26. */
  27. #include <sys/cdefs.h>
  28. #include <assert.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31. #include "agent.h"
  32. #include "debug.h"
  33. static int
  34. agent_cmp_func(const void *a1, const void *a2)
  35. {
  36. struct agent const *ap1 = *((struct agent const **)a1);
  37. struct agent const *ap2 = *((struct agent const **)a2);
  38. int res;
  39. res = strcmp(ap1->name, ap2->name);
  40. if (res == 0) {
  41. if (ap1->type == ap2->type)
  42. res = 0;
  43. else if (ap1->type < ap2->type)
  44. res = -1;
  45. else
  46. res = 1;
  47. }
  48. return (res);
  49. }
  50. struct agent_table *
  51. init_agent_table(void)
  52. {
  53. struct agent_table *retval;
  54. TRACE_IN(init_agent_table);
  55. retval = calloc(1, sizeof(*retval));
  56. assert(retval != NULL);
  57. TRACE_OUT(init_agent_table);
  58. return (retval);
  59. }
  60. void
  61. register_agent(struct agent_table *at, struct agent *a)
  62. {
  63. struct agent **new_agents;
  64. size_t new_agents_num;
  65. TRACE_IN(register_agent);
  66. assert(at != NULL);
  67. assert(a != NULL);
  68. new_agents_num = at->agents_num + 1;
  69. new_agents = malloc(sizeof(*new_agents) *
  70. new_agents_num);
  71. assert(new_agents != NULL);
  72. memcpy(new_agents, at->agents, at->agents_num * sizeof(struct agent *));
  73. new_agents[new_agents_num - 1] = a;
  74. qsort(new_agents, new_agents_num, sizeof(struct agent *),
  75. agent_cmp_func);
  76. free(at->agents);
  77. at->agents = new_agents;
  78. at->agents_num = new_agents_num;
  79. TRACE_OUT(register_agent);
  80. }
  81. struct agent *
  82. find_agent(struct agent_table *at, const char *name, enum agent_type type)
  83. {
  84. struct agent **res;
  85. struct agent model, *model_p;
  86. TRACE_IN(find_agent);
  87. model.name = (char *)name;
  88. model.type = type;
  89. model_p = &model;
  90. res = bsearch(&model_p, at->agents, at->agents_num,
  91. sizeof(struct agent *), agent_cmp_func);
  92. TRACE_OUT(find_agent);
  93. return ( res == NULL ? NULL : *res);
  94. }
  95. void
  96. destroy_agent_table(struct agent_table *at)
  97. {
  98. size_t i;
  99. TRACE_IN(destroy_agent_table);
  100. assert(at != NULL);
  101. for (i = 0; i < at->agents_num; ++i) {
  102. free(at->agents[i]->name);
  103. free(at->agents[i]);
  104. }
  105. free(at->agents);
  106. free(at);
  107. TRACE_OUT(destroy_agent_table);
  108. }