| 1 |
// Copyright (c) 2009, Whispersoft s.r.l. |
|---|
| 2 |
// All rights reserved. |
|---|
| 3 |
// |
|---|
| 4 |
// Redistribution and use in source and binary forms, with or without |
|---|
| 5 |
// modification, are permitted provided that the following conditions are |
|---|
| 6 |
// met: |
|---|
| 7 |
// |
|---|
| 8 |
// * Redistributions of source code must retain the above copyright |
|---|
| 9 |
// notice, this list of conditions and the following disclaimer. |
|---|
| 10 |
// * Redistributions in binary form must reproduce the above |
|---|
| 11 |
// copyright notice, this list of conditions and the following disclaimer |
|---|
| 12 |
// in the documentation and/or other materials provided with the |
|---|
| 13 |
// distribution. |
|---|
| 14 |
// * Neither the name of Whispersoft s.r.l. nor the names of its |
|---|
| 15 |
// contributors may be used to endorse or promote products derived from |
|---|
| 16 |
// this software without specific prior written permission. |
|---|
| 17 |
// |
|---|
| 18 |
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 19 |
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|---|
| 20 |
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|---|
| 21 |
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|---|
| 22 |
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|---|
| 23 |
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|---|
| 24 |
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|---|
| 25 |
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|---|
| 26 |
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|---|
| 27 |
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|---|
| 28 |
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 29 |
// |
|---|
| 30 |
// Author: Cosmin Tudorache |
|---|
| 31 |
|
|---|
| 32 |
#ifndef __IO_OUTPUT_STREAM_H__ |
|---|
| 33 |
#define __IO_OUTPUT_STREAM_H__ |
|---|
| 34 |
|
|---|
| 35 |
#include <string> |
|---|
| 36 |
#include <whisperlib/common/base/types.h> |
|---|
| 37 |
#include <whisperlib/common/base/system.h> |
|---|
| 38 |
|
|---|
| 39 |
#include <whisperlib/common/io/input_stream.h> |
|---|
| 40 |
#include <whisperlib/common/io/stream_base.h> |
|---|
| 41 |
#include <whisperlib/common/io/iomarker.h> |
|---|
| 42 |
#include <whisperlib/common/io/seeker.h> |
|---|
| 43 |
|
|---|
| 44 |
namespace io { |
|---|
| 45 |
|
|---|
| 46 |
class OutputStream : public StreamBase { |
|---|
| 47 |
public: |
|---|
| 48 |
OutputStream() : StreamBase() { |
|---|
| 49 |
} |
|---|
| 50 |
OutputStream(common::ByteOrder byte_order, |
|---|
| 51 |
IoMarker* marker, Seeker* seeker) |
|---|
| 52 |
: StreamBase(byte_order, marker, seeker) { |
|---|
| 53 |
} |
|---|
| 54 |
virtual ~OutputStream() { |
|---|
| 55 |
} |
|---|
| 56 |
|
|---|
| 57 |
// Append "len" bytes of data from the given "buffer" to the stream |
|---|
| 58 |
// Returns the number of bytes written. Can be less than len if the stream |
|---|
| 59 |
// has not enough space, or negative on error. |
|---|
| 60 |
virtual int32 Write(const void* buffer, int32 len) = 0; |
|---|
| 61 |
|
|---|
| 62 |
// Append "len" bytes of data from the given input stream "in" to the stream. |
|---|
| 63 |
// The default implementation uses a simple copy through a temporary |
|---|
| 64 |
// char[] buffer. |
|---|
| 65 |
// Subclases are free to provide a particulary better implementation. |
|---|
| 66 |
// Returns the number of bytes written. Can be less than len if "in" contains |
|---|
| 67 |
// fewer bytes or the stream has not enough space. |
|---|
| 68 |
// Returns negative on error. |
|---|
| 69 |
virtual int32 Write(io::InputStream& in, int32 len = kMaxInt32); |
|---|
| 70 |
|
|---|
| 71 |
// Returns the space available for write. If the stream is unlimited return -1 |
|---|
| 72 |
virtual int64 Writable() const = 0; |
|---|
| 73 |
|
|---|
| 74 |
// Convenience function for writing a NULL terminated string. |
|---|
| 75 |
int32 Write(const char* text) { |
|---|
| 76 |
return Write(text, strlen(text)); |
|---|
| 77 |
} |
|---|
| 78 |
|
|---|
| 79 |
// Convenience function for a string |
|---|
| 80 |
int32 WriteString(const string& s) { |
|---|
| 81 |
return Write(s.data(), s.size()); |
|---|
| 82 |
} |
|---|
| 83 |
int32 Write(const string& s) { |
|---|
| 84 |
return Write(s.data(), s.size()); |
|---|
| 85 |
} |
|---|
| 86 |
private: |
|---|
| 87 |
DISALLOW_EVIL_CONSTRUCTORS(OutputStream); |
|---|
| 88 |
}; |
|---|
| 89 |
} |
|---|
| 90 |
#endif // __IO_OUTPUT_STREAM_H__ |
|---|