summaryrefslogtreecommitdiff
path: root/examples/Reactor/Proactor/test_multiple_loops.cpp
blob: cd262b39fef3f0ce0d87f1e54757360b9e8d2627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// $Id: test_timeout.cpp

// ============================================================================
//
// = LIBRARY
//    examples
// 
// = FILENAME
//    test_multiple_loops.cpp
//
// = DESCRIPTION
//
//    This example application shows how to write programs that
//    combine the Proactor and Reactor event loops
//
// = AUTHOR
//    Irfan Pyarali
// 
// ============================================================================

#include "ace/Proactor.h"
#include "ace/Synch.h"
#include "ace/Task.h"

ACE_RCSID(Proactor, test_multiple_loops, "$Id$")

class Timeout_Handler : public ACE_Handler, public ACE_Event_Handler
  // = TITLE
  //     Generic timeout handler.
{
public:
  Timeout_Handler (void) 
    { 
    }

  virtual void handle_time_out (const ACE_Time_Value &tv,
			       const void *arg)
    // Print out when timeouts occur.
    {
      ACE_DEBUG ((LM_DEBUG, "(%t) %d timeout occurred for %s @ %d.\n", 
		  ++count_,
		  (char *) arg,
		  tv.sec ()));

      // Since there is only one thread that can do the timeouts in
      // Reactor, lets keep the handle_timeout short for that
      // thread.
      if (ACE_OS::strcmp ((char *) arg, "Proactor") == 0)
	// Sleep for a while
	ACE_OS::sleep (1);
    }
  virtual int handle_timeout (const ACE_Time_Value &tv,
			      const void *arg)
    {
      this->handle_time_out (tv, arg);
      return 0;
    }
  
private:
  ACE_Atomic_Op <ACE_Thread_Mutex, int> count_;
};

class Worker : public ACE_Task <ACE_NULL_SYNCH>
{
public:
  int svc (void)
  {
    ACE_DEBUG ((LM_DEBUG, "(%t) Worker started\n"));

    // Handle events for 13 seconds.
    ACE_Time_Value run_time (13);

    // Try to become the owner
    ACE_Reactor::instance ()->owner (ACE_Thread::self ());

    if (ACE_Reactor::run_event_loop (run_time) == -1)
      ACE_ERROR_RETURN ((LM_ERROR, "%p.\n", "Worker::svc"), -1);
    else
      ACE_DEBUG ((LM_DEBUG, "(%t) work complete\n"));

    return 0;
  }
};

int
main (int, char *[])
{
  Timeout_Handler handler;
  ACE_Proactor proactor (0, 0, 1);

  ACE_Reactor::instance ()->register_handler (&proactor);
  
  // Register a 2 second timer.
  ACE_Time_Value foo_tv (2);
  if (proactor.schedule_timer (handler,
			       (void *) "Proactor",
			       ACE_Time_Value::zero,
			       foo_tv) == -1)
    ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "schedule_timer"), -1);

  // Register a 3 second timer.
  ACE_Time_Value bar_tv (3);
  if (ACE_Reactor::instance ()->schedule_timer (&handler,
						(void *) "Reactor",
						ACE_Time_Value::zero,
						bar_tv) == -1)
    ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "schedule_timer"), -1);

  Worker worker;

  if (worker.activate (THR_NEW_LWP, 10) == -1)
    ACE_ERROR_RETURN ((LM_ERROR, "%p.\n", "main"), -1);
  
  ACE_Thread_Manager::instance ()->wait ();

  // Remove from reactor
  ACE_Reactor::instance ()->remove_handler (&proactor, 
                                            ACE_Event_Handler::DONT_CALL);

  return 0;
}