merge the formfield patch from ooo-build
[ooovba.git] / ucb / source / ucp / gio / gio_inputstream.hxx
blob1f53b7117ade7c3376ed1309e525ead7c664d664
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: gio_inputstream.hxx,v $
10 * $Revision: 1.2 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef GIO_INPUTSTREAM_HXX
32 #define GIO_INPUTSTREAM_HXX
34 #include <sal/types.h>
35 #include <rtl/ustring.hxx>
36 #include <cppuhelper/weak.hxx>
38 #include <com/sun/star/io/XInputStream.hpp>
39 #include <com/sun/star/io/XTruncate.hpp>
40 #include <com/sun/star/io/XSeekable.hpp>
42 #include "gio_seekable.hxx"
44 namespace gio
47 class InputStream :
48 public ::com::sun::star::io::XInputStream,
49 public Seekable
51 private:
52 GFileInputStream *mpStream;
54 public:
55 InputStream ( GFileInputStream *pStream );
56 virtual ~InputStream();
58 // XInterface
59 virtual com::sun::star::uno::Any SAL_CALL queryInterface(const ::com::sun::star::uno::Type & type )
60 throw( ::com::sun::star::uno::RuntimeException );
61 virtual void SAL_CALL acquire( void ) throw () { OWeakObject::acquire(); }
62 virtual void SAL_CALL release( void ) throw() { OWeakObject::release(); }
64 // XInputStream
65 virtual sal_Int32 SAL_CALL readBytes( ::com::sun::star::uno::Sequence< sal_Int8 > & aData,
66 sal_Int32 nBytesToRead )
67 throw( ::com::sun::star::io::NotConnectedException,
68 ::com::sun::star::io::BufferSizeExceededException,
69 ::com::sun::star::io::IOException,
70 ::com::sun::star::uno::RuntimeException );
72 virtual sal_Int32 SAL_CALL readSomeBytes( ::com::sun::star::uno::Sequence< sal_Int8 > & aData,
73 sal_Int32 nMaxBytesToRead )
74 throw( ::com::sun::star::io::NotConnectedException,
75 ::com::sun::star::io::BufferSizeExceededException,
76 ::com::sun::star::io::IOException,
77 ::com::sun::star::uno::RuntimeException );
79 virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip )
80 throw( ::com::sun::star::io::NotConnectedException,
81 ::com::sun::star::io::BufferSizeExceededException,
82 ::com::sun::star::io::IOException,
83 ::com::sun::star::uno::RuntimeException );
85 virtual sal_Int32 SAL_CALL available( void )
86 throw( ::com::sun::star::io::NotConnectedException,
87 ::com::sun::star::io::IOException,
88 ::com::sun::star::uno::RuntimeException );
90 virtual void SAL_CALL closeInput( void )
91 throw( ::com::sun::star::io::NotConnectedException,
92 ::com::sun::star::io::IOException,
93 ::com::sun::star::uno::RuntimeException );
96 } // namespace gio
97 #endif