cd6106ae2e50fe05fdd8b55256894ce05ffb9c62
[shibboleth/cpp-xmltooling.git] / xmltooling / util / CurlURLInputStream.hpp
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements.  See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License.  You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 /*
19  * $Id$
20  */
21
22 #if !defined(XERCESC_INCLUDE_GUARD_CURLURLINPUTSTREAM_HPP) && !defined(XMLTOOLING_LITE)
23 #define XERCESC_INCLUDE_GUARD_CURLURLINPUTSTREAM_HPP
24
25 #include <xmltooling/logging.h>
26 #include <xmltooling/util/ParserPool.h>
27
28 #include <sstream>
29
30 #include <xercesc/util/XMLURL.hpp>
31 #include <xercesc/util/XMLExceptMsgs.hpp>
32 #include <xercesc/util/Janitor.hpp>
33 #include <xercesc/util/BinInputStream.hpp>
34 #include <xercesc/util/XMLNetAccessor.hpp>
35
36 namespace xmltooling {
37
38 //
39 // This class implements the BinInputStream interface specified by the XML
40 // parser.
41 //
42
43 class XMLTOOL_API CurlURLInputStream : public BinInputStream
44 {
45 public :
46     CurlURLInputStream(const XMLURL&  urlSource, const XMLNetHTTPInfo* httpInfo=0);
47     ~CurlURLInputStream();
48
49     unsigned int curPos() const;
50     unsigned int readBytes(XMLByte* const toFill, const unsigned int maxToRead);
51
52 private :
53     // -----------------------------------------------------------------------
54     //  Unimplemented constructors and operators
55     // -----------------------------------------------------------------------
56     CurlURLInputStream(const CurlURLInputStream&);
57     CurlURLInputStream& operator=(const CurlURLInputStream&);
58
59     static size_t staticWriteCallback(void* ptr, size_t size, size_t nmemb, void* stream);
60
61     std::stringstream   fUnderlyingStream;
62     MemoryManager*      fMemoryManager;
63     XMLURL                              fURLSource;
64     ArrayJanitor<char>  fURL;
65     StreamInputSource::StreamBinInputStream* fInputStream;
66     logging::Category&  m_log;
67
68 }; // CurlURLInputStream
69
70
71 inline unsigned int CurlURLInputStream::curPos() const
72 {
73     return fInputStream ? fInputStream->curPos() : 0;
74 }
75
76 };
77
78 #endif // CURLURLINPUTSTREAM_HPP