/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef INCLUDED_FILTER_SOURCE_XSLTFILTER_OLEHANDLER_HXX #define INCLUDED_FILTER_SOURCE_XSLTFILTER_OLEHANDLER_HXX #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ::com::sun::star::uno; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::container; using namespace ::com::sun::star::io; namespace XSLT { /* * OleHandler provides implementations for the XSLT extension functions used by the WordML 2003 XSLT filters. * * The extension functions takes base64 encoded string representations of embedded OLE objects provided by the XML filter framework, * stores them into a com.sun.star.embed.OLESimpleStorage and retrieves them later as individual base64 OLE objects. * * The implementation is ported from the former Java based implementation XSLTOleExtrater (sic) * * I believe the whole thing should provide round-trip editing of embedded OLE objects. * I'm not sure if it currently does anything meaningful, because the Java implementation seems to be broken both in OOo and LibO. * */ class OleHandler { public: OleHandler(const css::uno::Reference& rxContext) : m_xContext(rxContext) , m_tcontext(nullptr) { } ~OleHandler() { if (m_tcontext) m_tcontext->_private = nullptr; } void insertByName(const OUString& streamName, const OString& content); const OString getByName(const OUString& streamName); void registercontext(xsltTransformContextPtr context) { assert(context); m_tcontext = context; m_tcontext->_private = this; } private: css::uno::Reference m_xContext; css::uno::Reference m_storage; css::uno::Reference m_rootStream; xsltTransformContextPtr m_tcontext; void ensureCreateRootStorage(); OString encodeSubStorage(const OUString& streamName); void insertSubStorage(const OUString& streamName, const OString& content); void initRootStorageFromBase64(const OString& content); css::uno::Reference createTempFile(); }; } #endif // INCLUDED_FILTER_SOURCE_XSLTFILTER_OLEHANDLER_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */