This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! Minimal Redis client implementation | |
//! | |
//! Provides an async connect and methods for issuing the supported commands. | |
use crate::cmd::{Get, Publish, Set, Subscribe, Unsubscribe}; | |
use crate::{Connection, Frame}; | |
use async_stream::try_stream; | |
use bytes::Bytes; | |
use std::io::{Error, ErrorKind}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use mini_redis::{client, DEFAULT_PORT}; | |
use bytes::Bytes; | |
use std::num::ParseIntError; | |
use std::str; | |
use std::time::Duration; | |
use structopt::StructOpt; | |
#[derive(StructOpt, Debug)] | |
#[structopt(name = "mini-redis-cli", version = env!("CARGO_PKG_VERSION"), author = env!("CARGO_PKG_AUTHORS"), about = "Issue Redis commands")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use tokio::sync::broadcast; | |
/// Listens for the server shutdown signal. | |
/// | |
/// Shutdown is signalled using a `broadcast::Receiver`. Only a single value is | |
/// ever sent. Once a value has been sent via the broadcast channel, the server | |
/// should shutdown. | |
/// | |
/// The `Shutdown` struct listens for the signal and tracks that the signal has | |
/// been received. Callers may query for whether the shutdown signal has been |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use crate::Frame; | |
use bytes::Bytes; | |
use std::{fmt, str, vec}; | |
/// Utility for parsing a command | |
/// | |
/// Commands are represented as array frames. Each entry in the frame is a | |
/// "token". A `Parse` is initialized with the array frame and provides a | |
/// cursor-like API. Each command struct includes a `parse_frame` method that |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use tokio::sync::{broadcast, Notify}; | |
use tokio::time::{self, Duration, Instant}; | |
use bytes::Bytes; | |
use std::collections::{BTreeMap, HashMap}; | |
use std::sync::{Arc, Mutex}; | |
use tracing::debug; | |
/// A wrapper around a `Db` instance. This exists to allow orderly cleanup | |
/// of the `Db` by signalling the background purge task to shut down when |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! Provides a type representing a Redis protocol frame as well as utilities for | |
//! parsing frames from a byte array. | |
use bytes::{Buf, Bytes}; | |
use std::convert::TryInto; | |
use std::fmt; | |
use std::io::Cursor; | |
use std::num::TryFromIntError; | |
use std::string::FromUtf8Error; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Write a single `Frame` value to the underlying stream. | |
/// | |
/// The `Frame` value is written to the socket using the various `write_*` | |
/// functions provided by `AsyncWrite`. Calling these functions directly on | |
/// a `TcpStream` is **not** advised, as this will result in a large number of | |
/// syscalls. However, it is fine to call these functions on a *buffered* | |
/// write stream. The data will be written to the buffer. Once the buffer is | |
/// full, it is flushed to the underlying socket. | |
pub async fn write_frame(&mut self, frame: &Frame) -> io::Result<()> { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Read a single `Frame` value from the underlying stream. | |
/// | |
/// The function waits until it has retrieved enough data to parse a frame. | |
/// Any data remaining in the read buffer after the frame has been parsed is | |
/// kept there for the next call to `read_frame`. | |
/// | |
/// # Returns | |
/// | |
/// On success, the received frame is returned. If the `TcpStream` | |
/// is closed in a way that doesn't break a frame in half, it returns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::rc::Rc; | |
use std::cell::RefCell; | |
impl Solution { | |
pub fn is_balanced(root: Option<Rc<RefCell<TreeNode>>>) -> bool { | |
match root { | |
None => true, | |
Some(curr_node) =>{ | |
let curr_node = curr_node.borrow(); | |
let left = Self::height(curr_node.left.clone()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use crate::{Connection, Db, Frame, Parse}; | |
use bytes::Bytes; | |
use tracing::{debug, instrument}; | |
/// Get the value of key. | |
/// | |
/// If the key does not exist the special value nil is returned. An error is | |
/// returned if the value stored at key is not a string, because GET only | |
/// handles string values. |