LCOV - code coverage report
Current view: top level - src/interfaces - PerfGraphInterface.C (source / functions) Hit Total Coverage
Test: idaholab/moose framework: #31405 (292dce) with base fef103 Lines: 34 34 100.0 %
Date: 2025-09-04 07:52:05 Functions: 9 9 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : //* This file is part of the MOOSE framework
       2             : //* https://mooseframework.inl.gov
       3             : //*
       4             : //* All rights reserved, see COPYRIGHT for full restrictions
       5             : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
       6             : //*
       7             : //* Licensed under LGPL 2.1, please see LICENSE for details
       8             : //* https://www.gnu.org/licenses/lgpl-2.1.html
       9             : 
      10             : #include "PerfGraphInterface.h"
      11             : #include "PerfGraphRegistry.h"
      12             : 
      13             : #include "MooseApp.h"
      14             : 
      15             : InputParameters
      16      443767 : PerfGraphInterface::validParams()
      17             : {
      18      443767 :   InputParameters params = emptyInputParameters();
      19      443767 :   return params;
      20             : }
      21             : 
      22      885131 : PerfGraphInterface::PerfGraphInterface(const MooseObject * moose_object)
      23      885131 :   : _pg_moose_app(*moose_object->parameters().getCheckedPointerParam<MooseApp *>(
      24             :         MooseBase::app_param, "PerfGraphInterface is unable to retrieve the MooseApp pointer!")),
      25     1770262 :     _prefix(moose_object->type())
      26             : {
      27      885131 : }
      28             : 
      29       23483 : PerfGraphInterface::PerfGraphInterface(const MooseObject * moose_object, const std::string prefix)
      30       23483 :   : _pg_moose_app(*moose_object->parameters().getCheckedPointerParam<MooseApp *>(
      31             :         MooseBase::app_param, "PerfGraphInterface is unable to retrieve the MooseApp pointer!")),
      32       46966 :     _prefix(prefix)
      33             : {
      34       23483 : }
      35             : 
      36      136996 : PerfGraphInterface::PerfGraphInterface(MooseApp & moose_app, const std::string prefix)
      37      136996 :   : _pg_moose_app(moose_app), _prefix(prefix)
      38             : {
      39      136996 : }
      40             : 
      41     3776955 : PerfGraphInterface::PerfGraphInterface(PerfGraph & perf_graph, const std::string prefix)
      42     3776955 :   : _pg_moose_app(perf_graph.mooseApp()), _prefix(prefix)
      43             : {
      44     3776955 : }
      45             : 
      46             : std::string
      47   102126641 : PerfGraphInterface::timedSectionName(const std::string & section_name) const
      48             : {
      49   102126641 :   return _prefix.empty() ? "" : (_prefix + "::") + section_name;
      50             : }
      51             : 
      52             : PerfID
      53    61850220 : PerfGraphInterface::registerTimedSection(const std::string & section_name,
      54             :                                          const unsigned int level) const
      55             : {
      56    61850220 :   const auto timed_section_name = timedSectionName(section_name);
      57    61850220 :   if (!moose::internal::getPerfGraphRegistry().sectionExists(timed_section_name))
      58     4060818 :     return moose::internal::getPerfGraphRegistry().registerSection(timed_section_name, level);
      59             :   else
      60    57789402 :     return moose::internal::getPerfGraphRegistry().sectionID(timed_section_name);
      61    61850220 : }
      62             : 
      63             : PerfID
      64    37249528 : PerfGraphInterface::registerTimedSection(const std::string & section_name,
      65             :                                          const unsigned int level,
      66             :                                          const std::string & live_message,
      67             :                                          const bool print_dots) const
      68             : {
      69    37249528 :   const auto timed_section_name = timedSectionName(section_name);
      70    37249528 :   if (!moose::internal::getPerfGraphRegistry().sectionExists(timed_section_name))
      71     6053786 :     return moose::internal::getPerfGraphRegistry().registerSection(
      72     6053786 :         timedSectionName(section_name), level, live_message, print_dots);
      73             :   else
      74    34222635 :     return moose::internal::getPerfGraphRegistry().sectionID(timed_section_name);
      75    37249528 : }
      76             : 
      77             : PerfGraph &
      78      189085 : PerfGraphInterface::perfGraph()
      79             : {
      80      189085 :   return _pg_moose_app.perfGraph();
      81             : }

Generated by: LCOV version 1.14