mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 01:37:00 +00:00
Applied dep and realm updates
This commit is contained in:
parent
12257a5bc2
commit
5260602e28
2020 changed files with 39571 additions and 173090 deletions
88
dep/acelite/ace/FIFO_Recv.cpp
Normal file
88
dep/acelite/ace/FIFO_Recv.cpp
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
// $Id: FIFO_Recv.cpp 91286 2010-08-05 09:04:31Z johnnyw $
|
||||
|
||||
#include "ace/FIFO_Recv.h"
|
||||
#include "ace/Log_Msg.h"
|
||||
#include "ace/OS_NS_fcntl.h"
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
#include "ace/FIFO_Recv.inl"
|
||||
#endif /* __ACE_INLINE__ */
|
||||
|
||||
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_ALLOC_HOOK_DEFINE(ACE_FIFO_Recv)
|
||||
|
||||
void
|
||||
ACE_FIFO_Recv::dump (void) const
|
||||
{
|
||||
#if defined (ACE_HAS_DUMP)
|
||||
ACE_TRACE ("ACE_FIFO_Recv::dump");
|
||||
ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
|
||||
ACE_FIFO::dump ();
|
||||
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("aux_handle_ = %d"), this->aux_handle_));
|
||||
ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
|
||||
#endif /* ACE_HAS_DUMP */
|
||||
}
|
||||
|
||||
int
|
||||
ACE_FIFO_Recv::close (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_FIFO_Recv::close");
|
||||
int result = ACE_FIFO::close ();
|
||||
|
||||
if (this->aux_handle_ != ACE_INVALID_HANDLE)
|
||||
return ACE_OS::close (this->aux_handle_);
|
||||
else
|
||||
return result;
|
||||
}
|
||||
|
||||
// Note that persistent means "open fifo for writing, as well as
|
||||
// reading." This ensures that the fifo never gets EOF, even if there
|
||||
// aren't any writers at the moment!
|
||||
|
||||
int
|
||||
ACE_FIFO_Recv::open (const ACE_TCHAR *fifo_name,
|
||||
int flags,
|
||||
mode_t perms,
|
||||
int persistent,
|
||||
LPSECURITY_ATTRIBUTES sa)
|
||||
{
|
||||
ACE_TRACE ("ACE_FIFO_Recv::open");
|
||||
|
||||
if (ACE_FIFO::open (fifo_name, ACE_NONBLOCK | flags, perms, sa) == -1)
|
||||
return -1;
|
||||
else if (this->disable (ACE_NONBLOCK) == -1)
|
||||
return -1;
|
||||
else if (persistent
|
||||
&& (this->aux_handle_ = ACE_OS::open (fifo_name, O_WRONLY, 0, sa)) == ACE_INVALID_HANDLE)
|
||||
return -1;
|
||||
else
|
||||
return this->get_handle () == ACE_INVALID_HANDLE ? -1 : 0;
|
||||
}
|
||||
|
||||
ACE_FIFO_Recv::ACE_FIFO_Recv (void)
|
||||
: aux_handle_ (ACE_INVALID_HANDLE)
|
||||
{
|
||||
ACE_TRACE ("ACE_FIFO_Recv::ACE_FIFO_Recv");
|
||||
}
|
||||
|
||||
ACE_FIFO_Recv::ACE_FIFO_Recv (const ACE_TCHAR *fifo_name,
|
||||
int flags,
|
||||
mode_t perms,
|
||||
int persistent,
|
||||
LPSECURITY_ATTRIBUTES sa)
|
||||
: aux_handle_ (ACE_INVALID_HANDLE)
|
||||
{
|
||||
ACE_TRACE ("ACE_FIFO_Recv::ACE_FIFO_Recv");
|
||||
|
||||
if (this->ACE_FIFO_Recv::open (fifo_name,
|
||||
flags,
|
||||
perms,
|
||||
persistent,
|
||||
sa) == -1)
|
||||
ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("ACE_FIFO_Recv")));
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
Loading…
Add table
Add a link
Reference in a new issue