A FIX protocol engine.
log
](https://docs.rs/log/latest/log/) LoggerHeavily derived / inspired from QuickfixN
```rust use dfx::{ connection::SocketAcceptor, session::{Session, SessionSettings}, messagestore::{DefaultStoreFactory, MemoryStoreFactory}, datadictionary_provider::DefaultDataDictionaryProvider, logging::PrintlnLogFactory, message::DefaultMessageFactory, session::FromAppError, session::ApplicationError, session::LogonReject, session::DoNotAccept, message::Message, };
struct Application;
impl dfx::session::Application for Application {
fn on_create(&mut self, _session_id: &dfx::session_id::SessionId) -> Result<(), DoNotAccept> {
println!("Application: {}", _session_id);
Ok(())
}
fn on_logon(&mut self, _session_id: &dfx::session_id::SessionId) -> Result<(), LogonReject> {
println!("Application Logon: {}", _session_id);
Ok(())
}
fn on_logout(&mut self, _session_id: &dfx::session_id::SessionId) -> Result<(), ApplicationError> {
println!("Application Logout: {}", _session_id);
Ok(())
}
fn to_admin(
&mut self,
message: Message,
_session_id: &dfx::session_id::SessionId,
) -> Result<Message, dfx::field_map::FieldMapError> {
println!("Application To Admin: {}", _session_id);
Ok(message)
}
fn from_admin(
&mut self,
_message: &Message,
_session_id: &dfx::session_id::SessionId,
) -> Result<(), dfx::field_map::FieldMapError> {
println!("Application From Admin: {}", _session_id);
Ok(())
}
fn to_app(
&mut self,
_message: &mut Message,
_session_id: &dfx::session_id::SessionId,
) -> Result<(), ApplicationError> {
println!("Application To App: {}", _session_id);
Ok(())
}
fn from_app(
&mut self,
message: &Message,
session_id: &dfx::session_id::SessionId,
) -> Result<(), FromAppError> {
println!("Application From App: {}", session_id);
// Echo back to sender
Session::send_to_session(session_id, message.clone()).unwrap();
Ok(())
}
}
let app = Application::default(); // TODO Use the following to read it from file: // let sessionsettings = SessionSettings::fromfile("fix.cfg").unwrap(); let sessionsettings = SessionSettings::default(); let mut acceptor = SocketAcceptor::new( &sessionsettings, app, DefaultStoreFactory::new(&session_settings), DefaultDataDictionaryProvider::new(), PrintlnLogFactory::new(), DefaultMessageFactory::new(), );
acceptor.start(); ```