123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- /*
- ==============================================================================
- This file is part of the juce_core module of the JUCE library.
- Copyright (c) 2015 - ROLI Ltd.
- Permission to use, copy, modify, and/or distribute this software for any purpose with
- or without fee is hereby granted, provided that the above copyright notice and this
- permission notice appear in all copies.
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
- TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
- NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
- IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
- CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- ------------------------------------------------------------------------------
- NOTE! This permissive ISC license applies ONLY to files within the juce_core module!
- All other JUCE modules are covered by a dual GPL/commercial license, so if you are
- using any other modules, be sure to check that you also comply with their license.
- For more details, visit www.juce.com
- ==============================================================================
- */
- #if JUCE_DEBUG
- struct DanglingStreamChecker
- {
- DanglingStreamChecker() {}
- ~DanglingStreamChecker()
- {
- /*
- It's always a bad idea to leak any object, but if you're leaking output
- streams, then there's a good chance that you're failing to flush a file
- to disk properly, which could result in corrupted data and other similar
- nastiness..
- */
- jassert (activeStreams.size() == 0);
- }
- Array<void*, CriticalSection> activeStreams;
- };
- static DanglingStreamChecker danglingStreamChecker;
- #endif
- //==============================================================================
- OutputStream::OutputStream()
- : newLineString (NewLine::getDefault())
- {
- #if JUCE_DEBUG
- danglingStreamChecker.activeStreams.add (this);
- #endif
- }
- OutputStream::~OutputStream()
- {
- #if JUCE_DEBUG
- danglingStreamChecker.activeStreams.removeFirstMatchingValue (this);
- #endif
- }
- //==============================================================================
- bool OutputStream::writeBool (const bool b)
- {
- return writeByte (b ? (char) 1
- : (char) 0);
- }
- bool OutputStream::writeByte (char byte)
- {
- return write (&byte, 1);
- }
- bool OutputStream::writeRepeatedByte (uint8 byte, size_t numTimesToRepeat)
- {
- for (size_t i = 0; i < numTimesToRepeat; ++i)
- if (! writeByte ((char) byte))
- return false;
- return true;
- }
- bool OutputStream::writeShort (short value)
- {
- const unsigned short v = ByteOrder::swapIfBigEndian ((unsigned short) value);
- return write (&v, 2);
- }
- bool OutputStream::writeShortBigEndian (short value)
- {
- const unsigned short v = ByteOrder::swapIfLittleEndian ((unsigned short) value);
- return write (&v, 2);
- }
- bool OutputStream::writeInt (int value)
- {
- const unsigned int v = ByteOrder::swapIfBigEndian ((unsigned int) value);
- return write (&v, 4);
- }
- bool OutputStream::writeIntBigEndian (int value)
- {
- const unsigned int v = ByteOrder::swapIfLittleEndian ((unsigned int) value);
- return write (&v, 4);
- }
- bool OutputStream::writeCompressedInt (int value)
- {
- unsigned int un = (value < 0) ? (unsigned int) -value
- : (unsigned int) value;
- uint8 data[5];
- int num = 0;
- while (un > 0)
- {
- data[++num] = (uint8) un;
- un >>= 8;
- }
- data[0] = (uint8) num;
- if (value < 0)
- data[0] |= 0x80;
- return write (data, (size_t) num + 1);
- }
- bool OutputStream::writeInt64 (int64 value)
- {
- const uint64 v = ByteOrder::swapIfBigEndian ((uint64) value);
- return write (&v, 8);
- }
- bool OutputStream::writeInt64BigEndian (int64 value)
- {
- const uint64 v = ByteOrder::swapIfLittleEndian ((uint64) value);
- return write (&v, 8);
- }
- bool OutputStream::writeFloat (float value)
- {
- union { int asInt; float asFloat; } n;
- n.asFloat = value;
- return writeInt (n.asInt);
- }
- bool OutputStream::writeFloatBigEndian (float value)
- {
- union { int asInt; float asFloat; } n;
- n.asFloat = value;
- return writeIntBigEndian (n.asInt);
- }
- bool OutputStream::writeDouble (double value)
- {
- union { int64 asInt; double asDouble; } n;
- n.asDouble = value;
- return writeInt64 (n.asInt);
- }
- bool OutputStream::writeDoubleBigEndian (double value)
- {
- union { int64 asInt; double asDouble; } n;
- n.asDouble = value;
- return writeInt64BigEndian (n.asInt);
- }
- bool OutputStream::writeString (const String& text)
- {
- #if (JUCE_STRING_UTF_TYPE == 8)
- return write (text.toRawUTF8(), text.getNumBytesAsUTF8() + 1);
- #else
- // (This avoids using toUTF8() to prevent the memory bloat that it would leave behind
- // if lots of large, persistent strings were to be written to streams).
- const size_t numBytes = text.getNumBytesAsUTF8() + 1;
- HeapBlock<char> temp (numBytes);
- text.copyToUTF8 (temp, numBytes);
- return write (temp, numBytes);
- #endif
- }
- bool OutputStream::writeText (const String& text, const bool asUTF16,
- const bool writeUTF16ByteOrderMark)
- {
- if (asUTF16)
- {
- if (writeUTF16ByteOrderMark)
- write ("\x0ff\x0fe", 2);
- String::CharPointerType src (text.getCharPointer());
- bool lastCharWasReturn = false;
- for (;;)
- {
- const juce_wchar c = src.getAndAdvance();
- if (c == 0)
- break;
- if (c == '\n' && ! lastCharWasReturn)
- writeShort ((short) '\r');
- lastCharWasReturn = (c == L'\r');
- if (! writeShort ((short) c))
- return false;
- }
- }
- else
- {
- const char* src = text.toUTF8();
- const char* t = src;
- for (;;)
- {
- if (*t == '\n')
- {
- if (t > src)
- if (! write (src, (size_t) (t - src)))
- return false;
- if (! write ("\r\n", 2))
- return false;
- src = t + 1;
- }
- else if (*t == '\r')
- {
- if (t[1] == '\n')
- ++t;
- }
- else if (*t == 0)
- {
- if (t > src)
- if (! write (src, (size_t) (t - src)))
- return false;
- break;
- }
- ++t;
- }
- }
- return true;
- }
- int64 OutputStream::writeFromInputStream (InputStream& source, int64 numBytesToWrite)
- {
- if (numBytesToWrite < 0)
- numBytesToWrite = std::numeric_limits<int64>::max();
- int64 numWritten = 0;
- while (numBytesToWrite > 0)
- {
- char buffer [8192];
- const int num = source.read (buffer, (int) jmin (numBytesToWrite, (int64) sizeof (buffer)));
- if (num <= 0)
- break;
- write (buffer, (size_t) num);
- numBytesToWrite -= num;
- numWritten += num;
- }
- return numWritten;
- }
- //==============================================================================
- void OutputStream::setNewLineString (const String& newLineString_)
- {
- newLineString = newLineString_;
- }
- //==============================================================================
- template <typename IntegerType>
- static void writeIntToStream (OutputStream& stream, IntegerType number)
- {
- char buffer [NumberToStringConverters::charsNeededForInt];
- char* end = buffer + numElementsInArray (buffer);
- const char* start = NumberToStringConverters::numberToString (end, number);
- stream.write (start, (size_t) (end - start - 1));
- }
- JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const int number)
- {
- writeIntToStream (stream, number);
- return stream;
- }
- JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const int64 number)
- {
- writeIntToStream (stream, number);
- return stream;
- }
- JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const double number)
- {
- return stream << String (number);
- }
- JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const char character)
- {
- stream.writeByte (character);
- return stream;
- }
- JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const char* const text)
- {
- stream.write (text, strlen (text));
- return stream;
- }
- JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const MemoryBlock& data)
- {
- if (data.getSize() > 0)
- stream.write (data.getData(), data.getSize());
- return stream;
- }
- JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const File& fileToRead)
- {
- FileInputStream in (fileToRead);
- if (in.openedOk())
- return stream << in;
- return stream;
- }
- JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, InputStream& streamToRead)
- {
- stream.writeFromInputStream (streamToRead, -1);
- return stream;
- }
- JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const NewLine&)
- {
- return stream << stream.getNewLineString();
- }
|