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_XMLLOGIN_HXX
27cdf0e10cSrcweir #include "xmlLogin.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 #include <com/sun/star/sdbc/XDataSource.hpp>
54cdf0e10cSrcweir #include <vector>
55cdf0e10cSrcweir 
56cdf0e10cSrcweir namespace dbaxml
57cdf0e10cSrcweir {
58cdf0e10cSrcweir 	using namespace ::com::sun::star::uno;
59cdf0e10cSrcweir     using namespace ::com::sun::star::sdbc;
60cdf0e10cSrcweir 	using namespace ::com::sun::star::xml::sax;
DBG_NAME(OXMLLogin)61cdf0e10cSrcweir DBG_NAME(OXMLLogin)
62cdf0e10cSrcweir 
63cdf0e10cSrcweir OXMLLogin::OXMLLogin( ODBFilter& rImport,
64cdf0e10cSrcweir 				sal_uInt16 nPrfx, const ::rtl::OUString& _sLocalName,
65cdf0e10cSrcweir 				const Reference< XAttributeList > & _xAttrList ) :
66cdf0e10cSrcweir 	SvXMLImportContext( rImport, nPrfx, _sLocalName )
67cdf0e10cSrcweir {
68cdf0e10cSrcweir     DBG_CTOR(OXMLLogin,NULL);
69cdf0e10cSrcweir 
70cdf0e10cSrcweir 	OSL_ENSURE(_xAttrList.is(),"Attribute list is NULL!");
71cdf0e10cSrcweir 	const SvXMLNamespaceMap& rMap = rImport.GetNamespaceMap();
72cdf0e10cSrcweir 	const SvXMLTokenMap& rTokenMap = rImport.GetLoginElemTokenMap();
73cdf0e10cSrcweir 
74cdf0e10cSrcweir 	Reference<XPropertySet> xDataSource(rImport.getDataSource());
75cdf0e10cSrcweir 
76cdf0e10cSrcweir 	const sal_Int16 nLength = (xDataSource.is() && _xAttrList.is()) ? _xAttrList->getLength() : 0;
77cdf0e10cSrcweir 	static const ::rtl::OUString s_sTRUE = ::xmloff::token::GetXMLToken(XML_TRUE);
78cdf0e10cSrcweir     bool bUserFound = false;
79cdf0e10cSrcweir 	for(sal_Int16 i = 0; i < nLength; ++i)
80cdf0e10cSrcweir 	{
81cdf0e10cSrcweir 		::rtl::OUString sLocalName;
82cdf0e10cSrcweir 		rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
83cdf0e10cSrcweir 		sal_uInt16 nPrefix = rMap.GetKeyByAttrName( sAttrName,&sLocalName );
84cdf0e10cSrcweir 		rtl::OUString sValue = _xAttrList->getValueByIndex( i );
85cdf0e10cSrcweir 
86cdf0e10cSrcweir 		try
87cdf0e10cSrcweir 		{
88cdf0e10cSrcweir 			switch( rTokenMap.Get( nPrefix, sLocalName ) )
89cdf0e10cSrcweir 			{
90cdf0e10cSrcweir 				case XML_TOK_USER_NAME:
91cdf0e10cSrcweir                     if ( !bUserFound )
92cdf0e10cSrcweir                     {
93cdf0e10cSrcweir                         bUserFound = true;
94cdf0e10cSrcweir                         try
95cdf0e10cSrcweir                         {
96cdf0e10cSrcweir 					        xDataSource->setPropertyValue(PROPERTY_USER,makeAny(sValue));
97cdf0e10cSrcweir                         }
98cdf0e10cSrcweir 				        catch(Exception)
99cdf0e10cSrcweir 				        {
100cdf0e10cSrcweir                             DBG_UNHANDLED_EXCEPTION();
101cdf0e10cSrcweir 				        }
102cdf0e10cSrcweir                     }
103cdf0e10cSrcweir 					break;
104cdf0e10cSrcweir 				case XML_TOK_IS_PASSWORD_REQUIRED:
105cdf0e10cSrcweir                     try
106cdf0e10cSrcweir 				    {
107cdf0e10cSrcweir 					    xDataSource->setPropertyValue(PROPERTY_ISPASSWORDREQUIRED,makeAny((sValue == s_sTRUE ? sal_True : sal_False)));
108cdf0e10cSrcweir                     }
109cdf0e10cSrcweir 				    catch(Exception)
110cdf0e10cSrcweir 				    {
111cdf0e10cSrcweir                         DBG_UNHANDLED_EXCEPTION();
112cdf0e10cSrcweir 				    }
113cdf0e10cSrcweir 					break;
114cdf0e10cSrcweir                 case XML_TOK_USE_SYSTEM_USER:
115cdf0e10cSrcweir                     if ( !bUserFound )
116cdf0e10cSrcweir                     {
117cdf0e10cSrcweir                         bUserFound = true;
118cdf0e10cSrcweir                         PropertyValue aProperty;
119cdf0e10cSrcweir                         aProperty.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("UseSystemUser"));
120cdf0e10cSrcweir                         aProperty.Value <<= (sValue == s_sTRUE ? sal_True : sal_False);
121cdf0e10cSrcweir                         rImport.addInfo(aProperty);
122cdf0e10cSrcweir                     }
123cdf0e10cSrcweir                     break;
124cdf0e10cSrcweir                 case XML_TOK_LOGIN_TIMEOUT:
125cdf0e10cSrcweir                     try
126cdf0e10cSrcweir                     {
127cdf0e10cSrcweir                         Reference< XDataSource>(xDataSource,UNO_QUERY_THROW)->setLoginTimeout(sValue.toInt32());
128cdf0e10cSrcweir                     }
129cdf0e10cSrcweir 				    catch(Exception)
130cdf0e10cSrcweir 				    {
131cdf0e10cSrcweir                         DBG_UNHANDLED_EXCEPTION();
132cdf0e10cSrcweir 				    }
133cdf0e10cSrcweir                     break;
134cdf0e10cSrcweir 			}
135cdf0e10cSrcweir 		}
136cdf0e10cSrcweir 		catch(Exception)
137cdf0e10cSrcweir 		{
138cdf0e10cSrcweir             DBG_UNHANDLED_EXCEPTION();
139cdf0e10cSrcweir 		}
140cdf0e10cSrcweir 	}
141cdf0e10cSrcweir }
142cdf0e10cSrcweir // -----------------------------------------------------------------------------
143cdf0e10cSrcweir 
~OXMLLogin()144cdf0e10cSrcweir OXMLLogin::~OXMLLogin()
145cdf0e10cSrcweir {
146cdf0e10cSrcweir 
147cdf0e10cSrcweir     DBG_DTOR(OXMLLogin,NULL);
148cdf0e10cSrcweir }
149cdf0e10cSrcweir // -----------------------------------------------------------------------------
150cdf0e10cSrcweir 
151cdf0e10cSrcweir //----------------------------------------------------------------------------
152cdf0e10cSrcweir } // namespace dbaxml
153cdf0e10cSrcweir // -----------------------------------------------------------------------------
154