bump product version to 5.0.4.1
[LibreOffice.git] / dbaccess / source / filter / xml / xmlLogin.cxx
blobb35e18755d4363a0d9352cf545a7ed8af1c37d23
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 "xmlLogin.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>
29 #include <com/sun/star/sdbc/XDataSource.hpp>
30 #include <vector>
32 namespace dbaxml
34 using namespace ::com::sun::star::uno;
35 using namespace ::com::sun::star::sdbc;
36 using namespace ::com::sun::star::xml::sax;
38 OXMLLogin::OXMLLogin( ODBFilter& rImport,
39 sal_uInt16 nPrfx, const OUString& _sLocalName,
40 const Reference< XAttributeList > & _xAttrList ) :
41 SvXMLImportContext( rImport, nPrfx, _sLocalName )
44 OSL_ENSURE(_xAttrList.is(),"Attribute list is NULL!");
45 const SvXMLNamespaceMap& rMap = rImport.GetNamespaceMap();
46 const SvXMLTokenMap& rTokenMap = rImport.GetLoginElemTokenMap();
48 Reference<XPropertySet> xDataSource(rImport.getDataSource());
50 const sal_Int16 nLength = (xDataSource.is() && _xAttrList.is()) ? _xAttrList->getLength() : 0;
51 static const OUString s_sTRUE = ::xmloff::token::GetXMLToken(XML_TRUE);
52 bool bUserFound = false;
53 for(sal_Int16 i = 0; i < nLength; ++i)
55 OUString sLocalName;
56 OUString sAttrName = _xAttrList->getNameByIndex( i );
57 sal_uInt16 nPrefix = rMap.GetKeyByAttrName( sAttrName,&sLocalName );
58 OUString sValue = _xAttrList->getValueByIndex( i );
60 try
62 switch( rTokenMap.Get( nPrefix, sLocalName ) )
64 case XML_TOK_USER_NAME:
65 if ( !bUserFound )
67 bUserFound = true;
68 try
70 xDataSource->setPropertyValue(PROPERTY_USER,makeAny(sValue));
72 catch(const Exception&)
74 DBG_UNHANDLED_EXCEPTION();
77 break;
78 case XML_TOK_IS_PASSWORD_REQUIRED:
79 try
81 xDataSource->setPropertyValue(PROPERTY_ISPASSWORDREQUIRED,makeAny((sValue == s_sTRUE ? sal_True : sal_False)));
83 catch(const Exception&)
85 DBG_UNHANDLED_EXCEPTION();
87 break;
88 case XML_TOK_USE_SYSTEM_USER:
89 if ( !bUserFound )
91 bUserFound = true;
92 PropertyValue aProperty;
93 aProperty.Name = "UseSystemUser";
94 aProperty.Value <<= (sValue == s_sTRUE ? sal_True : sal_False);
95 rImport.addInfo(aProperty);
97 break;
98 case XML_TOK_LOGIN_TIMEOUT:
99 try
101 Reference< XDataSource>(xDataSource,UNO_QUERY_THROW)->setLoginTimeout(sValue.toInt32());
103 catch(const Exception&)
105 DBG_UNHANDLED_EXCEPTION();
107 break;
110 catch(const Exception&)
112 DBG_UNHANDLED_EXCEPTION();
117 OXMLLogin::~OXMLLogin()
122 } // namespace dbaxml
124 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */