Merge branch 'master' of github.com:adamdruppe/arsd

This commit is contained in:
Adam D. Ruppe 2018-02-07 22:14:47 -05:00
commit 02180151ce
3 changed files with 49 additions and 26 deletions

9
dom.d
View File

@ -3177,7 +3177,7 @@ class Element {
// for simple `<collection><item>text</item><item>text</item></collection>`, let's // for simple `<collection><item>text</item><item>text</item></collection>`, let's
// just keep them on the same line // just keep them on the same line
if(allAreInlineHtml(children)) { if(tagName.isInArray(inlineElements) || allAreInlineHtml(children)) {
foreach(child; children) { foreach(child; children) {
s ~= child.toString(); s ~= child.toString();
} }
@ -7051,13 +7051,6 @@ unittest {
} }
+/ +/
/+
so this currently outputs
<span>
</span>
for an empty span. idk if i want that.
+/
bool allAreInlineHtml(const(Element)[] children) { bool allAreInlineHtml(const(Element)[] children) {
foreach(child; children) { foreach(child; children) {
if(child.nodeType == NodeType.Text && child.nodeValue.strip.length) { if(child.nodeType == NodeType.Text && child.nodeValue.strip.length) {

61
http2.d
View File

@ -59,6 +59,7 @@ version(with_openssl) {
HttpRequest httpRequest(string method, string url, ubyte[] content, string[string] content) { HttpRequest httpRequest(string method, string url, ubyte[] content, string[string] content) {
return null; return null;
} }
+/
/** /**
auto request = get("http://arsdnet.net/"); auto request = get("http://arsdnet.net/");
@ -67,16 +68,19 @@ HttpRequest httpRequest(string method, string url, ubyte[] content, string[strin
auto response = get("http://arsdnet.net/").waitForCompletion(); auto response = get("http://arsdnet.net/").waitForCompletion();
*/ */
HttpRequest get(string url) { HttpRequest get(string url) {
auto request = new HttpRequest(); auto client = new HttpClient();
auto request = client.navigateTo(Uri(url));
return request; return request;
} }
/// gets the text off a url. basic operation only.
string getText(string url) { string getText(string url) {
auto request = get(url); auto request = get(url);
auto response = request.waitForCompletion(); auto response = request.waitForCompletion();
return cast(string) response.content; return cast(string) response.content;
} }
/+
ubyte[] getBinary(string url, string[string] cookies = null) { ubyte[] getBinary(string url, string[string] cookies = null) {
auto hr = httpRequest("GET", url, null, cookies); auto hr = httpRequest("GET", url, null, cookies);
if(hr.code != 200) if(hr.code != 200)
@ -116,6 +120,7 @@ string post(string url, string[string] args, string[string] cookies = null) {
return cast(string) hr.content; return cast(string) hr.content;
} }
+/ +/
/// ///
@ -667,6 +672,8 @@ class HttpRequest {
import std.zlib; import std.zlib;
UnCompress uncompress; UnCompress uncompress;
const(ubyte)[] leftoverDataFromLastTime;
void handleIncomingData(scope const ubyte[] dataIn) { void handleIncomingData(scope const ubyte[] dataIn) {
debug(arsd_http2) writeln("handleIncomingData, state: ", state); debug(arsd_http2) writeln("handleIncomingData, state: ", state);
if(state == State.waitingForResponse) { if(state == State.waitingForResponse) {
@ -675,7 +682,11 @@ class HttpRequest {
bodyReadingState = BodyReadingState.init; bodyReadingState = BodyReadingState.init;
} }
const(ubyte)[] data = dataIn[]; const(ubyte)[] data;
if(leftoverDataFromLastTime.length)
data = leftoverDataFromLastTime ~ dataIn[];
else
data = dataIn[];
if(state == State.readingHeaders) { if(state == State.readingHeaders) {
void parseLastHeader() { void parseLastHeader() {
@ -832,8 +843,9 @@ class HttpRequest {
power *= 16; power *= 16;
} }
debug(arsd_http2) writeln("Chunk length: ", bodyReadingState.contentLengthRemaining); debug(arsd_http2) writeln("Chunk length: ", bodyReadingState.contentLengthRemaining);
bodyReadingState.chunkedState++; bodyReadingState.chunkedState = 1;
continue; data = data[a + 1 .. $];
goto start_over;
} }
break; break;
case 1: // reading until end of line case 1: // reading until end of line
@ -844,31 +856,36 @@ class HttpRequest {
else else
bodyReadingState.chunkedState = 2; bodyReadingState.chunkedState = 2;
} }
data = data[a + 1 .. $];
goto start_over;
break; break;
case 2: // reading data case 2: // reading data
auto can = a + bodyReadingState.contentLengthRemaining; auto can = a + bodyReadingState.contentLengthRemaining;
if(can > data.length) if(can > data.length)
can = cast(int) data.length; can = cast(int) data.length;
auto newData = data[a .. can];
data = data[can .. $];
//if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) //if(bodyReadingState.isGzipped || bodyReadingState.isDeflated)
// responseData.content ~= cast(ubyte[]) uncompress.uncompress(data[a .. can]); // responseData.content ~= cast(ubyte[]) uncompress.uncompress(data[a .. can]);
//else //else
responseData.content ~= data[a .. can]; responseData.content ~= newData;
bodyReadingState.contentLengthRemaining -= can - a; bodyReadingState.contentLengthRemaining -= newData.length;
debug(arsd_http2) writeln("clr: ", bodyReadingState.contentLengthRemaining, " " , a, " ", can); debug(arsd_http2) writeln("clr: ", bodyReadingState.contentLengthRemaining, " " , a, " ", can);
a += can - a;
assert(bodyReadingState.contentLengthRemaining >= 0); assert(bodyReadingState.contentLengthRemaining >= 0);
if(bodyReadingState.contentLengthRemaining == 0) { if(bodyReadingState.contentLengthRemaining == 0) {
bodyReadingState.chunkedState++; bodyReadingState.chunkedState = 3;
data = data[a .. $];
} else { } else {
data = data[a .. $]; // will continue grabbing more
} }
goto start_over; goto start_over;
case 3: // reading 13/10 case 3: // reading 13/10
assert(data[a] == 13); assert(data[a] == 13);
bodyReadingState.chunkedState++; bodyReadingState.chunkedState++;
data = data[a + 1 .. $];
goto start_over;
break; break;
case 4: // reading 10 at end of packet case 4: // reading 10 at end of packet
assert(data[a] == 10); assert(data[a] == 10);
@ -879,10 +896,11 @@ class HttpRequest {
//goto done; // FIXME //goto done; // FIXME
state = State.complete; state = State.complete;
// skip the tailing chunk of headers bodyReadingState.chunkedState = 0;
// FIXME
if(data.length == 5 && data == [48, 13, 10, 13, 10]) while(data[a] != 10)
a = cast(int) data.length; a++;
data = data[a + 1 .. $];
if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) { if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) {
auto n = uncompress.uncompress(responseData.content); auto n = uncompress.uncompress(responseData.content);
@ -893,6 +911,8 @@ class HttpRequest {
// responseData.content ~= cast(ubyte[]) uncompress.flush(); // responseData.content ~= cast(ubyte[]) uncompress.flush();
responseData.contentText = cast(string) responseData.content; responseData.contentText = cast(string) responseData.content;
goto done;
} }
} }
@ -905,8 +925,12 @@ class HttpRequest {
// responseData.content ~= cast(ubyte[]) uncompress.uncompress(data); // responseData.content ~= cast(ubyte[]) uncompress.uncompress(data);
//else //else
responseData.content ~= data; responseData.content ~= data;
assert(data.length <= bodyReadingState.contentLengthRemaining, format("%d <= %d\n%s", data.length, bodyReadingState.contentLengthRemaining, cast(string)data)); //assert(data.length <= bodyReadingState.contentLengthRemaining, format("%d <= %d\n%s", data.length, bodyReadingState.contentLengthRemaining, cast(string)data));
bodyReadingState.contentLengthRemaining -= data.length; int use = cast(int) data.length;
if(use > bodyReadingState.contentLengthRemaining)
use = bodyReadingState.contentLengthRemaining;
bodyReadingState.contentLengthRemaining -= use;
data = data[use .. $];
if(bodyReadingState.contentLengthRemaining == 0) { if(bodyReadingState.contentLengthRemaining == 0) {
if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) { if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) {
auto n = uncompress.uncompress(responseData.content); auto n = uncompress.uncompress(responseData.content);
@ -922,6 +946,11 @@ class HttpRequest {
} }
} }
} }
if(data.length)
leftoverDataFromLastTime = data.dup;
else
leftoverDataFromLastTime = null;
} }
this() { this() {

5
web.d
View File

@ -1464,8 +1464,9 @@ void run(Provider)(Cgi cgi, Provider instantiation, size_t pathInfoStartingPoint
} }
auto code = Element.make("div"); auto code = Element.make("div");
code.addClass("exception-error-message"); code.addClass("exception-error-message");
code.addChild("p", e.msg); import arsd.characterencodings;
debug code.addChild("pre", e.toString()); code.addChild("p", convertToUtf8Lossy(cast(immutable(ubyte)[]) e.msg, "utf8"));
debug code.addChild("pre", convertToUtf8Lossy(cast(immutable(ubyte)[]) e.toString(), "utf8"));
result.result.str = (code.toString()); result.result.str = (code.toString());
} }