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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
|
/*
* Copyright (C) 2005-2009 Team XBMC
* http://www.xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*
*/
#include "GUIControlProfiler.h"
#include "tinyXML/tinyxml.h"
#include "utils/TimeUtils.h"
bool CGUIControlProfiler::m_bIsRunning = false;
CGUIControlProfilerItem::CGUIControlProfilerItem(CGUIControlProfiler *pProfiler, CGUIControlProfilerItem *pParent, CGUIControl *pControl)
: m_pProfiler(pProfiler), m_pParent(pParent), m_pControl(pControl), m_visTime(0), m_renderTime(0)
{
if (m_pControl)
{
m_controlID = m_pControl->GetID();
m_ControlType = m_pControl->GetControlType();
m_strDescription = m_pControl->GetDescription();
}
else
{
m_controlID = 0;
m_ControlType = CGUIControl::GUICONTROL_UNKNOWN;
}
}
CGUIControlProfilerItem::~CGUIControlProfilerItem(void)
{
Reset(NULL);
}
void CGUIControlProfilerItem::Reset(CGUIControlProfiler *pProfiler)
{
m_controlID = 0;
m_ControlType = CGUIControl::GUICONTROL_UNKNOWN;
m_pControl = NULL;
m_visTime = 0;
m_renderTime = 0;
const unsigned int dwSize = m_vecChildren.size();
for (unsigned int i=0; i<dwSize; ++i)
delete m_vecChildren[i];
m_vecChildren.clear();
m_pProfiler = pProfiler;
}
void CGUIControlProfilerItem::BeginVisibility(void)
{
m_i64VisStart = CurrentHostCounter();
}
void CGUIControlProfilerItem::EndVisibility(void)
{
m_visTime += (unsigned int)(m_pProfiler->m_fPerfScale * (CurrentHostCounter() - m_i64VisStart));
}
void CGUIControlProfilerItem::BeginRender(void)
{
m_i64RenderStart = CurrentHostCounter();
}
void CGUIControlProfilerItem::EndRender(void)
{
m_renderTime += (unsigned int)(m_pProfiler->m_fPerfScale * (CurrentHostCounter() - m_i64RenderStart));
}
void CGUIControlProfilerItem::SaveToXML(TiXmlElement *parent)
{
TiXmlElement *xmlControl = new TiXmlElement("control");
parent->LinkEndChild(xmlControl);
const char *lpszType = NULL;
switch (m_ControlType)
{
case CGUIControl::GUICONTROL_BUTTON:
lpszType = "button"; break;
case CGUIControl::GUICONTROL_CHECKMARK:
lpszType = "checkmark"; break;
case CGUIControl::GUICONTROL_FADELABEL:
lpszType = "fadelabel"; break;
case CGUIControl::GUICONTROL_IMAGE:
case CGUIControl::GUICONTROL_BORDEREDIMAGE:
lpszType = "image"; break;
case CGUIControl::GUICONTROL_LARGE_IMAGE:
lpszType = "largeimage"; break;
case CGUIControl::GUICONTROL_LABEL:
lpszType = "label"; break;
case CGUIControl::GUICONTROL_LISTGROUP:
lpszType = "group"; break;
case CGUIControl::GUICONTROL_PROGRESS:
lpszType = "progress"; break;
case CGUIControl::GUICONTROL_RADIO:
lpszType = "radiobutton"; break;
case CGUIControl::GUICONTROL_RSS:
lpszType = "rss"; break;
case CGUIControl::GUICONTROL_SELECTBUTTON:
lpszType = "selectbutton"; break;
case CGUIControl::GUICONTROL_SLIDER:
lpszType = "slider"; break;
case CGUIControl::GUICONTROL_SETTINGS_SLIDER:
lpszType = "sliderex"; break;
case CGUIControl::GUICONTROL_SPIN:
lpszType = "spincontrol"; break;
case CGUIControl::GUICONTROL_SPINEX:
lpszType = "spincontrolex"; break;
case CGUIControl::GUICONTROL_TEXTBOX:
lpszType = "textbox"; break;
case CGUIControl::GUICONTROL_TOGGLEBUTTON:
lpszType = "togglebutton"; break;
case CGUIControl::GUICONTROL_VIDEO:
lpszType = "videowindow"; break;
case CGUIControl::GUICONTROL_MOVER:
lpszType = "mover"; break;
case CGUIControl::GUICONTROL_RESIZE:
lpszType = "resize"; break;
case CGUIControl::GUICONTROL_BUTTONBAR:
lpszType = "buttonscroller"; break;
case CGUIControl::GUICONTROL_EDIT:
lpszType = "edit"; break;
case CGUIControl::GUICONTROL_VISUALISATION:
lpszType = "visualisation"; break;
case CGUIControl::GUICONTROL_MULTI_IMAGE:
lpszType = "multiimage"; break;
case CGUIControl::GUICONTROL_GROUP:
lpszType = "group"; break;
case CGUIControl::GUICONTROL_GROUPLIST:
lpszType = "grouplist"; break;
case CGUIControl::GUICONTROL_SCROLLBAR:
lpszType = "scrollbar"; break;
case CGUIControl::GUICONTROL_LISTLABEL:
lpszType = "label"; break;
case CGUIControl::GUICONTROL_MULTISELECT:
lpszType = "multiselect"; break;
case CGUIControl::GUICONTAINER_LIST:
lpszType = "list"; break;
case CGUIControl::GUICONTAINER_WRAPLIST:
lpszType = "wraplist"; break;
case CGUIControl::GUICONTAINER_FIXEDLIST:
lpszType = "fixedlist"; break;
case CGUIControl::GUICONTAINER_PANEL:
lpszType = "panel"; break;
//case CGUIControl::GUICONTROL_UNKNOWN:
default:
break;
}
if (lpszType)
xmlControl->SetAttribute("type", lpszType);
if (m_controlID != 0)
{
CStdString str;
str.Format("%u", m_controlID);
xmlControl->SetAttribute("id", str.c_str());
}
float pct = (float)GetTotalTime() / (float)m_pProfiler->GetTotalTime();
if (pct > 0.01f)
{
CStdString str;
str.Format("%.0f", pct * 100.0f);
xmlControl->SetAttribute("percent", str.c_str());
}
if (!m_strDescription.IsEmpty())
{
TiXmlElement *elem = new TiXmlElement("description");
xmlControl->LinkEndChild(elem);
TiXmlText *text = new TiXmlText(m_strDescription.c_str());
elem->LinkEndChild(text);
}
// Note time is stored in 1/100 milliseconds but reported in ms
unsigned int vis = m_visTime / 100;
unsigned int rend = m_renderTime / 100;
if (vis || rend)
{
CStdString val;
TiXmlElement *elem = new TiXmlElement("rendertime");
xmlControl->LinkEndChild(elem);
val.Format("%u", rend);
TiXmlText *text = new TiXmlText(val.c_str());
elem->LinkEndChild(text);
elem = new TiXmlElement("visibletime");
xmlControl->LinkEndChild(elem);
val.Format("%u", vis);
text = new TiXmlText(val.c_str());
elem->LinkEndChild(text);
}
if (m_vecChildren.size())
{
TiXmlElement *xmlChilds = new TiXmlElement("children");
xmlControl->LinkEndChild(xmlChilds);
const unsigned int dwSize = m_vecChildren.size();
for (unsigned int i=0; i<dwSize; ++i)
m_vecChildren[i]->SaveToXML(xmlChilds);
}
}
CGUIControlProfilerItem *CGUIControlProfilerItem::AddControl(CGUIControl *pControl)
{
m_vecChildren.push_back(new CGUIControlProfilerItem(m_pProfiler, this, pControl));
return m_vecChildren.back();
}
CGUIControlProfilerItem *CGUIControlProfilerItem::FindOrAddControl(CGUIControl *pControl, bool recurse)
{
const unsigned int dwSize = m_vecChildren.size();
for (unsigned int i=0; i<dwSize; ++i)
{
CGUIControlProfilerItem *p = m_vecChildren[i];
if (p->m_pControl == pControl)
return p;
if (recurse && (p = p->FindOrAddControl(pControl, true)))
return p;
}
if (pControl->GetParentControl() == m_pControl)
return AddControl(pControl);
return NULL;
}
CGUIControlProfiler::CGUIControlProfiler(void)
: m_ItemHead(NULL, NULL, NULL), m_pLastItem(NULL), m_iMaxFrameCount(200)
// m_bIsRunning(false), no isRunning because it is static
{
m_fPerfScale = 100000.0f / CurrentHostFrequency();
}
CGUIControlProfiler &CGUIControlProfiler::Instance(void)
{
static CGUIControlProfiler _instance;
return _instance;
}
bool CGUIControlProfiler::IsRunning(void)
{
return m_bIsRunning;
}
void CGUIControlProfiler::Start(void)
{
m_iFrameCount = 0;
m_bIsRunning = true;
m_pLastItem = NULL;
m_ItemHead.Reset(this);
}
void CGUIControlProfiler::BeginVisibility(CGUIControl *pControl)
{
CGUIControlProfilerItem *item = FindOrAddControl(pControl);
item->BeginVisibility();
}
void CGUIControlProfiler::EndVisibility(CGUIControl *pControl)
{
CGUIControlProfilerItem *item = FindOrAddControl(pControl);
item->EndVisibility();
}
void CGUIControlProfiler::BeginRender(CGUIControl *pControl)
{
CGUIControlProfilerItem *item = FindOrAddControl(pControl);
item->BeginRender();
}
void CGUIControlProfiler::EndRender(CGUIControl *pControl)
{
CGUIControlProfilerItem *item = FindOrAddControl(pControl);
item->EndRender();
}
CGUIControlProfilerItem *CGUIControlProfiler::FindOrAddControl(CGUIControl *pControl)
{
if (m_pLastItem)
{
// Typically calls come in pairs so the last control we found is probably
// the one we want again next time
if (m_pLastItem->m_pControl == pControl)
return m_pLastItem;
// If that control is not a match, usually the one we want is the next
// sibling of that control, or the parent of that control so check
// the parent first as it is more convenient
m_pLastItem = m_pLastItem->m_pParent;
if (m_pLastItem && m_pLastItem->m_pControl == pControl)
return m_pLastItem;
// continued from above, this searches the original control's siblings
if (m_pLastItem)
m_pLastItem = m_pLastItem->FindOrAddControl(pControl, false);
if (m_pLastItem)
return m_pLastItem;
}
m_pLastItem = m_ItemHead.FindOrAddControl(pControl, true);
if (!m_pLastItem)
m_pLastItem = m_ItemHead.AddControl(pControl);
return m_pLastItem;
}
void CGUIControlProfiler::EndFrame(void)
{
m_iFrameCount++;
if (m_iFrameCount >= m_iMaxFrameCount)
{
const unsigned int dwSize = m_ItemHead.m_vecChildren.size();
for (unsigned int i=0; i<dwSize; ++i)
{
CGUIControlProfilerItem *p = m_ItemHead.m_vecChildren[i];
m_ItemHead.m_visTime += p->m_visTime;
m_ItemHead.m_renderTime += p->m_renderTime;
}
m_bIsRunning = false;
if (SaveResults())
m_ItemHead.Reset(this);
}
}
bool CGUIControlProfiler::SaveResults(void)
{
if (m_strOutputFile.IsEmpty())
return false;
TiXmlDocument doc;
TiXmlDeclaration decl("1.0", "", "yes");
doc.InsertEndChild(decl);
TiXmlElement *root = new TiXmlElement("guicontrolprofiler");
CStdString str;
str.Format("%d", m_iFrameCount);
root->SetAttribute("framecount", str.c_str());
root->SetAttribute("timeunit", "ms");
doc.LinkEndChild(root);
m_ItemHead.SaveToXML(root);
return doc.SaveFile(m_strOutputFile);
}
|