1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556(*****************************************************************************
Liquidsoap, a programmable stream generator.
Copyright 2003-2024 Savonet team
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, fully stated in the COPYING
file at the root of the liquidsoap distribution.
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
*****************************************************************************)letprofiler=Modules.profilerletprofiler_stats=Modules.profiler_statslet_=Lang.add_builtin~base:profiler"enable"~category:`Liquidsoap~descr:"Record profiling statistics."[]Lang.unit_t(fun_->Term.profile:=true;Lang.unit)let_=Lang.add_builtin~base:profiler"disable"~category:`Liquidsoap~descr:"Record profiling statistics."[]Lang.unit_t(fun_->Term.profile:=false;Lang.unit)let_=leta=Lang.univ_t()inLang.add_builtin~base:profiler"run"~category:`Liquidsoap~descr:"Time a function with the profiler."[("",Lang.string_t,None,Some"Name of the profiled function.");("",Lang.fun_t[]a,None,Some"Function to profile.");]a(funp->letname=Lang.to_string(Lang.assoc""1p)inletf=Lang.assoc""2pinletf()=Lang.apply~pos:(Lang.posp)f[]inProfiler.timenamef())let_=Lang.add_builtin~base:profiler_stats"string"~category:`Liquidsoap~descr:"Profiling statistics."[]Lang.string_t(fun_->Lang.string(Profiler.stats()))