✨ (lib.rs): introduce ls_client
module as a cleaner naming convention
✨ (ls_client.rs): add `LightstreamerClient` struct and associated methods for managing communication with Lightstreamer Server ✨ (main.rs): update imports to use new `ls_client` module and add data adapter and snapshot configuration to subscription ♻️ (lib.rs): refactor `lightstreamer_client` to `ls_client` for consistency with new module name 📝 (ls_client.rs): add comprehensive documentation for `LightstreamerClient` and its methods ✨ (subscription.rs): add Snapshot enum to define snapshot delivery preferences ♻️ (subscription.rs): refactor requested_snapshot to use Snapshot enum for clarity 💡 (subscription.rs): update comments to reflect changes in snapshot handling
This commit is contained in:
parent
e1c0e90581
commit
5c80b291fc
@ -7,7 +7,7 @@ pub mod item_update;
|
|||||||
pub mod subscription_listener;
|
pub mod subscription_listener;
|
||||||
pub mod connection_details;
|
pub mod connection_details;
|
||||||
pub mod connection_options;
|
pub mod connection_options;
|
||||||
pub mod lightstreamer_client;
|
pub mod ls_client;
|
||||||
pub mod proxy;
|
pub mod proxy;
|
||||||
pub mod subscription;
|
pub mod subscription;
|
||||||
|
|
||||||
|
14
src/main.rs
14
src/main.rs
@ -1,10 +1,10 @@
|
|||||||
use crate::item_update::ItemUpdate;
|
use lightstreamer_client::item_update::ItemUpdate;
|
||||||
use crate::subscription::{Subscription, SubscriptionMode};
|
use lightstreamer_client::ls_client::LightstreamerClient;
|
||||||
use crate::subscription_listener::SubscriptionListener;
|
use lightstreamer_client::subscription::{Snapshot, Subscription, SubscriptionMode};
|
||||||
|
use lightstreamer_client::subscription_listener::SubscriptionListener;
|
||||||
|
|
||||||
use futures::stream::StreamExt;
|
use futures::stream::StreamExt;
|
||||||
use futures::SinkExt;
|
use futures::SinkExt;
|
||||||
use lightstreamer_client::lightstreamer_client::LightstreamerClient;
|
|
||||||
use reqwest::Client;
|
use reqwest::Client;
|
||||||
use serde_urlencoded;
|
use serde_urlencoded;
|
||||||
use std::error::Error;
|
use std::error::Error;
|
||||||
@ -12,10 +12,6 @@ use std::sync::Arc;
|
|||||||
use tokio::sync::Mutex;
|
use tokio::sync::Mutex;
|
||||||
use tokio_tungstenite::{connect_async, tungstenite::protocol::Message};
|
use tokio_tungstenite::{connect_async, tungstenite::protocol::Message};
|
||||||
|
|
||||||
mod item_update;
|
|
||||||
mod subscription;
|
|
||||||
mod subscription_listener;
|
|
||||||
|
|
||||||
async fn establish_persistent_http_connection(
|
async fn establish_persistent_http_connection(
|
||||||
session_id_shared: Arc<Mutex<String>>,
|
session_id_shared: Arc<Mutex<String>>,
|
||||||
) -> Result<(), reqwest::Error> {
|
) -> Result<(), reqwest::Error> {
|
||||||
@ -225,6 +221,8 @@ async fn main() -> Result<(), Box<dyn Error>> {
|
|||||||
)?;
|
)?;
|
||||||
|
|
||||||
subscription.add_listener(Box::new(MySubscriptionListener {}));
|
subscription.add_listener(Box::new(MySubscriptionListener {}));
|
||||||
|
subscription.set_data_adapter(Some(String::from("QUOTE_ADAPTER")))?;
|
||||||
|
subscription.set_requested_snapshot(Some(Snapshot::Yes))?;
|
||||||
|
|
||||||
let client = LightstreamerClient::new(
|
let client = LightstreamerClient::new(
|
||||||
Some("http://push.lightstreamer.com/lightstreamer"),
|
Some("http://push.lightstreamer.com/lightstreamer"),
|
||||||
|
@ -2,7 +2,16 @@ use crate::subscription_listener::SubscriptionListener;
|
|||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::fmt::{self, Debug, Formatter};
|
use std::fmt::{self, Debug, Formatter};
|
||||||
|
|
||||||
/// Enum representing the subscription mode
|
/// Enum representing the snapshot delivery preferences to be requested to Lightstreamer Server for the items in the Subscription.
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub enum Snapshot {
|
||||||
|
Yes,
|
||||||
|
No,
|
||||||
|
Number(usize),
|
||||||
|
None,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Enum representing the subscription mode.
|
||||||
#[derive(Debug, PartialEq, Eq)]
|
#[derive(Debug, PartialEq, Eq)]
|
||||||
pub enum SubscriptionMode {
|
pub enum SubscriptionMode {
|
||||||
Merge,
|
Merge,
|
||||||
@ -49,7 +58,7 @@ pub struct Subscription {
|
|||||||
/// The maximum update frequency to be requested to Lightstreamer Server for all the items in the Subscription.
|
/// The maximum update frequency to be requested to Lightstreamer Server for all the items in the Subscription.
|
||||||
requested_max_frequency: Option<f64>,
|
requested_max_frequency: Option<f64>,
|
||||||
/// The snapshot delivery preferences to be requested to Lightstreamer Server for the items in the Subscription.
|
/// The snapshot delivery preferences to be requested to Lightstreamer Server for the items in the Subscription.
|
||||||
requested_snapshot: Option<String>,
|
requested_snapshot: Option<Snapshot>,
|
||||||
/// The selector name for all the items in the Subscription, used as a filter on the updates received.
|
/// The selector name for all the items in the Subscription, used as a filter on the updates received.
|
||||||
selector: Option<String>,
|
selector: Option<String>,
|
||||||
/// A list of SubscriptionListener instances that will receive events from this Subscription.
|
/// A list of SubscriptionListener instances that will receive events from this Subscription.
|
||||||
@ -618,15 +627,22 @@ impl Subscription {
|
|||||||
///
|
///
|
||||||
/// # See also
|
/// # See also
|
||||||
/// `ItemUpdate.isSnapshot()`
|
/// `ItemUpdate.isSnapshot()`
|
||||||
pub fn set_requested_snapshot(&mut self, snapshot: Option<String>) -> Result<(), String> {
|
pub fn set_requested_snapshot(&mut self, snapshot: Option<Snapshot>) -> Result<(), String> {
|
||||||
if self.is_active {
|
if self.is_active {
|
||||||
return Err("Subscription is active".to_string());
|
return Err("Subscription is active".to_string());
|
||||||
}
|
}
|
||||||
if self.mode == SubscriptionMode::Raw && snapshot.is_some() {
|
match snapshot {
|
||||||
return Err("Cannot request snapshot for Raw mode".to_string());
|
Some(Snapshot::None) => {
|
||||||
}
|
if self.mode == SubscriptionMode::Raw {
|
||||||
if self.mode != SubscriptionMode::Distinct && snapshot.is_some() && snapshot.as_ref().unwrap().parse::<usize>().is_ok() {
|
return Err("Cannot request snapshot for Raw mode".to_string());
|
||||||
return Err("Cannot specify snapshot length for non-Distinct mode".to_string());
|
}
|
||||||
|
}
|
||||||
|
Some(Snapshot::Number(_)) => {
|
||||||
|
if self.mode != SubscriptionMode::Distinct {
|
||||||
|
return Err("Cannot specify snapshot length for non-Distinct mode".to_string());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
}
|
}
|
||||||
self.requested_snapshot = snapshot;
|
self.requested_snapshot = snapshot;
|
||||||
Ok(())
|
Ok(())
|
||||||
@ -639,7 +655,7 @@ impl Subscription {
|
|||||||
///
|
///
|
||||||
/// # Returns
|
/// # Returns
|
||||||
/// "yes", "no", `None`, or an integer number.
|
/// "yes", "no", `None`, or an integer number.
|
||||||
pub fn get_requested_snapshot(&self) -> Option<&String> {
|
pub fn get_requested_snapshot(&self) -> Option<&Snapshot> {
|
||||||
self.requested_snapshot.as_ref()
|
self.requested_snapshot.as_ref()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user