1/* Part of Ciao Prolog compatibility library 2 3 Author: The Ciao Development Team, ported by Edison Mera 4 E-mail: efmera@gmail.com 5 WWW: http://www.edisonm.com 6 Copyright (C): 2013, Process Design Center, Breda, The Netherlands. 7 8 This program is free software; you can redistribute it and/or 9 modify it under the terms of the GNU General Public License 10 as published by the Free Software Foundation; either version 2 11 of the License, or (at your option) any later version. 12 13 This program is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 GNU General Public License for more details. 17 18 You should have received a copy of the GNU General Public 19 License along with this library; if not, write to the Free Software 20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 21 22 As a special exception, if you link this library with other files, 23 compiled with a Free Software compiler, to produce an executable, this 24 library does not by itself cause the resulting executable to be covered 25 by the GNU General Public License. This exception does not however 26 invalidate any other reasons why the executable file might be covered by 27 the GNU General Public License. 28*/ 29 30:- module(exceptions_db, [asserta_catching/3, 31 retract_catching/3, 32 asserta_disabled/1, 33 retract_disabled/1, 34 catching/3, 35 disabled/1], []). 36 37:- data catching/3, disabled/1. 38 39 40asserta_catching(Ch, Er, Ha) :- asserta_fact(catching(Ch, Er, Ha)). 41asserta_catching(Ch, Er, Ha) :- retract_fact_nb(catching(Ch, Er, Ha)), fail. 42 43retract_catching(Ch, Er, Ha) :- retract_fact_nb(catching(Ch, Er, Ha)). 44retract_catching(Ch, Er, Ha) :- asserta_fact(catching(Ch, Er, Ha)), fail. 45 46asserta_disabled(Ref) :- asserta_fact(disabled(Ref)). 47asserta_disabled(Ref) :- retract_fact_nb(disabled(Ref)), fail. 48 49retract_disabled(Ref) :- retract_fact_nb(disabled(Ref)). 50retract_disabled(Ref) :- asserta_fact(disabled(Ref)), fail