| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright (C) 2013, 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_SPARSE_TABLE_H |
| 18 #define LATINIME_SPARSE_TABLE_H |
| 19 |
| 20 #include <cstdint> |
| 21 |
| 22 #include "third_party/prediction/defines.h" |
| 23 #include "third_party/prediction/suggest/policyimpl/dictionary/utils/buffer_with
_extendable_buffer.h" |
| 24 |
| 25 namespace latinime { |
| 26 |
| 27 // Note that there is a corresponding implementation in SparseTable.java. |
| 28 // TODO: Support multiple content buffers. |
| 29 class SparseTable { |
| 30 public: |
| 31 SparseTable(BufferWithExtendableBuffer* const indexTableBuffer, |
| 32 BufferWithExtendableBuffer* const contentTableBuffer, |
| 33 const int blockSize, |
| 34 const int dataSize) |
| 35 : mIndexTableBuffer(indexTableBuffer), |
| 36 mContentTableBuffer(contentTableBuffer), |
| 37 mBlockSize(blockSize), |
| 38 mDataSize(dataSize) {} |
| 39 |
| 40 bool contains(const int id) const; |
| 41 |
| 42 uint32_t get(const int id) const; |
| 43 |
| 44 bool set(const int id, const uint32_t value); |
| 45 |
| 46 private: |
| 47 DISALLOW_IMPLICIT_CONSTRUCTORS(SparseTable); |
| 48 |
| 49 int getIndexFromContentTablePos(const int contentTablePos) const; |
| 50 |
| 51 int getPosInIndexTable(const int id) const; |
| 52 |
| 53 int getPosInContentTable(const int id, const int index) const; |
| 54 |
| 55 static const int NOT_EXIST; |
| 56 static const int INDEX_SIZE; |
| 57 |
| 58 BufferWithExtendableBuffer* const mIndexTableBuffer; |
| 59 BufferWithExtendableBuffer* const mContentTableBuffer; |
| 60 const int mBlockSize; |
| 61 const int mDataSize; |
| 62 }; |
| 63 } // namespace latinime |
| 64 #endif /* LATINIME_SPARSE_TABLE_H */ |
| OLD | NEW |