mirror of https://github.com/adamdruppe/arsd.git
dmd deprecation handling
This commit is contained in:
parent
498a0b0756
commit
776d34f534
2
cgi.d
2
cgi.d
|
@ -546,7 +546,7 @@ private struct stdin {
|
||||||
in {
|
in {
|
||||||
assert(size, "size must be larger than 0");
|
assert(size, "size must be larger than 0");
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
chunk_ = new ubyte[](size);
|
chunk_ = new ubyte[](size);
|
||||||
popFront();
|
popFront();
|
||||||
}
|
}
|
||||||
|
|
|
@ -185,7 +185,7 @@ string decodeImpl(in ubyte[] data, in dchar[] chars160to255, in dchar[] chars128
|
||||||
import std.utf;
|
import std.utf;
|
||||||
validate(ret);
|
validate(ret);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
string utf8;
|
string utf8;
|
||||||
|
|
||||||
/// I'm sure this could be a lot more efficient, but whatever, it
|
/// I'm sure this could be a lot more efficient, but whatever, it
|
||||||
|
|
2
dbus.d
2
dbus.d
|
@ -300,7 +300,7 @@ struct ObjectPath {
|
||||||
assert(ObjectPath.isValid(_value) && ObjectPath.isValid(rhs._value));
|
assert(ObjectPath.isValid(_value) && ObjectPath.isValid(rhs._value));
|
||||||
} out (v) {
|
} out (v) {
|
||||||
assert(ObjectPath.isValid(v._value));
|
assert(ObjectPath.isValid(v._value));
|
||||||
} body {
|
} do {
|
||||||
ObjectPath ret;
|
ObjectPath ret;
|
||||||
|
|
||||||
if (_value == "/")
|
if (_value == "/")
|
||||||
|
|
60
dom.d
60
dom.d
|
@ -1209,7 +1209,7 @@ class Document : FileResource {
|
||||||
final SomeElementType requireElementById(SomeElementType = Element)(string id, string file = __FILE__, size_t line = __LINE__)
|
final SomeElementType requireElementById(SomeElementType = Element)(string id, string file = __FILE__, size_t line = __LINE__)
|
||||||
if( is(SomeElementType : Element))
|
if( is(SomeElementType : Element))
|
||||||
out(ret) { assert(ret !is null); }
|
out(ret) { assert(ret !is null); }
|
||||||
body {
|
do {
|
||||||
return root.requireElementById!(SomeElementType)(id, file, line);
|
return root.requireElementById!(SomeElementType)(id, file, line);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1217,7 +1217,7 @@ class Document : FileResource {
|
||||||
final SomeElementType requireSelector(SomeElementType = Element)(string selector, string file = __FILE__, size_t line = __LINE__)
|
final SomeElementType requireSelector(SomeElementType = Element)(string selector, string file = __FILE__, size_t line = __LINE__)
|
||||||
if( is(SomeElementType : Element))
|
if( is(SomeElementType : Element))
|
||||||
out(ret) { assert(ret !is null); }
|
out(ret) { assert(ret !is null); }
|
||||||
body {
|
do {
|
||||||
auto e = cast(SomeElementType) querySelector(selector);
|
auto e = cast(SomeElementType) querySelector(selector);
|
||||||
if(e is null)
|
if(e is null)
|
||||||
throw new ElementNotFoundException(SomeElementType.stringof, selector, this.root, file, line);
|
throw new ElementNotFoundException(SomeElementType.stringof, selector, this.root, file, line);
|
||||||
|
@ -1332,7 +1332,7 @@ class Document : FileResource {
|
||||||
out(ret) {
|
out(ret) {
|
||||||
assert(ret !is null);
|
assert(ret !is null);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
return cast(Form) createElement("form");
|
return cast(Form) createElement("form");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1494,7 +1494,7 @@ class Element {
|
||||||
out(ret) {
|
out(ret) {
|
||||||
assert(ret !is null);
|
assert(ret !is null);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
auto e = cast(SomeElementType) getElementById(id);
|
auto e = cast(SomeElementType) getElementById(id);
|
||||||
if(e is null)
|
if(e is null)
|
||||||
throw new ElementNotFoundException(SomeElementType.stringof, "id=" ~ id, this, file, line);
|
throw new ElementNotFoundException(SomeElementType.stringof, "id=" ~ id, this, file, line);
|
||||||
|
@ -1509,7 +1509,7 @@ class Element {
|
||||||
out(ret) {
|
out(ret) {
|
||||||
assert(ret !is null);
|
assert(ret !is null);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
auto e = cast(SomeElementType) querySelector(selector);
|
auto e = cast(SomeElementType) querySelector(selector);
|
||||||
if(e is null)
|
if(e is null)
|
||||||
throw new ElementNotFoundException(SomeElementType.stringof, selector, this, file, line);
|
throw new ElementNotFoundException(SomeElementType.stringof, selector, this, file, line);
|
||||||
|
@ -1621,7 +1621,7 @@ class Element {
|
||||||
//assert(e.parentNode is this);
|
//assert(e.parentNode is this);
|
||||||
//assert(e.parentDocument is this.parentDocument);
|
//assert(e.parentDocument is this.parentDocument);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
auto e = Element.make(tagName, childInfo, childInfo2);
|
auto e = Element.make(tagName, childInfo, childInfo2);
|
||||||
// FIXME (maybe): if the thing is self closed, we might want to go ahead and
|
// FIXME (maybe): if the thing is self closed, we might want to go ahead and
|
||||||
// return the parent. That will break existing code though.
|
// return the parent. That will break existing code though.
|
||||||
|
@ -1641,7 +1641,7 @@ class Element {
|
||||||
assert(e.parentNode is this.parentNode);
|
assert(e.parentNode is this.parentNode);
|
||||||
assert(e.parentDocument is this.parentDocument);
|
assert(e.parentDocument is this.parentDocument);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
auto e = Element.make(tagName, childInfo, childInfo2);
|
auto e = Element.make(tagName, childInfo, childInfo2);
|
||||||
return parentNode.insertAfter(this, e);
|
return parentNode.insertAfter(this, e);
|
||||||
}
|
}
|
||||||
|
@ -1684,7 +1684,7 @@ class Element {
|
||||||
assert(ret.parentDocument is this.parentDocument);
|
assert(ret.parentDocument is this.parentDocument);
|
||||||
//assert(firstChild.parentDocument is this.parentDocument);
|
//assert(firstChild.parentDocument is this.parentDocument);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
auto e = Element.make(tagName, "", info2);
|
auto e = Element.make(tagName, "", info2);
|
||||||
e.appendChild(firstChild);
|
e.appendChild(firstChild);
|
||||||
this.appendChild(e);
|
this.appendChild(e);
|
||||||
|
@ -1700,7 +1700,7 @@ class Element {
|
||||||
assert((cast(DocumentFragment) this !is null) || (ret.parentNode is this), ret.toString);// e.parentNode ? e.parentNode.toString : "null");
|
assert((cast(DocumentFragment) this !is null) || (ret.parentNode is this), ret.toString);// e.parentNode ? e.parentNode.toString : "null");
|
||||||
assert(ret.parentDocument is this.parentDocument);
|
assert(ret.parentDocument is this.parentDocument);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
auto e = Element.make(tagName, "", info2);
|
auto e = Element.make(tagName, "", info2);
|
||||||
this.appendChild(e);
|
this.appendChild(e);
|
||||||
e.innerHTML = innerHtml.source;
|
e.innerHTML = innerHtml.source;
|
||||||
|
@ -1724,7 +1724,7 @@ class Element {
|
||||||
assert(this.parentNode is newParent);
|
assert(this.parentNode is newParent);
|
||||||
//assert(isInArray(this, newParent.children));
|
//assert(isInArray(this, newParent.children));
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
parentNode.removeChild(this);
|
parentNode.removeChild(this);
|
||||||
newParent.appendChild(this);
|
newParent.appendChild(this);
|
||||||
}
|
}
|
||||||
|
@ -1748,7 +1748,7 @@ class Element {
|
||||||
assert(parentNode is null);
|
assert(parentNode is null);
|
||||||
assert(children.length == 0);
|
assert(children.length == 0);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
foreach(c; children)
|
foreach(c; children)
|
||||||
c.parentNode = null; // remove the parent
|
c.parentNode = null; // remove the parent
|
||||||
if(children.length)
|
if(children.length)
|
||||||
|
@ -1768,7 +1768,7 @@ class Element {
|
||||||
assert(this.parentNode is null);
|
assert(this.parentNode is null);
|
||||||
assert(var is this);
|
assert(var is this);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
if(this.parentNode is null)
|
if(this.parentNode is null)
|
||||||
return this;
|
return this;
|
||||||
|
|
||||||
|
@ -1792,7 +1792,7 @@ class Element {
|
||||||
assert(this.parentNode is what);
|
assert(this.parentNode is what);
|
||||||
assert(ret is what);
|
assert(ret is what);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
this.replaceWith(what);
|
this.replaceWith(what);
|
||||||
what.appendChild(this);
|
what.appendChild(this);
|
||||||
|
|
||||||
|
@ -1804,7 +1804,7 @@ class Element {
|
||||||
in {
|
in {
|
||||||
assert(this.parentNode !is null);
|
assert(this.parentNode !is null);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
e.removeFromTree();
|
e.removeFromTree();
|
||||||
this.parentNode.replaceChild(this, e);
|
this.parentNode.replaceChild(this, e);
|
||||||
return e;
|
return e;
|
||||||
|
@ -2450,7 +2450,7 @@ class Element {
|
||||||
out(ret) {
|
out(ret) {
|
||||||
assert(ret is this);
|
assert(ret is this);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
if(parentDocument && parentDocument.loose)
|
if(parentDocument && parentDocument.loose)
|
||||||
name = name.toLower();
|
name = name.toLower();
|
||||||
if(name in attributes)
|
if(name in attributes)
|
||||||
|
@ -2662,7 +2662,7 @@ class Element {
|
||||||
out {
|
out {
|
||||||
assert(this.children.length == 0);
|
assert(this.children.length == 0);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
children = null;
|
children = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2696,7 +2696,7 @@ class Element {
|
||||||
assert(e.parentDocument is this.parentDocument);
|
assert(e.parentDocument is this.parentDocument);
|
||||||
assert(e is ret);
|
assert(e is ret);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
if(e.parentNode !is null)
|
if(e.parentNode !is null)
|
||||||
e.parentNode.removeChild(e);
|
e.parentNode.removeChild(e);
|
||||||
|
|
||||||
|
@ -2728,7 +2728,7 @@ class Element {
|
||||||
assert(what.parentDocument is this.parentDocument);
|
assert(what.parentDocument is this.parentDocument);
|
||||||
assert(ret is what);
|
assert(ret is what);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
foreach(i, e; children) {
|
foreach(i, e; children) {
|
||||||
if(e is where) {
|
if(e is where) {
|
||||||
if(auto frag = cast(DocumentFragment) what)
|
if(auto frag = cast(DocumentFragment) what)
|
||||||
|
@ -2762,7 +2762,7 @@ class Element {
|
||||||
assert(what.parentDocument is this.parentDocument);
|
assert(what.parentDocument is this.parentDocument);
|
||||||
assert(ret is what);
|
assert(ret is what);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
foreach(i, e; children) {
|
foreach(i, e; children) {
|
||||||
if(e is where) {
|
if(e is where) {
|
||||||
if(auto frag = cast(DocumentFragment) what)
|
if(auto frag = cast(DocumentFragment) what)
|
||||||
|
@ -2793,7 +2793,7 @@ class Element {
|
||||||
assert(replacement.parentNode is this);
|
assert(replacement.parentNode is this);
|
||||||
assert(replacement.parentDocument is this.parentDocument);
|
assert(replacement.parentDocument is this.parentDocument);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
foreach(ref c; this.children)
|
foreach(ref c; this.children)
|
||||||
if(c is child) {
|
if(c is child) {
|
||||||
c.parentNode = null;
|
c.parentNode = null;
|
||||||
|
@ -2868,7 +2868,7 @@ class Element {
|
||||||
//assert(isInArray(where, children));
|
//assert(isInArray(where, children));
|
||||||
//assert(isInArray(child, children));
|
//assert(isInArray(child, children));
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
foreach(ref i, c; children) {
|
foreach(ref i, c; children) {
|
||||||
if(c is where) {
|
if(c is where) {
|
||||||
i++;
|
i++;
|
||||||
|
@ -2906,7 +2906,7 @@ class Element {
|
||||||
assert(child.parentDocument is this.parentDocument);
|
assert(child.parentDocument is this.parentDocument);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
foreach(c; e.children) {
|
foreach(c; e.children) {
|
||||||
c.parentNode = this;
|
c.parentNode = this;
|
||||||
c.parentDocument = this.parentDocument;
|
c.parentDocument = this.parentDocument;
|
||||||
|
@ -2941,7 +2941,7 @@ class Element {
|
||||||
assert(e.parentDocument is this.parentDocument);
|
assert(e.parentDocument is this.parentDocument);
|
||||||
assert(children[0] is e);
|
assert(children[0] is e);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
e.parentNode = this;
|
e.parentNode = this;
|
||||||
e.parentDocument = this.parentDocument;
|
e.parentDocument = this.parentDocument;
|
||||||
if(auto frag = cast(DocumentFragment) e)
|
if(auto frag = cast(DocumentFragment) e)
|
||||||
|
@ -3073,7 +3073,7 @@ class Element {
|
||||||
assert(replace.parentDocument is this.parentDocument);
|
assert(replace.parentDocument is this.parentDocument);
|
||||||
assert(find.parentNode is null);
|
assert(find.parentNode is null);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
// FIXME
|
// FIXME
|
||||||
//if(auto frag = cast(DocumentFragment) replace)
|
//if(auto frag = cast(DocumentFragment) replace)
|
||||||
//return this.replaceChild(frag, replace.children);
|
//return this.replaceChild(frag, replace.children);
|
||||||
|
@ -3109,7 +3109,7 @@ class Element {
|
||||||
debug foreach(r; replace)
|
debug foreach(r; replace)
|
||||||
assert(r.parentNode is this);
|
assert(r.parentNode is this);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
if(replace.length == 0) {
|
if(replace.length == 0) {
|
||||||
removeChild(find);
|
removeChild(find);
|
||||||
return;
|
return;
|
||||||
|
@ -3149,7 +3149,7 @@ class Element {
|
||||||
assert(child !is c);
|
assert(child !is c);
|
||||||
assert(c.parentNode is null);
|
assert(c.parentNode is null);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
foreach(i, e; children) {
|
foreach(i, e; children) {
|
||||||
if(e is c) {
|
if(e is c) {
|
||||||
children = children[0..i] ~ children [i+1..$];
|
children = children[0..i] ~ children [i+1..$];
|
||||||
|
@ -3168,7 +3168,7 @@ class Element {
|
||||||
debug foreach(r; ret)
|
debug foreach(r; ret)
|
||||||
assert(r.parentNode is null);
|
assert(r.parentNode is null);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
Element[] oldChildren = children.dup;
|
Element[] oldChildren = children.dup;
|
||||||
foreach(c; oldChildren)
|
foreach(c; oldChildren)
|
||||||
c.parentNode = null;
|
c.parentNode = null;
|
||||||
|
@ -3243,7 +3243,7 @@ class Element {
|
||||||
assert(ret.children.length == this.children.length, format("%d %d", ret.children.length, this.children.length));
|
assert(ret.children.length == this.children.length, format("%d %d", ret.children.length, this.children.length));
|
||||||
assert(ret.tagName == this.tagName);
|
assert(ret.tagName == this.tagName);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
+/
|
+/
|
||||||
{
|
{
|
||||||
return this.cloneNode(true);
|
return this.cloneNode(true);
|
||||||
|
@ -3992,7 +3992,7 @@ enum NodeType { Text = 3 }
|
||||||
T require(T = Element, string file = __FILE__, int line = __LINE__)(Element e) if(is(T : Element))
|
T require(T = Element, string file = __FILE__, int line = __LINE__)(Element e) if(is(T : Element))
|
||||||
in {}
|
in {}
|
||||||
out(ret) { assert(ret !is null); }
|
out(ret) { assert(ret !is null); }
|
||||||
body {
|
do {
|
||||||
auto ret = cast(T) e;
|
auto ret = cast(T) e;
|
||||||
if(ret is null)
|
if(ret is null)
|
||||||
throw new ElementNotFoundException(T.stringof, "passed value", e, file, line);
|
throw new ElementNotFoundException(T.stringof, "passed value", e, file, line);
|
||||||
|
@ -6596,7 +6596,7 @@ class Table : Element {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
if(tablePortition is null)
|
if(tablePortition is null)
|
||||||
tablePortition = this;
|
tablePortition = this;
|
||||||
|
|
||||||
|
|
|
@ -277,7 +277,7 @@ public struct FileEventDispatcher {
|
||||||
|
|
||||||
private WrappedListener getHandler(OsFileHandle fd, int idx)
|
private WrappedListener getHandler(OsFileHandle fd, int idx)
|
||||||
in { assert(idx >= 0 && idx < 3); }
|
in { assert(idx >= 0 && idx < 3); }
|
||||||
body {
|
do {
|
||||||
auto handlersPtr = fd in listeners;
|
auto handlersPtr = fd in listeners;
|
||||||
if(handlersPtr is null)
|
if(handlersPtr is null)
|
||||||
return null; // we don't handle this function
|
return null; // we don't handle this function
|
||||||
|
|
|
@ -39,7 +39,7 @@ struct CssSize {
|
||||||
|
|
||||||
int getPixels(int oneEm, int oneHundredPercent)
|
int getPixels(int oneEm, int oneHundredPercent)
|
||||||
// out (ret) { assert(ret >= 0, to!string(ret) ~ " " ~ definition); }
|
// out (ret) { assert(ret >= 0, to!string(ret) ~ " " ~ definition); }
|
||||||
body {
|
do {
|
||||||
if(definition.length == 0 || definition == "none")
|
if(definition.length == 0 || definition == "none")
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
|
2
http.d
2
http.d
|
@ -190,7 +190,7 @@ HttpResponse doHttpRequestOnHelpers(void delegate(string) write, char[] delegate
|
||||||
in {
|
in {
|
||||||
assert(method == "POST" || method == "GET");
|
assert(method == "POST" || method == "GET");
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
auto u = UriParts(uri);
|
auto u = UriParts(uri);
|
||||||
|
|
||||||
|
|
||||||
|
|
2
png.d
2
png.d
|
@ -1678,7 +1678,7 @@ struct Chunk {
|
||||||
in {
|
in {
|
||||||
assert(type.length == 4);
|
assert(type.length == 4);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
Chunk* c = new Chunk;
|
Chunk* c = new Chunk;
|
||||||
c.size = cast(int) payload.length;
|
c.size = cast(int) payload.length;
|
||||||
c.type[] = (cast(ubyte[]) type)[];
|
c.type[] = (cast(ubyte[]) type)[];
|
||||||
|
|
49
terminal.d
49
terminal.d
|
@ -1879,8 +1879,16 @@ struct Terminal {
|
||||||
|
|
||||||
while(writeBuffer.length) {
|
while(writeBuffer.length) {
|
||||||
written = unix.write(this.fdOut, writeBuffer.ptr, writeBuffer.length);
|
written = unix.write(this.fdOut, writeBuffer.ptr, writeBuffer.length);
|
||||||
if(written < 0)
|
if(written < 0) {
|
||||||
|
import core.stdc.errno;
|
||||||
|
auto err = errno();
|
||||||
|
if(err == EAGAIN || err == EWOULDBLOCK) {
|
||||||
|
import core.thread;
|
||||||
|
Thread.sleep(1.msecs);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
throw new Exception("write failed for some reason");
|
throw new Exception("write failed for some reason");
|
||||||
|
}
|
||||||
writeBuffer = writeBuffer[written .. $];
|
writeBuffer = writeBuffer[written .. $];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2397,6 +2405,19 @@ struct RealTimeConsoleInput {
|
||||||
|
|
||||||
n.c_lflag &= ~f;
|
n.c_lflag &= ~f;
|
||||||
tcsetattr(fdIn, TCSANOW, &n);
|
tcsetattr(fdIn, TCSANOW, &n);
|
||||||
|
|
||||||
|
// ensure these are still blocking after the resumption
|
||||||
|
import core.sys.posix.fcntl;
|
||||||
|
if(fdIn != -1) {
|
||||||
|
auto ctl = fcntl(fdIn, F_GETFL);
|
||||||
|
ctl &= ~O_NONBLOCK;
|
||||||
|
fcntl(fdIn, F_SETFL, ctl);
|
||||||
|
}
|
||||||
|
if(fdOut != -1) {
|
||||||
|
auto ctl = fcntl(fdOut, F_GETFL);
|
||||||
|
ctl &= ~O_NONBLOCK;
|
||||||
|
fcntl(fdOut, F_SETFL, ctl);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// copy paste from constructor, but not setting the destructor teardown since that's already done
|
// copy paste from constructor, but not setting the destructor teardown since that's already done
|
||||||
|
@ -2430,6 +2451,7 @@ struct RealTimeConsoleInput {
|
||||||
|
|
||||||
terminal.flush();
|
terminal.flush();
|
||||||
|
|
||||||
|
// returning true will send a resize event as well, which does the rest of the catch up and redraw as necessary
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2561,6 +2583,22 @@ struct RealTimeConsoleInput {
|
||||||
this.fdIn = terminal.fdIn;
|
this.fdIn = terminal.fdIn;
|
||||||
this.fdOut = terminal.fdOut;
|
this.fdOut = terminal.fdOut;
|
||||||
|
|
||||||
|
// if a naughty program changes the mode on these to nonblocking
|
||||||
|
// and doesn't change them back, it can cause trouble to us here.
|
||||||
|
// so i explicitly set the blocking flag since EAGAIN is not as nice
|
||||||
|
// for my purposes (it isn't consistently handled well in here)
|
||||||
|
import core.sys.posix.fcntl;
|
||||||
|
{
|
||||||
|
auto ctl = fcntl(fdIn, F_GETFL);
|
||||||
|
ctl &= ~O_NONBLOCK;
|
||||||
|
fcntl(fdIn, F_SETFL, ctl);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
auto ctl = fcntl(fdOut, F_GETFL);
|
||||||
|
ctl &= ~O_NONBLOCK;
|
||||||
|
fcntl(fdOut, F_SETFL, ctl);
|
||||||
|
}
|
||||||
|
|
||||||
if(fdIn != -1) {
|
if(fdIn != -1) {
|
||||||
tcgetattr(fdIn, &old);
|
tcgetattr(fdIn, &old);
|
||||||
auto n = old;
|
auto n = old;
|
||||||
|
@ -2885,8 +2923,15 @@ struct RealTimeConsoleInput {
|
||||||
return -1;
|
return -1;
|
||||||
else
|
else
|
||||||
goto try_again;
|
goto try_again;
|
||||||
|
} else if(errno == EAGAIN || errno == EWOULDBLOCK) {
|
||||||
|
// I turn off O_NONBLOCK explicitly in setup, but
|
||||||
|
// still just in case, let's keep this working too
|
||||||
|
import core.thread;
|
||||||
|
Thread.sleep(1.msecs);
|
||||||
|
goto try_again;
|
||||||
} else {
|
} else {
|
||||||
throw new Exception("read failed");
|
import std.conv;
|
||||||
|
throw new Exception("read failed " ~ to!string(errno));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue