]> git.lizzy.rs Git - minetest.git/blob - src/profiler.cpp
Travis: Update clang from 4.0 to 5.0 (#6467)
[minetest.git] / src / profiler.cpp
1 /*
2 Minetest
3 Copyright (C) 2015 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "profiler.h"
21
22 static Profiler main_profiler;
23 Profiler *g_profiler = &main_profiler;
24 ScopeProfiler::ScopeProfiler(
25                 Profiler *profiler, const std::string &name, ScopeProfilerType type) :
26                 m_profiler(profiler),
27                 m_name(name), m_type(type)
28 {
29         if (m_profiler)
30                 m_timer = new TimeTaker(m_name);
31 }
32
33 ScopeProfiler::~ScopeProfiler()
34 {
35         if (!m_timer)
36                 return;
37
38         float duration_ms = m_timer->stop(true);
39         float duration = duration_ms / 1000.0;
40         if (m_profiler) {
41                 switch (m_type) {
42                 case SPT_ADD:
43                         m_profiler->add(m_name, duration);
44                         break;
45                 case SPT_AVG:
46                         m_profiler->avg(m_name, duration);
47                         break;
48                 case SPT_GRAPH_ADD:
49                         m_profiler->graphAdd(m_name, duration);
50                         break;
51                 }
52         }
53         delete m_timer;
54 }