summaryrefslogtreecommitdiff
path: root/indra/llcommon/llfixedbuffer.cpp
blob: ca7bf1ce485df46c724c7b6e902d0ce20ebcc849 (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
/** 
 * @file llfixedbuffer.cpp
 *
 * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
 * $License$
 */
#include "linden_common.h"

#include "llfixedbuffer.h"

LLFixedBuffer::LLFixedBuffer(const U32 max_lines)
{
	mMaxLines = max_lines;
	mTimer.reset();
}


LLFixedBuffer::~LLFixedBuffer()
{
	clear();
}


void LLFixedBuffer::clear()
{
	mLines.clear();
	mAddTimes.clear();
	mLineLengths.clear();

	mTimer.reset();
}


void LLFixedBuffer::addLine(const LLString& utf8line)
{
	LLWString wstring = utf8str_to_wstring(utf8line);
	LLFixedBuffer::addLine(wstring);
}

void LLFixedBuffer::addLine(const LLWString& line)
{
	if (line.empty())
	{
		return;
	}

	removeExtraLines();

	mLines.push_back(line);
	mLineLengths.push_back((S32)line.length());
	mAddTimes.push_back(mTimer.getElapsedTimeF32());
}


void LLFixedBuffer::setMaxLines(S32 max_lines)
{
	mMaxLines = max_lines;

	removeExtraLines();
}


void LLFixedBuffer::removeExtraLines()
{
	while ((S32)mLines.size() > llmax(0, (S32)(mMaxLines - 1)))
	{
		mLines.pop_front();
		mAddTimes.pop_front();
		mLineLengths.pop_front();
	}
}