X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FFileHandle.cci;h=6db39f59ebc152913baa09ce9539402dd7a0e9dd;hb=bd9f9d3fd6fbcff0112a7bf48ab9284da9576b11;hp=62b93049e743d0cfc20a904128671bbf05560c8a;hpb=34378cabd0ef59515f60b8e535d50fd5488c84e2;p=senf.git diff --git a/Socket/FileHandle.cci b/Socket/FileHandle.cci index 62b9304..6db39f5 100644 --- a/Socket/FileHandle.cci +++ b/Socket/FileHandle.cci @@ -1,9 +1,9 @@ // $Id$ // // Copyright (C) 2006 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Stefan Bund // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -27,6 +27,7 @@ //#include "FileHandle.ih" // Custom includes +#include "../Utils/senfassert.hh" #include #include "../Utils/Exception.hh" @@ -40,31 +41,9 @@ prefix_ senf::FileBody::FileBody(int fd) : fd_(fd) {} -prefix_ senf::FileBody::~FileBody() +prefix_ senf::FileHandle senf::FileBody::handle() { - if (valid()) - try { - close(); - } - catch (...) { - terminate(); - } -} - -prefix_ void senf::FileBody::close() -{ - if (!valid()) - throwErrno(EBADF); - v_close(); - fd_ = -1; -} - -prefix_ void senf::FileBody::terminate() -{ - if (valid()) { - v_terminate(); - fd_ = -1; - } + return FileHandle(ptr(this)); } prefix_ int senf::FileBody::fd() @@ -93,30 +72,58 @@ prefix_ bool senf::FileBody::valid() prefix_ bool senf::FileBody::readable() const { - return pollCheck(fd(),true); + return pollCheck(fd(),true,0); } -prefix_ void senf::FileBody::waitReadable() +prefix_ bool senf::FileBody::waitReadable(senf::ClockService::clock_type timeout) const { - pollCheck(fd(),true,true); + return pollCheck(fd(), true, + (timeout==-1?-1:senf::ClockService::in_milliseconds(timeout)) ); } prefix_ bool senf::FileBody::writeable() const { - return pollCheck(fd(),false); + return pollCheck(fd(),false,0); +} + +prefix_ bool senf::FileBody::waitWriteable(senf::ClockService::clock_type timeout) + const +{ + return pollCheck(fd(), false, + (timeout==-1?-1:senf::ClockService::in_milliseconds(timeout)) ); +} + +prefix_ bool senf::FileBody::oobReadable() + const +{ + return pollCheck(fd(),true,0,true); } -prefix_ void senf::FileBody::waitWriteable() +prefix_ bool senf::FileBody::waitOOBReadable(senf::ClockService::clock_type timeout) const { - pollCheck(fd(),false,true); + return pollCheck(fd(), true, + (timeout==-1?-1:senf::ClockService::in_milliseconds(timeout)), true); } /////////////////////////////////////////////////////////////////////////// // senf::FileHandle +prefix_ senf::FileBody & senf::FileHandle::body() +{ + SENF_ASSERT(body_); + return *body_; +} + +prefix_ senf::FileBody const & senf::FileHandle::body() + const +{ + SENF_ASSERT(body_); + return *body_; +} + prefix_ void senf::FileHandle::close() { body().close(); @@ -133,10 +140,10 @@ prefix_ bool senf::FileHandle::readable() return body().readable(); } -prefix_ void senf::FileHandle::waitReadable() +prefix_ bool senf::FileHandle::waitReadable(senf::ClockService::clock_type timeout) const { - body().waitReadable(); + return body().waitReadable(timeout); } prefix_ bool senf::FileHandle::writeable() @@ -145,10 +152,22 @@ prefix_ bool senf::FileHandle::writeable() return body().writeable(); } -prefix_ void senf::FileHandle::waitWriteable() +prefix_ bool senf::FileHandle::waitWriteable(senf::ClockService::clock_type timeout) + const +{ + return body().waitWriteable(timeout); +} + +prefix_ bool senf::FileHandle::oobReadable() + const +{ + return body().oobReadable(); +} + +prefix_ bool senf::FileHandle::waitOOBReadable(senf::ClockService::clock_type timeout) const { - body().waitWriteable(); + return body().waitOOBReadable(timeout); } prefix_ bool senf::FileHandle::blocking() @@ -190,22 +209,19 @@ prefix_ senf::FileHandle::FileHandle() : body_(0) {} +prefix_ senf::FileHandle::~FileHandle() +{ + if (body_ && ! body().is_shared()) + body().destroyClose(); +} + prefix_ senf::FileHandle::FileHandle(std::auto_ptr body) : body_(body.release()) {} -prefix_ senf::FileBody & senf::FileHandle::body() -{ - BOOST_ASSERT(body_); - return *body_; -} - -prefix_ senf::FileBody const & senf::FileHandle::body() - const -{ - BOOST_ASSERT(body_); - return *body_; -} +prefix_ senf::FileHandle::FileHandle(FileBody::ptr body) + : body_(body) +{} prefix_ senf::FileBody & senf::FileHandle::body(FileHandle & handle) {