/* Copyright (c) 2012-2015 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef YLIB_VEC_H #define YLIB_VEC_H /* Simple type-safe vector/array abstraction. * * v.n = number of items in the array * v.m = number of allocated items * v.a = the array * * Vectors must be zero-initialized before use. * To free the vector: free(v.a) or vec_clear() * * Quick usage overview: * * vec_t(int) v = {}; * * // Append element * vec_append(v, 10); * * // Same, but obtain a pointer into the array * int *element = vec_appendp(v); * *element = 10; * * // Insert an element at any valid index while preserving order * vec_insert_ordered(v, 1, 9); * *vec_insert_orderedp(v, 1) = 9; * * // Insert an element at any valid index, doesn't preserve order but is faster * vec_insert_fast(v, 1, 9); * *vec_insert_fast(v, 1) = 9; * * // Removing elements * vec_remove_ordered(v, 1); * vec_remove_fast(v, 1); * * // Element access and iteration * size_t i; * for(i=0; i= (_v).m && vec_grow(_v)),\ memmove((_v).a+(_i)+1, (_v).a+(_i), sizeof(*(_v).a) * ((_v).n - (_i))),\ (_v).a + ((_v).n == (_i) ? (_v).n++ : ((_v).n++, (_i)))\ ) #define vec_insert_order(_v, _i, _x) (*vec_insert_orderp(_v, _i) = (_x)) /* Remove an item. Any elements to the right of the given index are moved one * position to the left to preserve order of the list. */ #define vec_remove_order(_v, _i) (\ memmove((_v).a+(_i), (_v).a+(_i)+1, sizeof(*(_v).a) * ((_v).n - (_i))),\ (_v).n--\ ) /* Insert an item at the given index in the array. If there already is an * element at given index, the existing element will be moved to the end of * the array. * The index must be 0 <= i <= v.n. */ #define vec_insert_fastp(_v, _i) (\ (void)((_v).n+1 >= (_v).m && vec_grow(_v)),\ memmove((_v).a+(_v).n, (_v).a+(_i), sizeof(*(_v).a)),\ (_v).a + ((_v).n == (_i) ? (_v).n++ : ((_v).n++, (_i)))\ ) #define vec_insert_fast(_v, _i, _x) (*vec_insert_fastp(_v, _i) = (_x)) /* Remove an item. The last element in the array is moved into the removed * slot. */ #define vec_remove_fast(_v, _i) (\ memmove((_v).a+(_i), (_v).a+(_v).n-1, sizeof(*(_v).a)),\ (_v).n--\ ) /* Append an item to the end of the vector. Just a convenient short-hand. */ #define vec_appendp(_v) vec_insert_fastp(_v, (_v).n) #define vec_append(_v, _x) vec_insert_fast(_v, (_v).n, _x) /* Binary search. * * The _cmp argument is an expression that evaluates to an integer. Within the * expression, the variable `i' is available and set to the index of the * element to be compared with the requested element. If the resulting integer * is negative, the requested element should be located in the array before * `i', if it is positive it is located after `i'. The value 0 indicates that * the element is found. * * The _res argument is the code to be evaluated when the item has been found. * Again, the variable `i' is available and set to the index of the found item. * If nothing is found, _res will not be evaluated. * * An example of how to find an item of value `10' in an vec_t(int): * * vec_t(int) v; * size_t r = (size_t)-1; * vec_search(v, v.a[i] - 10, r = i); * if(r != (size_t)-1) * // v.a[r] == 10 * else * // No element with value 10 found */ #define vec_search(_v, _cmp, _res) do { if((_v).n) {\ size_t _b = 0, _e = (_v).n-1;\ while(_b <= _e) {\ size_t i = _b + (_e - _b)/2;\ int _c = (_cmp);\ if(!_c) { { _res ; }; break; }\ else if(_c < 0) _b = i+1;\ else if(i) _e = i-1;\ else break;\ }\ } } while(0) /* Find the index where to insert an item into the array in the correct order. * The _cmp argument is the same as vec_search(). The result is stored in _r, * which must be a variable of type size_t. * * If _cmp evaluates to 0 (i.e. there is an item in the same position as you * wish to insert it), then _r is the index of that element. If there are * multiple elements for which _cmp may evaluate to 0, then _r is the index of * one such element, but which one is somewhat arbitrary. */ #define vec_search_insert(_v, _r, _cmp) do {\ (_r) = 0;\ vec_search(_v, ((_r) = i, (_cmp)),);\ size_t i = (_r);\ if(i < (_v).n && (_cmp) < 0) (_r)++;\ } while(0) /* Convenience wrapper for vec_search_insert() and vec_insert_order(). */ #define vec_insert_sorted(_v, _cmp, _x) do {\ size_t _r;\ vec_search_insert(_v, _r, _cmp);\ vec_insert_order(_v, _r, _x);\ } while(0) #endif /* vim: set noet sw=4 ts=4: */