12 Commits

Author SHA1 Message Date
Daniel López Azaña
c094bf9c8b ♻️ (ls_client.rs): refactor base_params to Vec for consistent param handling
 (ls_client.rs): add conditional adapter_set param to base_params
♻️ (ls_client.rs): remove redundant adapter_set insertion
♻️ (ls_client.rs): refactor message processing loop for clarity and extensibility
🔧 (main.rs): extract MAX_CONNECTION_ATTEMPTS as constant for better configurability
 (main.rs): change adapter_set from "DEMO" to "QUOTE_ADAPTER" for client initialization
2024-04-03 20:55:19 +02:00
Daniel López Azaña
facada6f8d ♻️ (error.rs): remove unnecessary error conversions for IllegalArgumentException and IllegalStateException
♻️ (ls_client.rs): refactor connect method to accept shutdown signal and return generic error
 (ls_client.rs): add support for graceful shutdown using Notify
 (ls_client.rs): implement session creation and subscription logic in connect method
♻️ (main.rs): replace SharedState with Notify for handling shutdown signal
 (main.rs): add retry logic with a maximum of 5 retries for the client connection in main function
 (main.rs): ensure graceful client disconnect and orderly shutdown of the application
2024-03-31 21:39:46 +02:00
Daniel López Azaña
7af7a7626a WARNING: unstable commit.
🔧 Update .gitignore to exclude .vscode directory
 Add futures-util and url dependencies to Cargo.toml
♻️ Refactor error handling into separate error module in Rust project
💡 Add get_password method documentation in connection_details.rs
♻️ Replace String with Transport enum for forced_transport in connection_options.rs
 Implement WebSocket connection logic in ls_client.rs with async support
 Add ClientStatus, ConnectionType, and DisconnectionType enums to manage client states in ls_client.rs

 (main.rs): add Transport enum to LightstreamerClient imports for WebSocket support
♻️ (main.rs): refactor signal handling to use SharedState struct for clean shutdown
 (main.rs): implement AtomicBool for graceful disconnect handling
📝 (main.rs): update comments to reflect new signal handling logic
 (main.rs): set forced transport to WebSocket streaming in Lightstreamer client options
 (util.rs): create new util module with clean_message function for message sanitization
2024-03-30 20:59:58 +01:00
Daniel López Azaña
c6745a22e7 (Cargo.toml): add signal-hook dependency for signal handling
♻️ (client_listener.rs): make ClientListener trait Send to allow cross-thread usage
 (main.rs): implement signal handling for graceful shutdown
♻️ (main.rs): refactor client creation to use Arc<Mutex> for shared state
♻️ (main.rs): add retry logic for persistent connection attempts
♻️ (subscription_listener.rs): make SubscriptionListener trait Send to allow cross-thread usage
2024-03-30 13:40:59 +01:00
Daniel López Azaña
88c8a8d7c4 Improved connection_options module. 2024-03-29 20:41:33 +01:00
Daniel López Azaña
68f73131aa ♻️ (ls_client.rs): refactor connect method to check server_address before connecting
 (main.rs): rename subscription to my_subscription for clarity
 (main.rs): move subscription setup before client creation
 (main.rs): add client.subscribe and client.connect calls to main function
2024-03-28 20:55:23 +01:00
Daniel López Azaña
5c80b291fc (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
2024-03-28 20:21:52 +01:00
Daniel López Azaña
e1c0e90581 (client_listener.rs): Implement Debug trait for ClientListener for better logging
♻️ (connection_details.rs): Refactor ConnectionDetails to use Option for optional fields
♻️ (connection_details.rs): Change new constructor to accept &str and convert to String
 (connection_details.rs): Implement Debug trait for ConnectionDetails
♻️ (connection_options.rs): Implement Debug trait for ConnectionOptions
♻️ (lightstreamer_client.rs): Refactor LightstreamerClient to use Option for server_address and adapter_set
 (lightstreamer_client.rs): Implement Debug trait for LightstreamerClient
♻️ (main.rs): Update subscribe_to_channel function to use new control.txt URL and parameters
♻️ (main.rs): Update main function to use Option<&str> when creating LightstreamerClient
 (proxy.rs): Add Proxy struct and ProxyType enum to handle proxy configurations
2024-03-28 19:19:46 +01:00
daniloaz
b4e12fd116 Unstable commit, won't compile. 2024-03-24 21:47:33 +01:00
daniloaz
7e1eb27a06 Created structure and scaffolding for the Lightstreamer client. 2024-03-24 20:39:43 +01:00
daniloaz
cd3ffbf75a Added function to subscribe to channel on Lightstreamer server and started using tokio for multithreading. 2024-02-18 12:57:11 +01:00
daniloaz
3cf9cf9ecd Add persistent HTTP connection with session ID sharing 2024-02-16 21:30:20 +01:00