Bump for 3.6-28
[LibreOffice.git] / xmloff / source / core / XMLBase64ImportContext.cxx
blob41f17ae89d0b9871dac4776d32965d0f61e1ad54
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
30 #include <com/sun/star/io/XOutputStream.hpp>
32 #include <sax/tools/converter.hxx>
34 #include <xmloff/xmlimp.hxx>
35 #include <xmloff/XMLBase64ImportContext.hxx>
37 using ::rtl::OUString;
38 using ::rtl::OUStringBuffer;
40 using namespace ::com::sun::star::uno;
41 using namespace ::com::sun::star::xml::sax;
42 using namespace ::com::sun::star::io;
44 //-----------------------------------------------------------------------------
46 TYPEINIT1( XMLBase64ImportContext, SvXMLImportContext );
49 XMLBase64ImportContext::XMLBase64ImportContext(
50 SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName,
51 const Reference< XAttributeList >&,
52 const Reference< XOutputStream >& rOut ) :
53 SvXMLImportContext( rImport, nPrfx, rLName ),
54 xOut( rOut )
58 XMLBase64ImportContext::~XMLBase64ImportContext()
63 void XMLBase64ImportContext::EndElement()
65 xOut->closeOutput();
68 void XMLBase64ImportContext::Characters( const ::rtl::OUString& rChars )
70 OUString sTrimmedChars( rChars. trim() );
71 if( !sTrimmedChars.isEmpty() )
73 OUString sChars;
74 if( !sBase64CharsLeft.isEmpty() )
76 sChars = sBase64CharsLeft;
77 sChars += sTrimmedChars;
78 sBase64CharsLeft = OUString();
80 else
82 sChars = sTrimmedChars;
84 Sequence< sal_Int8 > aBuffer( (sChars.getLength() / 4) * 3 );
85 sal_Int32 const nCharsDecoded =
86 ::sax::Converter::decodeBase64SomeChars( aBuffer, sChars );
87 xOut->writeBytes( aBuffer );
88 if( nCharsDecoded != sChars.getLength() )
89 sBase64CharsLeft = sChars.copy( nCharsDecoded );
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */