LibreOffice Module dbaccess (master) 1
storagestream.cxx
Go to the documentation of this file.
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 "storagestream.hxx"
21
22#include <com/sun/star/embed/ElementModes.hpp>
23
25
26namespace dbaccess
27{
28
29 using ::com::sun::star::uno::Reference;
30 using ::com::sun::star::uno::UNO_SET_THROW;
31 using ::com::sun::star::embed::XStorage;
32 using ::com::sun::star::io::XStream;
33
34 namespace ElementModes = ::com::sun::star::embed::ElementModes;
35
36 // StorageOutputStream
37 StorageOutputStream::StorageOutputStream( const Reference< XStorage >& i_rParentStorage,
38 const OUString& i_rStreamName
39 )
40 {
41 ENSURE_OR_THROW( i_rParentStorage.is(), "illegal stream" );
42
43 const Reference< XStream > xStream(
44 i_rParentStorage->openStreamElement( i_rStreamName, ElementModes::READWRITE ), UNO_SET_THROW );
45 m_xOutputStream.set( xStream->getOutputStream(), UNO_SET_THROW );
46 }
47
49 {
50 }
51
52} // namespace dbaccess
53
54/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Reference< XInputStream > xStream
css::uno::Reference< css::io::XOutputStream > m_xOutputStream
StorageOutputStream(const css::uno::Reference< css::embed::XStorage > &i_rParentStorage, const OUString &i_rStreamName)
#define ENSURE_OR_THROW(c, m)