• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2023 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 HIVIEW_NAPI_ADAPTER_H
17 #define HIVIEW_NAPI_ADAPTER_H
18 
19 #include "napi/native_api.h"
20 #include "napi/native_node_api.h"
21 
22 namespace OHOS {
23 namespace HiviewDFX {
24 struct HiviewFileParams {
HiviewFileParamsHiviewFileParams25     HiviewFileParams(const std::string& logType, const std::string& logName, const std::string& destDir)
26         : logType(logType), logName(logName), destDir(destDir) {};
27     napi_async_work asyncWork {nullptr};
28     napi_deferred deferred {nullptr};
29     napi_ref callback {nullptr};
30     int32_t result {0};
31     std::string logType;
32     std::string logName;
33     std::string destDir;
34 };
35 
36 class HiviewNapiAdapter {
37 public:
38     static void Copy(napi_env env, HiviewFileParams* params);
39     static void Move(napi_env env, HiviewFileParams* params);
40 
41 private:
42     HiviewNapiAdapter() = default;
43     ~HiviewNapiAdapter() = default;
44 
45     static void CopyFileExecution(napi_env env, void* data);
46     static void MoveFileExecution(napi_env env, void* data);
47     static void FileOperationCompleteCallback(napi_env env, napi_status status, void* data);
48 };
49 } // namespace HiviewDFX
50 } // namespace OHOS
51 #endif