| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright (C) 2014 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 #ifndef LATINIME_BYTE_ARRAY_VIEW_H |
| 18 #define LATINIME_BYTE_ARRAY_VIEW_H |
| 19 |
| 20 #include <cstdint> |
| 21 #include <cstdlib> |
| 22 |
| 23 #include "third_party/prediction/defines.h" |
| 24 |
| 25 namespace latinime { |
| 26 |
| 27 /** |
| 28 * Helper class used to keep track of read accesses for a given memory region. |
| 29 */ |
| 30 class ReadOnlyByteArrayView { |
| 31 public: |
| 32 ReadOnlyByteArrayView() : mPtr(nullptr), mSize(0) {} |
| 33 |
| 34 ReadOnlyByteArrayView(const uint8_t* const ptr, const size_t size) |
| 35 : mPtr(ptr), mSize(size) {} |
| 36 |
| 37 AK_FORCE_INLINE size_t size() const { return mSize; } |
| 38 |
| 39 AK_FORCE_INLINE const uint8_t* data() const { return mPtr; } |
| 40 |
| 41 private: |
| 42 DISALLOW_ASSIGNMENT_OPERATOR(ReadOnlyByteArrayView); |
| 43 |
| 44 const uint8_t* const mPtr; |
| 45 const size_t mSize; |
| 46 }; |
| 47 |
| 48 /** |
| 49 * Helper class used to keep track of read-write accesses for a given memory |
| 50 * region. |
| 51 */ |
| 52 class ReadWriteByteArrayView { |
| 53 public: |
| 54 ReadWriteByteArrayView() : mPtr(nullptr), mSize(0) {} |
| 55 |
| 56 ReadWriteByteArrayView(uint8_t* const ptr, const size_t size) |
| 57 : mPtr(ptr), mSize(size) {} |
| 58 |
| 59 AK_FORCE_INLINE size_t size() const { return mSize; } |
| 60 |
| 61 AK_FORCE_INLINE uint8_t* data() const { return mPtr; } |
| 62 |
| 63 AK_FORCE_INLINE ReadOnlyByteArrayView getReadOnlyView() const { |
| 64 return ReadOnlyByteArrayView(mPtr, mSize); |
| 65 } |
| 66 |
| 67 ReadWriteByteArrayView subView(const size_t start, const size_t n) const { |
| 68 ASSERT(start + n <= mSize); |
| 69 return ReadWriteByteArrayView(mPtr + start, n); |
| 70 } |
| 71 |
| 72 private: |
| 73 DISALLOW_ASSIGNMENT_OPERATOR(ReadWriteByteArrayView); |
| 74 |
| 75 uint8_t* const mPtr; |
| 76 const size_t mSize; |
| 77 }; |
| 78 |
| 79 } // namespace latinime |
| 80 #endif // LATINIME_BYTE_ARRAY_VIEW_H |
| OLD | NEW |