summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Oneway_Send_Timeouts/Server_Task.h
blob: ed5db5eb1bd87390d5ca26079c31bb41ed124ccc (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
// $Id$

#ifndef _SERVER_TASK_
#define _SERVER_TASK_

#include "Server.h"

#include "ace/Task.h"
#include "ace/ARGV.h"
#include "ace/Auto_Ptr.h"

class Server_Task : public ACE_Task_Base
{
 public:

  Server_Task (const std::string& args)
    : args_ (args)
  { }
  ~Server_Task ()
    {
      this->force_shutdown ();
    }

  virtual int svc ()
  {
    bool initializer = false;
    {
      ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->mutex_, -1);
      if (server_.get() == 0) {
  ACE_ARGV my_args (args_.c_str());

  // Initialize Server ORB in new thread
  ACE_auto_ptr_reset (server_, new Server (my_args.argc(), my_args.argv()));
  ACE_ASSERT (server_.get() != 0);
  initializer = true;
      }
    }

    if (initializer) {
      server_->run (false);
      this->force_shutdown (); // servant thread is responsible for shutdown
    }
    else {
      server_->run (true);
    }

    return 0;
  }

  bool ready ()
  {
    if (server_.get() != 0) {
      return server_->init_;
    }

    return false;
  }

  void force_shutdown ()
  {
    if (server_.get() != 0) {
      server_->shutdown ();
    }
  }

 private:
  std::string args_;
  std::auto_ptr<Server> server_;
  TAO_SYNCH_MUTEX mutex_;
};

#endif //_SERVER_TASK_