fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / package / source / manifest / ManifestWriter.cxx
blobf6a0c0b65925f4dc0b36a559fc6be654031c593f
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 <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>
30 #include <osl/diagnose.hxx>
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;
43 ManifestWriter::ManifestWriter( const Reference < XComponentContext > & xContext )
44 : m_xContext ( xContext )
47 ManifestWriter::~ManifestWriter()
51 // XManifestWriter methods
52 void SAL_CALL ManifestWriter::writeManifestSequence( const Reference< XOutputStream >& rStream, const Sequence< Sequence< PropertyValue > >& rSequence )
53 throw (RuntimeException)
55 Reference < XWriter > xSource = Writer::create( m_xContext );
56 xSource->setOutputStream ( rStream );
57 try {
58 Reference < XDocumentHandler > xHandler ( xSource, UNO_QUERY );
59 ManifestExport( xHandler, rSequence);
61 catch( SAXException& )
63 throw RuntimeException( OSL_LOG_PREFIX, uno::Reference< uno::XInterface >() );
67 // Component methods
68 Reference < XInterface > SAL_CALL ManifestWriter_createInstance( Reference< XMultiServiceFactory > const & rServiceFactory )
70 return *new ManifestWriter( comphelper::getComponentContext(rServiceFactory) );
73 OUString ManifestWriter::static_getImplementationName()
75 return OUString ( "com.sun.star.packages.manifest.comp.ManifestWriter" );
78 sal_Bool SAL_CALL ManifestWriter::static_supportsService(OUString const & rServiceName)
80 return rServiceName == getSupportedServiceNames()[0];
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)
92 return static_getImplementationName();
95 sal_Bool SAL_CALL ManifestWriter::supportsService(OUString const & rServiceName)
96 throw (RuntimeException)
98 return static_supportsService ( rServiceName );
100 Sequence < OUString > ManifestWriter::getSupportedServiceNames()
101 throw (RuntimeException)
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: */