summaryrefslogtreecommitdiff
path: root/indra/llcommon/lltracerecording.h
blob: 4399a65cfb2d7fe8f73d9746030ab373625d4d80 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/** 
 * @file lltracerecording.h
 * @brief Sampling object for collecting runtime statistics originating from lltrace.
 *
 * $LicenseInfo:firstyear=2001&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2012, Linden Research, Inc.
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * 
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */

#ifndef LL_LLTRACERECORDING_H
#define LL_LLTRACERECORDING_H

#include "stdtypes.h"
#include "llpreprocessor.h"

#include "llpointer.h"
#include "lltimer.h"

template<typename DERIVED>
class LL_COMMON_API LLVCRControlsMixinInterface
{
public:
	virtual ~LLVCRControlsMixinInterface() {}
	// trigger data accumulation (without reset)
	virtual void handleStart() = 0;
	// stop data accumulation, should put object in queryable state
	virtual void handleStop() = 0;
	// clear accumulated values, can be called while started
	virtual void handleReset() = 0;
	// atomically stop this object while starting the other
	// no data can be missed in between stop and start
	virtual void handleSplitTo(DERIVED& other) = 0;
};

template<typename DERIVED>
class LL_COMMON_API LLVCRControlsMixin
:	private LLVCRControlsMixinInterface<DERIVED>
{
public:
	enum EPlayState
	{
		STOPPED,
		PAUSED,
		STARTED
	};

	void start()
	{
		switch (mPlayState)
		{
		case STOPPED:
			handleReset();
			handleStart();
			break;
		case PAUSED:
			handleStart();
			break;
		case STARTED:
			handleReset();
			break;
		}
		mPlayState = STARTED;
	}

	void stop()
	{
		switch (mPlayState)
		{
		case STOPPED:
			break;
		case PAUSED:
			handleStop();
			break;
		case STARTED:
			break;
		}
		mPlayState = STOPPED;
	}

	void pause()
	{
		switch (mPlayState)
		{
		case STOPPED:
			break;
		case PAUSED:
			break;
		case STARTED:
			handleStop();
			break;
		}
		mPlayState = PAUSED;
	}

	void resume()
	{
		switch (mPlayState)
		{
		case STOPPED:
			handleStart();
			break;
		case PAUSED:
			handleStart();
			break;
		case STARTED:
			break;
		}
		mPlayState = STARTED;
	}

	void restart()
	{
		switch (mPlayState)
		{
		case STOPPED:
			handleReset();
			handleStart();
			break;
		case PAUSED:
			handleReset();
			handleStart();
			break;
		case STARTED:
			handleReset();
			break;
		}
		mPlayState = STARTED;
	}

	void reset()
	{
		handleReset();
	}

	void splitTo(DERIVED& other)
	{
		onSplitTo(other);
	}

	void splitFrom(DERIVED& other)
	{
		other.onSplitTo(*this);
	}

	bool isStarted() { return mPlayState == STARTED; }
	bool isPaused()  { return mPlayState == PAUSED; }
	bool isStopped() { return mPlayState == STOPPED; }
	EPlayState getPlayState() { return mPlayState; }

protected:

	LLVCRControlsMixin()
	:	mPlayState(STOPPED)
	{}

private:
	EPlayState mPlayState;
};

namespace LLTrace
{
	template<typename T, typename IS_UNIT> class Rate;
	template<typename T, typename IS_UNIT> class Measurement;
	template<typename T> class Count;
	template<typename T> class AccumulatorBuffer;
	template<typename T> class RateAccumulator;
	template<typename T> class MeasurementAccumulator;
	class TimerAccumulator;

	class LL_COMMON_API Recording : public LLVCRControlsMixin<Recording>
	{
	public:
		Recording();

		~Recording();

		void makePrimary();
		bool isPrimary();

		void mergeRecording(const Recording& other);
		void mergeDeltas(const Recording& baseline, const Recording& target);

		void reset();
		void update();
		
		// Rate accessors
		F32 getSum(const Rate<F32, void>& stat);
		F32 getPerSec(const Rate<F32, void>& stat);

		// Measurement accessors
		F32 getSum(const Measurement<F32, void>& stat);
		F32 getPerSec(const Measurement<F32, void>& stat);
		F32 getMin(const Measurement<F32, void>& stat);
		F32 getMax(const Measurement<F32, void>& stat);
		F32 getMean(const Measurement<F32, void>& stat);
		F32 getStandardDeviation(const Measurement<F32, void>& stat);

		// Count accessors
		F32 getSum(const Count<F32>& stat);
		F32 getPerSec(const Count<F32>& stat);
		F32 getIncrease(const Count<F32>& stat);
		F32 getIncreasePerSec(const Count<F32>& stat);
		F32 getDecrease(const Count<F32>& stat);
		F32 getDecreasePerSec(const Count<F32>& stat);
		F32 getChurn(const Count<F32>& stat);
		F32 getChurnPerSec(const Count<F32>& stat);

		F64 getSampleTime() { return mElapsedSeconds; }

	private:
		friend class PeriodicRecording;
		// implementation for LLVCRControlsMixin
		/*virtual*/ void handleStart();
		/*virtual*/ void handleStop();
		/*virtual*/ void handleReset();
		/*virtual*/ void handleSplitTo(Recording& other);


		friend class ThreadRecorder;
		// returns data for current thread
		class ThreadRecorder* getThreadRecorder(); 

		LLCopyOnWritePointer<AccumulatorBuffer<RateAccumulator<F32> > >			mRates;
		LLCopyOnWritePointer<AccumulatorBuffer<MeasurementAccumulator<F32> > >	mMeasurements;
		LLCopyOnWritePointer<AccumulatorBuffer<TimerAccumulator> >				mStackTimers;

		LLTimer			mSamplingTimer;
		F64				mElapsedSeconds;
	};

	class LL_COMMON_API PeriodicRecording
	:	public LLVCRControlsMixin<PeriodicRecording>
	{
	public:
		PeriodicRecording(S32 num_periods)
		:	mNumPeriods(num_periods),
			mCurPeriod(0),
			mTotalValid(false),
			mRecordingPeriods(new Recording[num_periods])
		{
			llassert(mNumPeriods > 0);
		}

		~PeriodicRecording()
		{
			delete[] mRecordingPeriods;
		}

		void nextPeriod()
		{
			EPlayState play_state = getPlayState();
			getCurRecordingPeriod().stop();
			mCurPeriod = (mCurPeriod + 1) % mNumPeriods;
			switch(play_state)
			{
			case STOPPED:
				break;
			case PAUSED:
				getCurRecordingPeriod().pause();
				break;
			case STARTED:
				getCurRecordingPeriod().start();
				break;
			}
			// new period, need to recalculate total
			mTotalValid = false;
		}

		Recording& getCurRecordingPeriod()
		{
			return mRecordingPeriods[mCurPeriod];
		}

		const Recording& getCurRecordingPeriod() const
		{
			return mRecordingPeriods[mCurPeriod];
		}

		Recording& getTotalRecording()
		{
			if (!mTotalValid)
			{
				mTotalRecording.reset();
				for (S32 i = (mCurPeriod + 1) % mNumPeriods; i < mCurPeriod; i++)
				{
					mTotalRecording.mergeRecording(mRecordingPeriods[i]);
				}
			}
			mTotalValid = true;
			return mTotalRecording;
		}

	private:
		// implementation for LLVCRControlsMixin
		/*virtual*/ void handleStart()
		{
			getCurRecordingPeriod().handleStart();
		}

		/*virtual*/ void handleStop()
		{
			getCurRecordingPeriod().handleStop();
		}

		/*virtual*/ void handleReset()
		{
			getCurRecordingPeriod().handleReset();
		}

		/*virtual*/ void handleSplitTo(PeriodicRecording& other)
		{
			getCurRecordingPeriod().handleSplitTo(other.getCurRecordingPeriod());
		}

		Recording*	mRecordingPeriods;
		Recording	mTotalRecording;
		bool		mTotalValid;
		S32			mNumPeriods,
					mCurPeriod;
	};
}

#endif // LL_LLTRACERECORDING_H