// --------------------------------------------------------------------------- // - Predsys.cpp - // - afnix:sys 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 "Date.hpp" #include "Options.hpp" #include "Predsys.hpp" #include "Boolean.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); } // timep: time object predicate Object* sys_timep (Runnable* robj, Nameset* nset, Cons* args) { Object* obj = get_obj (robj, nset, args, "time-p"); bool result = (dynamic_cast (obj) == nilp) ? false : true; Object::cref (obj); return new Boolean (result); } // datep: date object predicate Object* sys_datep (Runnable* robj, Nameset* nset, Cons* args) { Object* obj = get_obj (robj, nset, args, "date-p"); bool result = (dynamic_cast (obj) == nilp) ? false : true; Object::cref (obj); return new Boolean (result); } // optsp: options object predicate Object* sys_optsp (Runnable* robj, Nameset* nset, Cons* args) { Object* obj = get_obj (robj, nset, args, "optionsL-p"); bool result = (dynamic_cast (obj) == nilp) ? false : true; Object::cref (obj); return new Boolean (result); } }