1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_xmloff.hxx"
30 #include "RenameElemTContext.hxx"
31 #include "MutableAttrList.hxx"
32 #ifndef _XMLOFF_TRANSFORMERBASE_HXX
33 #include "TransformerBase.hxx"
34 #endif
35 #include <xmloff/nmspmap.hxx>
36 
37 using ::rtl::OUString;
38 
39 using namespace ::com::sun::star::uno;
40 using namespace ::com::sun::star::xml::sax;
41 
42 TYPEINIT1( XMLRenameElemTransformerContext, XMLTransformerContext );
43 
44 XMLRenameElemTransformerContext::XMLRenameElemTransformerContext(
45 		XMLTransformerBase& rImp,
46 		const OUString& rQName,
47 	    sal_uInt16 nPrefix,
48 		::xmloff::token::XMLTokenEnum eToken ) :
49 	XMLTransformerContext( rImp, rQName ),
50 	m_aElemQName( rImp.GetNamespaceMap().GetQNameByKey( nPrefix,
51 							::xmloff::token::GetXMLToken( eToken ) ) )
52 {
53 }
54 
55 XMLRenameElemTransformerContext::XMLRenameElemTransformerContext(
56 		XMLTransformerBase& rImp,
57 		const OUString& rQName,
58 	    sal_uInt16 nPrefix,
59 		::xmloff::token::XMLTokenEnum eToken,
60 		sal_uInt16 nAPrefix,
61 		::xmloff::token::XMLTokenEnum eAToken,
62 		::xmloff::token::XMLTokenEnum eVToken ) :
63 	XMLTransformerContext( rImp, rQName ),
64 	m_aElemQName( rImp.GetNamespaceMap().GetQNameByKey( nPrefix,
65 							::xmloff::token::GetXMLToken( eToken ) ) ),
66 	m_aAttrQName( rImp.GetNamespaceMap().GetQNameByKey( nAPrefix,
67 									::xmloff::token::GetXMLToken( eAToken ) ) ),
68 	m_aAttrValue( ::xmloff::token::GetXMLToken( eVToken ) )
69 {
70 }
71 
72 XMLRenameElemTransformerContext::~XMLRenameElemTransformerContext()
73 {
74 }
75 
76 void XMLRenameElemTransformerContext::StartElement(
77 		const Reference< XAttributeList >& rAttrList )
78 {
79 	Reference< XAttributeList > xAttrList( rAttrList );
80 	if( m_aAttrQName.getLength() )
81 	{
82 		XMLMutableAttributeList *pMutableAttrList =
83 			new XMLMutableAttributeList( xAttrList );
84 		xAttrList = pMutableAttrList;
85 		pMutableAttrList->AddAttribute( m_aAttrQName, m_aAttrValue );
86 	}
87 	GetTransformer().GetDocHandler()->startElement( m_aElemQName, xAttrList );
88 }
89 
90 void XMLRenameElemTransformerContext::EndElement()
91 {
92 	GetTransformer().GetDocHandler()->endElement( m_aElemQName );
93 }
94