mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +03:00

There was no consenus in the newsgroup about what to do about renaming toStringz to be properly camelcased. It was pretty much divided between renaming it to toCString and leaving it exactly as-is. No one wanted it to be toStringZ. So, given the lack of consensus, I'm just going to leave it as toStringz.
363 lines
8.9 KiB
D
363 lines
8.9 KiB
D
// Written in the D programming language.
|
|
|
|
/**
|
|
* Boilerplate:
|
|
* $(std_boilerplate.html)
|
|
* Macros:
|
|
* WIKI = Phobos/StdOutbuffer
|
|
*
|
|
* Copyright: Copyright Digital Mars 2000 - 2009.
|
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
|
* Authors: $(WEB digitalmars.com, Walter Bright)
|
|
* Source: $(PHOBOSSRC std/_outbuffer.d)
|
|
*/
|
|
/* Copyright Digital Mars 2000 - 2009.
|
|
* Distributed under the Boost Software License, Version 1.0.
|
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
|
* http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
module std.outbuffer;
|
|
|
|
private
|
|
{
|
|
import core.memory;
|
|
import std.string;
|
|
import std.c.stdio;
|
|
import std.c.stdlib;
|
|
import std.c.stdarg;
|
|
}
|
|
|
|
/*********************************************
|
|
* OutBuffer provides a way to build up an array of bytes out
|
|
* of raw data. It is useful for things like preparing an
|
|
* array of bytes to write out to a file.
|
|
* OutBuffer's byte order is the format native to the computer.
|
|
* To control the byte order (endianness), use a class derived
|
|
* from OutBuffer.
|
|
*/
|
|
|
|
class OutBuffer
|
|
{
|
|
ubyte data[];
|
|
size_t offset;
|
|
|
|
invariant()
|
|
{
|
|
//printf("this = %p, offset = %x, data.length = %u\n", this, offset, data.length);
|
|
assert(offset <= data.length);
|
|
}
|
|
|
|
this()
|
|
{
|
|
//printf("in OutBuffer constructor\n");
|
|
}
|
|
|
|
/*********************************
|
|
* Convert to array of bytes.
|
|
*/
|
|
|
|
ubyte[] toBytes() { return data[0 .. offset]; }
|
|
|
|
/***********************************
|
|
* Preallocate nbytes more to the size of the internal buffer.
|
|
*
|
|
* This is a
|
|
* speed optimization, a good guess at the maximum size of the resulting
|
|
* buffer will improve performance by eliminating reallocations and copying.
|
|
*/
|
|
|
|
|
|
void reserve(size_t nbytes)
|
|
in
|
|
{
|
|
assert(offset + nbytes >= offset);
|
|
}
|
|
out
|
|
{
|
|
assert(offset + nbytes <= data.length);
|
|
}
|
|
body
|
|
{
|
|
//c.stdio.printf("OutBuffer.reserve: length = %d, offset = %d, nbytes = %d\n", data.length, offset, nbytes);
|
|
if (data.length < offset + nbytes)
|
|
{
|
|
data.length = (offset + nbytes) * 2;
|
|
GC.clrAttr(data.ptr, GC.BlkAttr.NO_SCAN);
|
|
}
|
|
}
|
|
|
|
/*************************************
|
|
* Append data to the internal buffer.
|
|
*/
|
|
|
|
void write(const(ubyte)[] bytes)
|
|
{
|
|
reserve(bytes.length);
|
|
data[offset .. offset + bytes.length] = bytes;
|
|
offset += bytes.length;
|
|
}
|
|
|
|
void write(in wchar[] chars)
|
|
{
|
|
write(cast(ubyte[]) chars);
|
|
}
|
|
|
|
void write(const(dchar)[] chars)
|
|
{
|
|
write(cast(ubyte[]) chars);
|
|
}
|
|
|
|
void write(ubyte b) /// ditto
|
|
{
|
|
reserve(ubyte.sizeof);
|
|
this.data[offset] = b;
|
|
offset += ubyte.sizeof;
|
|
}
|
|
|
|
void write(byte b) { write(cast(ubyte)b); } /// ditto
|
|
void write(char c) { write(cast(ubyte)c); } /// ditto
|
|
void write(dchar c) { write(cast(uint)c); } /// ditto
|
|
|
|
void write(ushort w) /// ditto
|
|
{
|
|
reserve(ushort.sizeof);
|
|
*cast(ushort *)&data[offset] = w;
|
|
offset += ushort.sizeof;
|
|
}
|
|
|
|
void write(short s) { write(cast(ushort)s); } /// ditto
|
|
|
|
void write(wchar c) /// ditto
|
|
{
|
|
reserve(wchar.sizeof);
|
|
*cast(wchar *)&data[offset] = c;
|
|
offset += wchar.sizeof;
|
|
}
|
|
|
|
void write(uint w) /// ditto
|
|
{
|
|
reserve(uint.sizeof);
|
|
*cast(uint *)&data[offset] = w;
|
|
offset += uint.sizeof;
|
|
}
|
|
|
|
void write(int i) { write(cast(uint)i); } /// ditto
|
|
|
|
void write(ulong l) /// ditto
|
|
{
|
|
reserve(ulong.sizeof);
|
|
*cast(ulong *)&data[offset] = l;
|
|
offset += ulong.sizeof;
|
|
}
|
|
|
|
void write(long l) { write(cast(ulong)l); } /// ditto
|
|
|
|
void write(float f) /// ditto
|
|
{
|
|
reserve(float.sizeof);
|
|
*cast(float *)&data[offset] = f;
|
|
offset += float.sizeof;
|
|
}
|
|
|
|
void write(double f) /// ditto
|
|
{
|
|
reserve(double.sizeof);
|
|
*cast(double *)&data[offset] = f;
|
|
offset += double.sizeof;
|
|
}
|
|
|
|
void write(real f) /// ditto
|
|
{
|
|
reserve(real.sizeof);
|
|
*cast(real *)&data[offset] = f;
|
|
offset += real.sizeof;
|
|
}
|
|
|
|
void write(in char[] s) /// ditto
|
|
{
|
|
write(cast(ubyte[])s);
|
|
}
|
|
// void write(immutable(char)[] s) /// ditto
|
|
// {
|
|
// write(cast(ubyte[])s);
|
|
// }
|
|
|
|
void write(OutBuffer buf) /// ditto
|
|
{
|
|
write(buf.toBytes());
|
|
}
|
|
|
|
/****************************************
|
|
* Append nbytes of 0 to the internal buffer.
|
|
*/
|
|
|
|
void fill0(size_t nbytes)
|
|
{
|
|
reserve(nbytes);
|
|
data[offset .. offset + nbytes] = 0;
|
|
offset += nbytes;
|
|
}
|
|
|
|
/**********************************
|
|
* 0-fill to align on power of 2 boundary.
|
|
*/
|
|
|
|
void alignSize(size_t alignsize)
|
|
in
|
|
{
|
|
assert(alignsize && (alignsize & (alignsize - 1)) == 0);
|
|
}
|
|
out
|
|
{
|
|
assert((offset & (alignsize - 1)) == 0);
|
|
}
|
|
body
|
|
{
|
|
auto nbytes = offset & (alignsize - 1);
|
|
if (nbytes)
|
|
fill0(alignsize - nbytes);
|
|
}
|
|
|
|
/****************************************
|
|
* Optimize common special case alignSize(2)
|
|
*/
|
|
|
|
void align2()
|
|
{
|
|
if (offset & 1)
|
|
write(cast(byte)0);
|
|
}
|
|
|
|
/****************************************
|
|
* Optimize common special case alignSize(4)
|
|
*/
|
|
|
|
void align4()
|
|
{
|
|
if (offset & 3)
|
|
{ auto nbytes = (4 - offset) & 3;
|
|
fill0(nbytes);
|
|
}
|
|
}
|
|
|
|
/**************************************
|
|
* Convert internal buffer to array of chars.
|
|
*/
|
|
|
|
override string toString()
|
|
{
|
|
//printf("OutBuffer.toString()\n");
|
|
return cast(string) data[0 .. offset].idup;
|
|
}
|
|
|
|
/*****************************************
|
|
* Append output of C's vprintf() to internal buffer.
|
|
*/
|
|
|
|
void vprintf(string format, va_list args)
|
|
{
|
|
char[128] buffer;
|
|
int count;
|
|
|
|
auto f = toStringz(format);
|
|
auto p = buffer.ptr;
|
|
auto psize = buffer.length;
|
|
for (;;)
|
|
{
|
|
version(Win32)
|
|
{
|
|
count = _vsnprintf(p,psize,f,args);
|
|
if (count != -1)
|
|
break;
|
|
psize *= 2;
|
|
p = cast(char *) alloca(psize); // buffer too small, try again with larger size
|
|
}
|
|
version(Posix)
|
|
{
|
|
count = vsnprintf(p,psize,f,args);
|
|
if (count == -1)
|
|
psize *= 2;
|
|
else if (count >= psize)
|
|
psize = count + 1;
|
|
else
|
|
break;
|
|
/+
|
|
if (p != buffer)
|
|
c.stdlib.free(p);
|
|
p = (char *) c.stdlib.malloc(psize); // buffer too small, try again with larger size
|
|
+/
|
|
p = cast(char *) alloca(psize); // buffer too small, try again with larger size
|
|
}
|
|
}
|
|
write(cast(ubyte[]) p[0 .. count]);
|
|
/+
|
|
version (Posix)
|
|
{
|
|
if (p != buffer)
|
|
c.stdlib.free(p);
|
|
}
|
|
+/
|
|
}
|
|
|
|
/*****************************************
|
|
* Append output of C's printf() to internal buffer.
|
|
*/
|
|
|
|
version (X86_64)
|
|
extern (C) void printf(string format, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, __va_argsave);
|
|
vprintf(format, ap);
|
|
va_end(ap);
|
|
}
|
|
else
|
|
void printf(string format, ...)
|
|
{
|
|
va_list ap;
|
|
ap = cast(va_list)&format;
|
|
ap += format.sizeof;
|
|
vprintf(format, ap);
|
|
}
|
|
|
|
/*****************************************
|
|
* At offset index into buffer, create nbytes of space by shifting upwards
|
|
* all data past index.
|
|
*/
|
|
|
|
void spread(size_t index, size_t nbytes)
|
|
in
|
|
{
|
|
assert(index <= offset);
|
|
}
|
|
body
|
|
{
|
|
reserve(nbytes);
|
|
|
|
// This is an overlapping copy - should use memmove()
|
|
for (size_t i = offset; i > index; )
|
|
{
|
|
--i;
|
|
data[i + nbytes] = data[i];
|
|
}
|
|
offset += nbytes;
|
|
}
|
|
}
|
|
|
|
unittest
|
|
{
|
|
//printf("Starting OutBuffer test\n");
|
|
|
|
OutBuffer buf = new OutBuffer();
|
|
|
|
//printf("buf = %p\n", buf);
|
|
//printf("buf.offset = %x\n", buf.offset);
|
|
assert(buf.offset == 0);
|
|
buf.write("hello"[]);
|
|
buf.write(cast(byte)0x20);
|
|
buf.write("world"[]);
|
|
buf.printf(" %d", 6);
|
|
//auto s = buf.toString();
|
|
//printf("buf = '%.*s'\n", s.length, s.ptr);
|
|
assert(cmp(buf.toString(), "hello world 6") == 0);
|
|
}
|