2 * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
20 #ifndef READY_CHECKER_HH_
21 #define READY_CHECKER_HH_
23 namespace pkgmgr_common {
26 #define EXPORT_API __attribute__((visibility("default")))
29 class EXPORT_API ReadyChecker {
31 explicit ReadyChecker(const std::string& ready_path);
32 ReadyChecker(const ReadyChecker&) = delete;
33 ReadyChecker& operator = (const ReadyChecker&) = delete;
38 std::string ready_path_;
39 std::atomic<bool> ready_ = false;
42 } // namespace pkgmgr_common
44 #endif // READY_CHECKER_HH_