summaryrefslogtreecommitdiff
path: root/TAO/tao/Parser_Registry.cpp
blob: b7751d7c5a8749c39f4cce76218de417cca4123f (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
// This may look like C, but it's really -*- C++ -*-
// $Id$

#include "tao/Parser_Registry.h"
#include "tao/IOR_Parser.h"
#include "ace/Dynamic_Service.h"
#include "ace/Service_Repository.h"

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

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

TAO_Parser_Registry::TAO_Parser_Registry (void)
  : parsers_ (0),
    size_ (0)
{
}

TAO_Parser_Registry::~TAO_Parser_Registry (void)
{
  delete [] this->parsers_;
}

int
TAO_Parser_Registry::open (void)
{
  this->size_ = 1;
  ACE_NEW_RETURN (this->parsers_, TAO_IOR_Parser*[this->size_],
                  -1);

  this->parsers_[0] =
    ACE_Dynamic_Service<TAO_IOR_Parser>::instance ("DLL_Parser");

  if (this->parsers_[0] == 0)
    {
      int r = ACE_Service_Config::process_directive (
        "dynamic DLL_Parser Service_Object * TAO_IOR_DLL:_make_TAO_DLL_Parser()"
        );
      if (r == -1)
        {
          ACE_ERROR_RETURN ((LM_ERROR,
                             "Error configuring DLL parser\n"), -1);
        }
      this->parsers_[0] =
        ACE_Dynamic_Service<TAO_IOR_Parser>::instance ("DLL_Parser");

    }


  // ACE_Service_Config::process_directive (
  // "dynamic TAO_FILE_Parser Service_Object * TAO_IOR_FILE:_make_TAO_FILE_Parser()"
  // );
  // this->parsers_[1] =
  //   ACE_Dynamic_Service<TAO_IOR_Parser>::instance
  //   ("TAO_FILE_Parser");

  return 0;
}

TAO_IOR_Parser *
TAO_Parser_Registry::match_parser (const char *ior_string)
{
  for (Parser_Iterator i = this->begin (); i != this->end (); ++i)
    {
      if ((*i)->match_prefix (ior_string))
        return *i;
    }
  return 0;
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */