excise std.uri for compile speed

This commit is contained in:
Adam D. Ruppe 2024-06-10 14:15:34 -04:00
parent 35b19920e8
commit 958cfbea74
4 changed files with 27 additions and 23 deletions

29
cgi.d
View File

@ -603,6 +603,8 @@ static import arsd.core;
version(Posix)
import arsd.core : makeNonBlocking;
import arsd.core : encodeUriComponent, decodeUriComponent;
// for a single thread, linear request thing, use:
// -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.stdio;
public import std.conv;
import std.uri;
import std.uni;
import std.algorithm.comparison;
import std.algorithm.searching;
@ -1025,7 +1026,7 @@ class Cgi {
auto info = breakUp(arg);
if(_cookie.length)
_cookie ~= "; ";
_cookie ~= std.uri.encodeComponent(info[0]) ~ "=" ~ std.uri.encodeComponent(info[1]);
_cookie ~= encodeUriComponent(info[0]) ~ "=" ~ encodeUriComponent(info[1]);
}
if (nextArgIs == "session") {
auto info = breakUp(arg);
@ -1110,7 +1111,7 @@ class Cgi {
if(_queryString.length)
_queryString ~= "&";
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) {
assert(!outputtedResponseData);
string cookie = std.uri.encodeComponent(name) ~ "=";
cookie ~= std.uri.encodeComponent(data);
string cookie = encodeUriComponent(name) ~ "=";
cookie ~= encodeUriComponent(data);
if(path !is null)
cookie ~= "; path=" ~ path;
// 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
// 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); }
@ -3515,13 +3516,13 @@ string[][string] decodeVariables(string data, string separator = "&", string[]*
string name;
string value;
if(equal == -1) {
name = decodeComponent(var);
name = decodeUriComponent(var);
value = "";
} else {
//_get[decodeComponent(var[0..equal])] ~= decodeComponent(var[equal + 1 .. $].replace("+", " "));
//_get[decodeUriComponent(var[0..equal])] ~= decodeUriComponent(var[equal + 1 .. $].replace("+", " "));
// stupid + -> space conversion.
name = decodeComponent(var[0..equal].replace("+", " "));
value = decodeComponent(var[equal + 1 .. $].replace("+", " "));
name = decodeUriComponent(var[0..equal].replace("+", " "));
value = decodeUriComponent(var[equal + 1 .. $].replace("+", " "));
}
_get[name] ~= value;
@ -3554,7 +3555,7 @@ string encodeVariables(in string[string] data) {
else
outputted = true;
ret ~= std.uri.encodeComponent(k) ~ "=" ~ std.uri.encodeComponent(v);
ret ~= encodeUriComponent(k) ~ "=" ~ encodeUriComponent(v);
}
return ret;
@ -3571,7 +3572,7 @@ string encodeVariables(in string[][string] data) {
ret ~= "&";
else
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
assert(urlPrefix[0] == '/');
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) {
contentType = contentTypeFromFileExtension(filename);
}
@ -12027,7 +12028,7 @@ auto serveStaticFileDirectory(string urlPrefix, string directory = null, bool re
assert(directory[$-1] == '/');
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) {
// never allow a backslash since it isn't in a typical url anyway and makes the following checks easier

12
dom.d
View File

@ -50,6 +50,9 @@
+/
module arsd.dom;
static import arsd.core;
import arsd.core : encodeUriComponent, decodeUriComponent;
// FIXME: support the css standard namespace thing in the selectors too
version(with_arsd_jsvar)
@ -4575,7 +4578,6 @@ string camelCase(string a) {
import std.string;
import std.exception;
import std.uri;
import std.array;
import std.range;
@ -5400,7 +5402,7 @@ class Link : Element {
if(index == -1)
hash[var] = "";
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
first = false;
query ~= encodeComponent(name);
query ~= encodeUriComponent(name);
if(value.length)
query ~= "=" ~ encodeComponent(value);
query ~= "=" ~ encodeUriComponent(value);
}
if(query != "?")
@ -5672,7 +5674,7 @@ class Form : Element {
else
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;
}

5
html.d
View File

@ -8,10 +8,11 @@
*/
module arsd.html;
import arsd.core : encodeUriComponent;
public import arsd.dom;
import arsd.color;
static import std.uri;
import std.array;
import std.string;
import std.variant;
@ -1757,7 +1758,7 @@ class MacroExpander {
};
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) {

View File

@ -273,8 +273,8 @@ class WebTemplateRenderer {
};
context.encodeURIComponent = function string(var f) {
import std.uri;
return encodeComponent(f.get!string);
import arsd.core;
return encodeUriComponent(f.get!string);
};
context.formatDate = function string(string s) {