Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos and trailing whitespace #397

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 60 additions & 45 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@

# durable_rules
# durable_rules
#### for real time analytics (a Ruby, Python and Node.js Rules Engine)
[![Build Status](https://travis-ci.org/jruizgit/rules.svg?branch=master)](https://travis-ci.org/jruizgit/rules)
[![Gem Version](https://badge.fury.io/rb/durable_rules.svg)](https://badge.fury.io/rb/durable_rules)
[![npm version](https://badge.fury.io/js/durable.svg)](https://badge.fury.io/js/durable)
[![PyPI version](https://badge.fury.io/py/durable_rules.svg)](https://badge.fury.io/py/durable_rules)
[![PyPI version](https://badge.fury.io/py/durable_rules.svg)](https://badge.fury.io/py/durable_rules)

durable_rules is a polyglot micro-framework for real-time, consistent and scalable coordination of events. With durable_rules you can track and analyze information about things that happen (events) by combining data from multiple sources to infer more complicated circumstances.

A full forward chaining implementation (Rete) is used to evaluate facts and events in real time. A simple meta-linguistic abstraction lets you define simple and complex rulesets as well as control flow structures such as flowcharts, statecharts, nested statecharts and time driven flows.
A full forward chaining implementation (Rete) is used to evaluate facts and events in real time. A simple meta-linguistic abstraction lets you define simple and complex rulesets as well as control flow structures such as flowcharts, statecharts, nested statecharts and time driven flows.

The durable_rules core engine is implemented in C, which enables fast rule evaluation as well as muti-language support.
The durable_rules core engine is implemented in C, which enables fast rule evaluation as well as multi-language support.

durable_rules can be scaled out by offloading state to a data store out of process such as Redis. State offloading is extensible, so you can integrate the data store of your choice.
durable_rules can be scaled out by offloading state to a data store out of process such as Redis. State offloading is extensible, so you can integrate the data store of your choice.

*In durable_rules V2, less is more: The Rete tree is fully evaluated in C. Thus, the framework is 5x to 10x faster (depending on the scenario) and does not require Redis. The programming model for posting events, asserting and retracting facts is synchronous and does not prescribe any web framework.*

## Getting Started
## Getting Started

Using your scripting language of choice, simply describe the event to match (antecedent) and the action to take (consequent).
Using your scripting language of choice, simply describe the event to match (antecedent) and the action to take (consequent).

### Node.js

Expand All @@ -35,7 +35,8 @@ d.ruleset('test', function() {
});

d.post('test', {subject: 'World'});
```
```

### Python

To install the framework do: `pip install durable_rules`
Expand All @@ -51,7 +52,8 @@ with ruleset('test'):
print ('Hello {0}'.format(c.m.subject))

post('test', { 'subject': 'World' })
```
```

### Ruby

To install the framework do: `gem install durable_rules`
Expand All @@ -68,29 +70,31 @@ Durable.ruleset :test do
end

Durable.post :test, { :subject => "World" }
```
## Forward Inference
```

## Forward Inference

durable_rules super-power is the foward-chaining evaluation of rules. In other words, the repeated application of logical [modus ponens](https://en.wikipedia.org/wiki/Modus_ponens) to a set of facts or observed events to derive a conclusion. The example below shows a set of rules applied to a small knowledge base (set of facts).
durable_rules super-power is the forward-chaining evaluation of rules. In other words, the repeated application of logical [modus ponens](https://en.wikipedia.org/wiki/Modus_ponens) to a set of facts or observed events to derive a conclusion. The example below shows a set of rules applied to a small knowledge base (set of facts).

### Node.js

```javascript
var d = require('durable');

d.ruleset('animal', function() {
whenAll: {
first = m.predicate == 'eats' && m.object == 'flies'
first = m.predicate == 'eats' && m.object == 'flies'
m.predicate == 'lives' && m.object == 'water' && m.subject == first.subject
}
run: assert({ subject: first.subject, predicate: 'is', object: 'frog' })

whenAll: {
first = m.predicate == 'eats' && m.object == 'flies'
first = m.predicate == 'eats' && m.object == 'flies'
m.predicate == 'lives' && m.object == 'land' && m.subject == first.subject
}
run: assert({ subject: first.subject, predicate: 'is', object: 'chameleon' })

whenAll: m.predicate == 'eats' && m.object == 'worms'
whenAll: m.predicate == 'eats' && m.object == 'worms'
run: assert({ subject: m.subject, predicate: 'is', object: 'bird' })

whenAll: m.predicate == 'is' && m.object == 'frog'
Expand All @@ -99,7 +103,7 @@ d.ruleset('animal', function() {
whenAll: m.predicate == 'is' && m.object == 'chameleon'
run: assert({ subject: m.subject, predicate: 'is', object: 'green' })

whenAll: m.predicate == 'is' && m.object == 'bird'
whenAll: m.predicate == 'is' && m.object == 'bird'
run: assert({ subject: m.subject, predicate: 'is', object: 'black' })

whenAll: +m.subject
Expand All @@ -112,7 +116,9 @@ d.assert('animal', { subject: 'Greedy', predicate: 'eats', object: 'flies'});
d.assert('animal', { subject: 'Greedy', predicate: 'lives', object: 'land'});
d.assert('animal', { subject: 'Tweety', predicate: 'eats', object: 'worms'});
```

### Python

```python
from durable.lang import *

Expand Down Expand Up @@ -152,39 +158,41 @@ assert_fact('animal', { 'subject': 'Kermit', 'predicate': 'eats', 'object': 'fli
assert_fact('animal', { 'subject': 'Kermit', 'predicate': 'lives', 'object': 'water' })
assert_fact('animal', { 'subject': 'Greedy', 'predicate': 'eats', 'object': 'flies' })
assert_fact('animal', { 'subject': 'Greedy', 'predicate': 'lives', 'object': 'land' })
assert_fact('animal', { 'subject': 'Tweety', 'predicate': 'eats', 'object': 'worms' })
assert_fact('animal', { 'subject': 'Tweety', 'predicate': 'eats', 'object': 'worms' })
```

### Ruby

```ruby
require "durable"

Durable.ruleset :animal do
when_all c.first = (m.predicate == "eats") & (m.object == "flies"),
when_all c.first = (m.predicate == "eats") & (m.object == "flies"),
(m.predicate == "lives") & (m.object == "water") & (m.subject == first.subject) do
assert :subject => first.subject, :predicate => "is", :object => "frog"
end

when_all c.first = (m.predicate == "eats") & (m.object == "flies"),
when_all c.first = (m.predicate == "eats") & (m.object == "flies"),
(m.predicate == "lives") & (m.object == "land") & (m.subject == first.subject) do
assert :subject => first.subject, :predicate => "is", :object => "chameleon"
end

when_all (m.predicate == "eats") & (m.object == "worms") do
assert :subject => m.subject, :predicate => "is", :object => "bird"
end

when_all (m.predicate == "is") & (m.object == "frog") do
assert :subject => m.subject, :predicate => "is", :object => "green"
end

when_all (m.predicate == "is") & (m.object == "chameleon") do
assert :subject => m.subject, :predicate => "is", :object => "green"
end

when_all (m.predicate == "is") & (m.object == "bird") do
assert :subject => m.subject, :predicate => "is", :object => "black"
end

when_all +m.subject do
puts "fact: #{m.subject} #{m.predicate} #{m.object}"
end
Expand All @@ -196,21 +204,23 @@ Durable.assert :animal1, { :subject => "Greedy", :predicate => "eats", :object =
Durable.assert :animal1, { :subject => "Greedy", :predicate => "lives", :object => "land" }
Durable.assert :animal1, { :subject => "Tweety", :predicate => "eats", :object => "worms" }
```

## Pattern Matching

durable_rules provides string pattern matching. Expressions are compiled down to a DFA, guaranteeing linear execution time in the order of single digit nano seconds per character (note: backtracking expressions are not supported).

### Node.js

```javascript
var d = require('durable');

d.ruleset('test', function() {
whenAll: m.subject.matches('3[47][0-9]{13}')
run: console.log('Amex detected in ' + m.subject)

whenAll: m.subject.matches('4[0-9]{12}([0-9]{3})?')
run: console.log('Visa detected in ' + m.subject)

whenAll: m.subject.matches('(5[1-5][0-9]{2}|222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|2720)[0-9]{12}')
run: console.log('Mastercard detected in ' + m.subject)
});
Expand All @@ -219,7 +229,9 @@ d.assert('test', { subject: '375678956789765' });
d.assert('test', { subject: '4345634566789888' });
d.assert('test', { subject: '2228345634567898' });
```

### Python

```python
from durable.lang import *

Expand All @@ -240,18 +252,20 @@ assert_fact('test', { 'subject': '375678956789765' })
assert_fact('test', { 'subject': '4345634566789888' })
assert_fact('test', { 'subject': '2228345634567898' })
```

### Ruby

```ruby
require "durable"
Durable.ruleset :test do
when_all m.subject.matches('3[47][0-9]{13}') do
puts "Amex detected in #{m.subject}"
end

when_all m.subject.matches('4[0-9]{12}([0-9]{3})?') do
puts "Visa detected in #{m.subject}"
end

when_all m.subject.matches('(5[1-5][0-9]{2}|222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|2720)[0-9]{12}') do
puts "Mastercard detected in #{m.subject}"
end
Expand All @@ -261,42 +275,43 @@ Durable.assert :test, { :subject => "375678956789765" }
Durable.assert :test, { :subject => "4345634566789888" }
Durable.assert :test, { :subject => "2228345634567898" }
```
## Business Rules and Miss Manners

durable_rules can also be used to solve traditional Production Business Rules problems. This example is an industry benchmark. Miss Manners has decided to throw a party. She wants to seat her guests such that adjacent people are of opposite sex and share at least one hobby.
## Business Rules and Miss Manners

durable_rules can also be used to solve traditional Production Business Rules problems. This example is an industry benchmark. Miss Manners has decided to throw a party. She wants to seat her guests such that adjacent people are of opposite sex and share at least one hobby.

Note how the benchmark flow structure is defined using a statechart to improve code readability without sacrificing performance nor altering the combinatorics required by the benchmark. For 128 guests, 438 facts, the execution time is 450 ms in node.js and 600 ms in Python and Ruby.
Note how the benchmark flow structure is defined using a statechart to improve code readability without sacrificing performance nor altering the combinatorics required by the benchmark. For 128 guests, 438 facts, the execution time is 450 ms in node.js and 600 ms in Python and Ruby.

<div align="center"><img src="https://github.com/jruizgit/rules/blob/master/docs/manners.png" width="700px" height="400px" /></div>
<div align="center"><img src="https://github.com/jruizgit/rules/blob/master/docs/manners.png" width="700px" height="400px" /></div>

_IMac, 4GHz i7, 32GB 1600MHz DDR3, 1.12 TB Fusion Drive_
_IMac, 4GHz i7, 32GB 1600MHz DDR3, 1.12 TB Fusion Drive_

* [Ruby](https://github.com/jruizgit/rules/blob/testrb/manners.rb)
* [Python](https://github.com/jruizgit/rules/blob/testpy/manners.py)
* [Ruby](https://github.com/jruizgit/rules/blob/testrb/manners.rb)
* [Python](https://github.com/jruizgit/rules/blob/testpy/manners.py)
* [Node.js](https://github.com/jruizgit/rules/blob/testjs/manners.js)

## Image recognition and Waltzdb

Waltzdb is a constraint propagation problem for image recognition: given a set of lines in a 2D space, the system needs to interpret the 3D depth of the image. The first part of the algorithm consists of identifying four types of junctions, then labeling the junctions following Huffman-Clowes notation. Pairs of adjacent junctions constraint each other’s edge labeling. So, after choosing the labeling for an initial junction, the second part of the algorithm iterates through the graph, propagating the labeling constraints by removing inconsistent labels.
Waltzdb is a constraint propagation problem for image recognition: given a set of lines in a 2D space, the system needs to interpret the 3D depth of the image. The first part of the algorithm consists of identifying four types of junctions, then labeling the junctions following Huffman-Clowes notation. Pairs of adjacent junctions constraint each other’s edge labeling. So, after choosing the labeling for an initial junction, the second part of the algorithm iterates through the graph, propagating the labeling constraints by removing inconsistent labels.

In this case too, the benchmark flow structure is defined using a statechart to improve code readability. The benchmark requirements are not altered. The execution time, for the case of 4 regions, is 430 ms in node.js, 654 ms in Python and 552 ms in Ruby.

<div align="center"><img src="https://github.com/jruizgit/rules/blob/master/docs/waltzdb.png" width="700px" height="400px" /></div>
<div align="center"><img src="https://github.com/jruizgit/rules/blob/master/docs/waltzdb.png" width="700px" height="400px" /></div>

_IMac, 4GHz i7, 32GB 1600MHz DDR3, 1.12 TB Fusion Drive_
_IMac, 4GHz i7, 32GB 1600MHz DDR3, 1.12 TB Fusion Drive_

* [Node.js](https://github.com/jruizgit/rules/blob/master/testjs/waltzdb.js)
* [Ruby](https://github.com/jruizgit/rules/blob/master/testrb/waltzdb.rb)
* [Python](https://github.com/jruizgit/rules/blob/master/testpy/waltzdb.py)
* [Node.js](https://github.com/jruizgit/rules/blob/master/testjs/waltzdb.js)
* [Ruby](https://github.com/jruizgit/rules/blob/master/testrb/waltzdb.rb)
* [Python](https://github.com/jruizgit/rules/blob/master/testpy/waltzdb.py)

## To Learn More

## To Learn More
Reference Manual:
### [Ruby](https://github.com/jruizgit/rules/blob/master/docs/rb/reference.md)
Reference Manual:

### [Python](https://github.com/jruizgit/rules/blob/master/docs/py/reference.md)
### [Ruby](https://github.com/jruizgit/rules/blob/master/docs/rb/reference.md)

### [Node.js](https://github.com/jruizgit/rules/blob/master/docs/js/reference.md)
### [Python](https://github.com/jruizgit/rules/blob/master/docs/py/reference.md)

### [JSON](https://github.com/jruizgit/rules/blob/master/docs/json/reference.md)
### [Node.js](https://github.com/jruizgit/rules/blob/master/docs/js/reference.md)

### [JSON](https://github.com/jruizgit/rules/blob/master/docs/json/reference.md)
Loading