Compare commits
43 Commits
Author | SHA1 | Date | |
---|---|---|---|
7af5c30820 | |||
c1535e8752 | |||
5453f6417f | |||
410b865df9 | |||
4566cf7857 | |||
0a2798cc96 | |||
a505a033ab | |||
1f02ba5042 | |||
50aaa170fb | |||
ff7d20f167 | |||
03e21d4368 | |||
c293c6c809 | |||
e93898d837 | |||
49d7452b33 | |||
884dc30953 | |||
e67a05138e | |||
7585bf59e7 | |||
0a121d9d19 | |||
9e6f5c3105 | |||
3f66782368 | |||
3c8f6e3435 | |||
ee8b7ef719 | |||
6b22cd60df | |||
c290c85088 | |||
65e2e344df | |||
184d307e40 | |||
8aec781e2a | |||
1e46109e50 | |||
64ceb0330c | |||
b230685595 | |||
ff58b5e81c | |||
373a192b3a | |||
4e8c9bd28f | |||
3b5709821a | |||
a04a04bb96 | |||
d0d682ca65 | |||
6d01680685 | |||
4f9927a8c3 | |||
a8b18d7603 | |||
9364112690 | |||
772e87739c | |||
2a90a812db | |||
e68fcc3a38 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -10,7 +10,7 @@ dub.selections.json
|
|||||||
__test__*__
|
__test__*__
|
||||||
__test__*__.core
|
__test__*__.core
|
||||||
/tanya-test-*
|
/tanya-test-*
|
||||||
/dub_platform_probe-*
|
/dub_platform_probe[_-]*
|
||||||
|
|
||||||
/docs/
|
/docs/
|
||||||
/docs.json
|
/docs.json
|
||||||
|
30
.travis.yml
30
.travis.yml
@ -7,19 +7,31 @@ os:
|
|||||||
language: d
|
language: d
|
||||||
|
|
||||||
d:
|
d:
|
||||||
- dmd-2.082.0
|
- dmd-2.083.1
|
||||||
- dmd-2.081.2
|
- dmd-2.082.1
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
global:
|
||||||
|
- LATEST=2.083.1
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
- ARCH=x86_64
|
- ARCH=x86_64
|
||||||
- ARCH=x86
|
- ARCH=x86
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- name: "D-Scanner"
|
- name: D-Scanner
|
||||||
d: dmd-2.082.0
|
d: dmd-$LATEST
|
||||||
env: DSCANNER=0.5.10
|
env: DSCANNER=0.5.11
|
||||||
|
os: linux
|
||||||
|
- name: DDoc
|
||||||
|
d: dmd-$LATEST
|
||||||
|
env: DDOC=true
|
||||||
|
os: linux
|
||||||
|
allow_failures:
|
||||||
|
- name: D-Scanner
|
||||||
|
d: dmd-$LATEST
|
||||||
|
env: DSCANNER=0.5.11
|
||||||
os: linux
|
os: linux
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
@ -28,13 +40,15 @@ addons:
|
|||||||
- gcc-multilib
|
- gcc-multilib
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- if [ "`$DC --version | head -n 1 | grep 'v2.082.0'`" ] &&
|
- if [ "`$DC --version | head -n 1 | grep v$LATEST`" ] &&
|
||||||
[ -z "$DSCANNER" ]; then
|
[ -z "$DSCANNER$DDOC" ]; then
|
||||||
export UNITTEST="unittest-cov";
|
export UNITTEST="unittest-cov";
|
||||||
fi
|
fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- if [ -z "$DSCANNER" ]; then
|
- if [ -n "$DDOC" ]; then
|
||||||
|
dub build -b ddox --compiler=$DC;
|
||||||
|
elif [ -z "$DSCANNER" ]; then
|
||||||
dub test -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
|
dub test -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
|
||||||
else
|
else
|
||||||
dub fetch dscanner --version=$DSCANNER;
|
dub fetch dscanner --version=$DSCANNER;
|
||||||
|
@ -173,10 +173,10 @@ parameter is used)
|
|||||||
|
|
||||||
### Supported compilers
|
### Supported compilers
|
||||||
|
|
||||||
| DMD | GCC |
|
| DMD | GCC |
|
||||||
|:-------:|:------:|
|
|:-------:|:---------------:|
|
||||||
| 2.082.0 | gdc-8 |
|
| 2.083.1 | gdc-8 (2.081.2) |
|
||||||
| 2.081.2 | gdc-7 |
|
| 2.082.1 | gdc-7 (2.081.2) |
|
||||||
|
|
||||||
### Release management
|
### Release management
|
||||||
|
|
||||||
|
@ -4,16 +4,16 @@ os: Visual Studio 2015
|
|||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.082.0
|
DVersion: 2.083.1
|
||||||
arch: x64
|
arch: x64
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.082.0
|
DVersion: 2.083.1
|
||||||
arch: x86
|
arch: x86
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.081.2
|
DVersion: 2.082.1
|
||||||
arch: x64
|
arch: x64
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.081.2
|
DVersion: 2.082.1
|
||||||
arch: x86
|
arch: x86
|
||||||
|
|
||||||
skip_tags: true
|
skip_tags: true
|
||||||
|
@ -6,9 +6,9 @@ rule archive
|
|||||||
|
|
||||||
build abs.o: gas x64/linux/math/abs.S
|
build abs.o: gas x64/linux/math/abs.S
|
||||||
build log.o: gas x64/linux/math/log.S
|
build log.o: gas x64/linux/math/log.S
|
||||||
build cmp.o: gas x64/linux/memory/cmp.S
|
build equal.o: gas x64/linux/memory/equal.S
|
||||||
build fill.o: gas x64/linux/memory/fill.S
|
build fill.o: gas x64/linux/memory/fill.S
|
||||||
build copy.o: gas x64/linux/memory/copy.S
|
build copy.o: gas x64/linux/memory/copy.S
|
||||||
build syscall.o: gas x64/linux/syscall.S
|
build syscall.o: gas x64/linux/syscall.S
|
||||||
|
|
||||||
build tanya.a: archive syscall.o copy.o fill.o cmp.o log.o abs.o
|
build tanya.a: archive syscall.o copy.o fill.o equal.o log.o abs.o
|
||||||
|
@ -1,20 +1,19 @@
|
|||||||
.text
|
.text
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* cmpMemory.
|
* equalMemory.
|
||||||
*
|
*
|
||||||
* rdi - r1 length
|
* rdi - r1 length
|
||||||
* rsi - r1 data.
|
* rsi - r1 data.
|
||||||
* rdx - r2 length.
|
* rdx - r2 length.
|
||||||
* rcx - r2 data.
|
* rcx - r2 data.
|
||||||
*/
|
*/
|
||||||
.globl _D5tanya6memory2op9cmpMemoryFNaNbNixAvxQdZi
|
.globl _D5tanya6memory2op11equalMemoryFNaNbNixAvxQdZb
|
||||||
.type _D5tanya6memory2op9cmpMemoryFNaNbNixAvxQdZi, @function
|
.type _D5tanya6memory2op11equalMemoryFNaNbNixAvxQdZb, @function
|
||||||
_D5tanya6memory2op9cmpMemoryFNaNbNixAvxQdZi:
|
_D5tanya6memory2op11equalMemoryFNaNbNixAvxQdZb:
|
||||||
// Compare the lengths
|
// Compare the lengths
|
||||||
cmp %rdx, %rdi
|
cmp %rdx, %rdi
|
||||||
jl less
|
jne not_equal
|
||||||
jg greater
|
|
||||||
|
|
||||||
mov %rcx, %rdi
|
mov %rcx, %rdi
|
||||||
|
|
||||||
@ -26,8 +25,7 @@ _D5tanya6memory2op9cmpMemoryFNaNbNixAvxQdZi:
|
|||||||
|
|
||||||
naligned:
|
naligned:
|
||||||
cmpsb
|
cmpsb
|
||||||
jl less
|
jne not_equal
|
||||||
jg greater
|
|
||||||
|
|
||||||
dec %rdx
|
dec %rdx
|
||||||
test $0x07, %edi
|
test $0x07, %edi
|
||||||
@ -38,8 +36,7 @@ _D5tanya6memory2op9cmpMemoryFNaNbNixAvxQdZi:
|
|||||||
shr $0x03, %rcx
|
shr $0x03, %rcx
|
||||||
|
|
||||||
repe cmpsq
|
repe cmpsq
|
||||||
jl less
|
jne not_equal
|
||||||
jg greater
|
|
||||||
|
|
||||||
and $0x07, %edx
|
and $0x07, %edx
|
||||||
jz equal
|
jz equal
|
||||||
@ -49,19 +46,14 @@ _D5tanya6memory2op9cmpMemoryFNaNbNixAvxQdZi:
|
|||||||
cmp $0x0, %rcx
|
cmp $0x0, %rcx
|
||||||
|
|
||||||
repe cmpsb
|
repe cmpsb
|
||||||
jl less
|
jne not_equal
|
||||||
jg greater
|
|
||||||
|
|
||||||
equal:
|
equal:
|
||||||
|
mov $0x01, %rax // Return 1
|
||||||
|
jmp end
|
||||||
|
|
||||||
|
not_equal:
|
||||||
xor %rax, %rax // Return 0
|
xor %rax, %rax // Return 0
|
||||||
jmp end
|
|
||||||
|
|
||||||
greater:
|
|
||||||
mov $0x01, %rax
|
|
||||||
jmp end
|
|
||||||
|
|
||||||
less:
|
|
||||||
mov $-0x01, %rax
|
|
||||||
|
|
||||||
end:
|
end:
|
||||||
ret
|
ret
|
@ -15,8 +15,8 @@
|
|||||||
module tanya.algorithm.comparison;
|
module tanya.algorithm.comparison;
|
||||||
|
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.math : isNaN;
|
import tanya.math;
|
||||||
import tanya.memory.op;
|
static import tanya.memory.op;
|
||||||
import tanya.meta.metafunction;
|
import tanya.meta.metafunction;
|
||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
@ -296,7 +296,7 @@ if (allSatisfy!(isInputRange, R1, R2)
|
|||||||
&& is(R1 == R2)
|
&& is(R1 == R2)
|
||||||
&& __traits(isPOD, ElementType!R1))
|
&& __traits(isPOD, ElementType!R1))
|
||||||
{
|
{
|
||||||
return cmp(r1, r2) == 0;
|
return tanya.memory.op.equal(r1, r2);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -3,13 +3,13 @@
|
|||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Range adapters.
|
* Iteration algorithms.
|
||||||
*
|
*
|
||||||
* A range adapter wraps another range and modifies the way, how the original
|
* These algorithms wrap other ranges and modify the way, how the original
|
||||||
* range is iterated, or the order in which its elements are accessed.
|
* range is iterated, or the order in which its elements are accessed.
|
||||||
*
|
*
|
||||||
* All adapters are lazy algorithms, they request the next element of the
|
* All algorithms in this module are lazy, they request the next element of the
|
||||||
* adapted range on demand.
|
* original range on demand.
|
||||||
*
|
*
|
||||||
* Copyright: Eugene Wissner 2018.
|
* Copyright: Eugene Wissner 2018.
|
||||||
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
||||||
@ -23,8 +23,9 @@ module tanya.algorithm.iteration;
|
|||||||
import tanya.algorithm.comparison;
|
import tanya.algorithm.comparison;
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.range;
|
import tanya.range;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
private mixin template Take(R, bool exactly)
|
private struct Take(R, bool exactly)
|
||||||
{
|
{
|
||||||
private R source;
|
private R source;
|
||||||
size_t length_;
|
size_t length_;
|
||||||
@ -73,13 +74,16 @@ private mixin template Take(R, bool exactly)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return length == 0 || this.source.empty;
|
return this.length_ == 0 || this.source.empty;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@property size_t length()
|
static if (exactly || hasLength!R)
|
||||||
{
|
{
|
||||||
return this.length_;
|
@property size_t length()
|
||||||
|
{
|
||||||
|
return this.length_;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (hasAssignableElements!R)
|
static if (hasAssignableElements!R)
|
||||||
@ -187,6 +191,22 @@ private mixin template Take(R, bool exactly)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static if (!exactly && hasSlicing!R)
|
||||||
|
{
|
||||||
|
auto opSlice(size_t i, size_t j)
|
||||||
|
in
|
||||||
|
{
|
||||||
|
assert(i <= j);
|
||||||
|
assert(j <= length);
|
||||||
|
}
|
||||||
|
do
|
||||||
|
{
|
||||||
|
return typeof(this)(this.source[i .. j], length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
version (unittest) static assert(isInputRange!Take);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -212,25 +232,34 @@ private mixin template Take(R, bool exactly)
|
|||||||
auto take(R)(R range, size_t n)
|
auto take(R)(R range, size_t n)
|
||||||
if (isInputRange!R)
|
if (isInputRange!R)
|
||||||
{
|
{
|
||||||
static struct Take
|
static if (hasSlicing!R && hasLength!R)
|
||||||
{
|
{
|
||||||
mixin .Take!(R, false);
|
if (range.length <= n)
|
||||||
|
return range;
|
||||||
static if (hasSlicing!R)
|
else
|
||||||
{
|
return range[0 .. n];
|
||||||
auto opSlice(size_t i, size_t j)
|
}
|
||||||
in
|
// Special case: take(take(...), n)
|
||||||
{
|
else static if (is(Range == Take!(RRange, exact), RRange, bool exact))
|
||||||
assert(i <= j);
|
{
|
||||||
assert(j <= length);
|
if (n > range.length_)
|
||||||
}
|
n = range.length_;
|
||||||
do
|
static if (exact)
|
||||||
{
|
// `take(takeExactly(r, n0), n)` is rewritten `takeExactly(r, min(n0, n))`.
|
||||||
return typeof(this)(this.source[i .. j], length);
|
return Take!(RRange, true)(range.source, n);
|
||||||
}
|
else
|
||||||
}
|
// `take(take(r, n0), n)` is rewritten `take(r, min(n0, n))`.
|
||||||
|
return Take!(RRange, false)(range.source, n);
|
||||||
|
}
|
||||||
|
else static if (isInfinite!R)
|
||||||
|
{
|
||||||
|
// If the range is infinite then `take` is the same as `takeExactly`.
|
||||||
|
return Take!(R, true)(range, n);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return Take!(R, false)(range, n);
|
||||||
}
|
}
|
||||||
return Take(range, n);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -290,6 +319,18 @@ if (isInputRange!R)
|
|||||||
assert(t.empty);
|
assert(t.empty);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// length is unknown when taking from a range without length
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct R
|
||||||
|
{
|
||||||
|
mixin InputRangeStub;
|
||||||
|
}
|
||||||
|
auto actual = take(R(), 100);
|
||||||
|
|
||||||
|
static assert(!hasLength!(typeof(actual)));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Takes exactly $(D_PARAM n) elements from $(D_PARAM range).
|
* Takes exactly $(D_PARAM n) elements from $(D_PARAM range).
|
||||||
*
|
*
|
||||||
@ -315,13 +356,15 @@ if (isInputRange!R)
|
|||||||
{
|
{
|
||||||
return range[0 .. n];
|
return range[0 .. n];
|
||||||
}
|
}
|
||||||
|
// Special case: takeExactly(take(range, ...), n) is takeExactly(range, n)
|
||||||
|
else static if (is(Range == Take!(RRange, exact), RRange, bool exact))
|
||||||
|
{
|
||||||
|
assert(n <= range.length_);
|
||||||
|
return Take!(RRange, true)(range.source, n);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static struct TakeExactly
|
return Take!(R, true)(range, n);
|
||||||
{
|
|
||||||
mixin Take!(R, true);
|
|
||||||
}
|
|
||||||
return TakeExactly(range, n);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -408,6 +451,130 @@ if (isInputRange!R)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Reverse-access-order range returned by `retro`.
|
||||||
|
private struct Retro(Range)
|
||||||
|
{
|
||||||
|
Range source;
|
||||||
|
|
||||||
|
@disable this();
|
||||||
|
|
||||||
|
private this(Range source)
|
||||||
|
{
|
||||||
|
this.source = source;
|
||||||
|
}
|
||||||
|
|
||||||
|
Retro save()
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@property auto ref front()
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
return this.source.back;
|
||||||
|
}
|
||||||
|
|
||||||
|
void popFront()
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
this.source.popBack();
|
||||||
|
}
|
||||||
|
|
||||||
|
@property auto ref back()
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
return this.source.front;
|
||||||
|
}
|
||||||
|
|
||||||
|
void popBack()
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
this.source.popFront();
|
||||||
|
}
|
||||||
|
|
||||||
|
@property bool empty()
|
||||||
|
{
|
||||||
|
return this.source.empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (hasLength!Range)
|
||||||
|
{
|
||||||
|
@property size_t length()
|
||||||
|
{
|
||||||
|
return this.source.length;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (isRandomAccessRange!Range && hasLength!Range)
|
||||||
|
{
|
||||||
|
auto ref opIndex(size_t i)
|
||||||
|
in (i < length)
|
||||||
|
{
|
||||||
|
return this.source[$ - ++i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (hasLength!Range && hasSlicing!Range)
|
||||||
|
{
|
||||||
|
alias opDollar = length;
|
||||||
|
|
||||||
|
auto opSlice(size_t i, size_t j)
|
||||||
|
in
|
||||||
|
{
|
||||||
|
assert(i <= j);
|
||||||
|
assert(j <= length);
|
||||||
|
}
|
||||||
|
do
|
||||||
|
{
|
||||||
|
return typeof(this)(this.source[$-j .. $-i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (hasAssignableElements!Range)
|
||||||
|
{
|
||||||
|
@property void front(ref ElementType!Range value)
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
this.source.back = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@property void front(ElementType!Range value)
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
this.source.back = move(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
@property void back(ref ElementType!Range value)
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
this.source.front = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@property void back(ElementType!Range value)
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
this.source.front = move(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (isRandomAccessRange!Range && hasLength!Range)
|
||||||
|
{
|
||||||
|
void opIndexAssign(ref ElementType!Range value, size_t i)
|
||||||
|
in (i < length)
|
||||||
|
{
|
||||||
|
this.source[$ - ++i] = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
void opIndexAssign(ElementType!Range value, size_t i)
|
||||||
|
in (i < length)
|
||||||
|
{
|
||||||
|
this.source[$ - ++i] = move(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
version (unittest) static assert(isBidirectionalRange!Retro);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Iterates a bidirectional range backwards.
|
* Iterates a bidirectional range backwards.
|
||||||
*
|
*
|
||||||
@ -420,115 +587,14 @@ if (isInputRange!R)
|
|||||||
*
|
*
|
||||||
* Returns: Bidirectional range with the elements order reversed.
|
* Returns: Bidirectional range with the elements order reversed.
|
||||||
*/
|
*/
|
||||||
auto retro(Range)(Range range)
|
auto retro(Range)(return Range range)
|
||||||
if (isBidirectionalRange!Range)
|
if (isBidirectionalRange!Range)
|
||||||
{
|
{
|
||||||
static struct Retro
|
// Special case: retro(retro(range)) is range
|
||||||
{
|
static if (is(Range == Retro!RRange, RRange))
|
||||||
Range source;
|
return range.source;
|
||||||
|
else
|
||||||
@disable this();
|
return Retro!Range(range);
|
||||||
|
|
||||||
private this(Range source)
|
|
||||||
{
|
|
||||||
this.source = source;
|
|
||||||
}
|
|
||||||
|
|
||||||
Retro save()
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
@property auto ref front()
|
|
||||||
in (!empty)
|
|
||||||
{
|
|
||||||
return this.source.back;
|
|
||||||
}
|
|
||||||
|
|
||||||
void popFront()
|
|
||||||
in (!empty)
|
|
||||||
{
|
|
||||||
this.source.popBack();
|
|
||||||
}
|
|
||||||
|
|
||||||
@property auto ref back()
|
|
||||||
in (!empty)
|
|
||||||
{
|
|
||||||
return this.source.front;
|
|
||||||
}
|
|
||||||
|
|
||||||
void popBack()
|
|
||||||
in (!empty)
|
|
||||||
{
|
|
||||||
this.source.popFront();
|
|
||||||
}
|
|
||||||
|
|
||||||
@property bool empty()
|
|
||||||
{
|
|
||||||
return this.source.empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
static if (hasLength!Range)
|
|
||||||
{
|
|
||||||
@property size_t length()
|
|
||||||
{
|
|
||||||
return this.source.length;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static if (isRandomAccessRange!Range && hasLength!Range)
|
|
||||||
{
|
|
||||||
auto ref opIndex(size_t i)
|
|
||||||
in (i < length)
|
|
||||||
{
|
|
||||||
return this.source[$ - ++i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static if (hasAssignableElements!Range)
|
|
||||||
{
|
|
||||||
@property void front(ref ElementType!Range value)
|
|
||||||
in (!empty)
|
|
||||||
{
|
|
||||||
this.source.back = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
@property void front(ElementType!Range value)
|
|
||||||
in (!empty)
|
|
||||||
{
|
|
||||||
this.source.back = move(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
@property void back(ref ElementType!Range value)
|
|
||||||
in (!empty)
|
|
||||||
{
|
|
||||||
this.source.front = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
@property void back(ElementType!Range value)
|
|
||||||
in (!empty)
|
|
||||||
{
|
|
||||||
this.source.front = move(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
static if (isRandomAccessRange!Range && hasLength!Range)
|
|
||||||
{
|
|
||||||
void opIndexAssign(ref ElementType!Range value, size_t i)
|
|
||||||
in (i < length)
|
|
||||||
{
|
|
||||||
this.source[$ - ++i] = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
void opIndexAssign(ElementType!Range value, size_t i)
|
|
||||||
in (i < length)
|
|
||||||
{
|
|
||||||
this.source[$ - ++i] = move(value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Retro(range);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -559,6 +625,10 @@ if (isBidirectionalRange!Range)
|
|||||||
actual.popBack();
|
actual.popBack();
|
||||||
assert(actual.back == 2);
|
assert(actual.back == 2);
|
||||||
assert(actual[1] == 2);
|
assert(actual[1] == 2);
|
||||||
|
|
||||||
|
// Check slicing.
|
||||||
|
auto slice = retro(given[])[1 .. $];
|
||||||
|
assert(slice.length == 2 && slice.front == 2 && slice.back == 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Elements can be assigned
|
// Elements can be assigned
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
/**
|
/**
|
||||||
* Algorithms that modify its arguments.
|
* Algorithms that modify its arguments.
|
||||||
*
|
*
|
||||||
* Copyright: Eugene Wissner 2017-2018.
|
* Copyright: Eugene Wissner 2017-2019.
|
||||||
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
||||||
* Mozilla Public License, v. 2.0).
|
* Mozilla Public License, v. 2.0).
|
||||||
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
||||||
@ -14,10 +14,12 @@
|
|||||||
*/
|
*/
|
||||||
module tanya.algorithm.mutation;
|
module tanya.algorithm.mutation;
|
||||||
|
|
||||||
|
import tanya.conv;
|
||||||
static import tanya.memory.op;
|
static import tanya.memory.op;
|
||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
import tanya.range;
|
import tanya.range;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
private void deinitialize(bool zero, T)(ref T value)
|
private void deinitialize(bool zero, T)(ref T value)
|
||||||
{
|
{
|
||||||
@ -88,13 +90,20 @@ do
|
|||||||
|
|
||||||
static if (hasElaborateCopyConstructor!T || hasElaborateDestructor!T)
|
static if (hasElaborateCopyConstructor!T || hasElaborateDestructor!T)
|
||||||
{
|
{
|
||||||
if (typeid(T).initializer().ptr is null)
|
static if (__VERSION__ >= 2083) // __traits(isZeroInit) available.
|
||||||
{
|
{
|
||||||
deinitialize!true(source);
|
deinitialize!(__traits(isZeroInit, T))(source);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
deinitialize!false(source);
|
if (typeid(T).initializer().ptr is null)
|
||||||
|
{
|
||||||
|
deinitialize!true(source);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
deinitialize!false(source);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -214,9 +223,16 @@ void move(T)(ref T source, ref T target)
|
|||||||
/// ditto
|
/// ditto
|
||||||
T move(T)(ref T source) @trusted
|
T move(T)(ref T source) @trusted
|
||||||
{
|
{
|
||||||
T target = void;
|
static if (hasElaborateCopyConstructor!T || hasElaborateDestructor!T)
|
||||||
moveEmplace(source, target);
|
{
|
||||||
return target;
|
T target = void;
|
||||||
|
moveEmplace(source, target);
|
||||||
|
return target;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return source;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -388,3 +404,296 @@ do
|
|||||||
|
|
||||||
assert(copy(source[], target).value == 5);
|
assert(copy(source[], target).value == 5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fills $(D_PARAM range) with $(D_PARAM value).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Range = Input range type.
|
||||||
|
* Value = Filler type.
|
||||||
|
* range = Input range.
|
||||||
|
* value = Filler.
|
||||||
|
*/
|
||||||
|
void fill(Range, Value)(Range range, auto ref Value value)
|
||||||
|
if (isInputRange!Range && isAssignable!(ElementType!Range, Value))
|
||||||
|
{
|
||||||
|
static if (!isDynamicArray!Range && is(typeof(range[] = value)))
|
||||||
|
{
|
||||||
|
range[] = value;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (; !range.empty; range.popFront())
|
||||||
|
{
|
||||||
|
range.front = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
int[6] actual;
|
||||||
|
const int[6] expected = [1, 1, 1, 1, 1, 1];
|
||||||
|
|
||||||
|
fill(actual[], 1);
|
||||||
|
assert(equal(actual[], expected[]));
|
||||||
|
}
|
||||||
|
|
||||||
|
// [] is called where possible
|
||||||
|
@nogc nothrow pure @system unittest
|
||||||
|
{
|
||||||
|
static struct Slice
|
||||||
|
{
|
||||||
|
bool* slicingCalled;
|
||||||
|
|
||||||
|
int front() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void front(int) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void popFront() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
bool empty() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void opIndexAssign(int) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
*this.slicingCalled = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bool slicingCalled;
|
||||||
|
auto range = Slice(&slicingCalled);
|
||||||
|
fill(range, 0);
|
||||||
|
assert(slicingCalled);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fills $(D_PARAM range) with $(D_PARAM value) assuming the elements of the
|
||||||
|
* $(D_PARAM range) aren't initialized.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Range = Input range type.
|
||||||
|
* Value = Initializer type.
|
||||||
|
* range = Input range.
|
||||||
|
* value = Initializer.
|
||||||
|
*/
|
||||||
|
void uninitializedFill(Range, Value)(Range range, auto ref Value value)
|
||||||
|
if (isInputRange!Range && hasLvalueElements!Range
|
||||||
|
&& isAssignable!(ElementType!Range, Value))
|
||||||
|
{
|
||||||
|
static if (hasElaborateDestructor!(ElementType!Range))
|
||||||
|
{
|
||||||
|
for (; !range.empty; range.popFront())
|
||||||
|
{
|
||||||
|
ElementType!Range* p = &range.front;
|
||||||
|
emplace!(ElementType!Range)(cast(void[]) (p[0 .. 1]), value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fill(range, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
int[6] actual = void;
|
||||||
|
const int[6] expected = [1, 1, 1, 1, 1, 1];
|
||||||
|
|
||||||
|
uninitializedFill(actual[], 1);
|
||||||
|
assert(equal(actual[], expected[]));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes all elements of the $(D_PARAM range) assuming that they are
|
||||||
|
* uninitialized.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Range = Input range type
|
||||||
|
* range = Input range.
|
||||||
|
*/
|
||||||
|
void initializeAll(Range)(Range range) @trusted
|
||||||
|
if (isInputRange!Range && hasLvalueElements!Range)
|
||||||
|
{
|
||||||
|
import tanya.memory.op : copy, fill;
|
||||||
|
alias T = ElementType!Range;
|
||||||
|
|
||||||
|
static if (__VERSION__ >= 2083
|
||||||
|
&& isDynamicArray!Range
|
||||||
|
&& __traits(isZeroInit, T))
|
||||||
|
{
|
||||||
|
fill!0(range);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
static immutable init = T.init;
|
||||||
|
for (; !range.empty; range.popFront())
|
||||||
|
{
|
||||||
|
copy((&init)[0 .. 1], (&range.front)[0 .. 1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
int[2] actual = void;
|
||||||
|
const int[2] expected = [0, 0];
|
||||||
|
|
||||||
|
initializeAll(actual[]);
|
||||||
|
assert(equal(actual[], expected[]));
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
NonCopyable[] nonCopyable;
|
||||||
|
initializeAll(nonCopyable);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destroys all elements in the $(D_PARAM range).
|
||||||
|
*
|
||||||
|
* This function has effect only if the element type of $(D_PARAM Range) has
|
||||||
|
* an elaborate destructor, i.e. it is a $(D_PSYMBOL struct) with an explicit
|
||||||
|
* or generated by the compiler destructor.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Range = Input range type.
|
||||||
|
* range = Input range.
|
||||||
|
*/
|
||||||
|
void destroyAll(Range)(Range range)
|
||||||
|
if (isInputRange!Range && hasLvalueElements!Range)
|
||||||
|
{
|
||||||
|
static if (hasElaborateDestructor!(ElementType!Range))
|
||||||
|
{
|
||||||
|
foreach (ref e; range)
|
||||||
|
{
|
||||||
|
destroy(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @trusted unittest
|
||||||
|
{
|
||||||
|
static struct WithDtor
|
||||||
|
{
|
||||||
|
private size_t* counter;
|
||||||
|
~this() @nogc nothrow pure
|
||||||
|
{
|
||||||
|
if (this.counter !is null)
|
||||||
|
{
|
||||||
|
++(*this.counter);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t counter;
|
||||||
|
WithDtor[2] withDtor = [WithDtor(&counter), WithDtor(&counter)];
|
||||||
|
|
||||||
|
destroyAll(withDtor[]);
|
||||||
|
|
||||||
|
assert(counter == 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rotates the elements of a union of two ranges.
|
||||||
|
*
|
||||||
|
* Performs a left rotation on the given ranges, as if it would be a signle
|
||||||
|
* range, so that [`front.front`, `back.front`$(RPAREN) is a valid range, that
|
||||||
|
* is $(D_PARAM back) would continue $(D_PARAM front).
|
||||||
|
*
|
||||||
|
* The elements are moved so, that the first element of $(D_PARAM back) becomes
|
||||||
|
* the first element of $(D_PARAM front) without changing the relative order of
|
||||||
|
* their elements.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Range = Range type.
|
||||||
|
* front = Left half.
|
||||||
|
* back = Right half.
|
||||||
|
*/
|
||||||
|
void rotate(Range)(Range front, Range back)
|
||||||
|
if (isForwardRange!Range && hasSwappableElements!Range)
|
||||||
|
{
|
||||||
|
auto next = back.save();
|
||||||
|
|
||||||
|
while (!front.empty && !next.empty && !sameHead(front, next))
|
||||||
|
{
|
||||||
|
swap(front.front, next.front);
|
||||||
|
front.popFront();
|
||||||
|
next.popFront();
|
||||||
|
|
||||||
|
if (next.empty)
|
||||||
|
{
|
||||||
|
next = back.save();
|
||||||
|
}
|
||||||
|
else if (front.empty)
|
||||||
|
{
|
||||||
|
front = back.save();
|
||||||
|
back = next.save();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
const int[7] expected = [1, 2, 3, 4, 5, 6, 7];
|
||||||
|
int[7] actual = [5, 6, 3, 4, 1, 2, 7];
|
||||||
|
|
||||||
|
rotate(actual[0 .. 2], actual[4 .. 6]);
|
||||||
|
assert(equal(actual[], expected[]));
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
const int[5] expected = [1, 2, 3, 4, 5];
|
||||||
|
int[5] actual = [4, 5, 1, 2, 3];
|
||||||
|
|
||||||
|
rotate(actual[0 .. 2], actual[2 .. $]);
|
||||||
|
assert(equal(actual[], expected[]));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Doesn't cause an infinite loop if back is shorter than the front
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
const int[5] expected = [1, 2, 3, 4, 5];
|
||||||
|
int[5] actual = [3, 4, 5, 1, 2];
|
||||||
|
|
||||||
|
rotate(actual[0 .. 3], actual[3 .. $]);
|
||||||
|
assert(equal(actual[], expected[]));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Doesn't call .front on an empty front
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
const int[2] expected = [2, 8];
|
||||||
|
int[2] actual = expected;
|
||||||
|
|
||||||
|
rotate(actual[0 .. 0], actual[]);
|
||||||
|
assert(equal(actual[], expected[]));
|
||||||
|
}
|
||||||
|
78
source/tanya/algorithm/searching.d
Normal file
78
source/tanya/algorithm/searching.d
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Searching algorithms.
|
||||||
|
*
|
||||||
|
* Copyright: Eugene Wissner 2018.
|
||||||
|
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
||||||
|
* Mozilla Public License, v. 2.0).
|
||||||
|
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
||||||
|
* Source: $(LINK2 https://github.com/caraus-ecms/tanya/blob/master/source/tanya/algorithm/searching.d,
|
||||||
|
* tanya/algorithm/searching.d)
|
||||||
|
*/
|
||||||
|
module tanya.algorithm.searching;
|
||||||
|
|
||||||
|
import tanya.range;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Counts the elements in an input range.
|
||||||
|
*
|
||||||
|
* If $(D_PARAM R) has length, $(D_PSYMBOL count) returns it, otherwise it
|
||||||
|
* iterates over the range and counts the elements.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* R = Input range type.
|
||||||
|
* range = Input range.
|
||||||
|
*
|
||||||
|
* Returns: $(D_PARAM range) length.
|
||||||
|
*/
|
||||||
|
size_t count(R)(R range)
|
||||||
|
if (isInputRange!R)
|
||||||
|
{
|
||||||
|
static if (hasLength!R)
|
||||||
|
{
|
||||||
|
return range.length;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
size_t counter;
|
||||||
|
for (; !range.empty; range.popFront(), ++counter)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
return counter;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
int[3] array;
|
||||||
|
assert(count(array) == 3);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct Range
|
||||||
|
{
|
||||||
|
private int counter = 3;
|
||||||
|
|
||||||
|
int front() const @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.counter;
|
||||||
|
}
|
||||||
|
|
||||||
|
void popFront() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
--this.counter;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool empty() const @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.counter == 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Range range;
|
||||||
|
assert(count(range) == 3);
|
||||||
|
}
|
@ -15,19 +15,15 @@
|
|||||||
module tanya.container.array;
|
module tanya.container.array;
|
||||||
|
|
||||||
import core.checkedint;
|
import core.checkedint;
|
||||||
import std.algorithm.mutation : bringToFront,
|
|
||||||
copy,
|
|
||||||
fill,
|
|
||||||
initializeAll,
|
|
||||||
uninitializedFill;
|
|
||||||
import std.meta;
|
|
||||||
import tanya.algorithm.comparison;
|
import tanya.algorithm.comparison;
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.exception;
|
import tanya.exception;
|
||||||
|
import tanya.functional;
|
||||||
import tanya.memory;
|
import tanya.memory;
|
||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
import tanya.range.primitive;
|
import tanya.range;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Random-access range for the $(D_PSYMBOL Array).
|
* Random-access range for the $(D_PSYMBOL Array).
|
||||||
@ -299,7 +295,9 @@ struct Array(T)
|
|||||||
* init = Initial value to fill the array with.
|
* init = Initial value to fill the array with.
|
||||||
* allocator = Allocator.
|
* allocator = Allocator.
|
||||||
*/
|
*/
|
||||||
this(size_t len, T init, shared Allocator allocator = defaultAllocator)
|
this()(size_t len,
|
||||||
|
auto ref T init,
|
||||||
|
shared Allocator allocator = defaultAllocator)
|
||||||
{
|
{
|
||||||
this(allocator);
|
this(allocator);
|
||||||
reserve(len);
|
reserve(len);
|
||||||
@ -354,15 +352,19 @@ struct Array(T)
|
|||||||
(() @trusted => allocator.deallocate(slice(capacity)))();
|
(() @trusted => allocator.deallocate(slice(capacity)))();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
static if (isCopyable!T)
|
||||||
* Copies the array.
|
|
||||||
*/
|
|
||||||
this(this)
|
|
||||||
{
|
{
|
||||||
auto buf = slice(this.length);
|
this(this)
|
||||||
this.length_ = capacity_ = 0;
|
{
|
||||||
this.data = null;
|
auto buf = slice(this.length);
|
||||||
insertBack(buf);
|
this.length_ = capacity_ = 0;
|
||||||
|
this.data = null;
|
||||||
|
insertBack(buf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@disable this(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -419,27 +421,19 @@ struct Array(T)
|
|||||||
*/
|
*/
|
||||||
@property void length(size_t len) @trusted
|
@property void length(size_t len) @trusted
|
||||||
{
|
{
|
||||||
if (len == length)
|
if (len > length)
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
else if (len > length)
|
|
||||||
{
|
{
|
||||||
reserve(len);
|
reserve(len);
|
||||||
initializeAll(this.data[length_ .. len]);
|
initializeAll(this.data[length_ .. len]);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static if (hasElaborateDestructor!T)
|
destroyAll(this.data[len .. this.length_]);
|
||||||
{
|
}
|
||||||
const T* end = this.data + length_ - 1;
|
if (len != length)
|
||||||
for (T* e = this.data + len; e != end; ++e)
|
{
|
||||||
{
|
length_ = len;
|
||||||
destroy(*e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
length_ = len;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -817,10 +811,11 @@ struct Array(T)
|
|||||||
}
|
}
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
const oldLen = length;
|
const oldLength = length;
|
||||||
const offset = r.end - this.data;
|
const after = r.end - this.data;
|
||||||
const inserted = insertBack(el);
|
const inserted = insertBack(el);
|
||||||
bringToFront(this.data[offset .. oldLen], this.data[oldLen .. length]);
|
|
||||||
|
rotate(this.data[after .. oldLength], this.data[oldLength .. length]);
|
||||||
return inserted;
|
return inserted;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -859,7 +854,7 @@ struct Array(T)
|
|||||||
{
|
{
|
||||||
moveBack(el);
|
moveBack(el);
|
||||||
}
|
}
|
||||||
bringToFront(this.data[offset .. oldLen], this.data[oldLen .. length]);
|
rotate(this.data[offset .. oldLen], this.data[oldLen .. length]);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -915,7 +910,7 @@ struct Array(T)
|
|||||||
{
|
{
|
||||||
moveBack(el);
|
moveBack(el);
|
||||||
}
|
}
|
||||||
bringToFront(this.data[offset .. oldLen], this.data[oldLen .. length]);
|
rotate(this.data[offset .. oldLen], this.data[oldLen .. length]);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -1006,7 +1001,7 @@ struct Array(T)
|
|||||||
*/
|
*/
|
||||||
ref T opIndexAssign(E : T)(auto ref E value, size_t pos)
|
ref T opIndexAssign(E : T)(auto ref E value, size_t pos)
|
||||||
{
|
{
|
||||||
return opIndex(pos) = value;
|
return opIndex(pos) = forward!value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
@ -1040,7 +1035,7 @@ struct Array(T)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
Range opIndexAssign(Range value)
|
Range opIndexAssign()(Range value)
|
||||||
{
|
{
|
||||||
return opSliceAssign(value, 0, length);
|
return opSliceAssign(value, 0, length);
|
||||||
}
|
}
|
||||||
@ -1334,7 +1329,7 @@ struct Array(T)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
Range opSliceAssign(Range value, size_t i, size_t j) @trusted
|
Range opSliceAssign()(Range value, size_t i, size_t j) @trusted
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(i <= j);
|
assert(i <= j);
|
||||||
@ -1588,15 +1583,10 @@ struct Array(T)
|
|||||||
assert(v7[].equal(v8[]));
|
assert(v7[].equal(v8[]));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Destructor can destroy empty arrays
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
struct SWithDtor
|
auto v = Array!WithDtor();
|
||||||
{
|
|
||||||
~this() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
auto v = Array!SWithDtor(); // Destructor can destroy empty arrays.
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
@ -1607,7 +1597,6 @@ struct Array(T)
|
|||||||
A a1, a2;
|
A a1, a2;
|
||||||
auto v1 = Array!A([a1, a2]);
|
auto v1 = Array!A([a1, a2]);
|
||||||
|
|
||||||
// Issue 232: https://issues.caraus.io/issues/232.
|
|
||||||
static assert(is(Array!(A*)));
|
static assert(is(Array!(A*)));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1692,3 +1681,10 @@ struct Array(T)
|
|||||||
}
|
}
|
||||||
func(array);
|
func(array);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Can have non-copyable elements
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(is(Array!NonCopyable));
|
||||||
|
static assert(is(typeof({ Array!NonCopyable.init[0] = NonCopyable(); })));
|
||||||
|
}
|
||||||
|
@ -20,6 +20,7 @@ import tanya.memory.allocator;
|
|||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
import tanya.typecons;
|
import tanya.typecons;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
package struct SEntry(T)
|
package struct SEntry(T)
|
||||||
{
|
{
|
||||||
@ -59,12 +60,12 @@ package struct Bucket(K, V = void)
|
|||||||
}
|
}
|
||||||
BucketStatus status = BucketStatus.empty;
|
BucketStatus status = BucketStatus.empty;
|
||||||
|
|
||||||
this(ref K key)
|
this()(ref K key)
|
||||||
{
|
{
|
||||||
this.key = key;
|
this.key = key;
|
||||||
}
|
}
|
||||||
|
|
||||||
@property void key(ref K key)
|
@property void key()(ref K key)
|
||||||
{
|
{
|
||||||
this.key() = key;
|
this.key() = key;
|
||||||
this.status = BucketStatus.used;
|
this.status = BucketStatus.used;
|
||||||
@ -170,7 +171,7 @@ package struct HashArray(alias hasher, K, V = void)
|
|||||||
.swap(this.length, data.length);
|
.swap(this.length, data.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
void opAssign(ref typeof(this) that)
|
void opAssign()(ref typeof(this) that)
|
||||||
{
|
{
|
||||||
this.array = that.array;
|
this.array = that.array;
|
||||||
this.lengthIndex = that.lengthIndex;
|
this.lengthIndex = that.lengthIndex;
|
||||||
@ -326,3 +327,13 @@ package struct HashArray(alias hasher, K, V = void)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Can be constructed with non-copyable key/values
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(is(Bucket!NonCopyable));
|
||||||
|
static assert(is(Bucket!(NonCopyable, NonCopyable)));
|
||||||
|
|
||||||
|
static assert(is(HashArray!((ref NonCopyable) => 0U, NonCopyable)));
|
||||||
|
static assert(is(HashArray!((ref NonCopyable) => 0U, NonCopyable, NonCopyable)));
|
||||||
|
}
|
||||||
|
@ -22,6 +22,7 @@ import tanya.memory;
|
|||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
import tanya.range.primitive;
|
import tanya.range.primitive;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bidirectional range whose element type is a tuple of a key and the
|
* Bidirectional range whose element type is a tuple of a key and the
|
||||||
@ -68,7 +69,7 @@ struct Range(T)
|
|||||||
return this.dataRange.empty();
|
return this.dataRange.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
@property void popFront()
|
void popFront()
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(!empty);
|
assert(!empty);
|
||||||
@ -87,7 +88,7 @@ struct Range(T)
|
|||||||
while (!empty && dataRange.front.status != BucketStatus.used);
|
while (!empty && dataRange.front.status != BucketStatus.used);
|
||||||
}
|
}
|
||||||
|
|
||||||
@property void popBack()
|
void popBack()
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(!empty);
|
assert(!empty);
|
||||||
@ -759,7 +760,7 @@ if (isHashFunction!(hasher, Key))
|
|||||||
*
|
*
|
||||||
* Returns: The number of the inserted elements with a unique key.
|
* Returns: The number of the inserted elements with a unique key.
|
||||||
*/
|
*/
|
||||||
size_t insert(ref KeyValue keyValue)
|
size_t insert()(ref KeyValue keyValue)
|
||||||
{
|
{
|
||||||
auto e = ((ref v) @trusted => &this.data.insert(v))(keyValue.key);
|
auto e = ((ref v) @trusted => &this.data.insert(v))(keyValue.key);
|
||||||
size_t inserted;
|
size_t inserted;
|
||||||
@ -773,7 +774,7 @@ if (isHashFunction!(hasher, Key))
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
size_t insert(KeyValue keyValue)
|
size_t insert()(KeyValue keyValue)
|
||||||
{
|
{
|
||||||
auto e = ((ref v) @trusted => &this.data.insert(v))(keyValue.key);
|
auto e = ((ref v) @trusted => &this.data.insert(v))(keyValue.key);
|
||||||
size_t inserted;
|
size_t inserted;
|
||||||
@ -1197,3 +1198,16 @@ if (isHashFunction!(hasher, Key))
|
|||||||
static assert(is(typeof("asdf" in HashTable!(String, int)())));
|
static assert(is(typeof("asdf" in HashTable!(String, int)())));
|
||||||
static assert(is(typeof(HashTable!(String, int)()["asdf"])));
|
static assert(is(typeof(HashTable!(String, int)()["asdf"])));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Can have non-copyable keys and elements
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
@NonCopyable @Hashable
|
||||||
|
static struct S
|
||||||
|
{
|
||||||
|
mixin StructStub;
|
||||||
|
}
|
||||||
|
static assert(is(HashTable!(S, int)));
|
||||||
|
static assert(is(HashTable!(int, S)));
|
||||||
|
static assert(is(HashTable!(S, S)));
|
||||||
|
}
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
*/
|
*/
|
||||||
module tanya.container.list;
|
module tanya.container.list;
|
||||||
|
|
||||||
import std.algorithm.searching;
|
|
||||||
import tanya.algorithm.comparison;
|
import tanya.algorithm.comparison;
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.container.entry;
|
import tanya.container.entry;
|
||||||
@ -24,6 +23,7 @@ import tanya.meta.trait;
|
|||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
import tanya.range.array;
|
import tanya.range.array;
|
||||||
import tanya.range.primitive;
|
import tanya.range.primitive;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Forward range for the $(D_PSYMBOL SList).
|
* Forward range for the $(D_PSYMBOL SList).
|
||||||
@ -156,8 +156,9 @@ struct SList(T)
|
|||||||
* init = Initial value to fill the list with.
|
* init = Initial value to fill the list with.
|
||||||
* allocator = Allocator.
|
* allocator = Allocator.
|
||||||
*/
|
*/
|
||||||
this(size_t len, T init, shared Allocator allocator = defaultAllocator)
|
this()(size_t len,
|
||||||
@trusted
|
auto ref T init,
|
||||||
|
shared Allocator allocator = defaultAllocator)
|
||||||
{
|
{
|
||||||
this(allocator);
|
this(allocator);
|
||||||
if (len == 0)
|
if (len == 0)
|
||||||
@ -183,7 +184,18 @@ struct SList(T)
|
|||||||
/// ditto
|
/// ditto
|
||||||
this(size_t len, shared Allocator allocator = defaultAllocator)
|
this(size_t len, shared Allocator allocator = defaultAllocator)
|
||||||
{
|
{
|
||||||
this(len, T.init, allocator);
|
this(allocator);
|
||||||
|
if (len == 0)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Entry* next = this.head = allocator.make!Entry();
|
||||||
|
foreach (i; 1 .. len)
|
||||||
|
{
|
||||||
|
next.next = allocator.make!Entry();
|
||||||
|
next = next.next;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -272,14 +284,18 @@ struct SList(T)
|
|||||||
clear();
|
clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
static if (isCopyable!T)
|
||||||
* Copies the list.
|
|
||||||
*/
|
|
||||||
this(this)
|
|
||||||
{
|
{
|
||||||
auto list = typeof(this)(this[], this.allocator);
|
this(this)
|
||||||
this.head = list.head;
|
{
|
||||||
list.head = null;
|
auto list = typeof(this)(this[], this.allocator);
|
||||||
|
this.head = list.head;
|
||||||
|
list.head = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@disable this(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -513,7 +529,7 @@ struct SList(T)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
size_t insertBefore(Range r, ref T el) @trusted
|
size_t insertBefore()(Range r, ref T el) @trusted
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(checkRangeBelonging(r));
|
assert(checkRangeBelonging(r));
|
||||||
@ -1121,8 +1137,9 @@ struct DList(T)
|
|||||||
* init = Initial value to fill the list with.
|
* init = Initial value to fill the list with.
|
||||||
* allocator = Allocator.
|
* allocator = Allocator.
|
||||||
*/
|
*/
|
||||||
this(size_t len, T init, shared Allocator allocator = defaultAllocator)
|
this()(size_t len,
|
||||||
@trusted
|
auto ref T init,
|
||||||
|
shared Allocator allocator = defaultAllocator)
|
||||||
{
|
{
|
||||||
this(allocator);
|
this(allocator);
|
||||||
if (len == 0)
|
if (len == 0)
|
||||||
@ -1151,7 +1168,20 @@ struct DList(T)
|
|||||||
/// ditto
|
/// ditto
|
||||||
this(size_t len, shared Allocator allocator = defaultAllocator)
|
this(size_t len, shared Allocator allocator = defaultAllocator)
|
||||||
{
|
{
|
||||||
this(len, T.init, allocator);
|
this(allocator);
|
||||||
|
if (len == 0)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Entry* next = this.head = allocator.make!Entry();
|
||||||
|
foreach (i; 1 .. len)
|
||||||
|
{
|
||||||
|
next.next = allocator.make!Entry();
|
||||||
|
next.next.prev = next;
|
||||||
|
next = next.next;
|
||||||
|
}
|
||||||
|
this.tail = next;
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -1243,15 +1273,19 @@ struct DList(T)
|
|||||||
clear();
|
clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
static if (isCopyable!T)
|
||||||
* Copies the list.
|
|
||||||
*/
|
|
||||||
this(this)
|
|
||||||
{
|
{
|
||||||
auto list = typeof(this)(this[], this.allocator);
|
this(this)
|
||||||
this.head = list.head;
|
{
|
||||||
this.tail = list.tail;
|
auto list = typeof(this)(this[], this.allocator);
|
||||||
list.head = list .tail = null;
|
this.head = list.head;
|
||||||
|
this.tail = list.tail;
|
||||||
|
list.head = list .tail = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@disable this(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -1642,7 +1676,7 @@ struct DList(T)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
size_t insertBefore(Range r, ref T el) @trusted
|
size_t insertBefore()(Range r, ref T el) @trusted
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(checkRangeBelonging(r));
|
assert(checkRangeBelonging(r));
|
||||||
@ -1759,7 +1793,7 @@ struct DList(T)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
size_t insertAfter(Range r, ref T el) @trusted
|
size_t insertAfter()(Range r, ref T el) @trusted
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(checkRangeBelonging(r));
|
assert(checkRangeBelonging(r));
|
||||||
@ -2356,3 +2390,10 @@ struct DList(T)
|
|||||||
assert(!l1.remove(r).empty);
|
assert(!l1.remove(r).empty);
|
||||||
assert(l1 == l2);
|
assert(l1 == l2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Can have non-copyable elements
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(is(SList!NonCopyable));
|
||||||
|
static assert(is(DList!NonCopyable));
|
||||||
|
}
|
||||||
|
@ -22,6 +22,7 @@ import tanya.memory;
|
|||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
import tanya.range.primitive;
|
import tanya.range.primitive;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bidirectional range that iterates over the $(D_PSYMBOL Set)'s values.
|
* Bidirectional range that iterates over the $(D_PSYMBOL Set)'s values.
|
||||||
@ -67,7 +68,7 @@ struct Range(T)
|
|||||||
return this.dataRange.empty();
|
return this.dataRange.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
@property void popFront()
|
void popFront()
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(!empty);
|
assert(!empty);
|
||||||
@ -86,7 +87,7 @@ struct Range(T)
|
|||||||
while (!empty && dataRange.front.status != BucketStatus.used);
|
while (!empty && dataRange.front.status != BucketStatus.used);
|
||||||
}
|
}
|
||||||
|
|
||||||
@property void popBack()
|
void popBack()
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(!empty);
|
assert(!empty);
|
||||||
@ -459,7 +460,7 @@ if (isHashFunction!(hasher, T))
|
|||||||
*
|
*
|
||||||
* Returns: Amount of new elements inserted.
|
* Returns: Amount of new elements inserted.
|
||||||
*/
|
*/
|
||||||
size_t insert(ref T value)
|
size_t insert()(ref T value)
|
||||||
{
|
{
|
||||||
auto e = ((ref v) @trusted => &this.data.insert(v))(value);
|
auto e = ((ref v) @trusted => &this.data.insert(v))(value);
|
||||||
if (e.status != BucketStatus.used)
|
if (e.status != BucketStatus.used)
|
||||||
@ -470,7 +471,7 @@ if (isHashFunction!(hasher, T))
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t insert(T value)
|
size_t insert()(T value)
|
||||||
{
|
{
|
||||||
auto e = ((ref v) @trusted => &this.data.insert(v))(value);
|
auto e = ((ref v) @trusted => &this.data.insert(v))(value);
|
||||||
if (e.status != BucketStatus.used)
|
if (e.status != BucketStatus.used)
|
||||||
@ -773,3 +774,14 @@ if (isHashFunction!(hasher, T))
|
|||||||
{
|
{
|
||||||
static assert(is(Set!(int, (const ref x) => cast(size_t) x)));
|
static assert(is(Set!(int, (const ref x) => cast(size_t) x)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Can have non-copyable elements
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
@NonCopyable @Hashable
|
||||||
|
static struct S
|
||||||
|
{
|
||||||
|
mixin StructStub;
|
||||||
|
}
|
||||||
|
static assert(is(Set!S));
|
||||||
|
}
|
||||||
|
@ -26,8 +26,6 @@
|
|||||||
*/
|
*/
|
||||||
module tanya.container.string;
|
module tanya.container.string;
|
||||||
|
|
||||||
import std.algorithm.mutation : bringToFront;
|
|
||||||
import std.algorithm.searching : count;
|
|
||||||
import tanya.algorithm.comparison;
|
import tanya.algorithm.comparison;
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.hash.lookup;
|
import tanya.hash.lookup;
|
||||||
@ -1485,6 +1483,8 @@ struct String
|
|||||||
///
|
///
|
||||||
@nogc pure @safe unittest
|
@nogc pure @safe unittest
|
||||||
{
|
{
|
||||||
|
import tanya.algorithm.searching : count;
|
||||||
|
|
||||||
auto s = String("Из пословицы слова не выкинешь.");
|
auto s = String("Из пословицы слова не выкинешь.");
|
||||||
|
|
||||||
assert(s.remove(s[5 .. 24]).length == 33);
|
assert(s.remove(s[5 .. 24]).length == 33);
|
||||||
@ -1530,11 +1530,10 @@ struct String
|
|||||||
do
|
do
|
||||||
{
|
{
|
||||||
const oldLength = length;
|
const oldLength = length;
|
||||||
const rangeEnd = r.end - this.data;
|
const after = r.end - this.data;
|
||||||
const inserted = insertBack(el);
|
const inserted = insertBack(el);
|
||||||
auto containerEnd = this.data + oldLength;
|
|
||||||
bringToFront(ByCodeUnit!char(this, this.data + rangeEnd, containerEnd),
|
rotate(this.data[after .. oldLength], this.data[oldLength .. length]);
|
||||||
ByCodeUnit!char(this, containerEnd, this.data + length));
|
|
||||||
return inserted;
|
return inserted;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
/**
|
/**
|
||||||
* This module provides functions for converting between different types.
|
* This module provides functions for converting between different types.
|
||||||
*
|
*
|
||||||
* Copyright: Eugene Wissner 2017-2018.
|
* Copyright: Eugene Wissner 2017-2019.
|
||||||
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
||||||
* Mozilla Public License, v. 2.0).
|
* Mozilla Public License, v. 2.0).
|
||||||
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
||||||
@ -14,6 +14,7 @@
|
|||||||
*/
|
*/
|
||||||
module tanya.conv;
|
module tanya.conv;
|
||||||
|
|
||||||
|
import tanya.algorithm.mutation;
|
||||||
import tanya.container.string;
|
import tanya.container.string;
|
||||||
import tanya.format;
|
import tanya.format;
|
||||||
import tanya.memory;
|
import tanya.memory;
|
||||||
@ -26,6 +27,7 @@ import tanya.range.primitive;
|
|||||||
version (unittest)
|
version (unittest)
|
||||||
{
|
{
|
||||||
import tanya.test.assertion;
|
import tanya.test.assertion;
|
||||||
|
import tanya.test.stub;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -60,15 +62,8 @@ version (unittest)
|
|||||||
*/
|
*/
|
||||||
T emplace(T, U, Args...)(void[] memory, U outer, auto ref Args args)
|
T emplace(T, U, Args...)(void[] memory, U outer, auto ref Args args)
|
||||||
if (!isAbstractClass!T && isInnerClass!T && is(typeof(T.outer) == U))
|
if (!isAbstractClass!T && isInnerClass!T && is(typeof(T.outer) == U))
|
||||||
in
|
in (memory.length >= stateSize!T)
|
||||||
{
|
out (result; memory.ptr is (() @trusted => cast(void*) result)())
|
||||||
assert(memory.length >= stateSize!T);
|
|
||||||
}
|
|
||||||
out (result)
|
|
||||||
{
|
|
||||||
assert(memory.ptr is (() @trusted => cast(void*) result)());
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
{
|
||||||
copy(typeid(T).initializer, memory);
|
copy(typeid(T).initializer, memory);
|
||||||
|
|
||||||
@ -86,15 +81,8 @@ do
|
|||||||
/// ditto
|
/// ditto
|
||||||
T emplace(T, Args...)(void[] memory, auto ref Args args)
|
T emplace(T, Args...)(void[] memory, auto ref Args args)
|
||||||
if (is(T == class) && !isAbstractClass!T && !isInnerClass!T)
|
if (is(T == class) && !isAbstractClass!T && !isInnerClass!T)
|
||||||
in
|
in (memory.length == stateSize!T)
|
||||||
{
|
out (result; memory.ptr is (() @trusted => cast(void*) result)())
|
||||||
assert(memory.length == stateSize!T);
|
|
||||||
}
|
|
||||||
out (result)
|
|
||||||
{
|
|
||||||
assert(memory.ptr is (() @trusted => cast(void*) result)());
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
{
|
||||||
copy(typeid(T).initializer, memory);
|
copy(typeid(T).initializer, memory);
|
||||||
|
|
||||||
@ -139,15 +127,8 @@ do
|
|||||||
/// ditto
|
/// ditto
|
||||||
T* emplace(T, Args...)(void[] memory, auto ref Args args)
|
T* emplace(T, Args...)(void[] memory, auto ref Args args)
|
||||||
if (!isAggregateType!T && (Args.length <= 1))
|
if (!isAggregateType!T && (Args.length <= 1))
|
||||||
in
|
in (memory.length >= T.sizeof)
|
||||||
{
|
out (result; memory.ptr is result)
|
||||||
assert(memory.length >= T.sizeof);
|
|
||||||
}
|
|
||||||
out (result)
|
|
||||||
{
|
|
||||||
assert(memory.ptr is result);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
{
|
||||||
auto result = (() @trusted => cast(T*) memory.ptr)();
|
auto result = (() @trusted => cast(T*) memory.ptr)();
|
||||||
static if (Args.length == 1)
|
static if (Args.length == 1)
|
||||||
@ -161,43 +142,57 @@ do
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
private void initializeOne(T)(ref void[] memory, ref T* result) @trusted
|
||||||
T* emplace(T, Args...)(void[] memory, auto ref Args args)
|
|
||||||
if (!isPolymorphicType!T && isAggregateType!T)
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
assert(memory.length >= T.sizeof);
|
|
||||||
}
|
|
||||||
out (result)
|
|
||||||
{
|
|
||||||
assert(memory.ptr is result);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
auto result = (() @trusted => cast(T*) memory.ptr)();
|
|
||||||
static if (!hasElaborateAssign!T && isAssignable!T)
|
static if (!hasElaborateAssign!T && isAssignable!T)
|
||||||
{
|
{
|
||||||
*result = T.init;
|
*result = T.init;
|
||||||
}
|
}
|
||||||
|
else static if (__VERSION__ >= 2083 // __traits(isZeroInit) available.
|
||||||
|
&& __traits(isZeroInit, T))
|
||||||
|
{
|
||||||
|
memory.ptr[0 .. T.sizeof].fill!0;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static const T init = T.init;
|
static immutable T init = T.init;
|
||||||
copy((cast(void*) &init)[0 .. T.sizeof], memory);
|
copy((&init)[0 .. 1], memory);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
T* emplace(T, Args...)(void[] memory, auto ref Args args)
|
||||||
|
if (!isPolymorphicType!T && isAggregateType!T)
|
||||||
|
in (memory.length >= T.sizeof)
|
||||||
|
out (result; memory.ptr is result)
|
||||||
|
{
|
||||||
|
auto result = (() @trusted => cast(T*) memory.ptr)();
|
||||||
|
|
||||||
static if (Args.length == 0)
|
static if (Args.length == 0)
|
||||||
{
|
{
|
||||||
static assert(is(typeof({ static T t; })),
|
static assert(is(typeof({ static T t; })),
|
||||||
"Default constructor is disabled");
|
"Default constructor is disabled");
|
||||||
}
|
initializeOne(memory, result);
|
||||||
else static if (is(typeof(T(args))))
|
|
||||||
{
|
|
||||||
*result = T(args);
|
|
||||||
}
|
}
|
||||||
else static if (is(typeof(result.__ctor(args))))
|
else static if (is(typeof(result.__ctor(args))))
|
||||||
{
|
{
|
||||||
|
initializeOne(memory, result);
|
||||||
result.__ctor(args);
|
result.__ctor(args);
|
||||||
}
|
}
|
||||||
|
else static if (Args.length == 1 && is(typeof({ T t = args[0]; })))
|
||||||
|
{
|
||||||
|
((ref arg) @trusted =>
|
||||||
|
copy((cast(void*) &arg)[0 .. T.sizeof], memory))(args[0]);
|
||||||
|
static if (hasElaborateCopyConstructor!T)
|
||||||
|
{
|
||||||
|
result.__postblit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else static if (is(typeof({ T t = T(args); })))
|
||||||
|
{
|
||||||
|
auto init = T(args);
|
||||||
|
(() @trusted => moveEmplace(init, *result))();
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static assert(false,
|
static assert(false,
|
||||||
@ -245,6 +240,59 @@ do
|
|||||||
static assert(is(typeof(emplace!F((void[]).init))));
|
static assert(is(typeof(emplace!F((void[]).init))));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Can emplace structs without a constructor
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(is(typeof(emplace!WithDtor(null, WithDtor()))));
|
||||||
|
static assert(is(typeof(emplace!WithDtor(null))));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Doesn't call a destructor on uninitialized elements
|
||||||
|
@nogc nothrow pure @system unittest
|
||||||
|
{
|
||||||
|
static struct SWithDtor
|
||||||
|
{
|
||||||
|
private bool canBeInvoked = false;
|
||||||
|
~this() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
assert(this.canBeInvoked);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void[SWithDtor.sizeof] memory = void;
|
||||||
|
auto actual = emplace!SWithDtor(memory[], SWithDtor(true));
|
||||||
|
assert(actual.canBeInvoked);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initializes structs if no arguments are given
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct SEntry
|
||||||
|
{
|
||||||
|
byte content;
|
||||||
|
}
|
||||||
|
ubyte[1] mem = [3];
|
||||||
|
|
||||||
|
assert(emplace!SEntry(cast(void[]) mem[0 .. 1]).content == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Postblit is called when emplacing a struct
|
||||||
|
@nogc nothrow pure @system unittest
|
||||||
|
{
|
||||||
|
static struct S
|
||||||
|
{
|
||||||
|
bool called = false;
|
||||||
|
this(this) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
this.called = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
S target;
|
||||||
|
S* sp = ⌖
|
||||||
|
|
||||||
|
emplace!S(sp[0 .. 1], S());
|
||||||
|
assert(target.called);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thrown if a type conversion fails.
|
* Thrown if a type conversion fails.
|
||||||
*/
|
*/
|
||||||
@ -856,13 +904,6 @@ if (is(Unqual!From == bool) && isNumeric!To && !is(Unqual!To == Unqual!From))
|
|||||||
assert(false.to!int == 0);
|
assert(false.to!int == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
deprecated("Use tanya.format.format instead")
|
|
||||||
To to(To, From)(auto ref From from)
|
|
||||||
if (is(Unqual!To == String))
|
|
||||||
{
|
|
||||||
return format!"{}"(from);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Converts a stringish range to an integral value.
|
* Converts a stringish range to an integral value.
|
||||||
*
|
*
|
||||||
|
@ -43,7 +43,7 @@ import tanya.algorithm.comparison;
|
|||||||
import tanya.container.string;
|
import tanya.container.string;
|
||||||
import tanya.encoding.ascii;
|
import tanya.encoding.ascii;
|
||||||
import tanya.math;
|
import tanya.math;
|
||||||
import tanya.memory.op;
|
static import tanya.memory.op;
|
||||||
import tanya.meta.metafunction;
|
import tanya.meta.metafunction;
|
||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
@ -1351,7 +1351,7 @@ do
|
|||||||
intSlice.popBack();
|
intSlice.popBack();
|
||||||
}
|
}
|
||||||
const begin = buffer.length - intSlice.length;
|
const begin = buffer.length - intSlice.length;
|
||||||
copy(intSlice, buffer[begin .. $]);
|
tanya.memory.op.copy(intSlice, buffer[begin .. $]);
|
||||||
|
|
||||||
exponent = cast(int) (intSlice.length + mismatch);
|
exponent = cast(int) (intSlice.length + mismatch);
|
||||||
|
|
||||||
@ -1388,7 +1388,7 @@ do
|
|||||||
|
|
||||||
char[21] intBuffer;
|
char[21] intBuffer;
|
||||||
auto intSlice = integral2String(decimal, intBuffer);
|
auto intSlice = integral2String(decimal, intBuffer);
|
||||||
copy(intSlice, buffer);
|
tanya.memory.op.copy(intSlice, buffer);
|
||||||
exponent = cast(int) intSlice.length;
|
exponent = cast(int) intSlice.length;
|
||||||
|
|
||||||
size_t position = exponent;
|
size_t position = exponent;
|
||||||
@ -1903,7 +1903,7 @@ private char[] errol3(double value,
|
|||||||
if (pathologies[middle].representation == bits.integral)
|
if (pathologies[middle].representation == bits.integral)
|
||||||
{
|
{
|
||||||
exponent = pathologies[middle].exponent;
|
exponent = pathologies[middle].exponent;
|
||||||
copy(pathologies[middle].digits, buffer);
|
tanya.memory.op.copy(pathologies[middle].digits, buffer);
|
||||||
return buffer[0 .. pathologies[middle].digits.length];
|
return buffer[0 .. pathologies[middle].digits.length];
|
||||||
}
|
}
|
||||||
else if (pathologies[middle].representation < bits.integral)
|
else if (pathologies[middle].representation < bits.integral)
|
||||||
@ -2054,7 +2054,7 @@ if (isFloatingPoint!T)
|
|||||||
{
|
{
|
||||||
length = precision + 1;
|
length = precision + 1;
|
||||||
}
|
}
|
||||||
realString[1 .. length].copy(bufferSlice);
|
tanya.memory.op.copy(realString[1 .. length], bufferSlice);
|
||||||
bufferSlice.popFrontExactly(length - 1);
|
bufferSlice.popFrontExactly(length - 1);
|
||||||
|
|
||||||
// Dump the exponent.
|
// Dump the exponent.
|
||||||
@ -2116,7 +2116,7 @@ if (isFloatingPoint!T)
|
|||||||
n = precision;
|
n = precision;
|
||||||
}
|
}
|
||||||
|
|
||||||
fill!'0'(bufferSlice[0 .. n]);
|
tanya.memory.op.fill!'0'(bufferSlice[0 .. n]);
|
||||||
bufferSlice.popFrontExactly(n);
|
bufferSlice.popFrontExactly(n);
|
||||||
|
|
||||||
if ((length + n) > precision)
|
if ((length + n) > precision)
|
||||||
@ -2124,7 +2124,7 @@ if (isFloatingPoint!T)
|
|||||||
length = precision - n;
|
length = precision - n;
|
||||||
}
|
}
|
||||||
|
|
||||||
realString[0 .. length].copy(bufferSlice);
|
tanya.memory.op.copy(realString[0 .. length], bufferSlice);
|
||||||
bufferSlice.popFrontExactly(length);
|
bufferSlice.popFrontExactly(length);
|
||||||
}
|
}
|
||||||
else if (cast(uint) decimalPoint >= length)
|
else if (cast(uint) decimalPoint >= length)
|
||||||
@ -2142,7 +2142,7 @@ if (isFloatingPoint!T)
|
|||||||
{
|
{
|
||||||
n = decimalPoint - n;
|
n = decimalPoint - n;
|
||||||
|
|
||||||
fill!'0'(bufferSlice[0 .. n]);
|
tanya.memory.op.fill!'0'(bufferSlice[0 .. n]);
|
||||||
bufferSlice.popFrontExactly(n);
|
bufferSlice.popFrontExactly(n);
|
||||||
}
|
}
|
||||||
if (precision != 0)
|
if (precision != 0)
|
||||||
@ -2173,7 +2173,7 @@ if (isFloatingPoint!T)
|
|||||||
length = precision + decimalPoint;
|
length = precision + decimalPoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
realString[n .. length].copy(bufferSlice);
|
tanya.memory.op.copy(realString[n .. length], bufferSlice);
|
||||||
bufferSlice.popFrontExactly(length - n);
|
bufferSlice.popFrontExactly(length - n);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,7 @@ module tanya.hash.lookup;
|
|||||||
|
|
||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.range.primitive;
|
import tanya.range.primitive;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
private struct FNV
|
private struct FNV
|
||||||
{
|
{
|
||||||
@ -29,6 +30,11 @@ private struct FNV
|
|||||||
enum ulong offsetBasis = 14695981039346656037UL;
|
enum ulong offsetBasis = 14695981039346656037UL;
|
||||||
enum ulong prime = 1099511628211UL;
|
enum ulong prime = 1099511628211UL;
|
||||||
}
|
}
|
||||||
|
else static if (size_t.sizeof == 16)
|
||||||
|
{
|
||||||
|
enum size_t offsetBasis = (size_t(0x6c62272e07bb0142UL) << 64) + 0x62b821756295c58dUL;
|
||||||
|
enum size_t prime = (size_t(1) << 88) + (1 << 8) + 0x3b;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static assert(false, "FNV requires at least 32-bit hash length");
|
static assert(false, "FNV requires at least 32-bit hash length");
|
||||||
@ -141,14 +147,6 @@ version (unittest)
|
|||||||
~ r10!x ~ r10!x ~ r10!x ~ r10!x ~ r10!x;
|
~ r10!x ~ r10!x ~ r10!x ~ r10!x ~ r10!x;
|
||||||
enum string r500(string x) = r100!x ~ r100!x ~ r100!x ~ r100!x ~ r100!x;
|
enum string r500(string x) = r100!x ~ r100!x ~ r100!x ~ r100!x ~ r100!x;
|
||||||
|
|
||||||
private static struct ToHash
|
|
||||||
{
|
|
||||||
size_t toHash() const @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static struct HashRange
|
private static struct HashRange
|
||||||
{
|
{
|
||||||
string fo = "fo";
|
string fo = "fo";
|
||||||
@ -173,9 +171,9 @@ version (unittest)
|
|||||||
{
|
{
|
||||||
bool empty_;
|
bool empty_;
|
||||||
|
|
||||||
@property ToHash front() const @nogc nothrow pure @safe
|
@property Hashable front() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return ToHash();
|
return Hashable();
|
||||||
}
|
}
|
||||||
|
|
||||||
void popFront() @nogc nothrow pure @safe
|
void popFront() @nogc nothrow pure @safe
|
||||||
@ -194,7 +192,7 @@ version (unittest)
|
|||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(hash(null) == 0);
|
assert(hash(null) == 0);
|
||||||
assert(hash(ToHash()) == 0U);
|
assert(hash(Hashable()) == 0U);
|
||||||
assert(hash('a') == 'a');
|
assert(hash('a') == 'a');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
*/
|
*/
|
||||||
module tanya.math.mp;
|
module tanya.math.mp;
|
||||||
|
|
||||||
import std.algorithm.mutation : fill;
|
|
||||||
import tanya.algorithm.comparison;
|
import tanya.algorithm.comparison;
|
||||||
import tanya.algorithm.iteration;
|
import tanya.algorithm.iteration;
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
|
@ -15,11 +15,8 @@
|
|||||||
module tanya.math.random;
|
module tanya.math.random;
|
||||||
|
|
||||||
import std.digest.sha;
|
import std.digest.sha;
|
||||||
import std.typecons;
|
|
||||||
import tanya.memory;
|
import tanya.memory;
|
||||||
|
import tanya.typecons;
|
||||||
/// Block size of entropy accumulator (SHA-512).
|
|
||||||
enum blockSize = 64;
|
|
||||||
|
|
||||||
/// Maximum amount gathered from the entropy sources.
|
/// Maximum amount gathered from the entropy sources.
|
||||||
enum maxGather = 128;
|
enum maxGather = 128;
|
||||||
@ -39,7 +36,7 @@ class EntropyException : Exception
|
|||||||
this(string msg,
|
this(string msg,
|
||||||
string file = __FILE__,
|
string file = __FILE__,
|
||||||
size_t line = __LINE__,
|
size_t line = __LINE__,
|
||||||
Throwable next = null) pure @safe nothrow const @nogc
|
Throwable next = null) const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
super(msg, file, line, next);
|
super(msg, file, line, next);
|
||||||
}
|
}
|
||||||
@ -56,17 +53,17 @@ abstract class EntropySource
|
|||||||
/**
|
/**
|
||||||
* Returns: Minimum bytes required from the entropy source.
|
* Returns: Minimum bytes required from the entropy source.
|
||||||
*/
|
*/
|
||||||
@property ubyte threshold() const pure nothrow @safe @nogc;
|
@property ubyte threshold() const @nogc nothrow pure @safe;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns: Whether this entropy source is strong.
|
* Returns: Whether this entropy source is strong.
|
||||||
*/
|
*/
|
||||||
@property bool strong() const pure nothrow @safe @nogc;
|
@property bool strong() const @nogc nothrow pure @safe;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns: Amount of already generated entropy.
|
* Returns: Amount of already generated entropy.
|
||||||
*/
|
*/
|
||||||
@property ushort size() const pure nothrow @safe @nogc
|
@property ushort size() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return size_;
|
return size_;
|
||||||
}
|
}
|
||||||
@ -76,7 +73,7 @@ abstract class EntropySource
|
|||||||
* size = Amount of already generated entropy. Cannot be smaller than the
|
* size = Amount of already generated entropy. Cannot be smaller than the
|
||||||
* already set value.
|
* already set value.
|
||||||
*/
|
*/
|
||||||
@property void size(ushort size) pure nothrow @safe @nogc
|
@property void size(ushort size) @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
size_ = size;
|
size_ = size;
|
||||||
}
|
}
|
||||||
@ -89,9 +86,13 @@ abstract class EntropySource
|
|||||||
* to fill the buffer).
|
* to fill the buffer).
|
||||||
*
|
*
|
||||||
* Returns: Number of bytes that were copied to the $(D_PARAM output)
|
* Returns: Number of bytes that were copied to the $(D_PARAM output)
|
||||||
* or $(D_PSYMBOL Nullable!ubyte.init) on error.
|
* or nothing on error.
|
||||||
|
*
|
||||||
|
* Postcondition: Returned length is less than or equal to
|
||||||
|
* $(D_PARAM output) length.
|
||||||
*/
|
*/
|
||||||
Nullable!ubyte poll(out ubyte[maxGather] output) @nogc;
|
Option!ubyte poll(out ubyte[maxGather] output) @nogc
|
||||||
|
out (length; length.isNothing || length.get <= maxGather);
|
||||||
}
|
}
|
||||||
|
|
||||||
version (CRuntime_Bionic)
|
version (CRuntime_Bionic)
|
||||||
@ -118,7 +119,7 @@ else version (Solaris)
|
|||||||
version (linux)
|
version (linux)
|
||||||
{
|
{
|
||||||
import core.stdc.config : c_long;
|
import core.stdc.config : c_long;
|
||||||
extern (C) c_long syscall(c_long number, ...) nothrow @system @nogc;
|
private extern(C) c_long syscall(c_long number, ...) @nogc nothrow @system;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Uses getrandom system call.
|
* Uses getrandom system call.
|
||||||
@ -128,7 +129,7 @@ version (linux)
|
|||||||
/**
|
/**
|
||||||
* Returns: Minimum bytes required from the entropy source.
|
* Returns: Minimum bytes required from the entropy source.
|
||||||
*/
|
*/
|
||||||
override @property ubyte threshold() const pure nothrow @safe @nogc
|
override @property ubyte threshold() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 32;
|
return 32;
|
||||||
}
|
}
|
||||||
@ -136,7 +137,7 @@ version (linux)
|
|||||||
/**
|
/**
|
||||||
* Returns: Whether this entropy source is strong.
|
* Returns: Whether this entropy source is strong.
|
||||||
*/
|
*/
|
||||||
override @property bool strong() const pure nothrow @safe @nogc
|
override @property bool strong() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -149,19 +150,14 @@ version (linux)
|
|||||||
* to fill the buffer).
|
* to fill the buffer).
|
||||||
*
|
*
|
||||||
* Returns: Number of bytes that were copied to the $(D_PARAM output)
|
* Returns: Number of bytes that were copied to the $(D_PARAM output)
|
||||||
* or $(D_PSYMBOL Nullable!ubyte.init) on error.
|
* or nothing on error.
|
||||||
*/
|
*/
|
||||||
override Nullable!ubyte poll(out ubyte[maxGather] output) nothrow @nogc
|
override Option!ubyte poll(out ubyte[maxGather] output) @nogc nothrow
|
||||||
out (length)
|
|
||||||
{
|
|
||||||
assert(length <= maxGather);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
{
|
||||||
// int getrandom(void *buf, size_t buflen, unsigned int flags);
|
// int getrandom(void *buf, size_t buflen, unsigned int flags);
|
||||||
import mir.linux._asm.unistd : NR_getrandom;
|
import mir.linux._asm.unistd : NR_getrandom;
|
||||||
auto length = syscall(NR_getrandom, output.ptr, output.length, 0);
|
auto length = syscall(NR_getrandom, output.ptr, output.length, 0);
|
||||||
Nullable!ubyte ret;
|
Option!ubyte ret;
|
||||||
|
|
||||||
if (length >= 0)
|
if (length >= 0)
|
||||||
{
|
{
|
||||||
@ -170,19 +166,11 @@ version (linux)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@nogc @system unittest
|
|
||||||
{
|
|
||||||
auto entropy = defaultAllocator.make!Entropy();
|
|
||||||
ubyte[blockSize] output;
|
|
||||||
output = entropy.random;
|
|
||||||
|
|
||||||
defaultAllocator.dispose(entropy);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else version (SecureARC4Random)
|
else version (SecureARC4Random)
|
||||||
{
|
{
|
||||||
private extern (C) void arc4random_buf(scope void* buf, size_t nbytes) nothrow @nogc @system;
|
private extern(C) void arc4random_buf(scope void* buf, size_t nbytes)
|
||||||
|
@nogc nothrow @system;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Uses arc4random_buf.
|
* Uses arc4random_buf.
|
||||||
@ -192,7 +180,7 @@ else version (SecureARC4Random)
|
|||||||
/**
|
/**
|
||||||
* Returns: Minimum bytes required from the entropy source.
|
* Returns: Minimum bytes required from the entropy source.
|
||||||
*/
|
*/
|
||||||
override @property ubyte threshold() const pure nothrow @safe @nogc
|
override @property ubyte threshold() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 32;
|
return 32;
|
||||||
}
|
}
|
||||||
@ -200,7 +188,7 @@ else version (SecureARC4Random)
|
|||||||
/**
|
/**
|
||||||
* Returns: Whether this entropy source is strong.
|
* Returns: Whether this entropy source is strong.
|
||||||
*/
|
*/
|
||||||
override @property bool strong() const pure nothrow @safe @nogc
|
override @property bool strong() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -213,23 +201,15 @@ else version (SecureARC4Random)
|
|||||||
* to fill the buffer).
|
* to fill the buffer).
|
||||||
*
|
*
|
||||||
* Returns: Number of bytes that were copied to the $(D_PARAM output)
|
* Returns: Number of bytes that were copied to the $(D_PARAM output)
|
||||||
* or $(D_PSYMBOL Nullable!ubyte.init) on error.
|
* or nothing on error.
|
||||||
*/
|
*/
|
||||||
override Nullable!ubyte poll(out ubyte[maxGather] output) nothrow @nogc @safe
|
override Option!ubyte poll(out ubyte[maxGather] output)
|
||||||
|
@nogc nothrow @safe
|
||||||
{
|
{
|
||||||
(() @trusted => arc4random_buf(output.ptr, output.length))();
|
(() @trusted => arc4random_buf(output.ptr, output.length))();
|
||||||
return Nullable!ubyte(cast(ubyte) (output.length));
|
return Option!ubyte(cast(ubyte) (output.length));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@nogc @system unittest
|
|
||||||
{
|
|
||||||
auto entropy = defaultAllocator.make!Entropy();
|
|
||||||
ubyte[blockSize] output;
|
|
||||||
output = entropy.random;
|
|
||||||
|
|
||||||
defaultAllocator.dispose(entropy);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else version (Windows)
|
else version (Windows)
|
||||||
{
|
{
|
||||||
@ -248,22 +228,31 @@ else version (Windows)
|
|||||||
BOOL CryptReleaseContext(HCRYPTPROV, ULONG_PTR);
|
BOOL CryptReleaseContext(HCRYPTPROV, ULONG_PTR);
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool initCryptGenRandom(scope ref HCRYPTPROV hProvider) @nogc nothrow @trusted
|
private bool initCryptGenRandom(scope ref HCRYPTPROV hProvider)
|
||||||
|
@nogc nothrow @trusted
|
||||||
{
|
{
|
||||||
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa379886(v=vs.85).aspx
|
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa379886(v=vs.85).aspx
|
||||||
// For performance reasons, we recommend that you set the pszContainer
|
// For performance reasons, we recommend that you set the pszContainer
|
||||||
// parameter to NULL and the dwFlags parameter to CRYPT_VERIFYCONTEXT
|
// parameter to NULL and the dwFlags parameter to CRYPT_VERIFYCONTEXT
|
||||||
// in all situations where you do not require a persisted key.
|
// in all situations where you do not require a persisted key.
|
||||||
// CRYPT_SILENT is intended for use with applications for which the UI cannot be displayed by the CSP.
|
// CRYPT_SILENT is intended for use with applications for which the UI
|
||||||
if (!CryptAcquireContextW(&hProvider, null, null, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT | CRYPT_SILENT))
|
// cannot be displayed by the CSP.
|
||||||
|
if (!CryptAcquireContextW(&hProvider,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
PROV_RSA_FULL,
|
||||||
|
CRYPT_VERIFYCONTEXT | CRYPT_SILENT))
|
||||||
{
|
{
|
||||||
if (GetLastError() == NTE_BAD_KEYSET)
|
if (GetLastError() != NTE_BAD_KEYSET)
|
||||||
{
|
{
|
||||||
// Attempt to create default container
|
return false;
|
||||||
if (!CryptAcquireContextA(&hProvider, null, null, PROV_RSA_FULL, CRYPT_NEWKEYSET | CRYPT_SILENT))
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
else
|
// Attempt to create default container
|
||||||
|
if (!CryptAcquireContextA(&hProvider,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
PROV_RSA_FULL,
|
||||||
|
CRYPT_NEWKEYSET | CRYPT_SILENT))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -299,7 +288,7 @@ else version (Windows)
|
|||||||
/**
|
/**
|
||||||
* Returns: Minimum bytes required from the entropy source.
|
* Returns: Minimum bytes required from the entropy source.
|
||||||
*/
|
*/
|
||||||
override @property ubyte threshold() const pure nothrow @safe @nogc
|
override @property ubyte threshold() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 32;
|
return 32;
|
||||||
}
|
}
|
||||||
@ -307,7 +296,7 @@ else version (Windows)
|
|||||||
/**
|
/**
|
||||||
* Returns: Whether this entropy source is strong.
|
* Returns: Whether this entropy source is strong.
|
||||||
*/
|
*/
|
||||||
override @property bool strong() const pure nothrow @safe @nogc
|
override @property bool strong() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -320,16 +309,14 @@ else version (Windows)
|
|||||||
* to fill the buffer).
|
* to fill the buffer).
|
||||||
*
|
*
|
||||||
* Returns: Number of bytes that were copied to the $(D_PARAM output)
|
* Returns: Number of bytes that were copied to the $(D_PARAM output)
|
||||||
* or $(D_PSYMBOL Nullable!ubyte.init) on error.
|
* or nothing on error.
|
||||||
*/
|
*/
|
||||||
override Nullable!ubyte poll(out ubyte[maxGather] output) @nogc nothrow @safe
|
override Option!ubyte poll(out ubyte[maxGather] output)
|
||||||
in
|
@nogc nothrow @safe
|
||||||
{
|
{
|
||||||
assert(hProvider > 0, "hProvider not properly initialized.");
|
Option!ubyte ret;
|
||||||
}
|
|
||||||
do
|
assert(hProvider > 0, "hProvider not properly initialized");
|
||||||
{
|
|
||||||
Nullable!ubyte ret;
|
|
||||||
if ((() @trusted => CryptGenRandom(hProvider, output.length, cast(PBYTE) output.ptr))())
|
if ((() @trusted => CryptGenRandom(hProvider, output.length, cast(PBYTE) output.ptr))())
|
||||||
{
|
{
|
||||||
ret = cast(ubyte) (output.length);
|
ret = cast(ubyte) (output.length);
|
||||||
@ -337,185 +324,14 @@ else version (Windows)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@nogc @system unittest
|
|
||||||
{
|
|
||||||
auto entropy = defaultAllocator.make!Entropy();
|
|
||||||
ubyte[blockSize] output;
|
|
||||||
output = entropy.random;
|
|
||||||
|
|
||||||
defaultAllocator.dispose(entropy);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
static if (is(PlatformEntropySource)) @nogc @system unittest
|
||||||
* Pseudorandom number generator.
|
|
||||||
* ---
|
|
||||||
* auto entropy = defaultAllocator.make!Entropy();
|
|
||||||
*
|
|
||||||
* ubyte[blockSize] output;
|
|
||||||
*
|
|
||||||
* output = entropy.random;
|
|
||||||
*
|
|
||||||
* defaultAllocator.dispose(entropy);
|
|
||||||
* ---
|
|
||||||
*/
|
|
||||||
class Entropy
|
|
||||||
{
|
{
|
||||||
/// Entropy sources.
|
import tanya.memory.smartref : unique;
|
||||||
protected EntropySource[] sources;
|
|
||||||
|
|
||||||
private ubyte sourceCount_;
|
auto source = defaultAllocator.unique!PlatformEntropySource();
|
||||||
|
|
||||||
/// Entropy accumulator.
|
assert(source.threshold == 32);
|
||||||
protected SHA!(maxGather * 8, 512) accumulator;
|
assert(source.strong);
|
||||||
|
|
||||||
/**
|
|
||||||
* Params:
|
|
||||||
* maxSources = Maximum amount of entropy sources can be set.
|
|
||||||
* allocator = Allocator to allocate entropy sources available on the
|
|
||||||
* system.
|
|
||||||
*/
|
|
||||||
this(const size_t maxSources = 20,
|
|
||||||
shared Allocator allocator = defaultAllocator) @nogc
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(maxSources > 0 && maxSources <= ubyte.max);
|
|
||||||
assert(allocator !is null);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
allocator.resize(sources, maxSources);
|
|
||||||
|
|
||||||
static if (is(PlatformEntropySource))
|
|
||||||
{
|
|
||||||
this ~= allocator.make!PlatformEntropySource;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns: Amount of the registered entropy sources.
|
|
||||||
*/
|
|
||||||
@property ubyte sourceCount() const pure nothrow @safe @nogc
|
|
||||||
{
|
|
||||||
return sourceCount_;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add an entropy source.
|
|
||||||
*
|
|
||||||
* Params:
|
|
||||||
* source = Entropy source.
|
|
||||||
*
|
|
||||||
* Returns: $(D_PSYMBOL this).
|
|
||||||
*
|
|
||||||
* See_Also:
|
|
||||||
* $(D_PSYMBOL EntropySource)
|
|
||||||
*/
|
|
||||||
Entropy opOpAssign(string op)(EntropySource source)
|
|
||||||
pure nothrow @safe @nogc
|
|
||||||
if (op == "~")
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(sourceCount_ <= sources.length);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
sources[sourceCount_++] = source;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns: Generated random sequence.
|
|
||||||
*
|
|
||||||
* Throws: $(D_PSYMBOL EntropyException) if no strong entropy source was
|
|
||||||
* registered or it failed.
|
|
||||||
*/
|
|
||||||
@property ubyte[blockSize] random() @nogc
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(sourceCount_ > 0, "No entropy sources defined.");
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
bool haveStrong;
|
|
||||||
ushort done;
|
|
||||||
ubyte[blockSize] output;
|
|
||||||
|
|
||||||
do
|
|
||||||
{
|
|
||||||
ubyte[maxGather] buffer;
|
|
||||||
|
|
||||||
// Run through our entropy sources
|
|
||||||
for (ubyte i; i < sourceCount; ++i)
|
|
||||||
{
|
|
||||||
auto outputLength = sources[i].poll(buffer);
|
|
||||||
|
|
||||||
if (!outputLength.isNull)
|
|
||||||
{
|
|
||||||
if (outputLength > 0)
|
|
||||||
{
|
|
||||||
update(i, buffer, outputLength);
|
|
||||||
sources[i].size = cast(ushort) (sources[i].size + outputLength);
|
|
||||||
}
|
|
||||||
if (sources[i].size < sources[i].threshold)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
else if (sources[i].strong)
|
|
||||||
{
|
|
||||||
haveStrong = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
done = 257;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
while (++done < 256);
|
|
||||||
|
|
||||||
if (!haveStrong)
|
|
||||||
{
|
|
||||||
throw defaultAllocator.make!EntropyException("No strong entropy source defined.");
|
|
||||||
}
|
|
||||||
|
|
||||||
output = accumulator.finish();
|
|
||||||
|
|
||||||
// Reset accumulator and counters and recycle existing entropy
|
|
||||||
accumulator.start();
|
|
||||||
|
|
||||||
// Perform second SHA-512 on entropy
|
|
||||||
output = sha512Of(output);
|
|
||||||
|
|
||||||
for (ubyte i; i < sourceCount; ++i)
|
|
||||||
{
|
|
||||||
sources[i].size = 0;
|
|
||||||
}
|
|
||||||
return output;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update entropy accumulator.
|
|
||||||
*
|
|
||||||
* Params:
|
|
||||||
* sourceId = Entropy source index in $(D_PSYMBOL sources).
|
|
||||||
* data = Data got from the entropy source.
|
|
||||||
* length = Length of the received data.
|
|
||||||
*/
|
|
||||||
protected void update(in ubyte sourceId,
|
|
||||||
ref ubyte[maxGather] data,
|
|
||||||
ubyte length) pure nothrow @safe @nogc
|
|
||||||
{
|
|
||||||
ubyte[2] header;
|
|
||||||
|
|
||||||
if (length > blockSize)
|
|
||||||
{
|
|
||||||
data[0 .. 64] = sha512Of(data);
|
|
||||||
length = blockSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
header[0] = sourceId;
|
|
||||||
header[1] = length;
|
|
||||||
|
|
||||||
accumulator.put(header);
|
|
||||||
accumulator.put(data[0 .. length]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ version (TanyaNative)
|
|||||||
extern private void moveMemory(const void[], void[])
|
extern private void moveMemory(const void[], void[])
|
||||||
pure nothrow @system @nogc;
|
pure nothrow @system @nogc;
|
||||||
|
|
||||||
extern private int cmpMemory(const void[], const void[])
|
extern private bool equalMemory(const void[], const void[])
|
||||||
pure nothrow @system @nogc;
|
pure nothrow @system @nogc;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -43,7 +43,7 @@ version (TanyaNative)
|
|||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(cmp(null, null) == 0);
|
assert(equal(null, null));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ do
|
|||||||
ubyte[9] source = [1, 2, 3, 4, 5, 6, 7, 8, 9];
|
ubyte[9] source = [1, 2, 3, 4, 5, 6, 7, 8, 9];
|
||||||
ubyte[9] target;
|
ubyte[9] target;
|
||||||
source.copy(target);
|
source.copy(target);
|
||||||
assert(cmp(source, target) == 0);
|
assert(equal(source, target));
|
||||||
}
|
}
|
||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
@ -110,7 +110,7 @@ do
|
|||||||
ubyte[8] source = [1, 2, 3, 4, 5, 6, 7, 8];
|
ubyte[8] source = [1, 2, 3, 4, 5, 6, 7, 8];
|
||||||
ubyte[8] target;
|
ubyte[8] target;
|
||||||
source.copy(target);
|
source.copy(target);
|
||||||
assert(cmp(source, target) == 0);
|
assert(equal(source, target));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -212,7 +212,7 @@ do
|
|||||||
ubyte[6] expected = [ 'a', 'a', 'a', 'a', 'b', 'b' ];
|
ubyte[6] expected = [ 'a', 'a', 'a', 'a', 'b', 'b' ];
|
||||||
|
|
||||||
copyBackward(mem[0 .. 4], mem[2 .. $]);
|
copyBackward(mem[0 .. 4], mem[2 .. $]);
|
||||||
assert(cmp(expected, mem) == 0);
|
assert(equal(expected, mem));
|
||||||
}
|
}
|
||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
@ -221,76 +221,7 @@ do
|
|||||||
ubyte[9] r2;
|
ubyte[9] r2;
|
||||||
|
|
||||||
copyBackward(r1, r2);
|
copyBackward(r1, r2);
|
||||||
assert(cmp(r1, r2) == 0);
|
assert(equal(r1, r2));
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Compares two memory areas $(D_PARAM r1) and $(D_PARAM r2).
|
|
||||||
*
|
|
||||||
* $(D_PSYMBOL cmp) returns a positive integer if
|
|
||||||
* $(D_INLINECODE r1.length > r2.length) or the first `n` compared bytes of
|
|
||||||
* $(D_PARAM r1) found to be greater than the first `n` bytes of $(D_PARAM r2),
|
|
||||||
*
|
|
||||||
* $(D_PSYMBOL cmp) returns a negative integer if
|
|
||||||
* $(D_INLINECODE r2.length > r1.length) or the first `n` compared bytes of
|
|
||||||
* $(D_PARAM r1) found to be less than the first `n` bytes of $(D_PARAM r2),
|
|
||||||
*
|
|
||||||
* `0` is returned otherwise.
|
|
||||||
*
|
|
||||||
* Returns: Positive integer if $(D_INLINECODE r1 > r2),
|
|
||||||
* negative integer if $(D_INLINECODE r2 > r1),
|
|
||||||
* `0` if $(D_INLINECODE r1 == r2).
|
|
||||||
*/
|
|
||||||
int cmp(const void[] r1, const void[] r2) @nogc nothrow pure @trusted
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(r1.length == 0 || r1.ptr !is null);
|
|
||||||
assert(r2.length == 0 || r2.ptr !is null);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
version (TanyaNative)
|
|
||||||
{
|
|
||||||
return cmpMemory(r1, r2);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (r1.length > r2.length)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
return r1.length < r2.length ? -1 : memcmp(r1.ptr, r2.ptr, r1.length);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
///
|
|
||||||
@nogc nothrow pure @safe unittest
|
|
||||||
{
|
|
||||||
ubyte[4] r1 = [ 'a', 'b', 'c', 'd' ];
|
|
||||||
ubyte[3] r2 = [ 'c', 'a', 'b' ];
|
|
||||||
|
|
||||||
assert(cmp(r1[0 .. 3], r2[]) < 0);
|
|
||||||
assert(cmp(r2[], r1[0 .. 3]) > 0);
|
|
||||||
|
|
||||||
assert(cmp(r1, r2) > 0);
|
|
||||||
assert(cmp(r2, r1) < 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
|
||||||
{
|
|
||||||
ubyte[16] r1 = [
|
|
||||||
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
|
|
||||||
'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
|
|
||||||
];
|
|
||||||
ubyte[16] r2 = [
|
|
||||||
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
|
|
||||||
'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
|
|
||||||
];
|
|
||||||
|
|
||||||
assert(cmp(r1, r2) == 0);
|
|
||||||
assert(cmp(r1[1 .. $], r2[1 .. $]) == 0);
|
|
||||||
assert(cmp(r1[0 .. $ - 1], r2[0 .. $ - 1]) == 0);
|
|
||||||
assert(cmp(r1[0 .. 8], r2[0 .. 8]) == 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -362,13 +293,13 @@ do
|
|||||||
{
|
{
|
||||||
const ubyte[9] haystack = ['a', 'b', 'c', 'd', 'e', 'f', 'b', 'g', 'h'];
|
const ubyte[9] haystack = ['a', 'b', 'c', 'd', 'e', 'f', 'b', 'g', 'h'];
|
||||||
|
|
||||||
assert(cmp(find(haystack, 'a'), haystack[]) == 0);
|
assert(equal(find(haystack, 'a'), haystack[]));
|
||||||
assert(cmp(find(haystack, 'b'), haystack[1 .. $]) == 0);
|
assert(equal(find(haystack, 'b'), haystack[1 .. $]));
|
||||||
assert(cmp(find(haystack, 'c'), haystack[2 .. $]) == 0);
|
assert(equal(find(haystack, 'c'), haystack[2 .. $]));
|
||||||
assert(cmp(find(haystack, 'd'), haystack[3 .. $]) == 0);
|
assert(equal(find(haystack, 'd'), haystack[3 .. $]));
|
||||||
assert(cmp(find(haystack, 'e'), haystack[4 .. $]) == 0);
|
assert(equal(find(haystack, 'e'), haystack[4 .. $]));
|
||||||
assert(cmp(find(haystack, 'f'), haystack[5 .. $]) == 0);
|
assert(equal(find(haystack, 'f'), haystack[5 .. $]));
|
||||||
assert(cmp(find(haystack, 'h'), haystack[8 .. $]) == 0);
|
assert(equal(find(haystack, 'h'), haystack[8 .. $]));
|
||||||
assert(find(haystack, 'i').length == 0);
|
assert(find(haystack, 'i').length == 0);
|
||||||
|
|
||||||
assert(find(null, 'a').length == 0);
|
assert(find(null, 'a').length == 0);
|
||||||
@ -441,10 +372,66 @@ do
|
|||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(cmp(findNullTerminated("abcdef\0gh"), "abcdef") == 0);
|
assert(equal(findNullTerminated("abcdef\0gh"), "abcdef"));
|
||||||
assert(cmp(findNullTerminated("\0garbage"), "") == 0);
|
assert(equal(findNullTerminated("\0garbage"), ""));
|
||||||
assert(cmp(findNullTerminated("\0"), "") == 0);
|
assert(equal(findNullTerminated("\0"), ""));
|
||||||
assert(cmp(findNullTerminated("cstring\0"), "cstring") == 0);
|
assert(equal(findNullTerminated("cstring\0"), "cstring"));
|
||||||
assert(findNullTerminated(null) is null);
|
assert(findNullTerminated(null) is null);
|
||||||
assert(findNullTerminated("abcdef") is null);
|
assert(findNullTerminated("abcdef") is null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares two memory areas $(D_PARAM r1) and $(D_PARAM r2) for equality.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* r1 = First memory block.
|
||||||
|
* r2 = Second memory block.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if $(D_PARAM r1) and $(D_PARAM r2) are equal,
|
||||||
|
* $(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
bool equal(const void[] r1, const void[] r2) @nogc nothrow pure @trusted
|
||||||
|
in
|
||||||
|
{
|
||||||
|
assert(r1.length == 0 || r1.ptr !is null);
|
||||||
|
assert(r2.length == 0 || r2.ptr !is null);
|
||||||
|
}
|
||||||
|
do
|
||||||
|
{
|
||||||
|
version (TanyaNative)
|
||||||
|
{
|
||||||
|
return equalMemory(r1, r2);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return r1.length == r2.length
|
||||||
|
&& memcmp(r1.ptr, r2.ptr, r1.length) == 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(equal("asdf", "asdf"));
|
||||||
|
assert(!equal("asd", "asdf"));
|
||||||
|
assert(!equal("asdf", "asd"));
|
||||||
|
assert(!equal("asdf", "qwer"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Compares unanligned memory
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
ubyte[16] r1 = [
|
||||||
|
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
|
||||||
|
'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
|
||||||
|
];
|
||||||
|
ubyte[16] r2 = [
|
||||||
|
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
|
||||||
|
'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
|
||||||
|
];
|
||||||
|
|
||||||
|
assert(equal(r1, r2));
|
||||||
|
assert(equal(r1[1 .. $], r2[1 .. $]));
|
||||||
|
assert(equal(r1[0 .. $ - 1], r2[0 .. $ - 1]));
|
||||||
|
assert(equal(r1[0 .. 8], r2[0 .. 8]));
|
||||||
|
}
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
*/
|
*/
|
||||||
module tanya.memory;
|
module tanya.memory;
|
||||||
|
|
||||||
import std.algorithm.mutation : uninitializedFill;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.conv;
|
import tanya.conv;
|
||||||
import tanya.exception;
|
import tanya.exception;
|
||||||
public import tanya.memory.allocator;
|
public import tanya.memory.allocator;
|
||||||
@ -341,13 +341,7 @@ if (isPolymorphicType!T)
|
|||||||
|
|
||||||
package(tanya) void[] finalize(T)(ref T[] p)
|
package(tanya) void[] finalize(T)(ref T[] p)
|
||||||
{
|
{
|
||||||
static if (hasElaborateDestructor!(typeof(p[0])))
|
destroyAll(p);
|
||||||
{
|
|
||||||
foreach (ref e; p)
|
|
||||||
{
|
|
||||||
destroy(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@ import tanya.exception;
|
|||||||
import tanya.memory;
|
import tanya.memory;
|
||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.range.primitive;
|
import tanya.range.primitive;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
private template Payload(T)
|
private template Payload(T)
|
||||||
{
|
{
|
||||||
@ -611,19 +612,11 @@ do
|
|||||||
|
|
||||||
@nogc @system unittest
|
@nogc @system unittest
|
||||||
{
|
{
|
||||||
static bool destroyed;
|
size_t destroyed;
|
||||||
|
|
||||||
static struct F
|
|
||||||
{
|
{
|
||||||
~this() @nogc nothrow @safe
|
auto rc = defaultAllocator.refCounted!WithDtor(destroyed);
|
||||||
{
|
|
||||||
destroyed = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
{
|
assert(destroyed == 1);
|
||||||
auto rc = defaultAllocator.refCounted!F();
|
|
||||||
}
|
|
||||||
assert(destroyed);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -238,18 +238,6 @@ struct Pack(Args...)
|
|||||||
alias Seq this;
|
alias Seq this;
|
||||||
}
|
}
|
||||||
|
|
||||||
deprecated("Use Pack instead")
|
|
||||||
struct Tuple(Args...)
|
|
||||||
{
|
|
||||||
/// Elements in this tuple as $(D_PSYMBOL AliasSeq).
|
|
||||||
alias Seq = Args;
|
|
||||||
|
|
||||||
/// The length of the tuple.
|
|
||||||
enum size_t length = Args.length;
|
|
||||||
|
|
||||||
alias Seq this;
|
|
||||||
}
|
|
||||||
|
|
||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
@ -1813,3 +1801,62 @@ if (T.length == 2)
|
|||||||
static assert(is(Select!(true, int, float) == int));
|
static assert(is(Select!(true, int, float) == int));
|
||||||
static assert(is(Select!(false, int, float) == float));
|
static assert(is(Select!(false, int, float) == float));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attaces a numeric index to each element from $(D_PARAM Args).
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL EnumerateFrom) returns a sequence of tuples ($(D_PSYMBOL Pack)s)
|
||||||
|
* consisting of the index of each element and the element itself.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* start = Enumeration initial value.
|
||||||
|
* Args = Enumerated sequence.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL Enumerate).
|
||||||
|
*/
|
||||||
|
template EnumerateFrom(size_t start, Args...)
|
||||||
|
{
|
||||||
|
static if (Args.length == 0)
|
||||||
|
{
|
||||||
|
alias EnumerateFrom = AliasSeq!();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
alias EnumerateFrom = AliasSeq!(Pack!(start, Args[0]), EnumerateFrom!(start + 1, Args[1 .. $]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(EnumerateFrom!(0, int, uint, bool).length == 3);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
alias Expected = AliasSeq!(Pack!(cast(size_t) 0, int),
|
||||||
|
Pack!(cast(size_t) 1, uint));
|
||||||
|
static assert(is(EnumerateFrom!(0, int, uint) == Expected));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attaces a numeric index to each element from $(D_PARAM Args).
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL EnumerateFrom) returns a sequence of tuples ($(D_PSYMBOL Pack)s)
|
||||||
|
* consisting of the index of each element and the element itself.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Args = Enumerated sequence.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL EnumerateFrom).
|
||||||
|
*/
|
||||||
|
alias Enumerate(Args...) = EnumerateFrom!(0, Args);
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
alias Expected = AliasSeq!(Pack!(cast(size_t) 0, int),
|
||||||
|
Pack!(cast(size_t) 1, uint));
|
||||||
|
static assert(is(Enumerate!(int, uint) == Expected));
|
||||||
|
}
|
||||||
|
@ -1493,6 +1493,8 @@ if (F.length == 1)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Determines whether $(D_PARAM T) defines a symbol $(D_PARAM member).
|
||||||
|
*
|
||||||
* Params:
|
* Params:
|
||||||
* T = Aggregate type.
|
* T = Aggregate type.
|
||||||
* member = Symbol name.
|
* member = Symbol name.
|
||||||
@ -2854,6 +2856,46 @@ template hasUDA(alias symbol, alias attr)
|
|||||||
static assert(!hasUDA!(a, Attr2));
|
static assert(!hasUDA!(a, Attr2));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If $(D_PARAM T) is a type, constructs its default value, otherwise
|
||||||
|
* $(D_PSYMBOL evalUDA) aliases itself to $(D_PARAM T).
|
||||||
|
*
|
||||||
|
* This template is useful when working with UDAs with default parameters,
|
||||||
|
* i.e. if an attribute can be given as `@Attr` or `@Attr("param")`,
|
||||||
|
* $(D_PSYMBOL evalUDA) makes `@Attr()` from `@Attr`, but returns
|
||||||
|
* `@Attr("param")` as is.
|
||||||
|
*
|
||||||
|
* $(D_PARAM T) (or its type if it isn't a type already) should have a default
|
||||||
|
* constructor.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* T = User Defined Attribute.
|
||||||
|
*/
|
||||||
|
alias evalUDA(alias T) = T;
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
alias evalUDA(T) = Alias!(T());
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct Length
|
||||||
|
{
|
||||||
|
size_t length = 8;
|
||||||
|
}
|
||||||
|
@Length @Length(0) int i;
|
||||||
|
alias uda = AliasSeq!(__traits(getAttributes, i));
|
||||||
|
|
||||||
|
alias attr1 = evalUDA!(uda[0]);
|
||||||
|
alias attr2 = evalUDA!(uda[1]);
|
||||||
|
|
||||||
|
static assert(is(typeof(attr1) == Length));
|
||||||
|
static assert(is(typeof(attr2) == Length));
|
||||||
|
|
||||||
|
static assert(attr1.length == 8);
|
||||||
|
static assert(attr2.length == 0);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests whether $(D_PARAM T) is an inner class, i.e. a class nested inside
|
* Tests whether $(D_PARAM T) is an inner class, i.e. a class nested inside
|
||||||
* another class.
|
* another class.
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
/**
|
/**
|
||||||
* Internet Protocol implementation.
|
* Internet Protocol implementation.
|
||||||
*
|
*
|
||||||
* Copyright: Eugene Wissner 2018.
|
* Copyright: Eugene Wissner 2018-2019.
|
||||||
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
||||||
* Mozilla Public License, v. 2.0).
|
* Mozilla Public License, v. 2.0).
|
||||||
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
||||||
@ -103,7 +103,7 @@ struct Address4
|
|||||||
*
|
*
|
||||||
* Returns: Object that represents the Loopback address.
|
* Returns: Object that represents the Loopback address.
|
||||||
*/
|
*/
|
||||||
static Address4 loopback() @nogc nothrow pure @safe
|
static @property Address4 loopback() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
typeof(return) address;
|
typeof(return) address;
|
||||||
address.address = Address4.loopback_;
|
address.address = Address4.loopback_;
|
||||||
@ -121,7 +121,7 @@ struct Address4
|
|||||||
*
|
*
|
||||||
* Returns: Object that represents any address.
|
* Returns: Object that represents any address.
|
||||||
*/
|
*/
|
||||||
static Address4 any() @nogc nothrow pure @safe
|
static @property Address4 any() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
typeof(return) address;
|
typeof(return) address;
|
||||||
address.address = Address4.any_;
|
address.address = Address4.any_;
|
||||||
@ -148,7 +148,7 @@ struct Address4
|
|||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(address4("127.0.0.1").isLoopback());
|
assert(address4("127.0.0.1").get.isLoopback());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -166,7 +166,7 @@ struct Address4
|
|||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(address4("0.0.0.0").isAny());
|
assert(address4("0.0.0.0").get.isAny());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -183,7 +183,7 @@ struct Address4
|
|||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(address4("255.255.255.255").isBroadcast());
|
assert(address4("255.255.255.255").get.isBroadcast());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -210,7 +210,7 @@ struct Address4
|
|||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(address4("224.0.0.3").isMulticast());
|
assert(address4("224.0.0.3").get.isMulticast());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -229,7 +229,7 @@ struct Address4
|
|||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(address4("192.168.0.1").isUnicast());
|
assert(address4("192.168.0.1").get.isUnicast());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -276,7 +276,7 @@ struct Address4
|
|||||||
{
|
{
|
||||||
const actual = address4("192.168.0.1");
|
const actual = address4("192.168.0.1");
|
||||||
const ubyte[4] expected = [192, 168, 0, 1];
|
const ubyte[4] expected = [192, 168, 0, 1];
|
||||||
assert(actual.toBytes() == expected);
|
assert(actual.get.toBytes() == expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -293,7 +293,7 @@ struct Address4
|
|||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(address4("127.0.0.1").toUInt() == 0x7f000001U);
|
assert(address4("127.0.0.1").get.toUInt() == 0x7f000001U);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -394,7 +394,7 @@ if (isInputRange!R && is(Unqual!(ElementType!R) == ubyte))
|
|||||||
{
|
{
|
||||||
{
|
{
|
||||||
ubyte[4] actual = [127, 0, 0, 1];
|
ubyte[4] actual = [127, 0, 0, 1];
|
||||||
assert(address4(actual[]).isLoopback());
|
assert(address4(actual[]).get.isLoopback());
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
ubyte[3] actual = [127, 0, 0];
|
ubyte[3] actual = [127, 0, 0];
|
||||||
@ -490,8 +490,8 @@ struct Address6
|
|||||||
assert(address6("::14") > address6("::1"));
|
assert(address6("::14") > address6("::1"));
|
||||||
assert(address6("::1") < address6("::14"));
|
assert(address6("::1") < address6("::14"));
|
||||||
assert(address6("::1") == address6("::1"));
|
assert(address6("::1") == address6("::1"));
|
||||||
assert(address6("::1%1") < address6("::1%2"));
|
assert(address6("fe80::1%1") < address6("fe80::1%2"));
|
||||||
assert(address6("::1%2") > address6("::1%1"));
|
assert(address6("fe80::1%2") > address6("fe80::1%1"));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -499,7 +499,7 @@ struct Address6
|
|||||||
*
|
*
|
||||||
* Returns: Object that represents any address.
|
* Returns: Object that represents any address.
|
||||||
*/
|
*/
|
||||||
static Address6 any() @nogc nothrow pure @safe
|
static @property Address6 any() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return Address6();
|
return Address6();
|
||||||
}
|
}
|
||||||
@ -515,7 +515,7 @@ struct Address6
|
|||||||
*
|
*
|
||||||
* Returns: Object that represents the Loopback address.
|
* Returns: Object that represents the Loopback address.
|
||||||
*/
|
*/
|
||||||
static Address6 loopback() @nogc nothrow pure @safe
|
static @property Address6 loopback() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
typeof(return) address;
|
typeof(return) address;
|
||||||
address.address[$ - 1] = 1;
|
address.address[$ - 1] = 1;
|
||||||
@ -543,7 +543,7 @@ struct Address6
|
|||||||
///
|
///
|
||||||
@nogc nothrow @safe unittest
|
@nogc nothrow @safe unittest
|
||||||
{
|
{
|
||||||
assert(address6("::").isAny());
|
assert(address6("::").get.isAny());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -560,7 +560,7 @@ struct Address6
|
|||||||
///
|
///
|
||||||
@nogc nothrow @safe unittest
|
@nogc nothrow @safe unittest
|
||||||
{
|
{
|
||||||
assert(address6("::1").isLoopback());
|
assert(address6("::1").get.isLoopback());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -579,7 +579,7 @@ struct Address6
|
|||||||
///
|
///
|
||||||
@nogc nothrow @safe unittest
|
@nogc nothrow @safe unittest
|
||||||
{
|
{
|
||||||
assert(address6("ff00::").isMulticast());
|
assert(address6("ff00::").get.isMulticast());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -598,7 +598,7 @@ struct Address6
|
|||||||
///
|
///
|
||||||
@nogc nothrow @safe unittest
|
@nogc nothrow @safe unittest
|
||||||
{
|
{
|
||||||
assert(address6("::1").isUnicast());
|
assert(address6("::1").get.isUnicast());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -615,7 +615,7 @@ struct Address6
|
|||||||
///
|
///
|
||||||
@nogc nothrow @safe unittest
|
@nogc nothrow @safe unittest
|
||||||
{
|
{
|
||||||
assert(address6("fe80::1").isLinkLocal());
|
assert(address6("fe80::1").get.isLinkLocal());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -632,7 +632,7 @@ struct Address6
|
|||||||
///
|
///
|
||||||
@nogc nothrow @safe unittest
|
@nogc nothrow @safe unittest
|
||||||
{
|
{
|
||||||
assert(address6("fd80:124e:34f3::1").isUniqueLocal());
|
assert(address6("fd80:124e:34f3::1").get.isUniqueLocal());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -678,7 +678,7 @@ struct Address6
|
|||||||
{
|
{
|
||||||
import tanya.algorithm.comparison : equal;
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
assert(equal(address6("1:2:3:4:5:6:7:8").stringify()[],
|
assert(equal(address6("1:2:3:4:5:6:7:8").get.stringify()[],
|
||||||
"0001:0002:0003:0004:0005:0006:0007:0008"));
|
"0001:0002:0003:0004:0005:0006:0007:0008"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -697,7 +697,7 @@ struct Address6
|
|||||||
{
|
{
|
||||||
auto actual = address6("1:2:3:4:5:6:7:8");
|
auto actual = address6("1:2:3:4:5:6:7:8");
|
||||||
ubyte[16] expected = [0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7, 0, 8];
|
ubyte[16] expected = [0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7, 0, 8];
|
||||||
assert(actual.toBytes() == expected);
|
assert(actual.get.toBytes() == expected);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -716,20 +716,17 @@ private void write2Bytes(R)(ref R range, ubyte[] address)
|
|||||||
* is specified (i.e. first character after `%` is not a digit), the parser
|
* is specified (i.e. first character after `%` is not a digit), the parser
|
||||||
* tries to convert it to the ID of that interface. If the interface with the
|
* tries to convert it to the ID of that interface. If the interface with the
|
||||||
* given name can't be found, the parser doesn't fail, but just ignores the
|
* given name can't be found, the parser doesn't fail, but just ignores the
|
||||||
* invalid interface name.
|
* invalid interface name, scope ID is `0` then.
|
||||||
*
|
*
|
||||||
* If an ID is given (i.e. first character after `%` is a digit),
|
* If an ID is given (i.e. first character after `%` is a digit),
|
||||||
* $(D_PSYMBOL address6) just stores it in $(D_PSYMBOL Address6.scopeID) without
|
* $(D_PSYMBOL address6) just stores it in $(D_PSYMBOL Address6.scopeID) without
|
||||||
* checking whether an interface with this ID really exists. If the ID is
|
* checking whether an interface with this ID really exists. If the ID is
|
||||||
* invalid (if it is too long or contains non decimal characters), parsing
|
* invalid (if it is too long or contains non decimal characters), parsing
|
||||||
* and nothing is returned.
|
* fails and nothing is returned.
|
||||||
*
|
*
|
||||||
* If neither an ID nor a name is given, $(D_PSYMBOL Address6.scopeID) is set
|
* If neither an ID nor a name is given, $(D_PSYMBOL Address6.scopeID) is set
|
||||||
* to `0`.
|
* to `0`.
|
||||||
*
|
*
|
||||||
* The parser doesn't support notation with an embedded IPv4 address (e.g.
|
|
||||||
* ::1.2.3.4).
|
|
||||||
*
|
|
||||||
* Params:
|
* Params:
|
||||||
* R = Input range type.
|
* R = Input range type.
|
||||||
* range = Stringish range containing the address.
|
* range = Stringish range containing the address.
|
||||||
@ -746,7 +743,6 @@ if (isForwardRange!R && is(Unqual!(ElementType!R) == char) && hasLength!R)
|
|||||||
}
|
}
|
||||||
Address6 result;
|
Address6 result;
|
||||||
ubyte[12] tail;
|
ubyte[12] tail;
|
||||||
size_t i;
|
|
||||||
size_t j;
|
size_t j;
|
||||||
|
|
||||||
// An address begins with a number, not ':'. But there is a special case
|
// An address begins with a number, not ':'. But there is a special case
|
||||||
@ -764,22 +760,40 @@ if (isForwardRange!R && is(Unqual!(ElementType!R) == char) && hasLength!R)
|
|||||||
|
|
||||||
// Parse the address before '::'.
|
// Parse the address before '::'.
|
||||||
// This loop parses the whole address if it doesn't contain '::'.
|
// This loop parses the whole address if it doesn't contain '::'.
|
||||||
for (; i < 13; i += 2)
|
static foreach (i; 0 .. 7)
|
||||||
{
|
{
|
||||||
write2Bytes(range, result.address[i .. $]);
|
{ // To make "state" definition local
|
||||||
if (range.empty || range.front != ':')
|
static if (i == 6) // Can be embedded IPv4
|
||||||
{
|
{
|
||||||
return typeof(return)();
|
auto state = range.save();
|
||||||
}
|
}
|
||||||
range.popFront();
|
write2Bytes(range, result.address[i * 2 .. $]);
|
||||||
if (range.empty)
|
if (range.empty)
|
||||||
{
|
{
|
||||||
return typeof(return)();
|
return typeof(return)();
|
||||||
}
|
}
|
||||||
if (range.front == ':')
|
static if (i == 6)
|
||||||
{
|
{
|
||||||
|
if (range.front == '.')
|
||||||
|
{
|
||||||
|
swap(range, state);
|
||||||
|
goto ParseIPv4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (range.front != ':')
|
||||||
|
{
|
||||||
|
return typeof(return)();
|
||||||
|
}
|
||||||
range.popFront();
|
range.popFront();
|
||||||
goto ParseTail;
|
if (range.empty)
|
||||||
|
{
|
||||||
|
return typeof(return)();
|
||||||
|
}
|
||||||
|
if (range.front == ':')
|
||||||
|
{
|
||||||
|
range.popFront();
|
||||||
|
goto ParseTail;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
write2Bytes(range, result.address[14 .. $]);
|
write2Bytes(range, result.address[14 .. $]);
|
||||||
@ -810,27 +824,38 @@ ParseTail: // after ::
|
|||||||
{
|
{
|
||||||
return typeof(return)();
|
return typeof(return)();
|
||||||
}
|
}
|
||||||
write2Bytes(range, tail[j .. $]);
|
{ // To make "state" definition local
|
||||||
if (range.empty)
|
auto state = range.save();
|
||||||
{
|
|
||||||
goto CopyTail;
|
|
||||||
}
|
|
||||||
else if (range.front == '%')
|
|
||||||
{
|
|
||||||
goto ParseIface;
|
|
||||||
}
|
|
||||||
else if (range.front != ':')
|
|
||||||
{
|
|
||||||
return typeof(return)();
|
|
||||||
}
|
|
||||||
range.popFront();
|
|
||||||
|
|
||||||
for (i = 2, j = 2; i <= 11; i += 2, j += 2, range.popFront())
|
write2Bytes(range, tail[j .. $]);
|
||||||
|
if (range.empty)
|
||||||
|
{
|
||||||
|
goto CopyTail;
|
||||||
|
}
|
||||||
|
else if (range.front == '%')
|
||||||
|
{
|
||||||
|
goto ParseIface;
|
||||||
|
}
|
||||||
|
else if (range.front == '.')
|
||||||
|
{
|
||||||
|
swap(range, state);
|
||||||
|
goto ParseIPv4;
|
||||||
|
}
|
||||||
|
else if (range.front != ':')
|
||||||
|
{
|
||||||
|
return typeof(return)();
|
||||||
|
}
|
||||||
|
range.popFront();
|
||||||
|
}
|
||||||
|
|
||||||
|
j = 2;
|
||||||
|
for (size_t i = 2; i <= 11; i += 2, j += 2, range.popFront())
|
||||||
{
|
{
|
||||||
if (range.empty || range.front == ':')
|
if (range.empty || range.front == ':')
|
||||||
{
|
{
|
||||||
return typeof(return)();
|
return typeof(return)();
|
||||||
}
|
}
|
||||||
|
auto state = range.save();
|
||||||
write2Bytes(range, tail[j .. $]);
|
write2Bytes(range, tail[j .. $]);
|
||||||
|
|
||||||
if (range.empty)
|
if (range.empty)
|
||||||
@ -841,12 +866,45 @@ ParseTail: // after ::
|
|||||||
{
|
{
|
||||||
goto ParseIface;
|
goto ParseIface;
|
||||||
}
|
}
|
||||||
|
else if (range.front == '.')
|
||||||
|
{
|
||||||
|
swap(range, state);
|
||||||
|
goto ParseIPv4;
|
||||||
|
}
|
||||||
else if (range.front != ':')
|
else if (range.front != ':')
|
||||||
{
|
{
|
||||||
return typeof(return)();
|
return typeof(return)();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ParseIPv4:
|
||||||
|
// We know there is a number followed by '.'. We have to ensure this number
|
||||||
|
// is an octet
|
||||||
|
tail[j] = readIntegral!ubyte(range);
|
||||||
|
static foreach (i; 1 .. 4)
|
||||||
|
{
|
||||||
|
if (range.empty || range.front != '.')
|
||||||
|
{
|
||||||
|
return typeof(return)();
|
||||||
|
}
|
||||||
|
range.popFront();
|
||||||
|
if (range.empty)
|
||||||
|
{
|
||||||
|
return typeof(return)();
|
||||||
|
}
|
||||||
|
tail[j + i] = readIntegral!ubyte(range);
|
||||||
|
}
|
||||||
|
j += 2;
|
||||||
|
|
||||||
|
if (range.empty)
|
||||||
|
{
|
||||||
|
goto CopyTail;
|
||||||
|
}
|
||||||
|
else if (range.front != '%')
|
||||||
|
{
|
||||||
|
return typeof(return)();
|
||||||
|
}
|
||||||
|
|
||||||
ParseIface: // Scope name or ID
|
ParseIface: // Scope name or ID
|
||||||
range.popFront();
|
range.popFront();
|
||||||
if (range.empty)
|
if (range.empty)
|
||||||
@ -877,26 +935,30 @@ CopyTail:
|
|||||||
|
|
||||||
@nogc nothrow @safe unittest
|
@nogc nothrow @safe unittest
|
||||||
{
|
{
|
||||||
{
|
ubyte[16] expected = [0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7, 0, 8];
|
||||||
ubyte[16] expected = [0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7, 0, 8];
|
auto actual = address6("1:2:3:4:5:6:7:8");
|
||||||
auto actual = address6("1:2:3:4:5:6:7:8");
|
assert(actual.get.address == expected);
|
||||||
assert(actual.address == expected);
|
}
|
||||||
}
|
|
||||||
{
|
@nogc nothrow @safe unittest
|
||||||
ubyte[16] expected;
|
{
|
||||||
auto actual = address6("::");
|
ubyte[16] expected;
|
||||||
assert(actual.address == expected);
|
auto actual = address6("::");
|
||||||
}
|
assert(actual.get.address == expected);
|
||||||
{
|
}
|
||||||
ubyte[16] expected = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1];
|
|
||||||
auto actual = address6("::1");
|
@nogc nothrow @safe unittest
|
||||||
assert(actual.address == expected);
|
{
|
||||||
}
|
ubyte[16] expected = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1];
|
||||||
{
|
auto actual = address6("::1");
|
||||||
ubyte[16] expected = [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
|
assert(actual.get.address == expected);
|
||||||
auto actual = address6("1::");
|
}
|
||||||
assert(actual.address == expected);
|
|
||||||
}
|
@nogc nothrow @safe unittest
|
||||||
|
{
|
||||||
|
ubyte[16] expected = [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
|
||||||
|
auto actual = address6("1::");
|
||||||
|
assert(actual.get.address == expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Rejects malformed addresses
|
// Rejects malformed addresses
|
||||||
@ -907,7 +969,37 @@ CopyTail:
|
|||||||
assert(address6(":a").isNothing);
|
assert(address6(":a").isNothing);
|
||||||
assert(address6("a:").isNothing);
|
assert(address6("a:").isNothing);
|
||||||
assert(address6("1:2:3:4::6:").isNothing);
|
assert(address6("1:2:3:4::6:").isNothing);
|
||||||
assert(address6("1:2:3:4::6:7:8%").isNothing);
|
assert(address6("fe80:2:3:4::6:7:8%").isNothing);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parses embedded IPv4 address
|
||||||
|
@nogc nothrow @safe unittest
|
||||||
|
{
|
||||||
|
ubyte[16] expected = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4];
|
||||||
|
auto actual = address6("0:0:0:0:0:0:1.2.3.4");
|
||||||
|
assert(actual.get.address == expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow @safe unittest
|
||||||
|
{
|
||||||
|
ubyte[16] expected = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4];
|
||||||
|
auto actual = address6("::1.2.3.4");
|
||||||
|
assert(actual.get.address == expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow @safe unittest
|
||||||
|
{
|
||||||
|
ubyte[16] expected = [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 6, 1, 2, 3, 4];
|
||||||
|
auto actual = address6("::5:6:1.2.3.4");
|
||||||
|
assert(actual.get.address == expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow @safe unittest
|
||||||
|
{
|
||||||
|
assert(address6("0:0:0:0:0:0:1.2.3.").isNothing);
|
||||||
|
assert(address6("0:0:0:0:0:0:1.2:3.4").isNothing);
|
||||||
|
assert(address6("0:0:0:0:0:0:1.2.3.4.").isNothing);
|
||||||
|
assert(address6("fe80:0:0:0:0:0:1.2.3.4%1").get.scopeID == 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -959,3 +1051,261 @@ if (isInputRange!R && is(Unqual!(ElementType!R) == ubyte))
|
|||||||
assert(address6(cast(ubyte[]) []).isNothing);
|
assert(address6(cast(ubyte[]) []).isNothing);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Address storage, that can hold either an IPv4 or IPv6 address.
|
||||||
|
*/
|
||||||
|
struct Address
|
||||||
|
{
|
||||||
|
private Variant!(Address4, Address6) address;
|
||||||
|
|
||||||
|
@disable this();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes the addres with an IPv4 address.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* address = IPv6 address.
|
||||||
|
*/
|
||||||
|
this(Address4 address) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
this.address = address;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes the addres with an IPv4 address.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* address = IPv6 address.
|
||||||
|
*/
|
||||||
|
this(Address6 address) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
this.address = address;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether this is an IPv4 address.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this is an IPv4 address,
|
||||||
|
* $(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
bool isV4() const @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.address.peek!Address4;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(Address(Address4.any()).isV4());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether this is an IPv6 address.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this is an IPv6 address,
|
||||||
|
* $(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
bool isV6() const @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.address.peek!Address6;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(Address(Address6.any()).isV6());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the address as an IPv4 address.
|
||||||
|
*
|
||||||
|
* This method doesn't convert the address, so the address should be
|
||||||
|
* already an IPv4 one.
|
||||||
|
*
|
||||||
|
* Returns: IPv4 address.
|
||||||
|
*
|
||||||
|
* Precondition: This is an IPv4 address.
|
||||||
|
*/
|
||||||
|
ref inout(Address4) toV4() inout @nogc nothrow pure @safe
|
||||||
|
in (this.address.peek!Address4)
|
||||||
|
{
|
||||||
|
return this.address.get!Address4;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
auto expected = Address4.loopback;
|
||||||
|
assert(Address(expected).toV4() == expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the address as an IPv6 address.
|
||||||
|
*
|
||||||
|
* This method doesn't convert the address, so the address should be
|
||||||
|
* already an IPv6 one.
|
||||||
|
*
|
||||||
|
* Returns: IPv6 address.
|
||||||
|
*
|
||||||
|
* Precondition: This is an IPv6 address.
|
||||||
|
*/
|
||||||
|
ref inout(Address6) toV6() inout @nogc nothrow pure @safe
|
||||||
|
in (this.address.peek!Address6)
|
||||||
|
{
|
||||||
|
return this.address.get!Address6;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
auto expected = Address6.loopback;
|
||||||
|
assert(Address(expected).toV6() == expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether this is a loopback address.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this is a loopback address,
|
||||||
|
* $(D_KEYWORD false) otherwise.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL Address4.loopback),
|
||||||
|
* $(D_PSYMBOL Address6.loopback).
|
||||||
|
*/
|
||||||
|
bool isLoopback() const @nogc nothrow pure @safe
|
||||||
|
in (this.address.hasValue)
|
||||||
|
{
|
||||||
|
if (this.address.peek!Address4)
|
||||||
|
{
|
||||||
|
return this.address.get!Address4.isLoopback();
|
||||||
|
}
|
||||||
|
return this.address.get!Address6.isLoopback();
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(Address(Address4.loopback()).isLoopback());
|
||||||
|
assert(Address(Address6.loopback()).isLoopback());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether this address' destination is a group of endpoints.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this is a multicast address,
|
||||||
|
* $(D_KEYWORD false) otherwise.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL Address4.isMulticast),
|
||||||
|
* $(D_PSYMBOL Address6.isMulticast).
|
||||||
|
*/
|
||||||
|
bool isMulticast() const @nogc nothrow pure @safe
|
||||||
|
in (this.address.hasValue)
|
||||||
|
{
|
||||||
|
if (this.address.peek!Address4)
|
||||||
|
{
|
||||||
|
return this.address.get!Address4.isMulticast();
|
||||||
|
}
|
||||||
|
return this.address.get!Address6.isMulticast();
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow @safe unittest
|
||||||
|
{
|
||||||
|
assert(Address(address4("224.0.0.3").get).isMulticast());
|
||||||
|
assert(Address(address6("ff00::").get).isMulticast());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether this is an unspecified address.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this is an unspecified address,
|
||||||
|
* $(D_KEYWORD false) otherwise.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL Address4.isAny), $(D_PSYMBOL Address6.isAny).
|
||||||
|
*/
|
||||||
|
bool isAny() const @nogc nothrow pure @safe
|
||||||
|
in (this.address.hasValue)
|
||||||
|
{
|
||||||
|
if (this.address.peek!Address4)
|
||||||
|
{
|
||||||
|
return this.address.get!Address4.isAny();
|
||||||
|
}
|
||||||
|
return this.address.get!Address6.isAny();
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(Address(Address4.any).isAny());
|
||||||
|
assert(Address(Address6.any).isAny());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares two addresses for equality.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* T = The type of the other address. It can be $(D_PSYMBOL Address),
|
||||||
|
* $(D_PSYMBOL Address4) or $(D_PSYMBOL Address6).
|
||||||
|
* that = The address to compare with.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this and $(D_PARAM that) addresses are
|
||||||
|
* representations of the same IP address, $(D_KEYWORD false)
|
||||||
|
* otherwise.
|
||||||
|
*/
|
||||||
|
bool opEquals(T)(T that) const
|
||||||
|
if (is(Unqual!T == Address4) || is(Unqual!T == Address6))
|
||||||
|
{
|
||||||
|
alias AddressType = Unqual!T;
|
||||||
|
if (this.address.peek!AddressType)
|
||||||
|
{
|
||||||
|
return this.address.get!AddressType == that;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(Address(Address4.loopback) == Address4.loopback);
|
||||||
|
assert(Address(Address6.loopback) == Address6.loopback);
|
||||||
|
assert(Address(Address4.loopback) != Address6.loopback);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
bool opEquals(T)(T that) const
|
||||||
|
if (is(Unqual!T == Address))
|
||||||
|
{
|
||||||
|
return this.address == that.address;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(Address(Address6.loopback) == Address(Address6.loopback));
|
||||||
|
assert(Address(Address4.loopback) != Address(Address6.loopback));
|
||||||
|
}
|
||||||
|
|
||||||
|
ref Address opAssign(T)(T that)
|
||||||
|
if (is(Unqual!T == Address4) || is(Unqual!T == Address6))
|
||||||
|
{
|
||||||
|
this.address = that;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Address address = Address4.any;
|
||||||
|
address = Address4.loopback;
|
||||||
|
assert(address == Address4.loopback);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Can assign another address
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Address actual = Address4.loopback;
|
||||||
|
Address expected = Address6.loopback;
|
||||||
|
actual = expected;
|
||||||
|
assert(actual == expected);
|
||||||
|
}
|
||||||
|
@ -53,10 +53,10 @@ module tanya.network.socket;
|
|||||||
import core.stdc.errno;
|
import core.stdc.errno;
|
||||||
import core.time;
|
import core.time;
|
||||||
public import std.socket : SocketOption, SocketOptionLevel;
|
public import std.socket : SocketOption, SocketOptionLevel;
|
||||||
import std.traits;
|
|
||||||
import std.typecons;
|
|
||||||
import tanya.algorithm.comparison;
|
import tanya.algorithm.comparison;
|
||||||
|
import tanya.bitmanip;
|
||||||
import tanya.memory;
|
import tanya.memory;
|
||||||
|
import tanya.meta.trait;
|
||||||
import tanya.os.error;
|
import tanya.os.error;
|
||||||
|
|
||||||
/// Value returned by socket operations on error.
|
/// Value returned by socket operations on error.
|
||||||
|
@ -5,12 +5,6 @@
|
|||||||
/**
|
/**
|
||||||
* Range adapters.
|
* Range adapters.
|
||||||
*
|
*
|
||||||
* A range adapter wraps another range and modifies the way, how the original
|
|
||||||
* range is iterated, or the order in which its elements are accessed.
|
|
||||||
*
|
|
||||||
* All adapters are lazy algorithms, they request the next element of the
|
|
||||||
* adapted range on demand.
|
|
||||||
*
|
|
||||||
* Copyright: Eugene Wissner 2018.
|
* Copyright: Eugene Wissner 2018.
|
||||||
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
||||||
* Mozilla Public License, v. 2.0).
|
* Mozilla Public License, v. 2.0).
|
||||||
@ -18,245 +12,4 @@
|
|||||||
* Source: $(LINK2 https://github.com/caraus-ecms/tanya/blob/master/source/tanya/range/adapter.d,
|
* Source: $(LINK2 https://github.com/caraus-ecms/tanya/blob/master/source/tanya/range/adapter.d,
|
||||||
* tanya/range/adapter.d)
|
* tanya/range/adapter.d)
|
||||||
*/
|
*/
|
||||||
deprecated("Use tanya.algorithm.iteration instead")
|
|
||||||
module tanya.range.adapter;
|
module tanya.range.adapter;
|
||||||
|
|
||||||
import tanya.algorithm.mutation;
|
|
||||||
import tanya.math;
|
|
||||||
import tanya.range.primitive;
|
|
||||||
|
|
||||||
private mixin template Take(R, bool exactly)
|
|
||||||
{
|
|
||||||
private R source;
|
|
||||||
size_t length_;
|
|
||||||
|
|
||||||
@disable this();
|
|
||||||
|
|
||||||
private this(R source, size_t length)
|
|
||||||
{
|
|
||||||
this.source = source;
|
|
||||||
static if (!exactly && hasLength!R)
|
|
||||||
{
|
|
||||||
this.length_ = min(source.length, length);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
this.length_ = length;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@property auto ref front()
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(!empty);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
return this.source.front;
|
|
||||||
}
|
|
||||||
|
|
||||||
void popFront()
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(!empty);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
this.source.popFront();
|
|
||||||
--this.length_;
|
|
||||||
}
|
|
||||||
|
|
||||||
@property bool empty()
|
|
||||||
{
|
|
||||||
static if (exactly || isInfinite!R)
|
|
||||||
{
|
|
||||||
return length == 0;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return length == 0 || this.source.empty;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@property size_t length()
|
|
||||||
{
|
|
||||||
return this.length_;
|
|
||||||
}
|
|
||||||
|
|
||||||
static if (hasAssignableElements!R)
|
|
||||||
{
|
|
||||||
@property void front(ref ElementType!R value)
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(!empty);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
this.source.front = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
@property void front(ElementType!R value)
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(!empty);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
this.source.front = move(value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static if (isForwardRange!R)
|
|
||||||
{
|
|
||||||
typeof(this) save()
|
|
||||||
{
|
|
||||||
return typeof(this)(this.source.save(), length);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
static if (isRandomAccessRange!R)
|
|
||||||
{
|
|
||||||
@property auto ref back()
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(!empty);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
return this.source[this.length - 1];
|
|
||||||
}
|
|
||||||
|
|
||||||
void popBack()
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(!empty);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
--this.length_;
|
|
||||||
}
|
|
||||||
|
|
||||||
auto ref opIndex(size_t i)
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(i < length);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
return this.source[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
static if (hasAssignableElements!R)
|
|
||||||
{
|
|
||||||
@property void back(ref ElementType!R value)
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(!empty);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
this.source[length - 1] = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
@property void back(ElementType!R value)
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(!empty);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
this.source[length - 1] = move(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
void opIndexAssign(ref ElementType!R value, size_t i)
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(i < length);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
this.source[i] = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
void opIndexAssign(ElementType!R value, size_t i)
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(i < length);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
this.source[i] = move(value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
static if (hasSlicing!R)
|
|
||||||
{
|
|
||||||
auto opSlice(size_t i, size_t j)
|
|
||||||
in
|
|
||||||
{
|
|
||||||
assert(i <= j);
|
|
||||||
assert(j <= length);
|
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
return take(this.source[i .. j], length);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Takes $(D_PARAM n) elements from $(D_PARAM range).
|
|
||||||
*
|
|
||||||
* If $(D_PARAM range) doesn't have $(D_PARAM n) elements, the resulting range
|
|
||||||
* spans all elements of $(D_PARAM range).
|
|
||||||
*
|
|
||||||
* $(D_PSYMBOL take) is particulary useful with infinite ranges. You can take
|
|
||||||
` $(B n) elements from such range and pass the result to an algorithm which
|
|
||||||
* expects a finit range.
|
|
||||||
*
|
|
||||||
* Params:
|
|
||||||
* R = Type of the adapted range.
|
|
||||||
* range = The range to take the elements from.
|
|
||||||
* n = The number of elements to take.
|
|
||||||
*
|
|
||||||
* Returns: A range containing maximum $(D_PARAM n) first elements of
|
|
||||||
* $(D_PARAM range).
|
|
||||||
*
|
|
||||||
* See_Also: $(D_PSYMBOL takeExactly).
|
|
||||||
*/
|
|
||||||
auto take(R)(R range, size_t n)
|
|
||||||
if (isInputRange!R)
|
|
||||||
{
|
|
||||||
struct Take
|
|
||||||
{
|
|
||||||
mixin .Take!(R, false);
|
|
||||||
}
|
|
||||||
return Take(range, n);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Takes exactly $(D_PARAM n) elements from $(D_PARAM range).
|
|
||||||
*
|
|
||||||
* $(D_PARAM range) must have at least $(D_PARAM n) elements.
|
|
||||||
*
|
|
||||||
* $(D_PSYMBOL takeExactly) is particulary useful with infinite ranges. You can
|
|
||||||
` take $(B n) elements from such range and pass the result to an algorithm
|
|
||||||
* which expects a finit range.
|
|
||||||
*
|
|
||||||
* Params:
|
|
||||||
* R = Type of the adapted range.
|
|
||||||
* range = The range to take the elements from.
|
|
||||||
* n = The number of elements to take.
|
|
||||||
*
|
|
||||||
* Returns: A range containing $(D_PARAM n) first elements of $(D_PARAM range).
|
|
||||||
*
|
|
||||||
* See_Also: $(D_PSYMBOL take).
|
|
||||||
*/
|
|
||||||
auto takeExactly(R)(R range, size_t n)
|
|
||||||
if (isInputRange!R)
|
|
||||||
{
|
|
||||||
struct TakeExactly
|
|
||||||
{
|
|
||||||
mixin Take!(R, true);
|
|
||||||
}
|
|
||||||
return TakeExactly(range, n);
|
|
||||||
}
|
|
||||||
|
@ -54,7 +54,7 @@ module tanya.range.array;
|
|||||||
*
|
*
|
||||||
* Precondition: $(D_INLINECODE array.length > 0).
|
* Precondition: $(D_INLINECODE array.length > 0).
|
||||||
*/
|
*/
|
||||||
@property ref T front(T)(T[] array)
|
@property ref inout(T) front(T)(return scope inout(T)[] array)
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(array.length > 0);
|
assert(array.length > 0);
|
||||||
@ -94,7 +94,7 @@ do
|
|||||||
*
|
*
|
||||||
* Precondition: $(D_INLINECODE array.length > 0).
|
* Precondition: $(D_INLINECODE array.length > 0).
|
||||||
*/
|
*/
|
||||||
@property ref T back(T)(T[] array)
|
@property ref inout(T) back(T)(return scope inout(T)[] array)
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(array.length > 0);
|
assert(array.length > 0);
|
||||||
@ -133,7 +133,7 @@ do
|
|||||||
*
|
*
|
||||||
* Precondition: $(D_INLINECODE array.length > 0).
|
* Precondition: $(D_INLINECODE array.length > 0).
|
||||||
*/
|
*/
|
||||||
void popFront(T)(ref T[] array)
|
void popFront(T)(scope ref inout(T)[] array)
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(array.length > 0);
|
assert(array.length > 0);
|
||||||
@ -144,7 +144,7 @@ do
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
void popBack(T)(ref T[] array)
|
void popBack(T)(scope ref inout(T)[] array)
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(array.length > 0);
|
assert(array.length > 0);
|
||||||
@ -178,7 +178,7 @@ do
|
|||||||
* Returns: $(D_KEYWORD true) if $(D_PARAM array) has no elements,
|
* Returns: $(D_KEYWORD true) if $(D_PARAM array) has no elements,
|
||||||
* $(D_KEYWORD false) otherwise.
|
* $(D_KEYWORD false) otherwise.
|
||||||
*/
|
*/
|
||||||
@property bool empty(T)(const T[] array)
|
@property bool empty(T)(scope const T[] array)
|
||||||
{
|
{
|
||||||
return array.length == 0;
|
return array.length == 0;
|
||||||
}
|
}
|
||||||
@ -203,7 +203,7 @@ do
|
|||||||
*
|
*
|
||||||
* Returns: A copy of the slice $(D_PARAM array).
|
* Returns: A copy of the slice $(D_PARAM array).
|
||||||
*/
|
*/
|
||||||
@property T[] save(T)(T[] array)
|
@property inout(T)[] save(T)(return scope inout(T)[] array)
|
||||||
{
|
{
|
||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,19 @@ import tanya.meta.trait;
|
|||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
import tanya.range.array;
|
import tanya.range.array;
|
||||||
|
|
||||||
|
version (unittest)
|
||||||
|
{
|
||||||
|
import tanya.test.stub;
|
||||||
|
|
||||||
|
private struct AssertPostblit
|
||||||
|
{
|
||||||
|
this(this) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
assert(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the element type of the range $(D_PARAM R).
|
* Returns the element type of the range $(D_PARAM R).
|
||||||
*
|
*
|
||||||
@ -73,10 +86,7 @@ template ElementType(R)
|
|||||||
*
|
*
|
||||||
* See_Also: $(D_PSYMBOL isInfinite).
|
* See_Also: $(D_PSYMBOL isInfinite).
|
||||||
*/
|
*/
|
||||||
template hasLength(R)
|
enum bool hasLength(R) = is(ReturnType!((R r) => r.length) == size_t);
|
||||||
{
|
|
||||||
enum bool hasLength = is(ReturnType!((R r) => r.length) == size_t);
|
|
||||||
}
|
|
||||||
|
|
||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
@ -294,34 +304,6 @@ template hasSlicing(R)
|
|||||||
static assert(hasSlicing!D);
|
static assert(hasSlicing!D);
|
||||||
}
|
}
|
||||||
|
|
||||||
version (unittest)
|
|
||||||
{
|
|
||||||
mixin template InputRangeStub()
|
|
||||||
{
|
|
||||||
@property int front() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@property bool empty() const @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
void popFront() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
mixin template BidirectionalRangeStub()
|
|
||||||
{
|
|
||||||
@property int back() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
void popBack() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private template isDynamicArrayRange(R)
|
private template isDynamicArrayRange(R)
|
||||||
{
|
{
|
||||||
static if (is(R E : E[]))
|
static if (is(R E : E[]))
|
||||||
@ -334,6 +316,26 @@ private template isDynamicArrayRange(R)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private struct Primitive(Candidate, string primitive)
|
||||||
|
{
|
||||||
|
auto ref returnType(Candidate candidate)
|
||||||
|
{
|
||||||
|
mixin("return candidate." ~ primitive ~ ";");
|
||||||
|
}
|
||||||
|
|
||||||
|
alias ReturnType = .ReturnType!returnType;
|
||||||
|
static assert(!is(ReturnType == void));
|
||||||
|
|
||||||
|
enum uint attributes = functionAttributes!returnType
|
||||||
|
& FunctionAttribute.ref_;
|
||||||
|
|
||||||
|
bool opEquals(That)(That) const
|
||||||
|
{
|
||||||
|
return is(ReturnType == That.ReturnType)
|
||||||
|
&& attributes == That.attributes;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether $(D_PARAM R) is an input range.
|
* Determines whether $(D_PARAM R) is an input range.
|
||||||
*
|
*
|
||||||
@ -353,11 +355,11 @@ private template isDynamicArrayRange(R)
|
|||||||
*/
|
*/
|
||||||
template isInputRange(R)
|
template isInputRange(R)
|
||||||
{
|
{
|
||||||
static if (is(ReturnType!((R r) => r.front()) U)
|
static if (is(Primitive!(R, "front()") U)
|
||||||
&& is(ReturnType!((R r) => r.empty) == bool)
|
&& is(ReturnType!((R r) => r.empty) == bool)
|
||||||
&& is(typeof(R.popFront())))
|
&& is(typeof(R.popFront())))
|
||||||
{
|
{
|
||||||
enum bool isInputRange = !is(U == void);
|
enum bool isInputRange = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -373,10 +375,12 @@ template isInputRange(R)
|
|||||||
void popFront() @nogc nothrow pure @safe
|
void popFront() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
int front() @nogc nothrow pure @safe
|
int front() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool empty() const @nogc nothrow pure @safe
|
bool empty() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
@ -391,13 +395,8 @@ template isInputRange(R)
|
|||||||
{
|
{
|
||||||
static struct Range1(T)
|
static struct Range1(T)
|
||||||
{
|
{
|
||||||
void popFront()
|
mixin InputRangeStub;
|
||||||
{
|
|
||||||
}
|
|
||||||
int front()
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
T empty() const
|
T empty() const
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
@ -408,50 +407,56 @@ template isInputRange(R)
|
|||||||
|
|
||||||
static struct Range2
|
static struct Range2
|
||||||
{
|
{
|
||||||
|
mixin InputRangeStub;
|
||||||
|
|
||||||
int popFront() @nogc nothrow pure @safe
|
int popFront() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 100;
|
return 100;
|
||||||
}
|
}
|
||||||
int front() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 100;
|
|
||||||
}
|
|
||||||
bool empty() const @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(isInputRange!Range2);
|
static assert(isInputRange!Range2);
|
||||||
|
|
||||||
static struct Range3
|
static struct Range3
|
||||||
{
|
{
|
||||||
void popFront() @nogc nothrow pure @safe
|
mixin InputRangeStub;
|
||||||
{
|
|
||||||
}
|
|
||||||
void front() @nogc nothrow pure @safe
|
void front() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
bool empty() const @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(!isInputRange!Range3);
|
static assert(!isInputRange!Range3);
|
||||||
|
|
||||||
static struct Range4
|
static struct Range4
|
||||||
{
|
{
|
||||||
void popFront() @nogc nothrow pure @safe
|
mixin InputRangeStub;
|
||||||
{
|
|
||||||
}
|
|
||||||
int front() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
enum bool empty = false;
|
enum bool empty = false;
|
||||||
}
|
}
|
||||||
static assert(isInputRange!Range4);
|
static assert(isInputRange!Range4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ranges with non-copyable elements can be input ranges
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
@WithLvalueElements
|
||||||
|
static struct R
|
||||||
|
{
|
||||||
|
mixin InputRangeStub!NonCopyable;
|
||||||
|
}
|
||||||
|
static assert(isInputRange!R);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ranges with const non-copyable elements can be input ranges
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
@WithLvalueElements
|
||||||
|
static struct R
|
||||||
|
{
|
||||||
|
mixin InputRangeStub!(const(NonCopyable));
|
||||||
|
}
|
||||||
|
static assert(isInputRange!R);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether $(D_PARAM R) is a forward range.
|
* Determines whether $(D_PARAM R) is a forward range.
|
||||||
*
|
*
|
||||||
@ -489,14 +494,17 @@ template isForwardRange(R)
|
|||||||
void popFront() @nogc nothrow pure @safe
|
void popFront() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
int front() @nogc nothrow pure @safe
|
int front() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool empty() const @nogc nothrow pure @safe
|
bool empty() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
typeof(this) save() @nogc nothrow pure @safe
|
typeof(this) save() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return this;
|
return this;
|
||||||
@ -515,6 +523,7 @@ template isForwardRange(R)
|
|||||||
static struct Range2
|
static struct Range2
|
||||||
{
|
{
|
||||||
mixin InputRangeStub;
|
mixin InputRangeStub;
|
||||||
|
|
||||||
Range1 save() @nogc nothrow pure @safe
|
Range1 save() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return Range1();
|
return Range1();
|
||||||
@ -525,6 +534,7 @@ template isForwardRange(R)
|
|||||||
static struct Range3
|
static struct Range3
|
||||||
{
|
{
|
||||||
mixin InputRangeStub;
|
mixin InputRangeStub;
|
||||||
|
|
||||||
const(typeof(this)) save() const @nogc nothrow pure @safe
|
const(typeof(this)) save() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return this;
|
return this;
|
||||||
@ -553,11 +563,11 @@ template isForwardRange(R)
|
|||||||
*/
|
*/
|
||||||
template isBidirectionalRange(R)
|
template isBidirectionalRange(R)
|
||||||
{
|
{
|
||||||
static if (is(ReturnType!((R r) => r.back()) U)
|
static if (is(Primitive!(R, "back()") U)
|
||||||
&& is(typeof(R.popBack())))
|
&& is(typeof(R.popBack())))
|
||||||
{
|
{
|
||||||
enum bool isBidirectionalRange = isForwardRange!R
|
enum bool isBidirectionalRange = isForwardRange!R
|
||||||
&& is(U == ReturnType!((R r) => r.front()));
|
&& (U() == Primitive!(R, "front()")());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -573,21 +583,26 @@ template isBidirectionalRange(R)
|
|||||||
void popFront() @nogc nothrow pure @safe
|
void popFront() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void popBack() @nogc nothrow pure @safe
|
void popBack() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@property int front() @nogc nothrow pure @safe
|
@property int front() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@property int back() @nogc nothrow pure @safe
|
@property int back() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool empty() const @nogc nothrow pure @safe
|
bool empty() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Range save() @nogc nothrow pure @safe
|
Range save() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return this;
|
return this;
|
||||||
@ -602,33 +617,33 @@ template isBidirectionalRange(R)
|
|||||||
{
|
{
|
||||||
static struct Range(T, U)
|
static struct Range(T, U)
|
||||||
{
|
{
|
||||||
void popFront() @nogc nothrow pure @safe
|
mixin BidirectionalRangeStub;
|
||||||
{
|
|
||||||
}
|
|
||||||
void popBack() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@property T front() @nogc nothrow pure @safe
|
@property T front() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return T.init;
|
return T.init;
|
||||||
}
|
}
|
||||||
|
|
||||||
@property U back() @nogc nothrow pure @safe
|
@property U back() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return U.init;
|
return U.init;
|
||||||
}
|
}
|
||||||
bool empty() const @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
Range save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(!isBidirectionalRange!(Range!(int, uint)));
|
static assert(!isBidirectionalRange!(Range!(int, uint)));
|
||||||
static assert(!isBidirectionalRange!(Range!(int, const int)));
|
static assert(!isBidirectionalRange!(Range!(int, const int)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ranges with non-copyable elements can be bidirectional ranges
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
@WithLvalueElements
|
||||||
|
static struct R
|
||||||
|
{
|
||||||
|
mixin BidirectionalRangeStub!NonCopyable;
|
||||||
|
}
|
||||||
|
static assert(isBidirectionalRange!R);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether $(D_PARAM R) is a random-access range.
|
* Determines whether $(D_PARAM R) is a random-access range.
|
||||||
*
|
*
|
||||||
@ -654,11 +669,11 @@ template isBidirectionalRange(R)
|
|||||||
*/
|
*/
|
||||||
template isRandomAccessRange(R)
|
template isRandomAccessRange(R)
|
||||||
{
|
{
|
||||||
static if (is(ReturnType!((R r) => r.opIndex(size_t.init)) U))
|
static if (is(Primitive!(R, "opIndex(size_t.init)") U))
|
||||||
{
|
{
|
||||||
enum bool isRandomAccessRange = isInputRange!R
|
enum bool isRandomAccessRange = isInputRange!R
|
||||||
&& (hasLength!R || isInfinite!R)
|
&& (hasLength!R || isInfinite!R)
|
||||||
&& is(U == ReturnType!((R r) => r.front()));
|
&& (U() == Primitive!(R, "front()")());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -674,29 +689,22 @@ template isRandomAccessRange(R)
|
|||||||
void popFront() @nogc nothrow pure @safe
|
void popFront() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
void popBack() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@property int front() @nogc nothrow pure @safe
|
@property int front() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@property int back() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
bool empty() const @nogc nothrow pure @safe
|
bool empty() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
typeof(this) save() @nogc nothrow pure @safe
|
|
||||||
{
|
int opIndex(size_t) @nogc nothrow pure @safe
|
||||||
return this;
|
|
||||||
}
|
|
||||||
int opIndex(const size_t pos) @nogc nothrow pure @safe
|
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t length() const @nogc nothrow pure @safe
|
size_t length() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
@ -711,15 +719,14 @@ template isRandomAccessRange(R)
|
|||||||
void popFront() @nogc nothrow pure @safe
|
void popFront() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@property int front() @nogc nothrow pure @safe
|
@property int front() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum bool empty = false;
|
enum bool empty = false;
|
||||||
typeof(this) save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
int opIndex(const size_t pos) @nogc nothrow pure @safe
|
int opIndex(const size_t pos) @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
@ -732,76 +739,43 @@ template isRandomAccessRange(R)
|
|||||||
{
|
{
|
||||||
static struct Range1
|
static struct Range1
|
||||||
{
|
{
|
||||||
mixin InputRangeStub;
|
|
||||||
mixin BidirectionalRangeStub;
|
mixin BidirectionalRangeStub;
|
||||||
|
mixin RandomAccessRangeStub;
|
||||||
typeof(this) save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
int opIndex(const size_t pos) @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(!isRandomAccessRange!Range1);
|
static assert(!isRandomAccessRange!Range1);
|
||||||
|
|
||||||
|
@Length
|
||||||
static struct Range2(Args...)
|
static struct Range2(Args...)
|
||||||
{
|
{
|
||||||
mixin InputRangeStub;
|
|
||||||
mixin BidirectionalRangeStub;
|
mixin BidirectionalRangeStub;
|
||||||
|
|
||||||
typeof(this) save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
int opIndex(Args) @nogc nothrow pure @safe
|
int opIndex(Args) @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
size_t length() const @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(isRandomAccessRange!(Range2!size_t));
|
static assert(isRandomAccessRange!(Range2!size_t));
|
||||||
static assert(!isRandomAccessRange!(Range2!()));
|
static assert(!isRandomAccessRange!(Range2!()));
|
||||||
static assert(!isRandomAccessRange!(Range2!(size_t, size_t)));
|
static assert(!isRandomAccessRange!(Range2!(size_t, size_t)));
|
||||||
|
|
||||||
|
@Length
|
||||||
static struct Range3
|
static struct Range3
|
||||||
{
|
{
|
||||||
mixin InputRangeStub;
|
|
||||||
mixin BidirectionalRangeStub;
|
mixin BidirectionalRangeStub;
|
||||||
|
|
||||||
typeof(this) save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
int opIndex(const size_t pos1, const size_t pos2 = 0)
|
int opIndex(const size_t pos1, const size_t pos2 = 0)
|
||||||
@nogc nothrow pure @safe
|
@nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
size_t length() const @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(isRandomAccessRange!Range3);
|
static assert(isRandomAccessRange!Range3);
|
||||||
|
|
||||||
static struct Range4
|
static struct Range4
|
||||||
{
|
{
|
||||||
mixin InputRangeStub;
|
|
||||||
mixin BidirectionalRangeStub;
|
mixin BidirectionalRangeStub;
|
||||||
|
mixin RandomAccessRangeStub;
|
||||||
|
|
||||||
typeof(this) save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
int opIndex(const size_t pos1) @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
size_t opDollar() const @nogc nothrow pure @safe
|
size_t opDollar() const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
@ -810,20 +784,42 @@ template isRandomAccessRange(R)
|
|||||||
static assert(!isRandomAccessRange!Range4);
|
static assert(!isRandomAccessRange!Range4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ranges with non-copyable elements can be random-access ranges
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
@WithLvalueElements @Infinite
|
||||||
|
static struct R
|
||||||
|
{
|
||||||
|
mixin RandomAccessRangeStub!NonCopyable;
|
||||||
|
}
|
||||||
|
static assert(isRandomAccessRange!R);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Puts $(D_PARAM e) into the $(D_PARAM range).
|
* Puts $(D_PARAM e) into the $(D_PARAM range).
|
||||||
*
|
*
|
||||||
* $(D_PSYMBOL R) should be an output range for $(D_PARAM E).
|
* $(D_PSYMBOL R) should be an output range for $(D_PARAM E). It doesn't mean
|
||||||
*
|
* that everything $(D_PARAM range) is an output range for can be put into it,
|
||||||
* $(D_PARAM range) is advanced after putting an element into it if all of the
|
* but only if one of the following conditions is met:
|
||||||
* following conditions are met:
|
|
||||||
*
|
*
|
||||||
* $(OL
|
* $(OL
|
||||||
* $(LI $(D_PSYMBOL R) is an input range)
|
* $(LI $(D_PARAM R) defines a `put`-method for $(D_PARAM E))
|
||||||
* $(LI $(D_PSYMBOL R) doesn't define a `put`-method)
|
|
||||||
* $(LI $(D_PARAM e) can be assigned to $(D_INLINECODE range.front))
|
* $(LI $(D_PARAM e) can be assigned to $(D_INLINECODE range.front))
|
||||||
|
* $(LI $(D_PARAM e) can be put into $(D_PARAM range) using
|
||||||
|
* $(D_INLINECODE range(e))
|
||||||
|
* )
|
||||||
* )
|
* )
|
||||||
*
|
*
|
||||||
|
* The method to put $(D_PARAM e) into $(D_PARAM range) is chosen based on the
|
||||||
|
* order specified above.
|
||||||
|
*
|
||||||
|
* If $(D_PARAM E) is an input range and $(D_PARAM R) is an output range for
|
||||||
|
* its elements as well, use $(D_PSYMBOL tanya.algorithm.mutation.copy)
|
||||||
|
* instead.
|
||||||
|
*
|
||||||
|
* $(D_PARAM range) is advanced after putting an element into it if it is an
|
||||||
|
* input range that doesn't define a `put`-method.
|
||||||
|
*
|
||||||
* Params:
|
* Params:
|
||||||
* R = Target range type.
|
* R = Target range type.
|
||||||
* E = Source element type.
|
* E = Source element type.
|
||||||
@ -849,15 +845,6 @@ void put(R, E)(ref R range, auto ref E e)
|
|||||||
{
|
{
|
||||||
range(e);
|
range(e);
|
||||||
}
|
}
|
||||||
else static if (isInputRange!E)
|
|
||||||
{
|
|
||||||
pragma(msg, "Putting an input range into an output range is "
|
|
||||||
~ "deprecated. Use tanya.algorithm.mutation.copy instead");
|
|
||||||
for (; !e.empty; e.popFront())
|
|
||||||
{
|
|
||||||
put(range, e.front);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static assert(false, R.stringof ~ " is not an output range for "
|
static assert(false, R.stringof ~ " is not an output range for "
|
||||||
@ -1095,28 +1082,20 @@ template isInfinite(R)
|
|||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
|
@Infinite
|
||||||
static struct StaticConstRange
|
static struct StaticConstRange
|
||||||
{
|
{
|
||||||
void popFront() @nogc nothrow pure @safe
|
mixin InputRangeStub;
|
||||||
{
|
|
||||||
}
|
|
||||||
@property int front() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
static bool empty = false;
|
static bool empty = false;
|
||||||
}
|
}
|
||||||
static assert(!isInfinite!StaticConstRange);
|
static assert(!isInfinite!StaticConstRange);
|
||||||
|
|
||||||
|
@Infinite
|
||||||
static struct TrueRange
|
static struct TrueRange
|
||||||
{
|
{
|
||||||
void popFront() @nogc nothrow pure @safe
|
mixin InputRangeStub;
|
||||||
{
|
|
||||||
}
|
|
||||||
@property int front() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
static const bool empty = true;
|
static const bool empty = true;
|
||||||
}
|
}
|
||||||
static assert(!isInfinite!TrueRange);
|
static assert(!isInfinite!TrueRange);
|
||||||
@ -1346,15 +1325,12 @@ if (isBidirectionalRange!R)
|
|||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
|
@Infinite
|
||||||
static struct InfiniteRange
|
static struct InfiniteRange
|
||||||
{
|
{
|
||||||
|
mixin ForwardRangeStub;
|
||||||
private int i;
|
private int i;
|
||||||
|
|
||||||
InfiniteRange save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
void popFront() @nogc nothrow pure @safe
|
void popFront() @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
++this.i;
|
++this.i;
|
||||||
@ -1374,8 +1350,6 @@ if (isBidirectionalRange!R)
|
|||||||
{
|
{
|
||||||
return this.i;
|
return this.i;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum bool empty = false;
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
InfiniteRange range;
|
InfiniteRange range;
|
||||||
@ -1495,44 +1469,19 @@ if (isInputRange!R)
|
|||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
static struct Element
|
|
||||||
{
|
|
||||||
this(this) @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
assert(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Returns its elements by reference.
|
// Returns its elements by reference.
|
||||||
|
@Infinite @WithLvalueElements
|
||||||
static struct R1
|
static struct R1
|
||||||
{
|
{
|
||||||
Element element;
|
mixin InputRangeStub!AssertPostblit;
|
||||||
enum bool empty = false;
|
|
||||||
|
|
||||||
ref Element front() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return element;
|
|
||||||
}
|
|
||||||
|
|
||||||
void popFront() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(is(typeof(moveFront(R1()))));
|
static assert(is(typeof(moveFront(R1()))));
|
||||||
|
|
||||||
// Returns elements with a postblit constructor by value. moveFront fails.
|
// Returns elements with a postblit constructor by value. moveFront fails.
|
||||||
|
@Infinite
|
||||||
static struct R2
|
static struct R2
|
||||||
{
|
{
|
||||||
enum bool empty = false;
|
mixin InputRangeStub!AssertPostblit;
|
||||||
|
|
||||||
Element front() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return Element();
|
|
||||||
}
|
|
||||||
|
|
||||||
void popFront() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(!is(typeof(moveFront(R2()))));
|
static assert(!is(typeof(moveFront(R2()))));
|
||||||
}
|
}
|
||||||
@ -1580,58 +1529,19 @@ if (isBidirectionalRange!R)
|
|||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
static struct Element
|
|
||||||
{
|
|
||||||
this(this) @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
assert(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Returns its elements by reference.
|
// Returns its elements by reference.
|
||||||
|
@Infinite @WithLvalueElements
|
||||||
static struct R1
|
static struct R1
|
||||||
{
|
{
|
||||||
Element element;
|
mixin BidirectionalRangeStub!AssertPostblit;
|
||||||
enum bool empty = false;
|
|
||||||
|
|
||||||
ref Element back() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return element;
|
|
||||||
}
|
|
||||||
alias front = back;
|
|
||||||
|
|
||||||
void popBack() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
alias popFront = popBack;
|
|
||||||
|
|
||||||
R1 save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(is(typeof(moveBack(R1()))));
|
static assert(is(typeof(moveBack(R1()))));
|
||||||
|
|
||||||
// Returns elements with a postblit constructor by value. moveBack fails.
|
// Returns elements with a postblit constructor by value. moveBack fails.
|
||||||
|
@Infinite
|
||||||
static struct R2
|
static struct R2
|
||||||
{
|
{
|
||||||
enum bool empty = false;
|
mixin BidirectionalRangeStub!AssertPostblit;
|
||||||
|
|
||||||
Element back() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return Element();
|
|
||||||
}
|
|
||||||
alias front = back;
|
|
||||||
|
|
||||||
void popBack() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
alias popFront = popBack;
|
|
||||||
|
|
||||||
R2 save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(!is(typeof(moveBack(R2()))));
|
static assert(!is(typeof(moveBack(R2()))));
|
||||||
}
|
}
|
||||||
@ -1678,54 +1588,19 @@ if (isRandomAccessRange!R)
|
|||||||
|
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
static struct Element
|
|
||||||
{
|
|
||||||
this(this) @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
assert(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Returns its elements by reference.
|
// Returns its elements by reference.
|
||||||
|
@Infinite @WithLvalueElements
|
||||||
static struct R1
|
static struct R1
|
||||||
{
|
{
|
||||||
Element element;
|
mixin RandomAccessRangeStub!AssertPostblit;
|
||||||
enum bool empty = false;
|
|
||||||
|
|
||||||
ref Element front() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return element;
|
|
||||||
}
|
|
||||||
|
|
||||||
void popFront() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
ref Element opIndex(size_t)
|
|
||||||
{
|
|
||||||
return element;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(is(typeof(moveAt(R1(), 0))));
|
static assert(is(typeof(moveAt(R1(), 0))));
|
||||||
|
|
||||||
// Returns elements with a postblit constructor by value. moveAt fails.
|
// Returns elements with a postblit constructor by value. moveAt fails.
|
||||||
|
@Infinite
|
||||||
static struct R2
|
static struct R2
|
||||||
{
|
{
|
||||||
enum bool empty = false;
|
mixin RandomAccessRangeStub!AssertPostblit;
|
||||||
|
|
||||||
Element front() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return Element();
|
|
||||||
}
|
|
||||||
|
|
||||||
void popFront() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
Element opIndex() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return Element();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
static assert(!is(typeof(moveAt(R2(), 0))));
|
static assert(!is(typeof(moveAt(R2(), 0))));
|
||||||
}
|
}
|
||||||
@ -1826,7 +1701,7 @@ template hasMobileElements(R)
|
|||||||
*/
|
*/
|
||||||
template hasLvalueElements(R)
|
template hasLvalueElements(R)
|
||||||
{
|
{
|
||||||
private alias refDg = (ref ElementType!R e) => e;
|
private alias refDg = (ref ElementType!R e) => &e;
|
||||||
|
|
||||||
static if (isRandomAccessRange!R)
|
static if (isRandomAccessRange!R)
|
||||||
{
|
{
|
||||||
@ -1884,6 +1759,12 @@ template hasLvalueElements(R)
|
|||||||
static assert(hasLvalueElements!R2);
|
static assert(hasLvalueElements!R2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Works with non-copyable elements
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(hasLvalueElements!(NonCopyable[]));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether the elements of $(D_PARAM R) are assignable.
|
* Determines whether the elements of $(D_PARAM R) are assignable.
|
||||||
*
|
*
|
||||||
@ -2039,3 +1920,41 @@ template hasSwappableElements(R)
|
|||||||
}
|
}
|
||||||
static assert(!hasSwappableElements!R2);
|
static assert(!hasSwappableElements!R2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether `r1.front` and `r2.front` point to the same element.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* r1 = First range.
|
||||||
|
* r2 = Second range.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if $(D_PARAM r1) and $(D_PARAM r2) have the same
|
||||||
|
* head, $(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
bool sameHead(Range)(Range r1, Range r2) @trusted
|
||||||
|
if (isInputRange!Range && hasLvalueElements!Range)
|
||||||
|
{
|
||||||
|
return &r1.front is &r2.front;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
const int[2] array;
|
||||||
|
|
||||||
|
auto r1 = array[];
|
||||||
|
auto r2 = array[];
|
||||||
|
|
||||||
|
assert(sameHead(r1, r2));
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
const int[2] array;
|
||||||
|
|
||||||
|
auto r1 = array[];
|
||||||
|
auto r2 = array[1 .. $];
|
||||||
|
|
||||||
|
assert(!sameHead(r1, r2));
|
||||||
|
}
|
||||||
|
@ -15,3 +15,4 @@
|
|||||||
module tanya.test;
|
module tanya.test;
|
||||||
|
|
||||||
public import tanya.test.assertion;
|
public import tanya.test.assertion;
|
||||||
|
public import tanya.test.stub;
|
||||||
|
373
source/tanya/test/stub.d
Normal file
373
source/tanya/test/stub.d
Normal file
@ -0,0 +1,373 @@
|
|||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Range and generic type generators.
|
||||||
|
*
|
||||||
|
* Copyright: Eugene Wissner 2018.
|
||||||
|
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
||||||
|
* Mozilla Public License, v. 2.0).
|
||||||
|
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
||||||
|
* Source: $(LINK2 https://github.com/caraus-ecms/tanya/blob/master/source/tanya/test/stub.d,
|
||||||
|
* tanya/test/stub.d)
|
||||||
|
*/
|
||||||
|
module tanya.test.stub;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attribute signalizing that the generated range should contain the given
|
||||||
|
* number of elements.
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL Count) should be always specified with some value and not as a
|
||||||
|
* type, so $(D_INLINECODE Count(1)) instead just $(D_INLINECODE Count),
|
||||||
|
* otherwise you can just omit $(D_PSYMBOL Count) and it will default to 0.
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL Count) doesn't generate `.length` property - use
|
||||||
|
* $(D_PSYMBOL Length) for that.
|
||||||
|
*
|
||||||
|
* If neither $(D_PSYMBOL Length) nor $(D_PSYMBOL Infinite) is given,
|
||||||
|
* $(D_ILNINECODE Count(0)) is assumed.
|
||||||
|
*
|
||||||
|
* This attribute conflicts with $(D_PSYMBOL Infinite) and $(D_PSYMBOL Length).
|
||||||
|
*/
|
||||||
|
struct Count
|
||||||
|
{
|
||||||
|
/// Original range length.
|
||||||
|
size_t count = 0;
|
||||||
|
|
||||||
|
@disable this();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs the attribute with the given length.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* count = Original range length.
|
||||||
|
*/
|
||||||
|
this(size_t count) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
this.count = count;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attribute signalizing that the generated range should be infinite.
|
||||||
|
*
|
||||||
|
* This attribute conflicts with $(D_PSYMBOL Count) and $(D_PSYMBOL Length).
|
||||||
|
*/
|
||||||
|
struct Infinite
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates `.length` property for the range.
|
||||||
|
*
|
||||||
|
* The length of the range can be specified as a constructor argument,
|
||||||
|
* otherwise it is 0.
|
||||||
|
*
|
||||||
|
* This attribute conflicts with $(D_PSYMBOL Count) and $(D_PSYMBOL Infinite).
|
||||||
|
*/
|
||||||
|
struct Length
|
||||||
|
{
|
||||||
|
/// Original range length.
|
||||||
|
size_t length = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attribute signalizing that the generated range should return values by
|
||||||
|
* reference.
|
||||||
|
*
|
||||||
|
* This atribute affects the return values of `.front`, `.back` and `[]`.
|
||||||
|
*/
|
||||||
|
struct WithLvalueElements
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates an input range.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* E = Element type.
|
||||||
|
*/
|
||||||
|
mixin template InputRangeStub(E = int)
|
||||||
|
{
|
||||||
|
import tanya.meta.metafunction : Alias;
|
||||||
|
import tanya.meta.trait : evalUDA, getUDAs, hasUDA;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Aliases for the attribute lookups to access them faster
|
||||||
|
*/
|
||||||
|
private enum bool infinite = hasUDA!(typeof(this), Infinite);
|
||||||
|
private enum bool withLvalueElements = hasUDA!(typeof(this),
|
||||||
|
WithLvalueElements);
|
||||||
|
private alias Count = getUDAs!(typeof(this), .Count);
|
||||||
|
private alias Length = getUDAs!(typeof(this), .Length);
|
||||||
|
|
||||||
|
static if (Count.length != 0)
|
||||||
|
{
|
||||||
|
private enum size_t count = Count[0].count;
|
||||||
|
|
||||||
|
static assert (!infinite,
|
||||||
|
"Range cannot have count and be infinite at the same time");
|
||||||
|
static assert (Length.length == 0,
|
||||||
|
"Range cannot have count and length at the same time");
|
||||||
|
}
|
||||||
|
else static if (Length.length != 0)
|
||||||
|
{
|
||||||
|
private enum size_t count = evalUDA!(Length[0]).length;
|
||||||
|
|
||||||
|
static assert (!infinite,
|
||||||
|
"Range cannot have length and be infinite at the same time");
|
||||||
|
}
|
||||||
|
else static if (!infinite)
|
||||||
|
{
|
||||||
|
private enum size_t count = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Member generation
|
||||||
|
*/
|
||||||
|
static if (infinite)
|
||||||
|
{
|
||||||
|
enum bool empty = false;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
private size_t length_ = count;
|
||||||
|
|
||||||
|
@property bool empty() const @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.length_ == 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (withLvalueElements)
|
||||||
|
{
|
||||||
|
private E* element; // Pointer to enable range copying in save()
|
||||||
|
}
|
||||||
|
|
||||||
|
void popFront() @nogc nothrow pure @safe
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
static if (!infinite)
|
||||||
|
{
|
||||||
|
--this.length_;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (withLvalueElements)
|
||||||
|
{
|
||||||
|
ref E front() @nogc nothrow pure @safe
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
return *this.element;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
E front() @nogc nothrow pure @safe
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
return E.init;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (Length.length != 0)
|
||||||
|
{
|
||||||
|
size_t length() const @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.length_;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a forward range.
|
||||||
|
*
|
||||||
|
* This mixin includes input range primitives as well, but can be combined with
|
||||||
|
* $(D_PSYMBOL RandomAccessRangeStub).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* E = Element type.
|
||||||
|
*/
|
||||||
|
mixin template ForwardRangeStub(E = int)
|
||||||
|
{
|
||||||
|
static if (!is(typeof(this.InputRangeMixin) == void))
|
||||||
|
{
|
||||||
|
mixin InputRangeStub!E InputRangeMixin;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto save() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a bidirectional range.
|
||||||
|
*
|
||||||
|
* This mixin includes forward range primitives as well, but can be combined with
|
||||||
|
* $(D_PSYMBOL RandomAccessRangeStub).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* E = Element type.
|
||||||
|
*/
|
||||||
|
mixin template BidirectionalRangeStub(E = int)
|
||||||
|
{
|
||||||
|
mixin ForwardRangeStub!E;
|
||||||
|
|
||||||
|
void popBack() @nogc nothrow pure @safe
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
static if (!infinite)
|
||||||
|
{
|
||||||
|
--this.length_;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (withLvalueElements)
|
||||||
|
{
|
||||||
|
ref E back() @nogc nothrow pure @safe
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
return *this.element;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
E back() @nogc nothrow pure @safe
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
return E.init;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a random-access range.
|
||||||
|
*
|
||||||
|
* This mixin includes input range primitives as well, but can be combined with
|
||||||
|
* $(D_PSYMBOL ForwardRangeStub) or $(D_PSYMBOL BidirectionalRangeStub).
|
||||||
|
*
|
||||||
|
* Note that a random-access range also requires $(D_PSYMBOL Length) or
|
||||||
|
* $(D_PARAM Infinite) by definition.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* E = Element type.
|
||||||
|
*/
|
||||||
|
mixin template RandomAccessRangeStub(E = int)
|
||||||
|
{
|
||||||
|
static if (!is(typeof(this.InputRangeMixin) == void))
|
||||||
|
{
|
||||||
|
mixin InputRangeStub!E InputRangeMixin;
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (withLvalueElements)
|
||||||
|
{
|
||||||
|
ref E opIndex(size_t) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return *this.element;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
E opIndex(size_t) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return E.init;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Struct with a disabled postblit constructor.
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL NonCopyable) can be used as an attribute for
|
||||||
|
* $(D_PSYMBOL StructStub) or as a standalone type.
|
||||||
|
*/
|
||||||
|
struct NonCopyable
|
||||||
|
{
|
||||||
|
@disable this(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Struct with an elaborate destructor.
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL WithDtor) can be used as an attribute for
|
||||||
|
* $(D_PSYMBOL StructStub) or as a standalone type.
|
||||||
|
*
|
||||||
|
* When used as a standalone object the constructor of $(D_PSYMBOL WithDtor)
|
||||||
|
* accepts an additional `counter` argument, which is incremented by the
|
||||||
|
* destructor. $(D_PSYMBOL WithDtor) stores a pointer to the passed variable,
|
||||||
|
* so the variable can be investigated after the struct isn't available
|
||||||
|
* anymore.
|
||||||
|
*/
|
||||||
|
struct WithDtor
|
||||||
|
{
|
||||||
|
size_t* counter;
|
||||||
|
|
||||||
|
this(ref size_t counter) @nogc nothrow pure @trusted
|
||||||
|
{
|
||||||
|
this.counter = &counter;
|
||||||
|
}
|
||||||
|
|
||||||
|
~this() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
if (this.counter !is null)
|
||||||
|
{
|
||||||
|
++*this.counter;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Struct supporting hashing.
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL Hashable) can be used as an attribute for
|
||||||
|
* $(D_PSYMBOL StructStub) or as a standalone type.
|
||||||
|
*
|
||||||
|
* The constructor accepts an additional parameter, which is returned by the
|
||||||
|
* `toHash()`-function. `0U` is returned if no hash value is given.
|
||||||
|
*/
|
||||||
|
struct Hashable
|
||||||
|
{
|
||||||
|
size_t hash;
|
||||||
|
|
||||||
|
size_t toHash() const @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.hash;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a $(D_KEYWORD struct) with common functionality.
|
||||||
|
*
|
||||||
|
* To specify the needed functionality use user-defined attributes on the
|
||||||
|
* $(D_KEYWORD struct) $(D_PSYMBOL StructStub) is mixed in.
|
||||||
|
*
|
||||||
|
* Supported attributes are: $(D_PSYMBOL NonCopyable), $(D_PSYMBOL Hashable),
|
||||||
|
* $(D_PSYMBOL WithDtor).
|
||||||
|
*/
|
||||||
|
mixin template StructStub()
|
||||||
|
{
|
||||||
|
import tanya.meta.trait : evalUDA, getUDAs, hasUDA;
|
||||||
|
|
||||||
|
static if (hasUDA!(typeof(this), NonCopyable))
|
||||||
|
{
|
||||||
|
@disable this(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
private alias Hashable = getUDAs!(typeof(this), .Hashable);
|
||||||
|
static if (Hashable.length > 0)
|
||||||
|
{
|
||||||
|
size_t toHash() const @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return evalUDA!(Hashable[0]).hash;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (hasUDA!(typeof(this), WithDtor))
|
||||||
|
{
|
||||||
|
~this() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -8,7 +8,7 @@
|
|||||||
* This module contains templates that allow to build new types from the
|
* This module contains templates that allow to build new types from the
|
||||||
* available ones.
|
* available ones.
|
||||||
*
|
*
|
||||||
* Copyright: Eugene Wissner 2017-2018.
|
* Copyright: Eugene Wissner 2017-2019.
|
||||||
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
||||||
* Mozilla Public License, v. 2.0).
|
* Mozilla Public License, v. 2.0).
|
||||||
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
||||||
@ -18,10 +18,12 @@
|
|||||||
module tanya.typecons;
|
module tanya.typecons;
|
||||||
|
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
|
import tanya.conv;
|
||||||
import tanya.format;
|
import tanya.format;
|
||||||
import tanya.functional;
|
import tanya.functional;
|
||||||
import tanya.meta.metafunction;
|
import tanya.meta.metafunction;
|
||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* $(D_PSYMBOL Tuple) can store two or more heterogeneous objects.
|
* $(D_PSYMBOL Tuple) can store two or more heterogeneous objects.
|
||||||
@ -226,11 +228,15 @@ struct Option(T)
|
|||||||
* Precondition: `!isNothing`.
|
* Precondition: `!isNothing`.
|
||||||
*/
|
*/
|
||||||
@property ref inout(T) get() inout
|
@property ref inout(T) get() inout
|
||||||
in
|
in (!isNothing, "Option is nothing")
|
||||||
{
|
{
|
||||||
assert(!isNothing, "Option is nothing");
|
return this.value;
|
||||||
}
|
}
|
||||||
do
|
|
||||||
|
/// ditto
|
||||||
|
deprecated("Call Option.get explicitly instead of relying on alias this")
|
||||||
|
@property ref inout(T) get_() inout
|
||||||
|
in (!isNothing, "Option is nothing")
|
||||||
{
|
{
|
||||||
return this.value;
|
return this.value;
|
||||||
}
|
}
|
||||||
@ -366,8 +372,15 @@ struct Option(T)
|
|||||||
ref typeof(this) opAssign(U)(ref U that)
|
ref typeof(this) opAssign(U)(ref U that)
|
||||||
if (is(U == Option))
|
if (is(U == Option))
|
||||||
{
|
{
|
||||||
this.value = that;
|
if (that.isNothing)
|
||||||
this.isNothing_ = that.isNothing;
|
{
|
||||||
|
reset();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.value = that.get;
|
||||||
|
this.isNothing_ = false;
|
||||||
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -398,7 +411,7 @@ struct Option(T)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
alias get this;
|
alias get_ this;
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -454,29 +467,24 @@ struct Option(T)
|
|||||||
// Moving
|
// Moving
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
static struct NotCopyable
|
static assert(is(typeof(Option!NonCopyable(NonCopyable()))));
|
||||||
{
|
|
||||||
@disable this(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
static assert(is(typeof(Option!NotCopyable(NotCopyable()))));
|
|
||||||
// The value cannot be returned by reference because the default value
|
// The value cannot be returned by reference because the default value
|
||||||
// isn't passed by reference
|
// isn't passed by reference
|
||||||
static assert(!is(typeof(Option!DisabledPostblit().or(NotCopyable()))));
|
static assert(!is(typeof(Option!DisabledPostblit().or(NonCopyable()))));
|
||||||
{
|
{
|
||||||
NotCopyable notCopyable;
|
NonCopyable notCopyable;
|
||||||
static assert(is(typeof(Option!NotCopyable().or(notCopyable))));
|
static assert(is(typeof(Option!NonCopyable().or(notCopyable))));
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Option!NotCopyable option;
|
Option!NonCopyable option;
|
||||||
assert(option.isNothing);
|
assert(option.isNothing);
|
||||||
option = NotCopyable();
|
option = NonCopyable();
|
||||||
assert(!option.isNothing);
|
assert(!option.isNothing);
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Option!NotCopyable option;
|
Option!NonCopyable option;
|
||||||
assert(option.isNothing);
|
assert(option.isNothing);
|
||||||
option = Option!NotCopyable(NotCopyable());
|
option = Option!NonCopyable(NonCopyable());
|
||||||
assert(!option.isNothing);
|
assert(!option.isNothing);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -507,30 +515,25 @@ struct Option(T)
|
|||||||
// Returns default value
|
// Returns default value
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
{
|
int i = 5;
|
||||||
int i = 5;
|
assert(((ref e) => e)(Option!int().or(i)) == 5);
|
||||||
assert(((ref e) => e)(Option!int().or(i)) == 5);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Implements toHash() for nothing
|
// Implements toHash() for nothing
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
static struct ToHash
|
alias OptionT = Option!Hashable;
|
||||||
{
|
assert(OptionT().toHash() == 0U);
|
||||||
size_t toHash() const @nogc nothrow pure @safe
|
assert(OptionT(Hashable(1U)).toHash() == 1U);
|
||||||
{
|
}
|
||||||
return 1U;
|
|
||||||
}
|
// Can assign Option that is nothing
|
||||||
}
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
Option!ToHash toHash;
|
auto option1 = Option!int(5);
|
||||||
assert(toHash.toHash() == 0U);
|
Option!int option2;
|
||||||
}
|
option1 = option2;
|
||||||
{
|
assert(option1.isNothing);
|
||||||
auto toHash = Option!ToHash(ToHash());
|
|
||||||
assert(toHash.toHash() == 1U);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -559,3 +562,373 @@ Option!T option(T)()
|
|||||||
assert(option!int().isNothing);
|
assert(option!int().isNothing);
|
||||||
assert(option(5) == 5);
|
assert(option(5) == 5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type that can hold one of the types listed as its template parameters.
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL Variant) is a type similar to $(D_KEYWORD union), but
|
||||||
|
* $(D_PSYMBOL Variant) keeps track of the actually used type and throws an
|
||||||
|
* assertion error when trying to access an invalid type at runtime.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Specs = Types this $(D_SPYBMOL Variant) can hold.
|
||||||
|
*/
|
||||||
|
template Variant(Specs...)
|
||||||
|
if (isTypeTuple!Specs && NoDuplicates!Specs.length == Specs.length)
|
||||||
|
{
|
||||||
|
union AlignedUnion(Args...)
|
||||||
|
{
|
||||||
|
static if (Args.length > 0)
|
||||||
|
{
|
||||||
|
Args[0] value;
|
||||||
|
}
|
||||||
|
static if (Args.length > 1)
|
||||||
|
{
|
||||||
|
AlignedUnion!(Args[1 .. $]) rest;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private struct VariantAccessorInfo
|
||||||
|
{
|
||||||
|
string accessor;
|
||||||
|
ptrdiff_t tag;
|
||||||
|
}
|
||||||
|
|
||||||
|
template accessor(T, Union)
|
||||||
|
{
|
||||||
|
enum VariantAccessorInfo info = accessorImpl!(T, Union, 1);
|
||||||
|
enum accessor = VariantAccessorInfo("this.values" ~ info.accessor, info.tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
template accessorImpl(T, Union, size_t tag)
|
||||||
|
{
|
||||||
|
static if (is(T == typeof(Union.value)))
|
||||||
|
{
|
||||||
|
enum accessorImpl = VariantAccessorInfo(".value", tag);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
enum VariantAccessorInfo info = accessorImpl!(T, typeof(Union.rest), tag + 1);
|
||||||
|
enum accessorImpl = VariantAccessorInfo(".rest" ~ info.accessor, info.tag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Variant
|
||||||
|
{
|
||||||
|
/// Types can be present in this $(D_PSYMBOL Variant).
|
||||||
|
alias Types = Specs;
|
||||||
|
|
||||||
|
private ptrdiff_t tag = -1;
|
||||||
|
private AlignedUnion!Types values;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs this $(D_PSYMBOL Variant) with one of the types supported
|
||||||
|
* in it.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* T = Type of the initial value.
|
||||||
|
* value = Initial value.
|
||||||
|
*/
|
||||||
|
this(T)(ref T value)
|
||||||
|
if (canFind!(T, Types))
|
||||||
|
{
|
||||||
|
copyAssign!T(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
this(T)(T value)
|
||||||
|
if (canFind!(T, Types))
|
||||||
|
{
|
||||||
|
moveAssign!T(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
~this()
|
||||||
|
{
|
||||||
|
reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
this(this)
|
||||||
|
{
|
||||||
|
alias pred(U) = hasElaborateCopyConstructor!(U.Seq[1]);
|
||||||
|
static foreach (Type; Filter!(pred, Enumerate!Types))
|
||||||
|
{
|
||||||
|
if (this.tag == Type.Seq[0])
|
||||||
|
{
|
||||||
|
get!(Type.Seq[1]).__postblit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tells whether this $(D_PSYMBOL Variant) is initialized.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this $(D_PSYMBOL Variant) contains a
|
||||||
|
* value, $(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
bool hasValue() const
|
||||||
|
{
|
||||||
|
return this.tag != -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tells whether this $(D_PSYMBOL Variant) holds currently a value of
|
||||||
|
* type $(D_PARAM T).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* T = Examined type.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this $(D_PSYMBOL Variant) currently
|
||||||
|
* contains a value of type $(D_PARAM T), $(D_KEYWORD false)
|
||||||
|
* otherwise.
|
||||||
|
*/
|
||||||
|
bool peek(T)() const
|
||||||
|
if (canFind!(T, Types))
|
||||||
|
{
|
||||||
|
return this.tag == staticIndexOf!(T, Types);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the underlying value, assuming it is of the type $(D_PARAM T).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* T = Type of the value should be returned.
|
||||||
|
*
|
||||||
|
* Returns: The underyling value.
|
||||||
|
*
|
||||||
|
* Precondition: The $(D_PSYMBOL Variant) has a value.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL peek), $(D_PSYMBOL hasValue).
|
||||||
|
*/
|
||||||
|
ref inout(T) get(T)() inout
|
||||||
|
if (canFind!(T, Types))
|
||||||
|
in (this.tag == staticIndexOf!(T, Types), "Variant isn't initialized")
|
||||||
|
{
|
||||||
|
mixin("return " ~ accessor!(T, AlignedUnion!Types).accessor ~ ";");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reassigns the value.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* T = Type of the new value
|
||||||
|
* that = New value.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD this).
|
||||||
|
*/
|
||||||
|
ref typeof(this) opAssign(T)(T that)
|
||||||
|
if (canFind!(T, Types))
|
||||||
|
{
|
||||||
|
reset();
|
||||||
|
return moveAssign!T(that);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
ref typeof(this) opAssign(T)(ref T that)
|
||||||
|
if (canFind!(T, Types))
|
||||||
|
{
|
||||||
|
reset();
|
||||||
|
return copyAssign!T(that);
|
||||||
|
}
|
||||||
|
|
||||||
|
private ref typeof(this) moveAssign(T)(ref T that) @trusted
|
||||||
|
{
|
||||||
|
this.tag = staticIndexOf!(T, Types);
|
||||||
|
|
||||||
|
enum string accessorMixin = accessor!(T, AlignedUnion!Types).accessor;
|
||||||
|
moveEmplace(that, mixin(accessorMixin));
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
private ref typeof(this) copyAssign(T)(ref T that)
|
||||||
|
{
|
||||||
|
this.tag = staticIndexOf!(T, Types);
|
||||||
|
|
||||||
|
enum string accessorMixin = accessor!(T, AlignedUnion!Types).accessor;
|
||||||
|
emplace!T((() @trusted => (&mixin(accessorMixin))[0 .. 1])(), that);
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void reset()
|
||||||
|
{
|
||||||
|
alias pred(U) = hasElaborateDestructor!(U.Seq[1]);
|
||||||
|
static foreach (Type; Filter!(pred, Enumerate!Types))
|
||||||
|
{
|
||||||
|
if (this.tag == Type.Seq[0])
|
||||||
|
{
|
||||||
|
destroy(get!(Type.Seq[1]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns $(D_PSYMBOL TypeInfo) corresponding to the current type.
|
||||||
|
*
|
||||||
|
* If this $(D_PSYMBOL Variant) isn't initialized, returns
|
||||||
|
* $(D_KEYWORD null).
|
||||||
|
*
|
||||||
|
* Returns: $(D_PSYMBOL TypeInfo) of the current type.
|
||||||
|
*/
|
||||||
|
@property TypeInfo type()
|
||||||
|
{
|
||||||
|
static foreach (i, Type; Types)
|
||||||
|
{
|
||||||
|
if (this.tag == i)
|
||||||
|
{
|
||||||
|
return typeid(Type);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares this $(D_PSYMBOL Variant) with another one with the same
|
||||||
|
* specification for equality.
|
||||||
|
*
|
||||||
|
* $(UL
|
||||||
|
* $(LI If both hold values of the same type, these values are
|
||||||
|
* compared.)
|
||||||
|
* $(LI If they hold values of different types, then the
|
||||||
|
* $(D_PSYMBOL Variant)s aren't equal.)
|
||||||
|
* $(LI If only one of them is initialized but another one not, they
|
||||||
|
* aren't equal.)
|
||||||
|
* $(LI If neither of them is initialized, they are equal.)
|
||||||
|
* )
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* that = The $(D_PSYMBOL Variant) to compare with.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this $(D_PSYMBOL Variant) is equal to
|
||||||
|
* $(D_PARAM that), $(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
bool opEquals()(auto ref inout Variant that) inout
|
||||||
|
{
|
||||||
|
if (this.tag != that.tag)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
static foreach (i, Type; Types)
|
||||||
|
{
|
||||||
|
if (this.tag == i)
|
||||||
|
{
|
||||||
|
return get!Type == that.get!Type;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Variant!(int, double) variant = 5;
|
||||||
|
assert(variant.peek!int);
|
||||||
|
assert(variant.get!int == 5);
|
||||||
|
|
||||||
|
variant = 5.4;
|
||||||
|
assert(!variant.peek!int);
|
||||||
|
assert(variant.get!double == 5.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Variant!(int, double) variant;
|
||||||
|
variant = 5;
|
||||||
|
assert(variant.peek!int);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Variant!(int, double) variant;
|
||||||
|
variant = 5.0;
|
||||||
|
assert(!variant.peek!int);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Variant!(int, double) variant = 5;
|
||||||
|
assert(variant.get!int == 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(is(Variant!(int, float)));
|
||||||
|
static assert(is(Variant!int));
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct WithDestructorAndCopy
|
||||||
|
{
|
||||||
|
this(this) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
~this() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
static assert(is(Variant!WithDestructorAndCopy));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Equality compares the underlying objects
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Variant!(int, double) variant1 = 5;
|
||||||
|
Variant!(int, double) variant2 = 5;
|
||||||
|
assert(variant1 == variant2);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Variant!(int, double) variant1 = 5;
|
||||||
|
Variant!(int, double) variant2 = 6;
|
||||||
|
assert(variant1 != variant2);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Differently typed variants aren't equal
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Variant!(int, double) variant1 = 5;
|
||||||
|
Variant!(int, double) variant2 = 5.0;
|
||||||
|
assert(variant1 != variant2);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uninitialized variants are equal
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Variant!(int, double) variant1, variant2;
|
||||||
|
assert(variant1 == variant2);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calls postblit constructor of the active type
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct S
|
||||||
|
{
|
||||||
|
bool called;
|
||||||
|
|
||||||
|
this(this)
|
||||||
|
{
|
||||||
|
this.called = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Variant!(int, S) variant1 = S();
|
||||||
|
auto variant2 = variant1;
|
||||||
|
assert(variant2.get!S.called);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Variant.type is null if the Variant doesn't have a value
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
Variant!(int, uint) variant;
|
||||||
|
assert(variant.type is null);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Variant can contain only distinct types
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(!is(Variant!(int, int)));
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user