196de5490SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
396de5490SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
496de5490SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
596de5490SAndrew Rist  * distributed with this work for additional information
696de5490SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
796de5490SAndrew Rist  * to you under the Apache License, Version 2.0 (the
896de5490SAndrew Rist  * "License"); you may not use this file except in compliance
996de5490SAndrew Rist  * with the License.  You may obtain a copy of the License at
1096de5490SAndrew Rist  *
1196de5490SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
1296de5490SAndrew Rist  *
1396de5490SAndrew Rist  * Unless required by applicable law or agreed to in writing,
1496de5490SAndrew Rist  * software distributed under the License is distributed on an
1596de5490SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1696de5490SAndrew Rist  * KIND, either express or implied.  See the License for the
1796de5490SAndrew Rist  * specific language governing permissions and limitations
1896de5490SAndrew Rist  * under the License.
1996de5490SAndrew Rist  *
2096de5490SAndrew Rist  *************************************************************/
2196de5490SAndrew Rist 
2296de5490SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25*b63233d8Sdamjan #include "precompiled_dbaxml.hxx"
26cdf0e10cSrcweir #ifndef DBA_XMLCONNECTIONRESOURCE_HXX_INCLUDED
27cdf0e10cSrcweir #include "xmlConnectionResource.hxx"
28cdf0e10cSrcweir #endif
29cdf0e10cSrcweir #ifndef DBA_XMLFILTER_HXX
30cdf0e10cSrcweir #include "xmlfilter.hxx"
31cdf0e10cSrcweir #endif
32cdf0e10cSrcweir #ifndef _XMLOFF_XMLTOKEN_HXX
33cdf0e10cSrcweir #include <xmloff/xmltoken.hxx>
34cdf0e10cSrcweir #endif
35cdf0e10cSrcweir #ifndef _XMLOFF_XMLNMSPE_HXX
36cdf0e10cSrcweir #include <xmloff/xmlnmspe.hxx>
37cdf0e10cSrcweir #endif
38cdf0e10cSrcweir #ifndef _XMLOFF_NMSPMAP_HXX
39cdf0e10cSrcweir #include <xmloff/nmspmap.hxx>
40cdf0e10cSrcweir #endif
41cdf0e10cSrcweir #ifndef DBA_XMLENUMS_HXX
42cdf0e10cSrcweir #include "xmlEnums.hxx"
43cdf0e10cSrcweir #endif
44cdf0e10cSrcweir #ifndef DBACCESS_SHARED_XMLSTRINGS_HRC
45cdf0e10cSrcweir #include "xmlstrings.hrc"
46cdf0e10cSrcweir #endif
47cdf0e10cSrcweir #ifndef _TOOLS_DEBUG_HXX
48cdf0e10cSrcweir #include <tools/debug.hxx>
49cdf0e10cSrcweir #endif
50cdf0e10cSrcweir #ifndef TOOLS_DIAGNOSE_EX_H
51cdf0e10cSrcweir #include <tools/diagnose_ex.h>
52cdf0e10cSrcweir #endif
53cdf0e10cSrcweir 
54cdf0e10cSrcweir namespace dbaxml
55cdf0e10cSrcweir {
56cdf0e10cSrcweir 	using namespace ::com::sun::star::uno;
57cdf0e10cSrcweir 	using namespace ::com::sun::star::xml::sax;
DBG_NAME(OXMLConnectionResource)58cdf0e10cSrcweir DBG_NAME(OXMLConnectionResource)
59cdf0e10cSrcweir 
60cdf0e10cSrcweir OXMLConnectionResource::OXMLConnectionResource( ODBFilter& rImport,
61cdf0e10cSrcweir 				sal_uInt16 nPrfx, const ::rtl::OUString& _sLocalName,
62cdf0e10cSrcweir 				const Reference< XAttributeList > & _xAttrList) :
63cdf0e10cSrcweir 	SvXMLImportContext( rImport, nPrfx, _sLocalName )
64cdf0e10cSrcweir {
65cdf0e10cSrcweir     DBG_CTOR(OXMLConnectionResource,NULL);
66cdf0e10cSrcweir 
67cdf0e10cSrcweir 	OSL_ENSURE(_xAttrList.is(),"Attribute list is NULL!");
68cdf0e10cSrcweir 	const SvXMLNamespaceMap& rMap = rImport.GetNamespaceMap();
69cdf0e10cSrcweir 	const SvXMLTokenMap& rTokenMap = rImport.GetComponentElemTokenMap();
70cdf0e10cSrcweir 
71cdf0e10cSrcweir 	Reference<XPropertySet> xDataSource = rImport.getDataSource();
72cdf0e10cSrcweir 
73cdf0e10cSrcweir 	PropertyValue aProperty;
74cdf0e10cSrcweir 
75cdf0e10cSrcweir 	const sal_Int16 nLength = (xDataSource.is() && _xAttrList.is()) ? _xAttrList->getLength() : 0;
76cdf0e10cSrcweir 	for(sal_Int16 i = 0; i < nLength; ++i)
77cdf0e10cSrcweir 	{
78cdf0e10cSrcweir 		::rtl::OUString sLocalName;
79cdf0e10cSrcweir 		const rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
80cdf0e10cSrcweir 		const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( sAttrName,&sLocalName );
81cdf0e10cSrcweir 		const rtl::OUString sValue = _xAttrList->getValueByIndex( i );
82cdf0e10cSrcweir 
83cdf0e10cSrcweir 		aProperty.Name = ::rtl::OUString();
84cdf0e10cSrcweir 		aProperty.Value = Any();
85cdf0e10cSrcweir 
86cdf0e10cSrcweir 		switch( rTokenMap.Get( nPrefix, sLocalName ) )
87cdf0e10cSrcweir 		{
88cdf0e10cSrcweir 			case XML_TOK_HREF:
89cdf0e10cSrcweir                 try
90cdf0e10cSrcweir 				{
91cdf0e10cSrcweir 					xDataSource->setPropertyValue(PROPERTY_URL,makeAny(sValue));
92cdf0e10cSrcweir 				}
93cdf0e10cSrcweir 				catch(Exception)
94cdf0e10cSrcweir 				{
95cdf0e10cSrcweir                     DBG_UNHANDLED_EXCEPTION();
96cdf0e10cSrcweir 				}
97cdf0e10cSrcweir 				break;
98cdf0e10cSrcweir 			case XML_TOK_TYPE:
99cdf0e10cSrcweir                 aProperty.Name = PROPERTY_TYPE;
100cdf0e10cSrcweir 				break;
101cdf0e10cSrcweir             case XML_TOK_SHOW:
102cdf0e10cSrcweir                 aProperty.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Show"));
103cdf0e10cSrcweir 				break;
104cdf0e10cSrcweir 			case XML_TOK_ACTUATE:
105cdf0e10cSrcweir                 aProperty.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Actuate"));
106cdf0e10cSrcweir 				break;
107cdf0e10cSrcweir 		}
108cdf0e10cSrcweir 		if ( aProperty.Name.getLength() )
109cdf0e10cSrcweir 		{
110cdf0e10cSrcweir 			if ( !aProperty.Value.hasValue() )
111cdf0e10cSrcweir 				aProperty.Value <<= sValue;
112cdf0e10cSrcweir 			rImport.addInfo(aProperty);
113cdf0e10cSrcweir 		}
114cdf0e10cSrcweir 	}
115cdf0e10cSrcweir }
116cdf0e10cSrcweir // -----------------------------------------------------------------------------
117cdf0e10cSrcweir 
~OXMLConnectionResource()118cdf0e10cSrcweir OXMLConnectionResource::~OXMLConnectionResource()
119cdf0e10cSrcweir {
120cdf0e10cSrcweir 
121cdf0e10cSrcweir     DBG_DTOR(OXMLConnectionResource,NULL);
122cdf0e10cSrcweir }
123cdf0e10cSrcweir // -----------------------------------------------------------------------------
124cdf0e10cSrcweir //----------------------------------------------------------------------------
125cdf0e10cSrcweir } // namespace dbaxml
126cdf0e10cSrcweir // -----------------------------------------------------------------------------
127