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 :
21 : #include "configurationaccess.hxx"
22 : #include <com/sun/star/frame/XComponentLoader.hpp>
23 : #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
24 : #include <com/sun/star/configuration/theDefaultProvider.hpp>
25 : #include <com/sun/star/util/XChangesBatch.hpp>
26 : #include <com/sun/star/container/XNameContainer.hpp>
27 : #include <com/sun/star/util/theMacroExpander.hpp>
28 : #include <com/sun/star/lang/XSingleServiceFactory.hpp>
29 : #include <sal/macros.h>
30 :
31 : using namespace ::com::sun::star;
32 : using namespace ::com::sun::star::uno;
33 : using namespace ::com::sun::star::beans;
34 : using namespace ::com::sun::star::container;
35 :
36 0 : static const OUString& GetPathToConfigurationRoot (void)
37 : {
38 0 : static const OUString sPathToConfigurationRoot ("org.openoffice.Office.PresentationMinimizer");
39 0 : return sPathToConfigurationRoot;
40 : }
41 :
42 0 : void OptimizerSettings::LoadSettingsFromConfiguration( const Reference< XNameAccess >& rSettings )
43 : {
44 0 : if ( rSettings.is() )
45 : {
46 0 : const Sequence< OUString > aElements( rSettings->getElementNames() );
47 0 : for ( int i = 0; i < aElements.getLength(); i++ )
48 : {
49 : try
50 : {
51 0 : const OUString aPropertyName( aElements[ i ] );
52 0 : Any aValue( rSettings->getByName( aPropertyName ) );
53 0 : switch( TKGet( aPropertyName ) )
54 : {
55 0 : case TK_Name : aValue >>= maName; break;
56 0 : case TK_JPEGCompression : aValue >>= mbJPEGCompression; break;
57 0 : case TK_JPEGQuality : aValue >>= mnJPEGQuality; break;
58 0 : case TK_RemoveCropArea : aValue >>= mbRemoveCropArea; break;
59 0 : case TK_ImageResolution : aValue >>= mnImageResolution; break;
60 0 : case TK_EmbedLinkedGraphics : aValue >>= mbEmbedLinkedGraphics; break;
61 0 : case TK_OLEOptimization : aValue >>= mbOLEOptimization; break;
62 0 : case TK_OLEOptimizationType : aValue >>= mnOLEOptimizationType; break;
63 0 : case TK_DeleteUnusedMasterPages : aValue >>= mbDeleteUnusedMasterPages; break;
64 0 : case TK_DeleteHiddenSlides : aValue >>= mbDeleteHiddenSlides; break;
65 0 : case TK_DeleteNotesPages : aValue >>= mbDeleteNotesPages ;break;
66 0 : case TK_SaveAs : aValue >>= mbSaveAs; break;
67 : // case TK_SaveAsURL : aValue >>= maSaveAsURL; break; // URL is not saved to configuration
68 : // case TK_FilterName : aValue >>= maFilterName; break; // URL is not saved to configuration
69 0 : case TK_OpenNewDocument : aValue >>= mbOpenNewDocument; break;
70 0 : default: break;
71 0 : }
72 : }
73 0 : catch (const Exception&)
74 : {
75 : }
76 0 : }
77 : }
78 0 : }
79 :
80 0 : void OptimizerSettings::SaveSettingsToConfiguration( const Reference< XNameReplace >& rSettings )
81 : {
82 0 : if ( rSettings.is() )
83 : {
84 : OUString pNames[] = {
85 : OUString("Name"),
86 : OUString("JPEGCompression"),
87 : OUString("JPEGQuality"),
88 : OUString("RemoveCropArea"),
89 : OUString("ImageResolution"),
90 : OUString("EmbedLinkedGraphics"),
91 : OUString("OLEOptimization"),
92 : OUString("OLEOptimizationType"),
93 : OUString("DeleteUnusedMasterPages"),
94 : OUString("DeleteHiddenSlides"),
95 : OUString("DeleteNotesPages"),
96 : OUString("SaveAs"),
97 : // OUString("SaveAsURL"),
98 : // OUString("FilterName"),
99 0 : OUString("OpenNewDocument") };
100 :
101 : Any pValues[] = {
102 : Any( maName ),
103 : Any( mbJPEGCompression ),
104 : Any( mnJPEGQuality ),
105 : Any( mbRemoveCropArea ),
106 : Any( mnImageResolution ),
107 : Any( mbEmbedLinkedGraphics ),
108 : Any( mbOLEOptimization ),
109 : Any( mnOLEOptimizationType ),
110 : Any( mbDeleteUnusedMasterPages ),
111 : Any( mbDeleteHiddenSlides ),
112 : Any( mbDeleteNotesPages ),
113 : Any( mbSaveAs ),
114 : // Any( maSaveAsURL ),
115 : // Any( maFilterName ),
116 0 : Any( mbOpenNewDocument ) };
117 :
118 0 : sal_Int32 i, nCount = SAL_N_ELEMENTS( pNames );
119 :
120 0 : for ( i = 0; i < nCount; i++ )
121 : {
122 : try
123 : {
124 0 : rSettings->replaceByName( pNames[ i ], pValues[ i ] );
125 : }
126 0 : catch (const Exception&)
127 : {
128 : }
129 0 : }
130 : }
131 0 : }
132 :
133 0 : bool OptimizerSettings::operator==( const OptimizerSettings& rOptimizerSettings ) const
134 : {
135 0 : return ( rOptimizerSettings.mbJPEGCompression == mbJPEGCompression )
136 0 : && ( rOptimizerSettings.mnJPEGQuality == mnJPEGQuality )
137 0 : && ( rOptimizerSettings.mbRemoveCropArea == mbRemoveCropArea )
138 0 : && ( rOptimizerSettings.mnImageResolution == mnImageResolution )
139 0 : && ( rOptimizerSettings.mbEmbedLinkedGraphics == mbEmbedLinkedGraphics )
140 0 : && ( rOptimizerSettings.mbOLEOptimization == mbOLEOptimization )
141 0 : && ( rOptimizerSettings.mnOLEOptimizationType == mnOLEOptimizationType )
142 0 : && ( rOptimizerSettings.mbDeleteUnusedMasterPages == mbDeleteUnusedMasterPages )
143 0 : && ( rOptimizerSettings.mbDeleteHiddenSlides == mbDeleteHiddenSlides )
144 0 : && ( rOptimizerSettings.mbDeleteNotesPages == mbDeleteNotesPages );
145 : // && ( rOptimizerSettings.mbOpenNewDocument == mbOpenNewDocument );
146 : }
147 :
148 :
149 0 : ConfigurationAccess::ConfigurationAccess( const Reference< uno::XComponentContext >& rxContext, OptimizerSettings* pDefaultSettings ) :
150 0 : mxContext( rxContext )
151 : {
152 0 : LoadStrings();
153 : maSettings.push_back( pDefaultSettings ?
154 0 : *pDefaultSettings : OptimizerSettings() );
155 0 : maSettings.back().maName = "LastUsedSettings";
156 0 : LoadConfiguration();
157 0 : maInitialSettings = maSettings;
158 0 : };
159 :
160 0 : ConfigurationAccess::~ConfigurationAccess()
161 : {
162 0 : }
163 :
164 0 : OUString ConfigurationAccess::getString( const PPPOptimizerTokenEnum eToken ) const
165 : {
166 0 : std::map< PPPOptimizerTokenEnum, OUString, Compare >::const_iterator aIter( maStrings.find( eToken ) );
167 0 : return aIter != maStrings.end() ? ((*aIter).second) : OUString();
168 : }
169 :
170 0 : void ConfigurationAccess::LoadStrings()
171 : {
172 : try
173 : {
174 : do
175 : {
176 0 : Reference< XInterface > xRoot( OpenConfiguration( true ) );
177 0 : if ( !xRoot.is() )
178 0 : break;
179 0 : Reference< container::XNameAccess > xSet( GetConfigurationNode( xRoot, "Strings" ), UNO_QUERY );
180 0 : if ( xSet.is() )
181 : {
182 0 : const Sequence< OUString > aElements( xSet->getElementNames() );
183 0 : for ( int i = 0; i < aElements.getLength(); i++ )
184 : {
185 : try
186 : {
187 0 : OUString aString, aPropertyName( aElements[ i ] );
188 0 : if ( xSet->getByName( aPropertyName ) >>= aString )
189 0 : maStrings[ TKGet( aPropertyName ) ] = aString;
190 : }
191 0 : catch (const Exception&)
192 : {
193 : }
194 0 : }
195 0 : }
196 : }
197 : while( false );
198 : }
199 0 : catch (const Exception&)
200 : {
201 : }
202 0 : }
203 :
204 0 : void ConfigurationAccess::LoadConfiguration()
205 : {
206 : try
207 : {
208 : do
209 : {
210 0 : Reference< XInterface > xRoot( OpenConfiguration( true ) );
211 0 : if ( !xRoot.is() )
212 0 : break;
213 0 : Reference< container::XNameAccess > xSet( GetConfigurationNode( xRoot, "LastUsedSettings" ), UNO_QUERY );
214 0 : if ( xSet.is() )
215 : {
216 0 : OptimizerSettings& rCurrent( maSettings.front() );
217 0 : rCurrent.LoadSettingsFromConfiguration( xSet );
218 : }
219 0 : xSet = Reference< container::XNameAccess >( GetConfigurationNode( xRoot, "Settings/Templates" ), UNO_QUERY );
220 0 : if ( xSet.is() )
221 : {
222 0 : const Sequence< OUString > aElements( xSet->getElementNames() );
223 0 : for ( int i = 0; i < aElements.getLength(); i++ )
224 : {
225 : try
226 : {
227 0 : OUString aPath( "Settings/Templates/" + aElements[ i ] );
228 0 : Reference< container::XNameAccess > xTemplates( GetConfigurationNode( xRoot, aPath ), UNO_QUERY );
229 0 : if ( xTemplates.is() )
230 : {
231 0 : maSettings.push_back( OptimizerSettings() );
232 0 : maSettings.back().LoadSettingsFromConfiguration( xTemplates );
233 0 : }
234 : }
235 0 : catch (const Exception&)
236 : {
237 : }
238 0 : }
239 0 : }
240 : }
241 : while( false );
242 : }
243 0 : catch (const Exception&)
244 : {
245 : }
246 0 : }
247 :
248 0 : void ConfigurationAccess::SaveConfiguration()
249 : {
250 : try
251 : {
252 : do
253 : {
254 : int i;
255 : unsigned int k;
256 0 : Reference<util::XChangesBatch> xRoot( OpenConfiguration( false ), UNO_QUERY_THROW );
257 :
258 : // storing the last used settings
259 0 : Reference< container::XNameReplace > xSet( GetConfigurationNode( xRoot, "LastUsedSettings" ), UNO_QUERY_THROW );
260 0 : OptimizerSettings& rCurrent( maSettings.front() );
261 0 : rCurrent.SaveSettingsToConfiguration( xSet );
262 :
263 : // updating template elements
264 0 : xSet = Reference< container::XNameReplace >( GetConfigurationNode( xRoot, "Settings/Templates" ), UNO_QUERY_THROW );
265 0 : Reference< container::XNameContainer > xNameContainer( xSet, UNO_QUERY_THROW );
266 :
267 0 : const Sequence< OUString > aElements( xSet->getElementNames() );
268 0 : for( i = 0; i < aElements.getLength(); i++ )
269 0 : xNameContainer->removeByName( aElements[ i ] );
270 :
271 0 : for( k = 1; k < maSettings.size(); k++ )
272 : {
273 0 : OptimizerSettings& rSettings( maSettings[ k ] );
274 0 : OUString aElementName( "Template" + OUString::number( k ) );
275 0 : Reference< lang::XSingleServiceFactory > xChildFactory ( xSet, UNO_QUERY_THROW );
276 0 : Reference< container::XNameReplace > xChild( xChildFactory->createInstance(), UNO_QUERY_THROW );
277 0 : xNameContainer->insertByName( aElementName, Any( xChild ) );
278 :
279 0 : OUString aPath( "Settings/Templates/" + aElementName );
280 0 : Reference< container::XNameReplace > xTemplates( GetConfigurationNode( xRoot, aPath ), UNO_QUERY );
281 0 : rSettings.SaveSettingsToConfiguration( xTemplates );
282 0 : }
283 0 : xRoot->commitChanges();
284 : }
285 : while( false );
286 : }
287 0 : catch (const Exception&)
288 : {
289 : }
290 0 : }
291 :
292 0 : Reference< XInterface > ConfigurationAccess::OpenConfiguration( bool bReadOnly )
293 : {
294 0 : Reference< XInterface > xRoot;
295 : try
296 : {
297 0 : Reference< lang::XMultiServiceFactory > xProvider = configuration::theDefaultProvider::get( mxContext );
298 0 : Sequence< Any > aCreationArguments( 2 );
299 0 : aCreationArguments[0] = makeAny( PropertyValue(
300 : OUString( "nodepath" ), 0,
301 0 : makeAny( GetPathToConfigurationRoot() ),
302 0 : PropertyState_DIRECT_VALUE ) );
303 0 : aCreationArguments[1] = makeAny(beans::PropertyValue(
304 : OUString( "lazywrite" ), 0, makeAny( true ),
305 0 : PropertyState_DIRECT_VALUE ) );
306 0 : OUString sAccessService;
307 0 : if ( bReadOnly )
308 0 : sAccessService = OUString(
309 0 : "com.sun.star.configuration.ConfigurationAccess" );
310 : else
311 0 : sAccessService = OUString(
312 0 : "com.sun.star.configuration.ConfigurationUpdateAccess" );
313 :
314 0 : xRoot = xProvider->createInstanceWithArguments(
315 0 : sAccessService, aCreationArguments );
316 : }
317 0 : catch (const Exception&)
318 : {
319 : }
320 0 : return xRoot;
321 : }
322 :
323 0 : Reference< XInterface > ConfigurationAccess::GetConfigurationNode(
324 : const Reference< XInterface >& xRoot,
325 : const OUString& sPathToNode )
326 : {
327 0 : Reference< XInterface > xNode;
328 : try
329 : {
330 0 : if ( sPathToNode.isEmpty() )
331 0 : xNode = xRoot;
332 : else
333 : {
334 0 : Reference< XHierarchicalNameAccess > xHierarchy( xRoot, UNO_QUERY );
335 0 : if ( xHierarchy.is() )
336 : {
337 0 : xHierarchy->getByHierarchicalName( sPathToNode ) >>= xNode;
338 0 : }
339 : }
340 : }
341 0 : catch (const Exception& rException)
342 : {
343 : OSL_TRACE ("caught exception while getting configuration node %s: %s",
344 : OUStringToOString(sPathToNode,
345 : RTL_TEXTENCODING_UTF8).getStr(),
346 : OUStringToOString(rException.Message,
347 : RTL_TEXTENCODING_UTF8).getStr());
348 : (void)rException;
349 : }
350 0 : return xNode;
351 : }
352 :
353 0 : com::sun::star::uno::Any ConfigurationAccess::GetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken ) const
354 : {
355 0 : Any aRetValue;
356 0 : const OptimizerSettings& rSettings( maSettings.front() );
357 : try
358 : {
359 0 : switch( ePropertyToken )
360 : {
361 0 : case TK_Name : aRetValue <<= rSettings.maName; break;
362 0 : case TK_JPEGCompression : aRetValue <<= rSettings.mbJPEGCompression; break;
363 0 : case TK_JPEGQuality : aRetValue <<= rSettings.mnJPEGQuality; break;
364 0 : case TK_RemoveCropArea : aRetValue <<= rSettings.mbRemoveCropArea; break;
365 0 : case TK_ImageResolution : aRetValue <<= rSettings.mnImageResolution; break;
366 0 : case TK_EmbedLinkedGraphics : aRetValue <<= rSettings.mbEmbedLinkedGraphics; break;
367 0 : case TK_OLEOptimization : aRetValue <<= rSettings.mbOLEOptimization; break;
368 0 : case TK_OLEOptimizationType : aRetValue <<= rSettings.mnOLEOptimizationType; break;
369 0 : case TK_DeleteUnusedMasterPages : aRetValue <<= rSettings.mbDeleteUnusedMasterPages; break;
370 0 : case TK_DeleteHiddenSlides : aRetValue <<= rSettings.mbDeleteHiddenSlides; break;
371 0 : case TK_DeleteNotesPages : aRetValue <<= rSettings.mbDeleteNotesPages; break;
372 0 : case TK_SaveAs : aRetValue <<= rSettings.mbSaveAs; break;
373 0 : case TK_SaveAsURL : aRetValue <<= rSettings.maSaveAsURL; break;
374 0 : case TK_FilterName : aRetValue <<= rSettings.maFilterName; break;
375 0 : case TK_OpenNewDocument : aRetValue <<= rSettings.mbOpenNewDocument; break;
376 0 : case TK_EstimatedFileSize : aRetValue <<= rSettings.mnEstimatedFileSize; break;
377 : default:
378 0 : break;
379 : }
380 : }
381 0 : catch (const Exception&)
382 : {
383 : }
384 0 : return aRetValue;
385 : }
386 :
387 0 : void ConfigurationAccess::SetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken, const com::sun::star::uno::Any& rValue )
388 : {
389 0 : OptimizerSettings& rSettings( maSettings.front() );
390 : try
391 : {
392 0 : switch( ePropertyToken )
393 : {
394 0 : case TK_Name : rValue >>= rSettings.maName; break;
395 0 : case TK_JPEGCompression : rValue >>= rSettings.mbJPEGCompression; break;
396 0 : case TK_JPEGQuality : rValue >>= rSettings.mnJPEGQuality; break;
397 0 : case TK_RemoveCropArea : rValue >>= rSettings.mbRemoveCropArea; break;
398 0 : case TK_ImageResolution : rValue >>= rSettings.mnImageResolution; break;
399 0 : case TK_EmbedLinkedGraphics : rValue >>= rSettings.mbEmbedLinkedGraphics; break;
400 0 : case TK_OLEOptimization : rValue >>= rSettings.mbOLEOptimization; break;
401 0 : case TK_OLEOptimizationType : rValue >>= rSettings.mnOLEOptimizationType; break;
402 0 : case TK_DeleteUnusedMasterPages : rValue >>= rSettings.mbDeleteUnusedMasterPages; break;
403 0 : case TK_DeleteHiddenSlides : rValue >>= rSettings.mbDeleteHiddenSlides; break;
404 0 : case TK_DeleteNotesPages : rValue >>= rSettings.mbDeleteNotesPages; break;
405 0 : case TK_CustomShowName : rValue >>= rSettings.maCustomShowName; break;
406 0 : case TK_SaveAs : rValue >>= rSettings.mbSaveAs; break;
407 0 : case TK_SaveAsURL : rValue >>= rSettings.maSaveAsURL; break;
408 0 : case TK_FilterName : rValue >>= rSettings.maFilterName; break;
409 0 : case TK_OpenNewDocument : rValue >>= rSettings.mbOpenNewDocument; break;
410 0 : case TK_EstimatedFileSize : rValue >>= rSettings.mnEstimatedFileSize; break;
411 : default:
412 0 : break;
413 : }
414 : }
415 : catch (const Exception&)
416 : {
417 : }
418 0 : }
419 :
420 0 : bool ConfigurationAccess::GetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken, const bool bDefault ) const
421 : {
422 0 : bool bRetValue = bDefault;
423 0 : if ( ! ( GetConfigProperty( ePropertyToken ) >>= bRetValue ) )
424 0 : bRetValue = bDefault;
425 0 : return bRetValue;
426 : }
427 :
428 0 : sal_Int16 ConfigurationAccess::GetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken, const sal_Int16 nDefault ) const
429 : {
430 0 : sal_Int16 nRetValue = nDefault;
431 0 : if ( ! ( GetConfigProperty( ePropertyToken ) >>= nRetValue ) )
432 0 : nRetValue = nDefault;
433 0 : return nRetValue;
434 : }
435 :
436 0 : sal_Int32 ConfigurationAccess::GetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken, const sal_Int32 nDefault ) const
437 : {
438 0 : sal_Int32 nRetValue = nDefault;
439 0 : if ( ! ( GetConfigProperty( ePropertyToken ) >>= nRetValue ) )
440 0 : nRetValue = nDefault;
441 0 : return nRetValue;
442 : }
443 :
444 0 : Sequence< PropertyValue > ConfigurationAccess::GetConfigurationSequence()
445 : {
446 0 : Sequence< PropertyValue > aRet( 15 );
447 0 : OptimizerSettings& rSettings( maSettings.front() );
448 0 : aRet[ 0 ].Name = "JPEGCompression";
449 0 : aRet[ 0 ].Value= Any( rSettings.mbJPEGCompression );
450 0 : aRet[ 1 ].Name = "JPEGQuality";
451 0 : aRet[ 1 ].Value= Any( rSettings.mnJPEGQuality );
452 0 : aRet[ 2 ].Name = "RemoveCropArea";
453 0 : aRet[ 2 ].Value= Any( rSettings.mbRemoveCropArea );
454 0 : aRet[ 3 ].Name = "ImageResolution";
455 0 : aRet[ 3 ].Value= Any( rSettings.mnImageResolution );
456 0 : aRet[ 4 ].Name = "EmbedLinkedGraphics";
457 0 : aRet[ 4 ].Value= Any( rSettings.mbEmbedLinkedGraphics );
458 0 : aRet[ 5 ].Name = "OLEOptimization";
459 0 : aRet[ 5 ].Value= Any( rSettings.mbOLEOptimization );
460 0 : aRet[ 6 ].Name = "OLEOptimizationType";
461 0 : aRet[ 6 ].Value= Any( rSettings.mnOLEOptimizationType );
462 0 : aRet[ 7 ].Name = "DeleteUnusedMasterPages";
463 0 : aRet[ 7 ].Value= Any( rSettings.mbDeleteUnusedMasterPages );
464 0 : aRet[ 8 ].Name = "DeleteHiddenSlides";
465 0 : aRet[ 8 ].Value= Any( rSettings.mbDeleteHiddenSlides );
466 0 : aRet[ 9 ].Name = "DeleteNotesPages";
467 0 : aRet[ 9 ].Value= Any( rSettings.mbDeleteNotesPages );
468 0 : aRet[ 10].Name = "CustomShowName";
469 0 : aRet[ 10].Value= Any( rSettings.maCustomShowName );
470 0 : aRet[ 11].Name = "SaveAsURL";
471 0 : aRet[ 11].Value= Any( rSettings.maSaveAsURL );
472 0 : aRet[ 12].Name = "FilterName";
473 0 : aRet[ 12].Value= Any( rSettings.maFilterName );
474 0 : aRet[ 13].Name = "OpenNewDocument";
475 0 : aRet[ 13].Value= Any( rSettings.mbOpenNewDocument );
476 0 : aRet[ 14].Name = "EstimatedFileSize";
477 0 : aRet[ 14].Value= Any( rSettings.mnEstimatedFileSize );
478 0 : return aRet;
479 : }
480 :
481 0 : std::vector< OptimizerSettings >::iterator ConfigurationAccess::GetOptimizerSettingsByName( const OUString& rName )
482 : {
483 0 : std::vector< OptimizerSettings >::iterator aIter( maSettings.begin() + 1 );
484 0 : const std::vector< OptimizerSettings >::const_iterator aEnd( maSettings.end() );
485 0 : for ( ; aIter != aEnd; ++aIter )
486 : {
487 0 : if ( aIter->maName == rName )
488 0 : break;
489 : }
490 0 : return aIter;
491 : }
492 :
493 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|