1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef SQLITE_STORAGE_EXECUTOR_H 17 #define SQLITE_STORAGE_EXECUTOR_H 18 19 #include "macro_utils.h" 20 #include "sqlite_import.h" 21 #include "storage_executor.h" 22 23 namespace DistributedDB { 24 class SQLiteStorageExecutor : public StorageExecutor { 25 public: 26 SQLiteStorageExecutor(sqlite3 *dbHandle, bool writable, bool isMemDb); 27 ~SQLiteStorageExecutor() override; 28 29 // Delete the copy and assign constructors 30 DISABLE_COPY_ASSIGN_MOVE(SQLiteStorageExecutor); 31 32 int Reset() override; 33 int GetDbHandle(sqlite3 *&dbHandle) const; 34 bool IsMemory() const; 35 protected: 36 sqlite3 *dbHandle_; 37 bool isMemDb_; 38 }; 39 } // namespace DistributedDB 40 41 #endif // SQLITE_STORAGE_EXECUTOR_H 42