| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2024 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use std::{io, time::Duration};
- use smol::io::{AsyncReadExt, AsyncWriteExt, BufReader, ReadHalf, WriteHalf};
- use super::jsonrpc::*;
- use crate::net::transport::PtStream;
- pub(super) const INIT_BUF_SIZE: usize = 4096; // 4K
- pub(super) const MAX_BUF_SIZE: usize = 1024 * 8192; // 8M
- pub(super) const READ_TIMEOUT: Duration = Duration::from_secs(30);
- /// Internal read function that reads from the active stream into a buffer.
- /// Reading stops upon reaching CRLF or LF, or when `MAX_BUF_SIZE` is reached.
- pub(super) async fn read_from_stream(
- reader: &mut BufReader<ReadHalf<Box<dyn PtStream>>>,
- buf: &mut Vec<u8>,
- ) -> io::Result<usize> {
- let mut total_read = 0;
- // Intermediate buffer we use to read byte-by-byte.
- let mut tmpbuf = [0_u8];
- while total_read < MAX_BUF_SIZE {
- buf.resize(total_read + INIT_BUF_SIZE, 0);
- match reader.read(&mut tmpbuf).await {
- Ok(0) if total_read == 0 => return Err(io::ErrorKind::ConnectionAborted.into()),
- Ok(0) => break, // Finished reading
- Ok(_) => {
- // When we reach '\n', pop a possible '\r' from the buffer and bail.
- if tmpbuf[0] == b'\n' {
- if buf[total_read - 1] == b'\r' {
- buf.pop();
- total_read -= 1;
- }
- break
- }
- // Copy the read byte to the destination buffer.
- buf[total_read] = tmpbuf[0];
- total_read += 1;
- }
- Err(e) => return Err(e),
- }
- }
- // Truncate buffer to actual data size
- buf.truncate(total_read);
- Ok(total_read)
- }
- /// Internal write function that writes a JSON-RPC object to the active stream.
- pub(super) async fn write_to_stream(
- writer: &mut WriteHalf<Box<dyn PtStream>>,
- object: &JsonResult,
- ) -> io::Result<()> {
- let object_str = match object {
- JsonResult::Notification(v) => v.stringify().unwrap(),
- JsonResult::Response(v) => v.stringify().unwrap(),
- JsonResult::Error(v) => v.stringify().unwrap(),
- JsonResult::Request(v) => v.stringify().unwrap(),
- _ => unreachable!(),
- };
- // As we're a line-based protocol, we append CRLF to the end of the JSON string.
- for i in [object_str.as_bytes(), &[b'\r', b'\n']] {
- writer.write_all(i).await?
- }
- writer.flush().await?;
- Ok(())
- }
|