]> git.lizzy.rs Git - minetest.git/blobdiff - src/profiler.h
Fix msvc2012 build
[minetest.git] / src / profiler.h
index 7bb3b37508aa2b022762601ae7fc20a2f1ddd63a..25d89c6c8a6304fd77988ab50fc01189c0f5c5b3 100644 (file)
@@ -1,18 +1,18 @@
 /*
-Minetest-c55
-Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
+Minetest
+Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 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 of the License, or
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, 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.
+GNU Lesser General Public License for more details.
 
-You should have received a copy of the GNU General Public License along
+You should have received a copy of the GNU Lesser General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
@@ -20,11 +20,15 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #ifndef PROFILER_HEADER
 #define PROFILER_HEADER
 
-#include "common_irrlicht.h"
+#include "irrlichttypes.h"
 #include <string>
-#include "utility.h"
-#include <jmutex.h>
-#include <jmutexautolock.h>
+#include <map>
+
+#include "jthread/jmutex.h"
+#include "jthread/jmutexautolock.h"
+#include "util/timetaker.h"
+#include "util/numeric.h" // paging()
+#include "debug.h" // assert()
 
 /*
        Time profiler
@@ -35,7 +39,6 @@ class Profiler
 public:
        Profiler()
        {
-               m_mutex.Init();
        }
 
        void add(const std::string &name, float value)
@@ -43,21 +46,21 @@ class Profiler
                JMutexAutoLock lock(m_mutex);
                {
                        /* No average shall have been used; mark add used as -2 */
-                       core::map<std::string, int>::Node *n = m_avgcounts.find(name);
-                       if(n == NULL)
+                       std::map<std::string, int>::iterator n = m_avgcounts.find(name);
+                       if(n == m_avgcounts.end())
                                m_avgcounts[name] = -2;
                        else{
-                               if(n->getValue() == -1)
-                                       n->setValue(-2);
-                               assert(n->getValue() == -2);
+                               if(n->second == -1)
+                                       n->second = -2;
+                               assert(n->second == -2);
                        }
                }
                {
-                       core::map<std::string, float>::Node *n = m_data.find(name);
-                       if(n == NULL)
+                       std::map<std::string, float>::iterator n = m_data.find(name);
+                       if(n == m_data.end())
                                m_data[name] = value;
                        else
-                               n->setValue(n->getValue() + value);
+                               n->second += value;
                }
        }
 
@@ -65,35 +68,32 @@ class Profiler
        {
                JMutexAutoLock lock(m_mutex);
                {
-                       core::map<std::string, int>::Node *n = m_avgcounts.find(name);
-                       if(n == NULL)
+                       std::map<std::string, int>::iterator n = m_avgcounts.find(name);
+                       if(n == m_avgcounts.end())
                                m_avgcounts[name] = 1;
                        else{
                                /* No add shall have been used */
-                               assert(n->getValue() != -2);
-                               if(n->getValue() <= 0)
-                                       n->setValue(1);
-                               else
-                                       n->setValue(n->getValue() + 1);
+                               assert(n->second != -2);
+                               n->second = MYMAX(n->second, 0) + 1;
                        }
                }
                {
-                       core::map<std::string, float>::Node *n = m_data.find(name);
-                       if(n == NULL)
+                       std::map<std::string, float>::iterator n = m_data.find(name);
+                       if(n == m_data.end())
                                m_data[name] = value;
                        else
-                               n->setValue(n->getValue() + value);
+                               n->second += value;
                }
        }
 
        void clear()
        {
                JMutexAutoLock lock(m_mutex);
-               for(core::map<std::string, float>::Iterator
-                               i = m_data.getIterator();
-                               i.atEnd() == false; i++)
+               for(std::map<std::string, float>::iterator
+                               i = m_data.begin();
+                               i != m_data.end(); ++i)
                {
-                       i.getNode()->setValue(0);
+                       i->second = 0;
                }
                m_avgcounts.clear();
        }
@@ -110,9 +110,9 @@ class Profiler
                u32 minindex, maxindex;
                paging(m_data.size(), page, pagecount, minindex, maxindex);
 
-               for(core::map<std::string, float>::Iterator
-                               i = m_data.getIterator();
-                               i.atEnd() == false; i++)
+               for(std::map<std::string, float>::iterator
+                               i = m_data.begin();
+                               i != m_data.end(); ++i)
                {
                        if(maxindex == 0)
                                break;
@@ -124,12 +124,12 @@ class Profiler
                                continue;
                        }
 
-                       std::string name = i.getNode()->getKey();
+                       std::string name = i->first;
                        int avgcount = 1;
-                       core::map<std::string, int>::Node *n = m_avgcounts.find(name);
-                       if(n){
-                               if(n->getValue() >= 1)
-                                       avgcount = n->getValue();
+                       std::map<std::string, int>::iterator n = m_avgcounts.find(name);
+                       if(n != m_avgcounts.end()){
+                               if(n->second >= 1)
+                                       avgcount = n->second;
                        }
                        o<<"  "<<name<<": ";
                        s32 clampsize = 40;
@@ -141,20 +141,48 @@ class Profiler
                                else
                                        o<<" ";
                        }
-                       o<<(i.getNode()->getValue() / avgcount);
+                       o<<(i->second / avgcount);
                        o<<std::endl;
                }
        }
 
+       typedef std::map<std::string, float> GraphValues;
+
+       void graphAdd(const std::string &id, float value)
+       {
+               JMutexAutoLock lock(m_mutex);
+               std::map<std::string, float>::iterator i =
+                               m_graphvalues.find(id);
+               if(i == m_graphvalues.end())
+                       m_graphvalues[id] = value;
+               else
+                       i->second += value;
+       }
+       void graphGet(GraphValues &result)
+       {
+               JMutexAutoLock lock(m_mutex);
+               result = m_graphvalues;
+               m_graphvalues.clear();
+       }
+
+       void remove(const std::string& name)
+       {
+               JMutexAutoLock lock(m_mutex);
+               m_avgcounts.erase(name);
+               m_data.erase(name);
+       }
+
 private:
        JMutex m_mutex;
-       core::map<std::string, float> m_data;
-       core::map<std::string, int> m_avgcounts;
+       std::map<std::string, float> m_data;
+       std::map<std::string, int> m_avgcounts;
+       std::map<std::string, float> m_graphvalues;
 };
 
 enum ScopeProfilerType{
        SPT_ADD,
-       SPT_AVG
+       SPT_AVG,
+       SPT_GRAPH_ADD
 };
 
 class ScopeProfiler
@@ -195,6 +223,9 @@ class ScopeProfiler
                                case SPT_AVG:
                                        m_profiler->avg(m_name, duration);
                                        break;
+                               case SPT_GRAPH_ADD:
+                                       m_profiler->graphAdd(m_name, duration);
+                                       break;
                                }
                        }
                        delete m_timer;