2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-09 14:31:34 +01:00
|
|
|
/*
|
|
|
|
* 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/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2006-09-17 10:37:10 +00:00
|
|
|
|
2012-09-29 14:47:11 +02:00
|
|
|
#include <string.h>
|
2001-02-16 13:14:51 +00:00
|
|
|
|
|
|
|
#include <cppuhelper/implbase1.hxx>
|
|
|
|
#include <xmlscript/xml_helper.hxx>
|
|
|
|
|
|
|
|
using namespace osl;
|
|
|
|
using namespace com::sun::star;
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
|
2011-02-26 22:39:23 +01:00
|
|
|
using ::rtl::ByteSequence;
|
2001-02-16 13:14:51 +00:00
|
|
|
|
|
|
|
namespace xmlscript
|
|
|
|
{
|
|
|
|
|
|
|
|
class BSeqInputStream
|
|
|
|
: public ::cppu::WeakImplHelper1< io::XInputStream >
|
|
|
|
{
|
|
|
|
ByteSequence _seq;
|
|
|
|
sal_Int32 _nPos;
|
|
|
|
|
|
|
|
public:
|
2015-05-20 15:59:12 +01:00
|
|
|
explicit BSeqInputStream( ByteSequence const & rSeq )
|
2001-02-16 13:14:51 +00:00
|
|
|
: _seq( rSeq )
|
|
|
|
, _nPos( 0 )
|
|
|
|
{}
|
|
|
|
|
|
|
|
// XInputStream
|
|
|
|
virtual sal_Int32 SAL_CALL readBytes(
|
|
|
|
Sequence< sal_Int8 > & rData, sal_Int32 nBytesToRead )
|
2014-03-26 16:37:00 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE;
|
2001-02-16 13:14:51 +00:00
|
|
|
virtual sal_Int32 SAL_CALL readSomeBytes(
|
|
|
|
Sequence< sal_Int8 > & rData, sal_Int32 nMaxBytesToRead )
|
2014-03-26 16:37:00 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE;
|
2001-02-16 13:14:51 +00:00
|
|
|
virtual void SAL_CALL skipBytes(
|
|
|
|
sal_Int32 nBytesToSkip )
|
2014-03-26 16:37:00 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE;
|
2001-02-16 13:14:51 +00:00
|
|
|
virtual sal_Int32 SAL_CALL available()
|
2014-03-26 16:37:00 +01:00
|
|
|
throw (io::NotConnectedException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE;
|
2001-02-16 13:14:51 +00:00
|
|
|
virtual void SAL_CALL closeInput()
|
2014-03-26 16:37:00 +01:00
|
|
|
throw (io::NotConnectedException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE;
|
2001-02-16 13:14:51 +00:00
|
|
|
};
|
2013-08-11 15:22:59 +02:00
|
|
|
|
2001-02-16 13:14:51 +00:00
|
|
|
sal_Int32 BSeqInputStream::readBytes(
|
|
|
|
Sequence< sal_Int8 > & rData, sal_Int32 nBytesToRead )
|
2014-02-25 21:31:58 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception)
|
2001-02-16 13:14:51 +00:00
|
|
|
{
|
|
|
|
nBytesToRead = ((nBytesToRead > _seq.getLength() - _nPos)
|
|
|
|
? _seq.getLength() - _nPos
|
|
|
|
: nBytesToRead);
|
|
|
|
|
|
|
|
ByteSequence aBytes( _seq.getConstArray() + _nPos, nBytesToRead );
|
|
|
|
rData = toUnoSequence( aBytes );
|
|
|
|
_nPos += nBytesToRead;
|
|
|
|
return nBytesToRead;
|
|
|
|
}
|
2013-08-11 15:22:59 +02:00
|
|
|
|
2001-02-16 13:14:51 +00:00
|
|
|
sal_Int32 BSeqInputStream::readSomeBytes(
|
|
|
|
Sequence< sal_Int8 > & rData, sal_Int32 nMaxBytesToRead )
|
2014-02-25 21:31:58 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception)
|
2001-02-16 13:14:51 +00:00
|
|
|
{
|
|
|
|
return readBytes( rData, nMaxBytesToRead );
|
|
|
|
}
|
2013-08-11 15:22:59 +02:00
|
|
|
|
2001-02-16 13:14:51 +00:00
|
|
|
void BSeqInputStream::skipBytes(
|
2006-06-20 04:11:06 +00:00
|
|
|
sal_Int32 /*nBytesToSkip*/ )
|
2014-02-25 21:31:58 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception)
|
2001-02-16 13:14:51 +00:00
|
|
|
{
|
|
|
|
}
|
2013-08-11 15:22:59 +02:00
|
|
|
|
2001-02-16 13:14:51 +00:00
|
|
|
sal_Int32 BSeqInputStream::available()
|
2014-02-25 21:31:58 +01:00
|
|
|
throw (io::NotConnectedException, io::IOException, RuntimeException, std::exception)
|
2001-02-16 13:14:51 +00:00
|
|
|
{
|
|
|
|
return (_seq.getLength() - _nPos);
|
|
|
|
}
|
2013-08-11 15:22:59 +02:00
|
|
|
|
2001-02-16 13:14:51 +00:00
|
|
|
void BSeqInputStream::closeInput()
|
2014-02-25 21:31:58 +01:00
|
|
|
throw (io::NotConnectedException, io::IOException, RuntimeException, std::exception)
|
2001-02-16 13:14:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
class BSeqOutputStream
|
|
|
|
: public ::cppu::WeakImplHelper1< io::XOutputStream >
|
|
|
|
{
|
|
|
|
ByteSequence * _seq;
|
|
|
|
|
|
|
|
public:
|
2015-05-20 15:59:12 +01:00
|
|
|
explicit BSeqOutputStream( ByteSequence * seq )
|
2001-02-16 13:14:51 +00:00
|
|
|
: _seq( seq )
|
|
|
|
{}
|
|
|
|
|
|
|
|
// XOutputStream
|
|
|
|
virtual void SAL_CALL writeBytes(
|
|
|
|
Sequence< sal_Int8 > const & rData )
|
2014-03-26 16:37:00 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception) SAL_OVERRIDE;
|
2001-02-16 13:14:51 +00:00
|
|
|
virtual void SAL_CALL flush()
|
2014-03-26 16:37:00 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception) SAL_OVERRIDE;
|
2001-02-16 13:14:51 +00:00
|
|
|
virtual void SAL_CALL closeOutput()
|
2014-03-26 16:37:00 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception) SAL_OVERRIDE;
|
2001-02-16 13:14:51 +00:00
|
|
|
};
|
2013-08-11 15:22:59 +02:00
|
|
|
|
2001-02-16 13:14:51 +00:00
|
|
|
void BSeqOutputStream::writeBytes( Sequence< sal_Int8 > const & rData )
|
2014-02-25 21:31:58 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception)
|
2001-02-16 13:14:51 +00:00
|
|
|
{
|
|
|
|
sal_Int32 nPos = _seq->getLength();
|
|
|
|
_seq->realloc( nPos + rData.getLength() );
|
2015-01-19 15:12:50 +01:00
|
|
|
memcpy( _seq->getArray() + nPos,
|
|
|
|
rData.getConstArray(),
|
2001-02-16 13:14:51 +00:00
|
|
|
rData.getLength() );
|
|
|
|
}
|
|
|
|
void BSeqOutputStream::flush()
|
2014-02-25 21:31:58 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception)
|
2001-02-16 13:14:51 +00:00
|
|
|
{
|
|
|
|
}
|
2013-08-11 15:22:59 +02:00
|
|
|
|
2001-02-16 13:14:51 +00:00
|
|
|
void BSeqOutputStream::closeOutput()
|
2014-02-25 21:31:58 +01:00
|
|
|
throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception)
|
2001-02-16 13:14:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Reference< io::XInputStream > SAL_CALL createInputStream( ByteSequence const & rInData )
|
|
|
|
{
|
|
|
|
return new BSeqInputStream( rInData );
|
|
|
|
}
|
|
|
|
|
|
|
|
Reference< io::XOutputStream > SAL_CALL createOutputStream( ByteSequence * pOutData )
|
|
|
|
{
|
|
|
|
return new BSeqOutputStream( pOutData );
|
|
|
|
}
|
|
|
|
|
2006-06-20 04:11:06 +00:00
|
|
|
}
|
2010-10-12 15:53:47 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|