/* -*- 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 . */ #include #include #include #include #include #include #include #include #include #include #include #include using namespace com::sun::star; #define SCSOLVER_SERVICE "com.sun.star.sheet.Solver" void ScSolverUtil::GetImplementations( uno::Sequence& rImplNames, uno::Sequence& rDescriptions ) { rImplNames.realloc(0); // clear rDescriptions.realloc(0); uno::Reference xCtx( comphelper::getProcessComponentContext() ); uno::Reference xEnAc( xCtx->getServiceManager(), uno::UNO_QUERY ); if ( xEnAc.is() ) { uno::Reference xEnum = xEnAc->createContentEnumeration( SCSOLVER_SERVICE ); if ( xEnum.is() ) { sal_Int32 nCount = 0; while ( xEnum->hasMoreElements() ) { uno::Any aAny = xEnum->nextElement(); uno::Reference xInfo; aAny >>= xInfo; if ( xInfo.is() ) { uno::Reference xCFac( xInfo, uno::UNO_QUERY ); if ( xCFac.is() ) { OUString sName = xInfo->getImplementationName(); OUString sDescription; try { uno::Reference xSolver( xCFac->createInstanceWithContext(xCtx), uno::UNO_QUERY ); uno::Reference xDesc( xSolver, uno::UNO_QUERY ); if ( xDesc.is() ) sDescription = xDesc->getComponentDescription(); if ( sDescription.isEmpty() ) sDescription = sName; // use implementation name if no description available rImplNames.realloc( nCount+1 ); rImplNames[nCount] = sName; rDescriptions.realloc( nCount+1 ); rDescriptions[nCount] = sDescription; ++nCount; } catch (const css::uno::Exception&) { TOOLS_INFO_EXCEPTION("sc.ui", "ScSolverUtil::GetImplementations: cannot instantiate: " << sName); } } } } } } } uno::Reference ScSolverUtil::GetSolver( const OUString& rImplName ) { uno::Reference xSolver; uno::Reference xCtx( comphelper::getProcessComponentContext() ); uno::Reference xEnAc( xCtx->getServiceManager(), uno::UNO_QUERY ); if ( xEnAc.is() ) { uno::Reference xEnum = xEnAc->createContentEnumeration( SCSOLVER_SERVICE ); if ( xEnum.is() ) { while ( xEnum->hasMoreElements() && !xSolver.is() ) { uno::Any aAny = xEnum->nextElement(); uno::Reference xInfo; aAny >>= xInfo; if ( xInfo.is() ) { uno::Reference xCFac( xInfo, uno::UNO_QUERY ); if ( xCFac.is() ) { OUString sName = xInfo->getImplementationName(); if ( sName == rImplName ) xSolver.set( xCFac->createInstanceWithContext(xCtx), uno::UNO_QUERY ); } } } } } SAL_WARN_IF( !xSolver.is(), "sc.ui", "can't get solver" ); return xSolver; } uno::Sequence ScSolverUtil::GetDefaults( const OUString& rImplName ) { uno::Sequence aDefaults; uno::Reference xSolver = GetSolver( rImplName ); uno::Reference xPropSet( xSolver, uno::UNO_QUERY ); if ( !xPropSet.is() ) { // no XPropertySet - no options return aDefaults; } // fill maProperties uno::Reference xInfo = xPropSet->getPropertySetInfo(); OSL_ENSURE( xInfo.is(), "can't get property set info" ); if ( !xInfo.is() ) return aDefaults; const uno::Sequence aPropSeq = xInfo->getProperties(); const sal_Int32 nSize = aPropSeq.getLength(); aDefaults.realloc(nSize); sal_Int32 nValid = 0; for (const beans::Property& rProp : aPropSeq) { uno::Any aValue = xPropSet->getPropertyValue( rProp.Name ); uno::TypeClass eClass = aValue.getValueTypeClass(); // only use properties of supported types if ( eClass == uno::TypeClass_BOOLEAN || eClass == uno::TypeClass_LONG || eClass == uno::TypeClass_DOUBLE ) aDefaults[nValid++] = beans::PropertyValue( rProp.Name, -1, aValue, beans::PropertyState_DIRECT_VALUE ); } aDefaults.realloc(nValid); //! get user-visible names, sort by them return aDefaults; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */