[Neo-report] r1913 vincent - /trunk/neo/profiling.py

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Mar 8 11:59:25 CET 2010


Author: vincent
Date: Mon Mar  8 11:59:25 2010
New Revision: 1913

Log:
Add profiling.py.

Forgotten in r1911.

Added:
    trunk/neo/profiling.py

Added: trunk/neo/profiling.py
==============================================================================
--- trunk/neo/profiling.py (added)
+++ trunk/neo/profiling.py [iso-8859-1] Mon Mar  8 11:59:25 2010
@@ -1,0 +1,39 @@
+#
+# Copyright (C) 2010  Nexedi SA
+#
+# 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 (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.
+#
+# You should have received a copy of the GNU 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.
+
+"""
+Profiling is done with tiny-profiler, a very simple profiler.
+
+It is different from python's built-in profilers in that it requires
+developpers to explicitely put probes on specific methods, reducing:
+- profiling overhead
+- undesired result entries
+
+You can get this profiler at:
+  https://svn.erp5.org/repos/public/erp5/trunk/utils/tiny_profiler
+"""
+
+PROFILING_ENABLED = False
+
+if PROFILING_ENABLED:
+    from tiny_profiler import profiler_decorator, profiler_report
+else:
+    def profiler_decorator(func):
+        return func
+
+    def profiler_report():
+        pass





More information about the Neo-report mailing list