12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849(*****************************************************************************
Liquidsoap, a programmable audio stream generator.
Copyright 2003-2023 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
*****************************************************************************)(** An error at runtime. *)typeruntime_error={kind:string;msg:string;pos:Pos.tlist}exceptionRuntime_errorofruntime_errorlet()=Printexc.register_printer(function|Runtime_error{kind;msg;pos}->Some(Printf.sprintf"Lang.Runtime_error { kind: %s, msg: %s, pos: [%s] }"(Lang_string.quote_stringkind)(Lang_string.quote_stringmsg)(String.concat", "(List.map(funpos->Pos.to_stringpos)pos)))|_->None)letlisteners=Atomic.make[]leton_errorfn=Atomic.setlisteners(fn::Atomic.getlisteners)letmake?(message="")~poskind={kind;msg=message;pos}letraise?bt?(message="")~poskind=leterr={kind;msg=message;pos}inList.iter(funfn->fnerr)(Atomic.getlisteners);lete=Runtime_errorerrinmatchbtwith|None->raisee|Somebt->Printexc.raise_with_backtraceebt