Bump version to 5.0-14
[LibreOffice.git] / package / source / manifest / ManifestWriter.cxx
bloba56011ec90342c89fed1dbbdacca6115018733f4
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <ManifestWriter.hxx>
21 #include <ManifestExport.hxx>
22 #include <comphelper/processfactory.hxx>
23 #include <cppuhelper/factory.hxx>
24 #include <cppuhelper/supportsservice.hxx>
25 #include <com/sun/star/io/XActiveDataSource.hpp>
26 #include <com/sun/star/xml/sax/Writer.hpp>
27 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
28 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
29 #include <com/sun/star/xml/sax/SAXException.hpp>
31 #include <osl/diagnose.hxx>
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;
42 #if OSL_DEBUG_LEVEL > 0
43 #define THROW_WHERE SAL_WHERE
44 #else
45 #define THROW_WHERE ""
46 #endif
48 ManifestWriter::ManifestWriter( const Reference < XComponentContext > & xContext )
49 : m_xContext ( xContext )
52 ManifestWriter::~ManifestWriter()
56 // XManifestWriter methods
57 void SAL_CALL ManifestWriter::writeManifestSequence( const Reference< XOutputStream >& rStream, const Sequence< Sequence< PropertyValue > >& rSequence )
58 throw (RuntimeException, std::exception)
60 Reference < XWriter > xSource = Writer::create( m_xContext );
61 xSource->setOutputStream ( rStream );
62 try {
63 ManifestExport( xSource, rSequence);
65 catch( SAXException& )
67 throw RuntimeException( THROW_WHERE );
71 // Component methods
72 Reference < XInterface > SAL_CALL ManifestWriter_createInstance( Reference< XMultiServiceFactory > const & rServiceFactory )
74 return *new ManifestWriter( comphelper::getComponentContext(rServiceFactory) );
77 OUString ManifestWriter::static_getImplementationName()
79 return OUString ( "com.sun.star.packages.manifest.comp.ManifestWriter" );
82 Sequence < OUString > ManifestWriter::static_getSupportedServiceNames()
84 Sequence < OUString > aNames(1);
85 aNames[0] = "com.sun.star.packages.manifest.ManifestWriter";
86 return aNames;
89 OUString ManifestWriter::getImplementationName()
90 throw (RuntimeException, std::exception)
92 return static_getImplementationName();
95 sal_Bool SAL_CALL ManifestWriter::supportsService(OUString const & rServiceName)
96 throw (RuntimeException, std::exception)
98 return cppu::supportsService(this, rServiceName);
100 Sequence < OUString > ManifestWriter::getSupportedServiceNames()
101 throw (RuntimeException, std::exception)
103 return static_getSupportedServiceNames();
105 Reference < XSingleServiceFactory > ManifestWriter::createServiceFactory( Reference < XMultiServiceFactory > const & rServiceFactory )
107 return cppu::createSingleFactory (rServiceFactory,
108 static_getImplementationName(),
109 ManifestWriter_createInstance,
110 static_getSupportedServiceNames());
113 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */