Release version 0.28.2
[platform/core/appfw/pkgmgr-info.git] / src / common / ready_checker.hh
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <string>
18 #include <atomic>
19
20 #ifndef READY_CHECKER_HH_
21 #define READY_CHECKER_HH_
22
23 namespace pkgmgr_common {
24
25 #ifndef EXPORT_API
26 #define EXPORT_API __attribute__((visibility("default")))
27 #endif
28
29 class EXPORT_API ReadyChecker {
30  public:
31   explicit ReadyChecker(const std::string& ready_path);
32   ReadyChecker(const ReadyChecker&) = delete;
33   ReadyChecker& operator = (const ReadyChecker&) = delete;
34   bool IsReady() const;
35   bool Check();
36
37  private:
38   std::string ready_path_;
39   std::atomic<bool> ready_ = false;
40 };
41
42 }  // namespace pkgmgr_common
43
44 #endif  // READY_CHECKER_HH_