// --------------------------------------------------------------------------- // - Predpim.cpp - // - afnix:pim module - predicates implementation - // --------------------------------------------------------------------------- // - This program is free software; you can redistribute it and/or modify - // - it provided that this copyright notice is kept intact. - // - - // - 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. In no event shall - // - the copyright holder be liable for any direct, indirect, incidental or - // - special damages arising in any way out of the use of this software. - // --------------------------------------------------------------------------- // - copyright (c) 1999-2007 amaury darsch - // --------------------------------------------------------------------------- #include "Cons.hpp" #include "Predpim.hpp" #include "Boolean.hpp" #include "Assistant.hpp" #include "Exception.hpp" namespace afnix { // this procedure checks that we have one argument only and returns // the evaluated object static inline Object* get_obj (Runnable* robj, Nameset* nset, Cons* args, const String& pname) { Object* car = nilp; if ((args == nilp) || (args->length () != 1)) throw Exception ("argument-error", "illegal arguments with predicate", pname); car = args->getcar (); return (car == nilp) ? nilp : car->eval (robj,nset); } // slotp: slot object predicate Object* pim_slotp (Runnable* robj, Nameset* nset, Cons* args) { Object* obj = get_obj (robj, nset, args, "slot-p"); bool result = (dynamic_cast (obj) == nilp) ? false : true; Object::cref (obj); return new Boolean (result); } // apptp: appointer object predicate Object* pim_apptp (Runnable* robj, Nameset* nset, Cons* args) { Object* obj = get_obj (robj, nset, args, "appointer-p"); bool result = (dynamic_cast (obj) == nilp) ? false : true; Object::cref (obj); return new Boolean (result); } // asstp: assistant object predicate Object* pim_asstp (Runnable* robj, Nameset* nset, Cons* args) { Object* obj = get_obj (robj, nset, args, "assistant-p"); bool result = (dynamic_cast (obj) == nilp) ? false : true; Object::cref (obj); return new Boolean (result); } }