summaryrefslogtreecommitdiff
path: root/modules/CIAO/CCF/CCF/IDL2/SemanticGraph/Name.hpp
blob: 50dd752aa6adf0e1418bb4d1d5691706bb0be9aa (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
// file      : CCF/IDL2/SemanticGraph/Name.hpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#ifndef CCF_IDL2_SEMANTIC_GRAPH_NAME_HPP
#define CCF_IDL2_SEMANTIC_GRAPH_NAME_HPP

#include <vector>
#include <string>
#include <iosfwd>

namespace CCF
{
  namespace IDL2
  {
    namespace SemanticGraph
    {
      //@@ better names for names: maybe SimpleName, ScopedName, FullName?
      //
      //

      class InvalidName {};

      class SimpleName
      {
      public:
        SimpleName (char const* name) throw (InvalidName);
        SimpleName (std::string const& name) throw (InvalidName);

      public:
        // Comparisons are escape-insensitive.
        //
        bool
        operator< (SimpleName const& other) const
        {
          return name_ < other.name_;
        }

        bool
        operator== (SimpleName const& other) const
        {
          return name_ == other.name_;
        }

        bool
        operator!= (SimpleName const& other) const
        {
          return name_ != other.name_;
        }

      public:
        bool
        escaped () const
        {
          return escaped_;
        }

        std::string
        str () const
        {
          return (escaped_ ? "_" : "") + name_;
        }

        std::string
        unescaped_str () const
        {
          return name_;
        }

      private:
        bool escaped_;
        std::string name_;
      };

      // The following operators preserve escaping.
      //
      SimpleName
      operator+ (SimpleName const& name, std::string const& str);

      SimpleName
      operator+ (std::string const& str, SimpleName const& name);


      //
      //
      //
      class Name
      {
        typedef
        std::vector<SimpleName>
        Name_;

      public:
        Name (SimpleName const& name);

        Name (char const* name) throw (InvalidName);
        Name (std::string const& name) throw (InvalidName);

        typedef
        Name_::const_iterator
        Iterator;

        Name (Iterator begin, Iterator end) throw (InvalidName);

      public:
        // Comparisons are escape-insensitive.
        //
        bool
        operator< (Name const& other) const
        {
          return name_cache_ < other.name_cache_;
        }

        bool
        operator== (Name const& other) const
        {
          return name_cache_ == other.name_cache_;
        }

        bool
        operator!= (Name const& other) const
        {
          return name_cache_ != other.name_cache_;
        }

      public:
        Iterator
        begin () const
        {
          return name_.begin ();
        }

        Iterator
        end () const
        {
          return name_.end ();
        }

      public:
        bool
        scoped () const;

        bool
        simple () const;

      public:
        std::string
        str () const
        {
          std::string r;

          for (Iterator b (begin ()), i (b), e (end ()); i != e; ++i)
            r += (i != b ? "::" : "") + i->str ();

          return r;
        }

        std::string
        unescaped_str () const
        {
          return name_cache_;
        }

      private:
        void
        init (std::string const& name) throw (InvalidName);

      private:
        Name_ name_;
        std::string name_cache_; // Unescaped name cache.
      };

      // Should always start with "::". Can be just "::" which
      // means it's a file-scope.
      //
      //
      class ScopedName : public Name
      {
      public:
        ScopedName (char const* name) throw (InvalidName);

        ScopedName (std::string const& name) throw (InvalidName);

        ScopedName (Iterator begin, Iterator end) throw (InvalidName);

        explicit
        ScopedName (Name const& name) throw (InvalidName);

        ScopedName (ScopedName const& scope, Name const& name)
          throw (InvalidName);

      public:
        SimpleName
        simple_name () const;

        class FileScope {};

        ScopedName
        scope_name () const throw (FileScope);
      };


      // Name printer index for the stream's pword.
      //
      extern int const name_printer_index;

      //
      //
      struct NamePrinter
      {
        virtual ~NamePrinter ();

        virtual void
        print (std::ostream&, SimpleName const&) = 0;

        // The default implementation prints individul simple names
        // using the print function above seperated by '::'.
        //
        virtual void
        print (std::ostream&, Name const&);

      };
    }
  }
}

// Uses the name printer (see above) If it is installed, otherwise
// prints in the escaped form.
//
std::ostream&
operator << (std::ostream&, CCF::IDL2::SemanticGraph::SimpleName const&);

// Uses the name printer (see above) If it is installed, otherwise
// prints in the escaped form.
//
std::ostream&
operator << (std::ostream& o, CCF::IDL2::SemanticGraph::Name const& name);

#endif  // CCF_IDL2_SEMANTIC_GRAPH_NAME_HPP