mirror of https://github.com/adamdruppe/arsd.git
excise std.uri for compile speed
This commit is contained in:
parent
35b19920e8
commit
958cfbea74
29
cgi.d
29
cgi.d
|
@ -603,6 +603,8 @@ static import arsd.core;
|
||||||
version(Posix)
|
version(Posix)
|
||||||
import arsd.core : makeNonBlocking;
|
import arsd.core : makeNonBlocking;
|
||||||
|
|
||||||
|
import arsd.core : encodeUriComponent, decodeUriComponent;
|
||||||
|
|
||||||
|
|
||||||
// for a single thread, linear request thing, use:
|
// for a single thread, linear request thing, use:
|
||||||
// -version=embedded_httpd_threads -version=cgi_no_threads
|
// -version=embedded_httpd_threads -version=cgi_no_threads
|
||||||
|
@ -722,7 +724,6 @@ enum long defaultMaxContentLength = 5_000_000;
|
||||||
public import std.string;
|
public import std.string;
|
||||||
public import std.stdio;
|
public import std.stdio;
|
||||||
public import std.conv;
|
public import std.conv;
|
||||||
import std.uri;
|
|
||||||
import std.uni;
|
import std.uni;
|
||||||
import std.algorithm.comparison;
|
import std.algorithm.comparison;
|
||||||
import std.algorithm.searching;
|
import std.algorithm.searching;
|
||||||
|
@ -1025,7 +1026,7 @@ class Cgi {
|
||||||
auto info = breakUp(arg);
|
auto info = breakUp(arg);
|
||||||
if(_cookie.length)
|
if(_cookie.length)
|
||||||
_cookie ~= "; ";
|
_cookie ~= "; ";
|
||||||
_cookie ~= std.uri.encodeComponent(info[0]) ~ "=" ~ std.uri.encodeComponent(info[1]);
|
_cookie ~= encodeUriComponent(info[0]) ~ "=" ~ encodeUriComponent(info[1]);
|
||||||
}
|
}
|
||||||
if (nextArgIs == "session") {
|
if (nextArgIs == "session") {
|
||||||
auto info = breakUp(arg);
|
auto info = breakUp(arg);
|
||||||
|
@ -1110,7 +1111,7 @@ class Cgi {
|
||||||
if(_queryString.length)
|
if(_queryString.length)
|
||||||
_queryString ~= "&";
|
_queryString ~= "&";
|
||||||
auto parts = breakUp(arg);
|
auto parts = breakUp(arg);
|
||||||
_queryString ~= std.uri.encodeComponent(parts[0]) ~ "=" ~ std.uri.encodeComponent(parts[1]);
|
_queryString ~= encodeUriComponent(parts[0]) ~ "=" ~ encodeUriComponent(parts[1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2445,8 +2446,8 @@ class Cgi {
|
||||||
+/
|
+/
|
||||||
void setCookie(string name, string data, long expiresIn = 0, string path = null, string domain = null, bool httpOnly = false, bool secure = false, SameSitePolicy sameSitePolicy = SameSitePolicy.Lax) {
|
void setCookie(string name, string data, long expiresIn = 0, string path = null, string domain = null, bool httpOnly = false, bool secure = false, SameSitePolicy sameSitePolicy = SameSitePolicy.Lax) {
|
||||||
assert(!outputtedResponseData);
|
assert(!outputtedResponseData);
|
||||||
string cookie = std.uri.encodeComponent(name) ~ "=";
|
string cookie = encodeUriComponent(name) ~ "=";
|
||||||
cookie ~= std.uri.encodeComponent(data);
|
cookie ~= encodeUriComponent(data);
|
||||||
if(path !is null)
|
if(path !is null)
|
||||||
cookie ~= "; path=" ~ path;
|
cookie ~= "; path=" ~ path;
|
||||||
// FIXME: should I just be using max-age here? (also in cache below)
|
// FIXME: should I just be using max-age here? (also in cache below)
|
||||||
|
@ -3131,7 +3132,7 @@ struct Uri {
|
||||||
|
|
||||||
// idk if i want to keep these, since the functions they wrap are used many, many, many times in existing code, so this is either an unnecessary alias or a gratuitous break of compatibility
|
// idk if i want to keep these, since the functions they wrap are used many, many, many times in existing code, so this is either an unnecessary alias or a gratuitous break of compatibility
|
||||||
// the decode ones need to keep different names anyway because we can't overload on return values...
|
// the decode ones need to keep different names anyway because we can't overload on return values...
|
||||||
static string encode(string s) { return std.uri.encodeComponent(s); }
|
static string encode(string s) { return encodeUriComponent(s); }
|
||||||
static string encode(string[string] s) { return encodeVariables(s); }
|
static string encode(string[string] s) { return encodeVariables(s); }
|
||||||
static string encode(string[][string] s) { return encodeVariables(s); }
|
static string encode(string[][string] s) { return encodeVariables(s); }
|
||||||
|
|
||||||
|
@ -3515,13 +3516,13 @@ string[][string] decodeVariables(string data, string separator = "&", string[]*
|
||||||
string name;
|
string name;
|
||||||
string value;
|
string value;
|
||||||
if(equal == -1) {
|
if(equal == -1) {
|
||||||
name = decodeComponent(var);
|
name = decodeUriComponent(var);
|
||||||
value = "";
|
value = "";
|
||||||
} else {
|
} else {
|
||||||
//_get[decodeComponent(var[0..equal])] ~= decodeComponent(var[equal + 1 .. $].replace("+", " "));
|
//_get[decodeUriComponent(var[0..equal])] ~= decodeUriComponent(var[equal + 1 .. $].replace("+", " "));
|
||||||
// stupid + -> space conversion.
|
// stupid + -> space conversion.
|
||||||
name = decodeComponent(var[0..equal].replace("+", " "));
|
name = decodeUriComponent(var[0..equal].replace("+", " "));
|
||||||
value = decodeComponent(var[equal + 1 .. $].replace("+", " "));
|
value = decodeUriComponent(var[equal + 1 .. $].replace("+", " "));
|
||||||
}
|
}
|
||||||
|
|
||||||
_get[name] ~= value;
|
_get[name] ~= value;
|
||||||
|
@ -3554,7 +3555,7 @@ string encodeVariables(in string[string] data) {
|
||||||
else
|
else
|
||||||
outputted = true;
|
outputted = true;
|
||||||
|
|
||||||
ret ~= std.uri.encodeComponent(k) ~ "=" ~ std.uri.encodeComponent(v);
|
ret ~= encodeUriComponent(k) ~ "=" ~ encodeUriComponent(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -3571,7 +3572,7 @@ string encodeVariables(in string[][string] data) {
|
||||||
ret ~= "&";
|
ret ~= "&";
|
||||||
else
|
else
|
||||||
outputted = true;
|
outputted = true;
|
||||||
ret ~= std.uri.encodeComponent(k) ~ "=" ~ std.uri.encodeComponent(v);
|
ret ~= encodeUriComponent(k) ~ "=" ~ encodeUriComponent(v);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11936,7 +11937,7 @@ auto serveStaticFile(string urlPrefix, string filename = null, string contentTyp
|
||||||
// man 2 sendfile
|
// man 2 sendfile
|
||||||
assert(urlPrefix[0] == '/');
|
assert(urlPrefix[0] == '/');
|
||||||
if(filename is null)
|
if(filename is null)
|
||||||
filename = decodeComponent(urlPrefix[1 .. $]); // FIXME is this actually correct?
|
filename = decodeUriComponent(urlPrefix[1 .. $]); // FIXME is this actually correct?
|
||||||
if(contentType is null) {
|
if(contentType is null) {
|
||||||
contentType = contentTypeFromFileExtension(filename);
|
contentType = contentTypeFromFileExtension(filename);
|
||||||
}
|
}
|
||||||
|
@ -12027,7 +12028,7 @@ auto serveStaticFileDirectory(string urlPrefix, string directory = null, bool re
|
||||||
assert(directory[$-1] == '/');
|
assert(directory[$-1] == '/');
|
||||||
|
|
||||||
static bool internalHandler(string urlPrefix, Cgi cgi, Object presenter, DispatcherDetails details) {
|
static bool internalHandler(string urlPrefix, Cgi cgi, Object presenter, DispatcherDetails details) {
|
||||||
auto file = decodeComponent(cgi.pathInfo[urlPrefix.length .. $]); // FIXME: is this actually correct
|
auto file = decodeUriComponent(cgi.pathInfo[urlPrefix.length .. $]); // FIXME: is this actually correct
|
||||||
|
|
||||||
if(details.recursive) {
|
if(details.recursive) {
|
||||||
// never allow a backslash since it isn't in a typical url anyway and makes the following checks easier
|
// never allow a backslash since it isn't in a typical url anyway and makes the following checks easier
|
||||||
|
|
12
dom.d
12
dom.d
|
@ -50,6 +50,9 @@
|
||||||
+/
|
+/
|
||||||
module arsd.dom;
|
module arsd.dom;
|
||||||
|
|
||||||
|
static import arsd.core;
|
||||||
|
import arsd.core : encodeUriComponent, decodeUriComponent;
|
||||||
|
|
||||||
// FIXME: support the css standard namespace thing in the selectors too
|
// FIXME: support the css standard namespace thing in the selectors too
|
||||||
|
|
||||||
version(with_arsd_jsvar)
|
version(with_arsd_jsvar)
|
||||||
|
@ -4575,7 +4578,6 @@ string camelCase(string a) {
|
||||||
|
|
||||||
import std.string;
|
import std.string;
|
||||||
import std.exception;
|
import std.exception;
|
||||||
import std.uri;
|
|
||||||
import std.array;
|
import std.array;
|
||||||
import std.range;
|
import std.range;
|
||||||
|
|
||||||
|
@ -5400,7 +5402,7 @@ class Link : Element {
|
||||||
if(index == -1)
|
if(index == -1)
|
||||||
hash[var] = "";
|
hash[var] = "";
|
||||||
else {
|
else {
|
||||||
hash[decodeComponent(var[0..index])] = decodeComponent(var[index + 1 .. $]);
|
hash[decodeUriComponent(var[0..index])] = decodeUriComponent(var[index + 1 .. $]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5430,9 +5432,9 @@ class Link : Element {
|
||||||
else
|
else
|
||||||
first = false;
|
first = false;
|
||||||
|
|
||||||
query ~= encodeComponent(name);
|
query ~= encodeUriComponent(name);
|
||||||
if(value.length)
|
if(value.length)
|
||||||
query ~= "=" ~ encodeComponent(value);
|
query ~= "=" ~ encodeUriComponent(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(query != "?")
|
if(query != "?")
|
||||||
|
@ -5672,7 +5674,7 @@ class Form : Element {
|
||||||
else
|
else
|
||||||
outputted = true;
|
outputted = true;
|
||||||
|
|
||||||
ret ~= std.uri.encodeComponent(e.name) ~ "=" ~ std.uri.encodeComponent(getValue(e.name));
|
ret ~= encodeUriComponent(e.name) ~ "=" ~ encodeUriComponent(getValue(e.name));
|
||||||
|
|
||||||
namesDone[e.name] = true;
|
namesDone[e.name] = true;
|
||||||
}
|
}
|
||||||
|
|
5
html.d
5
html.d
|
@ -8,10 +8,11 @@
|
||||||
*/
|
*/
|
||||||
module arsd.html;
|
module arsd.html;
|
||||||
|
|
||||||
|
import arsd.core : encodeUriComponent;
|
||||||
|
|
||||||
public import arsd.dom;
|
public import arsd.dom;
|
||||||
import arsd.color;
|
import arsd.color;
|
||||||
|
|
||||||
static import std.uri;
|
|
||||||
import std.array;
|
import std.array;
|
||||||
import std.string;
|
import std.string;
|
||||||
import std.variant;
|
import std.variant;
|
||||||
|
@ -1757,7 +1758,7 @@ class MacroExpander {
|
||||||
};
|
};
|
||||||
|
|
||||||
functions["uriEncode"] = delegate dstring(dstring[] args) {
|
functions["uriEncode"] = delegate dstring(dstring[] args) {
|
||||||
return to!dstring(std.uri.encodeComponent(to!string(args[0])));
|
return to!dstring(encodeUriComponent(to!string(args[0])));
|
||||||
};
|
};
|
||||||
|
|
||||||
functions["test"] = delegate dstring(dstring[] args) {
|
functions["test"] = delegate dstring(dstring[] args) {
|
||||||
|
|
|
@ -273,8 +273,8 @@ class WebTemplateRenderer {
|
||||||
};
|
};
|
||||||
|
|
||||||
context.encodeURIComponent = function string(var f) {
|
context.encodeURIComponent = function string(var f) {
|
||||||
import std.uri;
|
import arsd.core;
|
||||||
return encodeComponent(f.get!string);
|
return encodeUriComponent(f.get!string);
|
||||||
};
|
};
|
||||||
|
|
||||||
context.formatDate = function string(string s) {
|
context.formatDate = function string(string s) {
|
||||||
|
|
Loading…
Reference in New Issue