/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #include "pppoptimizer.hxx" #include "impoptimizer.hxx" #include #include using namespace ::rtl; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::util; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::beans; #define SERVICE_NAME "com.sun.star.comp.PPPOptimizer" // ---------------- // - PPPOptimizer - // ---------------- PPPOptimizer::PPPOptimizer( const Reference< XComponentContext > &rxMSF ) : mxMSF( rxMSF ) { } // ----------------------------------------------------------------------------- PPPOptimizer::~PPPOptimizer() { } // ----------------------------------------------------------------------------- // XInitialization // ----------------------------------------------------------------------------- void SAL_CALL PPPOptimizer::initialize( const Sequence< Any >& aArguments ) throw ( Exception, RuntimeException ) { if( aArguments.getLength() != 1 ) throw IllegalArgumentException(); Reference< XFrame > xFrame; aArguments[ 0 ] >>= xFrame; if ( xFrame.is() ) mxController = xFrame->getController(); } // ----------------------------------------------------------------------------- // XServiceInfo // ----------------------------------------------------------------------------- OUString SAL_CALL PPPOptimizer::getImplementationName() throw ( RuntimeException ) { return PPPOptimizer_getImplementationName(); } sal_Bool SAL_CALL PPPOptimizer::supportsService( const OUString& rServiceName ) throw ( RuntimeException ) { return rServiceName == SERVICE_NAME; } Sequence< OUString > SAL_CALL PPPOptimizer::getSupportedServiceNames() throw ( RuntimeException ) { return PPPOptimizer_getSupportedServiceNames(); } // ----------------------------------------------------------------------------- // XDispatchProvider // ----------------------------------------------------------------------------- Reference< com::sun::star::frame::XDispatch > SAL_CALL PPPOptimizer::queryDispatch( const URL& aURL, const ::rtl::OUString& /* aTargetFrameName */, sal_Int32 /* nSearchFlags */ ) throw( RuntimeException ) { Reference < XDispatch > xRet; if ( aURL.Protocol.compareToAscii( "vnd.com.sun.star.comp.PPPOptimizer:" ) == 0 ) { // if ( aURL.Path.compareToAscii( "Function1" ) == 0 ) xRet = this; } return xRet; } //------------------------------------------------------------------------------ Sequence< Reference< com::sun::star::frame::XDispatch > > SAL_CALL PPPOptimizer::queryDispatches( const Sequence< com::sun::star::frame::DispatchDescriptor >& aDescripts ) throw( RuntimeException ) { Sequence< Reference< com::sun::star::frame::XDispatch> > aReturn( aDescripts.getLength() ); Reference< com::sun::star::frame::XDispatch>* pReturn = aReturn.getArray(); const com::sun::star::frame::DispatchDescriptor* pDescripts = aDescripts.getConstArray(); for (sal_Int16 i = 0; i < aDescripts.getLength(); ++i, ++pReturn, ++pDescripts ) { *pReturn = queryDispatch( pDescripts->FeatureURL, pDescripts->FrameName, pDescripts->SearchFlags ); } return aReturn; } // ----------------------------------------------------------------------------- // XDispatch // ----------------------------------------------------------------------------- void SAL_CALL PPPOptimizer::dispatch( const URL& rURL, const Sequence< PropertyValue >& lArguments ) throw( RuntimeException ) { if ( mxController.is() && ( rURL.Protocol.compareToAscii( "vnd.com.sun.star.comp.PPPOptimizer:" ) == 0 ) ) { if ( rURL.Path.compareToAscii( "optimize" ) == 0 ) { Reference< XModel > xModel( mxController->getModel() ); if ( xModel.is() ) { try { ImpOptimizer aOptimizer( mxMSF, xModel ); aOptimizer.Optimize( lArguments ); } catch( Exception& ) { } } } } } //=============================================== void SAL_CALL PPPOptimizer::addStatusListener( const Reference< XStatusListener >&, const URL& ) throw( RuntimeException ) { // TODO OSL_FAIL( "PPPOptimizer::addStatusListener()\nNot implemented yet!" ); } //=============================================== void SAL_CALL PPPOptimizer::removeStatusListener( const Reference< XStatusListener >&, const URL& ) throw( RuntimeException ) { // TODO OSL_FAIL( "PPPOptimizer::removeStatusListener()\nNot implemented yet!" ); } // ----------------------------------------------------------------------------- // returning filesize, on error zero is returned sal_Int64 PPPOptimizer::GetFileSize( const rtl::OUString& rURL ) { sal_Int64 nFileSize = 0; osl::DirectoryItem aItem; if ( osl::DirectoryItem::get( rURL, aItem ) == osl::FileBase::E_None ) { osl::FileStatus aStatus( osl_FileStatus_Mask_FileSize ); if ( aItem.getFileStatus( aStatus ) == osl::FileBase::E_None ) { nFileSize = aStatus.getFileSize(); } } return nFileSize; } // ----------------------------------------------------------------------------- OUString PPPOptimizer_getImplementationName() { return OUString ( RTL_CONSTASCII_USTRINGPARAM ( "com.sun.star.comp.PPPOptimizerImp" ) ); } Sequence< OUString > PPPOptimizer_getSupportedServiceNames() { Sequence < OUString > aRet(1); OUString* pArray = aRet.getArray(); pArray[0] = OUString ( RTL_CONSTASCII_USTRINGPARAM( SERVICE_NAME ) ); return aRet; } Reference< XInterface > PPPOptimizer_createInstance( const Reference< XComponentContext > & rSMgr ) throw( Exception ) { return (cppu::OWeakObject*) new PPPOptimizer( rSMgr ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */