/* -*- 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 . */ #ifndef INCLUDED_DESKTOP_SOURCE_MIGRATION_SERVICES_OO3EXTENSIONMIGRATION_HXX #define INCLUDED_DESKTOP_SOURCE_MIGRATION_SERVICES_OO3EXTENSIONMIGRATION_HXX #include "misc.hxx" #include #include #include #include #include #include #include #include #include #include #include namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } }}} class INetURLObject; namespace migration { OUString SAL_CALL OO3ExtensionMigration_getImplementationName(); css::uno::Sequence< OUString > SAL_CALL OO3ExtensionMigration_getSupportedServiceNames(); css::uno::Reference< css::uno::XInterface > SAL_CALL OO3ExtensionMigration_create( css::uno::Reference< css::uno::XComponentContext > const & xContext ); // class ExtensionMigration typedef ::cppu::WeakImplHelper< css::lang::XServiceInfo, css::lang::XInitialization, css::task::XJob > ExtensionMigration_BASE; class OO3ExtensionMigration : public ExtensionMigration_BASE { private: css::uno::Reference< css::uno::XComponentContext > m_ctx; css::uno::Reference< css::xml::dom::XDocumentBuilder > m_xDocBuilder; css::uno::Reference< css::ucb::XSimpleFileAccess3 > m_xSimpleFileAccess; ::osl::Mutex m_aMutex; OUString m_sSourceDir; OUString m_sTargetDir; TStringVector m_aBlackList; enum ScanResult { SCANRESULT_NOTFOUND, SCANRESULT_MIGRATE_EXTENSION, SCANRESULT_DONTMIGRATE_EXTENSION }; ::osl::FileBase::RC checkAndCreateDirectory( INetURLObject& rDirURL ); ScanResult scanExtensionFolder( const OUString& sExtFolder ); void scanUserExtensions( const OUString& sSourceDir, TStringVector& aMigrateExtensions ); bool scanDescriptionXml( const OUString& sDescriptionXmlFilePath ); void migrateExtension( const OUString& sSourceDir ); public: explicit OO3ExtensionMigration(css::uno::Reference< css::uno::XComponentContext > const & ctx); virtual ~OO3ExtensionMigration(); // XServiceInfo virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XInitialization virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) throw (css::uno::Exception, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XJob virtual css::uno::Any SAL_CALL execute( const css::uno::Sequence< css::beans::NamedValue >& Arguments ) throw (css::lang::IllegalArgumentException, css::uno::Exception, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; }; class TmpRepositoryCommandEnv : public ::cppu::WeakImplHelper< css::ucb::XCommandEnvironment, css::task::XInteractionHandler, css::ucb::XProgressHandler > { css::uno::Reference< css::uno::XComponentContext > m_xContext; css::uno::Reference< css::task::XInteractionHandler> m_forwardHandler; public: virtual ~TmpRepositoryCommandEnv(); TmpRepositoryCommandEnv(); // XCommandEnvironment virtual css::uno::Reference< css::task::XInteractionHandler > SAL_CALL getInteractionHandler() throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; virtual css::uno::Reference< css::ucb::XProgressHandler > SAL_CALL getProgressHandler() throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; // XInteractionHandler virtual void SAL_CALL handle( css::uno::Reference< css::task::XInteractionRequest > const & xRequest ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XProgressHandler virtual void SAL_CALL push( css::uno::Any const & Status ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL update( css::uno::Any const & Status ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL pop() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; }; } // namespace migration #endif // INCLUDED_DESKTOP_SOURCE_MIGRATION_SERVICES_OO3EXTENSIONMIGRATION_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */