IONotifier.h
1 /*
2  * Copyright (C) 2006-2018 Marc Boris Duerner
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * As a special exception, you may use this file as part of a free
10  * software library without restriction. Specifically, if other files
11  * instantiate templates or use macros or inline functions from this
12  * file, or you compile this file and link it with other files to
13  * produce an executable, this file does not by itself cause the
14  * resulting executable to be covered by the GNU General Public
15  * License. This exception does not however invalidate any other
16  * reasons why the executable file might be covered by the GNU Library
17  * General Public License.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22  * Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public
25  * License along with this library; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27  */
28 
29 #ifndef Pt_System_IONotifier_h
30 #define Pt_System_IONotifier_h
31 
32 #include <Pt/System/Api.h>
33 #include <Pt/System/IOError.h>
34 #include <Pt/System/Selectable.h>
35 #include <Pt/Types.h>
36 #include <Pt/Signal.h>
37 
38 namespace Pt {
39 
40 namespace System {
41 
42 class PT_SYSTEM_API IONotifier : public Selectable
43 {
44  public:
45  enum WaitFlags
46  {
47  Read = 1,
48  Write = 2,
49  Except = 4
50  };
51 
52  public:
53  IONotifier();
54 
55  explicit IONotifier(void* handle);
56 
57  explicit IONotifier(int fd);
58 
59  ~IONotifier();
60 
61  void reset();
62 
63  void setFd(int fd);
64 
65  void setHandle(void* handle);
66 
67  void beginWait(int flags);
68 
69  int endWait();
70 
71  Pt::Signal<>& eventReady()
72  { return _eventReady; }
73 
76  EventLoop* loop() const
77  { return _loop; }
78 
79  protected:
80  virtual void onAttach(EventLoop& loop);
81 
82  virtual void onDetach(EventLoop& loop);
83 
84  virtual void onCancel();
85 
86  virtual bool onRun();
87 
88  private:
89  class IONotifierImpl* _impl;
90  EventLoop* _loop;
91  bool _isWaiting;
92  Pt::Signal<> _eventReady;
93 };
94 
95 } // namespace System
96 
97 } // namespace Pt
98 
99 #endif // Pt_System_IODevice_h
Multicast Signal to call multiple slots.
Definition: Signal.h:109