s2n_array.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License").
  5. * You may not use this file except in compliance with the License.
  6. * A copy of the License is located at
  7. *
  8. * http://aws.amazon.com/apache2.0
  9. *
  10. * or in the "license" file accompanying this file. This file is distributed
  11. * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  12. * express or implied. See the License for the specific language governing
  13. * permissions and limitations under the License.
  14. */
  15. #pragma once
  16. #include "api/s2n.h"
  17. #include "utils/s2n_blob.h"
  18. #include "utils/s2n_result.h"
  19. #define S2N_INITIAL_ARRAY_SIZE 16
  20. struct s2n_array {
  21. /* Pointer to elements in array */
  22. struct s2n_blob mem;
  23. /* The total number of elements currently in the array. */
  24. uint32_t len;
  25. /* The size of each element in the array */
  26. uint32_t element_size;
  27. };
  28. S2N_RESULT s2n_array_validate(const struct s2n_array *array);
  29. struct s2n_array *s2n_array_new(uint32_t element_size);
  30. struct s2n_array *s2n_array_new_with_capacity(uint32_t element_size, uint32_t capacity);
  31. S2N_RESULT s2n_array_init(struct s2n_array *array, uint32_t element_size);
  32. S2N_RESULT s2n_array_init_with_capacity(struct s2n_array *array, uint32_t element_size, uint32_t capacity);
  33. S2N_RESULT s2n_array_pushback(struct s2n_array *array, void **element);
  34. S2N_RESULT s2n_array_get(struct s2n_array *array, uint32_t idx, void **element);
  35. S2N_RESULT s2n_array_insert(struct s2n_array *array, uint32_t idx, void **element);
  36. S2N_RESULT s2n_array_insert_and_copy(struct s2n_array *array, uint32_t idx, void *element);
  37. S2N_RESULT s2n_array_num_elements(struct s2n_array *array, uint32_t *len);
  38. S2N_RESULT s2n_array_capacity(struct s2n_array *array, uint32_t *capacity);
  39. S2N_RESULT s2n_array_remove(struct s2n_array *array, uint32_t idx);
  40. S2N_CLEANUP_RESULT s2n_array_free_p(struct s2n_array **parray);
  41. S2N_RESULT s2n_array_free(struct s2n_array *array);