superstruct ~wip
A superclass for value types.
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
SuperStruct
What is it?
It's a struct
! It's a class
! No, its ... SuperStruct
!
This bastard child of wrap
and variant
works like an
Algebraic
, but exposes members that are common across the source types.
struct Square {
float size;
float area() { return size * size; }
}
struct Circle {
float r;
float area() { return r * r * PI; }
}
alias Shape = SuperStruct!(Square, Circle);
// look! polymorphism!
Shape sqr = Square(2);
Shape cir = Circle(4);
Shape[] shapes = [ sqr, cir ];
// call functions that are shared between the source types!
assert(shapes.map!(x => x.area).sum.approxEqual(2 * 2 + 4 * 4 * PI));
Notice that there is no explicit interface definition. The 'interface' forms organically from the common members of the source types.
The interface isn't limited to methods -- common fields can be exposed as well:
// `top` is a field of Square
struct Square {
int top, left, width, height;
}
// but a property of cirle
struct Circle {
int radius, x, y;
auto top() { return y - radius; }
auto top(int val) { return y = val + radius; }
}
alias Shape = SuperStruct!(Square, Circle);
// if a Shape is a Circle, `top` forwards to Circle's top property
Shape cir = Circle(4, 0, 0);
cir.top = 6;
assert(cir.top == 6);
// if a Shape is a Square, `top` forwards to Squares's top field
Shape sqr = Square(0, 0, 4, 4);
sqr.top = 6;
assert(sqr.top == 6);
// Square.left is hidden, as Circle has no such member
static assert(!is(typeof(sqr.left)));
Is it useful?
I don't know, you tell me. I just work here.
If nothing else, its an interesting exercise in what D's compile-time facilities are capable of.
Why not use Variant/Algebraic?
To avoid repeating yourself.
// Compare this...
auto alg = Algebraic!(Rect, Ellipse, Triangle)(someShape);
auto center1 = alg.visit!((Rect r) => r.center,
(Ellipse e) => e.center,
(Triangle t) => t.center)
// To this! Easier, right?
auto sup = SuperStruct!(Rect, Ellipse, Triangle)(someShape);
auto center2 = sup.center;
Why not use wrap?
std.typecons.wrap
and
SuperStruct
have similar, but not entirely overlapping uses.
wrap
does not currently support structs (but a PR exists to implement this)wrap
allocates a class.SuperStruct
is just a struct.wrap
requires an explicitly defined interface.SuperStruct
generates an interface automatically.SuperStruct
can expose common fields directly.wrap
requires the user to manually wrap fields in getter/setter properties to satisfy an interface.
If you actually need a interface that can be implemented without knowing all the
source types in advance, then you probably want wrap
.
What does it expose?
Fields and members
- If all types have a matching field, it gets exposed:
struct Foo { int a; }
struct Bar { int a; }
auto foobar = SuperStruct!(Foo, Bar)(Foo(1));
foobar.a = 5;
assert(foobar.a == 5);
- If all types have a matching method, all compatible overloads are exposed:
struct Foo {
int fun(int i) { return i; }
int fun(int a, int b) { return a + b; }
}
struct Bar {
int fun(int i) { return i; }
int fun(int a, int b) { return a + b; }
int fun(int a, int b, int c) { return a + b + c; }
}
auto foobar = SuperStruct!(Foo, Bar)(Foo());
assert(foobar.fun(1) == 1);
assert(foobar.fun(1, 2) == 3);
assert(!__traits(compiles, foobar.fun(1,2,3))); // no such overload on Foo
- If a name refers to a field on one type and a method on another, it is exposed if the field and the method have compatible signatures:
struct Foo { int a; }
struct Bar {
private int _a;
int a() { return _a; }
int a(int val) { return _a = val; }
}
auto foo = SuperStruct!(Foo, Bar)(Foo());
foo.a = 5; // sets Foo.a
assert(foo.a == 5); // gets Foo.a
auto bar = SuperStruct!(Foo, Bar)(Bar());
bar.a = 5; // invokes Bar.a(int val)
assert(bar.a == 5); // invokes Bar.a()
- Operators with compatible signatures are exposed:
SuperStruct!(SList!T, Array!T) list = SList!int(1,2,3);
list = list ~ [4,5,6]; // SList and Array both support opBinary!"~"
}
- If members have compatible signatures but uncommon return types, the exposed
member returns a
SuperStruct
of the possible return types.
SuperStruct!(SList!T, Array!T) list = SList!int(1,2,3);
// opSlice returns a SuperStruct of the SList and Array slice types.
// as it exposes the common members of both, it looks just like a range.
assert(list[].equal([1,2,3]));
}
SuperStruct
exposes a specializedopEquals
that works against anotherSuperStruct
of the same type.
struct A { int i; }
struct B { int i; }
struct C { int i; bool opEquals(T)(T other) { return other.i == i; } }
SuperStruct!(A, B, C) a0 = A(0);
SuperStruct!(A, B, C) a1 = A(1);
SuperStruct!(A, B, C) b0 = B(0);
SuperStruct!(A, B, C) c0 = C(0);
assert(a0 == a0); // both contain an A with the same value
assert(a0 != a1); // both contain an A with different values
assert(a0 != b0); // A and B are not comparable
assert(a0 == c0); // C is comparable to A
Private members are not exposed.
Symbols beginning with
__
are not exposed.
How does it work?
SuperStruct
mixes in a generic member for each member of the subtypes.
This member tries to forward calls to the underlying member of whatever subtype
it currently contains.
For example, if all source types have a member foo
, the SuperStruct
member
might look like:
template foo(TemplateArgs...) {
auto foo(Args...)(Args args) {
return visitMember!("%s", TemplateArgs)(_value, args);
}
}
The first layer catches the operator, the second grabs any explicit compile-time parameters (e.g. lambdas), and the third layer grabs any number of runtime parameters.
Only the explicit compile-time parameters are passed along to the underlying
members, as Args
can be figured out from the arguments themselves.
Here, visitMember
is a helper that tries to forward the call to a matching
member on whatever _value
(an Algebraic
of the source types) is holding. If
whatever args you pass don't form a valid call on the given member for every
subtype, it won't compile. If they all do form valid calls but there is no
common return type for those calls, it won't compile.
- Registered by Ryan Roden-Corrent
- ~wip released 9 years ago
- rcorre/superstruct
- MIT
- Copyright © 2015, rcorre
- Authors:
- Dependencies:
- none
- Versions:
-
0.2.0 2015-Nov-23 0.1.0 2015-Oct-18 ~master 2015-Nov-23 ~wip 2015-Nov-05 ~dev 2015-Oct-30 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
140 downloads total
-
- Score:
- 1.3
- Short URL:
- superstruct.dub.pm