blob: 124a29b4139da4a3b63598895fb6630b50ffb2b1 (
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
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file UpdateableServerInfo.h
*
*/
//=============================================================================
#ifndef UPDATEABLE_SERVER_INFO_H
#define UPDATEABLE_SERVER_INFO_H
#include "Server_Info.h"
#include "ImR_LocatorC.h"
class Locator_Repository;
/**
* @class UpdateableServerInfo
*
* @brief Class for managing changes to ServerInfo memory to ensure
* it is persisted
*
*/
class UpdateableServerInfo
{
public:
/// constructor
/// @param repo the repo to report updates to
/// @param name the name of the server to retrieve
/// @param pid an optional process id to further discriminate the server
UpdateableServerInfo(Locator_Repository* repo,
const ACE_CString& name,
int pid = 0);
/// constructor
/// @param repo the repo to report updates to
/// @param si an already retrieved Server_Info_Ptr
/// @param reset_start_count controls the reset of the start count value
UpdateableServerInfo(Locator_Repository* repo,
const Server_Info_Ptr& si,
bool reset_start_count = false);
UpdateableServerInfo(UpdateableServerInfo& other );
/// destructor (updates repo if needed)
~UpdateableServerInfo(void);
/// explicitly update repo if needed
void update_repo(void);
/// update remote access state
void notify_remote_access (ImplementationRepository::AAM_Status state);
/// assign a server info
void server_info (const Server_Info_Ptr& si);
/// const Server_Info access
const Server_Info* operator->() const;
/// const Server_Info& access
const Server_Info& operator*() const;
/// retrieve smart pointer to non-const Server_Info
/// and indicate repo update required
const Server_Info_Ptr& edit(void);
/// force indication of update needed
void needs_update(void);
/// indicate it Server_Info_Ptr is null
bool null(void) const;
private:
const UpdateableServerInfo& operator=(const UpdateableServerInfo& );
/// the repo
Locator_Repository* repo_;
/// the retrieved, passed, or non-stored server info
Server_Info_Ptr si_;
/// the server info has changes and needs to be updated to the repo
bool needs_update_;
};
#endif /* UPDATEABLE_SERVER_INFO_H */
|