summaryrefslogtreecommitdiff
path: root/TAO/tao/Connector_Registry.cpp
blob: 12abdac641ae4d77322637f10852c49017ce933a (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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// This may look like C, but it's really -*- C++ -*-
// $Id$

#include "tao/ORB_Core.h"
#include "tao/Connector_Registry.h"
#include "tao/Stub.h"
#include "tao/Environment.h"
#include "tao/GIOP.h"

TAO_Connector_Registry::TAO_Connector_Registry (void)
{
}

TAO_Connector_Registry::~TAO_Connector_Registry (void)
{
  this->close_all ();
}

TAO_Connector *
TAO_Connector_Registry::get_connector (CORBA::ULong tag)
{

  TAO_ConnectorSetItor end =
                this->connectors_.end ();
  TAO_ConnectorSetItor connector =
                this->connectors_.begin ();

  for (;
       connector != end ;
       connector++)
    {
      if ((*connector)->tag () == tag)
        return (*connector);
    }
  return 0;
}

int
TAO_Connector_Registry::open (TAO_ORB_Core *orb_core)
{
  // Open one connector for each loaded protocol!
  TAO_ProtocolFactorySetItor end =
                orb_core->protocol_factories ()->end ();
  TAO_ProtocolFactorySetItor factory =
                orb_core->protocol_factories ()->begin ();

  for (TAO_Connector *connector = 0;
       factory != end;
       ++factory)
    {
      connector = (*factory)->factory ()->make_connector ();

      if (connector)
        {
          connectors_.insert (connector);
          connector->open (orb_core->resource_factory (),
                           orb_core->reactor ());
        }
      else
        return -1;
    }
  return 0;
}

int
TAO_Connector_Registry::close_all (void)
{

  TAO_ConnectorSetItor end =
                this->connectors_.end ();
  TAO_ConnectorSetItor connector =
                this->connectors_.begin ();

  for (;
       connector != end ;
       connector++)
    {
      if (*connector)
        (*connector)->close ();
    }
  return 0;
}

int
TAO_Connector_Registry::preconnect (TAO_EndpointSet &preconnections)
{
  TAO_EndpointSetIterator first_endpoint_set = preconnections.begin ();
  TAO_EndpointSetIterator last_endpoint_set  = preconnections.end ();

  for (TAO_EndpointSetIterator i = first_endpoint_set;
       i != last_endpoint_set;
       ++i)
    {
      TAO_ConnectorSetItor first_connector = this->connectors_.begin ();
      TAO_ConnectorSetItor last_connector  = this->connectors_.end ();

      for (TAO_ConnectorSetItor connector = first_connector;
           connector != last_connector ;
           ++connector)
        {
          if (*connector)
            (*connector)->preconnect ((*i).c_str ());
        }
    }

  return 0;  // Success
}

int
TAO_Connector_Registry::connect (TAO_Stub *&obj,
                                 TAO_Transport *&transport)
{
  TAO_Profile *profile = obj->profile_in_use ();

  // here is where we get the appropriate connector object but we are
  // the Connector Registry so call get_connector(tag)
  TAO_Connector *connector = this->get_connector (profile->tag ());

  return connector->connect (profile, transport);
}

int
TAO_Connector_Registry::make_mprofile (const char *ior,
                                       TAO_MProfile &mprofile,
                                       CORBA::Environment &ACE_TRY_ENV)
{
  if (!ior)
    {
      ACE_THROW_RETURN (CORBA::MARSHAL (), -1);
      // Failure: Null IOR string pointer
    }

  TAO_ConnectorSetItor first_connector = this->connectors_.begin ();
  TAO_ConnectorSetItor last_connector = this->connectors_.end ();

  for (TAO_ConnectorSetItor connector = first_connector;
       connector != last_connector;
       ++connector)
    {
      if (*connector)
        {
          if ((*connector)->make_mprofile (ior, mprofile, ACE_TRY_ENV) == 0)
            return 0;  // Success
        }
      else
        {
          ACE_THROW_RETURN (CORBA::MARSHAL (), -1);
          // Failure: Null pointer to connector in connector registry
        }
    }

  ACE_THROW_RETURN (CORBA::MARSHAL (), -1);
  // Failure:  None of the connectors were able to parse the
  //           URL style IOR into an MProfile.
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

template class ACE_Node<TAO_Connector*>;

template class ACE_Unbounded_Set<TAO_Connector*>;

template class ACE_Unbounded_Set_Iterator<TAO_Connector*>;

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#pragma instantiate ACE_Node<TAO_Connector*>;

#pragma instantiate ACE_Unbounded_Set<TAO_Connector*>;

#pragma instantiate ACE_Unbounded_Set_Iterator<TAO_Connector*>;

#endif