1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_desktop.hxx"
30*cdf0e10cSrcweir #include "basicmigration.hxx"
31*cdf0e10cSrcweir #include <tools/urlobj.hxx>
32*cdf0e10cSrcweir #include <unotools/bootstrap.hxx>
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir 
35*cdf0e10cSrcweir using namespace ::com::sun::star;
36*cdf0e10cSrcweir using namespace ::com::sun::star::uno;
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir //.........................................................................
40*cdf0e10cSrcweir namespace migration
41*cdf0e10cSrcweir {
42*cdf0e10cSrcweir //.........................................................................
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir 
45*cdf0e10cSrcweir     static ::rtl::OUString sSourceUserBasic = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/user/basic" ) );
46*cdf0e10cSrcweir     static ::rtl::OUString sTargetUserBasic = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/user/__basic_80" ) );
47*cdf0e10cSrcweir 
48*cdf0e10cSrcweir 
49*cdf0e10cSrcweir     // =============================================================================
50*cdf0e10cSrcweir     // component operations
51*cdf0e10cSrcweir     // =============================================================================
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir     ::rtl::OUString BasicMigration_getImplementationName()
54*cdf0e10cSrcweir     {
55*cdf0e10cSrcweir         static ::rtl::OUString* pImplName = 0;
56*cdf0e10cSrcweir 	    if ( !pImplName )
57*cdf0e10cSrcweir 	    {
58*cdf0e10cSrcweir             ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
59*cdf0e10cSrcweir             if ( !pImplName )
60*cdf0e10cSrcweir 		    {
61*cdf0e10cSrcweir                 static ::rtl::OUString aImplName( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.desktop.migration.Basic" ) );
62*cdf0e10cSrcweir 			    pImplName = &aImplName;
63*cdf0e10cSrcweir 		    }
64*cdf0e10cSrcweir 	    }
65*cdf0e10cSrcweir 	    return *pImplName;
66*cdf0e10cSrcweir     }
67*cdf0e10cSrcweir 
68*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
69*cdf0e10cSrcweir 
70*cdf0e10cSrcweir     Sequence< ::rtl::OUString > BasicMigration_getSupportedServiceNames()
71*cdf0e10cSrcweir     {
72*cdf0e10cSrcweir         static Sequence< ::rtl::OUString >* pNames = 0;
73*cdf0e10cSrcweir 	    if ( !pNames )
74*cdf0e10cSrcweir 	    {
75*cdf0e10cSrcweir             ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
76*cdf0e10cSrcweir 		    if ( !pNames )
77*cdf0e10cSrcweir 		    {
78*cdf0e10cSrcweir                 static Sequence< ::rtl::OUString > aNames(1);
79*cdf0e10cSrcweir                 aNames.getArray()[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.migration.Basic" ) );
80*cdf0e10cSrcweir                 pNames = &aNames;
81*cdf0e10cSrcweir 		    }
82*cdf0e10cSrcweir 	    }
83*cdf0e10cSrcweir 	    return *pNames;
84*cdf0e10cSrcweir     }
85*cdf0e10cSrcweir 
86*cdf0e10cSrcweir     // =============================================================================
87*cdf0e10cSrcweir     // BasicMigration
88*cdf0e10cSrcweir     // =============================================================================
89*cdf0e10cSrcweir 
90*cdf0e10cSrcweir     BasicMigration::BasicMigration()
91*cdf0e10cSrcweir     {
92*cdf0e10cSrcweir     }
93*cdf0e10cSrcweir 
94*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
95*cdf0e10cSrcweir 
96*cdf0e10cSrcweir     BasicMigration::~BasicMigration()
97*cdf0e10cSrcweir     {
98*cdf0e10cSrcweir     }
99*cdf0e10cSrcweir 
100*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
101*cdf0e10cSrcweir 
102*cdf0e10cSrcweir     TStringVectorPtr BasicMigration::getFiles( const ::rtl::OUString& rBaseURL ) const
103*cdf0e10cSrcweir     {
104*cdf0e10cSrcweir         TStringVectorPtr aResult( new TStringVector );
105*cdf0e10cSrcweir         ::osl::Directory aDir( rBaseURL);
106*cdf0e10cSrcweir 
107*cdf0e10cSrcweir         if ( aDir.open() == ::osl::FileBase::E_None )
108*cdf0e10cSrcweir         {
109*cdf0e10cSrcweir             // iterate over directory content
110*cdf0e10cSrcweir             TStringVector aSubDirs;
111*cdf0e10cSrcweir             ::osl::DirectoryItem aItem;
112*cdf0e10cSrcweir             while ( aDir.getNextItem( aItem ) == ::osl::FileBase::E_None )
113*cdf0e10cSrcweir             {
114*cdf0e10cSrcweir                 ::osl::FileStatus aFileStatus( FileStatusMask_Type | FileStatusMask_FileURL );
115*cdf0e10cSrcweir                 if ( aItem.getFileStatus( aFileStatus ) == ::osl::FileBase::E_None )
116*cdf0e10cSrcweir                 {
117*cdf0e10cSrcweir                     if ( aFileStatus.getFileType() == ::osl::FileStatus::Directory )
118*cdf0e10cSrcweir                         aSubDirs.push_back( aFileStatus.getFileURL() );
119*cdf0e10cSrcweir                     else
120*cdf0e10cSrcweir                         aResult->push_back( aFileStatus.getFileURL() );
121*cdf0e10cSrcweir                 }
122*cdf0e10cSrcweir             }
123*cdf0e10cSrcweir 
124*cdf0e10cSrcweir             // iterate recursive over subfolders
125*cdf0e10cSrcweir             TStringVector::const_iterator aI = aSubDirs.begin();
126*cdf0e10cSrcweir             while ( aI != aSubDirs.end() )
127*cdf0e10cSrcweir             {
128*cdf0e10cSrcweir                 TStringVectorPtr aSubResult = getFiles( *aI );
129*cdf0e10cSrcweir                 aResult->insert( aResult->end(), aSubResult->begin(), aSubResult->end() );
130*cdf0e10cSrcweir                 ++aI;
131*cdf0e10cSrcweir             }
132*cdf0e10cSrcweir         }
133*cdf0e10cSrcweir 
134*cdf0e10cSrcweir         return aResult;
135*cdf0e10cSrcweir     }
136*cdf0e10cSrcweir 
137*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
138*cdf0e10cSrcweir 
139*cdf0e10cSrcweir     ::osl::FileBase::RC BasicMigration::checkAndCreateDirectory( INetURLObject& rDirURL )
140*cdf0e10cSrcweir     {
141*cdf0e10cSrcweir         ::osl::FileBase::RC aResult = ::osl::Directory::create( rDirURL.GetMainURL( INetURLObject::DECODE_TO_IURI ) );
142*cdf0e10cSrcweir         if ( aResult == ::osl::FileBase::E_NOENT )
143*cdf0e10cSrcweir         {
144*cdf0e10cSrcweir             INetURLObject aBaseURL( rDirURL );
145*cdf0e10cSrcweir             aBaseURL.removeSegment();
146*cdf0e10cSrcweir             checkAndCreateDirectory( aBaseURL );
147*cdf0e10cSrcweir             return ::osl::Directory::create( rDirURL.GetMainURL( INetURLObject::DECODE_TO_IURI ) );
148*cdf0e10cSrcweir         }
149*cdf0e10cSrcweir         else
150*cdf0e10cSrcweir         {
151*cdf0e10cSrcweir             return aResult;
152*cdf0e10cSrcweir         }
153*cdf0e10cSrcweir     }
154*cdf0e10cSrcweir 
155*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
156*cdf0e10cSrcweir 
157*cdf0e10cSrcweir     void BasicMigration::copyFiles()
158*cdf0e10cSrcweir     {
159*cdf0e10cSrcweir         ::rtl::OUString sTargetDir;
160*cdf0e10cSrcweir         ::utl::Bootstrap::PathStatus aStatus = ::utl::Bootstrap::locateUserInstallation( sTargetDir );
161*cdf0e10cSrcweir         if ( aStatus == ::utl::Bootstrap::PATH_EXISTS )
162*cdf0e10cSrcweir         {
163*cdf0e10cSrcweir             sTargetDir += sTargetUserBasic;
164*cdf0e10cSrcweir             TStringVectorPtr aFileList = getFiles( m_sSourceDir );
165*cdf0e10cSrcweir             TStringVector::const_iterator aI = aFileList->begin();
166*cdf0e10cSrcweir             while ( aI != aFileList->end() )
167*cdf0e10cSrcweir             {
168*cdf0e10cSrcweir                 ::rtl::OUString sLocalName = aI->copy( m_sSourceDir.getLength() );
169*cdf0e10cSrcweir                 ::rtl::OUString sTargetName = sTargetDir + sLocalName;
170*cdf0e10cSrcweir                 INetURLObject aURL( sTargetName );
171*cdf0e10cSrcweir                 aURL.removeSegment();
172*cdf0e10cSrcweir                 checkAndCreateDirectory( aURL );
173*cdf0e10cSrcweir                 ::osl::FileBase::RC aResult = ::osl::File::copy( *aI, sTargetName );
174*cdf0e10cSrcweir                 if ( aResult != ::osl::FileBase::E_None )
175*cdf0e10cSrcweir                 {
176*cdf0e10cSrcweir                     ::rtl::OString aMsg( "BasicMigration::copyFiles: cannot copy " );
177*cdf0e10cSrcweir                     aMsg += ::rtl::OUStringToOString( *aI, RTL_TEXTENCODING_UTF8 ) + " to "
178*cdf0e10cSrcweir                          +  ::rtl::OUStringToOString( sTargetName, RTL_TEXTENCODING_UTF8 );
179*cdf0e10cSrcweir                     OSL_ENSURE( sal_False, aMsg.getStr() );
180*cdf0e10cSrcweir                 }
181*cdf0e10cSrcweir                 ++aI;
182*cdf0e10cSrcweir             }
183*cdf0e10cSrcweir         }
184*cdf0e10cSrcweir         else
185*cdf0e10cSrcweir         {
186*cdf0e10cSrcweir             OSL_ENSURE( sal_False, "BasicMigration::copyFiles: no user installation!" );
187*cdf0e10cSrcweir         }
188*cdf0e10cSrcweir     }
189*cdf0e10cSrcweir 
190*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
191*cdf0e10cSrcweir     // XServiceInfo
192*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
193*cdf0e10cSrcweir 
194*cdf0e10cSrcweir     ::rtl::OUString BasicMigration::getImplementationName() throw (RuntimeException)
195*cdf0e10cSrcweir     {
196*cdf0e10cSrcweir         return BasicMigration_getImplementationName();
197*cdf0e10cSrcweir     }
198*cdf0e10cSrcweir 
199*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
200*cdf0e10cSrcweir 
201*cdf0e10cSrcweir     sal_Bool BasicMigration::supportsService( const ::rtl::OUString& rServiceName ) throw (RuntimeException)
202*cdf0e10cSrcweir     {
203*cdf0e10cSrcweir 	    Sequence< ::rtl::OUString > aNames( getSupportedServiceNames() );
204*cdf0e10cSrcweir 	    const ::rtl::OUString* pNames = aNames.getConstArray();
205*cdf0e10cSrcweir 	    const ::rtl::OUString* pEnd = pNames + aNames.getLength();
206*cdf0e10cSrcweir 	    for ( ; pNames != pEnd && !pNames->equals( rServiceName ); ++pNames )
207*cdf0e10cSrcweir 		    ;
208*cdf0e10cSrcweir 
209*cdf0e10cSrcweir 	    return pNames != pEnd;
210*cdf0e10cSrcweir     }
211*cdf0e10cSrcweir 
212*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
213*cdf0e10cSrcweir 
214*cdf0e10cSrcweir     Sequence< ::rtl::OUString > BasicMigration::getSupportedServiceNames() throw (RuntimeException)
215*cdf0e10cSrcweir     {
216*cdf0e10cSrcweir         return BasicMigration_getSupportedServiceNames();
217*cdf0e10cSrcweir     }
218*cdf0e10cSrcweir 
219*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
220*cdf0e10cSrcweir     // XInitialization
221*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
222*cdf0e10cSrcweir 
223*cdf0e10cSrcweir     void BasicMigration::initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException)
224*cdf0e10cSrcweir     {
225*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( m_aMutex );
226*cdf0e10cSrcweir 
227*cdf0e10cSrcweir         const Any* pIter = aArguments.getConstArray();
228*cdf0e10cSrcweir         const Any* pEnd = pIter + aArguments.getLength();
229*cdf0e10cSrcweir         for ( ; pIter != pEnd ; ++pIter )
230*cdf0e10cSrcweir         {
231*cdf0e10cSrcweir             beans::NamedValue aValue;
232*cdf0e10cSrcweir             *pIter >>= aValue;
233*cdf0e10cSrcweir             if ( aValue.Name.equalsAscii( "UserData" ) )
234*cdf0e10cSrcweir             {
235*cdf0e10cSrcweir                 if ( !(aValue.Value >>= m_sSourceDir) )
236*cdf0e10cSrcweir                 {
237*cdf0e10cSrcweir                     OSL_ENSURE( false, "BasicMigration::initialize: argument UserData has wrong type!" );
238*cdf0e10cSrcweir                 }
239*cdf0e10cSrcweir                 m_sSourceDir += sSourceUserBasic;
240*cdf0e10cSrcweir                 break;
241*cdf0e10cSrcweir             }
242*cdf0e10cSrcweir         }
243*cdf0e10cSrcweir     }
244*cdf0e10cSrcweir 
245*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
246*cdf0e10cSrcweir     // XJob
247*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
248*cdf0e10cSrcweir 
249*cdf0e10cSrcweir     Any BasicMigration::execute( const Sequence< beans::NamedValue >& )
250*cdf0e10cSrcweir         throw (lang::IllegalArgumentException, Exception, RuntimeException)
251*cdf0e10cSrcweir     {
252*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( m_aMutex );
253*cdf0e10cSrcweir 
254*cdf0e10cSrcweir         copyFiles();
255*cdf0e10cSrcweir 
256*cdf0e10cSrcweir         return Any();
257*cdf0e10cSrcweir     }
258*cdf0e10cSrcweir 
259*cdf0e10cSrcweir     // =============================================================================
260*cdf0e10cSrcweir     // component operations
261*cdf0e10cSrcweir     // =============================================================================
262*cdf0e10cSrcweir 
263*cdf0e10cSrcweir     Reference< XInterface > SAL_CALL BasicMigration_create(
264*cdf0e10cSrcweir         Reference< XComponentContext > const & )
265*cdf0e10cSrcweir         SAL_THROW( () )
266*cdf0e10cSrcweir     {
267*cdf0e10cSrcweir         return static_cast< lang::XTypeProvider * >( new BasicMigration() );
268*cdf0e10cSrcweir     }
269*cdf0e10cSrcweir 
270*cdf0e10cSrcweir     // -----------------------------------------------------------------------------
271*cdf0e10cSrcweir 
272*cdf0e10cSrcweir //.........................................................................
273*cdf0e10cSrcweir }	// namespace migration
274*cdf0e10cSrcweir //.........................................................................
275