Line data Source code
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 : #include "basicmigration.hxx"
21 : #include <tools/urlobj.hxx>
22 : #include <unotools/bootstrap.hxx>
23 :
24 :
25 : using namespace ::com::sun::star;
26 : using namespace ::com::sun::star::uno;
27 :
28 :
29 : //.........................................................................
30 : namespace migration
31 : {
32 : //.........................................................................
33 :
34 :
35 : #define sSourceUserBasic ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("/user/basic"))
36 : #define sTargetUserBasic ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("/user/__basic_80"))
37 :
38 : // =============================================================================
39 : // component operations
40 : // =============================================================================
41 :
42 0 : ::rtl::OUString BasicMigration_getImplementationName()
43 : {
44 0 : return ::rtl::OUString (RTL_CONSTASCII_USTRINGPARAM("com.sun.star.comp.desktop.migration.Basic"));
45 : }
46 :
47 : // -----------------------------------------------------------------------------
48 :
49 0 : Sequence< ::rtl::OUString > BasicMigration_getSupportedServiceNames()
50 : {
51 0 : Sequence< ::rtl::OUString > aNames(1);
52 0 : aNames.getArray()[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.migration.Basic" ) );
53 0 : return aNames;
54 : }
55 :
56 : // =============================================================================
57 : // BasicMigration
58 : // =============================================================================
59 :
60 0 : BasicMigration::BasicMigration()
61 : {
62 0 : }
63 :
64 : // -----------------------------------------------------------------------------
65 :
66 0 : BasicMigration::~BasicMigration()
67 : {
68 0 : }
69 :
70 : // -----------------------------------------------------------------------------
71 :
72 0 : TStringVectorPtr BasicMigration::getFiles( const ::rtl::OUString& rBaseURL ) const
73 : {
74 0 : TStringVectorPtr aResult( new TStringVector );
75 0 : ::osl::Directory aDir( rBaseURL);
76 :
77 0 : if ( aDir.open() == ::osl::FileBase::E_None )
78 : {
79 : // iterate over directory content
80 0 : TStringVector aSubDirs;
81 0 : ::osl::DirectoryItem aItem;
82 0 : while ( aDir.getNextItem( aItem ) == ::osl::FileBase::E_None )
83 : {
84 0 : ::osl::FileStatus aFileStatus( osl_FileStatus_Mask_Type | osl_FileStatus_Mask_FileURL );
85 0 : if ( aItem.getFileStatus( aFileStatus ) == ::osl::FileBase::E_None )
86 : {
87 0 : if ( aFileStatus.getFileType() == ::osl::FileStatus::Directory )
88 0 : aSubDirs.push_back( aFileStatus.getFileURL() );
89 : else
90 0 : aResult->push_back( aFileStatus.getFileURL() );
91 : }
92 0 : }
93 :
94 : // iterate recursive over subfolders
95 0 : TStringVector::const_iterator aI = aSubDirs.begin();
96 0 : while ( aI != aSubDirs.end() )
97 : {
98 0 : TStringVectorPtr aSubResult = getFiles( *aI );
99 0 : aResult->insert( aResult->end(), aSubResult->begin(), aSubResult->end() );
100 0 : ++aI;
101 0 : }
102 : }
103 :
104 0 : return aResult;
105 : }
106 :
107 : // -----------------------------------------------------------------------------
108 :
109 0 : ::osl::FileBase::RC BasicMigration::checkAndCreateDirectory( INetURLObject& rDirURL )
110 : {
111 0 : ::osl::FileBase::RC aResult = ::osl::Directory::create( rDirURL.GetMainURL( INetURLObject::DECODE_TO_IURI ) );
112 0 : if ( aResult == ::osl::FileBase::E_NOENT )
113 : {
114 0 : INetURLObject aBaseURL( rDirURL );
115 0 : aBaseURL.removeSegment();
116 0 : checkAndCreateDirectory( aBaseURL );
117 0 : return ::osl::Directory::create( rDirURL.GetMainURL( INetURLObject::DECODE_TO_IURI ) );
118 : }
119 : else
120 : {
121 0 : return aResult;
122 : }
123 : }
124 :
125 : // -----------------------------------------------------------------------------
126 :
127 0 : void BasicMigration::copyFiles()
128 : {
129 0 : ::rtl::OUString sTargetDir;
130 0 : ::utl::Bootstrap::PathStatus aStatus = ::utl::Bootstrap::locateUserInstallation( sTargetDir );
131 0 : if ( aStatus == ::utl::Bootstrap::PATH_EXISTS )
132 : {
133 0 : sTargetDir += sTargetUserBasic;
134 0 : TStringVectorPtr aFileList = getFiles( m_sSourceDir );
135 0 : TStringVector::const_iterator aI = aFileList->begin();
136 0 : while ( aI != aFileList->end() )
137 : {
138 0 : ::rtl::OUString sLocalName = aI->copy( m_sSourceDir.getLength() );
139 0 : ::rtl::OUString sTargetName = sTargetDir + sLocalName;
140 0 : INetURLObject aURL( sTargetName );
141 0 : aURL.removeSegment();
142 0 : checkAndCreateDirectory( aURL );
143 0 : ::osl::FileBase::RC aResult = ::osl::File::copy( *aI, sTargetName );
144 0 : if ( aResult != ::osl::FileBase::E_None )
145 : {
146 0 : ::rtl::OString aMsg( "BasicMigration::copyFiles: cannot copy " );
147 0 : aMsg += ::rtl::OUStringToOString( *aI, RTL_TEXTENCODING_UTF8 ) + " to "
148 0 : + ::rtl::OUStringToOString( sTargetName, RTL_TEXTENCODING_UTF8 );
149 0 : OSL_FAIL( aMsg.getStr() );
150 : }
151 0 : ++aI;
152 0 : }
153 : }
154 : else
155 : {
156 : OSL_FAIL( "BasicMigration::copyFiles: no user installation!" );
157 0 : }
158 0 : }
159 :
160 : // -----------------------------------------------------------------------------
161 : // XServiceInfo
162 : // -----------------------------------------------------------------------------
163 :
164 0 : ::rtl::OUString BasicMigration::getImplementationName() throw (RuntimeException)
165 : {
166 0 : return BasicMigration_getImplementationName();
167 : }
168 :
169 : // -----------------------------------------------------------------------------
170 :
171 0 : sal_Bool BasicMigration::supportsService( const ::rtl::OUString& rServiceName ) throw (RuntimeException)
172 : {
173 0 : Sequence< ::rtl::OUString > aNames( getSupportedServiceNames() );
174 0 : const ::rtl::OUString* pNames = aNames.getConstArray();
175 0 : const ::rtl::OUString* pEnd = pNames + aNames.getLength();
176 0 : for ( ; pNames != pEnd && !pNames->equals( rServiceName ); ++pNames )
177 : ;
178 :
179 0 : return pNames != pEnd;
180 : }
181 :
182 : // -----------------------------------------------------------------------------
183 :
184 0 : Sequence< ::rtl::OUString > BasicMigration::getSupportedServiceNames() throw (RuntimeException)
185 : {
186 0 : return BasicMigration_getSupportedServiceNames();
187 : }
188 :
189 : // -----------------------------------------------------------------------------
190 : // XInitialization
191 : // -----------------------------------------------------------------------------
192 :
193 0 : void BasicMigration::initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException)
194 : {
195 0 : ::osl::MutexGuard aGuard( m_aMutex );
196 :
197 0 : const Any* pIter = aArguments.getConstArray();
198 0 : const Any* pEnd = pIter + aArguments.getLength();
199 0 : for ( ; pIter != pEnd ; ++pIter )
200 : {
201 0 : beans::NamedValue aValue;
202 0 : *pIter >>= aValue;
203 0 : if ( aValue.Name == "UserData" )
204 : {
205 0 : if ( !(aValue.Value >>= m_sSourceDir) )
206 : {
207 : OSL_FAIL( "BasicMigration::initialize: argument UserData has wrong type!" );
208 : }
209 0 : m_sSourceDir += sSourceUserBasic;
210 : break;
211 : }
212 0 : }
213 0 : }
214 :
215 : // -----------------------------------------------------------------------------
216 : // XJob
217 : // -----------------------------------------------------------------------------
218 :
219 0 : Any BasicMigration::execute( const Sequence< beans::NamedValue >& )
220 : throw (lang::IllegalArgumentException, Exception, RuntimeException)
221 : {
222 0 : ::osl::MutexGuard aGuard( m_aMutex );
223 :
224 0 : copyFiles();
225 :
226 0 : return Any();
227 : }
228 :
229 : // =============================================================================
230 : // component operations
231 : // =============================================================================
232 :
233 0 : Reference< XInterface > SAL_CALL BasicMigration_create(
234 : Reference< XComponentContext > const & )
235 : SAL_THROW(())
236 : {
237 0 : return static_cast< lang::XTypeProvider * >( new BasicMigration() );
238 : }
239 :
240 : // -----------------------------------------------------------------------------
241 :
242 : //.........................................................................
243 : } // namespace migration
244 : //.........................................................................
245 :
246 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|