mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 22:46:39 +01:00
Rewrite examples/db_remember.rs
to use ErasedStorage
This commit is contained in:
parent
873ed87930
commit
cf8c1b78b7
7 changed files with 84 additions and 84 deletions
|
@ -8,8 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- The `Storage::erase` default function that returns `ErasedStorage`.
|
- The `Storage::erase` default function that returns `Arc<ErasedStorage>`.
|
||||||
- `ErasedStorage`, a storage with an erased error type.
|
- `ErasedStorage`, a storage with an erased error type.
|
||||||
|
- Allow the storage generic `S` be `?Sized` in `Dialogue`.
|
||||||
|
|
||||||
## 0.7.1 - 2022-03-09
|
## 0.7.1 - 2022-03-09
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,23 @@
|
||||||
use teloxide::{macros::DialogueState, prelude2::*, types::Me, utils::command::BotCommand};
|
// Set the `DB_REMEMBER_REDIS` environmental variable if you want to use Redis.
|
||||||
|
// Otherwise, the default is Sqlite.
|
||||||
|
|
||||||
// include!("redis_config.in");
|
use teloxide::{
|
||||||
include!("sqlite_config.in");
|
dispatching2::dialogue::{
|
||||||
|
serializer::{Bincode, Json},
|
||||||
|
ErasedStorage, RedisStorage, SqliteStorage, Storage,
|
||||||
|
},
|
||||||
|
macros::DialogueState,
|
||||||
|
prelude2::*,
|
||||||
|
types::Me,
|
||||||
|
utils::command::BotCommand,
|
||||||
|
};
|
||||||
|
|
||||||
type MyDialogue = Dialogue<State, MyStorage>;
|
type MyDialogue = Dialogue<State, ErasedStorage<State>>;
|
||||||
|
type MyStorage = std::sync::Arc<ErasedStorage<State>>;
|
||||||
|
type HandlerResult = Result<(), Box<dyn std::error::Error + Send + Sync>>;
|
||||||
|
|
||||||
#[derive(DialogueState, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(DialogueState, Clone, serde::Serialize, serde::Deserialize)]
|
||||||
#[handler_out(anyhow::Result<()>)]
|
#[handler_out(HandlerResult)]
|
||||||
pub enum State {
|
pub enum State {
|
||||||
#[handler(handle_start)]
|
#[handler(handle_start)]
|
||||||
Start,
|
Start,
|
||||||
|
@ -34,9 +45,14 @@ pub enum Command {
|
||||||
async fn main() {
|
async fn main() {
|
||||||
let bot = Bot::from_env().auto_send();
|
let bot = Bot::from_env().auto_send();
|
||||||
|
|
||||||
let storage = open_storage().await;
|
let storage: MyStorage = if std::env::var("DB_REMEMBER_REDIS").is_ok() {
|
||||||
|
RedisStorage::open("redis://127.0.0.1:6379", Bincode).await.unwrap().erase()
|
||||||
|
} else {
|
||||||
|
SqliteStorage::open("db.sqlite", Json).await.unwrap().erase()
|
||||||
|
};
|
||||||
|
|
||||||
let handler = Update::filter_message()
|
let handler = Update::filter_message()
|
||||||
.enter_dialogue::<Message, MyStorage, State>()
|
.enter_dialogue::<Message, ErasedStorage<State>, State>()
|
||||||
.dispatch_by::<State>();
|
.dispatch_by::<State>();
|
||||||
|
|
||||||
Dispatcher::builder(bot, handler)
|
Dispatcher::builder(bot, handler)
|
||||||
|
@ -47,11 +63,7 @@ async fn main() {
|
||||||
.await;
|
.await;
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn handle_start(
|
async fn handle_start(bot: AutoSend<Bot>, msg: Message, dialogue: MyDialogue) -> HandlerResult {
|
||||||
bot: AutoSend<Bot>,
|
|
||||||
msg: Message,
|
|
||||||
dialogue: MyDialogue,
|
|
||||||
) -> anyhow::Result<()> {
|
|
||||||
match msg.text().unwrap().parse() {
|
match msg.text().unwrap().parse() {
|
||||||
Ok(number) => {
|
Ok(number) => {
|
||||||
dialogue.update(State::GotNumber(number)).await?;
|
dialogue.update(State::GotNumber(number)).await?;
|
||||||
|
@ -75,7 +87,7 @@ async fn handle_got_number(
|
||||||
dialogue: MyDialogue,
|
dialogue: MyDialogue,
|
||||||
num: i32,
|
num: i32,
|
||||||
me: Me,
|
me: Me,
|
||||||
) -> anyhow::Result<()> {
|
) -> HandlerResult {
|
||||||
let ans = msg.text().unwrap();
|
let ans = msg.text().unwrap();
|
||||||
let bot_name = me.user.username.unwrap();
|
let bot_name = me.user.username.unwrap();
|
||||||
|
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
use teloxide::dispatching2::dialogue::{RedisStorage, serializer::Bincode};
|
|
||||||
|
|
||||||
type MyStorage = RedisStorage<Bincode>;
|
|
||||||
|
|
||||||
async fn open_storage() -> std::sync::Arc<MyStorage> {
|
|
||||||
RedisStorage::open("redis://127.0.0.1:6379", Bincode).await.unwrap()
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
use teloxide::dispatching2::dialogue::{SqliteStorage, serializer::Json};
|
|
||||||
|
|
||||||
type MyStorage = SqliteStorage<Json>;
|
|
||||||
|
|
||||||
async fn open_storage() -> std::sync::Arc<MyStorage> {
|
|
||||||
SqliteStorage::open("db.sqlite", Json).await.unwrap()
|
|
||||||
}
|
|
|
@ -74,64 +74,59 @@ pub trait Storage<D> {
|
||||||
) -> BoxFuture<'static, Result<Option<D>, Self::Error>>;
|
) -> BoxFuture<'static, Result<Option<D>, Self::Error>>;
|
||||||
|
|
||||||
/// Erases [`Self::Error`] to [`std::error::Error`].
|
/// Erases [`Self::Error`] to [`std::error::Error`].
|
||||||
fn erase(self: Arc<Self>) -> ErasedStorage<D>
|
#[must_use]
|
||||||
|
fn erase(self: Arc<Self>) -> Arc<ErasedStorage<D>>
|
||||||
where
|
where
|
||||||
Self: Sized + Send + Sync + 'static,
|
Self: Sized + Send + Sync + 'static,
|
||||||
Self::Error: std::error::Error + 'static,
|
Self::Error: std::error::Error + Send + Sync + 'static,
|
||||||
{
|
{
|
||||||
struct Eraser<S>(Arc<S>);
|
|
||||||
|
|
||||||
impl<D, S> Storage<D> for Eraser<S>
|
|
||||||
where
|
|
||||||
S: Storage<D> + Send + Sync + 'static,
|
|
||||||
S::Error: std::error::Error + 'static,
|
|
||||||
{
|
|
||||||
type Error = Box<dyn std::error::Error>;
|
|
||||||
|
|
||||||
fn remove_dialogue(
|
|
||||||
self: Arc<Self>,
|
|
||||||
chat_id: i64,
|
|
||||||
) -> BoxFuture<'static, Result<(), Self::Error>>
|
|
||||||
where
|
|
||||||
D: Send + 'static,
|
|
||||||
{
|
|
||||||
Box::pin(async move {
|
|
||||||
Arc::clone(&self.0).remove_dialogue(chat_id).await.map_err(|e| e.into())
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
fn update_dialogue(
|
|
||||||
self: Arc<Self>,
|
|
||||||
chat_id: i64,
|
|
||||||
dialogue: D,
|
|
||||||
) -> BoxFuture<'static, Result<(), Self::Error>>
|
|
||||||
where
|
|
||||||
D: Send + 'static,
|
|
||||||
{
|
|
||||||
Box::pin(async move {
|
|
||||||
Arc::clone(&self.0)
|
|
||||||
.update_dialogue(chat_id, dialogue)
|
|
||||||
.await
|
|
||||||
.map_err(|e| e.into())
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_dialogue(
|
|
||||||
self: Arc<Self>,
|
|
||||||
chat_id: i64,
|
|
||||||
) -> BoxFuture<'static, Result<Option<D>, Self::Error>> {
|
|
||||||
Box::pin(async move {
|
|
||||||
Arc::clone(&self.0).get_dialogue(chat_id).await.map_err(|e| e.into())
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Arc::new(Eraser(self))
|
Arc::new(Eraser(self))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A storage with an erased error type.
|
struct Eraser<S>(Arc<S>);
|
||||||
pub type ErasedStorage<D> = Arc<dyn Storage<D, Error = Box<dyn std::error::Error>>>;
|
|
||||||
|
impl<D, S> Storage<D> for Eraser<S>
|
||||||
|
where
|
||||||
|
S: Storage<D> + Send + Sync + 'static,
|
||||||
|
S::Error: std::error::Error + Send + Sync + 'static,
|
||||||
|
{
|
||||||
|
type Error = Box<dyn std::error::Error + Send + Sync>;
|
||||||
|
|
||||||
|
fn remove_dialogue(self: Arc<Self>, chat_id: i64) -> BoxFuture<'static, Result<(), Self::Error>>
|
||||||
|
where
|
||||||
|
D: Send + 'static,
|
||||||
|
{
|
||||||
|
Box::pin(
|
||||||
|
async move { Arc::clone(&self.0).remove_dialogue(chat_id).await.map_err(|e| e.into()) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn update_dialogue(
|
||||||
|
self: Arc<Self>,
|
||||||
|
chat_id: i64,
|
||||||
|
dialogue: D,
|
||||||
|
) -> BoxFuture<'static, Result<(), Self::Error>>
|
||||||
|
where
|
||||||
|
D: Send + 'static,
|
||||||
|
{
|
||||||
|
Box::pin(async move {
|
||||||
|
Arc::clone(&self.0).update_dialogue(chat_id, dialogue).await.map_err(|e| e.into())
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_dialogue(
|
||||||
|
self: Arc<Self>,
|
||||||
|
chat_id: i64,
|
||||||
|
) -> BoxFuture<'static, Result<Option<D>, Self::Error>> {
|
||||||
|
Box::pin(
|
||||||
|
async move { Arc::clone(&self.0).get_dialogue(chat_id).await.map_err(|e| e.into()) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub type ErasedStorage<D> =
|
||||||
|
dyn Storage<D, Error = Box<dyn std::error::Error + Send + Sync>> + Send + Sync;
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
|
|
|
@ -102,7 +102,10 @@ mod get_chat_id;
|
||||||
|
|
||||||
/// A handle for controlling dialogue state.
|
/// A handle for controlling dialogue state.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Dialogue<D, S> {
|
pub struct Dialogue<D, S>
|
||||||
|
where
|
||||||
|
S: ?Sized,
|
||||||
|
{
|
||||||
storage: Arc<S>,
|
storage: Arc<S>,
|
||||||
chat_id: i64,
|
chat_id: i64,
|
||||||
_phantom: PhantomData<D>,
|
_phantom: PhantomData<D>,
|
||||||
|
@ -110,7 +113,10 @@ pub struct Dialogue<D, S> {
|
||||||
|
|
||||||
// `#[derive]` requires generics to implement `Clone`, but `S` is wrapped around
|
// `#[derive]` requires generics to implement `Clone`, but `S` is wrapped around
|
||||||
// `Arc`, and `D` is wrapped around PhantomData.
|
// `Arc`, and `D` is wrapped around PhantomData.
|
||||||
impl<D, S> Clone for Dialogue<D, S> {
|
impl<D, S> Clone for Dialogue<D, S>
|
||||||
|
where
|
||||||
|
S: ?Sized,
|
||||||
|
{
|
||||||
fn clone(&self) -> Self {
|
fn clone(&self) -> Self {
|
||||||
Dialogue { storage: self.storage.clone(), chat_id: self.chat_id, _phantom: PhantomData }
|
Dialogue { storage: self.storage.clone(), chat_id: self.chat_id, _phantom: PhantomData }
|
||||||
}
|
}
|
||||||
|
@ -119,7 +125,7 @@ impl<D, S> Clone for Dialogue<D, S> {
|
||||||
impl<D, S> Dialogue<D, S>
|
impl<D, S> Dialogue<D, S>
|
||||||
where
|
where
|
||||||
D: Send + 'static,
|
D: Send + 'static,
|
||||||
S: Storage<D>,
|
S: Storage<D> + ?Sized,
|
||||||
{
|
{
|
||||||
/// Constructs a new dialogue with `storage` (where dialogues are stored)
|
/// Constructs a new dialogue with `storage` (where dialogues are stored)
|
||||||
/// and `chat_id` of a current dialogue.
|
/// and `chat_id` of a current dialogue.
|
||||||
|
|
|
@ -45,7 +45,7 @@ pub trait HandlerExt<Output> {
|
||||||
#[must_use]
|
#[must_use]
|
||||||
fn enter_dialogue<Upd, S, D>(self) -> Self
|
fn enter_dialogue<Upd, S, D>(self) -> Self
|
||||||
where
|
where
|
||||||
S: Storage<D> + Send + Sync + 'static,
|
S: Storage<D> + ?Sized + Send + Sync + 'static,
|
||||||
<S as Storage<D>>::Error: Debug + Send,
|
<S as Storage<D>>::Error: Debug + Send,
|
||||||
D: Default + Send + Sync + 'static,
|
D: Default + Send + Sync + 'static,
|
||||||
Upd: GetChatId + Clone + Send + Sync + 'static;
|
Upd: GetChatId + Clone + Send + Sync + 'static;
|
||||||
|
@ -72,7 +72,7 @@ where
|
||||||
|
|
||||||
fn enter_dialogue<Upd, S, D>(self) -> Self
|
fn enter_dialogue<Upd, S, D>(self) -> Self
|
||||||
where
|
where
|
||||||
S: Storage<D> + Send + Sync + 'static,
|
S: Storage<D> + ?Sized + Send + Sync + 'static,
|
||||||
<S as Storage<D>>::Error: Debug + Send,
|
<S as Storage<D>>::Error: Debug + Send,
|
||||||
D: Default + Send + Sync + 'static,
|
D: Default + Send + Sync + 'static,
|
||||||
Upd: GetChatId + Clone + Send + Sync + 'static,
|
Upd: GetChatId + Clone + Send + Sync + 'static,
|
||||||
|
|
Loading…
Reference in a new issue