From b480341fa6d58644f594ec0a03e60c1f8f062400 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Mon, 12 Jun 2023 17:43:49 -0600 Subject: [PATCH] perf(ext/http): from_maybe_shared_unchecked for header values (#19478) Prevents re-checking strings we already know are latin-1. Small improvement: 115k->116k --- ext/http/http_next.rs | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/ext/http/http_next.rs b/ext/http/http_next.rs index 93634ae3e2..f2e25555a8 100644 --- a/ext/http/http_next.rs +++ b/ext/http/http_next.rs @@ -16,6 +16,7 @@ use crate::slab::slab_insert; use crate::slab::SlabId; use crate::websocket_upgrade::WebSocketUpgrade; use crate::LocalExecutor; +use bytes::Bytes; use cache_control::CacheControl; use deno_core::error::AnyError; use deno_core::futures::TryFutureExt; @@ -376,12 +377,17 @@ pub fn op_http_read_request_body( } #[op(fast)] -pub fn op_http_set_response_header(slab_id: SlabId, name: &str, value: &str) { +pub fn op_http_set_response_header( + slab_id: SlabId, + name: ByteString, + value: ByteString, +) { let mut http = slab_get(slab_id); let resp_headers = http.response().headers_mut(); // These are valid latin-1 strings - let name = HeaderName::from_bytes(name.as_bytes()).unwrap(); - let value = HeaderValue::from_bytes(value.as_bytes()).unwrap(); + let name = HeaderName::from_bytes(&name).unwrap(); + // SAFETY: These are valid latin-1 strings + let value = unsafe { HeaderValue::from_maybe_shared_unchecked(value) }; resp_headers.append(name, value); } @@ -410,7 +416,9 @@ fn op_http_set_response_headers( let v8_name: ByteString = from_v8(scope, name).unwrap(); let v8_value: ByteString = from_v8(scope, value).unwrap(); let header_name = HeaderName::from_bytes(&v8_name).unwrap(); - let header_value = HeaderValue::from_bytes(&v8_value).unwrap(); + // SAFETY: These are valid latin-1 strings + let header_value = + unsafe { HeaderValue::from_maybe_shared_unchecked(v8_value) }; resp_headers.append(header_name, header_value); } } @@ -425,7 +433,8 @@ pub fn op_http_set_response_trailers( for (name, value) in trailers { // These are valid latin-1 strings let name = HeaderName::from_bytes(&name).unwrap(); - let value = HeaderValue::from_bytes(&value).unwrap(); + // SAFETY: These are valid latin-1 strings + let value = unsafe { HeaderValue::from_maybe_shared_unchecked(value) }; trailer_map.append(name, value); } *http.trailers().borrow_mut() = Some(trailer_map);