blob: 4cf7629ac4a816de01accc8e65fbfa112d3c5510 (
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
114
115
116
117
118
119
120
121
122
123
124
125
|
// -*- C++ -*-
//=============================================================================
/**
* @file Cleanup.h
*
* $Id$
*
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
* @author Jesper S. M|ller<stophph@diku.dk>
* @author and a cast of thousands...
*
* Originally in OS.h.
*/
//=============================================================================
#ifndef ACE_CLEANUP_H
# define ACE_CLEANUP_H
# include /**/ "ace/pre.h"
# include "ace/config-lite.h"
# if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
# endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/ACE_export.h"
/**
* @class ACE_Cleanup
*
* @brief Base class for objects that are cleaned by ACE_Object_Manager.
*/
class ACE_Export ACE_Cleanup
{
public:
/// No-op constructor.
ACE_Cleanup (void);
/// Destructor.
virtual ~ACE_Cleanup (void);
/// Cleanup method that, by default, simply deletes itself.
virtual void cleanup (void *param = 0);
};
// Adapter for cleanup, used by ACE_Object_Manager.
extern "C" ACE_Export
void ace_cleanup_destroyer (ACE_Cleanup *, void *param = 0);
/**
* @class ACE_Cleanup_Info
*
* @brief Hold cleanup information for thread/process
*/
class ACE_Export ACE_Cleanup_Info
{
public:
/// Default constructor.
ACE_Cleanup_Info (void);
/// Equality operator.
bool operator== (const ACE_Cleanup_Info &o) const;
/// Inequality operator.
bool operator!= (const ACE_Cleanup_Info &o) const;
/// Point to object that gets passed into the <cleanup_hook_>.
void *object_;
/// Cleanup hook that gets called back.
ACE_CLEANUP_FUNC cleanup_hook_;
/// Parameter passed to the <cleanup_hook_>.
void *param_;
};
class ACE_Cleanup_Info_Node;
/**
* @class ACE_OS_Exit_Info
*
* @brief Hold Object Manager cleanup (exit) information.
*
* For internal use by the ACE library, only.
*/
class ACE_Export ACE_OS_Exit_Info
{
public:
/// Default constructor.
ACE_OS_Exit_Info (void);
/// Destructor.
~ACE_OS_Exit_Info (void);
/// Use to register a cleanup hook.
int at_exit_i (void *object, ACE_CLEANUP_FUNC cleanup_hook, void *param);
/// Look for a registered cleanup hook object. Returns 1 if already
/// registered, 0 if not.
int find (void *object);
/// Call all registered cleanup hooks, in reverse order of
/// registration.
void call_hooks ();
private:
/**
* Keeps track of all registered objects. The last node is only
* used to terminate the list (it doesn't contain a valid
* ACE_Cleanup_Info).
*/
ACE_Cleanup_Info_Node *registered_objects_;
};
# if defined (ACE_HAS_INLINED_OSCALLS)
# if defined (ACE_INLINE)
# undef ACE_INLINE
# endif /* ACE_INLINE */
# define ACE_INLINE inline
# include "ace/Cleanup.inl"
# endif /* ACE_HAS_INLINED_OSCALLS */
# include /**/ "ace/post.h"
#endif /* ACE_CLEANUP_H */
|