/* * Copyright 2003,2004 The Apache Software Foundation. * * Licensed 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 #include #include using namespace log4cxx; using namespace log4cxx::helpers; using namespace log4cxx::spi; /** Instantiate a new CyclicBuffer of at most maxSize events. The maxSize argument must a positive integer. @param maxSize The maximum number of elements in the buffer. */ CyclicBuffer::CyclicBuffer(int maxSize) : maxSize(maxSize), first(0), last(0), numElems(0), ea(maxSize) { if(maxSize < 1) { StringBuffer oss; oss << _T("The maxSize argument (") << maxSize << _T(") is not a positive integer."); throw new IllegalArgumentException(oss.str()); } } CyclicBuffer::~CyclicBuffer() { } /** Add an event as the last event in the buffer. */ void CyclicBuffer::add(const spi::LoggingEventPtr& event) { ea[last] = event; if(++last == maxSize) { last = 0; } if(numElems < maxSize) { numElems++; } else if(++first == maxSize) { first = 0; } } /** Get the ith oldest event currently in the buffer. If i is outside the range 0 to the number of elements currently in the buffer, then null is returned. */ spi::LoggingEventPtr CyclicBuffer::get(int i) { if(i < 0 || i >= numElems) return 0; return ea[(first + i) % maxSize]; } /** Get the oldest (first) element in the buffer. The oldest element is removed from the buffer. */ spi::LoggingEventPtr CyclicBuffer::get() { LoggingEventPtr r; if(numElems > 0) { numElems--; r = ea[first]; ea[first] = 0; if(++first == maxSize) { first = 0; } } return r; } /** Resize the cyclic buffer to newSize. @throws IllegalArgumentException if newSize is negative. */ void CyclicBuffer::resize(int newSize) { if(newSize < 0) { StringBuffer oss; oss << _T("Negative array size [") << newSize << _T("] not allowed."); throw new IllegalArgumentException(oss.str()); } if(newSize == numElems) return; // nothing to do std::vector temp(newSize); int loopLen = newSize < numElems ? newSize : numElems; int i; for(i = 0; i < loopLen; i++) { temp[i] = ea[first]; ea[first] = 0; if(++first == numElems) first = 0; } ea = temp; first = 0; numElems = loopLen; maxSize = newSize; if (loopLen == newSize) { last = 0; } else { last = loopLen; } }