Interface Builtin

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean bodyCall​(Node[] args, int length, RuleContext context)
      This method is invoked when the builtin is called in a rule body.
      int getArgLength()
      Return the expected number of arguments for this functor or 0 if the number is flexible.
      java.lang.String getName()
      Return a convenient name for this builtin, normally this will be the name of the functor that will be used to invoke it and will often be the final component of the URI.
      java.lang.String getURI()
      Return the full URI which identifies this built in.
      void headAction​(Node[] args, int length, RuleContext context)
      This method is invoked when the builtin is called in a rule head.
      boolean isMonotonic()
      Returns false if this builtin is non-monotonic.
      boolean isSafe()
      Returns false if this builtin has side effects when run in a body clause, other than the binding of environment variables.
    • Method Detail

      • getName

        java.lang.String getName()
        Return a convenient name for this builtin, normally this will be the name of the functor that will be used to invoke it and will often be the final component of the URI.
      • getURI

        java.lang.String getURI()
        Return the full URI which identifies this built in.
      • getArgLength

        int getArgLength()
        Return the expected number of arguments for this functor or 0 if the number is flexible.
      • bodyCall

        boolean bodyCall​(Node[] args,
                         int length,
                         RuleContext context)
        This method is invoked when the builtin is called in a rule body.
        Parameters:
        args - the array of argument values for the builtin, this is an array of Nodes, some of which may be Node_RuleVariables.
        length - the length of the argument list, may be less than the length of the args array for some rule engines
        context - an execution context giving access to other relevant data
        Returns:
        return true if the buildin predicate is deemed to have succeeded in the current environment
      • headAction

        void headAction​(Node[] args,
                        int length,
                        RuleContext context)
        This method is invoked when the builtin is called in a rule head. Such a use is only valid in a forward rule.
        Parameters:
        args - the array of argument values for the builtin, this is an array of Nodes.
        length - the length of the argument list, may be less than the length of the args array for some rule engines
        context - an execution context giving access to other relevant data
      • isSafe

        boolean isSafe()
        Returns false if this builtin has side effects when run in a body clause, other than the binding of environment variables.
      • isMonotonic

        boolean isMonotonic()
        Returns false if this builtin is non-monotonic. This includes non-monotonic checks like noValue and non-monotonic actions like remove/drop. A non-monotonic call in a head is assumed to be an action and makes the overall rule and ruleset non-monotonic. Most JenaRules are monotonic deductive closure rules in which this should be false.