/* Part of XPCE --- The SWI-Prolog GUI toolkit Author: Jan Wielemaker and Anjo Anjewierden E-mail: jan@swi.psy.uva.nl WWW: http://www.swi.psy.uva.nl/projects/xpce/ Copyright (c) 1985-2002, University of Amsterdam All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ :- module(pce_util, [ get_object/3, % +Receiver, +Selector, ..., -Result get_object/4, get_object/5, get_object/6, get_object/7, get_object/8, send_list/2, % +Receivers, +Methods send_list/3, % +Receivers, +Methods, +Args get_chain/3, % +Receiver, +Selector, -List chain_list/2, % ?Chain, ?List default/3 % +MethodArg, +Default, -Arg ]). :- meta_predicate get_object(+, :, -), get_object(+, :, +, -), get_object(+, :, +, +, -), get_object(+, :, +, +, +, -), get_object(+, :, +, +, +, +, -), get_object(+, :, +, +, +, +, +, -), send_list(:, +), send_list(:, +, +), send_list1(:, +), send_list1(:, +, +), get_chain(+, :, -). :- use_module(library(pce)). %% get_object(+Object, +Selector, +Arg..., -Output) is semidet. % % Succeeds once if Output is the value returned by invoking get method % called Selector on Object. Output is an object description, except for the % special objects @nil, @default, @on and @off all of which are both % object descriptions and object names. get_object(Obj, Sel, Out) :- get(Obj, Sel, R), get_to_object(R, Out). get_object(Obj, Sel, A1, Out) :- get(Obj, Sel, A1, R), get_to_object(R, Out). get_object(Obj, Sel, A1, A2, Out) :- get(Obj, Sel, A1, A2, R), get_to_object(R, Out). get_object(Obj, Sel, A1, A2, A3, Out) :- get(Obj, Sel, A1, A2, A3, R), get_to_object(R, Out). get_object(Obj, Sel, A1, A2, A3, A4, Out) :- get(Obj, Sel, A1, A2, A3, A4, R), get_to_object(R, Out). get_object(Obj, Sel, A1, A2, A3, A4, A5, Out) :- get(Obj, Sel, A1, A2, A3, A4, A5, R), get_to_object(R, Out). get_to_object(Ref, Object) :- ( atomic(Ref) -> Object = Ref ; object(Ref, Object) ). %! send_list(+ListOfObjs, +ListOfSels) % % Send a messages to the carthesian product of ListOfObjs and % ListOfSels. send_list(X, _) :- var(X), throw(error(instantiation_error, _)). send_list(_, X) :- var(X), throw(error(instantiation_error, _)). pce_ifhostproperty(prolog(quintus), [], ( send_list([], _) :- !)). send_list(_, []) :- !. pce_ifhostproperty(prolog(quintus), [], ( send_list([Object|Objects], Selectors) :- !, send_list(Object, Selectors), send_list(Objects, Selectors))). send_list(Object, [Selector|Selectors]) :- !, send_list(Object, Selector), send_list(Object, Selectors). send_list(Object, Selector) :- send_list1(Object, Selector). send_list1(Module:Obj, Selector) :- atom(Module), !, send_list_module(Obj, Selector, Module). send_list1(Object, Selector) :- send(Object, Selector). send_list_module([], _, _) :- !. send_list_module(_, [], _) :- !. send_list_module([Object|Objects], Selectors, Module) :- !, send_list_module(Object, Selectors, Module), send_list_module(Objects, Selectors, Module). send_list_module(Object, [Selector|Selectors], Module) :- !, send_list_module(Object, Selector, Module), send_list_module(Object, Selectors, Module). send_list_module(Object, Selector, Module) :- send(Object, Module:Selector). %! send_list(+ListOfObjs, +ListOfSels, +ListOfArgs) % % Send a messages to the carthesian product of ListOfObjs and % ListOfSels. send_list(X, _, _) :- var(X), throw(error(instantiation_error, _)). send_list(_, X, _) :- var(X), throw(error(instantiation_error, _)). send_list(_, _, X) :- var(X), throw(error(instantiation_error, _)). pce_ifhostproperty(prolog(quintus), [], ( send_list([], _, _) :- !)). send_list(_, [], _) :- !. send_list(_, _, []) :- !. pce_ifhostproperty(prolog(quintus), [], ( send_list([Object|Objects], Selectors, Arguments) :- !, send_list(Object, Selectors, Arguments), send_list(Objects, Selectors, Arguments))). send_list(Objects, [Selector|Selectors], Arguments) :- !, send_list(Objects, Selector, Arguments), send_list(Objects, Selectors, Arguments). send_list(Object, Selector, [Argument|Arguments]) :- !, send_list(Object, Selector, Argument), send_list(Object, Selector, Arguments). send_list(Object, Selector, Argument) :- send_list1(Object, Selector, Argument). send_list1(Module:Obj, Selector, Arg) :- atom(Module), !, send_list_module(Obj, Selector, Arg, Module). send_list1(Obj, Selector, Arg) :- send(Obj, Selector, Arg). send_list_module([], _, _, _) :- !. send_list_module(_, [], _, _) :- !. send_list_module(_, _, [], _) :- !. send_list_module([Object|Objects], Selectors, Arguments, Module) :- !, send_list_module(Object, Selectors, Arguments, Module), send_list_module(Objects, Selectors, Arguments, Module). send_list_module(Objects, [Selector|Selectors], Arguments, Module) :- !, send_list_module(Objects, Selector, Arguments, Module), send_list_module(Objects, Selectors, Arguments, Module). send_list_module(Object, Selector, [Argument|Arguments], Module) :- !, send_list_module(Object, Selector, Argument, Module), send_list_module(Object, Selector, Arguments, Module). send_list_module(Object, Selector, Argument, Module) :- send(Object, Module:Selector, Argument). %% get_chain(+Object, +Selector, -List:list) is semidet. % % List is a Prolog list constructed from the PCE chain returned by <-Selector % on Object. get_chain/3 returns a list of object names, get_chain(Object, Selector, List) :- get(Object, Selector, Chain), chain_list(Chain, List). %! chain_list(+Chain, -List) is det. %! chain_list(-Chain, +List) is det. % % Convert between a Prolog list and an XPCE chain object. chain_list(Chain, List) :- nonvar(Chain), !, ( Chain == @nil -> List = [] ; to_object(Chain, ChainObject), send(ChainObject, instance_of, chain), ( send(ChainObject, current_no, 1) -> chain_to_list_(ChainObject, List) ; List = [] ) ). chain_list(Chain, List) :- new(Chain, chain), send_list(Chain, append, List). chain_to_list_(Chain, [El|Rest]) :- get(Chain, next, El), !, chain_to_list_(Chain, Rest). chain_to_list_(Chain, []) :- \+ get(Chain, current, _). to_object(Ref, Ref) :- object(Ref), !. to_object(Term, Obj) :- new(Obj, Term). /******************************** * DEFAULTS * ********************************/ %! default(+Argument, +Default, -Value) is det. % % Get the default value for an argument. Default is either a % plain value or a term class_variable(+Object, +Name). default(@default, Default, Value) :- !, ( var(Default) -> Value = Default ; ( Default = class_variable(Obj, Name) ; Default = resource(Obj, Name) ) -> ( get(Obj, class_variable_value, Name, Value) -> true ; pce_error(get_class_variable_failed(Name, Obj)) ) ; Value = Default ). default(Value, _Default, Value).