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
|
#include "profiletablemodel.h"
#include "profiledialog.h"
#include "profiling.h"
#include <QLocale>
typedef trace::Profile::Call Call;
typedef trace::Profile::Frame Frame;
typedef trace::Profile::Program Program;
enum {
COLUMN_PROGRAM,
COLUMN_USAGES,
COLUMN_GPU_TIME,
COLUMN_CPU_TIME,
COLUMN_PIXELS_DRAWN,
COLUMN_GPU_AVERAGE,
COLUMN_CPU_AVERAGE,
COLUMN_PIXELS_AVERAGE,
MAX_COLUMN
};
static QString columnNames[] = {
QString("Program"),
QString("Calls"),
QString("Total GPU Time"),
QString("Total CPU Time"),
QString("Total Pixels Drawn"),
QString("Avg GPU Time"),
QString("Avg CPU Time"),
QString("Avg Pixels Drawn")
};
ProfileTableModel::ProfileTableModel(QObject *parent)
: QAbstractTableModel(parent),
m_profile(0),
m_sortColumn(COLUMN_GPU_TIME),
m_sortOrder(Qt::DescendingOrder)
{
}
void ProfileTableModel::setProfile(trace::Profile* profile)
{
m_profile = profile;
m_timeMin = m_profile->frames.front().cpuStart;
m_timeMax = m_profile->frames.back().cpuStart + m_profile->frames.back().cpuDuration;
updateModel();
}
/**
* Set selection to nothing
*/
void ProfileTableModel::selectNone()
{
m_timeMin = m_timeMax = 0;
updateModel();
sort(m_sortColumn, m_sortOrder);
}
/**
* Set selection to program
*/
void ProfileTableModel::selectProgram(unsigned /*program*/)
{
/* We have no program based selection for table */
selectNone();
}
/**
* Set selection to a period of time
*/
void ProfileTableModel::selectTime(int64_t start, int64_t end)
{
m_timeMin = start;
m_timeMax = end;
updateModel();
sort(m_sortColumn, m_sortOrder);
}
/**
* Creates the row data from trace profile
*/
void ProfileTableModel::updateModel()
{
if (m_timeMin == m_timeMax) {
m_timeMin = m_profile->frames.front().cpuStart;
m_timeMax = m_profile->frames.back().cpuStart + m_profile->frames.back().cpuDuration;
}
for (auto & row : m_rowData) {
row.uses = 0;
row.pixels = 0;
row.gpuTime = 0;
row.cpuTime = 0;
row.longestCpu = NULL;
row.longestGpu = NULL;
row.longestPixel = NULL;
}
for (std::vector<Program>::const_iterator itr = m_profile->programs.begin(); itr != m_profile->programs.end(); ++itr) {
ProfileTableRow* row = NULL;
const Program& program = *itr;
for (const auto & callNo : program.calls) {
const Call& call = m_profile->calls[callNo];
if (call.cpuStart > m_timeMax) {
break;
}
if (call.cpuStart + call.cpuDuration < m_timeMin) {
continue;
}
if (!row) {
row = getRow(itr - m_profile->programs.begin());
}
row->uses++;
row->pixels += call.pixels;
row->gpuTime += call.gpuDuration;
row->cpuTime += call.cpuDuration;
if (!row->longestGpu || row->longestGpu->gpuDuration < call.gpuDuration) {
row->longestGpu = &call;
}
if (!row->longestCpu || row->longestCpu->cpuDuration < call.cpuDuration) {
row->longestCpu = &call;
}
if (!row->longestPixel || row->longestPixel->pixels < call.pixels) {
row->longestPixel = &call;
}
}
}
}
/**
* Get the appropriate call associated with an item in the table
*/
const trace::Profile::Call *ProfileTableModel::getJumpCall(const QModelIndex & index) const {
const ProfileTableRow& row = m_rowData[index.row()];
switch(index.column()) {
case COLUMN_GPU_TIME:
case COLUMN_GPU_AVERAGE:
return row.longestGpu;
case COLUMN_CPU_TIME:
case COLUMN_CPU_AVERAGE:
return row.longestCpu;
case COLUMN_PIXELS_DRAWN:
case COLUMN_PIXELS_AVERAGE:
return row.longestPixel;
}
return NULL;
}
/**
* Get the shader program associated with an item in the table
*/
unsigned ProfileTableModel::getProgram(const QModelIndex & index) const
{
const ProfileTableRow& row = m_rowData[index.row()];
return row.program;
}
/**
* Get the row index for a shader program
*/
int ProfileTableModel::getRowIndex(unsigned program) const
{
for (int i = 0; i < m_rowData.size(); ++i) {
if (m_rowData[i].program == program)
return i;
}
return -1;
}
/**
* Get the row data for a shader program
*/
ProfileTableRow* ProfileTableModel::getRow(unsigned program) {
for (auto & row : m_rowData) {
if (row.program == program)
return &row;
}
m_rowData.append(ProfileTableRow(program));
return &m_rowData.back();
}
int ProfileTableModel::rowCount(const QModelIndex & parent) const
{
if (!parent.isValid()) {
return m_rowData.size();
} else {
return 0;
}
}
int ProfileTableModel::columnCount(const QModelIndex & /*parent*/) const
{
return MAX_COLUMN;
}
QVariant ProfileTableModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid()) {
return QVariant();
}
if (role == Qt::DisplayRole) {
const ProfileTableRow& row = m_rowData[index.row()];
switch(index.column()) {
case COLUMN_PROGRAM:
return row.program;
case COLUMN_USAGES:
return QLocale::system().toString(row.uses);
case COLUMN_GPU_TIME:
return Profiling::getTimeString(row.gpuTime);
case COLUMN_CPU_TIME:
return Profiling::getTimeString(row.cpuTime);
case COLUMN_PIXELS_DRAWN:
return QLocale::system().toString((qlonglong)row.pixels);
case COLUMN_GPU_AVERAGE:
return Profiling::getTimeString((row.uses <= 0) ? 0 : (row.gpuTime / row.uses));
case COLUMN_CPU_AVERAGE:
return Profiling::getTimeString((row.uses <= 0) ? 0 : (row.cpuTime / row.uses));
case COLUMN_PIXELS_AVERAGE:
return QLocale::system().toString((row.uses <= 0) ? 0 : (row.pixels / row.uses));
}
} else if (role == Qt::TextAlignmentRole) {
return Qt::AlignRight;
}
return QVariant();
}
QVariant ProfileTableModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (role == Qt::DisplayRole && orientation == Qt::Horizontal) {
if (section >= 0 && section < MAX_COLUMN) {
return columnNames[section];
}
}
return QVariant();
}
class ProgramSorter {
public:
ProgramSorter(int column, Qt::SortOrder order)
: mSortColumn(column),
mSortOrder(order)
{
}
bool operator()(const ProfileTableRow &p1, const ProfileTableRow &p2) const
{
bool result = true;
switch(mSortColumn) {
case COLUMN_PROGRAM:
result = p1.program < p2.program;
break;
case COLUMN_USAGES:
result = p1.uses < p2.uses;
break;
case COLUMN_GPU_TIME:
result = p1.gpuTime < p2.gpuTime;
break;
case COLUMN_CPU_TIME:
result = p1.cpuTime < p2.cpuTime;
break;
case COLUMN_PIXELS_DRAWN:
result = p1.pixels < p2.pixels;
break;
case COLUMN_GPU_AVERAGE:
result = ((p1.uses <= 0) ? 0 : (p1.gpuTime / p1.uses)) < ((p2.uses <= 0) ? 0 : (p2.gpuTime / p2.uses));
break;
case COLUMN_CPU_AVERAGE:
result = ((p1.uses <= 0) ? 0 : (p1.cpuTime / p1.uses)) < ((p2.uses <= 0) ? 0 : (p2.cpuTime / p2.uses));
break;
case COLUMN_PIXELS_AVERAGE:
result = ((p1.uses <= 0) ? 0 : (p1.pixels / p1.uses)) < ((p2.uses <= 0) ? 0 : (p2.pixels / p2.uses));
break;
}
if (mSortOrder == Qt::DescendingOrder) {
return !result;
} else {
return result;
}
}
private:
int mSortColumn;
Qt::SortOrder mSortOrder;
};
void ProfileTableModel::sort(int column, Qt::SortOrder order) {
m_sortColumn = column;
m_sortOrder = order;
qSort(m_rowData.begin(), m_rowData.end(), ProgramSorter(column, order));
emit dataChanged(createIndex(0, 0), createIndex(m_rowData.size(), MAX_COLUMN));
}
#include "profiletablemodel.moc"
|