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

network.HttpClient.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_HTTPCLIENT_
00020 #define _SWORD_NETWORK_HTTPCLIENT_
00021 
00022 #include "sword/network.HttpSession.h"
00023 #include "sword/network.InetClient.h"
00024 #include "sword/streams.IStorage.h"
00025 
00026 namespace sword {
00027 
00029         class SWORDDECL HttpClient : public IStorage {
00030         public:
00031                 HttpClient(const URL &url, HttpSession &session);
00032                 ~HttpClient();
00033 
00034                 // --- Pre-fetch options
00035 
00037 
00039                 void addHeader(const std::string &line);
00040 
00041                 // --- Fetch
00042 
00043                 enum Code {
00044                         Success,        // HTTP code 200
00045                         AuthRequired,   // HTTP code 401
00046                         FileNotFound,   // HTTP code 404
00047                         Error           // Other error codes
00048                 };
00049 
00050                 typedef std::map<std::string, std::string> Arguments;
00051                 enum PostMethod {
00052                         Get,
00053                         Post
00054                 };
00055 
00057                 Code fetch();
00058 
00060                 Code fetch(const Arguments &arguments, PostMethod method);
00061 
00062                 // --- Post-fetch retrieval
00063 
00065 
00070                 std::string replyValue(const std::string& name) const;
00071 
00073 
00078                 word size() const;
00079 
00081                 word read(void* buffer, word length);
00082 
00083         private:
00084                 URL          url_;
00085                 InetClient   client_;
00086                 HttpSession &session_;
00087                 std::ostringstream optionalHeader_;
00088 
00089                 // retrieved data
00090                 typedef std::map<std::string, std::string> ReplyLines;
00091                 ReplyLines replyLines_;
00092                 word size_;
00093 
00094                 // content reader state machine
00095                 enum State { FixedSize_, Streamed_, NeedChunk_, InChunk_ };
00096                 word  size1_;
00097                 State state_;
00098         };
00099 
00100 } // namespace sword
00101 
00102 #include "sword.private/network.HttpClient.inl"
00103 
00104 #endif // _SWORD_NETWORK_HTTPCLIENT_

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