function_list.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * The copyright in this software is being made available under the 2-clauses
  3. * BSD License, included below. This software may be subject to other third
  4. * party and contributor rights, including patent rights, and no such rights
  5. * are granted under this license.
  6. *
  7. * Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s.fr>
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  20. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. * POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #include "opj_includes.h"
  32. /**
  33. * Default size of the validation list, if not sufficient, data will be reallocated with a double size.
  34. */
  35. #define OPJ_VALIDATION_SIZE 10
  36. opj_procedure_list_t * opj_procedure_list_create()
  37. {
  38. /* memory allocation */
  39. opj_procedure_list_t * l_validation = (opj_procedure_list_t *) opj_calloc(1,
  40. sizeof(opj_procedure_list_t));
  41. if (! l_validation) {
  42. return 00;
  43. }
  44. /* initialization */
  45. l_validation->m_nb_max_procedures = OPJ_VALIDATION_SIZE;
  46. l_validation->m_procedures = (opj_procedure*)opj_calloc(OPJ_VALIDATION_SIZE,
  47. sizeof(opj_procedure));
  48. if (! l_validation->m_procedures) {
  49. opj_free(l_validation);
  50. return 00;
  51. }
  52. return l_validation;
  53. }
  54. void opj_procedure_list_destroy(opj_procedure_list_t * p_list)
  55. {
  56. if (! p_list) {
  57. return;
  58. }
  59. /* initialization */
  60. if (p_list->m_procedures) {
  61. opj_free(p_list->m_procedures);
  62. }
  63. opj_free(p_list);
  64. }
  65. OPJ_BOOL opj_procedure_list_add_procedure(opj_procedure_list_t *
  66. p_validation_list, opj_procedure p_procedure, opj_event_mgr_t* p_manager)
  67. {
  68. assert(p_manager != NULL);
  69. if (p_validation_list->m_nb_max_procedures ==
  70. p_validation_list->m_nb_procedures) {
  71. opj_procedure * new_procedures;
  72. p_validation_list->m_nb_max_procedures += OPJ_VALIDATION_SIZE;
  73. new_procedures = (opj_procedure*)opj_realloc(
  74. p_validation_list->m_procedures,
  75. p_validation_list->m_nb_max_procedures * sizeof(opj_procedure));
  76. if (! new_procedures) {
  77. opj_free(p_validation_list->m_procedures);
  78. p_validation_list->m_nb_max_procedures = 0;
  79. p_validation_list->m_nb_procedures = 0;
  80. opj_event_msg(p_manager, EVT_ERROR,
  81. "Not enough memory to add a new validation procedure\n");
  82. return OPJ_FALSE;
  83. } else {
  84. p_validation_list->m_procedures = new_procedures;
  85. }
  86. }
  87. p_validation_list->m_procedures[p_validation_list->m_nb_procedures] =
  88. p_procedure;
  89. ++p_validation_list->m_nb_procedures;
  90. return OPJ_TRUE;
  91. }
  92. OPJ_UINT32 opj_procedure_list_get_nb_procedures(opj_procedure_list_t *
  93. p_validation_list)
  94. {
  95. return p_validation_list->m_nb_procedures;
  96. }
  97. opj_procedure* opj_procedure_list_get_first_procedure(opj_procedure_list_t *
  98. p_validation_list)
  99. {
  100. return p_validation_list->m_procedures;
  101. }
  102. void opj_procedure_list_clear(opj_procedure_list_t * p_validation_list)
  103. {
  104. p_validation_list->m_nb_procedures = 0;
  105. }