Merge remote-tracking branch 'origin/tizen' into new_text
[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 <dali/public-api/signals/callback.h>
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  * @brief Monitors the given file descriptor and whenever anything is written to it, the provided
40  * callback is called
41  */
42 class FileDescriptorMonitor
43 {
44 public:
45
46   /**
47    * Constructor
48    * @param[in]  fileDescriptor  The file descriptor to monitor
49    * @param[in]  callback        Called when anything is written to the file descriptor
50    * @note The ownership of callback is taken by this class.
51    */
52   FileDescriptorMonitor( int fileDescriptor, CallbackBase* callback );
53
54   /**
55    * Destructor
56    */
57   ~FileDescriptorMonitor();
58
59 private:
60   struct Impl;
61   Impl* mImpl;
62 };
63
64 } // namespace Adaptor
65
66 } // namespace Internal
67
68 } // namespace Dali
69
70 #endif // __DALI_INTERNAL_FILE_DESCRIPTOR_MONITOR_H__