Compare commits
85 Commits
Author | SHA1 | Date | |
---|---|---|---|
d7dfa3f6f1 | |||
8fd0452cd0 | |||
df99ea45f2 | |||
87ba58098e | |||
5a134ce768 | |||
0835edce1d | |||
a786bdbec5 | |||
0bef2ef76d | |||
1d3d750adb | |||
0c8f1eb4ce | |||
bf197a6554 | |||
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 | |||
c5eb2f27be | |||
349e6dfede | |||
fd133554f3 | |||
9ac56c50f1 | |||
03b45ae441 | |||
31d4f30a49 | |||
180c4d3956 | |||
b0dc7b59e5 | |||
eb796e0ddf | |||
e5569e5fea | |||
b831a05407 | |||
b6d1766d58 | |||
7f080831c5 | |||
94c7fd2231 | |||
5ba6d35a1b | |||
09f434f631 | |||
1f615301e5 | |||
131675d0a8 | |||
aa12aa9014 | |||
41878cde50 | |||
0fc0aa23f7 | |||
c205c087a4 | |||
8ca88d1f01 | |||
fa4cbb7e59 | |||
4653e94fa1 | |||
ba5833318b | |||
918d8f5450 | |||
2862cc6f50 | |||
aa4ccddf47 | |||
22cffe9d6e | |||
abd286064b |
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
|
||||||
|
43
.travis.yml
43
.travis.yml
@ -7,32 +7,55 @@ os:
|
|||||||
language: d
|
language: d
|
||||||
|
|
||||||
d:
|
d:
|
||||||
- dmd-2.081.0
|
- dmd-2.084.1
|
||||||
- dmd-2.080.1
|
- dmd-2.083.1
|
||||||
- dmd-2.079.1
|
- dmd-2.082.1
|
||||||
- dmd-2.078.3
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
global:
|
||||||
|
- LATEST=2.084.1
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
- ARCH=x86_64
|
- ARCH=x86_64
|
||||||
- ARCH=x86
|
- ARCH=x86
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- name: D-Scanner
|
||||||
|
d: dmd-$LATEST
|
||||||
|
env: DSCANNER=0.6.0
|
||||||
|
os: linux
|
||||||
|
- name: DDoc
|
||||||
|
d: dmd-$LATEST
|
||||||
|
env: DDOC=true
|
||||||
|
os: linux
|
||||||
|
allow_failures:
|
||||||
|
- name: D-Scanner
|
||||||
|
d: dmd-$LATEST
|
||||||
|
env: DSCANNER=0.6.0
|
||||||
|
os: linux
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
- gcc-multilib
|
- gcc-multilib
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- if [ "`$DC --version | head -n 1 | grep 'v2.081.0'`" ]; then
|
- if [ "`$DC --version | head -n 1 | grep v$LATEST`" ] &&
|
||||||
|
[ -z "$DSCANNER$DDOC" ]; then
|
||||||
export UNITTEST="unittest-cov";
|
export UNITTEST="unittest-cov";
|
||||||
fi
|
fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- dub test -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC
|
- if [ -n "$DDOC" ]; then
|
||||||
- if [ "$UNITTEST" ] && [ "$ARCH" = "x86_64" ] && [ "$TRAVIS_OS_NAME" = "linux" ];
|
dub build -b ddox --compiler=$DC;
|
||||||
then
|
elif [ -z "$DSCANNER" ]; then
|
||||||
dub fetch dscanner;
|
dub test -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
|
||||||
dub run dscanner -- --styleCheck ./source/;
|
else
|
||||||
|
dub fetch dscanner --version=$DSCANNER;
|
||||||
|
|
||||||
|
FILES=$(find source -type f);
|
||||||
|
dub run dscanner -- --styleCheck $FILES;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
|
10
README.md
10
README.md
@ -25,6 +25,7 @@ Tanya consists of the following packages and (top-level) modules:
|
|||||||
|
|
||||||
* `algorithm`: Collection of generic algorithms.
|
* `algorithm`: Collection of generic algorithms.
|
||||||
* `async`: Event loop (epoll, kqueue and IOCP).
|
* `async`: Event loop (epoll, kqueue and IOCP).
|
||||||
|
* `bitmanip`: Bit manipulation.
|
||||||
* `container`: Queue, Array, Singly and doubly linked lists, Buffers, UTF-8
|
* `container`: Queue, Array, Singly and doubly linked lists, Buffers, UTF-8
|
||||||
string, Set, Hash table.
|
string, Set, Hash table.
|
||||||
* `conv`: This module provides functions for converting between different
|
* `conv`: This module provides functions for converting between different
|
||||||
@ -173,11 +174,10 @@ parameter is used)
|
|||||||
### Supported compilers
|
### Supported compilers
|
||||||
|
|
||||||
| DMD | GCC |
|
| DMD | GCC |
|
||||||
|:-------:|:---------:|
|
|:-------:|:---------------:|
|
||||||
| 2.081.1 | *master* |
|
| 2.084.1 | gdc-8 (2.081.2) |
|
||||||
| 2.080.1 | |
|
| 2.083.1 | gdc-7 (2.081.2) |
|
||||||
| 2.079.1 | |
|
| 2.082.1 | |
|
||||||
| 2.078.3 | |
|
|
||||||
|
|
||||||
### Release management
|
### Release management
|
||||||
|
|
||||||
|
20
appveyor.yml
20
appveyor.yml
@ -4,28 +4,22 @@ os: Visual Studio 2015
|
|||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.081.1
|
DVersion: 2.084.1
|
||||||
arch: x64
|
arch: x64
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.081.1
|
DVersion: 2.084.1
|
||||||
arch: x86
|
arch: x86
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.080.1
|
DVersion: 2.083.1
|
||||||
arch: x64
|
arch: x64
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.080.1
|
DVersion: 2.083.1
|
||||||
arch: x86
|
arch: x86
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.079.1
|
DVersion: 2.082.1
|
||||||
arch: x64
|
arch: x64
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.079.1
|
DVersion: 2.082.1
|
||||||
arch: x86
|
|
||||||
- DC: dmd
|
|
||||||
DVersion: 2.078.3
|
|
||||||
arch: x64
|
|
||||||
- DC: dmd
|
|
||||||
DVersion: 2.078.3
|
|
||||||
arch: x86
|
arch: x86
|
||||||
|
|
||||||
skip_tags: true
|
skip_tags: true
|
||||||
@ -46,7 +40,7 @@ install:
|
|||||||
before_build:
|
before_build:
|
||||||
- ps: if($env:arch -eq "x86"){
|
- ps: if($env:arch -eq "x86"){
|
||||||
$env:compilersetupargs = "x86";
|
$env:compilersetupargs = "x86";
|
||||||
$env:Darch = "x86";
|
$env:Darch = "x86_mscoff";
|
||||||
}
|
}
|
||||||
elseif($env:arch -eq "x64"){
|
elseif($env:arch -eq "x64"){
|
||||||
$env:compilersetupargs = "amd64";
|
$env:compilersetupargs = "amd64";
|
||||||
|
@ -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,21 +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 _D5tanya6memory2op9cmpMemoryFNaNbNixAvxAvZi
|
.globl _D5tanya6memory2op11equalMemoryFNaNbNixAvxQdZb
|
||||||
.type _D5tanya6memory2op9cmpMemoryFNaNbNixAvxAvZi, @function
|
.type _D5tanya6memory2op11equalMemoryFNaNbNixAvxQdZb, @function
|
||||||
|
_D5tanya6memory2op11equalMemoryFNaNbNixAvxQdZb:
|
||||||
_D5tanya6memory2op9cmpMemoryFNaNbNixAvxAvZi:
|
|
||||||
// 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
|
||||||
|
|
||||||
@ -27,8 +25,7 @@ _D5tanya6memory2op9cmpMemoryFNaNbNixAvxAvZi:
|
|||||||
|
|
||||||
naligned:
|
naligned:
|
||||||
cmpsb
|
cmpsb
|
||||||
jl less
|
jne not_equal
|
||||||
jg greater
|
|
||||||
|
|
||||||
dec %rdx
|
dec %rdx
|
||||||
test $0x07, %edi
|
test $0x07, %edi
|
||||||
@ -39,8 +36,7 @@ _D5tanya6memory2op9cmpMemoryFNaNbNixAvxAvZi:
|
|||||||
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
|
||||||
@ -50,19 +46,14 @@ _D5tanya6memory2op9cmpMemoryFNaNbNixAvxAvZi:
|
|||||||
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
|
@ -11,10 +11,11 @@ The returned value is placed in %rax.
|
|||||||
*/
|
*/
|
||||||
.text
|
.text
|
||||||
|
|
||||||
.globl syscall1
|
// 1 parameter.
|
||||||
.type syscall1, @function
|
.globl _D5tanya3sys5linux7syscallQiFNbNillZl
|
||||||
|
.type _D5tanya3sys5linux7syscallQiFNbNillZl, @function
|
||||||
|
|
||||||
syscall1:
|
_D5tanya3sys5linux7syscallQiFNbNillZl:
|
||||||
movq %rsi, %rax // Syscall number.
|
movq %rsi, %rax // Syscall number.
|
||||||
|
|
||||||
syscall
|
syscall
|
||||||
@ -23,10 +24,10 @@ syscall1:
|
|||||||
|
|
||||||
|
|
||||||
// 2 parameters.
|
// 2 parameters.
|
||||||
.globl _D5tanya3sys5linux7syscall7syscallFNbNilllZl
|
.globl _D5tanya3sys5linux7syscallQiFNbNilllZl
|
||||||
.type _D5tanya3sys5linux7syscall7syscallFNbNilllZl, @function
|
.type _D5tanya3sys5linux7syscallQiFNbNilllZl, @function
|
||||||
|
|
||||||
_D5tanya3sys5linux7syscall7syscallFNbNilllZl:
|
_D5tanya3sys5linux7syscallQiFNbNilllZl:
|
||||||
movq %rdx, %rax
|
movq %rdx, %rax
|
||||||
|
|
||||||
syscall
|
syscall
|
||||||
@ -34,11 +35,23 @@ _D5tanya3sys5linux7syscall7syscallFNbNilllZl:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
|
|
||||||
// 6 parameters.
|
// 3 parameters.
|
||||||
.globl _D5tanya3sys5linux7syscall7syscallFNbNilllllllZl
|
.globl _D5tanya3sys5linux7syscallQiFNbNillllZl
|
||||||
.type _D5tanya3sys5linux7syscall7syscallFNbNilllllllZl, @function
|
.type _D5tanya3sys5linux7syscallQiFNbNillllZl, @function
|
||||||
|
|
||||||
_D5tanya3sys5linux7syscall7syscallFNbNilllllllZl:
|
_D5tanya3sys5linux7syscallQiFNbNillllZl:
|
||||||
|
movq %rcx, %rax
|
||||||
|
|
||||||
|
syscall
|
||||||
|
|
||||||
|
ret
|
||||||
|
|
||||||
|
|
||||||
|
// 6 parameters.
|
||||||
|
.globl _D5tanya3sys5linux7syscallQiFNbNilllllllZl
|
||||||
|
.type _D5tanya3sys5linux7syscallQiFNbNilllllllZl, @function
|
||||||
|
|
||||||
|
_D5tanya3sys5linux7syscallQiFNbNilllllllZl:
|
||||||
pushq %rbp
|
pushq %rbp
|
||||||
movq %rsp, %rbp
|
movq %rsp, %rbp
|
||||||
|
|
||||||
|
4
dub.json
4
dub.json
@ -34,5 +34,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"libs-windows": ["advapi32"]
|
"libs-windows": ["advapi32"],
|
||||||
|
"libs-windows-x86_mscoff": ["iphlpapi"],
|
||||||
|
"libs-windows-x86_64": ["iphlpapi"]
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
@ -278,6 +278,7 @@ if (isForwardRange!Range && isOrderingComparable!(ElementType!Range))
|
|||||||
* If the ranges have different lengths, they aren't equal.
|
* If the ranges have different lengths, they aren't equal.
|
||||||
*
|
*
|
||||||
* Params:
|
* Params:
|
||||||
|
* pred = Predicate used to compare individual element pairs.
|
||||||
* R1 = First range type.
|
* R1 = First range type.
|
||||||
* R2 = Second range type.
|
* R2 = Second range type.
|
||||||
* r1 = First range.
|
* r1 = First range.
|
||||||
@ -286,14 +287,16 @@ if (isForwardRange!Range && isOrderingComparable!(ElementType!Range))
|
|||||||
* Returns: $(D_KEYWORD true) if both ranges are equal, $(D_KEYWORD false)
|
* Returns: $(D_KEYWORD true) if both ranges are equal, $(D_KEYWORD false)
|
||||||
* otherwise.
|
* otherwise.
|
||||||
*/
|
*/
|
||||||
bool equal(R1, R2)(R1 r1, R2 r2)
|
bool equal(alias pred = (auto ref a, auto ref b) => a == b, R1, R2)
|
||||||
if (allSatisfy!(isInputRange, R1, R2) && is(typeof(r1.front == r2.front)))
|
(R1 r1, R2 r2)
|
||||||
|
if (allSatisfy!(isInputRange, R1, R2)
|
||||||
|
&& is(typeof(pred(r1.front, r2.front)) == bool))
|
||||||
{
|
{
|
||||||
static if (isDynamicArray!R1
|
static if (isDynamicArray!R1
|
||||||
&& 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
|
||||||
{
|
{
|
||||||
@ -306,7 +309,7 @@ if (allSatisfy!(isInputRange, R1, R2) && is(typeof(r1.front == r2.front)))
|
|||||||
}
|
}
|
||||||
for (; !r1.empty && !r2.empty; r1.popFront(), r2.popFront())
|
for (; !r1.empty && !r2.empty; r1.popFront(), r2.popFront())
|
||||||
{
|
{
|
||||||
if (r1.front != r2.front)
|
if (!pred(r1.front, r2.front))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -331,3 +334,130 @@ if (allSatisfy!(isInputRange, R1, R2) && is(typeof(r1.front == r2.front)))
|
|||||||
int[3] range2 = [1, 2, 3];
|
int[3] range2 = [1, 2, 3];
|
||||||
assert(!equal(range1[], range2[]));
|
assert(!equal(range1[], range2[]));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares element-wise two ranges for ordering.
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL compare) returns a negative value if $(D_PARAM r1) is less than
|
||||||
|
* $(D_PARAM r2), a positive value if $(D_PARAM r2) is less than $(D_PARAM r1),
|
||||||
|
* or `0` if $(D_PARAM r1) and $(D_PARAM r2) equal.
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL compare) iterates both ranges in lockstep. Whichever of them
|
||||||
|
* contains an element that is greater than the respective element at the same
|
||||||
|
* position in the other range is the greater one of the two.
|
||||||
|
*
|
||||||
|
* If one of the ranges becomes empty when iterating, but all elements equal so
|
||||||
|
* far, the range with more elements is the greater one.
|
||||||
|
*
|
||||||
|
* If $(D_PARAM pred) is given, it is used for comparison. $(D_PARAM pred) is
|
||||||
|
* called as $(D_INLINECODE pred(r1.front, r2.front)) and
|
||||||
|
* $(D_INLINECODE pred(r2.front, r1.front)) to perform three-way comparison.
|
||||||
|
* $(D_PARAM pred) should return a $(D_KEYWORD bool).
|
||||||
|
*
|
||||||
|
* If $(D_PARAM pred) is not given, but the element type of $(D_PARAM R1)
|
||||||
|
* defines `opCmp()` for the element type of $(D_PARAM R2), `opCmp()` is used.
|
||||||
|
*
|
||||||
|
* Otherwise the comparison is perfomed using the basic comparison operators.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* pred = Predicate used for comparison.
|
||||||
|
* R1 = First range type.
|
||||||
|
* R2 = Second range type.
|
||||||
|
* r1 = First range.
|
||||||
|
* r2 = Second range.
|
||||||
|
*
|
||||||
|
* Returns: A negative value if $(D_PARAM r1) is less than $(D_PARAM r2), a
|
||||||
|
* positive value if $D(_PARAM r2) is less than $(D_PARAM r1), `0`
|
||||||
|
* otherwise.
|
||||||
|
*/
|
||||||
|
int compare(alias pred, R1, R2)(R1 r1, R2 r2)
|
||||||
|
if (allSatisfy!(isInputRange, R1, R2)
|
||||||
|
&& is(typeof(pred(r1.front, r2.front)) == bool)
|
||||||
|
&& is(typeof(pred(r2.front, r1.front)) == bool))
|
||||||
|
{
|
||||||
|
alias predImpl = (ref r1, ref r2) {
|
||||||
|
return pred(r2.front, r1.front) - pred(r1.front, r2.front);
|
||||||
|
};
|
||||||
|
return compareImpl!(predImpl, R1, R2)(r1, r2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
int compare(R1, R2)(R1 r1, R2 r2)
|
||||||
|
if (allSatisfy!(isInputRange, R1, R2)
|
||||||
|
&& is(typeof(r1.front < r2.front || r2.front < r1.front)))
|
||||||
|
{
|
||||||
|
static if (is(typeof(r1.front.opCmp(r2.front)) == int))
|
||||||
|
{
|
||||||
|
alias pred = (ref r1, ref r2) => r1.front.opCmp(r2.front);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
alias pred = (ref r1, ref r2) {
|
||||||
|
return (r2.front < r1.front) - (r1.front < r2.front);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return compareImpl!(pred, R1, R2)(r1, r2);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(compare("abc", "abc") == 0);
|
||||||
|
assert(compare("abcd", "abc") > 0);
|
||||||
|
assert(compare("ab", "abc") < 0);
|
||||||
|
assert(compare("abc", "abcd") < 0);
|
||||||
|
assert(compare("abc", "ab") > 0);
|
||||||
|
assert(compare("aec", "abc") > 0);
|
||||||
|
assert(compare("aac", "abc") < 0);
|
||||||
|
assert(compare("abc", "aec") < 0);
|
||||||
|
assert(compare("abc", "aab") > 0);
|
||||||
|
assert(compare("aacd", "abc") < 0);
|
||||||
|
assert(compare("abc", "aacd") > 0);
|
||||||
|
|
||||||
|
assert(compare!((a, b) => a > b)("aec", "abc") < 0);
|
||||||
|
assert(compare!((a, b) => a > b)("aac", "abc") > 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int compareImpl(alias pred, R1, R2)(ref R1 r1, ref R2 r2)
|
||||||
|
{
|
||||||
|
for (; !r1.empty || !r2.empty; r1.popFront(), r2.popFront())
|
||||||
|
{
|
||||||
|
if (r1.empty)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
else if (r2.empty)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
const comparison = pred(r1, r2);
|
||||||
|
if (comparison != 0)
|
||||||
|
{
|
||||||
|
return comparison;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct OpCmp(int value)
|
||||||
|
{
|
||||||
|
int opCmp(OpCmp) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
OpCmp!(-1)[1] range;
|
||||||
|
assert(compare(range[], range[]) < 0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
OpCmp!1[1] range;
|
||||||
|
assert(compare(range[], range[]) > 0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
OpCmp!0[1] range;
|
||||||
|
assert(compare(range[], range[]) == 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
855
source/tanya/algorithm/iteration.d
Normal file
855
source/tanya/algorithm/iteration.d
Normal file
@ -0,0 +1,855 @@
|
|||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Iteration algorithms.
|
||||||
|
*
|
||||||
|
* These algorithms wrap other ranges and modify the way, how the original
|
||||||
|
* range is iterated, or the order in which its elements are accessed.
|
||||||
|
*
|
||||||
|
* All algorithms in this module are lazy, they request the next element of the
|
||||||
|
* original range on demand.
|
||||||
|
*
|
||||||
|
* 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/iteration.d,
|
||||||
|
* tanya/algorithm/iteration.d)
|
||||||
|
*/
|
||||||
|
module tanya.algorithm.iteration;
|
||||||
|
|
||||||
|
import tanya.algorithm.comparison;
|
||||||
|
import tanya.algorithm.mutation;
|
||||||
|
import tanya.meta.trait;
|
||||||
|
import tanya.meta.transform;
|
||||||
|
import tanya.range;
|
||||||
|
import tanya.typecons;
|
||||||
|
version (unittest) import tanya.test.stub;
|
||||||
|
|
||||||
|
private struct 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 this.length_ == 0 || this.source.empty;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (exactly || hasLength!R)
|
||||||
|
{
|
||||||
|
@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 (!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);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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)
|
||||||
|
{
|
||||||
|
static if (hasSlicing!R && hasLength!R)
|
||||||
|
{
|
||||||
|
if (range.length <= n)
|
||||||
|
return range;
|
||||||
|
else
|
||||||
|
return range[0 .. n];
|
||||||
|
}
|
||||||
|
// Special case: take(take(...), n)
|
||||||
|
else static if (is(Range == Take!(RRange, exact), RRange, bool exact))
|
||||||
|
{
|
||||||
|
if (n > range.length_)
|
||||||
|
n = range.length_;
|
||||||
|
static if (exact)
|
||||||
|
// `take(takeExactly(r, n0), n)` is rewritten `takeExactly(r, min(n0, n))`.
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct InfiniteRange
|
||||||
|
{
|
||||||
|
private size_t front_ = 1;
|
||||||
|
|
||||||
|
enum bool empty = false;
|
||||||
|
|
||||||
|
@property size_t front() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.front_;
|
||||||
|
}
|
||||||
|
|
||||||
|
@property void front(size_t i) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
this.front_ = i;
|
||||||
|
}
|
||||||
|
|
||||||
|
void popFront() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
++this.front_;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t opIndex(size_t i) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.front_ + i;
|
||||||
|
}
|
||||||
|
|
||||||
|
void opIndexAssign(size_t value, size_t i) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
this.front = i + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
InfiniteRange save() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
auto t = InfiniteRange().take(3);
|
||||||
|
assert(t.length == 3);
|
||||||
|
assert(t.front == 1);
|
||||||
|
assert(t.back == 3);
|
||||||
|
|
||||||
|
t.popFront();
|
||||||
|
assert(t.front == 2);
|
||||||
|
assert(t.back == 3);
|
||||||
|
|
||||||
|
t.popBack();
|
||||||
|
assert(t.front == 2);
|
||||||
|
assert(t.back == 2);
|
||||||
|
|
||||||
|
t.popFront();
|
||||||
|
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).
|
||||||
|
*
|
||||||
|
* $(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)
|
||||||
|
{
|
||||||
|
static if (hasSlicing!R)
|
||||||
|
{
|
||||||
|
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
|
||||||
|
{
|
||||||
|
return Take!(R, true)(range, n);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct InfiniteRange
|
||||||
|
{
|
||||||
|
private size_t front_ = 1;
|
||||||
|
|
||||||
|
enum bool empty = false;
|
||||||
|
|
||||||
|
@property size_t front() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.front_;
|
||||||
|
}
|
||||||
|
|
||||||
|
@property void front(size_t i) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
this.front_ = i;
|
||||||
|
}
|
||||||
|
|
||||||
|
void popFront() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
++this.front_;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t opIndex(size_t i) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this.front_ + i;
|
||||||
|
}
|
||||||
|
|
||||||
|
void opIndexAssign(size_t value, size_t i) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
this.front = i + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
InfiniteRange save() @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
auto t = InfiniteRange().takeExactly(3);
|
||||||
|
assert(t.length == 3);
|
||||||
|
assert(t.front == 1);
|
||||||
|
assert(t.back == 3);
|
||||||
|
|
||||||
|
t.popFront();
|
||||||
|
assert(t.front == 2);
|
||||||
|
assert(t.back == 3);
|
||||||
|
|
||||||
|
t.popBack();
|
||||||
|
assert(t.front == 2);
|
||||||
|
assert(t.back == 2);
|
||||||
|
|
||||||
|
t.popFront();
|
||||||
|
assert(t.empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Takes minimum length if the range length > n
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
auto range = take(cast(int[]) null, 8);
|
||||||
|
assert(range.length == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
const int[9] range = [1, 2, 3, 4, 5, 6, 7, 8, 9];
|
||||||
|
{
|
||||||
|
auto slice = take(range[], 8)[1 .. 3];
|
||||||
|
|
||||||
|
assert(slice.length == 2);
|
||||||
|
assert(slice.front == 2);
|
||||||
|
assert(slice.back == 3);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
auto slice = takeExactly(range[], 8)[1 .. 3];
|
||||||
|
|
||||||
|
assert(slice.length == 2);
|
||||||
|
assert(slice.front == 2);
|
||||||
|
assert(slice.back == 3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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.
|
||||||
|
*
|
||||||
|
* If $(D_PARAM Range) is a random-access range as well, the resulting range
|
||||||
|
* is a random-access range too.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Range = Bidirectional range type.
|
||||||
|
* range = Bidirectional range.
|
||||||
|
*
|
||||||
|
* Returns: Bidirectional range with the elements order reversed.
|
||||||
|
*/
|
||||||
|
auto retro(Range)(return Range range)
|
||||||
|
if (isBidirectionalRange!Range)
|
||||||
|
{
|
||||||
|
// Special case: retro(retro(range)) is range
|
||||||
|
static if (is(Range == Retro!RRange, RRange))
|
||||||
|
return range.source;
|
||||||
|
else
|
||||||
|
return Retro!Range(range);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
const int[3] given = [1, 2, 3];
|
||||||
|
const int[3] expected = [3, 2, 1];
|
||||||
|
|
||||||
|
auto actual = retro(given[]);
|
||||||
|
|
||||||
|
assert(actual.length == expected.length);
|
||||||
|
assert(!actual.empty);
|
||||||
|
assert(equal(actual, expected[]));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Elements are accessible in reverse order
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
const int[3] given = [1, 2, 3];
|
||||||
|
auto actual = retro(given[]);
|
||||||
|
|
||||||
|
assert(actual.back == given[].front);
|
||||||
|
assert(actual[0] == 3);
|
||||||
|
assert(actual[2] == 1);
|
||||||
|
|
||||||
|
actual.popBack();
|
||||||
|
assert(actual.back == 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
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
int[4] given = [1, 2, 3, 4];
|
||||||
|
auto actual = retro(given[]);
|
||||||
|
|
||||||
|
actual.front = 5;
|
||||||
|
assert(given[].back == 5);
|
||||||
|
|
||||||
|
actual.back = 8;
|
||||||
|
assert(given[].front == 8);
|
||||||
|
|
||||||
|
actual[2] = 10;
|
||||||
|
assert(given[1] == 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
private struct SingletonByValue(E)
|
||||||
|
{
|
||||||
|
private Option!E element;
|
||||||
|
|
||||||
|
@disable this();
|
||||||
|
|
||||||
|
private this(U)(ref U element)
|
||||||
|
if (is(U == E))
|
||||||
|
{
|
||||||
|
this.element = move(element);
|
||||||
|
}
|
||||||
|
|
||||||
|
private this(U)(ref U element)
|
||||||
|
if (is(Unqual!U == Option!(Unqual!E)) || is(Unqual!U == Option!(const E)))
|
||||||
|
{
|
||||||
|
if (!element.isNothing)
|
||||||
|
{
|
||||||
|
this.element = element.get;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@property ref inout(E) front() inout
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
return this.element.get;
|
||||||
|
}
|
||||||
|
|
||||||
|
alias back = front;
|
||||||
|
|
||||||
|
void popFront()
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
this.element.reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
alias popBack = popFront;
|
||||||
|
|
||||||
|
@property bool empty() const
|
||||||
|
{
|
||||||
|
return this.element.isNothing;
|
||||||
|
}
|
||||||
|
|
||||||
|
@property size_t length() const
|
||||||
|
{
|
||||||
|
return !this.element.isNothing;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto save()
|
||||||
|
{
|
||||||
|
return SingletonByValue!E(this.element);
|
||||||
|
}
|
||||||
|
|
||||||
|
auto save() const
|
||||||
|
{
|
||||||
|
return SingletonByValue!(const E)(this.element);
|
||||||
|
}
|
||||||
|
|
||||||
|
ref inout(E) opIndex(size_t i) inout
|
||||||
|
in (!empty)
|
||||||
|
in (i == 0)
|
||||||
|
{
|
||||||
|
return this.element.get;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private struct SingletonByRef(E)
|
||||||
|
{
|
||||||
|
private E* element;
|
||||||
|
|
||||||
|
@disable this();
|
||||||
|
|
||||||
|
private this(return ref E element) @trusted
|
||||||
|
{
|
||||||
|
this.element = &element;
|
||||||
|
}
|
||||||
|
|
||||||
|
@property ref inout(E) front() inout return
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
return *this.element;
|
||||||
|
}
|
||||||
|
|
||||||
|
alias back = front;
|
||||||
|
|
||||||
|
void popFront()
|
||||||
|
in (!empty)
|
||||||
|
{
|
||||||
|
this.element = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
alias popBack = popFront;
|
||||||
|
|
||||||
|
@property bool empty() const
|
||||||
|
{
|
||||||
|
return this.element is null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@property size_t length() const
|
||||||
|
{
|
||||||
|
return this.element !is null;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto save() return
|
||||||
|
{
|
||||||
|
return typeof(this)(*this.element);
|
||||||
|
}
|
||||||
|
|
||||||
|
auto save() const return
|
||||||
|
{
|
||||||
|
return SingletonByRef!(const E)(*this.element);
|
||||||
|
}
|
||||||
|
|
||||||
|
ref inout(E) opIndex(size_t i) inout return
|
||||||
|
in (!empty)
|
||||||
|
in (i == 0)
|
||||||
|
{
|
||||||
|
return *this.element;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a bidirectional and random-access range with the single element
|
||||||
|
* $(D_PARAM element).
|
||||||
|
*
|
||||||
|
* If $(D_PARAM element) is passed by value the resulting range stores it
|
||||||
|
* internally. If $(D_PARAM element) is passed by reference, the resulting
|
||||||
|
* range keeps only a pointer to the element.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* E = Element type.
|
||||||
|
* element = Element.
|
||||||
|
*
|
||||||
|
* Returns: A range with one element.
|
||||||
|
*/
|
||||||
|
auto singleton(E)(return E element)
|
||||||
|
if (isMutable!E)
|
||||||
|
{
|
||||||
|
return SingletonByValue!E(element);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
auto singleton(E)(return ref E element)
|
||||||
|
{
|
||||||
|
return SingletonByRef!E(element);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
auto singleChar = singleton('a');
|
||||||
|
|
||||||
|
assert(singleChar.length == 1);
|
||||||
|
assert(singleChar.front == 'a');
|
||||||
|
|
||||||
|
singleChar.popFront();
|
||||||
|
assert(singleChar.empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Singleton range is bidirectional and random-access
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(isBidirectionalRange!(typeof(singleton('a'))));
|
||||||
|
static assert(isRandomAccessRange!(typeof(singleton('a'))));
|
||||||
|
|
||||||
|
assert({ char a; return isBidirectionalRange!(typeof(singleton(a))); });
|
||||||
|
assert({ char a; return isRandomAccessRange!(typeof(singleton(a))); });
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
char a = 'a';
|
||||||
|
auto single = singleton(a);
|
||||||
|
|
||||||
|
assert(single.front == 'a');
|
||||||
|
assert(single.back == 'a');
|
||||||
|
assert(single[0] == 'a');
|
||||||
|
assert(single.length == 1);
|
||||||
|
assert(!single.empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
// popFront makes SingletonByRef empty
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
char a = 'a';
|
||||||
|
auto single = singleton(a);
|
||||||
|
|
||||||
|
single.popFront();
|
||||||
|
assert(single.empty);
|
||||||
|
assert(single.length == 0);
|
||||||
|
assert(single.empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
// popBack makes SingletonByRef empty
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
char a = 'b';
|
||||||
|
auto single = singleton(a);
|
||||||
|
|
||||||
|
single.popBack();
|
||||||
|
assert(single.empty);
|
||||||
|
assert(single.length == 0);
|
||||||
|
assert(single.empty);
|
||||||
|
}
|
@ -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,8 +14,12 @@
|
|||||||
*/
|
*/
|
||||||
module tanya.algorithm.mutation;
|
module tanya.algorithm.mutation;
|
||||||
|
|
||||||
import tanya.memory.op;
|
import tanya.conv;
|
||||||
|
static import tanya.memory.op;
|
||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
|
import tanya.meta.transform;
|
||||||
|
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)
|
||||||
{
|
{
|
||||||
@ -39,11 +43,12 @@ private void deinitialize(bool zero, T)(ref T value)
|
|||||||
}
|
}
|
||||||
static if (zero)
|
static if (zero)
|
||||||
{
|
{
|
||||||
fill!0((cast(void*) &value)[0 .. size]);
|
tanya.memory.op.fill!0((cast(void*) &value)[0 .. size]);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
copy(typeid(T).initializer()[0 .. size], (&value)[0 .. 1]);
|
tanya.memory.op.copy(typeid(T).initializer()[0 .. size],
|
||||||
|
(&value)[0 .. 1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -81,9 +86,15 @@ do
|
|||||||
{
|
{
|
||||||
static if (is(T == struct) || isStaticArray!T)
|
static if (is(T == struct) || isStaticArray!T)
|
||||||
{
|
{
|
||||||
copy((&source)[0 .. 1], (&target)[0 .. 1]);
|
tanya.memory.op.copy((&source)[0 .. 1], (&target)[0 .. 1]);
|
||||||
|
|
||||||
static if (hasElaborateCopyConstructor!T || hasElaborateDestructor!T)
|
static if (hasElaborateCopyConstructor!T || hasElaborateDestructor!T)
|
||||||
|
{
|
||||||
|
static if (__VERSION__ >= 2083) // __traits(isZeroInit) available.
|
||||||
|
{
|
||||||
|
deinitialize!(__traits(isZeroInit, T))(source);
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
if (typeid(T).initializer().ptr is null)
|
if (typeid(T).initializer().ptr is null)
|
||||||
{
|
{
|
||||||
@ -95,6 +106,7 @@ do
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
target = source;
|
target = source;
|
||||||
@ -210,11 +222,18 @@ 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
|
||||||
|
{
|
||||||
|
static if (hasElaborateCopyConstructor!T || hasElaborateDestructor!T)
|
||||||
{
|
{
|
||||||
T target = void;
|
T target = void;
|
||||||
moveEmplace(source, target);
|
moveEmplace(source, target);
|
||||||
return target;
|
return target;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return source;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
@ -273,3 +292,405 @@ void swap(T)(ref T a, ref T b) @trusted
|
|||||||
assert(a == 5);
|
assert(a == 5);
|
||||||
assert(b == 3);
|
assert(b == 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copies the $(D_PARAM source) range into the $(D_PARAM target) range.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Source = Input range type.
|
||||||
|
* Target = Output range type.
|
||||||
|
* source = Source input range.
|
||||||
|
* target = Target output range.
|
||||||
|
*
|
||||||
|
* Returns: $(D_PARAM target) range, whose front element is the one past the
|
||||||
|
* last element copied.
|
||||||
|
*
|
||||||
|
* Precondition: $(D_PARAM target) should be large enough to accept all
|
||||||
|
* $(D_PARAM source) elements.
|
||||||
|
*/
|
||||||
|
Target copy(Source, Target)(Source source, Target target)
|
||||||
|
if (isInputRange!Source && isOutputRange!(Target, ElementType!Source))
|
||||||
|
in
|
||||||
|
{
|
||||||
|
static if (hasLength!Source && hasLength!Target)
|
||||||
|
{
|
||||||
|
assert(target.length >= source.length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
do
|
||||||
|
{
|
||||||
|
alias E = ElementType!Source;
|
||||||
|
static if (isDynamicArray!Source
|
||||||
|
&& is(Unqual!E == ElementType!Target)
|
||||||
|
&& !hasElaborateCopyConstructor!E
|
||||||
|
&& !hasElaborateAssign!E
|
||||||
|
&& !hasElaborateDestructor!E)
|
||||||
|
{
|
||||||
|
if (source.ptr < target.ptr
|
||||||
|
&& (() @trusted => (target.ptr - source.ptr) < source.length)())
|
||||||
|
{
|
||||||
|
tanya.memory.op.copyBackward(source, target);
|
||||||
|
}
|
||||||
|
else if (source.ptr !is target.ptr)
|
||||||
|
{
|
||||||
|
tanya.memory.op.copy(source, target);
|
||||||
|
}
|
||||||
|
return target[source.length .. $];
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (; !source.empty; source.popFront())
|
||||||
|
{
|
||||||
|
put(target, source.front);
|
||||||
|
}
|
||||||
|
return target;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
const int[2] source = [1, 2];
|
||||||
|
int[2] target = [3, 4];
|
||||||
|
|
||||||
|
copy(source[], target[]);
|
||||||
|
assert(equal(source[], target[]));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Returns advanced target
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
int[5] input = [1, 2, 3, 4, 5];
|
||||||
|
assert(copy(input[3 .. 5], input[]).front == 3);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Copies overlapping arrays
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
import tanya.algorithm.comparison : equal;
|
||||||
|
|
||||||
|
int[6] actual = [1, 2, 3, 4, 5, 6];
|
||||||
|
const int[6] expected = [1, 2, 1, 2, 3, 4];
|
||||||
|
|
||||||
|
copy(actual[0 .. 4], actual[2 .. 6]);
|
||||||
|
assert(equal(actual[], expected[]));
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(is(typeof(copy((ubyte[]).init, (ushort[]).init))));
|
||||||
|
static assert(!is(typeof(copy((ushort[]).init, (ubyte[]).init))));
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static struct OutPutRange
|
||||||
|
{
|
||||||
|
int value;
|
||||||
|
|
||||||
|
void opCall(int value) @nogc nothrow pure @safe
|
||||||
|
in (this.value == 0)
|
||||||
|
{
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int[1] source = [5];
|
||||||
|
OutPutRange target;
|
||||||
|
|
||||||
|
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[]));
|
||||||
|
}
|
||||||
|
@ -15,4 +15,5 @@
|
|||||||
module tanya.algorithm;
|
module tanya.algorithm;
|
||||||
|
|
||||||
public import tanya.algorithm.comparison;
|
public import tanya.algorithm.comparison;
|
||||||
|
public import tanya.algorithm.iteration;
|
||||||
public import tanya.algorithm.mutation;
|
public import tanya.algorithm.mutation;
|
||||||
|
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);
|
||||||
|
}
|
@ -318,7 +318,9 @@ final class IOCPLoop : Loop
|
|||||||
|
|
||||||
connection.incoming.insertBack(transport);
|
connection.incoming.insertBack(transport);
|
||||||
|
|
||||||
reify(transport, EventMask(Event.none), EventMask(Event.read, Event.write));
|
reify(transport,
|
||||||
|
EventMask(Event.none),
|
||||||
|
EventMask(Event.read | Event.write));
|
||||||
|
|
||||||
pendings.insertBack(connection);
|
pendings.insertBack(connection);
|
||||||
listener.beginAccept(overlapped);
|
listener.beginAccept(overlapped);
|
||||||
|
@ -140,7 +140,7 @@ package class StreamTransport : SocketWatcher, DuplexTransport, SocketTransport
|
|||||||
{
|
{
|
||||||
closing = true;
|
closing = true;
|
||||||
loop.reify(this,
|
loop.reify(this,
|
||||||
EventMask(Event.read, Event.write),
|
EventMask(Event.read | Event.write),
|
||||||
EventMask(Event.write));
|
EventMask(Event.write));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -393,7 +393,9 @@ abstract class SelectorLoop : Loop
|
|||||||
transport.socket = client;
|
transport.socket = client;
|
||||||
}
|
}
|
||||||
|
|
||||||
reify(transport, EventMask(Event.none), EventMask(Event.read, Event.write));
|
reify(transport,
|
||||||
|
EventMask(Event.none),
|
||||||
|
EventMask(Event.read | Event.write));
|
||||||
connection.incoming.insertBack(transport);
|
connection.incoming.insertBack(transport);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,9 +72,9 @@
|
|||||||
module tanya.async.loop;
|
module tanya.async.loop;
|
||||||
|
|
||||||
import core.time;
|
import core.time;
|
||||||
import std.typecons;
|
|
||||||
import tanya.async.transport;
|
import tanya.async.transport;
|
||||||
import tanya.async.watcher;
|
import tanya.async.watcher;
|
||||||
|
import tanya.bitmanip;
|
||||||
import tanya.container.buffer;
|
import tanya.container.buffer;
|
||||||
import tanya.container.list;
|
import tanya.container.list;
|
||||||
import tanya.memory;
|
import tanya.memory;
|
||||||
|
359
source/tanya/bitmanip.d
Normal file
359
source/tanya/bitmanip.d
Normal file
@ -0,0 +1,359 @@
|
|||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bit manipulation.
|
||||||
|
*
|
||||||
|
* 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/bitmanip.d,
|
||||||
|
* tanya/bitmanip.d)
|
||||||
|
*/
|
||||||
|
module tanya.bitmanip;
|
||||||
|
|
||||||
|
import tanya.meta.metafunction;
|
||||||
|
import tanya.meta.trait;
|
||||||
|
import tanya.meta.transform;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether $(D_PARAM E) is a $(D_KEYWORD enum), whose members can be
|
||||||
|
* used as bit flags.
|
||||||
|
*
|
||||||
|
* This is the case if all members of $(D_PARAM E) are integral numbers that
|
||||||
|
* are either 0 or positive integral powers of 2.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* E = Some $(D_KEYWORD enum).
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if $(D_PARAM E) contains only bit flags,
|
||||||
|
* $(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
template isBitFlagEnum(E)
|
||||||
|
{
|
||||||
|
enum bool isValid(OriginalType!E x) = x == 0
|
||||||
|
|| (x > 0 && ((x & (x - 1)) == 0));
|
||||||
|
static if (isIntegral!E)
|
||||||
|
{
|
||||||
|
enum bool isBitFlagEnum = allSatisfy!(isValid, EnumMembers!E);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
enum bool isBitFlagEnum = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
enum Valid
|
||||||
|
{
|
||||||
|
none = 0,
|
||||||
|
one = 1 << 0,
|
||||||
|
two = 1 << 1,
|
||||||
|
}
|
||||||
|
static assert(isBitFlagEnum!Valid);
|
||||||
|
|
||||||
|
enum Invalid
|
||||||
|
{
|
||||||
|
one,
|
||||||
|
two,
|
||||||
|
three,
|
||||||
|
four,
|
||||||
|
}
|
||||||
|
static assert(!isBitFlagEnum!Invalid);
|
||||||
|
|
||||||
|
enum Negative
|
||||||
|
{
|
||||||
|
one = -1,
|
||||||
|
two = -2,
|
||||||
|
}
|
||||||
|
static assert(!isBitFlagEnum!Negative);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates that $(D_PARAM field) contains only bits from $(D_PARAM E).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* E = Some $(D_KEYWORD enum).
|
||||||
|
* field = Bit field.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if $(D_PARAM field) is valid, $(D_KEYWORD false)
|
||||||
|
* otherwise.
|
||||||
|
*/
|
||||||
|
bool containsBitFlags(E)(E field)
|
||||||
|
if (isBitFlagEnum!E)
|
||||||
|
{
|
||||||
|
OriginalType!E fillField()
|
||||||
|
{
|
||||||
|
typeof(return) full;
|
||||||
|
static foreach (member; EnumMembers!E)
|
||||||
|
{
|
||||||
|
full |= member;
|
||||||
|
}
|
||||||
|
return full;
|
||||||
|
}
|
||||||
|
enum OriginalType!E full = fillField();
|
||||||
|
return (field & ~full) == OriginalType!E.init;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
enum E
|
||||||
|
{
|
||||||
|
one,
|
||||||
|
two,
|
||||||
|
three,
|
||||||
|
}
|
||||||
|
assert(containsBitFlags(E.one | E.two));
|
||||||
|
assert(!containsBitFlags(cast(E) 0x8));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allows to use $(D_KEYWORD enum) values as a set of bit flags.
|
||||||
|
*
|
||||||
|
* $(D_PSYMBOL BitFlags) behaves the same as a bit field of type $(D_PARAM E),
|
||||||
|
* but does additional cheks to ensure that the bit field contains only valid
|
||||||
|
* values, this is only values from $(D_PARAM E).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* E = Some $(D_KEYWORD enum).
|
||||||
|
*/
|
||||||
|
struct BitFlags(E)
|
||||||
|
if (isBitFlagEnum!E)
|
||||||
|
{
|
||||||
|
private OriginalType!E field;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs $(D_PSYMBOL BitFlags) from $(D_PARAM field).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* field = Bits to be set.
|
||||||
|
*/
|
||||||
|
this(E field)
|
||||||
|
{
|
||||||
|
this.field = field;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts $(D_PSYMBOL BitFlags) to a boolean.
|
||||||
|
*
|
||||||
|
* It is $(D_KEYWORD true) if any bit is set, $(D_KEYWORD false) otherwise.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if this $(D_PSYMBOL BitFlags) contains any
|
||||||
|
* set bits, $(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
bool opCast(T : bool)()
|
||||||
|
{
|
||||||
|
return this.field != 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts to the original type of $(D_PARAM E) ($(D_KEYWORD int) by
|
||||||
|
* default).
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD this) as $(D_INLINECODE OriginalType!T).
|
||||||
|
*/
|
||||||
|
OriginalType!E opCast(T : OriginalType!E)() const
|
||||||
|
{
|
||||||
|
return this.field;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests (&), sets (|) or toggles (^) bits.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* op = Operation.
|
||||||
|
* that = 0 or more bit flags.
|
||||||
|
*
|
||||||
|
* Returns: New $(D_PSYMBOL BitFlags) object.
|
||||||
|
*/
|
||||||
|
BitFlags opBinary(string op)(E that) const
|
||||||
|
if (op == "&" || op == "|" || op == "^")
|
||||||
|
{
|
||||||
|
BitFlags result = this;
|
||||||
|
mixin("return result " ~ op ~ "= that;");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
BitFlags opBinary(string op)(BitFlags that) const
|
||||||
|
if (op == "&" || op == "|" || op == "^")
|
||||||
|
{
|
||||||
|
BitFlags result = this;
|
||||||
|
mixin("return result " ~ op ~ "= that;");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
BitFlags opBinaryRight(string op)(E that) const
|
||||||
|
if (op == "&" || op == "|" || op == "^")
|
||||||
|
{
|
||||||
|
BitFlags result = this;
|
||||||
|
mixin("return result " ~ op ~ "= that;");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests (&), sets (|) or toggles (^) bits.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* op = Operation.
|
||||||
|
* that = 0 or more bit flags.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD this).
|
||||||
|
*/
|
||||||
|
ref BitFlags opOpAssign(string op)(E that)
|
||||||
|
if (op == "&" || op == "|" || op == "^")
|
||||||
|
{
|
||||||
|
mixin("this.field " ~ op ~ "= that;");
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
ref BitFlags opOpAssign(string op)(BitFlags that)
|
||||||
|
if (op == "&" || op == "|" || op == "^")
|
||||||
|
{
|
||||||
|
mixin("this.field " ~ op ~ "= that.field;");
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inverts all bit flags.
|
||||||
|
*
|
||||||
|
* Returns: New $(D_PSYMBOL BitFlags) object with all bits inverted.
|
||||||
|
*/
|
||||||
|
BitFlags opUnary(string op : "~")() const
|
||||||
|
{
|
||||||
|
BitFlags result;
|
||||||
|
result.field = ~this.field;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Assigns a bit field.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* that = Bit field of type $(D_PARAM E).
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD this).
|
||||||
|
*/
|
||||||
|
ref BitFlags opAssign(E that)
|
||||||
|
{
|
||||||
|
this.field = that;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares this $(D_PSYMBOL BitFlags) object to another bit field.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* that = $(D_PSYMBOL BitFlags) object or a bit field of type
|
||||||
|
* $(D_PARAM E).
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if $(D_KEYWORD this) and $(D_PARAM that)
|
||||||
|
* contain the same bits ,$(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
bool opEquals(E that) const
|
||||||
|
{
|
||||||
|
return this.field == that;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
bool opEquals(BitFlags that) const
|
||||||
|
{
|
||||||
|
return this.field == that.field;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a hash value of this object.
|
||||||
|
*
|
||||||
|
* Returns: Hash value.
|
||||||
|
*/
|
||||||
|
size_t toHash() const
|
||||||
|
{
|
||||||
|
return cast(size_t) this.field;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
enum E : int
|
||||||
|
{
|
||||||
|
one = 1,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Casts to a boolean
|
||||||
|
assert(BitFlags!E(E.one));
|
||||||
|
assert(!BitFlags!E());
|
||||||
|
|
||||||
|
// Assigns to and compares with a single value
|
||||||
|
{
|
||||||
|
BitFlags!E bitFlags;
|
||||||
|
bitFlags = E.one;
|
||||||
|
assert(bitFlags == E.one);
|
||||||
|
}
|
||||||
|
// Assigns to and compares with the same type
|
||||||
|
{
|
||||||
|
auto bitFlags1 = BitFlags!E(E.one);
|
||||||
|
BitFlags!E bitFlags2;
|
||||||
|
bitFlags2 = bitFlags1;
|
||||||
|
assert(bitFlags1 == bitFlags2);
|
||||||
|
}
|
||||||
|
assert((BitFlags!E() | E.one) == BitFlags!E(E.one));
|
||||||
|
assert((BitFlags!E() | BitFlags!E(E.one)) == BitFlags!E(E.one));
|
||||||
|
|
||||||
|
assert(!(BitFlags!E() & BitFlags!E(E.one)));
|
||||||
|
|
||||||
|
assert(!(BitFlags!E(E.one) ^ E.one));
|
||||||
|
assert(BitFlags!E() ^ BitFlags!E(E.one));
|
||||||
|
|
||||||
|
assert(~BitFlags!E());
|
||||||
|
|
||||||
|
assert(BitFlags!E().toHash() == 0);
|
||||||
|
assert(BitFlags!E(E.one).toHash() != 0);
|
||||||
|
|
||||||
|
// opBinaryRight is allowed
|
||||||
|
static assert(is(typeof({ E.one | BitFlags!E(); })));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a $(D_PSYMBOL BitFlags) object initialized with $(D_PARAM field).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* E = Some $(D_KEYWORD enum).
|
||||||
|
* field = Bits to be set.
|
||||||
|
*/
|
||||||
|
BitFlags!E bitFlags(E)(E field)
|
||||||
|
if (isBitFlagEnum!E)
|
||||||
|
{
|
||||||
|
return BitFlags!E(field);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
enum E
|
||||||
|
{
|
||||||
|
one = 1 << 0,
|
||||||
|
two = 1 << 1,
|
||||||
|
three = 1 << 2,
|
||||||
|
}
|
||||||
|
// Construct with E.one and E.two set
|
||||||
|
auto flags = bitFlags(E.one | E.two);
|
||||||
|
|
||||||
|
// Test wheter E.one is set
|
||||||
|
assert(flags & E.one);
|
||||||
|
|
||||||
|
// Toggle E.one
|
||||||
|
flags ^= E.one;
|
||||||
|
assert(!(flags & E.one));
|
||||||
|
|
||||||
|
// Set E.three
|
||||||
|
flags |= E.three;
|
||||||
|
assert(flags & E.three);
|
||||||
|
|
||||||
|
// Clear E.three
|
||||||
|
flags &= ~E.three;
|
||||||
|
assert(!(flags & E.three));
|
||||||
|
}
|
@ -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,9 +352,8 @@ struct Array(T)
|
|||||||
(() @trusted => allocator.deallocate(slice(capacity)))();
|
(() @trusted => allocator.deallocate(slice(capacity)))();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
static if (isCopyable!T)
|
||||||
* Copies the array.
|
{
|
||||||
*/
|
|
||||||
this(this)
|
this(this)
|
||||||
{
|
{
|
||||||
auto buf = slice(this.length);
|
auto buf = slice(this.length);
|
||||||
@ -364,6 +361,11 @@ struct Array(T)
|
|||||||
this.data = null;
|
this.data = null;
|
||||||
insertBack(buf);
|
insertBack(buf);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@disable this(this);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes all elements.
|
* Removes all elements.
|
||||||
@ -419,28 +421,20 @@ 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_]);
|
||||||
|
}
|
||||||
|
if (len != length)
|
||||||
{
|
{
|
||||||
const T* end = this.data + length_ - 1;
|
|
||||||
for (T* e = this.data + len; e != end; ++e)
|
|
||||||
{
|
|
||||||
destroy(*e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
length_ = len;
|
length_ = len;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
@ -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);
|
||||||
@ -1554,14 +1549,14 @@ struct Array(T)
|
|||||||
{
|
{
|
||||||
struct MutableEqualsStruct
|
struct MutableEqualsStruct
|
||||||
{
|
{
|
||||||
int opEquals(typeof(this) that) @nogc nothrow pure @safe
|
bool opEquals(typeof(this) that) @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
struct ConstEqualsStruct
|
struct ConstEqualsStruct
|
||||||
{
|
{
|
||||||
int opEquals(const typeof(this) that) const @nogc nothrow pure @safe
|
bool opEquals(const typeof(this) that) const @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -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);
|
||||||
@ -386,7 +387,7 @@ struct ByValue(T)
|
|||||||
* hasher = Hash function for $(D_PARAM Key).
|
* hasher = Hash function for $(D_PARAM Key).
|
||||||
*/
|
*/
|
||||||
struct HashTable(Key, Value, alias hasher = hash)
|
struct HashTable(Key, Value, alias hasher = hash)
|
||||||
if (is(typeof(((Key k) => hasher(k))(Key.init)) == size_t))
|
if (isHashFunction!(hasher, Key))
|
||||||
{
|
{
|
||||||
private alias HashArray = .HashArray!(hasher, Key, Value);
|
private alias HashArray = .HashArray!(hasher, Key, Value);
|
||||||
private alias Buckets = HashArray.Buckets;
|
private alias Buckets = HashArray.Buckets;
|
||||||
@ -759,7 +760,7 @@ if (is(typeof(((Key k) => hasher(k))(Key.init)) == size_t))
|
|||||||
*
|
*
|
||||||
* 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 (is(typeof(((Key k) => hasher(k))(Key.init)) == size_t))
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// 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 (is(typeof(((Key k) => hasher(k))(Key.init)) == size_t))
|
|||||||
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,15 +284,19 @@ struct SList(T)
|
|||||||
clear();
|
clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
static if (isCopyable!T)
|
||||||
* Copies the list.
|
{
|
||||||
*/
|
|
||||||
this(this)
|
this(this)
|
||||||
{
|
{
|
||||||
auto list = typeof(this)(this[], this.allocator);
|
auto list = typeof(this)(this[], this.allocator);
|
||||||
this.head = list.head;
|
this.head = list.head;
|
||||||
list.head = null;
|
list.head = null;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@disable this(this);
|
||||||
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
@ -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,9 +1273,8 @@ struct DList(T)
|
|||||||
clear();
|
clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
static if (isCopyable!T)
|
||||||
* Copies the list.
|
{
|
||||||
*/
|
|
||||||
this(this)
|
this(this)
|
||||||
{
|
{
|
||||||
auto list = typeof(this)(this[], this.allocator);
|
auto list = typeof(this)(this[], this.allocator);
|
||||||
@ -1253,6 +1282,11 @@ struct DList(T)
|
|||||||
this.tail = list.tail;
|
this.tail = list.tail;
|
||||||
list.head = list .tail = null;
|
list.head = list .tail = null;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@disable this(this);
|
||||||
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
@ -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);
|
||||||
@ -154,7 +155,7 @@ struct Range(T)
|
|||||||
* hasher = Hash function for $(D_PARAM T).
|
* hasher = Hash function for $(D_PARAM T).
|
||||||
*/
|
*/
|
||||||
struct Set(T, alias hasher = hash)
|
struct Set(T, alias hasher = hash)
|
||||||
if (is(typeof(hasher(T.init)) == size_t))
|
if (isHashFunction!(hasher, T))
|
||||||
{
|
{
|
||||||
private alias HashArray = .HashArray!(hasher, T);
|
private alias HashArray = .HashArray!(hasher, T);
|
||||||
private alias Buckets = HashArray.Buckets;
|
private alias Buckets = HashArray.Buckets;
|
||||||
@ -459,7 +460,7 @@ if (is(typeof(hasher(T.init)) == size_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 (is(typeof(hasher(T.init)) == size_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)
|
||||||
@ -767,3 +768,20 @@ if (is(typeof(hasher(T.init)) == size_t))
|
|||||||
}
|
}
|
||||||
testFunc(set);
|
testFunc(set);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hasher can take argument by ref
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
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,9 +26,6 @@
|
|||||||
*/
|
*/
|
||||||
module tanya.container.string;
|
module tanya.container.string;
|
||||||
|
|
||||||
import std.algorithm.comparison : cmp;
|
|
||||||
import std.algorithm.mutation : bringToFront, copy;
|
|
||||||
import std.algorithm.searching;
|
|
||||||
import tanya.algorithm.comparison;
|
import tanya.algorithm.comparison;
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.hash.lookup;
|
import tanya.hash.lookup;
|
||||||
@ -1284,14 +1281,14 @@ struct String
|
|||||||
int opCmp(S)(auto ref S that) const @trusted
|
int opCmp(S)(auto ref S that) const @trusted
|
||||||
if (is(Unqual!S == String))
|
if (is(Unqual!S == String))
|
||||||
{
|
{
|
||||||
return cmp(this.data[0 .. length], that.data[0 .. that.length]);
|
return compare(this.data[0 .. length], that.data[0 .. that.length]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
int opCmp(S)(ByCodeUnit!S that) const @trusted
|
int opCmp(S)(ByCodeUnit!S that) const @trusted
|
||||||
if (is(Unqual!S == char))
|
if (is(Unqual!S == char))
|
||||||
{
|
{
|
||||||
return cmp(this.data[0 .. length],
|
return compare(this.data[0 .. length],
|
||||||
that.begin[0 .. that.end - that.begin]);
|
that.begin[0 .. that.end - that.begin]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1299,14 +1296,14 @@ struct String
|
|||||||
int opCmp(S)(ByCodePoint!S that) const @trusted
|
int opCmp(S)(ByCodePoint!S that) const @trusted
|
||||||
if (is(Unqual!S == char))
|
if (is(Unqual!S == char))
|
||||||
{
|
{
|
||||||
return cmp(this.data[0 .. length],
|
return compare(this.data[0 .. length],
|
||||||
that.begin[0 .. that.end - that.begin]);
|
that.begin[0 .. that.end - that.begin]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
int opCmp()(const char[] that) const @trusted
|
int opCmp()(const char[] that) const @trusted
|
||||||
{
|
{
|
||||||
return cmp(this.data[0 .. length], that);
|
return compare(this.data[0 .. length], that);
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -1486,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);
|
||||||
@ -1531,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.
|
||||||
*/
|
*/
|
||||||
@ -308,11 +356,11 @@ do
|
|||||||
{
|
{
|
||||||
digit = range.front - 'W';
|
digit = range.front - 'W';
|
||||||
}
|
}
|
||||||
else if (range.front >= 'A')
|
else if (range.front >= 'A' && range.front <= 'Z')
|
||||||
{
|
{
|
||||||
digit = range.front - '7';
|
digit = range.front - '7';
|
||||||
}
|
}
|
||||||
else if (range.front >= '0')
|
else if (range.front >= '0' && range.front <= '9')
|
||||||
{
|
{
|
||||||
digit = range.front - '0';
|
digit = range.front - '0';
|
||||||
}
|
}
|
||||||
@ -360,6 +408,15 @@ do
|
|||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ':' is not a hex value
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
string colon = ":";
|
||||||
|
auto actual = readIntegral!ubyte(colon, 16);
|
||||||
|
assert(actual == 0);
|
||||||
|
assert(colon.length == 1);
|
||||||
|
}
|
||||||
|
|
||||||
// reads ubyte.max
|
// reads ubyte.max
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
@ -847,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.
|
||||||
*
|
*
|
||||||
|
@ -17,11 +17,19 @@
|
|||||||
* To escape `{` or `}`, use `{{` and `}}` respectively. `{{` will be outputted
|
* To escape `{` or `}`, use `{{` and `}}` respectively. `{{` will be outputted
|
||||||
* as a single `{`, `}}` - as a single `}`.
|
* as a single `{`, `}}` - as a single `}`.
|
||||||
*
|
*
|
||||||
* If a custom data type (like $(D_KEYWORD struct) or $(D_KEYWORD class))
|
* To define the string representation for a custom data type (like
|
||||||
* defines a `stringify()` function that is callable without arguments and
|
* $(D_KEYWORD class) or $(D_KEYWORD struct)), `toString()`-function can be
|
||||||
* returns a $(D_PSYMBOL String), this function is used to produce a string
|
* implemented for that type. `toString()` should be $(D_KEYWORD const) and
|
||||||
* representation for the value. String conversions for the most built-in
|
* accept exactly one argument: an output range for `const(char)[]`. It should
|
||||||
* data types a also available.
|
* return the same output range, advanced after putting the corresponding value
|
||||||
|
* into it. That is `toString()` signature should look like:
|
||||||
|
*
|
||||||
|
* ---
|
||||||
|
* OR toString(OR)(OR range) const
|
||||||
|
* if (isOutputRange!(OR, const(char)[]));
|
||||||
|
* ---
|
||||||
|
*
|
||||||
|
* String conversions for the most built-in data types a also available.
|
||||||
*
|
*
|
||||||
* $(D_KEYWORD char), $(D_KEYWORD wchar) and $(D_KEYWORD dchar) ranges are
|
* $(D_KEYWORD char), $(D_KEYWORD wchar) and $(D_KEYWORD dchar) ranges are
|
||||||
* outputted as plain strings (without any delimiters between their elements).
|
* outputted as plain strings (without any delimiters between their elements).
|
||||||
@ -30,7 +38,7 @@
|
|||||||
*
|
*
|
||||||
* More advanced formatting is currently not implemented.
|
* More advanced formatting is currently not implemented.
|
||||||
*
|
*
|
||||||
* 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)
|
||||||
@ -43,12 +51,11 @@ 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;
|
||||||
import tanya.range.array;
|
import tanya.range;
|
||||||
import tanya.range.primitive;
|
|
||||||
import tanya.typecons : Tuple;
|
import tanya.typecons : Tuple;
|
||||||
|
|
||||||
// Returns the last part of buffer with converted number.
|
// Returns the last part of buffer with converted number.
|
||||||
@ -1351,7 +1358,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 +1395,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 +1910,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)
|
||||||
@ -1989,7 +1996,7 @@ private const(char)[] real2String(double value,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void formatReal(T)(ref T arg, ref String result)
|
private void formatReal(T, OR)(ref T arg, OR result)
|
||||||
if (isFloatingPoint!T)
|
if (isFloatingPoint!T)
|
||||||
{
|
{
|
||||||
char[512] buffer; // Big enough for e+308 or e-307.
|
char[512] buffer; // Big enough for e+308 or e-307.
|
||||||
@ -2017,11 +2024,11 @@ if (isFloatingPoint!T)
|
|||||||
|
|
||||||
if (negative)
|
if (negative)
|
||||||
{
|
{
|
||||||
result.insertBack('-');
|
put(result, "-");
|
||||||
}
|
}
|
||||||
if (decimalPoint == special)
|
if (decimalPoint == special)
|
||||||
{
|
{
|
||||||
result.insertBack(realString);
|
put(result, realString);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2054,7 +2061,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 +2123,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 +2131,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 +2149,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 +2180,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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2181,11 +2188,11 @@ if (isFloatingPoint!T)
|
|||||||
// Get the length that we've copied.
|
// Get the length that we've copied.
|
||||||
length = cast(uint) (buffer.length - bufferSlice.length);
|
length = cast(uint) (buffer.length - bufferSlice.length);
|
||||||
|
|
||||||
result.insertBack(buffer[64 .. length]); // Number.
|
put(result, buffer[64 .. length]); // Number.
|
||||||
result.insertBack(tail[1 .. tail[0] + 1]); // Tail.
|
put(result, tail[1 .. tail[0] + 1]); // Tail.
|
||||||
}
|
}
|
||||||
|
|
||||||
private void formatStruct(T)(ref T arg, ref String result)
|
private void formatStruct(T, OR)(ref T arg, OR result)
|
||||||
if (is(T == struct))
|
if (is(T == struct))
|
||||||
{
|
{
|
||||||
template pred(alias f)
|
template pred(alias f)
|
||||||
@ -2202,24 +2209,24 @@ if (is(T == struct))
|
|||||||
}
|
}
|
||||||
alias fields = Filter!(pred, __traits(allMembers, T));
|
alias fields = Filter!(pred, __traits(allMembers, T));
|
||||||
|
|
||||||
result.insertBack(T.stringof);
|
put(result, T.stringof);
|
||||||
result.insertBack('(');
|
put(result, "(");
|
||||||
static if (fields.length > 0)
|
static if (fields.length > 0)
|
||||||
{
|
{
|
||||||
printToString!"{}"(result, __traits(getMember, arg, fields[0]));
|
printToString!"{}"(result, __traits(getMember, arg, fields[0]));
|
||||||
foreach (field; fields[1 .. $])
|
foreach (field; fields[1 .. $])
|
||||||
{
|
{
|
||||||
result.insertBack(", ");
|
put(result, ", ");
|
||||||
printToString!"{}"(result, __traits(getMember, arg, field));
|
printToString!"{}"(result, __traits(getMember, arg, field));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
result.insertBack(')');
|
put(result, ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void formatRange(T)(ref T arg, ref String result)
|
private void formatRange(T, OR)(ref T arg, OR result)
|
||||||
if (isInputRange!T && !isInfinite!T)
|
if (isInputRange!T && !isInfinite!T)
|
||||||
{
|
{
|
||||||
result.insertBack('[');
|
put(result, "[");
|
||||||
if (!arg.empty)
|
if (!arg.empty)
|
||||||
{
|
{
|
||||||
printToString!"{}"(result, arg.front);
|
printToString!"{}"(result, arg.front);
|
||||||
@ -2227,24 +2234,24 @@ if (isInputRange!T && !isInfinite!T)
|
|||||||
}
|
}
|
||||||
foreach (e; arg)
|
foreach (e; arg)
|
||||||
{
|
{
|
||||||
result.insertBack(", ");
|
put(result, ", ");
|
||||||
printToString!"{}"(result, e);
|
printToString!"{}"(result, e);
|
||||||
}
|
}
|
||||||
result.insertBack(']');
|
put(result, "]");
|
||||||
}
|
}
|
||||||
|
|
||||||
private ref String printToString(string fmt, Args...)(return ref String result,
|
private void printToString(string fmt, OR, Args...)(ref OR result,
|
||||||
auto ref Args args)
|
auto ref Args args)
|
||||||
{
|
{
|
||||||
alias Arg = Args[0];
|
alias Arg = Args[0];
|
||||||
|
|
||||||
static if (is(Unqual!Arg == typeof(null))) // null
|
static if (is(Unqual!Arg == typeof(null))) // null
|
||||||
{
|
{
|
||||||
result.insertBack("null");
|
put(result, "null");
|
||||||
}
|
}
|
||||||
else static if (is(Unqual!Arg == bool)) // Boolean
|
else static if (is(Unqual!Arg == bool)) // Boolean
|
||||||
{
|
{
|
||||||
result.insertBack(args[0] ? "true" : "false");
|
put(result, args[0] ? "true" : "false");
|
||||||
}
|
}
|
||||||
else static if (is(Arg == enum)) // Enum
|
else static if (is(Arg == enum)) // Enum
|
||||||
{
|
{
|
||||||
@ -2252,19 +2259,19 @@ private ref String printToString(string fmt, Args...)(return ref String result,
|
|||||||
{
|
{
|
||||||
if (args[0] == __traits(getMember, Arg, m))
|
if (args[0] == __traits(getMember, Arg, m))
|
||||||
{
|
{
|
||||||
result.insertBack(m);
|
put(result, m);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else static if (isSomeChar!Arg || isSomeString!Arg) // String or char
|
else static if (isSomeChar!Arg || isSomeString!Arg) // String or char
|
||||||
{
|
{
|
||||||
result.insertBack(args[0]);
|
put(result, args[0]);
|
||||||
}
|
}
|
||||||
else static if (isInputRange!Arg
|
else static if (isInputRange!Arg
|
||||||
&& !isInfinite!Arg
|
&& !isInfinite!Arg
|
||||||
&& isSomeChar!(ElementType!Arg)) // Stringish range
|
&& isSomeChar!(ElementType!Arg)) // Stringish range
|
||||||
{
|
{
|
||||||
result.insertBack(args[0]);
|
put(result, args[0]);
|
||||||
}
|
}
|
||||||
else static if (isInputRange!Arg && !isInfinite!Arg)
|
else static if (isInputRange!Arg && !isInfinite!Arg)
|
||||||
{
|
{
|
||||||
@ -2272,29 +2279,49 @@ private ref String printToString(string fmt, Args...)(return ref String result,
|
|||||||
}
|
}
|
||||||
else static if (is(Unqual!(typeof(args[0].stringify())) == String))
|
else static if (is(Unqual!(typeof(args[0].stringify())) == String))
|
||||||
{
|
{
|
||||||
|
pragma(msg, ".stringify() is deprecated. Use toString() with an output"
|
||||||
|
~ " range instead");
|
||||||
static if (is(Arg == class) || is(Arg == interface))
|
static if (is(Arg == class) || is(Arg == interface))
|
||||||
{
|
{
|
||||||
if (args[0] is null)
|
if (args[0] is null)
|
||||||
{
|
{
|
||||||
result.insertBack("null");
|
put(result, "null");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result.insertBack(args[0].stringify()[]);
|
put(result, args[0].stringify()[]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result.insertBack(args[0].stringify()[]);
|
put(result, args[0].stringify()[]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else static if (is(typeof(args[0].toString(result)) == OR))
|
||||||
|
{
|
||||||
|
static if (is(Arg == class) || is(Arg == interface))
|
||||||
|
{
|
||||||
|
if (args[0] is null)
|
||||||
|
{
|
||||||
|
put(result, "null");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = args[0].toString(result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = args[0].toString(result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else static if (is(Arg == class))
|
else static if (is(Arg == class))
|
||||||
{
|
{
|
||||||
result.insertBack(args[0] is null ? "null" : args[0].toString());
|
put(result, args[0] is null ? "null" : args[0].toString());
|
||||||
}
|
}
|
||||||
else static if (is(Arg == interface))
|
else static if (is(Arg == interface))
|
||||||
{
|
{
|
||||||
result.insertBack(Arg.classinfo.name);
|
put(result, Arg.classinfo.name);
|
||||||
}
|
}
|
||||||
else static if (is(Arg == struct))
|
else static if (is(Arg == struct))
|
||||||
{
|
{
|
||||||
@ -2302,7 +2329,7 @@ private ref String printToString(string fmt, Args...)(return ref String result,
|
|||||||
}
|
}
|
||||||
else static if (is(Arg == union))
|
else static if (is(Arg == union))
|
||||||
{
|
{
|
||||||
result.insertBack(Arg.stringof);
|
put(result, Arg.stringof);
|
||||||
}
|
}
|
||||||
else static if (isFloatingPoint!Arg) // Float
|
else static if (isFloatingPoint!Arg) // Float
|
||||||
{
|
{
|
||||||
@ -2321,21 +2348,19 @@ private ref String printToString(string fmt, Args...)(return ref String result,
|
|||||||
}
|
}
|
||||||
while (address != 0);
|
while (address != 0);
|
||||||
|
|
||||||
result.insertBack("0x");
|
put(result, "0x");
|
||||||
result.insertBack(buffer[position .. $]);
|
put(result, buffer[position .. $]);
|
||||||
}
|
}
|
||||||
else static if (isIntegral!Arg) // Integer
|
else static if (isIntegral!Arg) // Integer
|
||||||
{
|
{
|
||||||
char[21] buffer;
|
char[21] buffer;
|
||||||
result.insertBack(integral2String(args[0], buffer));
|
put(result, integral2String(args[0], buffer));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static assert(false,
|
static assert(false,
|
||||||
"Formatting type " ~ Arg.stringof ~ " is not supported");
|
"Formatting type " ~ Arg.stringof ~ " is not supported");
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2351,28 +2376,47 @@ private ref String printToString(string fmt, Args...)(return ref String result,
|
|||||||
String format(string fmt, Args...)(auto ref Args args)
|
String format(string fmt, Args...)(auto ref Args args)
|
||||||
{
|
{
|
||||||
String formatted;
|
String formatted;
|
||||||
|
sformat!fmt(backInserter(formatted), args);
|
||||||
|
return formatted;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Produces a string according to the specified format and writes it into an
|
||||||
|
* output range. $(D_PSYMBOL sformat) writes the final string in chunks, so the
|
||||||
|
* output range should be in output range for `const(char)[]`.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* fmt = Format.
|
||||||
|
* R = Output range type.
|
||||||
|
* output = Output range.
|
||||||
|
* args = Arguments.
|
||||||
|
*
|
||||||
|
* Returns: $(D_PARAM output).
|
||||||
|
*/
|
||||||
|
R sformat(string fmt, R, Args...)(R output, auto ref Args args)
|
||||||
|
if (isOutputRange!(R, const(char)[]))
|
||||||
|
{
|
||||||
alias Specs = ParseFmt!fmt;
|
alias Specs = ParseFmt!fmt;
|
||||||
enum bool FormatSpecFilter(alias spec) = is(typeof(spec) == FormatSpec);
|
enum bool FormatSpecFilter(alias spec) = is(typeof(spec) == FormatSpec);
|
||||||
static assert((Filter!(FormatSpecFilter, ParseFmt!fmt)).length == Args.length,
|
static assert((Filter!(FormatSpecFilter, ParseFmt!fmt)).length == Args.length,
|
||||||
"Number of the arguments doesn't match the format strign");
|
"Number of the arguments doesn't match the format string");
|
||||||
|
|
||||||
foreach (spec; Specs)
|
foreach (spec; Specs)
|
||||||
{
|
{
|
||||||
static if (FormatSpecFilter!spec)
|
static if (FormatSpecFilter!spec)
|
||||||
{
|
{
|
||||||
printToString!"{}"(formatted, args[spec.position]);
|
printToString!"{}"(output, args[spec.position]);
|
||||||
}
|
}
|
||||||
else static if (isSomeString!(typeof(spec)))
|
else static if (isSomeString!(typeof(spec)))
|
||||||
{
|
{
|
||||||
formatted.insertBack(spec);
|
put(output, spec);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static assert(false, "Format string parsed incorrectly");
|
static assert(false, "Format string parsed incorrectly");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return formatted;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
// doesn't print the first argument repeatedly
|
// doesn't print the first argument repeatedly
|
||||||
@ -2507,14 +2551,15 @@ String format(string fmt, Args...)(auto ref Args args)
|
|||||||
}
|
}
|
||||||
assert(format!"{}"(Nested()) == "Nested(0)");
|
assert(format!"{}"(Nested()) == "Nested(0)");
|
||||||
|
|
||||||
static struct WithStringify
|
static struct WithToString
|
||||||
{
|
{
|
||||||
String stringify() const @nogc nothrow pure @safe
|
OR toString(OR)(OR range) const
|
||||||
{
|
{
|
||||||
return String("stringify method");
|
put(range, "toString method");
|
||||||
|
return range;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assert(format!"{}"(WithStringify()) == "stringify method");
|
assert(format!"{}"(WithToString()) == "toString method");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Aggregate types.
|
// Aggregate types.
|
||||||
@ -2536,9 +2581,10 @@ String format(string fmt, Args...)(auto ref Args args)
|
|||||||
|
|
||||||
class B
|
class B
|
||||||
{
|
{
|
||||||
String stringify() @nogc nothrow pure @safe
|
OR toString(OR)(OR range) const
|
||||||
{
|
{
|
||||||
return String("Class B");
|
put(range, "Class B");
|
||||||
|
return range;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assert(format!"{}"(cast(B) null) == "null");
|
assert(format!"{}"(cast(B) null) == "null");
|
||||||
|
@ -17,21 +17,6 @@ module tanya.functional;
|
|||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.meta.metafunction;
|
import tanya.meta.metafunction;
|
||||||
|
|
||||||
private template forwardOne(alias arg)
|
|
||||||
{
|
|
||||||
static if (__traits(isRef, arg) || __traits(isOut, arg))
|
|
||||||
{
|
|
||||||
alias forwardOne = arg;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
@property auto forwardOne()
|
|
||||||
{
|
|
||||||
return move(arg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Forwards its argument list preserving $(D_KEYWORD ref) and $(D_KEYWORD out)
|
* Forwards its argument list preserving $(D_KEYWORD ref) and $(D_KEYWORD out)
|
||||||
* storage classes.
|
* storage classes.
|
||||||
@ -46,14 +31,36 @@ private template forwardOne(alias arg)
|
|||||||
* Returns: $(D_PARAM args) with their original storage classes.
|
* Returns: $(D_PARAM args) with their original storage classes.
|
||||||
*/
|
*/
|
||||||
template forward(args...)
|
template forward(args...)
|
||||||
|
{
|
||||||
|
static if (args.length == 0)
|
||||||
|
{
|
||||||
|
alias forward = AliasSeq!();
|
||||||
|
}
|
||||||
|
else static if (__traits(isRef, args[0]) || __traits(isOut, args[0]))
|
||||||
{
|
{
|
||||||
static if (args.length == 1)
|
static if (args.length == 1)
|
||||||
{
|
{
|
||||||
alias forward = forwardOne!(args[0]);
|
alias forward = args[0];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
alias forward = Map!(forwardOne, args);
|
alias forward = AliasSeq!(args[0], forward!(args[1 .. $]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@property auto forwardOne()
|
||||||
|
{
|
||||||
|
return move(args[0]);
|
||||||
|
}
|
||||||
|
static if (args.length == 1)
|
||||||
|
{
|
||||||
|
alias forward = forwardOne;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
alias forward = AliasSeq!(forwardOne, forward!(args[1 .. $]));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,8 +16,9 @@ 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 Hasher
|
||||||
{
|
{
|
||||||
static if (size_t.sizeof == 4)
|
static if (size_t.sizeof == 4)
|
||||||
{
|
{
|
||||||
@ -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");
|
||||||
@ -44,11 +50,33 @@ private struct FNV
|
|||||||
}
|
}
|
||||||
else static if (isScalarType!T || isPointer!T)
|
else static if (isScalarType!T || isPointer!T)
|
||||||
{
|
{
|
||||||
(() @trusted => add((cast(const ubyte*) &key)[0 .. T.sizeof]))();
|
// Treat as an array of words
|
||||||
|
static if (T.sizeof % size_t.sizeof == 0
|
||||||
|
&& T.alignof >= size_t.alignof)
|
||||||
|
alias CastT = size_t;
|
||||||
|
// (64-bit or 128-bit) Treat as an array of ints
|
||||||
|
else static if (T.sizeof % uint.sizeof == 0
|
||||||
|
&& T.alignof >= uint.alignof)
|
||||||
|
alias CastT = uint;
|
||||||
|
// Treat as an array of bytes
|
||||||
|
else
|
||||||
|
alias CastT = ubyte;
|
||||||
|
add((() @trusted => (cast(const CastT*) &key)[0 .. T.sizeof / CastT.sizeof])());
|
||||||
}
|
}
|
||||||
else static if (isArray!T && isScalarType!(ElementType!T))
|
else static if (isArray!T && isScalarType!(ElementType!T))
|
||||||
{
|
{
|
||||||
add(cast(const ubyte[]) key);
|
// Treat as an array of words
|
||||||
|
static if (ElementType!T.sizeof % size_t.sizeof == 0
|
||||||
|
&& ElementType!T.alignof >= size_t.alignof)
|
||||||
|
alias CastT = size_t;
|
||||||
|
// (64-bit or 128-bit) Treat as an array of ints
|
||||||
|
else static if (ElementType!T.sizeof % uint.sizeof == 0
|
||||||
|
&& ElementType!T.alignof >= uint.alignof)
|
||||||
|
alias CastT = uint;
|
||||||
|
// Treat as an array of bytes
|
||||||
|
else
|
||||||
|
alias CastT = ubyte;
|
||||||
|
add(cast(const CastT[]) key);
|
||||||
}
|
}
|
||||||
else static if (is(T == typeof(null)))
|
else static if (is(T == typeof(null)))
|
||||||
{
|
{
|
||||||
@ -67,13 +95,166 @@ private struct FNV
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void add(const ubyte[] key) @nogc nothrow pure @safe
|
void add(scope const ubyte[] key) @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
|
// FNV-1a
|
||||||
foreach (c; key)
|
foreach (c; key)
|
||||||
{
|
{
|
||||||
this.hash = (this.hash ^ c) * prime;
|
this.hash = (this.hash ^ c) * prime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void add(scope const size_t[] key) @nogc nothrow pure @safe
|
||||||
|
{
|
||||||
|
static if (size_t.sizeof == 4)
|
||||||
|
{
|
||||||
|
// Partial MurmurHash3_x86_32 (no finalization)
|
||||||
|
enum uint c1 = 0xcc9e2d51;
|
||||||
|
enum uint c2 = 0x1b873593;
|
||||||
|
alias h1 = hash;
|
||||||
|
foreach (x; key)
|
||||||
|
{
|
||||||
|
auto k1 = x * c1;
|
||||||
|
k1 = (k1 << 15) | (k1 >> (32 - 15));
|
||||||
|
k1 *= c2;
|
||||||
|
|
||||||
|
h1 ^= k1;
|
||||||
|
h1 = (h1 << 13) | (h1 >> (32 - 13));
|
||||||
|
h1 = h1 * 5 + 0xe6546b64;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else static if (size_t.sizeof == 8)
|
||||||
|
{
|
||||||
|
// Partial 64-bit MurmurHash64A (no finalization)
|
||||||
|
alias h = hash;
|
||||||
|
enum ulong m = 0xc6a4a7935bd1e995UL;
|
||||||
|
foreach (x; key)
|
||||||
|
{
|
||||||
|
auto k = x * m;
|
||||||
|
k ^= k >>> 47;
|
||||||
|
k *= m;
|
||||||
|
|
||||||
|
h ^= k;
|
||||||
|
h *= m;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else static if (size_t.sizeof == 16)
|
||||||
|
{
|
||||||
|
// Partial MurmurHash3_x64_128 (no finalization)
|
||||||
|
// treating each size_t as a pair of ulong.
|
||||||
|
ulong h1 = cast(ulong) hash;
|
||||||
|
ulong h2 = cast(ulong) (hash >> 64);
|
||||||
|
|
||||||
|
enum ulong c1 = 0x87c37b91114253d5UL;
|
||||||
|
enum ulong c2 = 0x4cf5ad432745937fUL;
|
||||||
|
|
||||||
|
foreach (x; key)
|
||||||
|
{
|
||||||
|
auto k1 = cast(ulong) x;
|
||||||
|
auto k2 = cast(ulong) (x >> 64);
|
||||||
|
|
||||||
|
k1 *= c1; k1 = (k1 << 32) | (k1 >> (64 - 31)); k1 *= c2; h1 ^= k1;
|
||||||
|
h1 = (h1 << 27) | (h1 >> (64 - 27)); h1 += h2; h1 = h1*5+0x52dce729;
|
||||||
|
k2 *= c2; k2 = (k2 << 33) | (k2 >> (64 - 33)); k2 *= c1; h2 ^= k2;
|
||||||
|
h2 = (h2 << 31) | (h2 >> (64 - 31)); h2 += h1; h2 = h2*5+0x38495ab5;
|
||||||
|
}
|
||||||
|
|
||||||
|
hash = cast(size_t) h1 + ((cast(size_t) h2) << 64);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
static assert(0, "Hash length must be either 32, 64, or 128 bits.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (size_t.sizeof != uint.sizeof)
|
||||||
|
void add(scope const uint[] key) @nogc nothrow pure @trusted
|
||||||
|
{
|
||||||
|
static if (size_t.sizeof == 8)
|
||||||
|
{
|
||||||
|
// Partial 32-bit MurmurHash64B (no finalization)
|
||||||
|
enum uint m = 0x5bd1e995;
|
||||||
|
enum r = 24;
|
||||||
|
|
||||||
|
uint h1 = cast(uint) hash;
|
||||||
|
uint h2 = cast(uint) (hash >> 32);
|
||||||
|
const(uint)* data = key.ptr;
|
||||||
|
auto len = key.length;
|
||||||
|
|
||||||
|
for (; len >= 2; data += 2, len -= 2)
|
||||||
|
{
|
||||||
|
uint k1 = data[0];
|
||||||
|
k1 *= m; k1 ^= k1 >> r; k1 *= m;
|
||||||
|
h1 *= m; h1 ^= k1;
|
||||||
|
|
||||||
|
uint k2 = data[1];
|
||||||
|
k2 *= m; k2 ^= k2 >> r; k2 *= m;
|
||||||
|
h2 *= m; h2 ^= k2;
|
||||||
|
}
|
||||||
|
if (len)
|
||||||
|
{
|
||||||
|
uint k1 = data[0];
|
||||||
|
k1 *= m; k1 ^= k1 >> r; k1 *= m;
|
||||||
|
h1 *= m; h1 ^= k1;
|
||||||
|
}
|
||||||
|
hash = cast(ulong) h1 + ((cast(ulong) h2) << 32);
|
||||||
|
}
|
||||||
|
else static if (size_t.sizeof == 16)
|
||||||
|
{
|
||||||
|
// Partial MurmurHash3_x86_128 (no finalization)
|
||||||
|
enum uint c1 = 0x239b961b;
|
||||||
|
enum uint c2 = 0xab0e9789;
|
||||||
|
enum uint c3 = 0x38b34ae5;
|
||||||
|
enum uint c4 = 0xa1e38b93;
|
||||||
|
|
||||||
|
uint h1 = cast(uint) hash;
|
||||||
|
uint h2 = cast(uint) (hash >> 32);
|
||||||
|
uint h3 = cast(uint) (hash >> 64);
|
||||||
|
uint h4 = cast(uint) (hash >> 96);
|
||||||
|
const(uint)* data = key.ptr;
|
||||||
|
auto len = key.length;
|
||||||
|
|
||||||
|
for (; len >= 4; data += 4, len -= 4)
|
||||||
|
{
|
||||||
|
uint k1 = data[0];
|
||||||
|
uint k2 = data[1];
|
||||||
|
uint k3 = data[2];
|
||||||
|
uint k4 = data[3];
|
||||||
|
|
||||||
|
h1 = (h1 << 19) | (h1 >> (32 - 19)); h1 += h2; h1 = h1*5+0x561ccd1b;
|
||||||
|
k2 *= c2; k2 = (k2 << 16) | (k2 >> (32 - 16)); k2 *= c3; h2 ^= k2;
|
||||||
|
h2 = (h2 << 17) | (h2 >> (32 - 17)); h2 += h3; h2 = h2*5+0x0bcaa747;
|
||||||
|
k3 *= c3; k3 = (k3 << 17) | (k3 >> (32 - 17)); k3 *= c4; h3 ^= k3;
|
||||||
|
h3 = (h3 << 15) | (h3 >> (32 - 15)); h3 += h4; h3 = h3*5+0x96cd1c35;
|
||||||
|
k4 *= c4; k4 = (k4 << 18) | (k4 >> (32 - 18)); k4 *= c1; h4 ^= k4;
|
||||||
|
h4 = (h4 << 13) | (h4 >> (32 - 13)); h4 += h1; h4 = h4*5+0x32ac3b17;
|
||||||
|
}
|
||||||
|
uint k1, k2, k3;
|
||||||
|
switch (len) // 0, 1, 2, 3
|
||||||
|
{
|
||||||
|
case 3:
|
||||||
|
k3 = data[2];
|
||||||
|
k3 *= c3; k3 = (k3 << 17) | (k3 >> (32 - 17)); k3 *= c4; h3 ^= k3;
|
||||||
|
goto case;
|
||||||
|
case 2:
|
||||||
|
k2 = data[1];
|
||||||
|
k2 *= c2; k2 = (k2 << 16) | (k2 >> (32 - 16)); k2 *= c3; h2 ^= k2;
|
||||||
|
goto case;
|
||||||
|
case 1:
|
||||||
|
k1 = data[0];
|
||||||
|
k1 *= c1; k1 = (k1 << 15) | (k1 >> (32 - 15)); k1 *= c2; h1 ^= k1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
hash = cast(size_t) h1 +
|
||||||
|
((cast(size_t) h2) << 32) +
|
||||||
|
((cast(size_t) h3) << 64) +
|
||||||
|
((cast(size_t) h4) << 96);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
static assert(0, "Hash length must be either 32, 64, or 128 bits.");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -92,7 +273,8 @@ private struct FNV
|
|||||||
* For pointers and for scalar types implicitly convertible to `size_t` this
|
* For pointers and for scalar types implicitly convertible to `size_t` this
|
||||||
* is an identity operation (i.e. the value is cast to `size_t` and returned
|
* is an identity operation (i.e. the value is cast to `size_t` and returned
|
||||||
* unaltered). Integer types wider than `size_t` are XOR folded down to
|
* unaltered). Integer types wider than `size_t` are XOR folded down to
|
||||||
* `size_t`. Other scalar types use the FNV-1a (Fowler-Noll-Vo) hash function.
|
* `size_t`. Other scalar types use an architecture-dependent hash function
|
||||||
|
* based on their width and alignment.
|
||||||
* If the type provides a `toHash`-function, only `toHash()` is called and its
|
* If the type provides a `toHash`-function, only `toHash()` is called and its
|
||||||
* result is returned.
|
* result is returned.
|
||||||
*
|
*
|
||||||
@ -128,9 +310,9 @@ size_t hash(T)(auto ref T key)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
FNV fnv;
|
Hasher hasher;
|
||||||
fnv(key);
|
hasher(key);
|
||||||
return fnv.hash;
|
return hasher.hash;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,14 +323,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 +347,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,19 +368,19 @@ 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');
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (size_t.sizeof == 4) @nogc nothrow pure @safe unittest
|
static if (size_t.sizeof == 4) @nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(hash(HashRange()) == 0x6222e842U);
|
assert(hash(HashRange()) == 0x6222e842U);
|
||||||
assert(hash(ToHashRange()) == 1268118805U);
|
assert(hash(ToHashRange()) == 3371162643U);
|
||||||
}
|
}
|
||||||
static if (size_t.sizeof == 8) @nogc nothrow pure @safe unittest
|
static if (size_t.sizeof == 8) @nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
assert(hash(HashRange()) == 0x08985907b541d342UL);
|
assert(hash(HashRange()) == 0x08985907b541d342UL);
|
||||||
assert(hash(ToHashRange()) == 12161962213042174405UL);
|
assert(hash(ToHashRange()) == 2072958611659694473);
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (size_t.sizeof == 4) @nogc nothrow pure @system unittest
|
static if (size_t.sizeof == 4) @nogc nothrow pure @system unittest
|
||||||
@ -636,3 +810,27 @@ static if (size_t.sizeof == 8) @nogc nothrow pure @safe unittest
|
|||||||
assert(hash(r500!"~") == 0xc1af12bdfe16b5b5UL);
|
assert(hash(r500!"~") == 0xc1af12bdfe16b5b5UL);
|
||||||
assert(hash(r500!"\x7f") == 0x39e9f18f2f85e221UL);
|
assert(hash(r500!"\x7f") == 0x39e9f18f2f85e221UL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether $(D_PARAM hasher) is hash function for $(D_PARAM T), i.e.
|
||||||
|
* it is callable with a value of type $(D_PARAM T) and returns a
|
||||||
|
* $(D_PSYMBOL size_t) value.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* hasher = Hash function candidate.
|
||||||
|
* T = Type to test the hash function with.
|
||||||
|
*
|
||||||
|
* Returns: $(D_KEYWORD true) if $(D_PARAM hasher) is a hash function for
|
||||||
|
* $(D_PARAM T), $(D_KEYWORD false) otherwise.
|
||||||
|
*/
|
||||||
|
template isHashFunction(alias hasher, T)
|
||||||
|
{
|
||||||
|
private alias wrapper = (T x) => hasher(x);
|
||||||
|
enum bool isHashFunction = is(typeof(wrapper(T.init)) == size_t);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
static assert(isHashFunction!(hash, int));
|
||||||
|
}
|
||||||
|
@ -14,17 +14,15 @@
|
|||||||
*/
|
*/
|
||||||
module tanya.math.mp;
|
module tanya.math.mp;
|
||||||
|
|
||||||
import std.algorithm.comparison : cmp;
|
|
||||||
import std.algorithm.mutation : copy, fill, reverse;
|
|
||||||
import std.range;
|
|
||||||
import tanya.algorithm.comparison;
|
import tanya.algorithm.comparison;
|
||||||
|
import tanya.algorithm.iteration;
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.container.array;
|
import tanya.container.array;
|
||||||
import tanya.encoding.ascii;
|
import tanya.encoding.ascii;
|
||||||
import tanya.memory;
|
import tanya.memory;
|
||||||
static import tanya.memory.op;
|
|
||||||
import tanya.meta.trait;
|
import tanya.meta.trait;
|
||||||
import tanya.meta.transform;
|
import tanya.meta.transform;
|
||||||
|
import tanya.range;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Algebraic sign.
|
* Algebraic sign.
|
||||||
@ -211,7 +209,7 @@ struct Integer
|
|||||||
this(this) @nogc nothrow pure @safe
|
this(this) @nogc nothrow pure @safe
|
||||||
{
|
{
|
||||||
auto tmp = allocator.resize!digit(null, this.size);
|
auto tmp = allocator.resize!digit(null, this.size);
|
||||||
tanya.memory.op.copy(this.rep[0 .. this.size], tmp);
|
copy(this.rep[0 .. this.size], tmp);
|
||||||
this.rep = tmp;
|
this.rep = tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -344,8 +342,7 @@ struct Integer
|
|||||||
if (is(Unqual!T == Integer))
|
if (is(Unqual!T == Integer))
|
||||||
{
|
{
|
||||||
this.rep = allocator.resize(this.rep, value.size);
|
this.rep = allocator.resize(this.rep, value.size);
|
||||||
tanya.memory.op.copy(value.rep[0 .. value.size],
|
copy(value.rep[0 .. value.size], this.rep[0 .. value.size]);
|
||||||
this.rep[0 .. value.size]);
|
|
||||||
this.size = value.size;
|
this.size = value.size;
|
||||||
this.sign = value.sign;
|
this.sign = value.sign;
|
||||||
|
|
||||||
@ -631,7 +628,7 @@ struct Integer
|
|||||||
}
|
}
|
||||||
return this.rep[0 .. this.size]
|
return this.rep[0 .. this.size]
|
||||||
.retro
|
.retro
|
||||||
.cmp(that.rep[0 .. that.size].retro);
|
.compare(that.rep[0 .. that.size].retro);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -932,7 +929,7 @@ struct Integer
|
|||||||
const shift = digitBitCount - bit;
|
const shift = digitBitCount - bit;
|
||||||
digit carry;
|
digit carry;
|
||||||
|
|
||||||
foreach (ref d; this.rep[0 .. this.size].retro)
|
foreach_reverse (ref d; this.rep[0 .. this.size])
|
||||||
{
|
{
|
||||||
const newCarry = d & mask;
|
const newCarry = d & mask;
|
||||||
d = (d >> bit) | (carry << shift);
|
d = (d >> bit) | (carry << shift);
|
||||||
@ -1508,14 +1505,11 @@ struct Integer
|
|||||||
tmp = this;
|
tmp = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
do
|
array.length = length;
|
||||||
|
for (size_t i = array.length - 1; tmp != 0; tmp >>= 8, --i)
|
||||||
{
|
{
|
||||||
array.insertBack(cast(ubyte) (tmp.rep[0] & 0xff));
|
array[i] = (cast(ubyte) (tmp.rep[0] & 0xff));
|
||||||
tmp >>= 8;
|
|
||||||
}
|
}
|
||||||
while (tmp != 0);
|
|
||||||
|
|
||||||
array[].reverse();
|
|
||||||
|
|
||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
|
@ -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
|
|
||||||
if (!CryptAcquireContextA(&hProvider, null, null, PROV_RSA_FULL, CRYPT_NEWKEYSET | CRYPT_SILENT))
|
|
||||||
return false;
|
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
|
static if (is(PlatformEntropySource)) @nogc @system unittest
|
||||||
{
|
{
|
||||||
auto entropy = defaultAllocator.make!Entropy();
|
import tanya.memory.smartref : unique;
|
||||||
ubyte[blockSize] output;
|
|
||||||
output = entropy.random;
|
|
||||||
|
|
||||||
defaultAllocator.dispose(entropy);
|
auto source = defaultAllocator.unique!PlatformEntropySource();
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
assert(source.threshold == 32);
|
||||||
* Pseudorandom number generator.
|
assert(source.strong);
|
||||||
* ---
|
|
||||||
* auto entropy = defaultAllocator.make!Entropy();
|
|
||||||
*
|
|
||||||
* ubyte[blockSize] output;
|
|
||||||
*
|
|
||||||
* output = entropy.random;
|
|
||||||
*
|
|
||||||
* defaultAllocator.dispose(entropy);
|
|
||||||
* ---
|
|
||||||
*/
|
|
||||||
class Entropy
|
|
||||||
{
|
|
||||||
/// Entropy sources.
|
|
||||||
protected EntropySource[] sources;
|
|
||||||
|
|
||||||
private ubyte sourceCount_;
|
|
||||||
|
|
||||||
/// Entropy accumulator.
|
|
||||||
protected SHA!(maxGather * 8, 512) accumulator;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 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);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -305,7 +236,7 @@ do
|
|||||||
* first occurrence of $(D_PARAM needle). If $(D_PARAM needle)
|
* first occurrence of $(D_PARAM needle). If $(D_PARAM needle)
|
||||||
* couldn't be found, an empty `inout void[]` is returned.
|
* couldn't be found, an empty `inout void[]` is returned.
|
||||||
*/
|
*/
|
||||||
inout(void[]) find(return inout void[] haystack, const ubyte needle)
|
inout(void[]) find(return inout void[] haystack, ubyte needle)
|
||||||
@nogc nothrow pure @trusted
|
@nogc nothrow pure @trusted
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
@ -326,19 +257,19 @@ do
|
|||||||
{
|
{
|
||||||
return bytes[0 .. length];
|
return bytes[0 .. length];
|
||||||
}
|
}
|
||||||
bytes++;
|
++bytes;
|
||||||
length--;
|
--length;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if some of the words has the needle
|
// Check if some of the words has the needle
|
||||||
auto words = cast(inout(size_t)*) bytes;
|
auto words = cast(inout(size_t)*) bytes;
|
||||||
while (length >= size_t.sizeof)
|
while (length >= size_t.sizeof)
|
||||||
{
|
{
|
||||||
if (((*words ^ needleWord) - highBits) & (~*words) & mask)
|
if ((((*words ^ needleWord) - highBits) & (~*words) & mask) != 0)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
words++;
|
++words;
|
||||||
length -= size_t.sizeof;
|
length -= size_t.sizeof;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -350,8 +281,8 @@ do
|
|||||||
{
|
{
|
||||||
return bytes[0 .. length];
|
return bytes[0 .. length];
|
||||||
}
|
}
|
||||||
bytes++;
|
++bytes;
|
||||||
length--;
|
--length;
|
||||||
}
|
}
|
||||||
|
|
||||||
return haystack[$ .. $];
|
return haystack[$ .. $];
|
||||||
@ -362,14 +293,145 @@ 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(find(haystack, 'a') == haystack[]);
|
assert(equal(find(haystack, 'a'), haystack[]));
|
||||||
assert(find(haystack, 'b') == haystack[1 .. $]);
|
assert(equal(find(haystack, 'b'), haystack[1 .. $]));
|
||||||
assert(find(haystack, 'c') == haystack[2 .. $]);
|
assert(equal(find(haystack, 'c'), haystack[2 .. $]));
|
||||||
assert(find(haystack, 'd') == haystack[3 .. $]);
|
assert(equal(find(haystack, 'd'), haystack[3 .. $]));
|
||||||
assert(find(haystack, 'e') == haystack[4 .. $]);
|
assert(equal(find(haystack, 'e'), haystack[4 .. $]));
|
||||||
assert(find(haystack, 'f') == haystack[5 .. $]);
|
assert(equal(find(haystack, 'f'), haystack[5 .. $]));
|
||||||
assert(find(haystack, 'h') == haystack[8 .. $]);
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Looks for `\0` in the $(D_PARAM haystack) and returns the part of the
|
||||||
|
* $(D_PARAM haystack) ahead of it.
|
||||||
|
*
|
||||||
|
* Returns $(D_KEYWORD null) if $(D_PARAM haystack) doesn't contain a null
|
||||||
|
* character.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* haystack = Memory block.
|
||||||
|
*
|
||||||
|
* Returns: The subrange that spans all bytes before the null character or
|
||||||
|
* $(D_KEYWORD null) if the $(D_PARAM haystack) doesn't contain any.
|
||||||
|
*/
|
||||||
|
inout(char[]) findNullTerminated(return inout char[] haystack)
|
||||||
|
@nogc nothrow pure @trusted
|
||||||
|
in
|
||||||
|
{
|
||||||
|
assert(haystack.length == 0 || haystack.ptr !is null);
|
||||||
|
}
|
||||||
|
do
|
||||||
|
{
|
||||||
|
auto length = haystack.length;
|
||||||
|
enum size_t highBits = filledBytes!(0x01, 0);
|
||||||
|
enum size_t mask = filledBytes!(0x80, 0);
|
||||||
|
|
||||||
|
// Align
|
||||||
|
auto bytes = cast(inout(ubyte)*) haystack;
|
||||||
|
while (length > 0 && ((cast(size_t) bytes) & 3) != 0)
|
||||||
|
{
|
||||||
|
if (*bytes == '\0')
|
||||||
|
{
|
||||||
|
return haystack[0 .. haystack.length - length];
|
||||||
|
}
|
||||||
|
++bytes;
|
||||||
|
--length;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if some of the words contains 0
|
||||||
|
auto words = cast(inout(size_t)*) bytes;
|
||||||
|
while (length >= size_t.sizeof)
|
||||||
|
{
|
||||||
|
if (((*words - highBits) & (~*words) & mask) != 0)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
++words;
|
||||||
|
length -= size_t.sizeof;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find the exact 0 position in the word
|
||||||
|
bytes = cast(inout(ubyte)*) words;
|
||||||
|
while (length > 0)
|
||||||
|
{
|
||||||
|
if (*bytes == '\0')
|
||||||
|
{
|
||||||
|
return haystack[0 .. haystack.length - length];
|
||||||
|
}
|
||||||
|
++bytes;
|
||||||
|
--length;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(equal(findNullTerminated("abcdef\0gh"), "abcdef"));
|
||||||
|
assert(equal(findNullTerminated("\0garbage"), ""));
|
||||||
|
assert(equal(findNullTerminated("\0"), ""));
|
||||||
|
assert(equal(findNullTerminated("cstring\0"), "cstring"));
|
||||||
|
assert(findNullTerminated(null) 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;
|
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.
|
||||||
@ -1601,7 +1603,7 @@ if (is(T == class) || is(T == struct) || is(T == union))
|
|||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
pure nothrow @safe unittest
|
@nogc pure nothrow @safe unittest
|
||||||
{
|
{
|
||||||
static struct S
|
static struct S
|
||||||
{
|
{
|
||||||
@ -2613,14 +2615,23 @@ if (is(T == enum))
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
alias getEnumMembers = AliasSeq!(__traits(getMember, T, Args[0]), getEnumMembers!(Args[1 .. $]));
|
alias getEnumMembers = AliasSeq!(__traits(getMember, T, Args[0]),
|
||||||
|
getEnumMembers!(Args[1 .. $]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
alias EnumMembers = getEnumMembers!(__traits(allMembers, T));
|
private alias allMembers = AliasSeq!(__traits(allMembers, T));
|
||||||
|
static if (allMembers.length == 1)
|
||||||
|
{
|
||||||
|
alias EnumMembers = AliasSeq!(__traits(getMember, T, allMembers));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
alias EnumMembers = getEnumMembers!allMembers;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
pure nothrow @nogc @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
enum E : int
|
enum E : int
|
||||||
{
|
{
|
||||||
@ -2628,7 +2639,17 @@ pure nothrow @nogc @safe unittest
|
|||||||
two,
|
two,
|
||||||
three,
|
three,
|
||||||
}
|
}
|
||||||
static assert([E.one, E.two, E.three] == [ EnumMembers!E ]);
|
static assert([EnumMembers!E] == [E.one, E.two, E.three]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Produces a tuple for an enum with only one member
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
enum E : int
|
||||||
|
{
|
||||||
|
one = 0,
|
||||||
|
}
|
||||||
|
static assert(EnumMembers!E == AliasSeq!0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2835,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.
|
||||||
|
228
source/tanya/net/iface.d
Normal file
228
source/tanya/net/iface.d
Normal file
@ -0,0 +1,228 @@
|
|||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Network interfaces.
|
||||||
|
*
|
||||||
|
* 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/net/iface.d,
|
||||||
|
* tanya/net/iface.d)
|
||||||
|
*/
|
||||||
|
module tanya.net.iface;
|
||||||
|
|
||||||
|
import tanya.algorithm.comparison;
|
||||||
|
import tanya.algorithm.mutation;
|
||||||
|
import tanya.container.string;
|
||||||
|
import tanya.meta.trait;
|
||||||
|
import tanya.meta.transform;
|
||||||
|
import tanya.range;
|
||||||
|
|
||||||
|
version (TanyaNative)
|
||||||
|
{
|
||||||
|
import mir.linux._asm.unistd;
|
||||||
|
import tanya.sys.linux.syscall;
|
||||||
|
import tanya.sys.posix.ioctl;
|
||||||
|
import tanya.sys.posix.net.if_;
|
||||||
|
import tanya.sys.posix.socket;
|
||||||
|
}
|
||||||
|
else version (Windows)
|
||||||
|
{
|
||||||
|
import tanya.sys.windows.ifdef;
|
||||||
|
import tanya.sys.windows.iphlpapi;
|
||||||
|
}
|
||||||
|
else version (Posix)
|
||||||
|
{
|
||||||
|
import core.sys.posix.net.if_;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts the name of a network interface to its index.
|
||||||
|
*
|
||||||
|
* If an interface with the name $(D_PARAM name) cannot be found or another
|
||||||
|
* error occurres, returns 0.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* name = Interface name.
|
||||||
|
*
|
||||||
|
* Returns: Returns interface index or 0.
|
||||||
|
*/
|
||||||
|
uint nameToIndex(R)(R name) @trusted
|
||||||
|
if (isInputRange!R && is(Unqual!(ElementType!R) == char) && hasLength!R)
|
||||||
|
{
|
||||||
|
version (TanyaNative)
|
||||||
|
{
|
||||||
|
if (name.length >= IF_NAMESIZE)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
ifreq ifreq_ = void;
|
||||||
|
|
||||||
|
copy(name, ifreq_.ifr_name[]);
|
||||||
|
ifreq_.ifr_name[name.length] = '\0';
|
||||||
|
|
||||||
|
auto socket = syscall(AF_INET,
|
||||||
|
SOCK_DGRAM | SOCK_CLOEXEC,
|
||||||
|
0,
|
||||||
|
NR_socket);
|
||||||
|
if (socket <= 0)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
scope (exit)
|
||||||
|
{
|
||||||
|
syscall(socket, NR_close);
|
||||||
|
}
|
||||||
|
if (syscall(socket,
|
||||||
|
SIOCGIFINDEX,
|
||||||
|
cast(ptrdiff_t) &ifreq_,
|
||||||
|
NR_ioctl) == 0)
|
||||||
|
{
|
||||||
|
return ifreq_.ifr_ifindex;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
else version (Windows)
|
||||||
|
{
|
||||||
|
if (name.length > IF_MAX_STRING_SIZE)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
char[IF_MAX_STRING_SIZE + 1] buffer;
|
||||||
|
NET_LUID luid;
|
||||||
|
|
||||||
|
copy(name, buffer[]);
|
||||||
|
buffer[name.length] = '\0';
|
||||||
|
|
||||||
|
if (ConvertInterfaceNameToLuidA(buffer.ptr, &luid) != 0)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
NET_IFINDEX index;
|
||||||
|
if (ConvertInterfaceLuidToIndex(&luid, &index) == 0)
|
||||||
|
{
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
else version (Posix)
|
||||||
|
{
|
||||||
|
if (name.length >= IF_NAMESIZE)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
char[IF_NAMESIZE] buffer;
|
||||||
|
|
||||||
|
copy(name, buffer[]);
|
||||||
|
buffer[name.length] = '\0';
|
||||||
|
|
||||||
|
return if_nametoindex(buffer.ptr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow @safe unittest
|
||||||
|
{
|
||||||
|
version (linux)
|
||||||
|
{
|
||||||
|
assert(nameToIndex("lo") == 1);
|
||||||
|
}
|
||||||
|
else version (Windows)
|
||||||
|
{
|
||||||
|
assert(nameToIndex("loopback_0") == 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
assert(nameToIndex("lo0") == 1);
|
||||||
|
}
|
||||||
|
assert(nameToIndex("ecafretni") == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts the index of a network interface to its name.
|
||||||
|
*
|
||||||
|
* If an interface with the $(D_PARAM index) cannot be found or another
|
||||||
|
* error occurres, returns an empty $(D_PSYMBOL String).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* index = Interface index.
|
||||||
|
*
|
||||||
|
* Returns: Returns interface name or an empty $(D_PSYMBOL String).
|
||||||
|
*/
|
||||||
|
String indexToName(uint index) @nogc nothrow @trusted
|
||||||
|
{
|
||||||
|
import tanya.memory.op : findNullTerminated;
|
||||||
|
|
||||||
|
version (TanyaNative)
|
||||||
|
{
|
||||||
|
ifreq ifreq_ = void;
|
||||||
|
ifreq_.ifr_ifindex = index;
|
||||||
|
|
||||||
|
auto socket = syscall(AF_INET,
|
||||||
|
SOCK_DGRAM | SOCK_CLOEXEC,
|
||||||
|
0,
|
||||||
|
NR_socket);
|
||||||
|
if (socket <= 0)
|
||||||
|
{
|
||||||
|
return String();
|
||||||
|
}
|
||||||
|
scope (exit)
|
||||||
|
{
|
||||||
|
syscall(socket, NR_close);
|
||||||
|
}
|
||||||
|
if (syscall(socket,
|
||||||
|
SIOCGIFNAME,
|
||||||
|
cast(ptrdiff_t) &ifreq_,
|
||||||
|
NR_ioctl) == 0)
|
||||||
|
{
|
||||||
|
return String(findNullTerminated(ifreq_.ifr_name));
|
||||||
|
}
|
||||||
|
return String();
|
||||||
|
}
|
||||||
|
else version (Windows)
|
||||||
|
{
|
||||||
|
NET_LUID luid;
|
||||||
|
if (ConvertInterfaceIndexToLuid(index, &luid) != 0)
|
||||||
|
{
|
||||||
|
return String();
|
||||||
|
}
|
||||||
|
|
||||||
|
char[IF_MAX_STRING_SIZE + 1] buffer;
|
||||||
|
if (ConvertInterfaceLuidToNameA(&luid,
|
||||||
|
buffer.ptr,
|
||||||
|
IF_MAX_STRING_SIZE + 1) != 0)
|
||||||
|
{
|
||||||
|
return String();
|
||||||
|
}
|
||||||
|
return String(findNullTerminated(buffer));
|
||||||
|
}
|
||||||
|
else version (Posix)
|
||||||
|
{
|
||||||
|
char[IF_NAMESIZE] buffer;
|
||||||
|
if (if_indextoname(index, buffer.ptr) is null)
|
||||||
|
{
|
||||||
|
return String();
|
||||||
|
}
|
||||||
|
return String(findNullTerminated(buffer));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@nogc nothrow @safe unittest
|
||||||
|
{
|
||||||
|
version (linux)
|
||||||
|
{
|
||||||
|
assert(equal(indexToName(1)[], "lo"));
|
||||||
|
}
|
||||||
|
else version (Windows)
|
||||||
|
{
|
||||||
|
assert(equal(indexToName(1)[], "loopback_0"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
assert(equal(indexToName(1)[], "lo0"));
|
||||||
|
}
|
||||||
|
assert(indexToName(uint.max).empty);
|
||||||
|
}
|
1478
source/tanya/net/ip.d
Normal file
1478
source/tanya/net/ip.d
Normal file
File diff suppressed because it is too large
Load Diff
@ -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.
|
||||||
|
@ -3,15 +3,9 @@
|
|||||||
* 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.
|
* Range adapters transform some data structures into ranges.
|
||||||
*
|
*
|
||||||
* A range adapter wraps another range and modifies the way, how the original
|
* Copyright: Eugene Wissner 2018-2019.
|
||||||
* 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.
|
|
||||||
* 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)
|
||||||
@ -21,355 +15,216 @@
|
|||||||
module tanya.range.adapter;
|
module tanya.range.adapter;
|
||||||
|
|
||||||
import tanya.algorithm.mutation;
|
import tanya.algorithm.mutation;
|
||||||
import tanya.math;
|
import tanya.functional;
|
||||||
import tanya.range.primitive;
|
import tanya.meta.trait;
|
||||||
|
import tanya.range;
|
||||||
|
|
||||||
private mixin template Take(R, bool exactly)
|
version (unittest)
|
||||||
{
|
{
|
||||||
private R source;
|
static struct Container
|
||||||
size_t length_;
|
|
||||||
|
|
||||||
@disable this();
|
|
||||||
|
|
||||||
private this(R source, size_t length)
|
|
||||||
{
|
{
|
||||||
this.source = source;
|
void insertBack(const(char)[])
|
||||||
static if (!exactly && hasLength!R)
|
|
||||||
{
|
{
|
||||||
this.length_ = min(source.length, length);
|
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
this.length_ = length;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@property auto ref front()
|
private mixin template InserterCtor()
|
||||||
in
|
|
||||||
{
|
{
|
||||||
assert(!empty);
|
private Container* container;
|
||||||
}
|
|
||||||
do
|
|
||||||
{
|
|
||||||
return this.source.front;
|
|
||||||
}
|
|
||||||
|
|
||||||
void popFront()
|
private this(ref Container container) @trusted
|
||||||
in
|
|
||||||
{
|
{
|
||||||
assert(!empty);
|
this.container = &container;
|
||||||
}
|
|
||||||
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 container) is a container with `insertBack`-support,
|
||||||
|
* $(D_PSYMBOL backInserter) returns an output range that puts the elements
|
||||||
|
* into the container with `insertBack`.
|
||||||
*
|
*
|
||||||
* If $(D_PARAM range) doesn't have $(D_PARAM n) elements, the resulting range
|
* The resulting output range supports all types `insertBack` supports.
|
||||||
* spans all elements of $(D_PARAM range).
|
|
||||||
*
|
*
|
||||||
* $(D_PSYMBOL take) is particulary useful with infinite ranges. You can take
|
* The range keeps a reference to the container passed to it, it doesn't use
|
||||||
` $(B n) elements from such range and pass the result to an algorithm which
|
* any other storage. So there is no method to get the written data out of the
|
||||||
* expects a finit range.
|
* range - the container passed to $(D_PSYMBOL backInserter) contains that data
|
||||||
|
* and can be used directly after all operations on the output range are
|
||||||
|
* completed. It also means that the result range is not allowed to outlive its
|
||||||
|
* container.
|
||||||
*
|
*
|
||||||
* Params:
|
* Params:
|
||||||
* R = Type of the adapted range.
|
* Container = Container type.
|
||||||
* range = The range to take the elements from.
|
* container = Container used as an output range.
|
||||||
* n = The number of elements to take.
|
|
||||||
*
|
*
|
||||||
* Returns: A range containing maximum $(D_PARAM n) first elements of
|
* Returns: `insertBack`-based output range.
|
||||||
* $(D_PARAM range).
|
|
||||||
*
|
|
||||||
* See_Also: $(D_PSYMBOL takeExactly).
|
|
||||||
*/
|
*/
|
||||||
auto take(R)(R range, size_t n)
|
auto backInserter(Container)(return scope ref Container container)
|
||||||
if (isInputRange!R)
|
if (hasMember!(Container, "insertBack"))
|
||||||
{
|
{
|
||||||
struct Take
|
static struct Inserter
|
||||||
{
|
{
|
||||||
mixin .Take!(R, false);
|
void opCall(T)(auto ref T data)
|
||||||
|
{
|
||||||
|
this.container.insertBack(forward!data);
|
||||||
}
|
}
|
||||||
return Take(range, n);
|
|
||||||
|
mixin InserterCtor;
|
||||||
|
}
|
||||||
|
return Inserter(container);
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
static struct InfiniteRange
|
static struct Container
|
||||||
{
|
{
|
||||||
private size_t front_ = 1;
|
int element;
|
||||||
|
|
||||||
enum bool empty = false;
|
void insertBack(int element)
|
||||||
|
|
||||||
@property size_t front() @nogc nothrow pure @safe
|
|
||||||
{
|
{
|
||||||
return this.front_;
|
this.element = element;
|
||||||
}
|
|
||||||
|
|
||||||
@property void front(size_t i) @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
this.front_ = i;
|
|
||||||
}
|
|
||||||
|
|
||||||
void popFront() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
++this.front_;
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t opIndex(size_t i) @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this.front_ + i;
|
|
||||||
}
|
|
||||||
|
|
||||||
void opIndexAssign(size_t value, size_t i) @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
this.front = i + value;
|
|
||||||
}
|
|
||||||
|
|
||||||
InfiniteRange save() @nogc nothrow pure @safe
|
|
||||||
{
|
|
||||||
return this;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Container container;
|
||||||
|
backInserter(container)(5);
|
||||||
|
|
||||||
auto t = InfiniteRange().take(3);
|
assert(container.element == 5);
|
||||||
assert(t.length == 3);
|
}
|
||||||
assert(t.front == 1);
|
|
||||||
assert(t.back == 3);
|
|
||||||
|
|
||||||
t.popFront();
|
@nogc nothrow pure @safe unittest
|
||||||
assert(t.front == 2);
|
{
|
||||||
assert(t.back == 3);
|
auto func()()
|
||||||
|
{
|
||||||
|
Container container;
|
||||||
|
return backInserter(container);
|
||||||
|
}
|
||||||
|
static assert(!is(typeof(func!())));
|
||||||
|
}
|
||||||
|
|
||||||
t.popBack();
|
@nogc nothrow pure @safe unittest
|
||||||
assert(t.front == 2);
|
{
|
||||||
assert(t.back == 2);
|
Container container;
|
||||||
|
static assert(isOutputRange!(typeof(backInserter(container)), string));
|
||||||
t.popFront();
|
|
||||||
assert(t.empty);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Takes exactly $(D_PARAM n) elements from $(D_PARAM range).
|
* If $(D_PARAM container) is a container with `insertFront`-support,
|
||||||
|
* $(D_PSYMBOL frontInserter) returns an output range that puts the elements
|
||||||
|
* into the container with `insertFront`.
|
||||||
*
|
*
|
||||||
* $(D_PARAM range) must have at least $(D_PARAM n) elements.
|
* The resulting output range supports all types `insertFront` supports.
|
||||||
*
|
*
|
||||||
* $(D_PSYMBOL takeExactly) is particulary useful with infinite ranges. You can
|
* The range keeps a reference to the container passed to it, it doesn't use
|
||||||
` take $(B n) elements from such range and pass the result to an algorithm
|
* any other storage. So there is no method to get the written data out of the
|
||||||
* which expects a finit range.
|
* range - the container passed to $(D_PSYMBOL frontInserter) contains that data
|
||||||
|
* and can be used directly after all operations on the output range are
|
||||||
|
* completed. It also means that the result range is not allowed to outlive its
|
||||||
|
* container.
|
||||||
*
|
*
|
||||||
* Params:
|
* Params:
|
||||||
* R = Type of the adapted range.
|
* Container = Container type.
|
||||||
* range = The range to take the elements from.
|
* container = Container used as an output range.
|
||||||
* n = The number of elements to take.
|
|
||||||
*
|
*
|
||||||
* Returns: A range containing $(D_PARAM n) first elements of $(D_PARAM range).
|
* Returns: `insertFront`-based output range.
|
||||||
*
|
|
||||||
* See_Also: $(D_PSYMBOL take).
|
|
||||||
*/
|
*/
|
||||||
auto takeExactly(R)(R range, size_t n)
|
auto frontInserter(Container)(return scope ref Container container)
|
||||||
if (isInputRange!R)
|
if (hasMember!(Container, "insertFront"))
|
||||||
{
|
{
|
||||||
struct TakeExactly
|
static struct Inserter
|
||||||
{
|
{
|
||||||
mixin Take!(R, true);
|
void opCall(T)(auto ref T data)
|
||||||
|
{
|
||||||
|
this.container.insertFront(forward!data);
|
||||||
}
|
}
|
||||||
return TakeExactly(range, n);
|
|
||||||
|
mixin InserterCtor;
|
||||||
|
}
|
||||||
|
return Inserter(container);
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@nogc nothrow pure @safe unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
static struct InfiniteRange
|
static struct Container
|
||||||
{
|
{
|
||||||
private size_t front_ = 1;
|
int element;
|
||||||
|
|
||||||
enum bool empty = false;
|
void insertFront(int element)
|
||||||
|
|
||||||
@property size_t front() @nogc nothrow pure @safe
|
|
||||||
{
|
{
|
||||||
return this.front_;
|
this.element = element;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Container container;
|
||||||
|
frontInserter(container)(5);
|
||||||
|
|
||||||
|
assert(container.element == 5);
|
||||||
}
|
}
|
||||||
|
|
||||||
@property void front(size_t i) @nogc nothrow pure @safe
|
/**
|
||||||
|
* $(D_PSYMBOL arrayInserter) makes an output range out of an array.
|
||||||
|
*
|
||||||
|
* The returned output range accepts single values as well as input ranges that
|
||||||
|
* can be copied into the target array.
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Array = Array type.
|
||||||
|
* array = Array.
|
||||||
|
*
|
||||||
|
* Returns: An output range writing into $(D_PARAM array).
|
||||||
|
*/
|
||||||
|
auto arrayInserter(Array)(return scope ref Array array)
|
||||||
|
if (isArray!Array)
|
||||||
{
|
{
|
||||||
this.front_ = i;
|
static if (is(Array ArrayT : ArrayT[size], size_t size))
|
||||||
}
|
|
||||||
|
|
||||||
void popFront() @nogc nothrow pure @safe
|
|
||||||
{
|
{
|
||||||
++this.front_;
|
alias E = ArrayT;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
size_t opIndex(size_t i) @nogc nothrow pure @safe
|
|
||||||
{
|
{
|
||||||
return this.front_ + i;
|
alias E = ElementType!Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
void opIndexAssign(size_t value, size_t i) @nogc nothrow pure @safe
|
static struct ArrayInserter
|
||||||
{
|
{
|
||||||
this.front = i + value;
|
private E[] data;
|
||||||
}
|
|
||||||
|
|
||||||
InfiniteRange save() @nogc nothrow pure @safe
|
private this(ref Array data) @trusted
|
||||||
{
|
{
|
||||||
return this;
|
this.data = data[];
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
auto t = InfiniteRange().takeExactly(3);
|
void opCall(T)(auto ref T data)
|
||||||
assert(t.length == 3);
|
if (is(T : E))
|
||||||
assert(t.front == 1);
|
in (!this.data.empty)
|
||||||
assert(t.back == 3);
|
{
|
||||||
|
put(this.data, data);
|
||||||
t.popFront();
|
}
|
||||||
assert(t.front == 2);
|
|
||||||
assert(t.back == 3);
|
void opCall(R)(auto ref R data)
|
||||||
|
if (isInputRange!R && isOutputRange!(E[], ElementType!R))
|
||||||
t.popBack();
|
{
|
||||||
assert(t.front == 2);
|
this.data = copy(data, this.data);
|
||||||
assert(t.back == 2);
|
}
|
||||||
|
}
|
||||||
t.popFront();
|
return ArrayInserter(array);
|
||||||
assert(t.empty);
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
int[1] array;
|
||||||
|
|
||||||
|
arrayInserter(array)(5);
|
||||||
|
assert(array[0] == 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
char[1] array;
|
||||||
|
alias Actual = typeof(arrayInserter(array));
|
||||||
|
|
||||||
|
static assert(isOutputRange!(Actual, char));
|
||||||
|
static assert(isOutputRange!(Actual, char[]));
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -14,9 +14,15 @@ module tanya.sys.linux.syscall;
|
|||||||
|
|
||||||
version (TanyaNative):
|
version (TanyaNative):
|
||||||
|
|
||||||
|
extern ptrdiff_t syscall(ptrdiff_t, ptrdiff_t)
|
||||||
|
@nogc nothrow @system;
|
||||||
|
|
||||||
extern ptrdiff_t syscall(ptrdiff_t, ptrdiff_t, ptrdiff_t)
|
extern ptrdiff_t syscall(ptrdiff_t, ptrdiff_t, ptrdiff_t)
|
||||||
@nogc nothrow @system;
|
@nogc nothrow @system;
|
||||||
|
|
||||||
|
extern ptrdiff_t syscall(ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t)
|
||||||
|
@nogc nothrow @system;
|
||||||
|
|
||||||
extern ptrdiff_t syscall(ptrdiff_t,
|
extern ptrdiff_t syscall(ptrdiff_t,
|
||||||
ptrdiff_t,
|
ptrdiff_t,
|
||||||
ptrdiff_t,
|
ptrdiff_t,
|
||||||
@ -34,10 +40,18 @@ private template getOverloadMangling(size_t n)
|
|||||||
}
|
}
|
||||||
|
|
||||||
pragma(mangle, getOverloadMangling!0)
|
pragma(mangle, getOverloadMangling!0)
|
||||||
extern ptrdiff_t syscall_(ptrdiff_t, ptrdiff_t, ptrdiff_t)
|
extern ptrdiff_t syscall_(ptrdiff_t, ptrdiff_t)
|
||||||
@nogc nothrow pure @system;
|
@nogc nothrow pure @system;
|
||||||
|
|
||||||
pragma(mangle, getOverloadMangling!1)
|
pragma(mangle, getOverloadMangling!1)
|
||||||
|
extern ptrdiff_t syscall_(ptrdiff_t, ptrdiff_t, ptrdiff_t)
|
||||||
|
@nogc nothrow pure @system;
|
||||||
|
|
||||||
|
pragma(mangle, getOverloadMangling!2)
|
||||||
|
extern ptrdiff_t syscall_(ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t)
|
||||||
|
@nogc nothrow pure @system;
|
||||||
|
|
||||||
|
pragma(mangle, getOverloadMangling!3)
|
||||||
extern ptrdiff_t syscall_(ptrdiff_t,
|
extern ptrdiff_t syscall_(ptrdiff_t,
|
||||||
ptrdiff_t,
|
ptrdiff_t,
|
||||||
ptrdiff_t,
|
ptrdiff_t,
|
||||||
|
78
source/tanya/sys/posix/ioctl.d
Normal file
78
source/tanya/sys/posix/ioctl.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/. */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 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/sys/posix/ioctl.d,
|
||||||
|
* tanya/sys/posix/ioctl.d)
|
||||||
|
*/
|
||||||
|
module tanya.sys.posix.ioctl;
|
||||||
|
|
||||||
|
version (TanyaNative):
|
||||||
|
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
SIOCADDRT = 0x890B, // Add routing table entry.
|
||||||
|
SIOCDELRT = 0x890C, // Delete routing table entry.
|
||||||
|
SIOCRTMSG = 0x890D, // Call to routing system.
|
||||||
|
|
||||||
|
SIOCGIFNAME = 0x8910, // Get iface name.
|
||||||
|
SIOCSIFLINK = 0x8911, // Set iface channel.
|
||||||
|
SIOCGIFCONF = 0x8912, // Get iface list.
|
||||||
|
SIOCGIFFLAGS = 0x8913, // Get flags.
|
||||||
|
SIOCSIFFLAGS = 0x8914, // Set flags.
|
||||||
|
SIOCGIFADDR = 0x8915, // Get PA address.
|
||||||
|
SIOCSIFADDR = 0x8916, // Set PA address.
|
||||||
|
SIOCGIFDSTADDR = 0x8917, // Get remote PA address.
|
||||||
|
SIOCSIFDSTADDR = 0x8918, // Set remote PA address.
|
||||||
|
SIOCGIFBRDADDR = 0x8919, // Get broadcast PA address.
|
||||||
|
SIOCSIFBRDADDR = 0x891a, // Set broadcast PA address.
|
||||||
|
SIOCGIFNETMASK = 0x891b, // Get network PA mask.
|
||||||
|
SIOCSIFNETMASK = 0x891c, // Set network PA mask.
|
||||||
|
SIOCGIFMETRIC = 0x891d, // Get metric.
|
||||||
|
SIOCSIFMETRIC = 0x891e, // Set metric.
|
||||||
|
SIOCGIFMEM = 0x891f, // Get memory address (BSD).
|
||||||
|
SIOCSIFMEM = 0x8920, // Set memory address (BSD).
|
||||||
|
SIOCGIFMTU = 0x8921, // Get MTU size.
|
||||||
|
SIOCSIFMTU = 0x8922, // Set MTU size.
|
||||||
|
SIOCSIFNAME = 0x8923, // Set interface name.
|
||||||
|
SIOCSIFHWADDR = 0x8924, // Set hardware address.
|
||||||
|
SIOCGIFENCAP = 0x8925, // Get/set encapsulations.
|
||||||
|
SIOCSIFENCAP = 0x8926,
|
||||||
|
SIOCGIFHWADDR = 0x8927, // Get hardware address.
|
||||||
|
SIOCGIFSLAVE = 0x8929, // Driver slaving support.
|
||||||
|
SIOCSIFSLAVE = 0x8930,
|
||||||
|
SIOCADDMULTI = 0x8931, // Multicast address lists.
|
||||||
|
SIOCDELMULTI = 0x8932,
|
||||||
|
SIOCGIFINDEX = 0x8933, // Name -> if_index mapping.
|
||||||
|
SIOGIFINDEX = SIOCGIFINDEX, // Misprint compatibility.
|
||||||
|
SIOCSIFPFLAGS = 0x8934, // Set/get extended flags set.
|
||||||
|
SIOCGIFPFLAGS = 0x8935,
|
||||||
|
SIOCDIFADDR = 0x8936, // Delete PA address.
|
||||||
|
SIOCSIFHWBROADCAST = 0x8937, // Set hardware broadcast address.
|
||||||
|
SIOCGIFCOUNT = 0x8938, // Get number of devices.
|
||||||
|
|
||||||
|
SIOCGIFBR = 0x8940, // Bridging support.
|
||||||
|
SIOCSIFBR = 0x8941, // Set bridging options.
|
||||||
|
|
||||||
|
SIOCGIFTXQLEN = 0x8942, // Get the tx queue length.
|
||||||
|
SIOCSIFTXQLEN = 0x8943, // Set the tx queue length.
|
||||||
|
|
||||||
|
SIOCDARP = 0x8953, // Delete ARP table entry.
|
||||||
|
SIOCGARP = 0x8954, // Get ARP table entry.
|
||||||
|
SIOCSARP = 0x8955, // Set ARP table entry.
|
||||||
|
|
||||||
|
SIOCDRARP = 0x8960, // Delete RARP table entry.
|
||||||
|
SIOCGRARP = 0x8961, // Get RARP table entry.
|
||||||
|
SIOCSRARP = 0x8962, // Set RARP table entry.
|
||||||
|
|
||||||
|
SIOCGIFMAP = 0x8970, // Get device parameters.
|
||||||
|
SIOCSIFMAP = 0x8971, // Set device parameters.
|
||||||
|
|
||||||
|
SIOCADDDLCI = 0x8980, // Create new DLCI device.
|
||||||
|
SIOCDELDLCI = 0x8981, // Delete DLCI device.
|
||||||
|
}
|
27
source/tanya/sys/posix/net/if_.d
Normal file
27
source/tanya/sys/posix/net/if_.d
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 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/sys/posix/net/if_.d,
|
||||||
|
* tanya/sys/posix/net/if_.d)
|
||||||
|
*/
|
||||||
|
module tanya.sys.posix.net.if_;
|
||||||
|
|
||||||
|
version (TanyaNative):
|
||||||
|
|
||||||
|
enum size_t IF_NAMESIZE = 16;
|
||||||
|
|
||||||
|
struct ifreq
|
||||||
|
{
|
||||||
|
char[IF_NAMESIZE] ifr_name;
|
||||||
|
|
||||||
|
union
|
||||||
|
{
|
||||||
|
int ifr_ifindex;
|
||||||
|
}
|
||||||
|
}
|
152
source/tanya/sys/posix/socket.d
Normal file
152
source/tanya/sys/posix/socket.d
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 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/sys/posix/socket.d,
|
||||||
|
* tanya/sys/posix/socket.d)
|
||||||
|
*/
|
||||||
|
module tanya.sys.posix.socket;
|
||||||
|
|
||||||
|
version (TanyaNative):
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Protocol families.
|
||||||
|
*/
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
PF_UNSPEC = 0, // Unspecified.
|
||||||
|
PF_LOCAL = 1, // Local to host (pipes and file-domain).
|
||||||
|
PF_UNIX = PF_LOCAL, // POSIX name for PF_LOCAL.
|
||||||
|
PF_FILE = PF_LOCAL, // Another non-standard name for PF_LOCAL.
|
||||||
|
PF_INET = 2, // IP protocol family.
|
||||||
|
PF_AX25 = 3, // Amateur Radio AX.25.
|
||||||
|
PF_IPX = 4, // Novell Internet Protocol.
|
||||||
|
PF_APPLETALK = 5, // Appletalk DDP.
|
||||||
|
PF_NETROM = 6, // Amateur radio NetROM.
|
||||||
|
PF_BRIDGE = 7, // Multiprotocol bridge.
|
||||||
|
PF_ATMPVC = 8, // ATM PVCs.
|
||||||
|
PF_X25 = 9, // Reserved for X.25 project.
|
||||||
|
PF_INET6 = 10, // IP version 6.
|
||||||
|
PF_ROSE = 11, // Amateur Radio X.25 PLP.
|
||||||
|
PF_DECnet = 12, // Reserved for DECnet project.
|
||||||
|
PF_NETBEUI = 13, // Reserved for 802.2LLC project.
|
||||||
|
PF_SECURITY = 14, // Security callback pseudo AF.
|
||||||
|
PF_KEY = 15, // PF_KEY key management API.
|
||||||
|
PF_NETLINK = 16, // Kernel user interface device.
|
||||||
|
PF_ROUTE = PF_NETLINK, // Alias to emulate 4.4BSD.
|
||||||
|
PF_PACKET = 17, // Packet family.
|
||||||
|
PF_ASH = 18, // Ash.
|
||||||
|
PF_ECONET = 19, // Acorn Econet.
|
||||||
|
PF_ATMSVC = 20, // ATM SVCs.
|
||||||
|
PF_RDS = 21, // RDS sockets.
|
||||||
|
PF_SNA = 22, // Linux SNA Project.
|
||||||
|
PF_IRDA = 23, // IRDA sockets.
|
||||||
|
PF_PPPOX = 24, // PPPoX sockets.
|
||||||
|
PF_WANPIPE = 25, // Wanpipe API sockets.
|
||||||
|
PF_LLC = 26, // Linux LLC.
|
||||||
|
PF_IB = 27, // Native InfiniBand address.
|
||||||
|
PF_MPLS = 28, // MPLS.
|
||||||
|
PF_CAN = 29, // Controller Area Network.
|
||||||
|
PF_TIPC = 30, // TIPC sockets.
|
||||||
|
PF_BLUETOOTH = 31, // Bluetooth sockets.
|
||||||
|
PF_IUCV = 32, // IUCV sockets.
|
||||||
|
PF_RXRPC = 33, // RxRPC sockets.
|
||||||
|
PF_ISDN = 34, // mISDN sockets.
|
||||||
|
PF_PHONET = 35, // Phonet sockets.
|
||||||
|
PF_IEEE802154 = 36, // IEEE 802.15.4 sockets.
|
||||||
|
PF_CAIF = 37, // CAIF sockets.
|
||||||
|
PF_ALG = 38, // Algorithm sockets.
|
||||||
|
PF_NFC = 39, // NFC sockets.
|
||||||
|
PF_VSOCK = 40, // vSockets.
|
||||||
|
PF_MAX = 41, // For now.
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Address families.
|
||||||
|
*/
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
AF_UNSPEC = PF_UNSPEC,
|
||||||
|
AF_LOCAL = PF_LOCAL,
|
||||||
|
AF_UNIX = PF_UNIX,
|
||||||
|
AF_FILE = PF_FILE,
|
||||||
|
AF_INET = PF_INET,
|
||||||
|
AF_AX25 = PF_AX25,
|
||||||
|
AF_IPX = PF_IPX,
|
||||||
|
AF_APPLETALK = PF_APPLETALK,
|
||||||
|
AF_NETROM = PF_NETROM,
|
||||||
|
AF_BRIDGE = PF_BRIDGE,
|
||||||
|
AF_ATMPVC = PF_ATMPVC,
|
||||||
|
AF_X25 = PF_X25,
|
||||||
|
AF_INET6 = PF_INET6,
|
||||||
|
AF_ROSE = PF_ROSE,
|
||||||
|
AF_DECnet = PF_DECnet,
|
||||||
|
AF_NETBEUI = PF_NETBEUI,
|
||||||
|
AF_SECURITY = PF_SECURITY,
|
||||||
|
AF_KEY = PF_KEY,
|
||||||
|
AF_NETLINK = PF_NETLINK,
|
||||||
|
AF_ROUTE = PF_ROUTE,
|
||||||
|
AF_PACKET = PF_PACKET,
|
||||||
|
AF_ASH = PF_ASH,
|
||||||
|
AF_ECONET = PF_ECONET,
|
||||||
|
AF_ATMSVC = PF_ATMSVC,
|
||||||
|
AF_RDS = PF_RDS,
|
||||||
|
AF_SNA = PF_SNA,
|
||||||
|
AF_IRDA = PF_IRDA,
|
||||||
|
AF_PPPOX = PF_PPPOX,
|
||||||
|
AF_WANPIPE = PF_WANPIPE,
|
||||||
|
AF_LLC = PF_LLC,
|
||||||
|
AF_IB = PF_IB,
|
||||||
|
AF_MPLS = PF_MPLS,
|
||||||
|
AF_CAN = PF_CAN,
|
||||||
|
AF_TIPC = PF_TIPC,
|
||||||
|
AF_BLUETOOTH = PF_BLUETOOTH,
|
||||||
|
AF_IUCV = PF_IUCV,
|
||||||
|
AF_RXRPC = PF_RXRPC,
|
||||||
|
AF_ISDN = PF_ISDN,
|
||||||
|
AF_PHONET = PF_PHONET,
|
||||||
|
AF_IEEE802154 = PF_IEEE802154,
|
||||||
|
AF_CAIF = PF_CAIF,
|
||||||
|
AF_ALG = PF_ALG,
|
||||||
|
AF_NFC = PF_NFC,
|
||||||
|
AF_VSOCK = PF_VSOCK,
|
||||||
|
AF_MAX = PF_MAX,
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Types of sockets.
|
||||||
|
*/
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
// Sequenced, reliable, connection-based byte streams.
|
||||||
|
SOCK_STREAM = 1,
|
||||||
|
// Connectionless, unreliable datagrams of fixed maximum length.
|
||||||
|
SOCK_DGRAM = 2,
|
||||||
|
// Raw protocol interface.
|
||||||
|
SOCK_RAW = 3,
|
||||||
|
// Reliably-delivered messages.
|
||||||
|
SOCK_RDM = 4,
|
||||||
|
// Sequenced, reliable, connection-based, datagrams of fixed maximum
|
||||||
|
// length.
|
||||||
|
SOCK_SEQPACKET = 5,
|
||||||
|
// Datagram Congestion Control Protocol.
|
||||||
|
SOCK_DCCP = 6,
|
||||||
|
// Linux specific way of getting packets at the dev level. For writing rarp
|
||||||
|
// and other similar things on the user level.
|
||||||
|
SOCK_PACKET = 10,
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Flags to be ORed into the type parameter of socket and socketpair and used
|
||||||
|
* for the flags parameter of paccept.
|
||||||
|
*/
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
SOCK_CLOEXEC = 0x80000, // Atomically set close-on-exec flag for the new descriptor(s).
|
||||||
|
SOCK_NONBLOCK = 0x800, // Atomically mark descriptor(s) as non-blocking.
|
||||||
|
}
|
@ -30,6 +30,7 @@ version (Windows):
|
|||||||
alias BYTE = ubyte;
|
alias BYTE = ubyte;
|
||||||
alias TBYTE = wchar; // If Unicode, otherwise char.
|
alias TBYTE = wchar; // If Unicode, otherwise char.
|
||||||
alias CHAR = char; // Signed or unsigned char.
|
alias CHAR = char; // Signed or unsigned char.
|
||||||
|
alias WCHAR = wchar;
|
||||||
alias TCHAR = wchar; // If Unicode, otherwise char.
|
alias TCHAR = wchar; // If Unicode, otherwise char.
|
||||||
alias SHORT = short;
|
alias SHORT = short;
|
||||||
alias USHORT = ushort;
|
alias USHORT = ushort;
|
||||||
@ -52,6 +53,10 @@ enum HANDLE INVALID_HANDLE_VALUE = cast(HANDLE) -1;
|
|||||||
enum TRUE = 1;
|
enum TRUE = 1;
|
||||||
enum FALSE = 0;
|
enum FALSE = 0;
|
||||||
|
|
||||||
|
alias PSTR = CHAR*;
|
||||||
|
alias PWSTR = WCHAR*;
|
||||||
|
alias PTSTR = TCHAR*;
|
||||||
|
|
||||||
align(1) struct GUID
|
align(1) struct GUID
|
||||||
{
|
{
|
||||||
uint Data1;
|
uint Data1;
|
||||||
|
30
source/tanya/sys/windows/ifdef.d
Normal file
30
source/tanya/sys/windows/ifdef.d
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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/sys/windows/ifdef.d,
|
||||||
|
* tanya/sys/windows/ifdef.d)
|
||||||
|
*/
|
||||||
|
module tanya.sys.windows.ifdef;
|
||||||
|
|
||||||
|
version (Windows):
|
||||||
|
|
||||||
|
import tanya.sys.windows.def;
|
||||||
|
|
||||||
|
union NET_LUID_LH
|
||||||
|
{
|
||||||
|
ulong Value;
|
||||||
|
ulong Info;
|
||||||
|
}
|
||||||
|
|
||||||
|
alias NET_LUID = NET_LUID_LH;
|
||||||
|
alias IF_LUID = NET_LUID_LH;
|
||||||
|
|
||||||
|
alias NET_IFINDEX = ULONG;
|
||||||
|
|
||||||
|
enum size_t IF_MAX_STRING_SIZE = 256;
|
39
source/tanya/sys/windows/iphlpapi.d
Normal file
39
source/tanya/sys/windows/iphlpapi.d
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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/sys/windows/iphlpapi.d,
|
||||||
|
* tanya/sys/windows/iphlpapi.d)
|
||||||
|
*/
|
||||||
|
module tanya.sys.windows.iphlpapi;
|
||||||
|
|
||||||
|
version (Windows):
|
||||||
|
|
||||||
|
import tanya.sys.windows.def;
|
||||||
|
import tanya.sys.windows.ifdef;
|
||||||
|
|
||||||
|
extern(Windows)
|
||||||
|
DWORD ConvertInterfaceNameToLuidA(const(CHAR)* InterfaceName,
|
||||||
|
NET_LUID* InterfaceLuid)
|
||||||
|
@nogc nothrow @system;
|
||||||
|
|
||||||
|
extern(Windows)
|
||||||
|
DWORD ConvertInterfaceLuidToIndex(const(NET_LUID)* InterfaceLuid,
|
||||||
|
NET_IFINDEX* InterfaceIndex)
|
||||||
|
@nogc nothrow @system;
|
||||||
|
|
||||||
|
extern(Windows)
|
||||||
|
DWORD ConvertInterfaceIndexToLuid(NET_IFINDEX InterfaceIndex,
|
||||||
|
NET_LUID* InterfaceLuid)
|
||||||
|
@nogc nothrow @system;
|
||||||
|
|
||||||
|
extern(Windows)
|
||||||
|
DWORD ConvertInterfaceLuidToNameA(const(NET_LUID)* InterfaceLuid,
|
||||||
|
PSTR InterfaceName,
|
||||||
|
size_t Length)
|
||||||
|
@nogc nothrow @system;
|
@ -15,5 +15,7 @@ module tanya.sys.windows;
|
|||||||
version (Windows):
|
version (Windows):
|
||||||
|
|
||||||
public import tanya.sys.windows.def;
|
public import tanya.sys.windows.def;
|
||||||
|
public import tanya.sys.windows.ifdef;
|
||||||
|
public import tanya.sys.windows.iphlpapi;
|
||||||
public import tanya.sys.windows.winbase;
|
public import tanya.sys.windows.winbase;
|
||||||
public import tanya.sys.windows.winsock2;
|
public import tanya.sys.windows.winsock2;
|
||||||
|
@ -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,9 +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.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.
|
||||||
@ -35,6 +38,8 @@ import tanya.meta.trait;
|
|||||||
*
|
*
|
||||||
* Params:
|
* Params:
|
||||||
* Specs = Field types and names.
|
* Specs = Field types and names.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL tuple).
|
||||||
*/
|
*/
|
||||||
template Tuple(Specs...)
|
template Tuple(Specs...)
|
||||||
{
|
{
|
||||||
@ -133,11 +138,50 @@ template Tuple(Specs...)
|
|||||||
static assert(!is(Tuple!(int, "first", double, "second", char, "third")));
|
static assert(!is(Tuple!(int, "first", double, "second", char, "third")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new $(D_PSYMBOL Tuple).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Names = Field names.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL Tuple).
|
||||||
|
*/
|
||||||
|
template tuple(Names...)
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Creates a new $(D_PSYMBOL Tuple).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* Args = Field types.
|
||||||
|
* args = Field values.
|
||||||
|
*
|
||||||
|
* Returns: Newly created $(D_PSYMBOL Tuple).
|
||||||
|
*/
|
||||||
|
auto tuple(Args...)(auto ref Args args)
|
||||||
|
if (Args.length >= Names.length && isTypeTuple!Args)
|
||||||
|
{
|
||||||
|
alias Zipped = ZipWith!(AliasSeq, Pack!Args, Pack!Names);
|
||||||
|
alias Nameless = Args[Names.length .. $];
|
||||||
|
|
||||||
|
return Tuple!(Zipped, Nameless)(forward!args);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
auto t = tuple!("one", "two")(20, 5);
|
||||||
|
assert(t.one == 20);
|
||||||
|
assert(t.two == 5);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* $(D_PSYMBOL Option) is a type that contains an optional value.
|
* $(D_PSYMBOL Option) is a type that contains an optional value.
|
||||||
*
|
*
|
||||||
* Params:
|
* Params:
|
||||||
* T = Type of the encapsulated value.
|
* T = Type of the encapsulated value.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL option).
|
||||||
*/
|
*/
|
||||||
struct Option(T)
|
struct Option(T)
|
||||||
{
|
{
|
||||||
@ -184,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;
|
||||||
}
|
}
|
||||||
@ -324,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;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -338,7 +393,25 @@ struct Option(T)
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
alias get this;
|
version (D_Ddoc)
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* If $(D_PARAM T) has a `toHash()` method, $(D_PSYMBOL Option) defines
|
||||||
|
* `toHash()` which returns `T.toHash()` if it is set or 0 otherwise.
|
||||||
|
*
|
||||||
|
* Returns: Hash value.
|
||||||
|
*/
|
||||||
|
size_t toHash() const;
|
||||||
|
}
|
||||||
|
else static if (is(typeof(T.init.toHash()) == size_t))
|
||||||
|
{
|
||||||
|
size_t toHash() const
|
||||||
|
{
|
||||||
|
return isNothing ? 0U : this.value.toHash();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
alias get_ this;
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -394,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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -446,9 +514,421 @@ 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
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
alias OptionT = Option!Hashable;
|
||||||
|
assert(OptionT().toHash() == 0U);
|
||||||
|
assert(OptionT(Hashable(1U)).toHash() == 1U);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Can assign Option that is nothing
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
auto option1 = Option!int(5);
|
||||||
|
Option!int option2;
|
||||||
|
option1 = option2;
|
||||||
|
assert(option1.isNothing);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new $(D_PSYMBOL Option).
|
||||||
|
*
|
||||||
|
* Params:
|
||||||
|
* T = Option type.
|
||||||
|
* value = Initial value.
|
||||||
|
*
|
||||||
|
* See_Also: $(D_PSYMBOL Option).
|
||||||
|
*/
|
||||||
|
Option!T option(T)(auto ref T value)
|
||||||
|
{
|
||||||
|
return Option!T(forward!value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
Option!T option(T)()
|
||||||
|
{
|
||||||
|
return Option!T();
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
@nogc nothrow pure @safe unittest
|
||||||
|
{
|
||||||
|
assert(option!int().isNothing);
|
||||||
|
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