annotate osx/include/kj/vector.h @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 45360b968bf4
children
rev   line source
cannam@147 1 // Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
cannam@147 2 // Licensed under the MIT License:
cannam@147 3 //
cannam@147 4 // Permission is hereby granted, free of charge, to any person obtaining a copy
cannam@147 5 // of this software and associated documentation files (the "Software"), to deal
cannam@147 6 // in the Software without restriction, including without limitation the rights
cannam@147 7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
cannam@147 8 // copies of the Software, and to permit persons to whom the Software is
cannam@147 9 // furnished to do so, subject to the following conditions:
cannam@147 10 //
cannam@147 11 // The above copyright notice and this permission notice shall be included in
cannam@147 12 // all copies or substantial portions of the Software.
cannam@147 13 //
cannam@147 14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
cannam@147 15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
cannam@147 16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
cannam@147 17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
cannam@147 18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
cannam@147 19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
cannam@147 20 // THE SOFTWARE.
cannam@147 21
cannam@147 22 #ifndef KJ_VECTOR_H_
cannam@147 23 #define KJ_VECTOR_H_
cannam@147 24
cannam@147 25 #if defined(__GNUC__) && !KJ_HEADER_WARNINGS
cannam@147 26 #pragma GCC system_header
cannam@147 27 #endif
cannam@147 28
cannam@147 29 #include "array.h"
cannam@147 30
cannam@147 31 namespace kj {
cannam@147 32
cannam@147 33 template <typename T>
cannam@147 34 class Vector {
cannam@147 35 // Similar to std::vector, but based on KJ framework.
cannam@147 36 //
cannam@147 37 // This implementation always uses move constructors when growing the backing array. If the
cannam@147 38 // move constructor throws, the Vector is left in an inconsistent state. This is acceptable
cannam@147 39 // under KJ exception theory which assumes that exceptions leave things in inconsistent states.
cannam@147 40
cannam@147 41 // TODO(someday): Allow specifying a custom allocator.
cannam@147 42
cannam@147 43 public:
cannam@147 44 inline Vector() = default;
cannam@147 45 inline explicit Vector(size_t capacity): builder(heapArrayBuilder<T>(capacity)) {}
cannam@147 46
cannam@147 47 inline operator ArrayPtr<T>() { return builder; }
cannam@147 48 inline operator ArrayPtr<const T>() const { return builder; }
cannam@147 49 inline ArrayPtr<T> asPtr() { return builder.asPtr(); }
cannam@147 50 inline ArrayPtr<const T> asPtr() const { return builder.asPtr(); }
cannam@147 51
cannam@147 52 inline size_t size() const { return builder.size(); }
cannam@147 53 inline bool empty() const { return size() == 0; }
cannam@147 54 inline size_t capacity() const { return builder.capacity(); }
cannam@147 55 inline T& operator[](size_t index) const { return builder[index]; }
cannam@147 56
cannam@147 57 inline const T* begin() const { return builder.begin(); }
cannam@147 58 inline const T* end() const { return builder.end(); }
cannam@147 59 inline const T& front() const { return builder.front(); }
cannam@147 60 inline const T& back() const { return builder.back(); }
cannam@147 61 inline T* begin() { return builder.begin(); }
cannam@147 62 inline T* end() { return builder.end(); }
cannam@147 63 inline T& front() { return builder.front(); }
cannam@147 64 inline T& back() { return builder.back(); }
cannam@147 65
cannam@147 66 inline Array<T> releaseAsArray() {
cannam@147 67 // TODO(perf): Avoid a copy/move by allowing Array<T> to point to incomplete space?
cannam@147 68 if (!builder.isFull()) {
cannam@147 69 setCapacity(size());
cannam@147 70 }
cannam@147 71 return builder.finish();
cannam@147 72 }
cannam@147 73
cannam@147 74 template <typename... Params>
cannam@147 75 inline T& add(Params&&... params) {
cannam@147 76 if (builder.isFull()) grow();
cannam@147 77 return builder.add(kj::fwd<Params>(params)...);
cannam@147 78 }
cannam@147 79
cannam@147 80 template <typename Iterator>
cannam@147 81 inline void addAll(Iterator begin, Iterator end) {
cannam@147 82 size_t needed = builder.size() + (end - begin);
cannam@147 83 if (needed > builder.capacity()) grow(needed);
cannam@147 84 builder.addAll(begin, end);
cannam@147 85 }
cannam@147 86
cannam@147 87 template <typename Container>
cannam@147 88 inline void addAll(Container&& container) {
cannam@147 89 addAll(container.begin(), container.end());
cannam@147 90 }
cannam@147 91
cannam@147 92 inline void removeLast() {
cannam@147 93 builder.removeLast();
cannam@147 94 }
cannam@147 95
cannam@147 96 inline void resize(size_t size) {
cannam@147 97 if (size > builder.capacity()) grow(size);
cannam@147 98 builder.resize(size);
cannam@147 99 }
cannam@147 100
cannam@147 101 inline void operator=(decltype(nullptr)) {
cannam@147 102 builder = nullptr;
cannam@147 103 }
cannam@147 104
cannam@147 105 inline void clear() {
cannam@147 106 while (builder.size() > 0) {
cannam@147 107 builder.removeLast();
cannam@147 108 }
cannam@147 109 }
cannam@147 110
cannam@147 111 inline void truncate(size_t size) {
cannam@147 112 builder.truncate(size);
cannam@147 113 }
cannam@147 114
cannam@147 115 inline void reserve(size_t size) {
cannam@147 116 if (size > builder.capacity()) {
cannam@147 117 setCapacity(size);
cannam@147 118 }
cannam@147 119 }
cannam@147 120
cannam@147 121 private:
cannam@147 122 ArrayBuilder<T> builder;
cannam@147 123
cannam@147 124 void grow(size_t minCapacity = 0) {
cannam@147 125 setCapacity(kj::max(minCapacity, capacity() == 0 ? 4 : capacity() * 2));
cannam@147 126 }
cannam@147 127 void setCapacity(size_t newSize) {
cannam@147 128 if (builder.size() > newSize) {
cannam@147 129 builder.truncate(newSize);
cannam@147 130 }
cannam@147 131 ArrayBuilder<T> newBuilder = heapArrayBuilder<T>(newSize);
cannam@147 132 newBuilder.addAll(kj::mv(builder));
cannam@147 133 builder = kj::mv(newBuilder);
cannam@147 134 }
cannam@147 135 };
cannam@147 136
cannam@147 137 template <typename T>
cannam@147 138 inline auto KJ_STRINGIFY(const Vector<T>& v) -> decltype(toCharSequence(v.asPtr())) {
cannam@147 139 return toCharSequence(v.asPtr());
cannam@147 140 }
cannam@147 141
cannam@147 142 } // namespace kj
cannam@147 143
cannam@147 144 #endif // KJ_VECTOR_H_