Bump version to 6.0-36
[LibreOffice.git] / desktop / source / migration / services / wordbookmigration.hxx
blob4fd535b1738bf756e2ba2a70898b783f8ab657b8
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 #ifndef INCLUDED_DESKTOP_SOURCE_MIGRATION_SERVICES_WORDBOOKMIGRATION_HXX
21 #define INCLUDED_DESKTOP_SOURCE_MIGRATION_SERVICES_WORDBOOKMIGRATION_HXX
23 #include "misc.hxx"
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <com/sun/star/lang/XInitialization.hpp>
26 #include <com/sun/star/task/XJob.hpp>
27 #include <com/sun/star/uno/XComponentContext.hpp>
28 #include <cppuhelper/implbase.hxx>
29 #include <osl/mutex.hxx>
30 #include <osl/file.hxx>
33 class INetURLObject;
36 namespace migration
40 OUString SAL_CALL WordbookMigration_getImplementationName();
41 css::uno::Sequence< OUString > SAL_CALL WordbookMigration_getSupportedServiceNames();
42 css::uno::Reference< css::uno::XInterface > SAL_CALL WordbookMigration_create(
43 css::uno::Reference< css::uno::XComponentContext > const & xContext );
46 // class WordbookMigration
49 typedef ::cppu::WeakImplHelper<
50 css::lang::XServiceInfo,
51 css::lang::XInitialization,
52 css::task::XJob > WordbookMigration_BASE;
54 class WordbookMigration : public WordbookMigration_BASE
56 private:
57 ::osl::Mutex m_aMutex;
58 OUString m_sSourceDir;
60 TStringVectorPtr getFiles( const OUString& rBaseURL ) const;
61 void checkAndCreateDirectory( INetURLObject const & rDirURL );
62 void copyFiles();
64 public:
65 WordbookMigration();
66 virtual ~WordbookMigration() override;
68 // XServiceInfo
69 virtual OUString SAL_CALL getImplementationName() override;
70 virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) override;
71 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
73 // XInitialization
74 virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
76 // XJob
77 virtual css::uno::Any SAL_CALL execute(
78 const css::uno::Sequence< css::beans::NamedValue >& Arguments ) override;
82 } // namespace migration
85 #endif // _DESKTOP_AUTOCORRMIGRATION_HXX_
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */