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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
// $Id: Mem_Map_Stream.cpp 91671 2010-09-08 18:39:23Z johnnyw $
#include "ace/FILE_Addr.h"
#include "ace/OS_NS_unistd.h"
#include "ACEXML/common/Mem_Map_Stream.h"
ACEXML_Mem_Map_Stream::ACEXML_Mem_Map_Stream (void)
: svc_handler_ (0)
{
}
ACE_SOCK_Stream &
ACEXML_Mem_Map_Stream::stream (void)
{
return svc_handler_->peer ();
}
ssize_t
ACEXML_Mem_Map_Stream::send_n (const void *buf, size_t size,
ACE_Time_Value *tv)
{
return svc_handler_->peer ().send_n (buf, size, 0, tv);
}
int
ACEXML_Mem_Map_Stream::eof (void) const
{
return this->get_pos_ >= this->end_of_mapping_plus1_;
}
int
ACEXML_Mem_Map_Stream::get_char (void)
{
if (this->eof () && this->grow_file_and_remap () == -1)
return EOF;
return *this->get_pos_++;
}
void
ACEXML_Mem_Map_Stream::rewind (void)
{
this->recv_pos_ = reinterpret_cast<char *> (this->mem_map_.addr ());
this->get_pos_ = this->recv_pos_;
this->end_of_mapping_plus1_ = this->recv_pos_ + this->mem_map_.size ();
}
int
ACEXML_Mem_Map_Stream::peek_char (size_t offset)
{
// We may need to iterate if the size of <n> is large.
while (this->get_pos_ + offset >= this->end_of_mapping_plus1_)
if (this->grow_file_and_remap () == -1)
return EOF;
return this->get_pos_[offset];
}
const char *
ACEXML_Mem_Map_Stream::recv (void) const
{
return this->recv_pos_;
}
const char *
ACEXML_Mem_Map_Stream::recv (size_t &len)
{
if (this->eof () && this->grow_file_and_remap () == -1)
{
len = 0;
return 0;
}
const char *s = this->recv_pos_;
this->seek (static_cast<ACE_OFF_T> (len), SEEK_CUR);
len = this->get_pos_ - s;
return s;
}
size_t
ACEXML_Mem_Map_Stream::recv_len (void) const
{
return this->get_pos_ - this->recv_pos_;
}
const char *
ACEXML_Mem_Map_Stream::peek_str (size_t offset,
size_t size)
{
// We will iterate if the size of <offset> is large.
while (this->get_pos_ + (offset + size) > this->end_of_mapping_plus1_)
if (this->grow_file_and_remap () == -1)
return 0;
return &this->get_pos_[offset];
}
ACE_OFF_T
ACEXML_Mem_Map_Stream::seek (ACE_OFF_T offset, int whence)
{
switch (whence)
{
case SEEK_SET:
this->get_pos_ =
reinterpret_cast<char *> (this->mem_map_.addr ())
+ offset;
break;
case SEEK_CUR:
this->get_pos_ += offset;
break;
case SEEK_END:
this->get_pos_ =
this->end_of_mapping_plus1_ + offset;
// @@ Not sure how to implement this (yet).
ACE_NOTSUP_RETURN (-1);
}
// Make sure that the backing store will cover this.
while (this->get_pos_ > this->end_of_mapping_plus1_)
if (this->grow_file_and_remap () == -1)
this->get_pos_ = this->end_of_mapping_plus1_;
this->recv_pos_ = this->get_pos_;
return
ACE_Utils::truncate_cast<ACE_OFF_T> (
this->recv_pos_ - reinterpret_cast<char *> (this->mem_map_.addr ()));
}
Svc_Handler *
ACEXML_Mem_Map_Stream::svc_handler (void)
{
return this->svc_handler_;
}
size_t
ACEXML_Mem_Map_Stream::available (void) const
{
return this->end_of_mapping_plus1_ - this->get_pos_;
}
int
ACEXML_Mem_Map_Stream::open (Connector *connector,
const ACE_INET_Addr &addr)
{
svc_handler_ = 0;
// Connect to the server at <addr>. If the handler has to be
// connected to the server again, the Caching strategy takes care
// and uses the same connection.
if (connector->connect (svc_handler_,
addr) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"%p %s %d\n",
"Connect failed",
addr.get_host_name (),
addr.get_port_number ()),
-1);
}
// Create a temporary filename.
ACE_FILE_Addr file (ACE_sap_any_cast (ACE_FILE_Addr &));
// Create the temporary file via the <ACE_Mem_Map> class API.
if (this->mem_map_.open (file.get_path_name (),
O_RDWR | O_CREAT | O_APPEND,
ACE_DEFAULT_FILE_PERMS) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
"%p\n",
"open"),
-1);
// Make sure to unlink this right away so that if this process
// crashes these files will be removed automatically.
else if (ACE_OS::unlink (file.get_path_name ()) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
"%p\n",
"unlink"),
-1);
else
// Initialize all the position pointers to 0.
this->rewind ();
return 0;
}
int
ACEXML_Mem_Map_Stream::grow_file_and_remap (void)
{
char buf[8192];
// Copy the next chunk of bytes from the socket into the temporary
// file.
ACE_Time_Value tv (ACE_DEFAULT_TIMEOUT);
ssize_t bytes = 0;
ssize_t n = 0;
while (1)
{
n = this->svc_handler_->peer ().recv (buf, sizeof buf, 0, &tv);
if (n < 0)
{
if (errno != EWOULDBLOCK)
{
ACE_ERROR ((LM_ERROR, "%p\n", "recv"));
}
return -1;
}
bytes += n;
if (n == 0 && !bytes)
return -1;
else if (n == 0)
break;
else if (ACE::write_n (this->mem_map_.handle (), buf, n) != n)
ACE_ERROR_RETURN ((LM_ERROR,
"%p\n",
"write_n"),
-1);
}
// ssize_t n = this->svc_handler_->peer ().recv (buf, sizeof buf, 0, &tv);
// if (n == -1)
// {
// ACE_ERROR ((LM_ERROR, "%p\n", "recv"));
// return -1;
// }
// else if (n == 0)
// return -1;
// else if (ACE::write_n (this->mem_map_.handle (), buf, n) != n)
// ACE_ERROR_RETURN ((LM_ERROR,
// "%p\n",
// "write_n"),
// -1);
// Grow the memory-mapping to encompass the entire temporary file.
if (this->mem_map_.map (static_cast<size_t> (-1),
PROT_RDWR,
ACE_MAP_PRIVATE,
(void*)0) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
"%p\n",
"map"),
-1);
// MAP_FAILED is used as a "first time in" flag.
if (this->recv_pos_ == MAP_FAILED)
{
this->recv_pos_ = reinterpret_cast<char *> (this->mem_map_.addr ());
this->get_pos_ = this->recv_pos_;
}
this->end_of_mapping_plus1_ =
reinterpret_cast<char *> (this->mem_map_.addr ())
+ this->mem_map_.size ();
return 0;
}
ACEXML_Mem_Map_Stream::~ACEXML_Mem_Map_Stream (void)
{
// Remove the mapping and the file.
this->mem_map_.remove ();
delete this->svc_handler_;
}
|