sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 1 | |
| 2 | /*--------------------------------------------------------------------*/ |
| 3 | /*--- An expandable array implementation. pub_tool_xarray.h ---*/ |
| 4 | /*--------------------------------------------------------------------*/ |
| 5 | |
| 6 | /* |
| 7 | This file is part of Valgrind, a dynamic binary instrumentation |
| 8 | framework. |
| 9 | |
sewardj | 03f8d3f | 2012-08-05 15:46:46 +0000 | [diff] [blame] | 10 | Copyright (C) 2007-2012 OpenWorks LLP |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 11 | info@open-works.co.uk |
| 12 | |
| 13 | This program is free software; you can redistribute it and/or |
| 14 | modify it under the terms of the GNU General Public License as |
| 15 | published by the Free Software Foundation; either version 2 of the |
| 16 | License, or (at your option) any later version. |
| 17 | |
| 18 | This program is distributed in the hope that it will be useful, but |
| 19 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 21 | General Public License for more details. |
| 22 | |
| 23 | You should have received a copy of the GNU General Public License |
| 24 | along with this program; if not, write to the Free Software |
| 25 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 26 | 02111-1307, USA. |
| 27 | |
| 28 | The GNU General Public License is contained in the file COPYING. |
| 29 | */ |
| 30 | |
| 31 | #ifndef __PUB_TOOL_XARRAY_H |
| 32 | #define __PUB_TOOL_XARRAY_H |
| 33 | |
| 34 | //-------------------------------------------------------------------- |
| 35 | // PURPOSE: Provides a simple but useful structure, which is an array |
| 36 | // in which elements can be added at the end. The array is expanded |
| 37 | // as needed by multiplying its size by a constant factor (usually 2). |
| 38 | // This gives amortised O(1) insertion cost, and, following sorting, |
| 39 | // the usual O(log N) binary search cost. Arbitrary element sizes |
| 40 | // are allowed; the comparison function for sort/lookup can be changed |
| 41 | // at any time, and duplicates (modulo the comparison function) are |
| 42 | // allowed. |
| 43 | //-------------------------------------------------------------------- |
| 44 | |
| 45 | |
| 46 | /* It's an abstract type. Bwaha. */ |
sewardj | 9c606bd | 2008-09-18 18:12:50 +0000 | [diff] [blame] | 47 | typedef struct _XArray XArray; |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 48 | |
| 49 | /* Create new XArray, using given allocation and free function, and |
| 50 | for elements of the specified size. Alloc fn must not fail (that |
| 51 | is, if it returns it must have succeeded.) */ |
sewardj | 9c606bd | 2008-09-18 18:12:50 +0000 | [diff] [blame] | 52 | extern XArray* VG_(newXA) ( void*(*alloc_fn)(HChar*,SizeT), |
| 53 | HChar* cc, |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 54 | void(*free_fn)(void*), |
| 55 | Word elemSzB ); |
| 56 | |
| 57 | /* Free all memory associated with an XArray. */ |
| 58 | extern void VG_(deleteXA) ( XArray* ); |
| 59 | |
| 60 | /* Set the comparison function for this XArray. This clears an |
| 61 | internal 'array is sorted' flag, which means you must call sortXA |
| 62 | before making further queries with lookupXA. */ |
njn | b4cfa2f | 2007-03-28 01:27:05 +0000 | [diff] [blame] | 63 | extern void VG_(setCmpFnXA) ( XArray*, Int (*compar)(void*,void*) ); |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 64 | |
sewardj | 0f63148 | 2007-02-27 16:40:53 +0000 | [diff] [blame] | 65 | /* Add an element to an XArray. Element is copied into the XArray. |
| 66 | Index at which it was added is returned. Note this will be |
| 67 | invalidated if the array is later sortXA'd. */ |
sewardj | bee43c1 | 2008-08-19 08:57:49 +0000 | [diff] [blame] | 68 | extern Word VG_(addToXA) ( XArray*, void* elem ); |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 69 | |
sewardj | b8b79ad | 2008-03-03 01:35:41 +0000 | [diff] [blame] | 70 | /* Add a sequence of bytes to an XArray of bytes. Asserts if nbytes |
| 71 | is negative or the array's element size is not 1. Returns the |
| 72 | index at which the first byte was added. */ |
sewardj | bee43c1 | 2008-08-19 08:57:49 +0000 | [diff] [blame] | 73 | extern Word VG_(addBytesToXA) ( XArray* xao, void* bytesV, Word nbytes ); |
sewardj | b8b79ad | 2008-03-03 01:35:41 +0000 | [diff] [blame] | 74 | |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 75 | /* Sort an XArray using its comparison function, if set; else bomb. |
| 76 | Probably not a stable sort w.r.t. equal elements module cmpFn. */ |
| 77 | extern void VG_(sortXA) ( XArray* ); |
| 78 | |
| 79 | /* Lookup (by binary search) 'key' in the array. Set *first to be the |
| 80 | index of the first, and *last to be the index of the last matching |
| 81 | value found. If any values are found, return True, else return |
sewardj | ffce815 | 2011-06-24 10:09:41 +0000 | [diff] [blame] | 82 | False, and don't change *first or *last. first and/or last may be |
| 83 | NULL. Bomb if the array is not sorted. */ |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 84 | extern Bool VG_(lookupXA) ( XArray*, void* key, |
| 85 | /*OUT*/Word* first, /*OUT*/Word* last ); |
| 86 | |
sewardj | daa5da5 | 2009-07-24 08:42:07 +0000 | [diff] [blame] | 87 | /* A version of VG_(lookupXA) in which you can specify your own |
| 88 | comparison function. This is unsafe in the sense that if the array |
| 89 | is not totally ordered as defined by your comparison function, then |
| 90 | this function may loop indefinitely, so it is up to you to ensure |
| 91 | that the array is suitably ordered. This is in comparison to |
| 92 | VG_(lookupXA), which refuses to do anything (asserts) unless the |
| 93 | array has first been sorted using the same comparison function as |
| 94 | is being used for the lookup. */ |
| 95 | extern Bool VG_(lookupXA_UNSAFE) ( XArray* xao, void* key, |
| 96 | /*OUT*/Word* first, /*OUT*/Word* last, |
| 97 | Int(*cmpFn)(void*,void*) ); |
| 98 | |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 99 | /* How elements are there in this XArray now? */ |
| 100 | extern Word VG_(sizeXA) ( XArray* ); |
| 101 | |
| 102 | /* Index into the XArray. Checks bounds and bombs if the index is |
| 103 | invalid. What this returns is the address of the specified element |
| 104 | in the array, not (of course) the element itself. Note that the |
| 105 | element may get moved by subsequent addToXAs/sortXAs, so you should |
| 106 | copy it out immediately and not regard its address as unchanging. |
| 107 | Note also that indexXA will of course not return NULL if it |
| 108 | succeeds. */ |
| 109 | extern void* VG_(indexXA) ( XArray*, Word ); |
| 110 | |
| 111 | /* Drop the last n elements of an XArray. Bombs if there are less |
sewardj | daa5da5 | 2009-07-24 08:42:07 +0000 | [diff] [blame] | 112 | than n elements in the array. This is an O(1) operation. */ |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 113 | extern void VG_(dropTailXA) ( XArray*, Word ); |
| 114 | |
sewardj | daa5da5 | 2009-07-24 08:42:07 +0000 | [diff] [blame] | 115 | /* Drop the first n elements of an XArray. Bombs if there are less |
| 116 | than n elements in the array. This is an O(N) operation, where N |
| 117 | is the number of elements remaining in the XArray. */ |
| 118 | extern void VG_(dropHeadXA) ( XArray*, Word ); |
| 119 | |
sewardj | 291849f | 2012-04-20 23:58:55 +0000 | [diff] [blame] | 120 | /* Remove the specified element of an XArray, and slide all elements |
| 121 | beyond it back one place. This is an O(N) operation, where N is |
| 122 | the number of elements after the specified element, in the |
| 123 | array. */ |
| 124 | extern void VG_(removeIndexXA)( XArray*, Word ); |
| 125 | |
sewardj | b8b79ad | 2008-03-03 01:35:41 +0000 | [diff] [blame] | 126 | /* Make a new, completely independent copy of the given XArray, using |
| 127 | the existing allocation function to allocate the new space. |
| 128 | Returns NULL if the allocation function didn't manage to allocate |
sewardj | 9c606bd | 2008-09-18 18:12:50 +0000 | [diff] [blame] | 129 | space (but did return NULL rather than merely abort.) Space for |
| 130 | the clone (and all additions to it) is billed to 'cc' unless that |
| 131 | is NULL, in which case the parent's cost-center is used. */ |
| 132 | extern XArray* VG_(cloneXA)( HChar* cc, XArray* xa ); |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 133 | |
sewardj | 8f8fa17 | 2010-05-05 09:23:41 +0000 | [diff] [blame] | 134 | /* Get the raw array and size so callers can index it really fast. |
| 135 | This is dangerous in the sense that there's no range or |
| 136 | anything-else checking. It's also dangerous in that if |
| 137 | VG_(addToXA) is used, the contents may be re-located without |
| 138 | warning, hence making the contents address returned here |
| 139 | invalid. */ |
| 140 | extern void VG_(getContentsXA_UNSAFE)( XArray* sr, |
| 141 | /*OUT*/void** ctsP, |
| 142 | /*OUT*/Word* usedP ); |
| 143 | |
sewardj | 588adef | 2009-08-15 22:41:51 +0000 | [diff] [blame] | 144 | /* Convenience function: printf into an XArray of HChar, adding stuff |
| 145 | at the end. This is very convenient for concocting arbitrary |
| 146 | length printf output in an XArray. Note that the resulting string |
bart | b3af9cf | 2011-10-06 19:08:37 +0000 | [diff] [blame] | 147 | is NOT zero-terminated. */ |
sewardj | 588adef | 2009-08-15 22:41:51 +0000 | [diff] [blame] | 148 | extern void VG_(xaprintf)( XArray* dst, const HChar* format, ... ) |
| 149 | PRINTF_CHECK(2, 3); |
| 150 | |
sewardj | 7df1515 | 2007-02-25 15:04:40 +0000 | [diff] [blame] | 151 | #endif // __PUB_TOOL_XARRAY_H |
| 152 | |
| 153 | /*--------------------------------------------------------------------*/ |
| 154 | /*--- end pub_tool_xarray.h ---*/ |
| 155 | /*--------------------------------------------------------------------*/ |