summaryrefslogtreecommitdiff
path: root/trunk/CIAO/DAnCE/RepositoryManager/PC_Updater.h
blob: 5b22e2493315c9a8b945dc7606e6296c2f110299 (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

/* -*- C++ -*- */

//========================================================================
/**
 *  file  PC_Updater.h
 *
 * $Id$
 *
 *  This class is used to update the location field of the implementation
 *  artifacts in the PackageConfiguration, so that they point to the
 *  physical libraries on the collocated HTTP server
 *
 *  author Stoyan Paunov <spaunov@isis.vanderbilt.edu>
 */
//========================================================================

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

#include "DAnCE/Deployment/DeploymentC.h"
#include "ace/SString.h"             //for the ACE_CString

#include "ZIP_Wrapper.h"             //Wrapper around zzip
#include "ace/Containers_T.h"        //for ACE_Double_Linked_List
#include "ace/Malloc_Allocator.h"    //for ACE_New_Allocator needed by the doubly link list

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

/**
  * @class PC_Updater
  *
  * This class defines a set of overloaded methods used to update
  * the contents of a PackageConfiguration. More specifically the class
  * goes through the PackageConfiguration and updates the locations of the
  * artifacts, wrt to their location on the HTTP server.
  */
class  PC_Updater
{
public:

  /// Constructors

  PC_Updater (const char* server_path, const char* package);
  PC_Updater (ACE_CString& server_path, ACE_CString& package);

  ~PC_Updater ();

  /// A whole slew of overloaded routines for different IDL
  /// data types part of the PackageConfiguration.

  bool update (::Deployment::PackageConfiguration &pc);

  void update (::Deployment::Property &property);

  void update (::Deployment::AssemblyConnectionDescription &acd);

  void update (::Deployment::AssemblyPropertyMapping &apm);

  void update (::Deployment::ComponentPackageDescription &comppkgdesc);

  void update (::Deployment::MonolithicImplementationDescription &mid);

  void update (::Deployment::PackagedComponentImplementation &pci);

  void update (::Deployment::SubcomponentPortEndpoint &spe);

  void update (::Deployment::Requirement &requirement);

  void update (::Deployment::ComponentExternalPortEndpoint &cepe);

  void update (::Deployment::ComponentPackageReference &cpr);

  void update (::Deployment::ComponentImplementationDescription &cid);

  void update (::Deployment::SubcomponentInstantiationDescription &sid);

  void update (::Deployment::NamedImplementationArtifact &named_implementation);

  void update (::Deployment::ComponentInterfaceDescription &cid);

  void update (::Deployment::Capability &capability);

  void update (::Deployment::ImplementationArtifactDescription &iad);

  void update (::Deployment::ImplementationRequirement &ir);

  void update (::Deployment::ImplementationDependency &id);

  void update (::Deployment::ComponentAssemblyDescription& cad);

protected:

  void clear_list ();

private:

  ACE_CString server_path_;

  /// create a doubly link list
  //ACE_New_Allocator allocator_;
  ACE_Double_Linked_List<ZIP_File_Info> file_list_;

  ACE_CString package_;
  bool success_;
};

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

#endif /* PC_UPDATER_H */