summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_annotation_decl.cpp
blob: 5ccaba059f2417838931f2db9a3abecdc959c642 (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
#include "ast_annotation_decl.h"
#include "ast_annotation_member.h"
#include "utl_indenter.h"
#include "utl_identifier.h"
#include "ast_constant.h"

AST_Decl::NodeType const AST_Annotation_Decl::NT =
  AST_Decl::NT_annotation_decl;

AST_Annotation_Decl::AST_Annotation_Decl (UTL_ScopedName *name)
  : AST_Decl (NT, name),
    AST_Type (NT, name),
    AST_ConcreteType (NT, name),
    UTL_Scope (NT),
    AST_Structure (name, false, false)
{
  if (!ACE_OS::strcmp(name->last_component ()->get_string (), "@annotation"))
    {
      idl_global->err ()-> misc_error(
        "An Annotation can not be named \"annotation\"");
    }
}

AST_Annotation_Decl::~AST_Annotation_Decl ()
{
}

void AST_Annotation_Decl::dump (ACE_OSTREAM_TYPE &o)
{
  this->dump_i (o, "@annotation ");
  AST_Decl::dump (o);
  this->dump_i (o, " {\n");
  UTL_Scope::dump (o);
  idl_global->indent ()->skip_to (o);
  this->dump_i (o, "}");
}

void AST_Annotation_Decl::destroy ()
{
  AST_Decl::destroy ();
}

IMPL_NARROW_FROM_DECL (AST_Annotation_Decl)
IMPL_NARROW_FROM_SCOPE (AST_Annotation_Decl)

void
AST_Annotation_Decl::escape_name (Identifier *name)
{
  char *old_name = name->get_string ();
  char *new_name = new char [ACE_OS::strlen (old_name) + 2]; // '@' and '\0'
  if (new_name)
    {
      new_name[0] = '@';
      new_name[1] = '\0';
      ACE_OS::strcat (new_name, old_name);
      name->replace_string (new_name);
      delete [] new_name;
    }
}

void
AST_Annotation_Decl::escape_name (UTL_ScopedName *name)
{
  escape_name (name->last_component ());
}

bool
AST_Annotation_Decl::annotatable () const
{
  return false;
}

AST_Annotation_Member *
AST_Annotation_Decl::fe_add_annotation_member (
  AST_Annotation_Member *annotation_member)
{
  AST_Decl *d = fe_add_decl (annotation_member);
  if (d)
    {
      AST_Type *ft = annotation_member->field_type ();
      UTL_ScopedName *mru = ft->last_referenced_as ();
      if (mru)
        {
          add_to_referenced (ft, false, mru->first_component ());
        }
    }

  AST_Annotation_Decl *s = AST_Annotation_Decl::narrow_from_scope (this);
  if (s)
    {
      s->fields ().enqueue_tail (annotation_member);
    }

  return AST_Annotation_Member::narrow_from_decl (d);
}

AST_Constant *
AST_Annotation_Decl::fe_add_constant (AST_Constant *t)
{
  return AST_Constant::narrow_from_decl (fe_add_decl (t));
}

int
AST_Annotation_Decl::ast_accept (ast_visitor *visitor)
{
  ACE_UNUSED_ARG (visitor);
  return 0;
}

bool
AST_Annotation_Decl::ami_visit ()
{
  return false;
}