xrootd
XrdSfsAio.hh
Go to the documentation of this file.
1#ifndef __SFS_AIO_H__
2#define __SFS_AIO_H__
3/******************************************************************************/
4/* */
5/* X r d S f s A i o . h h */
6/* */
7/* (c) 2004 by the Board of Trustees of the Leland Stanford, Jr., University */
8/* Produced by Andrew Hanushevsky for Stanford University under contract */
9/* DE-AC02-76-SFO0515 with the Department of Energy */
10/* */
11/* This file is part of the XRootD software suite. */
12/* */
13/* XRootD is free software: you can redistribute it and/or modify it under */
14/* the terms of the GNU Lesser General Public License as published by the */
15/* Free Software Foundation, either version 3 of the License, or (at your */
16/* option) any later version. */
17/* */
18/* XRootD is distributed in the hope that it will be useful, but WITHOUT */
19/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
20/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
21/* License for more details. */
22/* */
23/* You should have received a copy of the GNU Lesser General Public License */
24/* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
25/* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
26/* */
27/* The copyright holder's institutional names and contributor's names may not */
28/* be used to endorse or promote products derived from this software without */
29/* specific prior written permission of the institution or contributor. */
30/******************************************************************************/
31
32#include <signal.h>
33#include <sys/types.h>
34// _POSIX_ASYNCHRONOUS_IO, if it is defined, is in unistd.h.
35#include <unistd.h>
36#ifdef _POSIX_ASYNCHRONOUS_IO
37#ifdef __APPLE__
38#include <AvailabilityMacros.h>
39#include <sys/aio.h>
40#else
41#include <aio.h>
42#endif
43#else
44struct aiocb { // Minimal structure to avoid compiler errors
46 void *aio_buf;
47 size_t aio_nbytes;
50 struct sigevent aio_sigevent;
51 };
52#endif
53
54// The XrdSfsAIO class is meant to be derived. This object provides the
55// basic interface to handle AIO control block queues not processing.
56//
58{
59public:
60
62
63ssize_t Result; // If >= 0 valid result; else is -errno
64
65const char *TIdent; // Trace information (optional)
66
67// Method to handle completed reads
68//
69virtual void doneRead() = 0;
70
71// Method to hand completed writes
72//
73virtual void doneWrite() = 0;
74
75// Method to recycle free object
76//
77virtual void Recycle() = 0;
78
80#if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_10_4) || \
81 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_4)
82 sfsAio.aio_sigevent.sigev_value.sigval_ptr = (void *)this;
83#else
84 sfsAio.aio_sigevent.sigev_value.sival_ptr = (void *)this;
85#endif
86 sfsAio.aio_sigevent.sigev_notify = SIGEV_SIGNAL;
88 TIdent = (char *)"";
89 }
90virtual ~XrdSfsAio() {}
91};
92#endif
Definition: XrdSfsAio.hh:58
ssize_t Result
Definition: XrdSfsAio.hh:63
const char * TIdent
Definition: XrdSfsAio.hh:65
XrdSfsAio()
Definition: XrdSfsAio.hh:79
virtual ~XrdSfsAio()
Definition: XrdSfsAio.hh:90
virtual void Recycle()=0
virtual void doneRead()=0
struct aiocb sfsAio
Definition: XrdSfsAio.hh:61
virtual void doneWrite()=0
Definition: XrdSfsAio.hh:44
off_t aio_offset
Definition: XrdSfsAio.hh:48
size_t aio_nbytes
Definition: XrdSfsAio.hh:47
struct sigevent aio_sigevent
Definition: XrdSfsAio.hh:50
int aio_reqprio
Definition: XrdSfsAio.hh:49
int aio_fildes
Definition: XrdSfsAio.hh:45
void * aio_buf
Definition: XrdSfsAio.hh:46