Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve response logic #95

Merged
merged 4 commits into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 26 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pyo3 = { version = "0.23.4", features = ["extension-module", "abi3-py38", "index
anyhow = "1.0.95"
tracing = { version = "0.1.41", features = ["log-always"] }
pyo3-log = "0.12.1"
rquest = { version = "2.0.3", features = [
rquest = { version = "2.1.0", features = [
"json",
"cookies",
"socks",
Expand All @@ -37,6 +37,10 @@ bytes = "1.10.0"
pythonize = "0.23.0"
serde_json = "1.0.138"
webpki-root-certs = "0.26.8"
http-body-util = "0.1.2"
http = "1.2.0"
mime = "0.3.17"
url = "2.5.4"

[profile.release]
codegen-units = 1
Expand Down
39 changes: 15 additions & 24 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
use std::sync::{Arc, LazyLock, Mutex};
use std::time::Duration;

use anyhow::{Error, Result};
use bytes::Bytes;
use anyhow::Result;
use foldhash::fast::RandomState;
use indexmap::IndexMap;
use pyo3::prelude::*;
use pyo3::types::PyBytes;
use pythonize::depythonize;
use rquest::{
header::{HeaderValue, COOKIE},
Expand Down Expand Up @@ -439,35 +437,28 @@ impl RClient {
}

// Send the request and await the response
let resp = request_builder.send().await?;

// Response items
let cookies: IndexMapSSR = resp
.cookies()
.map(|cookie| (cookie.name().to_string(), cookie.value().to_string()))
.collect();
let headers: IndexMapSSR = resp.headers().to_indexmap();
let resp: rquest::Response = request_builder.send().await?;
let url: String = resp.url().to_string();
let status_code = resp.status().as_u16();
let url = resp.url().to_string();
let buf = resp.bytes().await?;

tracing::info!("response: {} {} {}", url, status_code, buf.len());
Ok((buf, cookies, headers, status_code, url))
tracing::info!("response: {} {}", url, status_code);
Ok((resp, url, status_code))
};

// Execute an async future, releasing the Python GIL for concurrency.
// Use Tokio global runtime to block on the future.
let result: Result<(Bytes, IndexMapSSR, IndexMapSSR, u16, String), Error> =
let response: Result<(rquest::Response, String, u16)> =
py.allow_threads(|| RUNTIME.block_on(future));
let (f_buf, f_cookies, f_headers, f_status_code, f_url) = result?;

let result = response?;
let resp = http::Response::from(result.0);
let url = result.1;
let status_code = result.2;
Ok(Response {
content: PyBytes::new(py, &f_buf).unbind(),
cookies: f_cookies,
encoding: String::new(),
headers: f_headers,
status_code: f_status_code,
url: f_url,
resp,
_content: None,
_encoding: None,
url,
status_code,
})
}
}
Expand Down
Loading
Loading