mirror of https://github.com/adamdruppe/arsd.git
mixin template instead of string for scope resolution
This commit is contained in:
parent
48c3ca99cf
commit
2bfdccc236
12
rpc.d
12
rpc.d
|
@ -260,11 +260,11 @@ final public inout(ubyte)[] deserializeInto(T)(inout(ubyte)[] buffer, ref T s) {
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto makeNetworkClient(Interface)(string serverHost, ushort serverPort) {
|
mixin template NetworkClient(Interface) {
|
||||||
static string createClass() {
|
private static string createClass() {
|
||||||
// this doesn't actually inherit from the interface because
|
// this doesn't actually inherit from the interface because
|
||||||
// the return value needs to be handled async
|
// the return value needs to be handled async
|
||||||
string code = `final class Class /*: ` ~ Interface.stringof ~ `*/ {`;
|
string code;// = `final class Class /*: ` ~ Interface.stringof ~ `*/ {`;
|
||||||
code ~= "\n\timport std.socket;";
|
code ~= "\n\timport std.socket;";
|
||||||
code ~= "\n\tprivate Socket socket;";
|
code ~= "\n\tprivate Socket socket;";
|
||||||
code ~= "\n\tprivate void delegate(const(ubyte)[] buffer)[uint] onSuccesses;";
|
code ~= "\n\tprivate void delegate(const(ubyte)[] buffer)[uint] onSuccesses;";
|
||||||
|
@ -406,16 +406,12 @@ auto makeNetworkClient(Interface)(string serverHost, ushort serverPort) {
|
||||||
code ~= "\n";
|
code ~= "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
code ~= `}`;
|
//code ~= `}`;
|
||||||
return code;
|
return code;
|
||||||
}
|
}
|
||||||
|
|
||||||
//pragma(msg, createClass()); // for debugging help
|
//pragma(msg, createClass()); // for debugging help
|
||||||
#line 363
|
|
||||||
mixin(createClass());
|
mixin(createClass());
|
||||||
#line 365
|
|
||||||
|
|
||||||
return new Class(serverHost, serverPort);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// the protocol is:
|
// the protocol is:
|
||||||
|
|
Loading…
Reference in New Issue