1999-11-16 19:12:41 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-11-16 19:12:41 +00:00
|
|
|
|
|
|
|
#include "nsIOutputStream.idl"
|
|
|
|
#include "nsrootidl.idl"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This interface allows writing of primitive data types (integers,
|
|
|
|
* floating-point values, booleans, etc.) to a stream in a binary, untagged,
|
|
|
|
* fixed-endianness format. This might be used, for example, to implement
|
|
|
|
* network protocols or to produce architecture-neutral binary disk files,
|
|
|
|
* i.e. ones that can be read and written by both big-endian and little-endian
|
|
|
|
* platforms. Output is written in big-endian order (high-order byte first),
|
|
|
|
* as this is traditional network order.
|
|
|
|
*
|
|
|
|
* @See nsIBinaryInputStream
|
|
|
|
*/
|
|
|
|
|
|
|
|
[scriptable, uuid(204ee610-8765-11d3-90cf-0040056a906e)]
|
|
|
|
interface nsIBinaryOutputStream : nsIOutputStream {
|
|
|
|
void setOutputStream(in nsIOutputStream aOutputStream);
|
|
|
|
|
2006-10-16 08:01:00 +00:00
|
|
|
/**
|
|
|
|
* Write a boolean as an 8-bit char to the stream.
|
|
|
|
*/
|
2011-08-07 05:03:32 +00:00
|
|
|
void writeBoolean(in boolean aBoolean);
|
1999-11-16 19:12:41 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
void write8(in uint8_t aByte);
|
|
|
|
void write16(in uint16_t a16);
|
|
|
|
void write32(in uint32_t a32);
|
|
|
|
void write64(in uint64_t a64);
|
1999-11-16 19:12:41 +00:00
|
|
|
|
|
|
|
void writeFloat(in float aFloat);
|
|
|
|
void writeDouble(in double aDouble);
|
|
|
|
|
|
|
|
/**
|
2006-10-16 08:01:00 +00:00
|
|
|
* Write an 8-bit pascal style string to the stream.
|
|
|
|
* 32-bit length field, followed by length 8-bit chars.
|
1999-11-16 19:12:41 +00:00
|
|
|
*/
|
|
|
|
void writeStringZ(in string aString);
|
|
|
|
|
|
|
|
/**
|
2006-10-16 08:01:00 +00:00
|
|
|
* Write a 16-bit pascal style string to the stream.
|
|
|
|
* 32-bit length field, followed by length PRUnichars.
|
1999-11-16 19:12:41 +00:00
|
|
|
*/
|
|
|
|
void writeWStringZ(in wstring aString);
|
|
|
|
|
|
|
|
/**
|
2006-10-16 08:01:00 +00:00
|
|
|
* Write an 8-bit pascal style string (UTF8-encoded) to the stream.
|
|
|
|
* 32-bit length field, followed by length 8-bit chars.
|
1999-11-16 19:12:41 +00:00
|
|
|
*/
|
|
|
|
void writeUtf8Z(in wstring aString);
|
|
|
|
|
|
|
|
/**
|
2006-10-16 08:01:00 +00:00
|
|
|
* Write an opaque byte array to the stream.
|
1999-11-16 19:12:41 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
void writeBytes([size_is(aLength)] in string aString, in uint32_t aLength);
|
2003-03-13 21:23:18 +00:00
|
|
|
|
|
|
|
/**
|
2006-10-16 08:01:00 +00:00
|
|
|
* Write an opaque byte array to the stream.
|
2003-03-13 21:23:18 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
void writeByteArray([array, size_is(aLength)] in uint8_t aBytes,
|
|
|
|
in uint32_t aLength);
|
2003-03-13 21:23:18 +00:00
|
|
|
|
1999-11-16 19:12:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
%{C++
|
2001-07-31 19:05:34 +00:00
|
|
|
|
|
|
|
inline nsresult
|
|
|
|
NS_WriteOptionalStringZ(nsIBinaryOutputStream* aStream, const char* aString)
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
bool nonnull = (aString != nullptr);
|
2001-07-31 19:05:34 +00:00
|
|
|
nsresult rv = aStream->WriteBoolean(nonnull);
|
|
|
|
if (NS_SUCCEEDED(rv) && nonnull)
|
|
|
|
rv = aStream->WriteStringZ(aString);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsresult
|
|
|
|
NS_WriteOptionalWStringZ(nsIBinaryOutputStream* aStream, const PRUnichar* aString)
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
bool nonnull = (aString != nullptr);
|
2001-07-31 19:05:34 +00:00
|
|
|
nsresult rv = aStream->WriteBoolean(nonnull);
|
|
|
|
if (NS_SUCCEEDED(rv) && nonnull)
|
|
|
|
rv = aStream->WriteWStringZ(aString);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-11-16 19:12:41 +00:00
|
|
|
%}
|