summaryrefslogtreecommitdiff
path: root/modules/TAO/TAO_IDL/be_include/be_visitor_component_scope.h
blob: e442b85ec8f7e9c95f447278bebabba36aeeef19 (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
//
// $Id$
//
/* -*- c++ -*- */
// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    be_visitor_component_scope.h
//
// = DESCRIPTION
//    Base class for visitors that need to visit the scope of a 
//    component and its ancestors, if any.
//
// = AUTHOR
//    Jeff Parsons
//
// ============================================================================

#ifndef _BE_COMPONENT_COMPONENT_SCOPE_H_
#define _BE_COMPONENT_COMPONENT_SCOPE_H_

#include "ace/SString.h"

#include "be_visitor_scope.h"

class be_visitor_component_scope : public be_visitor_scope
{
  //
  // = TITLE
  //   be_visitor_component_scope
  //
  // = DESCRIPTION
  //   This is an abstract visitor providing a scope visitation
  //   method that traverses the base component recursively.
  //
protected:
  be_visitor_component_scope (be_visitor_context *ctx);
  
  virtual ~be_visitor_component_scope (void);
  
public:
  virtual int visit_extended_port (be_extended_port *node);
  virtual int visit_mirror_port (be_mirror_port *node);

  // Automatically recurses to the ancestor scopes, if any.
  int visit_component_scope (be_component *node);
  
  // These two methods are used instead of overriding
  // visit_porttype so we can traverse a porttype only
  // when it is referenced.
  
  int visit_porttype_scope (be_porttype *node);

  // Swaps uses for provides members and vice versa.S 
  int visit_porttype_scope_mirror (be_porttype *node);
  
  // This override is used to prefix a provides or uses
  // node's local name with the name of the port or
  // mirrorport node that may contain reference the
  // containing porttype.
  // TODO - support nested ports, if they are allowed.
  virtual int pre_process (be_decl *);
  
protected:
  void gen_svnt_entrypoint_decl (void);
  void gen_svnt_entrypoint_defn (void);
  void gen_exec_entrypoint_decl (void);
  void gen_exec_entrypoint_defn (void);
  
protected:
  be_component *node_;
  TAO_OutStream &os_;
  ACE_CString export_macro_;
  bool swapping_;
  bool static_config_;
  
private:
  ACE_CString current_port_name_;
};

#endif /* _BE_COMPONENT_COMPONENT_SCOPE_H_ */