1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 #ifndef _DESKTOP_AUTOCORRMIGRATION_HXX_
29 #define _DESKTOP_AUTOCORRMIGRATION_HXX_
30 
31 #include "misc.hxx"
32 #include <com/sun/star/lang/XServiceInfo.hpp>
33 #include <com/sun/star/lang/XInitialization.hpp>
34 #include <com/sun/star/task/XJob.hpp>
35 #include <com/sun/star/uno/XComponentContext.hpp>
36 #include <cppuhelper/implbase3.hxx>
37 #include <osl/mutex.hxx>
38 #include <osl/file.hxx>
39 
40 
41 class INetURLObject;
42 
43 
44 //.........................................................................
45 namespace migration
46 {
47 //.........................................................................
48 
49     ::rtl::OUString SAL_CALL AutocorrectionMigration_getImplementationName();
50     ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL AutocorrectionMigration_getSupportedServiceNames();
51     ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL AutocorrectionMigration_create(
52         ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & xContext )
53         SAL_THROW( (::com::sun::star::uno::Exception) );
54 
55 
56     // =============================================================================
57     // class AutocorrectionMigration
58     // =============================================================================
59 
60     typedef ::cppu::WeakImplHelper3<
61         ::com::sun::star::lang::XServiceInfo,
62         ::com::sun::star::lang::XInitialization,
63         ::com::sun::star::task::XJob > AutocorrectionMigration_BASE;
64 
65     class AutocorrectionMigration : public AutocorrectionMigration_BASE
66     {
67     private:
68         ::osl::Mutex            m_aMutex;
69         ::rtl::OUString         m_sSourceDir;
70 
71         TStringVectorPtr        getFiles( const ::rtl::OUString& rBaseURL ) const;
72         ::osl::FileBase::RC     checkAndCreateDirectory( INetURLObject& rDirURL );
73         void                    copyFiles();
74 
75     public:
76         AutocorrectionMigration();
77         virtual ~AutocorrectionMigration();
78 
79         // XServiceInfo
80         virtual ::rtl::OUString SAL_CALL getImplementationName()
81             throw (::com::sun::star::uno::RuntimeException);
82         virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName )
83             throw (::com::sun::star::uno::RuntimeException);
84         virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames()
85             throw (::com::sun::star::uno::RuntimeException);
86 
87         // XInitialization
88         virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments )
89             throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
90 
91         // XJob
92         virtual ::com::sun::star::uno::Any SAL_CALL execute(
93             const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& Arguments )
94             throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::Exception,
95                 ::com::sun::star::uno::RuntimeException);
96     };
97 
98 //.........................................................................
99 }	// namespace migration
100 //.........................................................................
101 
102 #endif // _DESKTOP_AUTOCORRMIGRATION_HXX_
103