1*b1cdbd2cSJim Jagielski /**************************************************************
2*b1cdbd2cSJim Jagielski  *
3*b1cdbd2cSJim Jagielski  * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski  * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski  * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski  * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski  * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski  * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski  * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski  *
11*b1cdbd2cSJim Jagielski  *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski  *
13*b1cdbd2cSJim Jagielski  * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski  * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski  * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski  * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski  * under the License.
19*b1cdbd2cSJim Jagielski  *
20*b1cdbd2cSJim Jagielski  *************************************************************/
21*b1cdbd2cSJim Jagielski 
22*b1cdbd2cSJim Jagielski 
23*b1cdbd2cSJim Jagielski #ifndef _XTEMPFILE_HXX_
24*b1cdbd2cSJim Jagielski #define _XTEMPFILE_HXX_
25*b1cdbd2cSJim Jagielski 
26*b1cdbd2cSJim Jagielski #include <com/sun/star/io/XInputStream.hpp>
27*b1cdbd2cSJim Jagielski #include <com/sun/star/io/XOutputStream.hpp>
28*b1cdbd2cSJim Jagielski #include <com/sun/star/io/XSeekable.hpp>
29*b1cdbd2cSJim Jagielski #include <com/sun/star/io/XStream.hpp>
30*b1cdbd2cSJim Jagielski #include <com/sun/star/io/XTempFile.hpp>
31*b1cdbd2cSJim Jagielski #include <com/sun/star/io/XTruncate.hpp>
32*b1cdbd2cSJim Jagielski #include <com/sun/star/lang/XSingleComponentFactory.hpp>
33*b1cdbd2cSJim Jagielski #include <com/sun/star/lang/XMultiServiceFactory.hpp>
34*b1cdbd2cSJim Jagielski #include <com/sun/star/lang/XServiceInfo.hpp>
35*b1cdbd2cSJim Jagielski #include <cppuhelper/implbase5.hxx>
36*b1cdbd2cSJim Jagielski #ifndef _CPPUHELPER_PROPERTYSETMIXIN_HXX_
37*b1cdbd2cSJim Jagielski #include <cppuhelper/propertysetmixin.hxx>
38*b1cdbd2cSJim Jagielski #endif
39*b1cdbd2cSJim Jagielski #include <osl/mutex.hxx>
40*b1cdbd2cSJim Jagielski 
41*b1cdbd2cSJim Jagielski class SvStream;
42*b1cdbd2cSJim Jagielski namespace utl { class TempFile; }
43*b1cdbd2cSJim Jagielski 
44*b1cdbd2cSJim Jagielski typedef	 ::cppu::WeakImplHelper5<	::com::sun::star::io::XTempFile
45*b1cdbd2cSJim Jagielski 									,	::com::sun::star::io::XInputStream
46*b1cdbd2cSJim Jagielski 				  								,	::com::sun::star::io::XOutputStream
47*b1cdbd2cSJim Jagielski 				  								,	::com::sun::star::io::XTruncate
48*b1cdbd2cSJim Jagielski 				  								,	::com::sun::star::lang::XServiceInfo
49*b1cdbd2cSJim Jagielski 				  								>
50*b1cdbd2cSJim Jagielski 									OTempFileBase;
51*b1cdbd2cSJim Jagielski 
52*b1cdbd2cSJim Jagielski class OTempFileService :
53*b1cdbd2cSJim Jagielski 	public OTempFileBase,
54*b1cdbd2cSJim Jagielski 	public ::cppu::PropertySetMixin< ::com::sun::star::io::XTempFile >
55*b1cdbd2cSJim Jagielski {
56*b1cdbd2cSJim Jagielski protected:
57*b1cdbd2cSJim Jagielski 	::utl::TempFile* 	mpTempFile;
58*b1cdbd2cSJim Jagielski 	::osl::Mutex		maMutex;
59*b1cdbd2cSJim Jagielski 	SvStream* 			mpStream;
60*b1cdbd2cSJim Jagielski 	sal_Bool			mbRemoveFile;
61*b1cdbd2cSJim Jagielski 	sal_Bool			mbInClosed;
62*b1cdbd2cSJim Jagielski 	sal_Bool			mbOutClosed;
63*b1cdbd2cSJim Jagielski 
64*b1cdbd2cSJim Jagielski 	sal_Int64			mnCachedPos;
65*b1cdbd2cSJim Jagielski 	sal_Bool			mbHasCachedPos;
66*b1cdbd2cSJim Jagielski 
67*b1cdbd2cSJim Jagielski 	void checkError () const;
68*b1cdbd2cSJim Jagielski 	void checkConnected ();
69*b1cdbd2cSJim Jagielski 
70*b1cdbd2cSJim Jagielski public:
71*b1cdbd2cSJim Jagielski 	OTempFileService (::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & context);
72*b1cdbd2cSJim Jagielski 
73*b1cdbd2cSJim Jagielski 	//Methods
74*b1cdbd2cSJim Jagielski 	//	XInterface
75*b1cdbd2cSJim Jagielski 	virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType )
76*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
77*b1cdbd2cSJim Jagielski 	virtual void SAL_CALL acquire(  )
78*b1cdbd2cSJim Jagielski 		throw ();
79*b1cdbd2cSJim Jagielski 	virtual void SAL_CALL release(  )
80*b1cdbd2cSJim Jagielski 		throw ();
81*b1cdbd2cSJim Jagielski 	//	XTypeProvider
82*b1cdbd2cSJim Jagielski 	virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes(  )
83*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
84*b1cdbd2cSJim Jagielski 	virtual ::com::sun::star::uno::Sequence< ::sal_Int8 > SAL_CALL getImplementationId(  )
85*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
86*b1cdbd2cSJim Jagielski 
87*b1cdbd2cSJim Jagielski 	//	XTempFile
88*b1cdbd2cSJim Jagielski 	virtual ::sal_Bool SAL_CALL getRemoveFile()
89*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
90*b1cdbd2cSJim Jagielski 	virtual void SAL_CALL setRemoveFile( ::sal_Bool _removefile )
91*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
92*b1cdbd2cSJim Jagielski 	virtual ::rtl::OUString SAL_CALL getUri()
93*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
94*b1cdbd2cSJim Jagielski 	virtual ::rtl::OUString SAL_CALL getResourceName()
95*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
96*b1cdbd2cSJim Jagielski 
97*b1cdbd2cSJim Jagielski     // XInputStream
98*b1cdbd2cSJim Jagielski     virtual ::sal_Int32 SAL_CALL readBytes( ::com::sun::star::uno::Sequence< ::sal_Int8 >& aData, ::sal_Int32 nBytesToRead )
99*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::NotConnectedException, ::com::sun::star::io::BufferSizeExceededException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
100*b1cdbd2cSJim Jagielski     virtual ::sal_Int32 SAL_CALL readSomeBytes( ::com::sun::star::uno::Sequence< ::sal_Int8 >& aData, ::sal_Int32 nMaxBytesToRead )
101*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::NotConnectedException, ::com::sun::star::io::BufferSizeExceededException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
102*b1cdbd2cSJim Jagielski     virtual void SAL_CALL skipBytes( ::sal_Int32 nBytesToSkip )
103*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::NotConnectedException, ::com::sun::star::io::BufferSizeExceededException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
104*b1cdbd2cSJim Jagielski     virtual ::sal_Int32 SAL_CALL available(  )
105*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::NotConnectedException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
106*b1cdbd2cSJim Jagielski     virtual void SAL_CALL closeInput(  )
107*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::NotConnectedException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
108*b1cdbd2cSJim Jagielski 	// XOutputStream
109*b1cdbd2cSJim Jagielski 	virtual void SAL_CALL writeBytes( const ::com::sun::star::uno::Sequence< ::sal_Int8 >& aData )
110*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::NotConnectedException, ::com::sun::star::io::BufferSizeExceededException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
111*b1cdbd2cSJim Jagielski     virtual void SAL_CALL flush(  )
112*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::NotConnectedException, ::com::sun::star::io::BufferSizeExceededException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
113*b1cdbd2cSJim Jagielski     virtual void SAL_CALL closeOutput(  )
114*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::NotConnectedException, ::com::sun::star::io::BufferSizeExceededException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
115*b1cdbd2cSJim Jagielski 	// XSeekable
116*b1cdbd2cSJim Jagielski     virtual void SAL_CALL seek( sal_Int64 location )
117*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
118*b1cdbd2cSJim Jagielski     virtual sal_Int64 SAL_CALL getPosition(  )
119*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
120*b1cdbd2cSJim Jagielski     virtual sal_Int64 SAL_CALL getLength(  )
121*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
122*b1cdbd2cSJim Jagielski 	// XStream
123*b1cdbd2cSJim Jagielski     virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getInputStream(  )
124*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
125*b1cdbd2cSJim Jagielski     virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream > SAL_CALL getOutputStream(  )
126*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
127*b1cdbd2cSJim Jagielski 	// XTruncate
128*b1cdbd2cSJim Jagielski     virtual void SAL_CALL truncate()
129*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
130*b1cdbd2cSJim Jagielski 	// XServiceInfo
131*b1cdbd2cSJim Jagielski     virtual ::rtl::OUString SAL_CALL getImplementationName()
132*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
133*b1cdbd2cSJim Jagielski 	virtual ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName )
134*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
135*b1cdbd2cSJim Jagielski     virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames()
136*b1cdbd2cSJim Jagielski 		throw (::com::sun::star::uno::RuntimeException);
137*b1cdbd2cSJim Jagielski 
138*b1cdbd2cSJim Jagielski 	//::com::sun::star::uno::Reference < ::com::sun::star::uno::XInterface > SAL_CALL XTempFile_createInstance( ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & context);
139*b1cdbd2cSJim Jagielski 	static ::rtl::OUString getImplementationName_Static ();
140*b1cdbd2cSJim Jagielski 	static ::com::sun::star::uno::Sequence < ::rtl::OUString > getSupportedServiceNames_Static();
141*b1cdbd2cSJim Jagielski 
142*b1cdbd2cSJim Jagielski 	static ::com::sun::star::uno::Reference < com::sun::star::lang::XSingleComponentFactory > createServiceFactory_Static( com::sun::star::uno::Reference < com::sun::star::lang::XMultiServiceFactory > const & rServiceFactory );
143*b1cdbd2cSJim Jagielski 
144*b1cdbd2cSJim Jagielski private:
145*b1cdbd2cSJim Jagielski 	OTempFileService( OTempFileService & );
146*b1cdbd2cSJim Jagielski 	virtual ~OTempFileService ();
147*b1cdbd2cSJim Jagielski 
148*b1cdbd2cSJim Jagielski };
149*b1cdbd2cSJim Jagielski #endif
150