• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022 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 #ifndef PRINT_ASYNC_CALL_H
16 #define PRINT_ASYNC_CALL_H
17 
18 #include <functional>
19 #include <memory>
20 
21 #include "napi/native_api.h"
22 #include "napi/native_common.h"
23 #include "napi/native_node_api.h"
24 #include "print_constant.h"
25 
26 namespace OHOS::Print {
27 class PrintAsyncCall final {
28 public:
29     class Context {
30     public:
31         using InputAction = std::function<napi_status(napi_env, size_t, napi_value *, napi_value)>;
32         using OutputAction = std::function<napi_status(napi_env, napi_value *)>;
33         using ExecAction = std::function<void(Context *)>;
Context(InputAction input,OutputAction output)34         Context(InputAction input, OutputAction output) : input_(std::move(input)), output_(std::move(output)) {};
35 
~Context()36         virtual ~Context() {};
37         void SetAction(InputAction input, OutputAction output = nullptr)
38         {
39             input_ = input;
40             output_ = output;
41         }
42 
SetAction(OutputAction output)43         void SetAction(OutputAction output)
44         {
45             SetAction(nullptr, std::move(output));
46         }
47 
operator()48         virtual napi_status operator()(napi_env env, size_t argc, napi_value *argv, napi_value self)
49         {
50             if (input_ == nullptr) {
51                 return napi_ok;
52             }
53             return input_(env, argc, argv, self);
54         }
55 
operator()56         virtual napi_status operator()(napi_env env, napi_value *result)
57         {
58             if (output_ == nullptr) {
59                 *result = nullptr;
60                 return napi_ok;
61             }
62             return output_(env, result);
63         }
64 
Exec()65         virtual void Exec()
66         {
67             if (exec_ == nullptr) {
68                 return;
69             }
70             exec_(this);
71         };
72 
SetErrorIndex(uint32_t errorIndex)73         void SetErrorIndex(uint32_t errorIndex)
74         {
75             errorIndex_ = errorIndex;
76         }
77 
GetErrorIndex()78         uint32_t GetErrorIndex()
79         {
80             return errorIndex_;
81         }
82 
83     protected:
84         friend class PrintAsyncCall;
85         InputAction input_ = nullptr;
86         OutputAction output_ = nullptr;
87         ExecAction exec_ = nullptr;
88         uint32_t errorIndex_ = E_PRINT_NONE;
89     };
90 
91     // The default AsyncCallback in the parameters is at the end position.
92     static constexpr size_t ASYNC_DEFAULT_POS = -1;
93     PrintAsyncCall(napi_env env, napi_callback_info info, std::shared_ptr<Context> context,
94             size_t pos = ASYNC_DEFAULT_POS);
95     ~PrintAsyncCall();
96     napi_value Call(napi_env env, Context::ExecAction exec = nullptr);
97     napi_value SyncCall(napi_env env, Context::ExecAction exec = nullptr);
98 
99 private:
100     enum { ARG_ERROR, ARG_DATA, ARG_BUTT };
101     static void OnExecute(napi_env env, void *data);
102     static void OnComplete(napi_env env, napi_status status, void *data);
103     static std::string GetErrorText(uint32_t code);
104     struct AsyncContext {
105         std::shared_ptr<Context> ctx = nullptr;
106         napi_ref callback = nullptr;
107         napi_ref self = nullptr;
108         napi_deferred defer = nullptr;
109         napi_async_work work = nullptr;
110         napi_status paramStatus = napi_ok;
111     };
112     static void DeleteContext(napi_env env, AsyncContext *context);
113 
114     AsyncContext *context_ = nullptr;
115     napi_env env_ = nullptr;
116 };
117 }  // namespace OHOS::Print
118 #endif  // REQUEST_ASYNC_CALL_H
119