summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_home/home_svh.h
blob: 4feaa55bdc19c8769f7fab8a5792b40b191def3b (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
/* -*- c++ -*- */
//=============================================================================
/**
 *  @file    home_svh.h
 *
 *  Concrete visitor for the Home node.
 *  This provides for code generation in the servant header
 *
 *  @author Jeff Parsons
 */
//=============================================================================


#ifndef _BE_HOME_HOME_SVH_H_
#define _BE_HOME_HOME_SVH_H_

/**
 * @class be_visitor_home_svh
 *
 * @brief be_visitor_home_svh
 *
 * This is a concrete visitor to generate the servant header for component.
 */
class be_visitor_home_svh : public be_visitor_scope
{
public:
  be_visitor_home_svh (be_visitor_context *ctx);

  ~be_visitor_home_svh ();

  virtual int visit_home (be_home *node);
  virtual int visit_operation (be_operation *node);
  virtual int visit_attribute (be_attribute *node);
  virtual int visit_factory (be_factory *node);
  virtual int visit_finder (be_finder *node);

private:
  int gen_servant_class ();

  void gen_entrypoint ();

  /// Helper method passed to traverse_inheritance_graph(),
  /// collects supported operations and attributes.
  static int op_attr_decl_helper (be_interface *,
                                  be_interface *,
                                  TAO_OutStream *);

private:
  be_home *node_;
  AST_Component *comp_;
  TAO_OutStream &os_;
  ACE_CString export_macro_;
};

#endif /* _BE_HOME_HOME_SVH_H_ */