3c6c63005eAdded minor versions to dependencies to avoid breaking changes, fixed some type mismatch errors
main
v0.1.10
Silas Bartha2024-12-24 22:11:21 -05:00
Merge pull request #1 from aihphysics/logging-tracing
daniloaz
2024-08-11 19:58:23 +02:00
d186099afeSome tuning, cleaned up extraneous error! macros, some INFO's downgraded to DEBUG's
Alina Hagan
2024-08-10 00:10:15 +01:00
4a1625a311added option to log messages to tracing over stdout
Alina Hagan
2024-08-09 23:33:25 +01:00
65282048ae⬆️ (Cargo.toml): Bump lightstreamer-client version from 0.1.8 to 0.1.9 ✨ (Cargo.toml): Add colored dependency to enhance console output 📝 (README.md): Overhaul documentation to provide comprehensive details about the project, its features, usage, and contribution guidelines 💡 (client_listener.rs, client_message_listener.rs): Add newline at end of file to adhere to POSIX standards
daniloaz
2024-04-13 21:24:12 +02:00
5af8a69942✨ (Cargo.toml): Bump package version to 0.1.8 for new changes ♻️ (item_update.rs): Refactor ItemUpdate struct and related methods to store only non-null changed fields ♻️ (ls_client.rs): Refactor data update handling to store updates in a HashMap and call on_item_update for each listener 🐛 (ls_client.rs): Fix item index off-by-one error in data update handling 🐛 (main.rs): Update on_item_update implementation to handle new ItemUpdate structure ♻️ (subscription_listener.rs): Refactor on_item_update method to take a reference to ItemUpdate
daniloaz
2024-04-13 12:21:12 +02:00
82a9d2f070Implemented part of the item update logic.
daniloaz
2024-04-12 20:38:43 +02:00
7d7f380e30⬆️ (Cargo.toml): bump version from 0.1.6 to 0.1.7 for new release ♻️ (various): refactor code to use underscore prefix for unused variables ✨ (ls_client.rs): add constants for WebSocket connection setup ✨ (various): add unimplemented!() stubs for methods to be implemented 🔥 (main.rs): remove unused imports and commented code 🔥 (ls_client.rs): remove unused HashMap import and commented code 🐛 (subscription.rs): fix get_command_value to correctly format key before lookup 🔧 (Cargo.toml): remove hyper dependency as it's no longer used
Daniel López Azaña
2024-04-07 21:14:31 +02:00
2a68c66704✨ (Cargo.toml): bump version to 0.1.6 for new release ✨ (ls_client.rs): add LS_data_adapter parameter to subscription request ♻️ (ls_client.rs): conditionally remove LS_data_adapter if empty to clean up request params
Daniel López Azaña
2024-04-07 20:32:51 +02:00
01b70468fc✨ (Cargo.toml): bump version to 0.1.5 for new release ✨ (ls_client.rs): add TLCP_VERSION constant for protocol version tracking ♻️ (ls_client.rs): remove commented-out code and unused println for cleaner codebase ♻️ (ls_client.rs): use TLCP_VERSION constant instead of hardcoded protocol string ✨ (ls_client.rs): handle 'reqok' server message for better server communication ♻️ (subscription.rs): change error type to Box<dyn Error> for more generic error handling 🐛 (subscription.rs): fix error message to be more descriptive when items or fields are missing
Daniel López Azaña
2024-04-07 20:24:35 +02:00
2883c5e050⬆️ (Cargo.toml): bump package version from 0.1.3 to 0.1.4
Daniel López Azaña
2024-04-05 18:18:01 +02:00
638c181bb6🐛 (ls_client.rs): fix LS_cid parameter by removing URL encoding from the value
Daniel López Azaña
2024-04-05 18:17:34 +02:00
46cd2fd0af⬆️ (Cargo.toml): bump version from 0.1.2 to 0.1.3
Daniel López Azaña
2024-04-05 17:38:05 +02:00
1d74478512⬆️ (Cargo.toml): bump version to 0.1.2 for new release
Daniel López Azaña
2024-04-05 16:29:01 +02:00
0a1fa8873a⬆️ (Cargo.toml): bump package version to 0.1.1 for new release ♻️ (ls_client.rs): streamline WebSocket 'wsok' message sending code
Daniel López Azaña
2024-04-04 20:19:38 +02:00
023758b3b5✨ (connection_options.rs): Add get_send_sync method for ConnectionOptions ♻️ (ls_client.rs): Refactor message processing to handle multiple submessages 🐛 (ls_client.rs): Fix default instantiation of ConnectionOptions using default method
Daniel López Azaña
2024-04-04 15:39:55 +02:00
2565f3be41♻️ (ls_client.rs): refactor subscription logic for clarity and maintainability ♻️ (ls_client.rs): remove hardcoded base_params and use dynamic params for session creation ♻️ (ls_client.rs): remove commented-out subscription code for cleanup ✨ (ls_client.rs): handle new server messages for connection errors and subscription confirmations 🚚 (ls_client.rs): remove unnecessary println at the end of connect function ✨ (main.rs): change adapter set from "QUOTE_ADAPTER" to "DEMO" for client initialization ✨ (subscription.rs): add Default trait implementation for Snapshot enum ✨ (subscription.rs): implement ToString trait for Snapshot and SubscriptionMode enums 🐛 (subscription.rs): fix error message in set_item_group method to be more descriptive
Daniel López Azaña
2024-04-04 13:26:50 +02:00
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
Daniel López Azaña
2024-04-03 20:55:19 +02:00
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
Daniel López Azaña
2024-03-31 21:39:46 +02:00
7af7a7626aWARNING: 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
Daniel López Azaña
2024-03-30 20:59:54 +01:00
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
Daniel López Azaña
2024-03-30 13:40:59 +01:00
88c8a8d7c4Improved connection_options module.
Daniel López Azaña
2024-03-29 20:41:33 +01:00
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
Daniel López Azaña
2024-03-28 20:55:23 +01:00
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
Daniel López Azaña
2024-03-28 20:21:52 +01:00
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
Daniel López Azaña
2024-03-28 19:19:46 +01:00
7e1eb27a06Created structure and scaffolding for the Lightstreamer client.
daniloaz
2024-03-24 20:39:38 +01:00
dfd6b4a2b7🔧 (Cargo.toml): Update license identifier from 'GPL 3.0' to 'GPL-3.0-only' for better SPDX compliance
daniloaz
2024-03-23 13:34:01 +01:00
cd3ffbf75aAdded function to subscribe to channel on Lightstreamer server and started using tokio for multithreading.
daniloaz
2024-02-18 12:57:11 +01:00
3cf9cf9ecdAdd persistent HTTP connection with session ID sharing
daniloaz
2024-02-16 21:30:20 +01:00
57ec093188Add initial Cargo.toml for Lightstreamer client
daniloaz
2024-02-16 21:29:54 +01:00