1 | /* |
2 | Copyright (c) 2012, Broadcom Europe Ltd |
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 are met: |
7 | * Redistributions of source code must retain the above copyright |
8 | notice, this list of conditions and the following disclaimer. |
9 | * Redistributions in binary form must reproduce the above copyright |
10 | notice, this list of conditions and the following disclaimer in the |
11 | documentation and/or other materials provided with the distribution. |
12 | * Neither the name of the copyright holder nor the |
13 | names of its contributors may be used to endorse or promote products |
14 | derived from this software without specific prior written permission. |
15 | |
16 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
17 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
18 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
19 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY |
20 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
21 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
22 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
23 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
25 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ |
27 | |
28 | #include "interface/khronos/common/khrn_int_common.h" |
29 | |
30 | #include "interface/khronos/common/khrn_client_platform.h" |
31 | #include "interface/khronos/common/khrn_client_vector.h" |
32 | |
33 | #include <stdlib.h> |
34 | #include <string.h> |
35 | |
36 | void khrn_vector_init(KHRN_VECTOR_T *vector, uint32_t capacity) |
37 | { |
38 | vector->data = (capacity == 0) ? NULL : khrn_platform_malloc(capacity, "KHRN_VECTOR_T.data" ); |
39 | vector->capacity = vector->data ? capacity : 0; |
40 | vector->size = 0; |
41 | } |
42 | |
43 | void khrn_vector_term(KHRN_VECTOR_T *vector) |
44 | { |
45 | if (vector->data) { |
46 | khrn_platform_free(vector->data); |
47 | } |
48 | } |
49 | |
50 | bool khrn_vector_extend(KHRN_VECTOR_T *vector, uint32_t size) |
51 | { |
52 | uint32_t req_capacity = vector->size + size; |
53 | if (req_capacity > vector->capacity) { |
54 | uint32_t new_capacity = _max(vector->capacity + (vector->capacity >> 1), req_capacity); |
55 | void *new_data = khrn_platform_malloc(new_capacity, "KHRN_VECTOR_T.data" ); |
56 | if (!new_data) { |
57 | new_capacity = req_capacity; |
58 | new_data = khrn_platform_malloc(new_capacity, "KHRN_VECTOR_T.data" ); |
59 | if (!new_data) { |
60 | return false; |
61 | } |
62 | } |
63 | if (vector->data) { |
64 | memcpy(new_data, vector->data, vector->size); |
65 | khrn_platform_free(vector->data); |
66 | } |
67 | vector->data = new_data; |
68 | vector->capacity = new_capacity; |
69 | } |
70 | vector->size += size; |
71 | return true; |
72 | } |
73 | |
74 | void khrn_vector_clear(KHRN_VECTOR_T *vector) |
75 | { |
76 | if (vector->data) { |
77 | khrn_platform_free(vector->data); |
78 | } |
79 | vector->data = NULL; |
80 | vector->capacity = 0; |
81 | vector->size = 0; |
82 | } |
83 | |