1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
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 .
18  */
19 
20 #ifndef INCLUDED_DESKTOP_SOURCE_MIGRATION_SERVICES_BASICMIGRATION_HXX
21 #define INCLUDED_DESKTOP_SOURCE_MIGRATION_SERVICES_BASICMIGRATION_HXX
22 
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>
31 
32 
33 class INetURLObject;
34 
35 
36 namespace migration
37 {
38 
39 
40     OUString BasicMigration_getImplementationName();
41     css::uno::Sequence< OUString > BasicMigration_getSupportedServiceNames();
42     css::uno::Reference< css::uno::XInterface > BasicMigration_create(
43         css::uno::Reference< css::uno::XComponentContext > const & xContext );
44 
45 
46     // class BasicMigration
47 
48 
49     typedef ::cppu::WeakImplHelper<
50         css::lang::XServiceInfo,
51         css::lang::XInitialization,
52         css::task::XJob > BasicMigration_BASE;
53 
54     class BasicMigration : public BasicMigration_BASE
55     {
56     private:
57         ::osl::Mutex            m_aMutex;
58         OUString         m_sSourceDir;
59 
60         TStringVectorPtr        getFiles( const OUString& rBaseURL ) const;
61         void                    checkAndCreateDirectory( INetURLObject const & rDirURL );
62         void                    copyFiles();
63 
64     public:
65         BasicMigration();
66         virtual ~BasicMigration() override;
67 
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;
72 
73         // XInitialization
74         virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
75 
76         // XJob
77         virtual css::uno::Any SAL_CALL execute(
78             const css::uno::Sequence< css::beans::NamedValue >& Arguments ) override;
79     };
80 
81 
82 }   // namespace migration
83 
84 
85 #endif // INCLUDED_DESKTOP_SOURCE_MIGRATION_SERVICES_BASICMIGRATION_HXX
86 
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
88