xref: /AOO41X/main/sdext/source/pdfimport/test/outputwrap.hxx (revision 06bcd5d2ad5bea957b02aca5287e5203820c7f8c)
1*06bcd5d2SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*06bcd5d2SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*06bcd5d2SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*06bcd5d2SAndrew Rist  * distributed with this work for additional information
6*06bcd5d2SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*06bcd5d2SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*06bcd5d2SAndrew Rist  * "License"); you may not use this file except in compliance
9*06bcd5d2SAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*06bcd5d2SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*06bcd5d2SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*06bcd5d2SAndrew Rist  * software distributed under the License is distributed on an
15*06bcd5d2SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*06bcd5d2SAndrew Rist  * KIND, either express or implied.  See the License for the
17*06bcd5d2SAndrew Rist  * specific language governing permissions and limitations
18*06bcd5d2SAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*06bcd5d2SAndrew Rist  *************************************************************/
21*06bcd5d2SAndrew Rist 
22*06bcd5d2SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir 
25cdf0e10cSrcweir #ifndef INCLUDED_PDFIMPORT_OUTPUTWRAP_HXX
26cdf0e10cSrcweir #define INCLUDED_PDFIMPORT_OUTPUTWRAP_HXX
27cdf0e10cSrcweir 
28cdf0e10cSrcweir #include <cppuhelper/basemutex.hxx>
29cdf0e10cSrcweir #include <cppuhelper/compbase1.hxx>
30cdf0e10cSrcweir #include <com/sun/star/io/XOutputStream.hpp>
31cdf0e10cSrcweir #include <osl/file.hxx>
32cdf0e10cSrcweir 
33cdf0e10cSrcweir namespace pdfi
34cdf0e10cSrcweir {
35cdf0e10cSrcweir 
36cdf0e10cSrcweir typedef ::cppu::WeakComponentImplHelper1<
37cdf0e10cSrcweir         com::sun::star::io::XOutputStream > OutputWrapBase;
38cdf0e10cSrcweir 
39cdf0e10cSrcweir     class OutputWrap : private cppu::BaseMutex, public OutputWrapBase
40cdf0e10cSrcweir     {
41cdf0e10cSrcweir         osl::File maFile;
42cdf0e10cSrcweir 
43cdf0e10cSrcweir     public:
44cdf0e10cSrcweir 
OutputWrap(const rtl::OUString & rURL)45cdf0e10cSrcweir         explicit OutputWrap( const rtl::OUString& rURL ) : OutputWrapBase(m_aMutex), maFile(rURL)
46cdf0e10cSrcweir         {
47cdf0e10cSrcweir             maFile.open(osl_File_OpenFlag_Create|OpenFlag_Write);
48cdf0e10cSrcweir         }
49cdf0e10cSrcweir 
writeBytes(const com::sun::star::uno::Sequence<::sal_Int8> & aData)50cdf0e10cSrcweir 		virtual void SAL_CALL writeBytes( const com::sun::star::uno::Sequence< ::sal_Int8 >& aData ) throw (com::sun::star::io::NotConnectedException,com::sun::star::io::BufferSizeExceededException, com::sun::star::io::IOException, com::sun::star::uno::RuntimeException)
51cdf0e10cSrcweir 
52cdf0e10cSrcweir         {
53cdf0e10cSrcweir             sal_uInt64 nBytesWritten(0);
54cdf0e10cSrcweir             maFile.write(aData.getConstArray(),aData.getLength(),nBytesWritten);
55cdf0e10cSrcweir         }
56cdf0e10cSrcweir 
flush()57cdf0e10cSrcweir         virtual void SAL_CALL flush() throw (com::sun::star::io::NotConnectedException, com::sun::star::io::BufferSizeExceededException, com::sun::star::io::IOException, com::sun::star::uno::RuntimeException)
58cdf0e10cSrcweir         {
59cdf0e10cSrcweir         }
60cdf0e10cSrcweir 
closeOutput()61cdf0e10cSrcweir         virtual void SAL_CALL closeOutput() throw (com::sun::star::io::NotConnectedException, com::sun::star::io::BufferSizeExceededException, com::sun::star::io::IOException, com::sun::star::uno::RuntimeException)
62cdf0e10cSrcweir         {
63cdf0e10cSrcweir             maFile.close();
64cdf0e10cSrcweir         }
65cdf0e10cSrcweir     };
66cdf0e10cSrcweir }
67cdf0e10cSrcweir #endif
68cdf0e10cSrcweir 
69