summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/UAV/UCAV/UCAV_exec.cpp
blob: 19abdb3416cfc1e7f4fcde54cb3c87ed6361e1e5 (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
// $Id$

#include "CIAO_common.h"
#include "UCAV_exec.h"

#define DISPLACEMENT 256

/// Default constructor.
MyImpl::UCAV_exec_i::UCAV_exec_i (void)
  : str_ ("BM DEVICE DATA")
{

}

/// Default destructor.
MyImpl::UCAV_exec_i::~UCAV_exec_i ()
{
}

void
MyImpl::UCAV_exec_i::push_start_move (BBN_UAV::StartMove *ev
                                          ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  ACE_DEBUG ((LM_DEBUG,
              "UCAV, received a StartMove from UCAV_GS \n"));
}

// Operations from Components::SessionComponent
void
MyImpl::UCAV_exec_i::set_session_context (Components::SessionContext_ptr ctx
                                         ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException,
                   Components::CCMException))
{
  ACE_DEBUG ((LM_DEBUG, "MyImpl::UCAV_exec_i::set_session_context\n"));

  this->context_ =
    BBN_UAV::CCM_UCAV_Context::_narrow (ctx
                                         ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;

  if (CORBA::is_nil (this->context_.in ()))
    ACE_THROW (CORBA::INTERNAL ());
  // Urm, we actually discard exceptions thown from this operation.
}

void
MyImpl::UCAV_exec_i::ccm_activate (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException,
                   Components::CCMException))
{
  ACE_DEBUG ((LM_DEBUG, "MyImpl::UCAV_exec_i::ccm_activate\n"));
  char *argv[1] = { "UCAV_exec"};

  int argc = sizeof(argv)/sizeof(argv[0]);
  CORBA::ORB_var orb = CORBA::ORB_init(argc, argv ACE_ENV_ARG_PARAMETER);

  CIAO_REGISTER_VALUE_FACTORY (orb.in(), BBN_UAV::StartMove_init,
                               BBN_UAV::StartMove);
}

void
MyImpl::UCAV_exec_i::ccm_passivate (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException,
                   Components::CCMException))
{
  ACE_DEBUG ((LM_DEBUG, "MyImpl::UCAV_exec_i::ccm_passivate\n"));
}

void
MyImpl::UCAV_exec_i::ccm_remove (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException,
                   Components::CCMException))
{
  ACE_DEBUG ((LM_DEBUG, "MyImpl::UCAV_exec_i::ccm_remove\n"));
}

/// Default ctor.
MyImpl::UCAVHome_exec_i::UCAVHome_exec_i ()
{
}

/// Default dtor.
MyImpl::UCAVHome_exec_i::~UCAVHome_exec_i ()
{
}

// Explicit home operations.

// Implicit home operations.

::Components::EnterpriseComponent_ptr
MyImpl::UCAVHome_exec_i::create (ACE_ENV_SINGLE_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException,
                   Components::CCMException))
{
  return new MyImpl::UCAV_exec_i;
}


extern "C" UCAV_EXEC_Export ::Components::HomeExecutorBase_ptr
createUCAVHome_Impl (void)
{
  return new MyImpl::UCAVHome_exec_i;
}