blob: a60de14a90afb8e87126daca257f39035f4d3678 (
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 "ciao/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 (const ::Deployment::PackageConfiguration &pc);
void update (const ::Deployment::Property &property);
void update (const ::Deployment::AssemblyConnectionDescription &acd);
void update (const ::Deployment::AssemblyPropertyMapping &apm);
void update (const ::Deployment::ComponentPackageDescription &comppkgdesc);
void update (const ::Deployment::MonolithicImplementationDescription &mid);
void update (const ::Deployment::PackagedComponentImplementation &pci);
void update (const ::Deployment::SubcomponentPortEndpoint &spe);
void update (const ::Deployment::Requirement &requirement);
void update (const ::Deployment::ComponentExternalPortEndpoint &cepe);
void update (const ::Deployment::ComponentPackageReference &cpr);
void update (const ::Deployment::ComponentImplementationDescription &cid);
void update (const ::Deployment::SubcomponentInstantiationDescription &sid);
void update (const ::Deployment::NamedImplementationArtifact &named_implementation);
void update (const ::Deployment::ComponentInterfaceDescription &cid);
void update (const ::Deployment::Capability &capability);
void update (const ::Deployment::ImplementationArtifactDescription &iad);
void update (const ::Deployment::ImplementationRequirement &ir);
void update(const Deployment::ImplementationDependency &id);
void update (const ::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 */
|