49871a97586d88794dfb20e64c86f63e9c6b84d1
[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 <gio/gio.h>
18 #include <glib.h>
19 #include <sys/inotify.h>
20
21 #include <string>
22
23 #ifndef READY_CHECKER_HH_
24 #define READY_CHECKER_HH_
25
26 namespace pkgmgr_common {
27
28 #ifndef EXPORT_API
29 #define EXPORT_API __attribute__((visibility("default")))
30 #endif
31
32 class EXPORT_API ReadyChecker {
33  public:
34   explicit ReadyChecker(const std::string& ready_path);
35   ~ReadyChecker();
36   ReadyChecker(const ReadyChecker&) = delete;
37   ReadyChecker& operator = (const ReadyChecker&) = delete;
38   bool IsReady() const;
39
40  private:
41   std::string ready_path_;
42   std::string ready_file_;
43   int fd_ = 0;
44   int wd_ = 0;
45   GIOChannel* channel_ = nullptr;
46   int tag_ = 0;
47   bool ready_ = false;
48   bool disposed_ = false;
49
50   void Dispose();
51   static gboolean OnReceiveEvent(GIOChannel* channel, GIOCondition cond,
52       gpointer user_data);
53 };
54
55 }  // namespace pkgmgr_common
56
57 #endif  // READY_CHECKER_HH_