/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #undef SC_DLLIMPLEMENTATION #include #include #include #include #include #include #include #include #include using namespace com::sun::star; #include "dapidata.hxx" #include "scresid.hxx" #include "sc.hrc" #include "miscuno.hxx" #include "dpsdbtab.hxx" // entries in the "type" ListBox #define DP_TYPELIST_TABLE 0 #define DP_TYPELIST_QUERY 1 #define DP_TYPELIST_SQLNAT 3 ScDataPilotDatabaseDlg::ScDataPilotDatabaseDlg( vcl::Window* pParent ) : ModalDialog(pParent, "SelectDataSourceDialog", "modules/scalc/ui/selectdatasource.ui") { get(m_pLbDatabase, "database"); get(m_pCbObject, "datasource"); get(m_pLbType, "type"); WaitObject aWait( this ); // initializing the database service the first time takes a while try { // get database names uno::Reference xContext = sdb::DatabaseContext::create( comphelper::getProcessComponentContext() ); uno::Sequence aNames = xContext->getElementNames(); long nCount = aNames.getLength(); const OUString* pArray = aNames.getConstArray(); for (long nPos = 0; nPos < nCount; nPos++) { OUString aName = pArray[nPos]; m_pLbDatabase->InsertEntry( aName ); } } catch(uno::Exception&) { OSL_FAIL("exception in database"); } m_pLbDatabase->SelectEntryPos( 0 ); m_pLbType->SelectEntryPos( 0 ); FillObjects(); m_pLbDatabase->SetSelectHdl( LINK( this, ScDataPilotDatabaseDlg, SelectHdl ) ); m_pLbType->SetSelectHdl( LINK( this, ScDataPilotDatabaseDlg, SelectHdl ) ); } void ScDataPilotDatabaseDlg::GetValues( ScImportSourceDesc& rDesc ) { sal_uInt16 nSelect = m_pLbType->GetSelectEntryPos(); rDesc.aDBName = m_pLbDatabase->GetSelectEntry(); rDesc.aObject = m_pCbObject->GetText(); if (rDesc.aDBName.isEmpty() || rDesc.aObject.isEmpty()) rDesc.nType = sheet::DataImportMode_NONE; else if ( nSelect == DP_TYPELIST_TABLE ) rDesc.nType = sheet::DataImportMode_TABLE; else if ( nSelect == DP_TYPELIST_QUERY ) rDesc.nType = sheet::DataImportMode_QUERY; else rDesc.nType = sheet::DataImportMode_SQL; rDesc.bNative = ( nSelect == DP_TYPELIST_SQLNAT ); } IMPL_LINK_NOARG(ScDataPilotDatabaseDlg, SelectHdl) { FillObjects(); return 0; } void ScDataPilotDatabaseDlg::FillObjects() { m_pCbObject->Clear(); OUString aDatabaseName = m_pLbDatabase->GetSelectEntry(); if (aDatabaseName.isEmpty()) return; sal_uInt16 nSelect = m_pLbType->GetSelectEntryPos(); if ( nSelect > DP_TYPELIST_QUERY ) return; // only tables and queries try { // open connection (for tables or queries) uno::Reference xContext = sdb::DatabaseContext::create( comphelper::getProcessComponentContext() ); uno::Any aSourceAny = xContext->getByName( aDatabaseName ); uno::Reference xSource( ScUnoHelpFunctions::AnyToInterface( aSourceAny ), uno::UNO_QUERY ); if ( !xSource.is() ) return; uno::Reference xHandler( task::InteractionHandler::createWithParent(comphelper::getProcessComponentContext(), 0), uno::UNO_QUERY_THROW); uno::Reference xConnection = xSource->connectWithCompletion( xHandler ); uno::Sequence aNames; if ( nSelect == DP_TYPELIST_TABLE ) { // get all tables uno::Reference xTablesSupp( xConnection, uno::UNO_QUERY ); if ( !xTablesSupp.is() ) return; uno::Reference xTables = xTablesSupp->getTables(); if ( !xTables.is() ) return; aNames = xTables->getElementNames(); } else { // get all queries uno::Reference xQueriesSupp( xConnection, uno::UNO_QUERY ); if ( !xQueriesSupp.is() ) return; uno::Reference xQueries = xQueriesSupp->getQueries(); if ( !xQueries.is() ) return; aNames = xQueries->getElementNames(); } // fill list long nCount = aNames.getLength(); const OUString* pArray = aNames.getConstArray(); for( long nPos=0; nPosInsertEntry( aName ); } } catch(uno::Exception&) { // this may happen if an invalid database is selected -> no DBG_ERROR OSL_FAIL("exception in database"); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */