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
|
/***************************************************************************
* lib/io/syscall_file.cpp
*
* Part of the STXXL. See http://stxxl.sourceforge.net
*
* Copyright (C) 2002 Roman Dementiev <dementiev@mpi-sb.mpg.de>
* Copyright (C) 2008, 2010 Andreas Beckmann <beckmann@cs.uni-frankfurt.de>
* Copyright (C) 2010 Johannes Singler <singler@kit.edu>
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
**************************************************************************/
#include <stxxl/bits/common/error_handling.h>
#include <stxxl/bits/common/mutex.h>
#include <stxxl/bits/config.h>
#include <stxxl/bits/io/iostats.h>
#include <stxxl/bits/io/request.h>
#include <stxxl/bits/io/request_interface.h>
#include <stxxl/bits/io/syscall_file.h>
#include "ufs_platform.h"
STXXL_BEGIN_NAMESPACE
void syscall_file::serve(void* buffer, offset_type offset, size_type bytes,
request::request_type type)
{
scoped_mutex_lock fd_lock(fd_mutex);
char* cbuffer = static_cast<char*>(buffer);
stats::scoped_read_write_timer read_write_timer(bytes, type == request::WRITE);
while (bytes > 0)
{
off_t rc = ::lseek(file_des, offset, SEEK_SET);
if (rc < 0)
{
STXXL_THROW_ERRNO
(io_error,
" this=" << this <<
" call=::lseek(fd,offset,SEEK_SET)" <<
" path=" << filename <<
" fd=" << file_des <<
" offset=" << offset <<
" buffer=" << cbuffer <<
" bytes=" << bytes <<
" type=" << ((type == request::READ) ? "READ" : "WRITE") <<
" rc=" << rc);
}
if (type == request::READ)
{
#if STXXL_MSVC
assert(bytes <= std::numeric_limits<unsigned int>::max());
if ((rc = ::read(file_des, cbuffer, (unsigned int)bytes)) <= 0)
#else
if ((rc = ::read(file_des, cbuffer, bytes)) <= 0)
#endif
{
STXXL_THROW_ERRNO
(io_error,
" this=" << this <<
" call=::read(fd,buffer,bytes)" <<
" path=" << filename <<
" fd=" << file_des <<
" offset=" << offset <<
" buffer=" << buffer <<
" bytes=" << bytes <<
" type=" << "READ" <<
" rc=" << rc);
}
bytes = (size_type)(bytes - rc);
offset += rc;
cbuffer += rc;
if (bytes > 0 && offset == this->_size())
{
// read request extends past end-of-file
// fill reminder with zeroes
memset(cbuffer, 0, bytes);
bytes = 0;
}
}
else
{
#if STXXL_MSVC
assert(bytes <= std::numeric_limits<unsigned int>::max());
if ((rc = ::write(file_des, cbuffer, (unsigned int)bytes)) <= 0)
#else
if ((rc = ::write(file_des, cbuffer, bytes)) <= 0)
#endif
{
STXXL_THROW_ERRNO
(io_error,
" this=" << this <<
" call=::write(fd,buffer,bytes)" <<
" path=" << filename <<
" fd=" << file_des <<
" offset=" << offset <<
" buffer=" << buffer <<
" bytes=" << bytes <<
" type=" << "WRITE" <<
" rc=" << rc);
}
bytes = (size_type)(bytes - rc);
offset += rc;
cbuffer += rc;
}
}
}
const char* syscall_file::io_type() const
{
return "syscall";
}
STXXL_END_NAMESPACE
// vim: et:ts=4:sw=4
|