summaryrefslogtreecommitdiff
path: root/TAO/tao/ior_corbaloc/CORBALOC_Parser.cpp
blob: e9651c392d047c47df890644c4e6cc69737e9ea4 (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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
// $Id$

#include "CORBALOC_Parser.h"
#include "tao/ior_dll/Object_Loader.h"
#include "tao/Object.h"
#include "tao/ORB.h"
#include "tao/Exception.h"
#include "tao/Environment.h"
#include "ace/Read_Buffer.h"

#if !defined(__ACE_INLINE__)
#include "CORBALOC_Parser.i"
#endif /* __ACE_INLINE__ */

ACE_RCSID(tao, CORBALOC_Parser, "$Id$")

TAO_CORBALOC_Parser::~TAO_CORBALOC_Parser (void)
{
}


static const char corbaloc_prefix[] = "corbaloc:";

int
TAO_CORBALOC_Parser::match_prefix (const char *ior_string) const
{
  return (ACE_OS::strncmp (ior_string,
                           corbaloc_prefix,
                           sizeof corbaloc_prefix - 1) == 0);
}

CORBA::Object_ptr
TAO_CORBALOC_Parser::parse_string (const char *ior,
                                   CORBA::ORB_ptr orb,
                                   CORBA::Environment &ACE_TRY_ENV)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  // @@ Priyanka: this routine turns out to be a little big, you may
  // want to divide in in several pieces, just to make it more
  // readable.

  // Skip the prefix, we know it is there because this method in only
  // called if <match_prefix> returns 1.
  const char *corbaloc_name =
    ior + sizeof corbaloc_prefix - 1;

  // First separates each <obj_addr> from the list of the obj_addr
  // Then concatenates the obj. key to the end of each one and
  // tries to find a binding .........

  // Find the position where '/' seperator btn <obj_addr_list> and
  // <key_string>

  cout << "The corbaloc name is " << corbaloc_name << endl;
  CORBA::ULong count_addr = 0;

  // @@ Priyanka: the name of this variable confuses me, it is called
  // "pos" as in position or something like that, but it seems to be a
  // length of some sort (based on its use), any better name for it?
  CORBA::ULong pos = 0;
  CORBA::Boolean start_key_string = 1;

  //
  const char rir_prefix [] = "rir:/";

  // If the protocol is "rir:", there is no need to do any of this.
  //
  if (this->check_prefix (corbaloc_name) == 0)
    {

      // @@ Priyanka: here you are allocating 4 bytes, is that what
      // you want? Don't you want to allocate something like:
      //   key_string =
      //       CORBA::string_alloc (ACE_OS::strlen (corbaloc_name));
      // Also: in this routine you allocate a lot of memory, but never
      // deallocate it!  Please make sure you do so, there are some
      // suggestions below that tell you how you could automate that.

      char *key_string = CORBA::string_alloc (sizeof (corbaloc_name));
      char *key_stringPtr = key_string;
      cout << "lets see" << endl;
      for (const char *i = corbaloc_name; *i != '\0'; ++i)
        {
          if (*i == ',')
            {
              // Increment the count of the addresses in the list
              ++count_addr;
            }

          if (*i == '/')
            {
              if (*(i+1) == '/')
                {
                  ++i;
                  ++pos;
                }
              else if (*(i+1) != '/')
                {
                  // This is the last addr and will not be terminated with a
                  // ',' ..but need to count it too.
                  ++count_addr;
                  // Indication that the next characters are to be
                  // assigned to key_string
                  start_key_string = 0;
                }
            }

          if (start_key_string == 1)
            {
              ++pos;
            }
          else
            {
              *key_stringPtr = *i;
              ++key_stringPtr;
            }

        }

      // Copy the <obj_addr_list> to cloc_name.
      char *cloc_name = CORBA::string_alloc (pos);
      cloc_name = ACE_OS::strncpy (cloc_name, corbaloc_name, pos);

      ACE_DEBUG ((LM_DEBUG, "The obj_addr_list is %s\n", cloc_name));

      // Declare an array of addr.
      // @@ Priyanka: this is a non-standard extension, you are
      // declaring a variable sized array, you probably want to use
      //    char **addr;
      //    ACE_NEW_RETURN (addr, char*[count_addr], 0);
      // or better yet use an ACE_Array:
      //    ACE_Array_Base<char*> addr (count_addr);
      // because the latter is exception safe
      // Speaking of exception safety.... you may want to use
      // ACE_CString or something like that for your strings, so they
      // are all automatically deallocated if an exception is raised.
      //
      char **addr;
      ACE_NEW_RETURN (addr, char*[count_addr], 0);

      // @@ Priyanka: don't declare a variable without initializing
      // it, that is bad style, also: we don't use fooPtr in ACE+TAO,
      // please use <cloc_name_ptr> or something like that.
      char *cloc_namePtr;

      CORBA::ULong current_addr = 0;

      addr [current_addr] = CORBA::string_alloc (pos);
      // Tokenize using "," as the seperator
      // @@ Priyanka: in general you want to use ACE_OS::strtok_r()
      // because that version is reentrant and works with multiple
      // threads without any problems.
      // The regular strtok() uses a static variable to keep the last
      // pointer, so multiple threads cannot call it simultaneously.
      cloc_namePtr = ACE_OS::strtok (cloc_name, ",");

      const char file_prefix[] = "iiop://";

      // @@ Priyanka: please don't use NULL, I know some books and
      // documents use it, but 0 is good enough for C++ (and safer).
      while (cloc_namePtr != NULL)
        {

          // @@ Priyanka: if you want to initialize the string to the
          // empty string just do:
          //     ACE_OS::strcpy (addr[current_addr], "");
          // or also
          //     addr[current_addr][0] = '\0';
          addr [current_addr] = ACE_OS::strcpy (addr [current_addr],
                                                "\0");

          if (ACE_OS::strncmp (cloc_namePtr, file_prefix,
                               sizeof (file_prefix)-1) != 0)
            {
              // If there is no explicit protocol specified, use the
              // default "iiop://"
              // @@ Priyanka: you don't need to store the result from
              // ACE_OS::strcat()...
              // @@ Priyanka: did you allocate enough memory for this
              // prefix too?
              addr [current_addr] = ACE_OS::strcat (addr [current_addr],
                                                    file_prefix);

            }

          // @@ Priyanka: you don't need to store the result from
          // ACE_OS::strcat()...
          addr [current_addr] = ACE_OS::strcat(addr [current_addr],
                                               cloc_namePtr);

          // @@ Priyanka: you don't need to store the result from
          // ACE_OS::strcat()...
          addr [current_addr] = ACE_OS::strcat (addr [current_addr],
                                                key_string);

          // @@ Priyanka: you don't need to store the result from
          // ACE_OS::strcat()...
          addr [current_addr] = ACE_OS::strcat (addr [current_addr],
                                                "\0");

          ACE_DEBUG ((LM_DEBUG, "The obj_addr [%d] is %s\n", current_addr,
                      addr [current_addr]));

          ++current_addr;

          // @@ Priyanka: can you move this to the beginning of the
          // loop? It seems more readable like that.  Obviously you
          // would need to remove the initialization outside the look
          // too.
          addr [current_addr] = CORBA::string_alloc (pos);
          cloc_namePtr = ACE_OS::strtok (NULL, ",");
        }

      // Now We have an array of <obj_addr> obtained from the
      // <obj_list>. Now, we define an MProfile and then use
      // make_mprofile ()....
      //
      TAO_MProfile mprofile;

      for (CORBA::ULong j = 0; j != count_addr; ++j)
        {
          int retv =
            orb->orb_core ()->connector_registry ()->make_mprofile (addr [j],
                                                                  mprofile,
                                                                  ACE_TRY_ENV);

          ACE_CHECK_RETURN (CORBA::Object::_nil ());   // Return nil.

          if (retv != 0)
            {
              ACE_THROW_RETURN (CORBA::INV_OBJREF (
                                  CORBA_SystemException::_tao_minor_code (
                                    TAO_DEFAULT_MINOR_CODE,
                                    EINVAL),
                                  CORBA::COMPLETED_NO),
                                CORBA::Object::_nil ());
            }

          // Now make the TAO_Stub.
          TAO_Stub *data = 0;
          ACE_NEW_THROW_EX (data,
                            TAO_Stub ((char *) 0, mprofile,
                                      orb->orb_core ()),
                            CORBA::NO_MEMORY (
                              CORBA_SystemException::_tao_minor_code (
                                TAO_DEFAULT_MINOR_CODE,
                                ENOMEM),
                              CORBA::COMPLETED_NO));
          ACE_CHECK_RETURN (CORBA::Object::_nil ());

          TAO_Stub_Auto_Ptr safe_data (data);

          // Figure out if the servant is collocated.
          TAO_ServantBase *servant = 0;
          TAO_SERVANT_LOCATION servant_location =
            orb->_get_collocated_servant (safe_data.get (),
                                           servant);

          int collocated = 0;
          if (servant_location != TAO_SERVANT_NOT_FOUND)
            collocated = 1;

          CORBA::Object_ptr obj = CORBA::Object::_nil ();

          // Create the CORBA level proxy.  This will increase the ref_count
          // on data by one
          ACE_NEW_THROW_EX (obj,
                            CORBA_Object (safe_data.get (),
                                          servant,
                                          (CORBA::Boolean) collocated),
                            CORBA::NO_MEMORY (
                              CORBA_SystemException::_tao_minor_code (
                                TAO_DEFAULT_MINOR_CODE,
                                ENOMEM),
                              CORBA::COMPLETED_NO));
          ACE_CHECK_RETURN (CORBA::Object::_nil ());

          // All is well, so release the stub object from its auto_ptr.
          data = safe_data.release ();

          return obj;

        }

    }

  CORBA::Object_ptr object = CORBA::Object::_nil ();

  // @@ Priyanka: This is something that you could move to another
  // routine, all the RIR case should be easy to separate...
  if (ACE_OS::strncmp (corbaloc_name, rir_prefix,
                       sizeof (rir_prefix)-1) == 0)
    {
      // "rir" protocol used ... pass the key string as an
      // argument to the resolve_initial_references ()
      const char *key_string =
        corbaloc_name + sizeof (rir_prefix) -1;

      ACE_TRY
        {
          ACE_DEBUG ((LM_DEBUG, "The key string is %s\n", key_string));
          object = orb->resolve_initial_references (key_string, ACE_TRY_ENV);
          ACE_TRY_CHECK;
        }
      ACE_CATCH (CORBA::SystemException, ex)
        {
          ACE_PRINT_EXCEPTION (ex, "CORBALOC_Parser");
        }
      ACE_ENDTRY;

    }

  return object;

}

int
TAO_CORBALOC_Parser::check_prefix (const char *endpoint)
{

  // Check for a valid string
  if (!endpoint || !*endpoint)
    return -1; // Failure

  const char *protocol[] = { "iiop", "" };

  size_t slot = ACE_OS::strchr (endpoint, '/') - endpoint;

  size_t len0 = ACE_OS::strlen (protocol[0]);
  size_t len1 = ACE_OS::strlen (protocol[1]);

  // Check for the proper prefix in the IOR.  If the proper prefix
  // isn't in the IOR then it is not an IOR we can use.
  if (slot == len0
      && ACE_OS::strncasecmp (endpoint, protocol[0], len0) == 0)
    return 0;
  else if (slot == len1
           && ACE_OS::strncasecmp (endpoint, protocol[1], len1) == 0)
    return 0;

  return -1;
  // Failure: not an IIOP IOR
  // DO NOT throw an exception here.
}

ACE_FACTORY_DEFINE (TAO_IOR_CORBALOC, TAO_CORBALOC_Parser)

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */