/usr/include/ace/FILE_IO.inl is in libace-dev 6.3.3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | // -*- C++ -*-
#include "ace/ACE.h"
#include "ace/OS_NS_sys_uio.h"
#include "ace/OS_NS_unistd.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE ssize_t
ACE_FILE_IO::sendv_n (const iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::sendv_n");
return ACE::writev_n (this->get_handle (),
iov,
n);
}
ACE_INLINE ssize_t
ACE_FILE_IO::send_n (const ACE_Message_Block *message_block,
const ACE_Time_Value *timeout,
size_t *bytes_transferred)
{
ACE_TRACE ("ACE_FILE_IO::send_n");
ACE_UNUSED_ARG (timeout);
return ACE::write_n (this->get_handle (),
message_block,
bytes_transferred);
}
// Recv an n byte message from the file.
ACE_INLINE ssize_t
ACE_FILE_IO::recvv_n (iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::recvv_n");
// @@ Carlos, can you please update this to call the
// new ACE::recvv_n() method that you write?
return ACE_OS::readv (this->get_handle (),
iov,
n);
}
// Send an <iovec> of size <n> to the file.
ACE_INLINE ssize_t
ACE_FILE_IO::sendv (const iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::sendv");
return ACE_OS::writev (this->get_handle (), iov, n);
}
// Send exactly N bytes from BUF to this file. Keeping trying until
// this many bytes are sent.
ACE_INLINE ssize_t
ACE_FILE_IO::send_n (const void *buf, size_t n) const
{
ACE_TRACE ("ACE_FILE_IO::send_n");
return ACE::write_n (this->get_handle (), buf, n);
}
// Receive exactly N bytes from this file into BUF. Keep trying until
// this many bytes are received.
ACE_INLINE ssize_t
ACE_FILE_IO::recv_n (void *buf, size_t n) const
{
ACE_TRACE ("ACE_FILE_IO::recv_n");
return ACE::read_n (this->get_handle (), buf, n);
}
ACE_INLINE ssize_t
ACE_FILE_IO::send (const void *buf, size_t n) const
{
ACE_TRACE ("ACE_FILE_IO::send");
return ACE_OS::write (this->get_handle (), buf, n);
}
ACE_INLINE ssize_t
ACE_FILE_IO::recv (void *buf, size_t n) const
{
ACE_TRACE ("ACE_FILE_IO::recv");
return ACE_OS::read (this->get_handle (), buf, n);
}
ACE_INLINE ssize_t
ACE_FILE_IO::send (const iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::send");
return ACE_OS::writev (this->get_handle (), iov, n);
}
ACE_INLINE ssize_t
ACE_FILE_IO::recv (iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::recv");
return ACE_OS::readv (this->get_handle (), iov, n);
}
#if defined (ACE_HAS_STREAM_PIPES)
ACE_INLINE ssize_t
ACE_FILE_IO::recv (ACE_Str_Buf *cntl, ACE_Str_Buf *data, int *band, int *flags) const
{
ACE_TRACE ("ACE_FILE_IO::recv");
return ACE_OS::getpmsg (this->get_handle (), (strbuf *) cntl, (strbuf *) data, band, flags);
}
ACE_INLINE ssize_t
ACE_FILE_IO::send (const ACE_Str_Buf *cntl, const ACE_Str_Buf *data, int band, int flags) const
{
ACE_TRACE ("ACE_FILE_IO::send");
return ACE_OS::putpmsg (this->get_handle (), (strbuf *) cntl, (strbuf *) data, band, flags);
}
ACE_INLINE ssize_t
ACE_FILE_IO::recv (ACE_Str_Buf *cntl, ACE_Str_Buf *data, int *flags) const
{
ACE_TRACE ("ACE_FILE_IO::recv");
return ACE_OS::getmsg (this->get_handle (), (strbuf *) cntl, (strbuf *) data, flags);
}
ACE_INLINE ssize_t
ACE_FILE_IO::send (const ACE_Str_Buf *cntl, const ACE_Str_Buf *data, int flags) const
{
ACE_TRACE ("ACE_FILE_IO::send");
return ACE_OS::putmsg (this->get_handle (), (strbuf *) cntl, (strbuf *) data, flags);
}
ACE_INLINE ssize_t
ACE_FILE_IO::send (const void *buf, size_t n,
ACE_OVERLAPPED *overlapped) const
{
ACE_TRACE ("ACE_FILE_IO::send");
return ACE_OS::write (this->get_handle (),
buf, n,
overlapped);
}
ACE_INLINE ssize_t
ACE_FILE_IO::recv (void *buf, size_t n,
ACE_OVERLAPPED *overlapped) const
{
ACE_TRACE ("ACE_FILE_IO::recv");
return ACE_OS::read (this->get_handle (), buf, n,
overlapped);
}
#endif /* ACE_HAS_STREAM_PIPES */
ACE_END_VERSIONED_NAMESPACE_DECL
|