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 APPEXECFWK_CLEANCACHE_CALLBACK_H
17 #define APPEXECFWK_CLEANCACHE_CALLBACK_H
18 
19 #include <future>
20 #include <uv.h>
21 
22 #include "napi/native_api.h"
23 #include "napi/native_node_api.h"
24 
25 #include "clean_cache_callback_host.h"
26 #include "nocopyable.h"
27 
28 class CleanCacheCallback : public OHOS::AppExecFwk::CleanCacheCallbackHost {
29 public:
30     explicit CleanCacheCallback(int32_t err);
31     virtual ~CleanCacheCallback();
32     virtual void OnCleanCacheFinished(bool err) override;
33 
GetErr()34     int32_t GetErr() const
35     {
36         return err_;
37     }
38 
39 public:
40     uv_sem_t uvSem_;
41 
42 private:
43     int32_t err_;
44     DISALLOW_COPY_AND_MOVE(CleanCacheCallback);
45 };
46 
47 #endif // APPEXECFWK_CLEANCACHE_CALLBACK_H
48 
49