bump product version to 5.0.4.1
[LibreOffice.git] / dbaccess / source / filter / xml / xmlConnectionResource.cxx
blob8905cfe4456405308b48a42cfc8f4ed2f17ab9d0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "xmlConnectionResource.hxx"
21 #include "xmlfilter.hxx"
22 #include <xmloff/xmltoken.hxx>
23 #include <xmloff/xmlnmspe.hxx>
24 #include <xmloff/nmspmap.hxx>
25 #include "xmlEnums.hxx"
26 #include "xmlstrings.hrc"
27 #include <tools/debug.hxx>
28 #include <tools/diagnose_ex.h>
30 namespace dbaxml
32 using namespace ::com::sun::star::uno;
33 using namespace ::com::sun::star::xml::sax;
35 OXMLConnectionResource::OXMLConnectionResource( ODBFilter& rImport,
36 sal_uInt16 nPrfx, const OUString& _sLocalName,
37 const Reference< XAttributeList > & _xAttrList) :
38 SvXMLImportContext( rImport, nPrfx, _sLocalName )
41 OSL_ENSURE(_xAttrList.is(),"Attribute list is NULL!");
42 const SvXMLNamespaceMap& rMap = rImport.GetNamespaceMap();
43 const SvXMLTokenMap& rTokenMap = rImport.GetComponentElemTokenMap();
45 Reference<XPropertySet> xDataSource = rImport.getDataSource();
47 PropertyValue aProperty;
49 const sal_Int16 nLength = (xDataSource.is() && _xAttrList.is()) ? _xAttrList->getLength() : 0;
50 for(sal_Int16 i = 0; i < nLength; ++i)
52 OUString sLocalName;
53 const OUString sAttrName = _xAttrList->getNameByIndex( i );
54 const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( sAttrName,&sLocalName );
55 const OUString sValue = _xAttrList->getValueByIndex( i );
57 aProperty.Name.clear();
58 aProperty.Value = Any();
60 switch( rTokenMap.Get( nPrefix, sLocalName ) )
62 case XML_TOK_HREF:
63 try
65 xDataSource->setPropertyValue(PROPERTY_URL,makeAny(sValue));
67 catch(const Exception&)
69 DBG_UNHANDLED_EXCEPTION();
71 break;
72 case XML_TOK_TYPE:
73 aProperty.Name = PROPERTY_TYPE;
74 break;
75 case XML_TOK_SHOW:
76 aProperty.Name = "Show";
77 break;
78 case XML_TOK_ACTUATE:
79 aProperty.Name = "Actuate";
80 break;
82 if ( !aProperty.Name.isEmpty() )
84 if ( !aProperty.Value.hasValue() )
85 aProperty.Value <<= sValue;
86 rImport.addInfo(aProperty);
91 OXMLConnectionResource::~OXMLConnectionResource()
96 } // namespace dbaxml
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */