Git Product home page Git Product logo

Comments (3)

noxdafox avatar noxdafox commented on August 19, 2024 3

CLIPS does not implement exceptions. Therefore, it won't raise any CLIPSError when invoking the run function. The run function always returns the amount of fired rules.

The reason why you see a CLIPSError when you add a typo in your code is because the build function fails to build the code due to your typo.

What is happening is your function throws the error and stops the execution of your CLIPS rules. This mechanism is silent and the only way for you to verify whether everything ran smoothly is via the CLIPS get-error function.

env = clips.Environment()

try:
    env.define_function(is_date_in_range)
    env.build(rule)

    env.assert_string("(issue_date \"gibberish\")")
    env.run()
    print(env.eval('(get-error)'))
except Exception as error:
    print("Found an error")

Will print:

Traceback (most recent call last):
  File "/usr/local/lib/python3.9/dist-packages/clips/functions.py", line 440, in python_function
    ret = environment_data(env, 'user_functions')[funcname](*arguments)
  File "/home/noxdafox/issue-48.py", line 6, in is_date_in_range
    date = datetime.strptime(date, "%Y-%m-%d")
  File "/usr/lib/python3.9/_strptime.py", line 568, in _strptime_datetime
    tt, fraction, gmtoff_fraction = _strptime(data_string, format)
  File "/usr/lib/python3.9/_strptime.py", line 349, in _strptime
    raise ValueError("time data %r does not match format %r" %
ValueError: time data 'gibberish' does not match format '%Y-%m-%d'

Nevertheless, the mechanism is indeed imperfect and the library should be more explicit when handling these situations. I will soon come with improvements in merit.

from clipspy.

ana-barbosa avatar ana-barbosa commented on August 19, 2024

Awesome! Thanks for the answer, that will already help me proceed with my developments!

from clipspy.

noxdafox avatar noxdafox commented on August 19, 2024

Issue fixed in release 1.0.1.

from clipspy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.