source: NonGTP/Xerces/xerces-c_2_8_0/include/xercesc/util/NetAccessors/MacOSURLAccess/URLAccessBinInputStream.hpp @ 2674

Revision 2674, 2.1 KB checked in by mattausch, 16 years ago (diff)
Line 
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: URLAccessBinInputStream.hpp 568078 2007-08-21 11:43:25Z amassari $
20 */
21
22#if !defined(URLACCESSBININPUTSTREAM_HPP)
23#define URLACCESSBININPUTSTREAM_HPP
24
25
26#include <xercesc/util/XMLURL.hpp>
27#include <xercesc/util/XMLExceptMsgs.hpp>
28#include <xercesc/util/BinInputStream.hpp>
29
30#if defined(__APPLE__)
31    //  Framework includes from ProjectBuilder
32        #include <Carbon/Carbon.h>
33#else
34    //  Classic includes otherwise
35        #include <URLAccess.h>
36#endif
37
38XERCES_CPP_NAMESPACE_BEGIN
39
40//
41// This class implements the BinInputStream interface specified by the XML
42// parser.
43//
44
45class XMLUTIL_EXPORT URLAccessBinInputStream : public BinInputStream
46{
47public :
48    URLAccessBinInputStream(const XMLURL&  urlSource);
49    ~URLAccessBinInputStream();
50
51    unsigned int curPos() const;
52    unsigned int readBytes
53    (
54                XMLByte* const  toFill
55        , const unsigned int    maxToRead
56    );
57
58
59private :
60    unsigned int        mBytesProcessed;
61    URLReference                mURLReference;
62    void*                               mBuffer;                        // Current buffer from URLAccess (or NULL)
63    char*                               mBufPos;                        // Read position in buffer
64    Size                                mBufAvailable;          // Bytes available
65};
66
67
68inline unsigned int
69URLAccessBinInputStream::curPos() const
70{
71    return mBytesProcessed;
72}
73
74XERCES_CPP_NAMESPACE_END
75
76#endif // URLACCESSBININPUTSTREAM_HPP
Note: See TracBrowser for help on using the repository browser.