The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005 The Android Open Source Project |
| 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 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | // |
| 18 | // Sortable array of strings. STL-ish, but STL-free. |
| 19 | // |
| 20 | #ifndef _LIBS_UTILS_STRING_ARRAY_H |
| 21 | #define _LIBS_UTILS_STRING_ARRAY_H |
| 22 | |
| 23 | #include <stdlib.h> |
| 24 | #include <string.h> |
| 25 | |
| 26 | namespace android { |
| 27 | |
| 28 | // |
| 29 | // An expanding array of strings. Add, get, sort, delete. |
| 30 | // |
| 31 | class StringArray { |
| 32 | public: |
| 33 | StringArray() |
| 34 | : mMax(0), mCurrent(0), mArray(NULL) |
| 35 | {} |
| 36 | virtual ~StringArray() { |
| 37 | for (int i = 0; i < mCurrent; i++) |
| 38 | delete[] mArray[i]; |
| 39 | delete[] mArray; |
| 40 | } |
| 41 | |
| 42 | // |
| 43 | // Add a string. A copy of the string is made. |
| 44 | // |
| 45 | bool push_back(const char* str) { |
| 46 | if (mCurrent >= mMax) { |
| 47 | char** tmp; |
| 48 | |
| 49 | if (mMax == 0) |
| 50 | mMax = 16; // initial storage |
| 51 | else |
| 52 | mMax *= 2; |
| 53 | |
| 54 | tmp = new char*[mMax]; |
| 55 | if (tmp == NULL) |
| 56 | return false; |
| 57 | |
| 58 | memcpy(tmp, mArray, mCurrent * sizeof(char*)); |
| 59 | delete[] mArray; |
| 60 | mArray = tmp; |
| 61 | } |
| 62 | |
| 63 | int len = strlen(str); |
| 64 | mArray[mCurrent] = new char[len+1]; |
| 65 | memcpy(mArray[mCurrent], str, len+1); |
| 66 | mCurrent++; |
| 67 | |
| 68 | return true; |
| 69 | } |
| 70 | |
| 71 | // |
| 72 | // Delete an entry. |
| 73 | // |
| 74 | void erase(int idx) { |
| 75 | if (idx < 0 || idx >= mCurrent) |
| 76 | return; |
| 77 | delete[] mArray[idx]; |
| 78 | if (idx < mCurrent-1) { |
| 79 | memmove(&mArray[idx], &mArray[idx+1], |
| 80 | (mCurrent-1 - idx) * sizeof(char*)); |
| 81 | } |
| 82 | mCurrent--; |
| 83 | } |
| 84 | |
| 85 | // |
| 86 | // Sort the array. |
| 87 | // |
| 88 | void sort(int (*compare)(const void*, const void*)) { |
| 89 | qsort(mArray, mCurrent, sizeof(char*), compare); |
| 90 | } |
| 91 | |
| 92 | // |
| 93 | // Pass this to the sort routine to do an ascending alphabetical sort. |
| 94 | // |
| 95 | static int cmpAscendingAlpha(const void* pstr1, const void* pstr2) { |
| 96 | return strcmp(*(const char**)pstr1, *(const char**)pstr2); |
| 97 | } |
| 98 | |
| 99 | // |
| 100 | // Get the #of items in the array. |
| 101 | // |
| 102 | inline int size(void) const { return mCurrent; } |
| 103 | |
| 104 | // |
| 105 | // Return entry N. |
| 106 | // [should use operator[] here] |
| 107 | // |
| 108 | const char* getEntry(int idx) const { |
| 109 | if (idx < 0 || idx >= mCurrent) |
| 110 | return NULL; |
| 111 | return mArray[idx]; |
| 112 | } |
| 113 | |
| 114 | // |
| 115 | // Set entry N to specified string. |
| 116 | // [should use operator[] here] |
| 117 | // |
| 118 | void setEntry(int idx, const char* str) { |
| 119 | if (idx < 0 || idx >= mCurrent) |
| 120 | return; |
| 121 | delete[] mArray[idx]; |
| 122 | int len = strlen(str); |
| 123 | mArray[idx] = new char[len+1]; |
| 124 | memcpy(mArray[idx], str, len+1); |
| 125 | } |
| 126 | |
| 127 | private: |
| 128 | int mMax; |
| 129 | int mCurrent; |
| 130 | char** mArray; |
| 131 | }; |
| 132 | |
| 133 | }; // namespace android |
| 134 | |
| 135 | #endif // _LIBS_UTILS_STRING_ARRAY_H |