[dali_1.0.1] Merge branch 'tizen'
[platform/core/uifw/dali-adaptor.git] / adaptors / common / file-descriptor-monitor.h
1 #ifndef __DALI_INTERNAL_FILE_DESCRIPTOR_MONITOR_H__
2 #define __DALI_INTERNAL_FILE_DESCRIPTOR_MONITOR_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <boost/function.hpp>
23
24 namespace Dali
25 {
26
27 namespace Integration
28 {
29 class Core;
30 }
31
32 namespace Internal
33 {
34
35 namespace Adaptor
36 {
37
38 /**
39  * Monitors the given file descriptor and whenever anything is written to it, it calls
40  * the given boost function.
41  */
42 class FileDescriptorMonitor
43 {
44 public:
45
46   /**
47    * Constructor
48    * @param[in]  fileDescriptor  The file descriptor to monitor
49    * @param[in]  functor         The function to call when anything is written to the file descriptor
50    */
51   FileDescriptorMonitor(int fileDescriptor, boost::function<void()> functor);
52
53   /**
54    * Destructor
55    */
56   ~FileDescriptorMonitor();
57
58 private:
59   struct Impl;
60   Impl* mImpl;
61 };
62
63 } // namespace Adaptor
64
65 } // namespace Internal
66
67 } // namespace Dali
68
69 #endif // __DALI_INTERNAL_FILE_DESCRIPTOR_MONITOR_H__