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 <ManifestWriter.hxx>
21 : #include <ManifestExport.hxx>
22 : #include <comphelper/processfactory.hxx>
23 : #include <cppuhelper/factory.hxx>
24 : #include <com/sun/star/io/XActiveDataSource.hpp>
25 : #include <com/sun/star/xml/sax/Writer.hpp>
26 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
27 : #include <com/sun/star/lang/XSingleServiceFactory.hpp>
28 : #include <com/sun/star/xml/sax/SAXException.hpp>
29 :
30 : #include <osl/diagnose.hxx>
31 :
32 : using namespace ::rtl;
33 : using namespace ::com::sun::star;
34 : using namespace ::com::sun::star::uno;
35 : using namespace ::com::sun::star::beans;
36 : using namespace ::com::sun::star::io;
37 : using namespace ::com::sun::star::lang;
38 : using namespace ::com::sun::star::registry;
39 : using namespace ::com::sun::star::packages;
40 : using namespace ::com::sun::star::xml::sax;
41 : using namespace ::com::sun::star::packages::manifest;
42 :
43 8 : ManifestWriter::ManifestWriter( const Reference < XMultiServiceFactory > & xNewFactory )
44 8 : : xFactory ( xNewFactory )
45 : {
46 8 : }
47 16 : ManifestWriter::~ManifestWriter()
48 : {
49 16 : }
50 :
51 : // XManifestWriter methods
52 8 : void SAL_CALL ManifestWriter::writeManifestSequence( const Reference< XOutputStream >& rStream, const Sequence< Sequence< PropertyValue > >& rSequence )
53 : throw (RuntimeException)
54 : {
55 8 : Reference < XWriter > xSource = Writer::create( comphelper::getComponentContext(xFactory) );
56 8 : xSource->setOutputStream ( rStream );
57 : try {
58 8 : Reference < XDocumentHandler > xHandler ( xSource, UNO_QUERY );
59 8 : ManifestExport( xHandler, rSequence);
60 : }
61 0 : catch( SAXException& )
62 : {
63 0 : throw RuntimeException( OSL_LOG_PREFIX, uno::Reference< uno::XInterface >() );
64 8 : }
65 8 : }
66 :
67 : // Component methods
68 8 : Reference < XInterface > SAL_CALL ManifestWriter_createInstance( Reference< XMultiServiceFactory > const & rServiceFactory )
69 : {
70 8 : return *new ManifestWriter( rServiceFactory );
71 : }
72 :
73 34 : OUString ManifestWriter::static_getImplementationName()
74 : {
75 34 : return OUString ( "com.sun.star.packages.manifest.comp.ManifestWriter" );
76 : }
77 :
78 0 : sal_Bool SAL_CALL ManifestWriter::static_supportsService(OUString const & rServiceName)
79 : {
80 0 : return rServiceName == getSupportedServiceNames()[0];
81 : }
82 4 : Sequence < OUString > ManifestWriter::static_getSupportedServiceNames()
83 : {
84 4 : Sequence < OUString > aNames(1);
85 4 : aNames[0] = "com.sun.star.packages.manifest.ManifestWriter";
86 4 : return aNames;
87 : }
88 :
89 0 : OUString ManifestWriter::getImplementationName()
90 : throw (RuntimeException)
91 : {
92 0 : return static_getImplementationName();
93 : }
94 :
95 0 : sal_Bool SAL_CALL ManifestWriter::supportsService(OUString const & rServiceName)
96 : throw (RuntimeException)
97 : {
98 0 : return static_supportsService ( rServiceName );
99 : }
100 0 : Sequence < OUString > ManifestWriter::getSupportedServiceNames()
101 : throw (RuntimeException)
102 : {
103 0 : return static_getSupportedServiceNames();
104 : }
105 4 : Reference < XSingleServiceFactory > ManifestWriter::createServiceFactory( Reference < XMultiServiceFactory > const & rServiceFactory )
106 : {
107 : return cppu::createSingleFactory (rServiceFactory,
108 : static_getImplementationName(),
109 : ManifestWriter_createInstance,
110 4 : static_getSupportedServiceNames());
111 : }
112 :
113 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|