![]() |
![]() |
|
Index
Source Files
Annotated Class List
Alphabetical Class List
Class Hierarchy
Graphical Class Hierarchy
|
||
![]() |
![]() |
00001 /* -*- C++ -*- */ 00002 00003 /**************************************************************************** 00004 ** Copyright (c) quickfixengine.org All rights reserved. 00005 ** 00006 ** This file is part of the QuickFIX FIX Engine 00007 ** 00008 ** This file may be distributed under the terms of the quickfixengine.org 00009 ** license as defined by quickfixengine.org and appearing in the file 00010 ** LICENSE included in the packaging of this file. 00011 ** 00012 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00013 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00014 ** 00015 ** See http://www.quickfixengine.org/LICENSE for licensing information. 00016 ** 00017 ** Contact ask@quickfixengine.org if any conditions of this licensing are 00018 ** not clear to you. 00019 ** 00020 ****************************************************************************/ 00021 00022 #ifndef FIX_THREADEDSOCKETCONNECTION_H 00023 #define FIX_THREADEDSOCKETCONNECTION_H 00024 00025 #ifdef _MSC_VER 00026 #pragma warning( disable : 4503 4355 4786 4290 ) 00027 #endif 00028 00029 #include "Parser.h" 00030 #include "Responder.h" 00031 #include "SessionID.h" 00032 #include <set> 00033 #include <map> 00034 00035 namespace FIX 00036 { 00037 class ThreadedSocketAcceptor; 00038 class ThreadedSocketInitiator; 00039 class Session; 00040 class Application; 00041 00043 class ThreadedSocketConnection : Responder 00044 { 00045 public: 00046 typedef std::set<SessionID> Sessions; 00047 00048 ThreadedSocketConnection( int s, Sessions sessions, Application& application ); 00049 ThreadedSocketConnection( const SessionID&, int s, Application& ); 00050 virtual ~ThreadedSocketConnection() ; 00051 00052 Session* getSession() const { return m_pSession; } 00053 int getSocket() const { return m_socket; } 00054 bool read(); 00055 00056 private: 00057 bool readMessage( std::string& msg ) throw( SocketRecvFailed ); 00058 void processStream(); 00059 bool send( const std::string& ); 00060 void disconnect(); 00061 bool setSession( const std::string& msg ); 00062 00063 int m_socket; 00064 char m_buffer[BUFSIZ]; 00065 00066 Application& m_application; 00067 Parser m_parser; 00068 Sessions m_sessions; 00069 Session* m_pSession; 00070 bool m_disconnect; 00071 fd_set m_fds; 00072 }; 00073 } 00074 00075 #endif //FIX_THREADEDSOCKETCONNECTION_H
1.3.6-20040222 written by Dimitri van Heesch,
© 1997-2001