/usr/include/d/std/internal/scopebuffer.d is in libphobos2-ldc-dev 1:0.17.1-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | /*
* Copyright: 2014 by Digital Mars
* License: $(LINK2 http://boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright
* Source: $(PHOBOSSRC std/internal/_scopebuffer.d)
*/
module std.internal.scopebuffer;
//debug=ScopeBuffer;
private import core.stdc.stdlib : realloc;
private import std.traits;
/**************************************
* ScopeBuffer encapsulates using a local array as a temporary buffer.
* It is initialized with the local array that should be large enough for
* most uses. If the need exceeds the size, ScopeBuffer will resize it
* using malloc() and friends.
*
* ScopeBuffer cannot contain more than (uint.max-16)/2 elements.
*
* ScopeBuffer is an OutputRange.
*
* Since ScopeBuffer potentially stores elements of type T in malloc'd memory,
* those elements are not scanned when the GC collects. This can cause
* memory corruption. Do not use ScopeBuffer when elements of type T point
* to the GC heap.
*
* Example:
---
import core.stdc.stdio;
import std.internal.scopebuffer;
void main()
{
char[2] buf = void;
auto textbuf = ScopeBuffer!char(buf);
scope(exit) textbuf.free(); // necessary for cleanup
// Put characters and strings into textbuf, verify they got there
textbuf.put('a');
textbuf.put('x');
textbuf.put("abc");
assert(textbuf.length == 5);
assert(textbuf[1..3] == "xa");
assert(textbuf[3] == 'b');
// Can shrink it
textbuf.length = 3;
assert(textbuf[0..textbuf.length] == "axa");
assert(textbuf[textbuf.length - 1] == 'a');
assert(textbuf[1..3] == "xa");
textbuf.put('z');
assert(textbuf[] == "axaz");
// Can shrink it to 0 size, and reuse same memory
textbuf.length = 0;
}
---
* It is invalid to access ScopeBuffer's contents when ScopeBuffer goes out of scope.
* Hence, copying the contents are necessary to keep them around:
---
import std.internal.scopebuffer;
string cat(string s1, string s2)
{
char[10] tmpbuf = void;
auto textbuf = ScopeBuffer!char(tmpbuf);
scope(exit) textbuf.free();
textbuf.put(s1);
textbuf.put(s2);
textbuf.put("even more");
return textbuf[].idup;
}
---
* ScopeBuffer is intended for high performance usages in $(D @system) and $(D @trusted) code.
* It is designed to fit into two 64 bit registers, again for high performance use.
* If used incorrectly, memory leaks and corruption can result. Be sure to use
* $(D scope(exit) textbuf.free();) for proper cleanup, and do not refer to a ScopeBuffer
* instance's contents after $(D ScopeBuffer.free()) has been called.
*
* The realloc parameter defaults to C's realloc(). Another can be supplied to override it.
*
* ScopeBuffer instances may be copied, as in:
---
textbuf = doSomething(textbuf, args);
---
* which can be very efficent, but these must be regarded as a move rather than a copy.
* Additionally, the code between passing and returning the instance must not throw
* exceptions, otherwise when ScopeBuffer.free() is called, memory may get corrupted.
*/
@system
struct ScopeBuffer(T, alias realloc = /*core.stdc.stdlib*/.realloc)
if (isAssignable!T &&
!hasElaborateDestructor!T &&
!hasElaborateCopyConstructor!T &&
!hasElaborateAssign!T)
{
import core.stdc.string : memcpy;
import core.exception : onOutOfMemoryError;
/**************************
* Initialize with buf to use as scratch buffer space.
* Params:
* buf = Scratch buffer space, must have length that is even
* Example:
* ---
* ubyte[10] tmpbuf = void;
* auto sbuf = ScopeBuffer!ubyte(tmpbuf);
* ---
* If buf was created by the same realloc passed as a parameter
* to ScopeBuffer, then the contents of ScopeBuffer can be extracted without needing
* to copy them, and ScopeBuffer.free() will not need to be called.
*/
this(T[] buf)
in
{
assert(!(buf.length & wasResized)); // assure even length of scratch buffer space
assert(buf.length <= uint.max); // because we cast to uint later
}
body
{
this.buf = buf.ptr;
this.bufLen = cast(uint)buf.length;
}
unittest
{
ubyte[10] tmpbuf = void;
auto sbuf = ScopeBuffer!ubyte(tmpbuf);
}
/**************************
* Releases any memory used.
* This will invalidate any references returned by the [] operator.
* A destructor is not used, because that would make it not POD
* (Plain Old Data) and it could not be placed in registers.
*/
void free()
{
debug(ScopeBuffer) buf[0 .. bufLen] = 0;
if (bufLen & wasResized)
realloc(buf, 0);
buf = null;
bufLen = 0;
used = 0;
}
/****************************
* Copying of ScopeBuffer is not allowed.
*/
//@disable this(this);
/************************
* Append element c to the buffer.
* This member function makes ScopeBuffer an OutputRange.
*/
void put(T c)
{
/* j will get enregistered, while used will not because resize() may change used
*/
const j = used;
if (j == bufLen)
{
assert(j <= (uint.max - 16) / 2);
resize(j * 2 + 16);
}
buf[j] = c;
used = j + 1;
}
/************************
* Append array s to the buffer.
*
* If $(D const(T)) can be converted to $(D T), then put will accept
* $(D const(T)[]) as input. It will accept a $(D T[]) otherwise.
*/
private alias CT = Select!(is(const(T) : T), const(T), T);
/// ditto
void put(CT[] s)
{
const newlen = used + s.length;
assert((cast(ulong)used + s.length) <= uint.max);
const len = bufLen;
if (newlen > len)
{
assert(len <= uint.max / 2);
resize(newlen <= len * 2 ? len * 2 : newlen);
}
buf[used .. newlen] = s[];
used = cast(uint)newlen;
}
/******
* Retrieve a slice into the result.
* Returns:
* A slice into the temporary buffer that is only
* valid until the next put() or ScopeBuffer goes out of scope.
*/
@system inout(T)[] opSlice(size_t lower, size_t upper) inout
in
{
assert(lower <= bufLen);
assert(upper <= bufLen);
assert(lower <= upper);
}
body
{
return buf[lower .. upper];
}
/// ditto
@system inout(T)[] opSlice() inout
{
assert(used <= bufLen);
return buf[0 .. used];
}
/*******
* Returns:
* the element at index i.
*/
ref inout(T) opIndex(size_t i) inout
{
assert(i < bufLen);
return buf[i];
}
/***
* Returns:
* the number of elements in the ScopeBuffer
*/
@property size_t length() const
{
return used;
}
/***
* Used to shrink the length of the buffer,
* typically to 0 so the buffer can be reused.
* Cannot be used to extend the length of the buffer.
*/
@property void length(size_t i)
in
{
assert(i <= this.used);
}
body
{
this.used = cast(uint)i;
}
alias opDollar = length;
private:
T* buf;
// Using uint instead of size_t so the struct fits in 2 registers in 64 bit code
uint bufLen;
enum wasResized = 1; // this bit is set in bufLen if we control the memory
uint used;
void resize(size_t newsize)
in
{
assert(newsize <= uint.max);
}
body
{
//writefln("%s: oldsize %s newsize %s", id, buf.length, newsize);
newsize |= wasResized;
void *newBuf = realloc((bufLen & wasResized) ? buf : null, newsize * T.sizeof);
if (!newBuf)
onOutOfMemoryError();
if (!(bufLen & wasResized))
{
memcpy(newBuf, buf, used * T.sizeof);
debug(ScopeBuffer) buf[0 .. bufLen] = 0;
}
buf = cast(T*)newBuf;
bufLen = cast(uint)newsize;
/* This function is called only rarely,
* inlining results in poorer register allocation.
*/
version (DigitalMars)
/* With dmd, a fake loop will prevent inlining.
* Using a hack until a language enhancement is implemented.
*/
while (1) { break; }
}
}
unittest
{
import core.stdc.stdio;
import std.range;
char[2] tmpbuf = void;
{
// Exercise all the lines of code except for assert(0)'s
auto textbuf = ScopeBuffer!char(tmpbuf);
scope(exit) textbuf.free();
static assert(isOutputRange!(ScopeBuffer!char, char));
textbuf.put('a');
textbuf.put('x');
textbuf.put("abc"); // tickle put([])'s resize
assert(textbuf.length == 5);
assert(textbuf[1..3] == "xa");
assert(textbuf[3] == 'b');
textbuf.length = textbuf.length - 1;
assert(textbuf[0..textbuf.length] == "axab");
textbuf.length = 3;
assert(textbuf[0..textbuf.length] == "axa");
assert(textbuf[textbuf.length - 1] == 'a');
assert(textbuf[1..3] == "xa");
textbuf.put(cast(dchar)'z');
assert(textbuf[] == "axaz");
textbuf.length = 0; // reset for reuse
assert(textbuf.length == 0);
foreach (char c; "asdf;lasdlfaklsdjfalksdjfa;lksdjflkajsfdasdfkja;sdlfj")
{
textbuf.put(c); // tickle put(c)'s resize
}
assert(textbuf[] == "asdf;lasdlfaklsdjfalksdjfa;lksdjflkajsfdasdfkja;sdlfj");
} // run destructor on textbuf here
}
unittest
{
string cat(string s1, string s2)
{
char[10] tmpbuf = void;
auto textbuf = ScopeBuffer!char(tmpbuf);
scope(exit) textbuf.free();
textbuf.put(s1);
textbuf.put(s2);
textbuf.put("even more");
return textbuf[].idup;
}
auto s = cat("hello", "betty");
assert(s == "hellobettyeven more");
}
// const
unittest
{
char[10] tmpbuf = void;
auto textbuf = ScopeBuffer!char(tmpbuf);
scope(exit) textbuf.free();
foreach(i; 0..10) textbuf.put('w');
const csb = textbuf;
const elem = csb[3];
const slice0 = csb[0..5];
const slice1 = csb[];
}
/*********************************
* This is a slightly simpler way to create a ScopeBuffer instance
* that uses type deduction.
* Params:
* tmpbuf = the initial buffer to use
* Returns:
* an instance of ScopeBuffer
* Example:
---
ubyte[10] tmpbuf = void;
auto sb = scopeBuffer(tmpbuf);
scope(exit) sp.free();
---
*/
auto scopeBuffer(T)(T[] tmpbuf)
{
return ScopeBuffer!T(tmpbuf);
}
unittest
{
ubyte[10] tmpbuf = void;
auto sb = scopeBuffer(tmpbuf);
scope(exit) sb.free();
}
unittest
{
ScopeBuffer!(int*) b;
int*[] s;
b.put(s);
ScopeBuffer!char c;
string s1;
char[] s2;
c.put(s1);
c.put(s2);
}
|