00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef ACE_EVENT_HANDLER_H
00014 #define ACE_EVENT_HANDLER_H
00015 #include "ace/pre.h"
00016
00017 #include "ace/ACE_export.h"
00018
00019 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00020 # pragma once
00021 #endif
00022
00023 #include "ace/os_include/os_signal.h"
00024 #include "ace/Atomic_Op.h"
00025 #include "ace/Synch_Traits.h"
00026
00027 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
00028
00029
00030 class ACE_Message_Block;
00031 class ACE_Reactor;
00032 class ACE_Reactor_Timer_Interface;
00033 class ACE_Thread_Manager;
00034 class ACE_Process;
00035
00036 typedef unsigned long ACE_Reactor_Mask;
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048 class ACE_Export ACE_Event_Handler
00049 {
00050 public:
00051 enum
00052 {
00053 LO_PRIORITY = 0,
00054 HI_PRIORITY = 10,
00055 NULL_MASK = 0,
00056 #if defined (ACE_USE_POLL)
00057 READ_MASK = POLLIN,
00058 WRITE_MASK = POLLOUT,
00059 EXCEPT_MASK = POLLPRI,
00060 #else
00061 READ_MASK = (1 << 0),
00062 WRITE_MASK = (1 << 1),
00063 EXCEPT_MASK = (1 << 2),
00064 #endif
00065 ACCEPT_MASK = (1 << 3),
00066 CONNECT_MASK = (1 << 4),
00067 TIMER_MASK = (1 << 5),
00068 QOS_MASK = (1 << 6),
00069 GROUP_QOS_MASK = (1 << 7),
00070 SIGNAL_MASK = (1 << 8),
00071 ALL_EVENTS_MASK = READ_MASK |
00072 WRITE_MASK |
00073 EXCEPT_MASK |
00074 ACCEPT_MASK |
00075 CONNECT_MASK |
00076 TIMER_MASK |
00077 QOS_MASK |
00078 GROUP_QOS_MASK |
00079 SIGNAL_MASK,
00080 RWE_MASK = READ_MASK |
00081 WRITE_MASK |
00082 EXCEPT_MASK,
00083 DONT_CALL = (1 << 9)
00084 };
00085
00086
00087 virtual ~ACE_Event_Handler (void);
00088
00089
00090 virtual ACE_HANDLE get_handle (void) const;
00091
00092
00093 virtual void set_handle (ACE_HANDLE);
00094
00095
00096
00097
00098
00099
00100 virtual int priority (void) const;
00101
00102
00103 virtual void priority (int priority);
00104
00105
00106 virtual int handle_input (ACE_HANDLE fd = ACE_INVALID_HANDLE);
00107
00108
00109
00110 virtual int handle_output (ACE_HANDLE fd = ACE_INVALID_HANDLE);
00111
00112
00113 virtual int handle_exception (ACE_HANDLE fd = ACE_INVALID_HANDLE);
00114
00115
00116
00117
00118
00119
00120
00121 virtual int handle_timeout (const ACE_Time_Value ¤t_time,
00122 const void *act = 0);
00123
00124
00125 virtual int handle_exit (ACE_Process *);
00126
00127
00128
00129
00130
00131 virtual int handle_close (ACE_HANDLE handle,
00132 ACE_Reactor_Mask close_mask);
00133
00134
00135
00136 virtual int handle_signal (int signum, siginfo_t * = 0, ucontext_t * = 0);
00137
00138 enum
00139 {
00140
00141 ACE_EVENT_HANDLER_NOT_RESUMED = -1,
00142
00143
00144 ACE_REACTOR_RESUMES_HANDLER = 0,
00145
00146 ACE_APPLICATION_RESUMES_HANDLER
00147 };
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160 virtual int resume_handler (void);
00161
00162 virtual int handle_qos (ACE_HANDLE = ACE_INVALID_HANDLE);
00163 virtual int handle_group_qos (ACE_HANDLE = ACE_INVALID_HANDLE);
00164
00165
00166
00167 virtual void reactor (ACE_Reactor *reactor);
00168
00169
00170 virtual ACE_Reactor *reactor (void) const;
00171
00172
00173 virtual ACE_Reactor_Timer_Interface *reactor_timer_interface (void) const;
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185 static ACE_THR_FUNC_RETURN read_adapter (void *event_handler);
00186
00187
00188
00189
00190
00191
00192 static int register_stdin_handler (ACE_Event_Handler *eh,
00193 ACE_Reactor *reactor,
00194 ACE_Thread_Manager *thr_mgr,
00195 int flags = THR_DETACHED);
00196
00197
00198 static int remove_stdin_handler (ACE_Reactor *reactor,
00199 ACE_Thread_Manager *thr_mgr);
00200
00201
00202 typedef long Reference_Count;
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212 virtual Reference_Count add_reference (void);
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223 virtual Reference_Count remove_reference (void);
00224
00225
00226
00227
00228
00229
00230 class ACE_Export Policy
00231 {
00232
00233 public:
00234
00235
00236 virtual ~Policy (void);
00237 };
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251 class ACE_Export Reference_Counting_Policy : public Policy
00252 {
00253
00254 friend class ACE_Event_Handler;
00255
00256 public:
00257
00258 enum Value
00259 {
00260
00261 ENABLED,
00262
00263 DISABLED
00264 };
00265
00266
00267 Value value (void) const;
00268
00269
00270 void value (Value value);
00271
00272 private:
00273
00274
00275 Reference_Counting_Policy (Value value);
00276
00277
00278 Value value_;
00279 };
00280
00281
00282 Reference_Counting_Policy &reference_counting_policy (void);
00283
00284 protected:
00285
00286 ACE_Event_Handler (ACE_Reactor * = 0,
00287 int priority = ACE_Event_Handler::LO_PRIORITY);
00288
00289
00290 typedef ACE_Atomic_Op<ACE_SYNCH_MUTEX, Reference_Count> Atomic_Reference_Count;
00291
00292
00293 Atomic_Reference_Count reference_count_;
00294
00295 private:
00296
00297
00298 int priority_;
00299
00300
00301 ACE_Reactor *reactor_;
00302
00303
00304 Reference_Counting_Policy reference_counting_policy_;
00305 };
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315 class ACE_Export ACE_Event_Handler_var
00316 {
00317
00318 public:
00319
00320
00321 ACE_Event_Handler_var (void);
00322
00323
00324 ACE_Event_Handler_var (ACE_Event_Handler *p);
00325
00326
00327 ACE_Event_Handler_var (const ACE_Event_Handler_var &b);
00328
00329
00330 ~ACE_Event_Handler_var (void);
00331
00332
00333 ACE_Event_Handler_var &operator= (ACE_Event_Handler *p);
00334
00335
00336 ACE_Event_Handler_var &operator= (const ACE_Event_Handler_var &b);
00337
00338
00339 ACE_Event_Handler *operator-> () const;
00340
00341
00342 ACE_Event_Handler *handler (void) const;
00343
00344
00345 ACE_Event_Handler *release (void);
00346
00347
00348 void reset (ACE_Event_Handler *p = 0);
00349
00350 private:
00351
00352
00353 ACE_Event_Handler *ptr_;
00354 };
00355
00356
00357
00358
00359
00360
00361
00362 class ACE_Export ACE_Notification_Buffer
00363 {
00364 public:
00365 ACE_Notification_Buffer (void);
00366
00367 ACE_Notification_Buffer (ACE_Event_Handler *eh,
00368 ACE_Reactor_Mask mask);
00369
00370
00371 ~ACE_Notification_Buffer (void);
00372
00373
00374
00375 ACE_Event_Handler *eh_;
00376
00377
00378 ACE_Reactor_Mask mask_;
00379 };
00380
00381 ACE_END_VERSIONED_NAMESPACE_DECL
00382
00383 #if defined (__ACE_INLINE__)
00384 #include "ace/Event_Handler.inl"
00385 #endif
00386
00387 #include "ace/post.h"
00388 #endif