blob: 6cf11614e76d8fc7eb30a3745c40e462fc73fce0 (
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$
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// Handle_Gobbler.h
//
// = AUTHOR
// Kirthika Parameswaran <kirthika@cs.wustl.edu>
// Irfan Pyarali <irfan@cs.wustl.edu>
//
// ============================================================================
#ifndef ACE_HANDLE_GOBBLER_H
#define ACE_HANDLE_GOBBLER_H
#include "ace/pre.h"
#include "ace/OS.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Containers_T.h"
class ACE_Handle_Gobbler
{
// = TITLE
// This class gobbles up handles.
//
// = DESCRIPTION
// This is useful when we need to control the number of handles
// available for a process. This class is mostly used for
// testing purposes.
public:
inline ~ACE_Handle_Gobbler (void);
// Destructor. Cleans up any remaining handles.
inline int consume_handles (size_t n_handles_to_keep_available);
// Handles are opened continously until the process runs out of
// them, and then <n_handles_to_keep_available> handles are closed
// (freed) thereby making them usable in the future.
inline int free_handles (size_t n_handles);
// Free up <n_handles>.
inline void close_remaining_handles (void);
// All remaining handles are closed.
private:
typedef ACE_Unbounded_Set<ACE_HANDLE> HANDLE_SET;
HANDLE_SET handle_set_;
// The container which holds the open descriptors.
};
#include "ace/Handle_Gobbler.i"
#include "ace/post.h"
#endif /* ACE_HANDLE_GOBBLER_H */
|