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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
|
/**************************************************************************\
*
* This file is part of the Coin 3D visualization library.
* Copyright (C) by Kongsberg Oil & Gas Technologies.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.GPL at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using Coin with software that can not be combined with the GNU
* GPL, and for taking advantage of the additional benefits of our
* support services, please contact Kongsberg Oil & Gas Technologies
* about acquiring a Coin Professional Edition License.
*
* See http://www.coin3d.org/ for more information.
*
* Kongsberg Oil & Gas Technologies, Bygdoy Alle 5, 0257 Oslo, NORWAY.
* http://www.sim.no/ sales@sim.no coin-support@coin3d.org
*
\**************************************************************************/
// This page ends up under Modules => Scene Graph Profiling ...
/*!
\page profiling_intro
<h2>Enabling profiling in Coin</h2>
To enable profiling in Coin, use the environment variable \ref
COIN_PROFILER. When profiling is enabled, Coin will gather
profiling data during every scene graph traversal by any action.
<h2>Enabling the default profiling display</h2>
To get some profiling data shown on the screen, you also need to use
the \ref COIN_PROFILER_OVERLAY environment variable.
This will give you the default profiling graphics, which
shows a top-list of node timings categorized by node types, a
scrolling graph of action traversal timings, and a scene graph
navigator for closer scene graph inspection.
<h2>Read the profiling data</h2>
The SoProfilerStats node can be used to fetch the profiling data in the
scene graph. If it is positioned anywhere in the scene graph, the
fields of the node will be updated every time SoGLRenderAction is
applied to the scene graph, with profiling data gathered from every
traversal through the scene graph since the last SoGLRenderAction, up
to the point where SoProfilerStats is located. Depending of how you
wish to use the data, either attach sensors to the fields, or connect
the the fields on other coin nodes to the fields on SoProfilerStats.
\ingroup profiler
*/
/**************************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif // HAVE_CONFIG_H
#include <Inventor/annex/Profiler/SoProfiler.h>
#include "profiler/SoProfilerP.h"
#include <string>
#include <vector>
#include <Inventor/errors/SoDebugError.h>
#include <Inventor/SoType.h>
#include <Inventor/actions/SoActions.h>
#include <Inventor/nodekits/SoNodeKit.h>
#include <Inventor/annex/Profiler/elements/SoProfilerElement.h>
#include <Inventor/annex/Profiler/nodes/SoProfilerStats.h>
#include <Inventor/annex/Profiler/engines/SoProfilerTopEngine.h>
#include <Inventor/annex/Profiler/utils/SoProfilingReportGenerator.h>
#ifdef HAVE_NODEKITS
#include <Inventor/annex/Profiler/nodekits/SoNodeVisualize.h>
#include <Inventor/annex/Profiler/nodekits/SoProfilerOverlayKit.h>
#include <Inventor/annex/Profiler/nodekits/SoProfilerTopKit.h>
#include <Inventor/annex/Profiler/nodekits/SoScrollingGraphKit.h>
#include <Inventor/annex/Profiler/nodekits/SoProfilerVisualizeKit.h>
#endif // HAVE_NODEKITS
#include "tidbitsp.h"
#include "misc/SoDBP.h"
// *************************************************************************
/*!
\class SoProfiler SoProfiler.h Profiler/SoProfiler.h
\brief Main static class for initializing the scene graph profiling subsystem.
\ingroup profiler
*/
namespace {
namespace profiler {
static SbBool initialized = FALSE;
static SbBool enabled = FALSE;
namespace rendering {
static SbBool syncgl = FALSE;
static float redraw_rate = -1.0f;
};
namespace overlay {
static SbBool active = FALSE;
};
namespace console {
static SbBool active = FALSE;
static SbBool clear = FALSE;
static SbBool header = FALSE;
static int lines = 20;
static SoProfilingReportGenerator::DataCategorization category =
SoProfilingReportGenerator::NODES;
static SoType actiontype = SoType::badType();
static SbBool
static SbBool
};
};
void
tokenize(const std::string & input, const std::string & delimiters, std::vector<std::string> & tokens, int count = -1)
{
std::string::size_type last_pos = 0, pos = 0;
while (TRUE) {
--count;
pos = input.find_first_of(delimiters, last_pos);
if ((pos == std::string::npos) || (count == 0)) {
tokens.push_back(input.substr(last_pos));
break;
} else {
tokens.push_back(input.substr(last_pos, pos - last_pos));
last_pos = pos + 1;
}
}
}
} // namespace
/*!
Initializes the Coin scene graph profiling subsystem.
*/
void
SoProfiler::init(void)
{
if (profiler::initialized) return;
SoProfilerStats::initClass();
SoProfilerTopEngine::initClass();
#ifdef HAVE_NODEKITS
SoNodeKit::init();
SoProfilerOverlayKit::initClass();
SoProfilerVisualizeKit::initClass();
SoProfilerTopKit::initClass();
SoScrollingGraphKit::initClass();
SoNodeVisualize::initClass();
#endif // HAVE_NODEKITS
SoProfilingReportGenerator::init();
profiler::enabled = TRUE;
//SoProfilerP::setActionType(SoRayPickAction::getClassTypeId());
SoProfilerP::parseCoinProfilerOverlayVariable();
profiler::initialized = TRUE;
}
/*!
Returns whether profiling info is shown in an overlay fashion on
the GL canvas or not.
*/
SbBool
SoProfiler::isOverlayActive(void)
{
return SoProfiler::isEnabled() && profiler::overlay::active;
}
/*!
Returns whether profiling info is shown on the console or not.
*/
SbBool
SoProfiler::isConsoleActive(void)
{
return SoProfiler::isEnabled() && profiler::console::active;
}
/*!
Enable/disable the profiling subsystem at runtime.
*/
void
SoProfiler::enable(SbBool enable)
{
if (!profiler::initialized) {
assert(!"SoProfiler module not initialized");
SoDebugError::post("SoProfiler::enable", "module not initialized");
return;
}
profiler::enabled = enable;
}
/*!
Returns whether profiling is enabled or not.
*/
SbBool
SoProfiler::isEnabled(void)
{
return profiler::enabled;
}
SbBool
SoProfilerP::shouldContinuousRender(void)
{
return profiler::rendering::redraw_rate != -1.0f;
}
float
SoProfilerP::getContinuousRenderDelay(void)
{
return profiler::rendering::redraw_rate;
}
SbBool
SoProfilerP::shouldSyncGL(void)
{
return profiler::rendering::syncgl;
}
SbBool
SoProfilerP::shouldClearConsole(void)
{
return profiler::console::clear;
}
SbBool
SoProfilerP::shouldOutputHeaderOnConsole(void)
{
return profiler::console::header;
}
void
SoProfilerP::setActionType(SoType actiontype)
{
#define IF_ACTION(actionname) \
if (actiontype.isDerivedFrom(actionname::getClassTypeId())) { \
SO_ENABLE(actionname, SoProfilerElement); \
profiler::console::actiontype = actiontype; \
}
IF_ACTION(SoGLRenderAction)
else IF_ACTION(SoPickAction)
else IF_ACTION(SoCallbackAction)
else IF_ACTION(SoGetBoundingBoxAction)
else IF_ACTION(SoGetMatrixAction)
else IF_ACTION(SoGetPrimitiveCountAction)
else IF_ACTION(SoHandleEventAction)
else IF_ACTION(SoToVRMLAction)
else IF_ACTION(SoAudioRenderAction)
else IF_ACTION(SoSimplifyAction)
else {
SoDebugError::postInfo("SoProfilerP::setActionType",
"profiling action of type '%s' is not supported",
actiontype.getName().getString());
}
#undef IF_ACTION
}
SoType
SoProfilerP::getActionType(void)
{
if (profiler::console::actiontype == SoType::badType()) {
profiler::console::actiontype = SoGLRenderAction::getClassTypeId();
}
return profiler::console::actiontype;
}
void
SoProfilerP::parseCoinProfilerVariable(void)
{
// variable COIN_PROFILER
// - on
// - syncgl - implies on
// - [nocaching - implies on] // todo
const char * env = coin_getenv(SoDBP::EnvVars::COIN_PROFILER);
if (env == NULL) return;
std::vector<std::string> parameters;
tokenize(env, ":", parameters);
if ((parameters.size() == 1) &&
(parameters[0].find_first_not_of("+-0123456789 \t") == std::string::npos)) {
// just have a numeral value (or nothing) - old semantics
profiler::enabled = atoi(parameters[0].data()) > 0 ? TRUE : FALSE;
}
else if (parameters.size() > 0) {
std::vector<std::string>::iterator it = parameters.begin();
while (it != parameters.end()) {
if ((*it).compare("on") == 0) {
profiler::enabled = TRUE;
}
else if ((*it).compare("off") == 0) {
profiler::enabled = FALSE;
}
else if ((*it).compare("syncgl") == 0) {
profiler::enabled = TRUE;
profiler::rendering::syncgl = TRUE;
}
else {
SoDebugError::postWarning("SoProfilerP::parseCoinProfilerVariable",
"invalid token '%s'", (*it).data());
}
++it;
}
}
}
void
SoProfilerP::parseCoinProfilerOverlayVariable(void)
{
const char * env = coin_getenv(SoDBP::EnvVars::COIN_PROFILER_OVERLAY);
if (env == NULL) return;
std::vector<std::string> parameters;
tokenize(env, ":", parameters);
if (parameters.size() == 1 && atoi(parameters[0].data()) > 0) {
// old behaviour, default setup
profiler::overlay::active = TRUE;
// SoDebugError::postInfo("SoProfiler::initialize", "default old behaviour parsing");
}
else if (parameters.size() > 0) {
// SoDebugError::postInfo("SoProfiler::initialize", "new tokenized parsing");
for (std::vector<std::string>::iterator it = parameters.begin(); it != parameters.end(); ++it) {
if (it == parameters.begin()) {
profiler::overlay::active = TRUE;
}
std::vector<std::string> param, subargs;
tokenize(*it, "=", param, 2);
if (param.size() > 1) {
tokenize(param[1], ",", subargs);
}
// configure if the profiling system should continuously
// schedule redraws to get more "live" data on the overlay
if (param[0].compare("autoredraw") == 0) {
if (param.size() == 1) {
// no argument ->continuous redraws
profiler::rendering::redraw_rate = 0.0f;
} else {
// argument decides redraw-delay-rate
profiler::rendering::redraw_rate = static_cast<float>(atof(param[1].data()));
}
if (profiler::rendering::redraw_rate < 0.0f) {
profiler::rendering::redraw_rate = -1.0f; // -1 exact means no redraws
}
}
else if (param[0].compare("stdout") == 0) {
profiler::overlay::active = FALSE;
profiler::console::active = TRUE;
profiler::console::
}
else if (param[0].compare("stderr") == 0) {
profiler::overlay::active = FALSE;
profiler::console::active = TRUE;
profiler::console::
}
else if (param[0].compare("clear") == 0 && profiler::console::active) {
profiler::console::clear = TRUE;
}
else if (param[0].compare("header") == 0 && profiler::console::active) {
profiler::console::header = TRUE;
}
else if (param[0].compare("lines") == 0) {
if (subargs.size() > 0) {
profiler::console::lines = atoi(subargs[0].data());
if (profiler::console::lines < 0 || profiler::console::lines > 512) {
SoDebugError::postWarning("SoProfiler",
"Number of lines out of range. Seting 20.",
profiler::console::lines);
profiler::console::lines = 20;
}
} else {
SoDebugError::postWarning("SoProfiler",
"'lines' takes a numeric argument.");
}
}
else if (param[0].compare("action") == 0) {
if (subargs.size() > 0) {
SoType actiontype = SoType::fromName(subargs[0].data());
if (actiontype.isDerivedFrom(SoAction::getClassTypeId())) {
SoProfilerP::setActionType(actiontype);
} else {
SoDebugError::postWarning("SoProfiler",
"Classname '%s' does not specify an action type.",
subargs[0].data());
}
} else {
SoDebugError::postWarning("SoProfiler",
"'action' takes a classname as argument.");
}
}
else if (param[0].compare("category") == 0) {
if (subargs.size() > 0) {
if (subargs[0].compare("nodes") == 0) {
profiler::console::category =
SoProfilingReportGenerator::NODES;
} else if (subargs[0].compare("types") == 0) {
profiler::console::category =
SoProfilingReportGenerator::TYPES;
} else if (subargs[0].compare("names") == 0) {
profiler::console::category =
SoProfilingReportGenerator::NAMES;
} else {
SoDebugError::postWarning("SoProfiler",
"'category' argument must be nodes, types, or names - was '%s'.",
subargs[0].data());
}
} else {
SoDebugError::postWarning("SoProfiler",
"'category' must have argument nodes, types, or names.");
}
}
// configure if and how we should display toplists
else if (param[0].compare("toplist") == 0) {
enum TopListType { NODE_TYPE, NODE_NAME, ACTION_TYPE, INVALID } toplisttype = INVALID;
if (subargs.size() > 0 && subargs[0].compare("nodes") == 0) {
// top-list based on node type statistics
toplisttype = NODE_TYPE;
}
else if (subargs.size() > 0 && subargs[0].compare("names") == 0) {
// top-list based on named node statistics
toplisttype = NODE_NAME;
}
else if (subargs.size() > 0 && subargs[0].compare("actions") == 0) {
// top-list based on action type statistics
toplisttype = ACTION_TYPE;
}
else if (subargs.size() > 0) {
// default to node type
toplisttype = INVALID;
}
if (toplisttype != INVALID) {
std::vector<std::string>::iterator it = subargs.begin();
++it;
while (it != subargs.end()) {
std::vector<std::string> subarg;
tokenize((*it).data(), "=", subarg, 2);
if (subarg[0].compare("header") == 0) {
// display header on toplist
}
else if (subarg[0].compare("lines") == 0) {
// needs numeric argument
if (subarg.size() == 2) {
int lines = atoi(subarg[1].data());
} else {
// error: toplist.lines needs a numeric argument`
}
}
else if ((subarg[0].compare("action") == 0) && (toplisttype != ACTION_TYPE)) {
// need name of action
if (subarg.size() == 2) {
SoType actiontype = SoType::fromName(subarg[1].data());
if (actiontype.isDerivedFrom(SoAction::getClassTypeId())) {
SoProfilerP::setActionType(actiontype);
} else {
SoDebugError::postWarning("SoProfiler",
"classname '%s' does not specify an action type",
subarg[1].data());
// error - must specify action type
}
} else {
// error: toplist.action needs an SoAction-derived type name
}
}
else if ((subarg[0].compare("inclusive") == 0) && (toplisttype != ACTION_TYPE)) {
// no argument
}
else if ((subarg[0].compare("exclusive") == 0) && (toplisttype != ACTION_TYPE)) {
// no argument
}
++it;
}
} else {
}
}
// configure charts
else if (param[0].compare("graph") == 0) {
}
// configure scene graph view
else if (param[0].compare("sceneview") == 0) {
}
// fallthrough
else {
SoDebugError::postWarning("SoProfiler::initialize",
"Unknown COIN_PROFILER_OVERLAY parameter '%s'.",
param[0].data());
}
}
// profiler::overlay::active = TRUE;
}
else {
// env variable is empty - don't activate overlay parts
}
}
/*
Default implementation for dumping on console instead of overlaying
statistics over the 3D graphics.
*/
void
SoProfilerP::dumpToConsole(const SbProfilingData & data)
{
SoProfilingReportGenerator::ReportCB * callback = NULL;
if (profiler::console::onstdout) {
callback = SoProfilingReportGenerator::stdoutCB;
}
else if (profiler::console::onstderr) {
callback = SoProfilingReportGenerator::stderrCB;
}
if (!callback) {
return;
}
if (SoProfilerP::shouldClearConsole()) {
// send ansi-console clear screen code
static const char * CLEAR_SEQUENCE = "\033c";
if (profiler::console::onstdout) {
fprintf(coin_get_stdout(), CLEAR_SEQUENCE);
} else if (profiler::console::onstderr) {
fprintf(coin_get_stderr(), CLEAR_SEQUENCE);
}
}
SoProfilingReportGenerator::DataCategorization category =
profiler::console::category;
// set up how to sort the toplist
SbProfilingReportSortCriteria * sortsettings =
SoProfilingReportGenerator::getDefaultReportSortCriteria(category);
// set up how to print the toplist
SbProfilingReportPrintCriteria * printsettings =
SoProfilingReportGenerator::getDefaultReportPrintCriteria(category);
SoProfilingReportGenerator::generate(data,
category,
sortsettings,
printsettings,
profiler::console::lines,
SoProfilerP::shouldOutputHeaderOnConsole(),
callback,
NULL);
SoProfilingReportGenerator::freeCriteria(sortsettings);
SoProfilingReportGenerator::freeCriteria(printsettings);
}
|