blob: 306dc4c44be387f04aa15e0bbb12cfcab01866f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* -*- 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/.
*/
#include <sal/config.h>
#include <com/sun/star/io/IOException.hpp>
#include <sal/log.hxx>
#include <cppuhelper/queryinterface.hxx>
#include "std_outputstream.hxx"
using namespace com::sun::star;
namespace cmis
{
StdOutputStream::StdOutputStream( boost::shared_ptr< std::ostream > const & pStream ) :
m_pStream( pStream )
{
}
StdOutputStream::~StdOutputStream()
{
if (m_pStream)
m_pStream->setstate( std::ios::eofbit );
}
uno::Any SAL_CALL StdOutputStream::queryInterface( const uno::Type& rType )
{
uno::Any aRet = ::cppu::queryInterface( rType, static_cast< XOutputStream* >( this ) );
return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
}
void SAL_CALL StdOutputStream::acquire( ) noexcept
{
OWeakObject::acquire();
}
void SAL_CALL StdOutputStream::release( ) noexcept
{
OWeakObject::release();
}
void SAL_CALL StdOutputStream::writeBytes ( const uno::Sequence< sal_Int8 >& aData )
{
std::scoped_lock aGuard( m_aMutex );
if (!m_pStream)
throw io::IOException( );
try
{
m_pStream->write( reinterpret_cast< const char* >( aData.getConstArray( ) ), aData.getLength( ) );
}
catch ( const std::ios_base::failure& e )
{
SAL_INFO( "ucb.ucp.cmis", "Exception caught when calling write: " << e.what() );
throw io::IOException( );
}
}
void SAL_CALL StdOutputStream::flush ( )
{
std::scoped_lock aGuard( m_aMutex );
if (!m_pStream)
throw io::IOException( );
try
{
m_pStream->flush( );
}
catch ( const std::ios_base::failure& e )
{
SAL_INFO( "ucb.ucp.cmis", "Exception caught when calling flush: " << e.what() );
throw io::IOException( );
}
}
void SAL_CALL StdOutputStream::closeOutput ( )
{
std::scoped_lock aGuard( m_aMutex );
if (!m_pStream)
throw io::IOException( );
m_pStream->setstate( std::ios_base::eofbit );
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|