summaryrefslogtreecommitdiff
path: root/modules/CIAO/CCF/CCF/IDL2/Traversal/Sequence.cpp
blob: c781cdcfb973317527cc3d54d56cb2420258ff34 (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
// file      : CCF/IDL2/Traversal/Sequence.cpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#include "CCF/IDL2/Traversal/Sequence.hpp"

namespace CCF
{
  namespace IDL2
  {
    namespace Traversal
    {

      // UnboundedSequence
      //

      void UnboundedSequence::
      traverse (Type& us)
      {
        pre (us);
        arguments_with_type (us);
        name (us);
        post (us);
      }

      void UnboundedSequence::
      pre (Type&)
      {
      }

      void UnboundedSequence::
      arguments_with_type (Type& us, EdgeDispatcherBase& d)
      {
        d.traverse (**us.arguments_begin ());
      }

      void UnboundedSequence::
      arguments_with_type (Type& us)
      {
        arguments_with_type (us, edge_traverser ());
      }

      void UnboundedSequence::
      name (Type&)
      {
      }

      void UnboundedSequence::
      post (Type&)
      {
      }


      // BoundedSequence
      //

      void BoundedSequence::
      traverse (Type& bs)
      {
        pre (bs);
        arguments_with_type (bs);
        arguments_with_value (bs);
        name (bs);
        post (bs);
      }

      void BoundedSequence::
      pre (Type&)
      {
      }

      void BoundedSequence::
      arguments_with_type (Type& bs, EdgeDispatcherBase& d)
      {
        d.traverse (**bs.arguments_begin ());
      }

      void BoundedSequence::
      arguments_with_type (Type& bs)
      {
        arguments_with_type (bs, edge_traverser ());
      }

      void BoundedSequence::
      arguments_with_value (Type& bs, EdgeDispatcherBase& d)
      {
        Type::ArgumentsIterator i (bs.arguments_begin ());

        ++i; // Bound is always second to the type.

        d.traverse (**i);
      }

      void BoundedSequence::
      arguments_with_value (Type& bs)
      {
        arguments_with_value (bs, edge_traverser ());
      }

      void BoundedSequence::
      name (Type&)
      {
      }

      void BoundedSequence::
      post (Type&)
      {
      }
    }
  }
}