summaryrefslogtreecommitdiff
path: root/tests/CIAO_ComponentServer/Local_Facet/Local_Facet_exec.cpp
blob: 37a96ee10e376355ddb29564635b31152b2371f2 (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
// -*- C++ -*-
// $Id$

#include "Local_Facet_exec.h"
#include "ciao/Logger/Log_Macros.h"

namespace CIAO_Bar_Impl
{
  //============================================================
  // Facet Executor Implementation Class: Foo_exec_i
  //============================================================

  Foo_exec_i::Foo_exec_i (void)
  {
  }

  Foo_exec_i::~Foo_exec_i (void)
  {
  }

  void Foo_exec_i::simple (void)
  {
    ACE_DEBUG ((LM_INFO, "Got simple invocation\n"));
  }

  // Operations from ::Foo

  //============================================================
  // Component Executor Implementation Class: Bar_exec_i
  //============================================================

  Bar_exec_i::Bar_exec_i (void)
  {
  }

  Bar_exec_i::~Bar_exec_i (void)
  {
  }

  // Supported operations and attributes.

  // Component attributes and port operations.

  ::CCM_Foo_ptr
  Bar_exec_i::get_foo_out (void)
  {
    return new Foo_exec_i ();
  }

  // Operations from Components::SessionComponent.

  void
  Bar_exec_i::set_session_context (
    ::Components::SessionContext_ptr ctx)
  {
    this->context_ =
      ::CCM_Bar_Context::_narrow (ctx);

    if ( ::CORBA::is_nil (this->context_.in ()))
      {
        throw ::CORBA::INTERNAL ();
      }
  }

  void
  Bar_exec_i::run_test (void)
  {
    ::Foo_var foo_intf = this->context_->get_connection_foo_in ();

    if (CORBA::is_nil (foo_intf))
      {
        ACE_ERROR ((LM_ERROR, "ERROR: Local_Facet_Test: got a nil object reference for my connection\n"));
        return;
      }

    ACE_DEBUG ((LM_DEBUG, "Invoking simple\n"));
    foo_intf->simple ();

    ACE_DEBUG ((LM_INFO, "Test successful!\n"));
  }

  void
  Bar_exec_i::configuration_complete (void)
  {
    /* Your code here. */
  }

  void
  Bar_exec_i::ccm_activate (void)
  {
    /* Your code here. */
  }

  void
  Bar_exec_i::ccm_passivate (void)
  {
    /* Your code here. */
  }

  void
  Bar_exec_i::ccm_remove (void)
  {
    /* Your code here. */
  }

  extern "C" LOCAL_FACET_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_Bar_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      Bar_exec_i);

    return retval;
  }
}