1 /* 2 * Copyright (c) 2024 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 NAPI_COLLABORATION_UNDO_MANAGER_H 17 #define NAPI_COLLABORATION_UNDO_MANAGER_H 18 19 #include "db_store.h" 20 #include "napi/native_api.h" 21 #include "napi/native_common.h" 22 #include "napi/native_node_api.h" 23 #include "napi_utils.h" 24 #include "rd_adapter.h" 25 26 namespace OHOS::CollaborationEdit { 27 28 class UndoManager { 29 public: 30 UndoManager(std::string tableName, int64_t captureTimeout); 31 ~UndoManager(); 32 static napi_value NewInstance(napi_env env, napi_callback_info info); 33 34 std::string GetTableName(); 35 int64_t GetCaptureTimeout(); 36 std::shared_ptr<RdAdapter> GetAdapter(); 37 void SetDBStore(std::shared_ptr<DBStore> dbStore); 38 39 private: 40 static napi_value Constructor(napi_env env); 41 static napi_value Initialize(napi_env env, napi_callback_info info); 42 43 static napi_value Undo(napi_env env, napi_callback_info info); 44 static napi_value Redo(napi_env env, napi_callback_info info); 45 46 std::shared_ptr<RdAdapter> adapter_; 47 int64_t captureTimeout_; 48 }; 49 } // namespace OHOS::CollaborationEdit 50 #endif // NAPI_COLLABORATION_UNDO_MANAGER_H 51