blob: 943f27c2bc98170681eb5364adea3c6996b26821 [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.
*/
#ifndef _DECAF_IO_STANDARDERROROUTPUTSTREAM_H_
#define _DECAF_IO_STANDARDERROROUTPUTSTREAM_H_
#include <decaf/io/OutputStream.h>
#include <decaf/util/concurrent/Mutex.h>
#include <iostream>
namespace decaf{
namespace io{
class DECAF_API StandardErrorOutputStream : public OutputStream {
private:
/**
* Synchronization object.
*/
util::concurrent::Mutex mutex;
public:
/**
* Default Constructor
*/
StandardErrorOutputStream(void) {}
virtual ~StandardErrorOutputStream(void) {}
/**
* Writes a single byte to the output stream.
* @param c the byte.
* @throws IOException thrown if an error occurs.
*/
virtual void write( unsigned char c )
throw ( IOException ) {
std::cerr << c;
}
/**
* Writes an array of bytes to the output stream.
* @param buffer The bytes to write.
* @throws IOException thrown if an error occurs.
*/
virtual void write( const std::vector<unsigned char>& buffer )
throw ( IOException ) {
if( buffer.empty() ){
return;
}
this->write( &buffer[0], 0, buffer.size() );
}
/**
* Writes an array of bytes to the output stream.
* @param buffer The array of bytes to write.
* @param offset, the position to start writing in buffer.
* @param len The number of bytes from the buffer to be written.
* @throws IOException thrown if an error occurs.
* @throws NullPointerException if buffer is null.
*/
virtual void write( const unsigned char* buffer,
std::size_t offset,
std::size_t len )
throw ( IOException, lang::exceptions::NullPointerException ) {
if( buffer == NULL ) {
throw lang::exceptions::NullPointerException(
__FILE__, __LINE__,
"StandardErrorOutputStream::write - Passed buffer is null." );
}
for( int i = 0; i < len; ++i ) {
std::cerr << buffer[i+offset];
}
}
/**
* Invokes flush on the target output stream.
* throws IOException if an error occurs
*/
virtual void flush() throw ( IOException ){
std::cerr.flush();
}
/**
* Invokes close on the target output stream.
* throws CMSException if an error occurs
*/
void close() throw( lang::Exception ){
std::cerr.flush();
}
public:
/**
* Waits on a signal from this object, which is generated
* by a call to Notify. Must have this object locked before
* calling.
* @throws Exception
*/
virtual void lock() throw( Exception ){
mutex.lock();
}
/**
* Unlocks the object.
* @throws Exception
*/
virtual void unlock() throw( lang::Exception ){
mutex.unlock();
}
/**
* Waits on a signal from this object, which is generated
* by a call to Notify. Must have this object locked before
* calling.
* @throws Exception
*/
virtual void wait() throw( lang::Exception ){
mutex.wait();
}
/**
* Waits on a signal from this object, which is generated
* by a call to Notify. Must have this object locked before
* calling. This wait will timeout after the specified time
* interval.
* @param time in millisecsonds to wait, or WAIT_INIFINITE
* @throws Exception
*/
virtual void wait( unsigned long millisecs ) throw( lang::Exception ){
mutex.wait( millisecs );
}
/**
* Signals a waiter on this object that it can now wake
* up and continue. Must have this object locked before
* calling.
* @throws Exception
*/
virtual void notify() throw( lang::Exception ){
mutex.notify();
}
/**
* Signals the waiters on this object that it can now wake
* up and continue. Must have this object locked before
* calling.
* @throws Exception
*/
virtual void notifyAll() throw( lang::Exception ){
mutex.notifyAll();
}
};
}
#endif /*_DECAF_IO_STANDARDERROROUTPUTSTREAM_H_*/