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 "xmlbas_export.hxx"
21 : #include "xmlscript/xmlns.h"
22 : #include "xmlscript/xml_helper.hxx"
23 : #include <com/sun/star/beans/XPropertySet.hpp>
24 : #include <com/sun/star/lang/XMultiComponentFactory.hpp>
25 : #include <com/sun/star/script/XLibraryContainer2.hpp>
26 : #include <com/sun/star/script/XLibraryContainerPassword.hpp>
27 : #include <com/sun/star/document/XEmbeddedScripts.hpp>
28 : #include <cppuhelper/implementationentry.hxx>
29 :
30 : using namespace ::com::sun::star;
31 : using namespace ::com::sun::star::lang;
32 : using namespace ::com::sun::star::uno;
33 :
34 :
35 : //.........................................................................
36 : namespace xmlscript
37 : {
38 : //.........................................................................
39 :
40 : // =============================================================================
41 : // component operations
42 : // =============================================================================
43 :
44 0 : OUString getImplementationName_XMLBasicExporter()
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.xmlscript.XMLBasicExporter" );
53 0 : pImplName = &aImplName;
54 0 : }
55 : }
56 0 : return *pImplName;
57 : }
58 :
59 : // -----------------------------------------------------------------------------
60 :
61 0 : Sequence< OUString > getSupportedServiceNames_XMLBasicExporter()
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.document.XMLBasicExporter";
71 0 : pNames = &aNames;
72 0 : }
73 : }
74 0 : return *pNames;
75 : }
76 :
77 : // -----------------------------------------------------------------------------
78 :
79 0 : OUString getImplementationName_XMLOasisBasicExporter()
80 : {
81 : static OUString* pImplName = 0;
82 0 : if ( !pImplName )
83 : {
84 0 : ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
85 0 : if ( !pImplName )
86 : {
87 0 : static OUString aImplName( "com.sun.star.comp.xmlscript.XMLOasisBasicExporter" );
88 0 : pImplName = &aImplName;
89 0 : }
90 : }
91 0 : return *pImplName;
92 : }
93 :
94 : // -----------------------------------------------------------------------------
95 :
96 0 : Sequence< OUString > getSupportedServiceNames_XMLOasisBasicExporter()
97 : {
98 : static Sequence< OUString >* pNames = 0;
99 0 : if ( !pNames )
100 : {
101 0 : ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
102 0 : if ( !pNames )
103 : {
104 0 : static Sequence< OUString > aNames(1);
105 0 : aNames.getArray()[0] = "com.sun.star.document.XMLOasisBasicExporter";
106 0 : pNames = &aNames;
107 0 : }
108 : }
109 0 : return *pNames;
110 : }
111 :
112 :
113 : // =============================================================================
114 : // XMLBasicExporterBase
115 : // =============================================================================
116 :
117 0 : XMLBasicExporterBase::XMLBasicExporterBase( const Reference< XComponentContext >& rxContext, sal_Bool bOasis )
118 : :m_xContext( rxContext )
119 0 : ,m_bOasis( bOasis )
120 : {
121 0 : }
122 :
123 : // -----------------------------------------------------------------------------
124 :
125 0 : XMLBasicExporterBase::~XMLBasicExporterBase()
126 : {
127 0 : }
128 :
129 : // -----------------------------------------------------------------------------
130 : // XServiceInfo
131 : // -----------------------------------------------------------------------------
132 :
133 0 : sal_Bool XMLBasicExporterBase::supportsService( const OUString& rServiceName ) throw (RuntimeException)
134 : {
135 0 : Sequence< OUString > aNames( getSupportedServiceNames() );
136 0 : const OUString* pNames = aNames.getConstArray();
137 0 : const OUString* pEnd = pNames + aNames.getLength();
138 0 : for ( ; pNames != pEnd && !pNames->equals( rServiceName ); ++pNames )
139 : ;
140 :
141 0 : return pNames != pEnd;
142 : }
143 :
144 : // -----------------------------------------------------------------------------
145 : // XInitialization
146 : // -----------------------------------------------------------------------------
147 :
148 0 : void XMLBasicExporterBase::initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException)
149 : {
150 0 : ::osl::MutexGuard aGuard( m_aMutex );
151 :
152 0 : if ( aArguments.getLength() == 1 )
153 : {
154 0 : aArguments[0] >>= m_xHandler;
155 :
156 0 : if ( !m_xHandler.is() )
157 : {
158 0 : throw RuntimeException( "XMLBasicExporterBase::initialize: invalid argument format!", Reference< XInterface >() );
159 : }
160 : }
161 : else
162 : {
163 0 : throw RuntimeException( "XMLBasicExporterBase::initialize: invalid number of arguments!", Reference< XInterface >() );
164 0 : }
165 0 : }
166 :
167 : // -----------------------------------------------------------------------------
168 : // XExporter
169 : // -----------------------------------------------------------------------------
170 :
171 0 : void XMLBasicExporterBase::setSourceDocument( const Reference< XComponent >& rxDoc )
172 : throw (IllegalArgumentException, RuntimeException)
173 : {
174 0 : ::osl::MutexGuard aGuard( m_aMutex );
175 :
176 0 : m_xModel.set( rxDoc, UNO_QUERY );
177 :
178 0 : if ( !m_xModel.is() )
179 : {
180 0 : throw IllegalArgumentException( "XMLBasicExporter::setSourceDocument: no document model!", Reference< XInterface >(), 1 );
181 0 : }
182 0 : }
183 :
184 : // -----------------------------------------------------------------------------
185 : // XFilter
186 : // -----------------------------------------------------------------------------
187 :
188 0 : sal_Bool XMLBasicExporterBase::filter( const Sequence< beans::PropertyValue >& /*aDescriptor*/ )
189 : throw (RuntimeException)
190 : {
191 0 : ::osl::MutexGuard aGuard( m_aMutex );
192 :
193 0 : sal_Bool bReturn = sal_True;
194 :
195 : try
196 : {
197 0 : if ( m_xHandler.is() )
198 : {
199 0 : m_xHandler->startDocument();
200 :
201 : // ooo/script prefix and URI
202 0 : OUString aPrefix;
203 0 : OUString aURI;
204 0 : if ( m_bOasis )
205 : {
206 0 : aPrefix = XMLNS_OOO_PREFIX;
207 0 : aURI = XMLNS_OOO_URI;
208 : }
209 : else
210 : {
211 0 : aPrefix = XMLNS_SCRIPT_PREFIX;
212 0 : aURI = XMLNS_SCRIPT_URI;
213 : }
214 :
215 : // ooo/script:libraries element
216 0 : OUString aLibContElementName( aPrefix );
217 0 : aLibContElementName += ":libraries";
218 0 : XMLElement* pLibContElement = new XMLElement( aLibContElementName );
219 0 : Reference< xml::sax::XAttributeList > xLibContAttribs( pLibContElement );
220 :
221 : // ooo/script namespace attribute
222 0 : pLibContElement->addAttribute( "xmlns:" + aPrefix, aURI );
223 :
224 : // xlink namespace attribute
225 0 : pLibContElement->addAttribute( "xmlns:" XMLNS_XLINK_PREFIX, XMLNS_XLINK_URI );
226 :
227 : // <ooo/script:libraries...
228 0 : m_xHandler->ignorableWhitespace( OUString() );
229 0 : m_xHandler->startElement( aLibContElementName, xLibContAttribs );
230 :
231 0 : Reference< script::XLibraryContainer2 > xLibContainer;
232 :
233 : // try the XEmbeddedScripts interface
234 0 : Reference< document::XEmbeddedScripts > xDocumentScripts( m_xModel, UNO_QUERY );
235 0 : if ( xDocumentScripts.is() )
236 0 : xLibContainer.set( xDocumentScripts->getBasicLibraries().get() );
237 :
238 0 : if ( !xLibContainer.is() )
239 : {
240 : // try the "BasicLibraries" property (old-style, for compatibility)
241 0 : Reference< beans::XPropertySet > xPSet( m_xModel, UNO_QUERY );
242 0 : if ( xPSet.is() )
243 0 : xPSet->getPropertyValue("BasicLibraries" ) >>= xLibContainer;
244 : }
245 :
246 : OSL_ENSURE( xLibContainer.is(), "XMLBasicExporterBase::filter: nowhere to export to!" );
247 :
248 0 : if ( xLibContainer.is() )
249 : {
250 0 : Sequence< OUString > aLibNames = xLibContainer->getElementNames();
251 0 : sal_Int32 nLibCount = aLibNames.getLength();
252 0 : const OUString* pLibNames = aLibNames.getConstArray();
253 0 : for ( sal_Int32 i = 0 ; i < nLibCount ; ++i )
254 : {
255 0 : OUString aLibName( pLibNames[i] );
256 :
257 0 : if ( xLibContainer->hasByName( aLibName ) )
258 : {
259 0 : OUString aTrueStr( "true" );
260 :
261 0 : if ( xLibContainer->isLibraryLink( aLibName ) )
262 : {
263 : // ooo/script:library-linked element
264 0 : OUString aLibElementName( aPrefix );
265 0 : aLibElementName += ":library-linked";
266 0 : XMLElement* pLibElement = new XMLElement( aLibElementName );
267 0 : Reference< xml::sax::XAttributeList > xLibAttribs;
268 0 : xLibAttribs = static_cast< xml::sax::XAttributeList* >( pLibElement );
269 :
270 : // ooo/script:name attribute
271 0 : pLibElement->addAttribute( aPrefix + ":name", aLibName );
272 :
273 0 : OUString aLinkURL( xLibContainer->getLibraryLinkURL( aLibName ) );
274 0 : if ( !aLinkURL.isEmpty() )
275 : {
276 : // xlink:href attribute
277 0 : pLibElement->addAttribute( XMLNS_XLINK_PREFIX ":href", aLinkURL );
278 :
279 : // xlink:type attribute
280 0 : pLibElement->addAttribute( XMLNS_XLINK_PREFIX ":type", "simple" );
281 : }
282 :
283 0 : if ( xLibContainer->isLibraryReadOnly( aLibName ) )
284 : {
285 : // ooo/script:readonly attribute
286 0 : pLibElement->addAttribute( aPrefix + ":readonly", aTrueStr );
287 : }
288 :
289 : // <ooo/script:library-linked...
290 0 : m_xHandler->ignorableWhitespace( OUString() );
291 0 : m_xHandler->startElement( aLibElementName, xLibAttribs );
292 :
293 : // ...ooo/script:library-linked>
294 0 : m_xHandler->ignorableWhitespace( OUString() );
295 0 : m_xHandler->endElement( aLibElementName );
296 : }
297 : else
298 : {
299 : // ooo/script:library-embedded element
300 0 : OUString aLibElementName( aPrefix );
301 0 : aLibElementName += ":library-embedded";
302 0 : XMLElement* pLibElement = new XMLElement( aLibElementName );
303 0 : Reference< xml::sax::XAttributeList > xLibAttribs;
304 0 : xLibAttribs = static_cast< xml::sax::XAttributeList* >( pLibElement );
305 :
306 : // ooo/script:name attribute
307 0 : pLibElement->addAttribute( aPrefix + ":name", aLibName );
308 :
309 0 : if ( xLibContainer->isLibraryReadOnly( aLibName ) )
310 : {
311 : // ooo/script:readonly attribute
312 0 : pLibElement->addAttribute( aPrefix + ":readonly", aTrueStr );
313 : }
314 :
315 : // TODO: password protected libraries
316 0 : Reference< script::XLibraryContainerPassword > xPasswd( xLibContainer, UNO_QUERY );
317 0 : if ( xPasswd.is() && xPasswd->isLibraryPasswordProtected( aLibName ) )
318 0 : continue;
319 :
320 : // <ooo/script:library-embedded...
321 0 : m_xHandler->ignorableWhitespace( OUString() );
322 0 : m_xHandler->startElement( aLibElementName, xLibAttribs );
323 :
324 0 : if ( !xLibContainer->isLibraryLoaded( aLibName ) )
325 0 : xLibContainer->loadLibrary( aLibName );
326 :
327 0 : Reference< container::XNameContainer > xLib;
328 0 : xLibContainer->getByName( aLibName ) >>= xLib;
329 :
330 0 : if ( xLib.is() )
331 : {
332 0 : Sequence< OUString > aModNames = xLib->getElementNames();
333 0 : sal_Int32 nModCount = aModNames.getLength();
334 0 : const OUString* pModNames = aModNames.getConstArray();
335 0 : for ( sal_Int32 j = 0 ; j < nModCount ; ++j )
336 : {
337 0 : OUString aModName( pModNames[j] );
338 0 : if ( xLib->hasByName( aModName ) )
339 : {
340 : // ooo/script:module element
341 0 : OUString aModElementName( aPrefix );
342 0 : aModElementName += ":module";
343 0 : XMLElement* pModElement = new XMLElement( aModElementName );
344 0 : Reference< xml::sax::XAttributeList > xModAttribs;
345 0 : xModAttribs = static_cast< xml::sax::XAttributeList* >( pModElement );
346 :
347 : // ooo/script:name attribute
348 0 : pModElement->addAttribute( aPrefix + ":name", aModName );
349 :
350 : // <ooo/script:module...
351 0 : m_xHandler->ignorableWhitespace( OUString() );
352 0 : m_xHandler->startElement( aModElementName, xModAttribs );
353 :
354 : // ooo/script:source-code element
355 0 : OUString aSourceElementName( aPrefix );
356 0 : aSourceElementName += ":source-code";
357 0 : XMLElement* pSourceElement = new XMLElement( aSourceElementName );
358 0 : Reference< xml::sax::XAttributeList > xSourceAttribs;
359 0 : xSourceAttribs = static_cast< xml::sax::XAttributeList* >( pSourceElement );
360 :
361 : // <ooo/script:source-code...
362 0 : m_xHandler->ignorableWhitespace( OUString() );
363 0 : m_xHandler->startElement( aSourceElementName, xSourceAttribs );
364 :
365 : // module data
366 : // TODO: write encrypted data for password protected libraries
367 0 : OUString aSource;
368 0 : xLib->getByName( aModName ) >>= aSource;
369 0 : m_xHandler->characters( aSource );
370 :
371 : // TODO: <ooo/script:byte-code>
372 :
373 : // ...ooo/script:source-code>
374 0 : m_xHandler->ignorableWhitespace( OUString() );
375 0 : m_xHandler->endElement( aSourceElementName );
376 :
377 : // ...ooo/script:module>
378 0 : m_xHandler->ignorableWhitespace( OUString() );
379 0 : m_xHandler->endElement( aModElementName );
380 : }
381 0 : }
382 : }
383 :
384 : // ...ooo/script:library-embedded>
385 0 : m_xHandler->ignorableWhitespace( OUString() );
386 0 : m_xHandler->endElement( aLibElementName );
387 0 : }
388 : }
389 0 : }
390 : }
391 :
392 : // ...ooo/script:libraries>
393 0 : m_xHandler->ignorableWhitespace( OUString() );
394 0 : m_xHandler->endElement( aLibContElementName );
395 :
396 0 : m_xHandler->endDocument();
397 : }
398 : }
399 0 : catch ( const container::NoSuchElementException& e )
400 : {
401 : OSL_TRACE( "XMLBasicExporterBase::filter: caught NoSuchElementException reason %s",
402 : OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer );
403 0 : bReturn = sal_False;
404 : }
405 0 : catch ( const lang::IllegalArgumentException& e )
406 : {
407 : OSL_TRACE( "XMLBasicExporterBase::filter: caught IllegalArgumentException reason %s",
408 : OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer );
409 0 : bReturn = sal_False;
410 : }
411 0 : catch ( const lang::WrappedTargetException& e )
412 : {
413 : OSL_TRACE( "XMLBasicExporterBase::filter: caught WrappedTargetException reason %s",
414 : OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer );
415 0 : bReturn = sal_False;
416 : }
417 0 : catch ( const xml::sax::SAXException& e )
418 : {
419 : OSL_TRACE( "XMLBasicExporterBase::filter: caught SAXException reason %s",
420 : OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer );
421 0 : bReturn = sal_False;
422 : }
423 :
424 0 : return bReturn;
425 : }
426 :
427 : // -----------------------------------------------------------------------------
428 :
429 0 : void XMLBasicExporterBase::cancel()
430 : throw (RuntimeException)
431 : {
432 0 : ::osl::MutexGuard aGuard( m_aMutex );
433 :
434 : // cancel export
435 0 : }
436 :
437 :
438 : // =============================================================================
439 : // XMLBasicExporter
440 : // =============================================================================
441 :
442 0 : XMLBasicExporter::XMLBasicExporter( const Reference< XComponentContext >& rxContext )
443 0 : :XMLBasicExporterBase( rxContext, sal_False )
444 : {
445 0 : }
446 :
447 : // -----------------------------------------------------------------------------
448 :
449 0 : XMLBasicExporter::~XMLBasicExporter()
450 : {
451 0 : }
452 :
453 : // -----------------------------------------------------------------------------
454 : // XServiceInfo
455 : // -----------------------------------------------------------------------------
456 :
457 0 : OUString XMLBasicExporter::getImplementationName( ) throw (RuntimeException)
458 : {
459 0 : return getImplementationName_XMLBasicExporter();
460 : }
461 :
462 : // -----------------------------------------------------------------------------
463 :
464 0 : Sequence< OUString > XMLBasicExporter::getSupportedServiceNames( ) throw (RuntimeException)
465 : {
466 0 : return getSupportedServiceNames_XMLBasicExporter();
467 : }
468 :
469 :
470 : // =============================================================================
471 : // XMLOasisBasicExporter
472 : // =============================================================================
473 :
474 0 : XMLOasisBasicExporter::XMLOasisBasicExporter( const Reference< XComponentContext >& rxContext )
475 0 : :XMLBasicExporterBase( rxContext, sal_True )
476 : {
477 0 : }
478 :
479 : // -----------------------------------------------------------------------------
480 :
481 0 : XMLOasisBasicExporter::~XMLOasisBasicExporter()
482 : {
483 0 : }
484 :
485 : // -----------------------------------------------------------------------------
486 : // XServiceInfo
487 : // -----------------------------------------------------------------------------
488 :
489 0 : OUString XMLOasisBasicExporter::getImplementationName( ) throw (RuntimeException)
490 : {
491 0 : return getImplementationName_XMLOasisBasicExporter();
492 : }
493 :
494 : // -----------------------------------------------------------------------------
495 :
496 0 : Sequence< OUString > XMLOasisBasicExporter::getSupportedServiceNames( ) throw (RuntimeException)
497 : {
498 0 : return getSupportedServiceNames_XMLOasisBasicExporter();
499 : }
500 :
501 :
502 : // =============================================================================
503 : // component operations
504 : // =============================================================================
505 :
506 0 : Reference< XInterface > SAL_CALL create_XMLBasicExporter(
507 : Reference< XComponentContext > const & xContext )
508 : SAL_THROW(())
509 : {
510 0 : return static_cast< lang::XTypeProvider * >( new XMLBasicExporter( xContext ) );
511 : }
512 :
513 : // -----------------------------------------------------------------------------
514 :
515 0 : Reference< XInterface > SAL_CALL create_XMLOasisBasicExporter(
516 : Reference< XComponentContext > const & xContext )
517 : SAL_THROW(())
518 : {
519 0 : return static_cast< lang::XTypeProvider * >( new XMLOasisBasicExporter( xContext ) );
520 : }
521 :
522 : // -----------------------------------------------------------------------------
523 :
524 : //.........................................................................
525 : } // namespace xmlscript
526 : //.........................................................................
527 :
528 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|