mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2025-11-29 17:38:24 +08:00
163 lines
4.1 KiB
C++
163 lines
4.1 KiB
C++
// -*- C++ -*-
|
|
|
|
//=============================================================================
|
|
/**
|
|
* @file MEM_SAP.h
|
|
*
|
|
* @author Nanbor Wang <nanbor@cs.wustl.edu>
|
|
*/
|
|
//=============================================================================
|
|
|
|
#ifndef ACE_MEM_SAP_H
|
|
#define ACE_MEM_SAP_H
|
|
|
|
#include /**/ "ace/pre.h"
|
|
|
|
#include /**/ "ace/ACE_export.h"
|
|
|
|
#if !defined (ACE_LACKS_PRAGMA_ONCE)
|
|
# pragma once
|
|
#endif /* ACE_LACKS_PRAGMA_ONCE */
|
|
|
|
// MEM_SAP requries position independent pointers to work
|
|
#if (ACE_HAS_POSITION_INDEPENDENT_POINTERS == 1)
|
|
|
|
#include "ace/PI_Malloc.h"
|
|
#include "ace/Malloc_T.h"
|
|
#include "ace/MMAP_Memory_Pool.h"
|
|
#include "ace/Process_Mutex.h"
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
class ACE_MEM_SAP;
|
|
class ACE_Reactive_MEM_IO;
|
|
class ACE_MT_MEM_IO;
|
|
class ACE_MEM_IO;
|
|
|
|
// Internal data structure
|
|
// MEM_SAP uses to queue up
|
|
// data.
|
|
class ACE_MEM_SAP_Node
|
|
{
|
|
public:
|
|
typedef ACE_Based_Pointer<ACE_MEM_SAP_Node> ACE_MEM_SAP_NODE_PTR;
|
|
|
|
/// Initialize the node with its capacity.
|
|
ACE_MEM_SAP_Node (size_t cap);
|
|
|
|
/// Get the size of the data we hold.
|
|
size_t size (void) const;
|
|
|
|
/// Get the capacity of this block of data.
|
|
size_t capacity (void) const;
|
|
|
|
/// Get the pointer to the block of data we hold.
|
|
void *data (void);
|
|
|
|
/// The maximum size of this memory block.
|
|
size_t capacity_;
|
|
|
|
/// The actualy size used.
|
|
size_t size_;
|
|
|
|
ACE_MEM_SAP_NODE_PTR next_;
|
|
};
|
|
|
|
/**
|
|
* @class ACE_MEM_SAP
|
|
*
|
|
* @brief Defines the methods of shared memory management for
|
|
* shared memory transport.
|
|
*/
|
|
class ACE_Export ACE_MEM_SAP
|
|
{
|
|
public:
|
|
// = Initialization and termination methods.
|
|
|
|
typedef ACE_Malloc_T<ACE_MMAP_MEMORY_POOL, ACE_Process_Mutex, ACE_PI_Control_Block> MALLOC_TYPE;
|
|
typedef ACE_MMAP_Memory_Pool_Options MALLOC_OPTIONS;
|
|
|
|
/// Destructor.
|
|
virtual ~ACE_MEM_SAP (void);
|
|
|
|
/**
|
|
* Initialize the MEM_SAP object.
|
|
*/
|
|
virtual int init (ACE_HANDLE handle,
|
|
const ACE_TCHAR *name,
|
|
MALLOC_OPTIONS *options) = 0;
|
|
|
|
/**
|
|
* Finalizing the MEM_SAP object. This method doesn't invoke
|
|
* the <remove> method.
|
|
*/
|
|
virtual int fini ();
|
|
|
|
/**
|
|
* Fetch location of next available data into <recv_buffer_>.
|
|
* As this operation read the address of the data off the socket
|
|
* using ACE::recv, @a timeout only applies to ACE::recv.
|
|
*/
|
|
virtual ssize_t recv_buf (ACE_MEM_SAP_Node *&buf,
|
|
int flags,
|
|
const ACE_Time_Value *timeout) = 0;
|
|
|
|
/**
|
|
* Wait to to @a timeout amount of time to send @a buf. If <send>
|
|
* times out a -1 is returned with @c errno == ETIME. If it succeeds
|
|
* the number of bytes sent is returned. */
|
|
virtual ssize_t send_buf (ACE_MEM_SAP_Node *buf,
|
|
int flags,
|
|
const ACE_Time_Value *timeout) = 0;
|
|
|
|
/// request a buffer of size @a size. Return 0 if the <shm_malloc_> is
|
|
/// not initialized.
|
|
ACE_MEM_SAP_Node *acquire_buffer (const ssize_t size);
|
|
|
|
/// release a buffer pointed by @a buf. Return -1 if the <shm_malloc_>
|
|
/// is not initialized.
|
|
int release_buffer (ACE_MEM_SAP_Node *buf);
|
|
|
|
/// Dump the state of an object.
|
|
void dump (void) const;
|
|
|
|
/// Declare the dynamic allocation hooks.
|
|
ACE_ALLOC_HOOK_DECLARE;
|
|
|
|
protected:
|
|
// = Class initializing methods to create/connect to a shared memory pool.
|
|
|
|
/**
|
|
* Create a new shm_malloc object. Return 0 if succeed and -1
|
|
* otherwise. This method should only be called from an acceptor
|
|
* class that wants to create a new memory pool for inter process
|
|
* communication.
|
|
*/
|
|
int create_shm_malloc (const ACE_TCHAR *name,
|
|
MALLOC_OPTIONS *options);
|
|
|
|
/// Close down the share memory pool. Clean up the
|
|
/// mmap file if we are the last one using it.
|
|
int close_shm_malloc (void);
|
|
|
|
ACE_HANDLE handle_;
|
|
|
|
/// Data exchange channel.
|
|
MALLOC_TYPE *shm_malloc_;
|
|
|
|
/// Constructor. Prevent this class from being instantiated.
|
|
ACE_MEM_SAP (void);
|
|
};
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|
|
|
|
#if defined (__ACE_INLINE__)
|
|
#include "ace/MEM_SAP.inl"
|
|
#endif /* __ACE_INLINE__ */
|
|
|
|
#endif /* ACE_HAS_POSITION_INDEPENDENT_POINTERS == 1 */
|
|
|
|
#include /**/ "ace/post.h"
|
|
|
|
#endif /* ACE_SOCK_IO_H */
|