CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
IOOutput Class Referenceabstract

#include <IOOutput.h>

Inheritance diagram for IOOutput:
IOChannel Storage File DCacheFile File LocalCacheFile LStoreFile RFIOFile StorageAccountProxy XrdFile

Public Member Functions

IOSize write (unsigned char byte)
 
IOSize write (IOBuffer from)
 
virtual IOSize write (const void *from, IOSize n)=0
 
virtual IOSize writev (const IOBuffer *from, IOSize buffers)
 
IOSize xwrite (const void *from, IOSize n)
 
IOSize xwrite (IOBuffer from)
 
IOSize xwritev (const IOBuffer *from, IOSize buffers)
 
virtual ~IOOutput (void)
 Destruct the stream. A no-op. More...
 

Detailed Description

Abstract base class for stream-oriented output targets.

Definition at line 7 of file IOOutput.h.

Constructor & Destructor Documentation

IOOutput::~IOOutput ( void  )
virtual

Destruct the stream. A no-op.

Definition at line 6 of file IOOutput.cc.

7 {}

Member Function Documentation

IOSize IOOutput::write ( unsigned char  byte)

Write a single byte to the output stream. This method is simply redirected to write(const void *, IOSize).

Note that derived classes should not normally call this method, as it simply routes the call back to derived class through the other virtual functions. Use this method only at the "outside edge" when transferring calls from one object to another, not in up/down calls in the inheritance tree.

Returns
The number of bytes written. Normally this will be one, but can be zero if the stream is in non-blocking mode and cannot accept output at this time.
Exceptions
Incase of error, an exception is thrown. However if the stream is in non-blocking mode and cannot accept output, it will not throw an exception – zero will be returned.

Definition at line 41 of file IOOutput.cc.

Referenced by write(), writev(), and xwrite().

42 { return write (&byte, 1); }
IOSize write(unsigned char byte)
Definition: IOOutput.cc:41
IOSize IOOutput::write ( IOBuffer  from)

Write to the output stream the buffer from. This method is simply redirected to write(const void *, IOSize).

Note that derived classes should not normally call this method, as it simply routes the call back to derived class through the other virtual functions. Use this method only at the "outside edge" when transferring calls from one object to another, not in up/down calls in the inheritance tree.

Returns
The number of bytes actually written. This is less or equal to the size of the buffer. The value can be less than requested if the stream is unable to accept all the output for platform or implementation reasons.
Exceptions
Incase of error, an exception is thrown. However if the stream is in non-blocking mode and cannot accept output, it will not throw an exception – the return value will be less than requested.

Definition at line 63 of file IOOutput.cc.

References IOBuffer::data(), IOBuffer::size(), and write().

64 { return write (from.data (), from.size ()); }
IOSize write(unsigned char byte)
Definition: IOOutput.cc:41
void * data(void) const
Definition: IOBuffer.h:45
IOSize size(void) const
Definition: IOBuffer.h:50
IOSize IOOutput::write ( const void *  from,
IOSize  n 
)
pure virtual

Write n bytes of data starting at address from.

Returns
The number of bytes written. Normally this will be n, but can be less, even zero, for example if the stream is non-blocking mode and cannot accept input at this time.
Exceptions
Incase of error, an exception is thrown. However if the stream is in non-blocking mode and cannot accept output, it will not throw an exception – the return value will be less than requested.

Implemented in XrdFile, File, RFIOFile, DCacheFile, LStoreFile, StorageAccountProxy, LocalCacheFile, and IOChannel.

IOSize IOOutput::writev ( const IOBuffer from,
IOSize  buffers 
)
virtual

Write to the output stream from multiple buffers. There are buffers to fill in an array starting at from. The buffers are filled in the order given, each buffer fully before the subsequent buffers. The method uses write(const void *, IOSize), but may be implemented more efficiently in derived classes.

Note that derived classes should not normally call this method, as it simply routes the call back to derived class through the other virtual functions. Use this method only at the "outside edge" when transferring calls from one object to another, not in up/down calls in the inheritance tree.

Returns
The number of bytes actually written. This is less or equal to the size of the buffers. The value can be less than requested if the stream is unable to accept all the output for platform or implementation reasons. Note that the return value indicates the number of bytes written, not the number of buffers; it is the sum total of bytes written from all the buffers.
Exceptions
Incase of error, an exception is thrown. However if the stream is in non-blocking mode and cannot accept output, it will not throw an exception – the return value will be less than requested.

Reimplemented in File, StorageAccountProxy, LocalCacheFile, and IOChannel.

Definition at line 90 of file IOOutput.cc.

References assert(), data, run_regression::done, i, findQualityFiles::size, write(), and x.

91 {
92  assert (! buffers || from);
93 
94  // Keep writing as long as possible; ignore errors if we have
95  // written something, otherwise pass it on.
96  IOSize x;
97  IOSize done = 0;
98  try
99  {
100  for (IOSize i = 0; i < buffers; ++i)
101  {
102  done += (x = write (from [i].data (), from [i].size ()));
103  if (x < from [i].size ())
104  break;
105  }
106  }
107  catch (cms::Exception &)
108  {
109  if (! done)
110  throw;
111  }
112 
113  return done;
114 }
IOSize write(unsigned char byte)
Definition: IOOutput.cc:41
int i
Definition: DBlmapReader.cc:9
assert(m_qm.get())
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
size_t IOSize
Definition: IOTypes.h:14
tuple size
Write out results.
IOSize IOOutput::xwrite ( const void *  from,
IOSize  n 
)

Like the corresponding write() method but writes until the requested number of bytes are written. Writes data from the buffer from for its full size.

Unlike write() which may write less data than requested, this function attempts to write, possibly in multiple write() calls, the exact requested amount of data. It stops writing only in case of error.

If you know the stream blocks on write() and it would be inconvenient to handle partial write(), use this method as a convenience for hiding platforms and circumstance differences. It makes no sense to use this method with non-blocking output.

Note that derived classes should not normally call this method, as it simply routes the call back to derived class through the other virtual functions. Use this method only at the "outside edge" when transferring calls from one object to another, not in up/down calls in the inheritance tree.

Returns
The number of bytes actually written from the buffer, i.e. the size of the buffer.
Exceptions
Allexceptions from write() are passed through unhandled. Therefore it is possible that an exception is thrown when this function has already written some data.

Definition at line 176 of file IOOutput.cc.

References run_regression::done, and write().

Referenced by xwrite(), and xwritev().

177 {
178  // Keep writing until we've written it all. Let errors fly over.
179  IOSize done = 0;
180  while (done < n)
181  done += write ((const char *) from + done, n - done);
182 
183  return done;
184 }
IOSize write(unsigned char byte)
Definition: IOOutput.cc:41
size_t IOSize
Definition: IOTypes.h:14
IOSize IOOutput::xwrite ( IOBuffer  from)

Like the corresponding write() method but writes until the requested number of bytes are written. Writes from contents. This method is redirected to xwrite(const void *, IOSize).

Unlike write() which may write less data than requested, this function attempts to write, possibly in multiple write() calls, the exact requested amount of data. It stops writing only in case of error.

If you know the stream blocks on write() and it would be inconvenient to handle partial write(), use this method as a convenience for hiding platforms and circumstance differences. It makes no sense to use this method with non-blocking output.

Note that derived classes should not normally call this method, as it simply routes the call back to derived class through the other virtual functions. Use this method only at the "outside edge" when transferring calls from one object to another, not in up/down calls in the inheritance tree.

Returns
The number of bytes actually written from the buffer, i.e. the size of the buffer.
Exceptions
Allexceptions from write() are passed through unhandled. Therefore it is possible that an exception is thrown when this function has already written some data.

Definition at line 146 of file IOOutput.cc.

References IOBuffer::data(), IOBuffer::size(), and xwrite().

147 { return xwrite (from.data (), from.size ()); }
IOSize xwrite(const void *from, IOSize n)
Definition: IOOutput.cc:176
void * data(void) const
Definition: IOBuffer.h:45
IOSize size(void) const
Definition: IOBuffer.h:50
IOSize IOOutput::xwritev ( const IOBuffer from,
IOSize  buffers 
)

Like the corresponding writev() method but writes until the requested number of bytes are written. Writes data from buffers starting at from, each for its full size. The buffers are filled in the order given. This method uses xwrite(const void *, IOSize).

Unlike write() which may write less data than requested, this function attempts to write, possibly in multiple write() calls, the exact requested amount of data. It stops writing only in case of error.

If you know the stream blocks on write() and it would be inconvenient to handle partial write(), use this method as a convenience for hiding platforms and circumstance differences. It makes no sense to use this method with non-blocking output.

Note that derived classes should not normally call this method, as it simply routes the call back to derived class through the other virtual functions. Use this method only at the "outside edge" when transferring calls from one object to another, not in up/down calls in the inheritance tree.

Returns
The number of bytes actually written from the buffer, i.e. the size of the buffer.
Exceptions
Allexceptions from write() are passed through unhandled. Therefore it is possible that an exception is thrown when this function has already written some data.

Definition at line 215 of file IOOutput.cc.

References assert(), data, run_regression::done, i, findQualityFiles::size, and xwrite().

216 {
217  // Keep writing until we've written it all. Let errors fly over.
218  // FIXME: Use writev(from, buffers) and then sort out in case of
219  // failure, the writev probably succeed directly with much less
220  // overhead.
221  assert (! buffers || from);
222 
223  IOSize done = 0;
224  for (IOSize i = 0; i < buffers; ++i)
225  done += xwrite (from [i].data (), from [i].size ());
226 
227  return done;
228 }
IOSize xwrite(const void *from, IOSize n)
Definition: IOOutput.cc:176
int i
Definition: DBlmapReader.cc:9
assert(m_qm.get())
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
size_t IOSize
Definition: IOTypes.h:14
tuple size
Write out results.