blob: f30364850dadeffbf41a5cb76a2d69b292c65940 [file] [log] [blame]
/*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "BlockingByteArrayInputStream.h"
#include <algorithm>
using namespace std;
using namespace activemq;
using namespace activemq::io;
using namespace activemq::exceptions;
////////////////////////////////////////////////////////////////////////////////
BlockingByteArrayInputStream::BlockingByteArrayInputStream(){
pos = buffer.end();
closing = false;
}
////////////////////////////////////////////////////////////////////////////////
BlockingByteArrayInputStream::BlockingByteArrayInputStream(
const unsigned char* buffer,
std::size_t bufferSize ){
closing = false;
setByteArray( buffer, bufferSize );
}
////////////////////////////////////////////////////////////////////////////////
BlockingByteArrayInputStream::~BlockingByteArrayInputStream(){
}
////////////////////////////////////////////////////////////////////////////////
void BlockingByteArrayInputStream::setByteArray( const unsigned char* lbuffer,
std::size_t lbufferSize ){
synchronized( this ){
// Remove old data
this->buffer.clear();
this->buffer.reserve( lbufferSize );
// Copy data to internal buffer.
std::back_insert_iterator< std::vector<unsigned char> > iter( this->buffer );
std::copy( lbuffer, lbuffer + lbufferSize, iter );
// Begin at the Beginning.
pos = this->buffer.begin();
// Notify any listening threds that there is now data available.
notifyAll();
}
}
////////////////////////////////////////////////////////////////////////////////
void BlockingByteArrayInputStream::close() throw (cms::CMSException){
synchronized( this ){
// Indicate that we're shutting down.
closing = true;
// Clear out the buffer.
buffer.clear();
// Notify that this stream is shutting down.
notifyAll();
}
}
////////////////////////////////////////////////////////////////////////////////
unsigned char BlockingByteArrayInputStream::read() throw ( IOException ){
synchronized( this ){
while( !closing ){
if( pos != buffer.end() ){
return *(pos++);
}
// Wait for more data
wait();
}
throw IOException( __FILE__, __LINE__, "close occurred during read" );
}
return 0;
}
////////////////////////////////////////////////////////////////////////////////
std::size_t BlockingByteArrayInputStream::read( unsigned char* buffer,
std::size_t bufferSize )
throw ( IOException ){
synchronized( this ){
std::size_t ix = 0;
for( ; ix < bufferSize && !closing; ++ix, ++pos)
{
if(pos == this->buffer.end())
{
// Wait for more data to come in.
wait();
}
if( !closing ){
buffer[ix] = *(pos);
}
}
if( closing ){
throw IOException( __FILE__, __LINE__, "close occurred during read" );
}
return ix;
}
return 0;
}
////////////////////////////////////////////////////////////////////////////////
std::size_t BlockingByteArrayInputStream::skip( std::size_t num )
throw ( io::IOException, exceptions::UnsupportedOperationException ){
std::size_t ix = 0;
synchronized( this ){
// Increment the pos until we'v skipped the desired num
// or we've hit the end of the buffer.
for( ; ix < num && !closing && pos != buffer.end(); ++ix, ++pos) {}
}
return ix;
}