summaryrefslogtreecommitdiff
path: root/TAO/local/bin/Event_Service/Memory_Pools.h
blob: cc8a23f6767a694c603d7803d887d6d916192e46 (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
/* -*- C++ -*- */
// $Id$
//
// ============================================================================
//
// = LIBRARY
//    ORB Services
// 
// = FILENAME
//    Memory_Pools
//
// = AUTHOR
//    Tim Harrison (harrison@cs.wustl.edu)
//
// ============================================================================

#ifndef ACE_MEMORY_POOLS_H
#define ACE_MEMORY_POOLS_H

#include "ace/Synch.h"
#include "Event_Channel.h"
#include "Dispatching_Modules.h"

// ************************************************************

#if defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION)
  typedef ACE_Null_Mutex ACE_MEMORY_POOL_MUTEX;
#else
  // Use the same object for each thread.  Therefore, we have to use
  // real synchronization.
  typedef ACE_Thread_Mutex ACE_MEMORY_POOL_MUTEX;
#endif /* ACE_HAS_THREAD_SPECIFIC_STORAGE || ACE_HAS_TSS_EMULATION */

typedef char ACE_ES_Dispatch_Request_Chunk[sizeof (ACE_ES_Dispatch_Request)];

typedef ACE_Cached_Allocator<ACE_ES_Dispatch_Request_Chunk, ACE_MEMORY_POOL_MUTEX> _ACE_Dispatch_Request_Allocator;

class ACE_ES_Dispatch_Request_Allocator : public _ACE_Dispatch_Request_Allocator
// = TITLE
//     Dispatch Request Allocator
//
// = DESCRIPTION
//     This just sets the size of the Event Container memory pool.
{
public:
  ACE_ES_Dispatch_Request_Allocator (void) :
    _ACE_Dispatch_Request_Allocator (ACE_ES_DISPATCH_REQUEST_MEMORY_POOL) {}
};

// ************************************************************

typedef char ACE_ES_Event_Container_Chunk[sizeof (ACE_ES_Event_Container)];

typedef ACE_Cached_Allocator<ACE_ES_Event_Container_Chunk, ACE_MEMORY_POOL_MUTEX> _ACE_Event_Container_Allocator;

class ACE_ES_Event_Container_Allocator : public _ACE_Event_Container_Allocator
// = TITLE
//     Event Container Allocator
//
// = DESCRIPTION
//     This just sets the size of the Event Container memory pool.
{
public:
  ACE_ES_Event_Container_Allocator (void) :
    _ACE_Event_Container_Allocator (ACE_ES_EVENT_CONTAINER_MEMORY_POOL) {}
};

// ************************************************************

typedef char ACE_ES_Event_Chunk[sizeof (RtecEventComm::Event)];

typedef ACE_Malloc<ACE_LOCAL_MEMORY_POOL, ACE_MEMORY_POOL_MUTEX> ACE_ES_Event_Allocator;
//typedef ACE_Cached_Allocator<ACE_ES_Event_Chunk, ACE_MEMORY_POOL_MUTEX> _ACE_Event_Allocator;

class ACE_ES_Memory_Pools
// = TITLE
//     Event Service Memory Pools.
//
// = DESCRIPTION
//     These have to be static in order to be accessed by operator
//     news, right?
{
public:
  static int thr_init (void);
  // This can be called by every thread that will access these memory
  // pools to preallocate the thread specific allocators.  It is not
  // mandatory.

  static void *new_Event_Container (void);
  static void delete_Event_Container (void *);
  static void *new_Dispatch_Request (void);
  static void delete_Dispatch_Request (void *);
  static void *new_Event (size_t);
  static void delete_Event (void *);

  static ACE_TSS<ACE_ES_Dispatch_Request_Allocator> Dispatch_Request_;
  static ACE_TSS<ACE_ES_Event_Container_Allocator> Event_Container_;
  static ACE_TSS<ACE_ES_Event_Allocator> Event_;
};

#if defined (__ACE_INLINE__)
#include "Memory_Pools.i"
#endif /* __ACE_INLINE__ */
#endif /* ACE_MEMORY_POOLS_H */