Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <xmloff/xmlprcon.hxx>
21 : #include <xmloff/xmlimp.hxx>
22 : #include <xmloff/xmltypes.hxx>
23 : #include <xmloff/maptype.hxx>
24 :
25 : using namespace ::com::sun::star;
26 : using namespace ::std;
27 :
28 24674 : SvXMLPropertySetContext::SvXMLPropertySetContext(
29 : SvXMLImport& rImp, sal_uInt16 nPrfx,
30 : const OUString& rLName,
31 : const uno::Reference< xml::sax::XAttributeList >& xAttrList,
32 : sal_uInt32 nFam,
33 : vector< XMLPropertyState > &rProps,
34 : const rtl::Reference < SvXMLImportPropertyMapper > &rMap,
35 : sal_Int32 nSIdx, sal_Int32 nEIdx )
36 : : SvXMLImportContext( rImp, nPrfx, rLName )
37 : , mnStartIdx( nSIdx )
38 : , mnEndIdx( nEIdx )
39 : , mnFamily( nFam )
40 : , mrProperties( rProps )
41 24674 : , mxMapper( rMap )
42 : {
43 : mxMapper->importXML( mrProperties, xAttrList,
44 24674 : GetImport().GetMM100UnitConverter(),
45 24674 : GetImport().GetNamespaceMap(), mnFamily,
46 49348 : mnStartIdx, mnEndIdx );
47 24674 : }
48 :
49 28135 : SvXMLPropertySetContext::~SvXMLPropertySetContext()
50 : {
51 28135 : }
52 :
53 2386 : SvXMLImportContext *SvXMLPropertySetContext::CreateChildContext(
54 : sal_uInt16 nPrefix,
55 : const OUString& rLocalName,
56 : const uno::Reference< xml::sax::XAttributeList >& xAttrList )
57 : {
58 : rtl::Reference< XMLPropertySetMapper > aSetMapper(
59 2386 : mxMapper->getPropertySetMapper() );
60 : sal_Int32 nEntryIndex = aSetMapper->GetEntryIndex( nPrefix, rLocalName,
61 2386 : mnFamily, mnStartIdx );
62 :
63 4772 : if( ( nEntryIndex != -1 ) && (-1 == mnEndIdx || nEntryIndex < mnEndIdx ) &&
64 2386 : ( 0 != ( aSetMapper->GetEntryFlags( nEntryIndex )
65 2386 : & MID_FLAG_ELEMENT_ITEM_IMPORT ) ) )
66 : {
67 2386 : XMLPropertyState aProp( nEntryIndex );
68 : return CreateChildContext( nPrefix, rLocalName, xAttrList,
69 2386 : mrProperties, aProp );
70 : }
71 : else
72 : {
73 0 : return new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
74 2386 : }
75 : }
76 :
77 : /** This method is called from this instance implementation of
78 : CreateChildContext if the element matches an entry in the
79 : SvXMLImportItemMapper with the mid flag MID_FLAG_ELEMENT
80 : */
81 0 : SvXMLImportContext *SvXMLPropertySetContext::CreateChildContext(
82 : sal_uInt16 nPrefix,
83 : const OUString& rLocalName,
84 : const uno::Reference< xml::sax::XAttributeList >&,
85 : ::std::vector< XMLPropertyState > &,
86 : const XMLPropertyState& )
87 : {
88 0 : return new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
89 : }
90 :
91 :
92 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|