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 "wordbookmigration.hxx"
21 : #include <cppuhelper/supportsservice.hxx>
22 : #include <tools/urlobj.hxx>
23 : #include <unotools/bootstrap.hxx>
24 : #include <unotools/ucbstreamhelper.hxx>
25 :
26 : using namespace ::com::sun::star;
27 : using namespace ::com::sun::star::uno;
28 :
29 :
30 :
31 : namespace migration
32 : {
33 :
34 :
35 :
36 0 : static OUString sSourceSubDir( "/user/wordbook" );
37 0 : static OUString sTargetSubDir( "/user/wordbook" );
38 :
39 :
40 :
41 : // component operations
42 :
43 :
44 0 : OUString WordbookMigration_getImplementationName()
45 : {
46 : static OUString* pImplName = 0;
47 0 : if ( !pImplName )
48 : {
49 0 : ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
50 0 : if ( !pImplName )
51 : {
52 0 : static OUString aImplName( "com.sun.star.comp.desktop.migration.Wordbooks" );
53 0 : pImplName = &aImplName;
54 0 : }
55 : }
56 0 : return *pImplName;
57 : }
58 :
59 :
60 :
61 0 : Sequence< OUString > WordbookMigration_getSupportedServiceNames()
62 : {
63 : static Sequence< OUString >* pNames = 0;
64 0 : if ( !pNames )
65 : {
66 0 : ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
67 0 : if ( !pNames )
68 : {
69 0 : static Sequence< OUString > aNames(1);
70 0 : aNames.getArray()[0] = "com.sun.star.migration.Wordbooks";
71 0 : pNames = &aNames;
72 0 : }
73 : }
74 0 : return *pNames;
75 : }
76 :
77 :
78 : // WordbookMigration
79 :
80 :
81 0 : WordbookMigration::WordbookMigration()
82 : {
83 0 : }
84 :
85 :
86 :
87 0 : WordbookMigration::~WordbookMigration()
88 : {
89 0 : }
90 :
91 :
92 :
93 0 : TStringVectorPtr WordbookMigration::getFiles( const OUString& rBaseURL ) const
94 : {
95 0 : TStringVectorPtr aResult( new TStringVector );
96 0 : ::osl::Directory aDir( rBaseURL);
97 :
98 0 : if ( aDir.open() == ::osl::FileBase::E_None )
99 : {
100 : // iterate over directory content
101 0 : TStringVector aSubDirs;
102 0 : ::osl::DirectoryItem aItem;
103 0 : while ( aDir.getNextItem( aItem ) == ::osl::FileBase::E_None )
104 : {
105 0 : ::osl::FileStatus aFileStatus( osl_FileStatus_Mask_Type | osl_FileStatus_Mask_FileURL );
106 0 : if ( aItem.getFileStatus( aFileStatus ) == ::osl::FileBase::E_None )
107 : {
108 0 : if ( aFileStatus.getFileType() == ::osl::FileStatus::Directory )
109 0 : aSubDirs.push_back( aFileStatus.getFileURL() );
110 : else
111 0 : aResult->push_back( aFileStatus.getFileURL() );
112 : }
113 0 : }
114 :
115 : // iterate recursive over subfolders
116 0 : TStringVector::const_iterator aI = aSubDirs.begin();
117 0 : while ( aI != aSubDirs.end() )
118 : {
119 0 : TStringVectorPtr aSubResult = getFiles( *aI );
120 0 : aResult->insert( aResult->end(), aSubResult->begin(), aSubResult->end() );
121 0 : ++aI;
122 0 : }
123 : }
124 :
125 0 : return aResult;
126 : }
127 :
128 :
129 :
130 0 : ::osl::FileBase::RC WordbookMigration::checkAndCreateDirectory( INetURLObject& rDirURL )
131 : {
132 0 : ::osl::FileBase::RC aResult = ::osl::Directory::create( rDirURL.GetMainURL( INetURLObject::DECODE_TO_IURI ) );
133 0 : if ( aResult == ::osl::FileBase::E_NOENT )
134 : {
135 0 : INetURLObject aBaseURL( rDirURL );
136 0 : aBaseURL.removeSegment();
137 0 : checkAndCreateDirectory( aBaseURL );
138 0 : return ::osl::Directory::create( rDirURL.GetMainURL( INetURLObject::DECODE_TO_IURI ) );
139 : }
140 : else
141 : {
142 0 : return aResult;
143 : }
144 : }
145 :
146 : #define MAX_HEADER_LENGTH 16
147 0 : bool IsUserWordbook( const OUString& rFile )
148 : {
149 : static const sal_Char* pVerStr2 = "WBSWG2";
150 : static const sal_Char* pVerStr5 = "WBSWG5";
151 : static const sal_Char* pVerStr6 = "WBSWG6";
152 : static const sal_Char* pVerOOo7 = "OOoUserDict1";
153 :
154 0 : bool bRet = false;
155 0 : SvStream* pStream = ::utl::UcbStreamHelper::CreateStream( OUString(rFile), STREAM_STD_READ );
156 0 : if ( pStream && !pStream->GetError() )
157 : {
158 0 : sal_Size nSniffPos = pStream->Tell();
159 0 : static sal_Size nVerOOo7Len = sal::static_int_cast< sal_Size >(strlen( pVerOOo7 ));
160 : sal_Char pMagicHeader[MAX_HEADER_LENGTH];
161 0 : pMagicHeader[ nVerOOo7Len ] = '\0';
162 0 : if ((pStream->Read((void *) pMagicHeader, nVerOOo7Len) == nVerOOo7Len))
163 : {
164 0 : if ( !strcmp(pMagicHeader, pVerOOo7) )
165 0 : bRet = true;
166 : else
167 : {
168 : sal_uInt16 nLen;
169 0 : pStream->Seek (nSniffPos);
170 0 : pStream->ReadUInt16( nLen );
171 0 : if ( nLen < MAX_HEADER_LENGTH )
172 : {
173 0 : pStream->Read(pMagicHeader, nLen);
174 0 : pMagicHeader[nLen] = '\0';
175 0 : if ( !strcmp(pMagicHeader, pVerStr2)
176 0 : || !strcmp(pMagicHeader, pVerStr5)
177 0 : || !strcmp(pMagicHeader, pVerStr6) )
178 0 : bRet = true;
179 : }
180 : }
181 : }
182 : }
183 :
184 0 : delete pStream;
185 0 : return bRet;
186 : }
187 :
188 :
189 :
190 :
191 0 : void WordbookMigration::copyFiles()
192 : {
193 0 : OUString sTargetDir;
194 0 : ::utl::Bootstrap::PathStatus aStatus = ::utl::Bootstrap::locateUserInstallation( sTargetDir );
195 0 : if ( aStatus == ::utl::Bootstrap::PATH_EXISTS )
196 : {
197 0 : sTargetDir += sTargetSubDir;
198 0 : TStringVectorPtr aFileList = getFiles( m_sSourceDir );
199 0 : TStringVector::const_iterator aI = aFileList->begin();
200 0 : while ( aI != aFileList->end() )
201 : {
202 0 : if (IsUserWordbook(*aI) )
203 : {
204 0 : OUString sSourceLocalName = aI->copy( m_sSourceDir.getLength() );
205 0 : OUString sTargetName = sTargetDir + sSourceLocalName;
206 0 : INetURLObject aURL( sTargetName );
207 0 : aURL.removeSegment();
208 0 : checkAndCreateDirectory( aURL );
209 0 : ::osl::FileBase::RC aResult = ::osl::File::copy( *aI, sTargetName );
210 0 : if ( aResult != ::osl::FileBase::E_None )
211 : {
212 0 : OString aMsg( "WordbookMigration::copyFiles: cannot copy " );
213 0 : aMsg += OUStringToOString( *aI, RTL_TEXTENCODING_UTF8 ) + " to "
214 0 : + OUStringToOString( sTargetName, RTL_TEXTENCODING_UTF8 );
215 0 : OSL_FAIL( aMsg.getStr() );
216 0 : }
217 : }
218 0 : ++aI;
219 0 : }
220 : }
221 : else
222 : {
223 : OSL_FAIL( "WordbookMigration::copyFiles: no user installation!" );
224 0 : }
225 0 : }
226 :
227 :
228 : // XServiceInfo
229 :
230 :
231 0 : OUString WordbookMigration::getImplementationName() throw (RuntimeException, std::exception)
232 : {
233 0 : return WordbookMigration_getImplementationName();
234 : }
235 :
236 :
237 :
238 0 : sal_Bool WordbookMigration::supportsService(OUString const & ServiceName)
239 : throw (css::uno::RuntimeException, std::exception)
240 : {
241 0 : return cppu::supportsService(this, ServiceName);
242 : }
243 :
244 :
245 :
246 0 : Sequence< OUString > WordbookMigration::getSupportedServiceNames() throw (RuntimeException, std::exception)
247 : {
248 0 : return WordbookMigration_getSupportedServiceNames();
249 : }
250 :
251 :
252 : // XInitialization
253 :
254 :
255 0 : void WordbookMigration::initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException, std::exception)
256 : {
257 0 : ::osl::MutexGuard aGuard( m_aMutex );
258 :
259 0 : const Any* pIter = aArguments.getConstArray();
260 0 : const Any* pEnd = pIter + aArguments.getLength();
261 0 : for ( ; pIter != pEnd ; ++pIter )
262 : {
263 0 : beans::NamedValue aValue;
264 0 : *pIter >>= aValue;
265 0 : if ( aValue.Name == "UserData" )
266 : {
267 0 : if ( !(aValue.Value >>= m_sSourceDir) )
268 : {
269 : OSL_FAIL( "WordbookMigration::initialize: argument UserData has wrong type!" );
270 : }
271 0 : m_sSourceDir += sSourceSubDir;
272 0 : break;
273 : }
274 0 : }
275 0 : }
276 :
277 :
278 : // XJob
279 :
280 :
281 0 : Any WordbookMigration::execute( const Sequence< beans::NamedValue >& )
282 : throw (lang::IllegalArgumentException, Exception, RuntimeException, std::exception)
283 : {
284 0 : ::osl::MutexGuard aGuard( m_aMutex );
285 :
286 0 : copyFiles();
287 :
288 0 : return Any();
289 : }
290 :
291 :
292 : // component operations
293 :
294 :
295 0 : Reference< XInterface > SAL_CALL WordbookMigration_create(
296 : Reference< XComponentContext > const & )
297 : SAL_THROW(())
298 : {
299 0 : return static_cast< lang::XTypeProvider * >( new WordbookMigration() );
300 : }
301 :
302 :
303 :
304 :
305 0 : } // namespace migration
306 :
307 :
308 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|