mirror of
https://github.com/urbit/shrub.git
synced 2024-11-28 13:54:20 +03:00
eyre: forego <atom> in favor of (scow %aura atom)
Pretty-printing is expensive, yet we do it whenever we construct the cookie string, at least once (but usually twice) per authenticated request. Here we call out the the specific to-tape functions we need, instead of relying on the pretty-printer for converting... tapes to tapes, among other things. The primary gains come from the cookie-related instances, we update the others mostly for good style. For the "receive request and immediately send response" case, that is processed synchronously within eyre (ie, client sends channel ack), speeds thing up by roughly 55%.
This commit is contained in:
parent
37c0383a79
commit
c992e4ce9d
@ -462,7 +462,7 @@
|
||||
==
|
||||
;body
|
||||
;h1:"Internal Server Error"
|
||||
;p:"There was an error while handling the request for {<(trip url)>}."
|
||||
;p:"There was an error while handling the request for {(trip url)}."
|
||||
;* ?: authorized
|
||||
;=
|
||||
;code:"*{(render-tang-to-marl 80 t)}"
|
||||
@ -478,7 +478,7 @@
|
||||
::
|
||||
=/ code-as-tape=tape (format-ud-as-integer code)
|
||||
=/ message=tape
|
||||
?+ code "{<code>} Error"
|
||||
?+ code "{(scow %ud code)} Error"
|
||||
%400 "Bad Request"
|
||||
%403 "Forbidden"
|
||||
%404 "Not Found"
|
||||
@ -495,7 +495,7 @@
|
||||
==
|
||||
;body
|
||||
;h1:"{message}"
|
||||
;p:"There was an error while handling the request for {<(trip url)>}."
|
||||
;p:"There was an error while handling the request for {(trip url)}."
|
||||
;* ?: authorized
|
||||
;=
|
||||
;code:"{t}"
|
||||
@ -999,7 +999,7 @@
|
||||
~
|
||||
:: is there an urbauth cookie?
|
||||
::
|
||||
?~ urbauth=(get-header:http (crip "urbauth-{<our>}") u.cookies)
|
||||
?~ urbauth=(get-header:http (crip "urbauth-{(scow %p our)}") u.cookies)
|
||||
~
|
||||
:: if it's formatted like a valid session cookie, produce it
|
||||
::
|
||||
@ -1039,7 +1039,7 @@
|
||||
^- @t
|
||||
%- crip
|
||||
=; max-age=tape
|
||||
"urbauth-{<our>}={<session>}; Path=/; Max-Age={max-age}"
|
||||
"urbauth-{(scow %p our)}={(scow %uv session)}; Path=/; Max-Age={max-age}"
|
||||
%- format-ud-as-integer
|
||||
?. extend 0
|
||||
(div (msec:milly session-timeout) 1.000)
|
||||
@ -2400,7 +2400,7 @@
|
||||
=/ handle-gall-error
|
||||
handle-gall-error:(per-server-event event-args)
|
||||
=^ moves server-state.ax
|
||||
(handle-gall-error leaf+"eyre bad mark {<mark>}" ~)
|
||||
(handle-gall-error leaf+"eyre bad mark {(trip mark)}" ~)
|
||||
[moves http-server-gate]
|
||||
::
|
||||
=/ =http-event:http
|
||||
|
Loading…
Reference in New Issue
Block a user