Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields  

network.InetClient.h

00001 /*----------------------------------------------------------------------------
00002   SWORD 2000 - Software With Objects for Rapid Development
00003   Copyright (C) 2003 Eric NICOLAS
00004   ----------------------------------------------------------------------------
00005   SWORD is free software; you can redistribute it and/or modify
00006   it under the terms of the GNU Lesser General Public License as published by
00007   the Free Software Foundation; either version 2 of the License, or
00008   (at your option) any later version.
00009 
00010   SWORD is distributed in the hope that it will be useful,
00011   but WITHOUT ANY WARRANTY; without even the implied warranty of
00012   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013   GNU Lesser General Public License for more details.
00014 
00015   You should have received a copy of the GNU Lesser General Public License
00016   along with SWORD; if not, write to the Free Software
00017   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018   --------------------------------------------------------------------------*/
00019 #ifndef _SWORD_NETWORK_INETCLIENT_
00020 #define _SWORD_NETWORK_INETCLIENT_
00021 
00022 #include "ace/SOCK_Connector.h"
00023 #include "sword/streams.IStorageAdapter_ACE_SOCK_Stream.h"
00024 #include "sword/streams.OStorageAdapter_ACE_SOCK_Stream.h"
00025 #include "sword/network.Url.h"
00026 
00027 namespace sword {
00028 
00030 
00037         class InetClient {
00038         public:
00040                 InetClient();
00041 
00043                 InetClient(const std::string &host, word port);
00044 
00046                 ~InetClient();
00047 
00049                 /*  The connection to the Internet server is established. If it
00050                  *  fails, a ConnectionException exception will throw.
00051                  */
00052                 void open(const std::string &host, word port);
00053 
00055 
00057                 std::string readLine();
00058 
00060 
00062                 void writeLine(const std::string &line);
00063 
00065                 word InetClient::readRaw(void* buffer, word length);
00066 
00068                 void InetClient::writeRaw(const void* buffer, word length);
00069 
00070                 class ConnectionException : public Exception {};
00071 
00072         private:
00073                 ACE_SOCK_Stream    socket_;
00074                 ACE_SOCK_Connector connector_;
00075                 OStorageAdapter_ACE_SOCK_Stream ostorage_;
00076                 IStorageAdapter_ACE_SOCK_Stream istorage_;
00077 
00078                 bool connected_;
00079                 void close_();
00080         };
00081 
00082 } // namespace sword
00083 
00084 #include "sword.private/network.InetClient.inl"
00085 
00086 #endif // _SWORD_NETWORK_INETCLIENT_

Generated on Tue Dec 23 20:08:56 2003 for SWORD by doxygen1.3-rc2