summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/NodeApplicationManager/ImplementationInfo.h
blob: de28c9afd74a4c937df0c7ca0e0b6e1e2c6a44a7 (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
//$Id$
/* -*- C++ -*- */
/***************************************************************
 * @file   ImplementationInfo.h
 *
 * @brief  This file defines some helper functions for paring the
 *         Component ImplementationInfo and properties from
 *         the plan.
 *
 * @author Tao Lu <lu@dre.vanderbilt.edu>
 * @author Gan Deng <dengg@dre.vanderbilt.edu>
 ***************************************************************/

#ifndef IMPLEMENTATIONIFO_H
#define IMPLEMENTATIONIFO_H
#include /**/ "ace/pre.h"

#include "ace/config-all.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "ciao/DeploymentC.h"
#include "ace/SString.h"
#include "ace/Hash_Map_Manager.h"
#include "Containers_Info_Map.h"
#include "CIAO_NAM_Export.h"

//@@ I wish we could have precompiled header support soon!!!

// This method is a helper function to parse the local deployment plan into the
// NodeImplementationInfo struct.

namespace CIAO
{
  class CIAO_NAM_Export NodeImplementationInfoHandler
  {
  public:
    NodeImplementationInfoHandler (::Deployment::DeploymentPlan & plan,
                                   CORBA::StringSeq shared_components);

    Deployment::NodeImplementationInfo *
      node_impl_info (void) const;

  private:
    Deployment::DeploymentPlan plan_;

    Deployment::NodeImplementationInfo_var node_info_;

    void populate_server_resource_def (void);

    void populate_container_impl_infos (void);

    /// Helper class that helps populate the container_impl_infos
    /// field.
    Containers_Info_Map containers_info_map_;

    /// shared components list, obtained from NodeApplicationManager
    CORBA::StringSeq shared_components_;
  };
}

#include /**/ "ace/post.h"
#endif /* IMPLEMENTATIONIFO_H */