Drools 6.0 (Red Hat Summit)

Mark Proctor
Mark ProctorPlatform Architect - Red Hat BRMS and BPMS
Not Quite There Yet
•The SkyNet funding bill is passed.
!
•The system goes online on August 4th, 1997.
!
•Human decisions are removed from strategic defense.
!
•SkyNet begins to learn at a geometric rate.
!
•It becomes self-aware at 2:14am Eastern time, August 29th
!
•In a panic, they try to pull the plug.
!
•And, Skynet fights back
Who am I?
• Drools co-founder
!
• JBoss (2005)
!
• Red Hat (2006)
!
• Polymita Acquisition 2012
!
• Red Hat Platform Architect
KIE - Knowledge Is Everything
KIE
Drools jBPMOptaPlanner UberFire
Guvnor
Drools-WB jBPM-WB
KIE-WB
KIE - Knowledge Is Everything
KIE - Knowledge Is Everything
GitHub
• URL:
• https://github.com/droolsjbpm/
!
• Bootstrap project:
• https://github.com/droolsjbpm/droolsjbpm-
build-bootstrap
Serious Bits :)
http://www.youtube.com/watch?v=Omj4PR3v-nI
http://www.youtube.com/watch?v=4CvjKqUOEzM
http://www.youtube.com/watch?v=wORlAZoxttA
Technical
Language
9
Classes
Account
long accountNo
int balance
CashFlow
Date date
int amount
AccountPeriod
Date start
Date end
CashFlow Example
select * from Account acc, 	
Cashflow cf, AccountPeriod ap	
where acc.accountNo == cf.accountNo and	
cf.type == CREDIT 	
cf.date >= ap.start and	
cf.date <= ap.end
rule “increase balance for AccountPeriod Credits”
when
ap : AccountPeriod()
acc : Account()
cf : CashFlow( type == CREDIT,
accountNo == acc.accountNo,
date >= ap.start && <= ap.end )
then
acc.balance += cf.amount;
end
10
acc.balance += cf.amount
CashFlow Rule
select * from Account acc, 	
Cashflow cf, AccountPeriod ap	
where acc.accountNo == cf.accountNo and	
cf.type == CREDIT 	
cf.date >= ap.start and	
cf.date <= ap.end
rule “increase balance for AccountPeriod Credits”
when
ap : AccountPeriod()
acc : Account()
cf : CashFlow( type == CREDIT,
accountNo == acc.accountNo,
date >= ap.start && <= ap.end )
then
acc.balance += cf.amount;
end
11
acc.balance += cf.amount
CashFlow Rule
select * from Account acc, 	
Cashflow cf, AccountPeriod ap	
where acc.accountNo == cf.accountNo and	
cf.type == CREDIT 	
cf.date >= ap.start and	
cf.date <= ap.end
rule “increase balance for AccountPeriod Credits”
when
ap : AccountPeriod()
acc : Account()
cf : CashFlow( type == CREDIT,
accountNo == acc.accountNo,
date >= ap.start && <= ap.end )
then
acc.balance += cf.amount;
end
12
acc.balance += cf.amount
CashFlow Rule
select * from Account acc, 	
Cashflow cf, AccountPeriod ap	
where acc.accountNo == cf.accountNo and	
cf.type == CREDIT 	
cf.date >= ap.start and	
cf.date <= ap.end
rule “increase balance for AccountPeriod Credits”
when
ap : AccountPeriod()
acc : Account()
cf : CashFlow( type == CREDIT,
accountNo == acc.accountNo,
date >= ap.start && <= ap.end )
then
acc.balance += cf.amount;
end
13
acc.balance += cf.amount
CashFlow Rule
select * from Account acc, 	
Cashflow cf, AccountPeriod ap	
where acc.accountNo == cf.accountNo and	
cf.type == CREDIT 	
cf.date >= ap.start and	
cf.date <= ap.end
rule “increase balance for AccountPeriod Credits”
when
ap : AccountPeriod()
acc : Account()
cf : CashFlow( type == CREDIT,
accountNo == acc.accountNo,
date >= ap.start && <= ap.end )
then
acc.balance += cf.amount;
end
14
acc.balance += cf.amount
CashFlow Rule
15
rule "Increase balance for AccountPeriod Credits"

when

ap : AccountPeriod( )

acnt : Account( )

cf : CashFlow( type == CashFlowType.CREDIT,

accountNo == acnt.accountNo,

date >= ap.start && <= ap.end )

then

modify(acnt) {
balance = acnt.balance + cf.amount;
}

end
rule "Decrease balance for AccountPeriod Debits"

when

ap : AccountPeriod( )

acnt : Account( )

cf : CashFlow( type == CashFlowType.DEBIT,
accountNo == acnt.accountNo,
date >= ap.start && <= ap.end )

then

modify(acnt) {
balance = acnt.balance - cf.amount
}

end
CashFlow
date amount type accountNo
12-Jan-12 100 CREDIT 1
2-Feb-12 200 DEBIT 1
18-May-12 50 CREDIT 1
9-Mar-12 75 CREDIT 1
AccountingPeriod
start end
01-JAN-2012 31-MAR-2012
Account
accountNo balance
1 0
CashFlow
date amount type accountNo
12-Jan-12 100 CREDIT 1
9-Mar-12 75 CREDIT 1
CashFlow
date amount type accountNo
2-Feb-12 200 DEBIT 1
Account
accountNo balance
1 -25
CashFlow Example
16
rule "Print balance for AccountPeriod" salience -50

when

ap : AccountPeriod()

acnt : Account( )

then

System.out.println( "Account Number " + acnt.accountNo +
" balance " + acnt.balance );

end
Agenda
1 increase balance
arbitrary2 decrease balance
3 increase balance
4 print balance
CashFlow Example
CashFlow Example
rule “Account in Negative send Warning"

when

ap : AccountPeriod()

acnt : Account( balance < 0 )

then
insert( new NegativeWarning( acnt ) );

end
Accumulate
rule “accumulate"

when
acc( b : Bus( color == “red” );
sumTakings : sum(b.takings);)

then
System.out.println( “sum is " + sumTakings );

end
acc( b : Bus( color == “red” );
sumTakings : sum(b.takings),
minTakings : min(b.takings),
maxTakings : max(b.takings);
minTakings < 100 and maxTakings <
200;)
CashFlow Example
rule “Account in Negative send Warning"

when

ap : AccountPeriod()

acnt : Account( balance < 0 )

then
insert( new NegativeWarning( acnt ) );

end
rule “Issue Warning"

when

ap : AccountPeriod()

acnt : Account( balance < 0 )
acc( n : NegativeWarning( account == acnt );
totalWarnings : count(n);
totalWarnings > 0; )

then
System.out.println( "Account warning Number " + acnt.accountNo +
" balance " + acnt.balance + “ Warnings “ +
totalWarnings );
!
insert( TotalWarnings( acnt, totalWarnings );

end
Conditional Elements
not Bus ( color == “red” )
!
!
exists Bus ( color == “red” )
!
!
forall ( Bus ( color == “red” )
!
!
forall ( b : Bus ( floors == 2 )
Bus( this == b, color == “red” ) )
CashFlow Example
rule “Issue Warning"

when

ap : AccountPeriod()

acnt : Account( balance < 0 )
acc( n : NegativeWarning( account == acnt );
totalWarnings : count(n);
totalWarnings > 0; )

then
System.out.println( "Account warning Number " + acnt.accountNo +
" balance " + acnt.balance + “ Warnings “ totalWarnings );
!
insert( TotalWarnings( acnt, totalWarnings );

end
rule “Cleanup Warnings"

when

ap : AccountPeriod()

acnt : Account( balance >= 0 )
exists( NegativeWarning( account == acnt ) )
n : NegativeWarning( account == acnt )

then
delete( n );

end
CashFlow Example
rule “Fine"

when

ap : AccountPeriod()

acnt : Account( balance < 0 )
acc( n : NegativeWarning( account == acnt ) over window:time(4w);
totalWarnings : count(n);
totalWarnings > 3 )
TotalWarnings( total < totalWarnings )

then
System.out.println( "Account warning Number " + acnt.accountNo + " balance " +
acnt.balance + Warnings “ totalWarnings );

end
rule “Issue Warning"

when

ap : AccountPeriod()

acnt : Account( balance < 0 )
acc( n : NegativeWarning( account == acnt ) over window:time(4w);
totalWarnings : count(n);
totalWarnings > 0; )

then
System.out.println( "Account warning Number " + acnt.accountNo + " balance " +
acnt.balance + “ Warnings “ totalWarnings );
!
insertLogical( new TotalWarnings( acnt, totalWarnings );

end
Graphical Editors
Data Modeller
Guided Editors
Decision Table (Extended)
Decision Table (Extended)
Decision Table (Square)
Rule Templates
Rule Templates
Decision Table Wizards
Score Cards
• a) Setup Parameters
• b) Characteristic Section
Score Cards
• UI Generates PMML
• DRL Generated from PMML
• DRL results in
• Calculated Score
• Ranked Reason Codes
• Can import PMML 4.1
• but not exposed yet
• Calculated Scores
• Currently Summations
• Weight coming
• Not in PMML standard
Scenarios
Architecture
GIT + Maven
Organization Unit
GIT
Repository
GIT
Repository
Projects Projects Projects
GIT
Repository
KIE Installation
KIE Installation
Organization Unit
GIT
Repository
Reposiotry
Projects Projects Projects
GIT
Repository
Organization Unit
GIT
Repository
Reposiotry
Projects Projects Projects
GIT
Repository
Organization Unit
GIT
Repository
GIT
Repository
Projects Projects Projects
GIT
Repository
Application Architecture
KIE Installation
Application Installation
Maven
Repository
(local)
ApplicationProject
mvn install mvn install
Maven
Repository
(local)
Maven
Repository
(remote)
mvn deploy
Http
Workbench
5.x Critique
5.x Critique
JCR
• Performance Issues
• Everything stored as
blob
• No tagging, branching
etc.
• Webdav
• Limited team providers
Content
• Single tree structure (packages)
• Packages created project
deployment units
• No easy rule use
• Loading “model” jars into
packages
UI
• Not easily extended
• Fixed layouts
• No perspectives
• Hard to change
• Too many hacks
Deployment
• Binary blobs, on url
• Simple Snapshot system
• No real methodology
• Doesn’t align with any
industry standards
UF UberFire
KIE - Knowledge Is Everything
KIE - Knowledge Is Everything
KIE - Knowledge Is Everything
UberFire Architecture Overview
High Availability
Workbench Screens
Workbench Screens
• Workbench Screen
• DIV
• Lifecycle events
• OnStartUp, OnShutDown
• OnOpen, OnMayClose, OnClose
• OnFocus, OnLostFocus
Workbench Screens
@WorkbenchScreen(identifier = "MyFirstPanel")!
public class MyFirstPanel extends SimplePanel {!
!
public MyFirstPanel() {!
setWidget( new Label("Hello World 1") );!
}!
!
@WorkbenchPartTitle!
public String myTitle() {!
return "My First Panel!";!
}!
!
}
Workbench Editor
Workbench Editor
• Workbench Screen
• DIV
• Lifecycle events
• OnStartUp, OnShutDown
• OnOpen, OnMayClose, OnClose
• OnFocus, OnLostFocus
• IsDirty, OnSave
Life Cycle Annotation
@WorkbenchEditor(identifier = "TextEditor", !
supportedTypes = { TextResourceType.class, !
DotResourceType.class })

public class TextEditorPresenter {

(...)

@OnStart

public void onStart( final Path path ) {

this.path = path;

}



@OnSave

public void onSave() {!
}



@IsDirty

public boolean isDirty() {

return view.isDirty();

}

}
Life Cycle Annotation
@WorkbenchEditor(identifier = "TextEditor", !
supportedTypes = { TextResourceType.class, !
DotResourceType.class })

public class TextEditorPresenter {

(...)

@OnStart

public void onStart( final Path path ) {

this.path = path;

}



@OnSave

public void onSave() {!
}



@IsDirty

public boolean isDirty() {

return view.isDirty();

}

}
Workbench Perspective
Workbench Perspective
$registerPerspective({	
"id": "Markdown Editor",	
"view": {	
"parts": [	
{	
"place": "MarkdownLiveViewer",	
"parameters": {}	
}	
],	
"panels": [	
{	
"width": 600,	
"min_width": 300,	
"position": "west",	
"parts": [	
{	
"place": "MarkdownLiveEditor",	
"parameters": {}	
}	
]	
}	
]	
},	
on_close: function () {	
}	
});
Workbench Home Page
Helpful InfoPops
Drools 6.0 (Red Hat Summit)
Authoring Perspective
Project Explorer
Use the project explorer to
navigate projects for your
organizational’s repository and
create assets to author.
Problems
When you save, validation
errors for the current project are
shown here
Content Area
Opened assets are added here
Tab Stack
Tab Stack Button
Click the button to see the list of
opened assets
Asset List
The opened assets are shown
here. Click to continue
authoring.
Project Explorer
Organizational Unit
Lists the organizational units.
Repositories
Lists the repositories for the
selected organisational unit.
Projects
Lists the projects for the
selected repository.
Folder Navigation
Click to expand, to see folders.
Project View
Show as Folders
Show as Links
Compact view, that displays the
folders as a single line path.
Project View
The project view is a simplified
and hides many technical
aspects of the project. Such as
merging multiple paths into one
tree.
Shows the project folders using
a tree view.
Repository View
Repository View
The repository view provides
raw access to the project
structure and files, nothing is
hidden. And all paths are visible
separately; see the java and
resources folders.
Show as Folders
Show as Links
Compact view, that displays the
folders as a single line path.
Shows the project folders using
a tree view.
Drools 6.0 (Red Hat Summit)
Drools 6.0 (Red Hat Summit)
New Projects and Other Items
New Projects
Launches the new project
wizard. Once created it appears
under the project list for the
target repository
Project Editor
Project Dependencies
Build and Deploy
Repository Manager
Repository Manager
GIT Repositories
Repositories
Create or clone GIT repositories
Organizational Units
Manage Organizational Units
Create Organizational Units and
associate repositories with them.
End Users - Task Lists
End Users - Task Lists
Videos
KIE WorkbenchVideos
http://www.youtube.com/watch?v=vj3MNmiUnvY&index=2&list=PLb9jQNHBKBRj9IJkc_F5nCJAvXaegOGW8
Drools EditorVideos
http://www.youtube.com/playlist?list=PLb9jQNHBKBRipbtadRC-UaUObjwp0aBHJ
Drools 6.0 (Red Hat Summit)
Drools 6.0 (Red Hat Summit)
Drools 6.0 (Red Hat Summit)
Build Deploy Utilize
API
BRMS 5.0 Programmatic API
KnowledgeBuilder kbuilder = KnowledgeBuilderFactory.newKnowledgeBuilder();



kbuilder.batch().add( newClassPathResource( "Model.drl", getClass() ), DRL )

.add( newClassPathResource( "Queries.drl", getClass() ), DRL )

.add( newClassPathResource( "General.drl", getClass() ), DRL )

.add( newClassPathResource( "Response.drl", getClass() ), DRL )

.add( newClassPathResource( "Events.drl", getClass() ), DRL )

.add( newClassPathResource( "UiView.drl", getClass() ), DRL )

.add( newClassPathResource( "Commands.drl", getClass() ), DRL ).build();



if ( kbuilder.hasErrors() ) {

System.out.println( kbuilder.getErrors().toString() );

System.exit( 1 );

}



KieBaseConfiguration kbaseConf = KnowledgeBaseFactory.newKnowledgeBaseConfiguration();

kbaseConf.setOption( EqualityBehaviorOption.EQUALITY );



KnowledgeBase kbase = KnowledgeBaseFactory.newKnowledgeBase( kbaseConf );

kbase.addKnowledgePackages( kbuilder.getKnowledgePackages() );



Counter c = new Counter();

ksession = kbase.newStatefulKnowledgeSession();
KieModules
• Discovery
• META-INF/kmodule.xml
• Convention based
• No programmatic api for building
• Multiple Named entities
• Inheritence of Resources
• Defaults for lazy people
• Version built in a standard
Git Hub Examples• https://github.com/droolsjbpm/drools/tree/master/drools-
examples-api
KieModules
<kmodule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 

xmlns="http://jboss.org/kie/6.0.0/kmodule">



</kmodule>
KieServices ks = KieServices.Factory.get();

KieContainer kContainer = ks.getKieClasspathContainer();



KieSession kSession = kContainer.newKieSession();

kSession.setGlobal("out", out);

kSession.insert(new Message("Dave", "Hello, HAL. Do you read me, HAL?"));

kSession.fireAllRules();
KieModules
• Named Entities and JAR on Classpath
• Creates one KieBase
• Includes resources from package matching
kbase name
<kmodule xmlns="http://jboss.org/kie/6.0.0/kmodule">



<kbase name="kbase1">

<ksession name="ksession1"/>

</kbase>



</kmodule>
KieServices ks = KieServices.Factory.get();

KieContainer kContainer = ks.getKieClasspathContainer();



KieSession kSession = kContainer.newKieSession("ksession1");

kSession.setGlobal("out", out);

kSession.insert(new Message("Dave", "Hello, HAL. Do you read me, HAL?"));

kSession.fireAllRules();
KieModules
• Named Entities, with inheritence and JAR on
Classpath
• Two projects, one “includes” from the other
<dependency>

<groupId>org.drools</groupId>

<artifactId>named-kiesession</artifactId>

<version>6.0.0-SNAPSHOT</version>

</dependency>
<kbase name="kbase2" includes="kbase1">

<ksession name="ksession2"/>

</kbase>
KieServices ks = KieServices.Factory.get();

KieContainer kContainer = ks.getKieClasspathContainer();

KieSession kSession = kContainer.newKieSession("ksession2");

kSession.setGlobal("out", out);



kSession.insert(new Message("Dave", "Hello, HAL. Do you read me, HAL?"));

kSession.fireAllRules();



kSession.insert(new Message("Dave", "Open the pod bay doors, HAL."));

kSession.fireAllRules();
KieModules
• Package location can over-ride kbase name defaults
<kbase name="WumpusMainKB" packages="org.drools.games.wumpus.server,
org.drools.games.wumpus.server.view">

<ksession name="WumpusMainKS" />

</kbase>



<kbase name="WumpusClientKB" packages="org.drools.games.wumpus.client">

<ksession name="WumpusClientKS"/>

</kbase>
KieContainer kc = KieServices.Factory.get().getKieClasspathContainer();

final KieSession serverKsession = kc.newKieSession( "WumpusMainKS");

final KieSession clientKsession = kc.newKieSession("WumpusClientKS");
Dynamic KieModules
• JARs can be loaded from URLs into KieRepository
• Once loaded they can be resolved via ReleaseId
KieServices ks = KieServices.Factory.get();

KieRepository kr = ks.getRepository();



KieModule kModule = kr.addKieModule(ks.getResources().newFileSystemResource(
getFile("default-kiesession")));



KieContainer kContainer = ks.newKieContainer(kModule.getReleaseId());



KieSession kSession = kContainer.newKieSession();

kSession.setGlobal("out", out);



Object msg1 = createMessage(kContainer,
"Dave", "Hello, HAL. Do you read me, HAL?");

kSession.insert(msg1);

kSession.fireAllRules();
Dynamic KieModules
• kie-ci use embedded maven for remote
discovery
<dependency>

<groupId>org.kie</groupId>

<artifactId>kie-ci</artifactId>

</dependency>
KieServices ks = KieServices.Factory.get();



// Install example1 in the local maven repo before to do this

KieContainer kContainer = ks.newKieContainer(
ks.newReleaseId("org.drools",
"named-kiesession",
"6.0.0-SNAPSHOT"));



KieSession kSession = kContainer.newKieSession("ksession1");

kSession.setGlobal("out", out);



Object msg1 = createMessage(kContainer,
"Dave", "Hello, HAL. Do you read me, HAL?");

kSession.insert(msg1);

kSession.fireAllRules();
Dynamic KieModules




// create a new kjar

InternalKieModule kJar2 = createKieJar(ks, releaseId, "rule2", "rule3");



// deploy it on maven

repository.deployArtifact(releaseId, kJar2, kPom);



// since I am not calling start() on the scanner it means it won't have
automatic scheduled scanning

KieScanner scanner = ks.newKieScanner(kieContainer);



// scan the maven repo to get the new kjar version and deploy it on the
kcontainer

scanner.scanNow();



// create a ksesion and check it works as expected

KieSession ksession2 = kieContainer.newKieSession("KSession1");

checkKSession(ksession2, "rule2", "rule3");
Maven Versions
• <version>1.0.1</version>
• <version>[1.0.0,2.0.0)</version>
• <version>[1.0.0,)</version>
• <version>LATEST</version>
• <version>RELEASE</version>
• <version>SNAPSHOT</version>
kmodule.xml Editor
Programmatic API
• Builder API, for tooling integration
• Incremental compilation, and problem
reporting
KieServices ks = KieServices.Factory.get();

KieRepository kr = ks.getRepository();

KieFileSystem kfs = ks.newKieFileSystem();



kfs.write("src/main/resources/org/kie/example5/HAL5.drl", getRule());



KieBuilder kb = ks.newKieBuilder(kfs);



kb.buildAll(); // kieModule is automatically deployed to KieRepository if
successfully built.

if (kb.getResults().hasMessages(Level.ERROR)) {

throw new RuntimeException("Build Errors:n" + kb.getResults().toString());

}



KieContainer kContainer = ks.newKieContainer(kr.getDefaultReleaseId());



KieSession kSession = kContainer.newKieSession();

kSession.setGlobal("out", out);



kSession.insert(new Message("Dave", "Hello, HAL. Do you read me, HAL?"));

kSession.fireAllRules();
CDI
CDI Context and Dependency
• CDI injects named entities from the
kmodule.xml
!
• Injectable types
• KieServices
• KieContainer
• KieBase
• KieSession
• StatelessKieSession
KBase
@Inject 

@KBase(value="jar1.KBase1", name="kb2") 

@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.0")

private KieBase jar1KBase1kb2; 



@Inject

@KBase(value="jar1.KBase1", name="kb2") 

@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.0")

private KieBase jar1KBase1kb22;
@Inject

private KieBase defaultClassPathKBase;



@Inject

@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.0") 

private KieBase defaultDynamicKBase;
@Inject

@KBase("jar1.KBase1") 

@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.0")

private KieBase jar1KBase1v10;



@Inject

@KBase("jar1.KBase1") 

@KReleaseId(groupId = "jar1",

artifactId = "art1", 

version = "1.1")

private KieBase jar1KBase1v11; 



@Inject

@KBase(value="jar1.KBase1", name="kb1")

@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.0")

private KieBase jar1KBase1kb1;
KSession
@Inject

@KSession("jar1.KSession2") 

@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.0" )

private KieSession kbase1ksession2v10;

@Inject

@KSession("jar1.KSession2") 

@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.1" )

private KieSession kbase1ksession2v11;
@Inject

@KSession(value="jar1.KSession2", name="ks1")
@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.0" )

private KieSession kbase1ksession2ks1;



@Inject

@KSession(value="jar1.KSession2", name="ks2")
@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.0" )

private KieSession kbase1ksession2ks2 ; 



@Inject

@KSession(value="jar1.KSession2", name="ks2")
@KReleaseId( groupId = "jar1",

artifactId = "art1", 

version = "1.0" )

private KieSession kbase1ksession2ks22;
Spring and Camel
Spring and Camel
<kie:kmodule id="CxfRsSpring">

<kie:kbase name="test1" packages="test1">

<kie:ksession name="ksession1">

<kie:batch>

<kie:set-global identifier="list" >

<bean class="java.util.ArrayList" />

</kie:set-global>

</kie:batch>

</kie:ksession>

<kie:ksession name="ksession2"/>

</kie:kbase>

</kie:kmodule>
Spring and Camel
<bean id="kiePolicy" class="org.kie.camel.component.KiePolicy" />



<camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">



<route>

<from uri="cxfrs://bean://rsServer"/>

<policy ref="kiePolicy">

<unmarshal ref="xstream" />

<to uri="kie:ksession1" />

<marshal ref="xstream" />

</policy>

</route>



<route id="x1">

<from uri="direct://http"/>

<policy ref="kiePolicy">

<to uri="cxfrs://http://localhost:58001/rest"/>

</policy> 

</route> 



</camelContext>
104
Questions?
• Dave Bowman: All right, HAL; I'll go in
through the emergency airlock.
• HAL: Without your space helmet, Dave,
you're going to find that rather difficult.
• Dave Bowman: HAL, I won't argue with
you anymore! Open the doors!
• HAL: Dave, this conversation can serve
no purpose anymore. Goodbye.
Joshya: Greetings, Professor Falken.
Falken: Hello, Joshua.
Joshya: A strange game. The only winning move is not
to play. How about a nice game of chess?
R.I.P Rete
Time to get Phreaky
Rete
ReteOO
• Node sharing
• Alpha indexing
• Tree based graphs
• Modify-in-place
• Property reactive
• Sub-networks
• Backward Chaining
• Lazy Truth Maintenance
• Heap based agenda
• Dynamic Rules
R.I.P RETE Time to get Phreaky
inspirations:
• Leaps, Collection Oriented Match, L/R Unlinking
!
New Innovations
• Full Rule, and Rule Segment Unlinking
• Lazy Evaluation, with Rule scoping
• Set propagations
!
Previous Innovations
• Modify In Place
• Property Reactive
• Tree Based Graphs
• Subnetwork support
Phreak
Phreak
Phreak
TMS
Justification-based Truth
• Drools 5.x
• Simple logical insertion TMS, like Clips, Jess and
others.
!
• Drools 6.0
• Contradiction handling with JTMS
• Clean separation of exception logic
• TMS now has pluggable Belief System
• Simple TMS support
• JTMS now possible (exp)
• Defeasible Logic (exp)
!
• See drools-compiler
• JTMSTest for lots of example tests
114
TMS
Couples the logic
What happens when the Child 	

stops being 16?
rule "Issue Child Bus Pass"
when
$p : Person( age < 16 )
then
insert(new ChildBusPass( $p ) );
end
rule "Issue Adult Bus Pass"
when
$p : Person( age >= 16 )
then
insert(new AdultBusPass( $p ) );
end
TMS
• Bad
• Monolithic
• Leaky
• Brittle integrity - manual maintenance
116
TMS
de-couples the logic
Maintains the truth by 

automatically retracting
•A rule “logically” inserts an object
•When the rule is no longer true, the object is retracted.
rule "IsChild"
when
$p : Person( age < 16 )
then
logicalInsert( new IsChild( $p ) )
end
rule "IsAdult"
when
$p : Person( age >= 16 )
then
logicalInsert( new IsAdult( $p ) )
end
117
TMS
The truth maintenance cascades
rule "Issue Child Bus Pass"
when
$p : Person( )
IsChild( person =$p )
then
logicalInsert(new ChildBusPass( $p ) );
end
rule "Issue Adult Bus Pass"
when
$p : Person()
IsAdult( person =$p )
then
logicalInsert(new AdultBusPass( $p ) );
end
118
TMS
rule "Issue Child Bus Pass"
when
$p : Person( )
not( ChildBusPass( person == $p ) )
then
requestChildBusPass( $p );
end The truth maintenance cascades
119
TMS
• Good
• De-couple knowledge responsibilities
• Encapsulate knowledge
• Provide semantic abstractions for those encapsulation
• Integrity robustness – truth maintenance
TMS
IsChild
ChildBusPas
Rule : isChildRule
Rule : IssueBusPas
+
+
JTMS
JTMS
rule "Do not issue to banned people"
when
$p : Person( )
Banned( person =$p )
then
logicalInsert(new ChildBusPass( $p ) , “neg” );
end
“plus” and “neg”
labels
JTMS
IsChild
ChildBusPas
Rule : isChildRule
Rule : IssueBusPas
+
+
Rule : Do Not Issue
to Banned People
-
Defeasible
Defeasible
rule "All Birds Fly"
when
$b : Bird( )
then
logicalInsert(new Fly( $b ) );
end
rule "Brocken wing"
when
$b : Bird( )
BrockenWing($b;)
then
logicalInsert(new Fly( $b ),
“neg” );
end
Defeasible
rule "All Birds Fly" @Defeasible
when
$b : Bird( )
then
logicalInsert(new Fly( $b ) );
end
rule "Brocken wing" @Defeasible
@Defeater
when
$b : Bird( )
BrockenWing($b;)
then
logicalInsert(new Fly( $b ), “neg” );
end
rule "Birds With Rockets Fly"@Defeasible
@Defeats(“Brocken Wing”)
when
$b : Bird( )
Rocket($b;)
then
logicalInsert(new Fly( $b ) );
end
Decision Tables
Decision Table
Decision Table
Decision Table
Decision Table
Decision Table
Decision Table
Decision Table
Decision Table
Decision Table
Decision Table
Redundancy - Subsumption
Deficiency
• Deficiency
• Premium is £500 if applicant age is less than 30
• Premium is £300 if Years Without Claim is greater than or
equal to 10 years.
!
!
!
!
!
• Applicant is 29, premium is £500
• Applicant has 12 years without claim, premium is £300
• Applicant is 29 with 12 years without claim, premium
is ?!?
Property Reactive
Loop Problem
rule “Salary award for min 2 years service” when !
e : Employee( lengthOfService > 2 )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
end!
!
!
!
!
!
Loop Problem
rule “Salary award for min 2 years service” no-loop
when !
e : Employee( lengthOfService > 2 )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
end!
!
!
!
!
!
Loop Problem
rule “Salary award for min 2 years service” no-loop when !
e : Employee( lengthOfService > 2 )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
end!
!
rule “Salary award for min 8 years service” no-loop when !
e : Employee( lengthOfService > 8 )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
end
Loop Problem
rule “Salary award for min 2 years service” when !
e : Employee( lengthOfService > 2 )!
not SalaryMin2Years( employee == e )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
insert ( new SalaryMin2Years(e) );!
end!
!
rule “Salary award for min 8 years service” when !
e : Employee( lengthOfService > 8 )!
not SalaryMin8Years( employee == e )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
insert ( new SalaryMin8Years(e) );!
end
Loop Problem
rule “Year End” when !
d : ChangeDate( )!
e : Employee( )!
then !
modify( e ) { lengthOfService( !
d.getYear() - e.getStartYear() ) };!
end!
!
rule “Salary award for min 8 years service” when !
e : Employee( lengthOfService > 8 )!
not SalaryMin8Years( employee == e )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
insert ( new SalaryMin8Years(e) );!
end
Refraction
This term comes from the neurobiological
observation of a refractory period for a
neuron, which means that the neuron is not
able to fire immediately without first going
through a relaxation process.
!
In a similar way, OPS5 will not allow the same
instantiation in the conflict set from firing twice
in a row. This prevents the inference engine
from entering into an infinite loop.
W3C RIF Refraction
• Refraction
When a rule instance is fired, it is
removed from the conflict set (and thus
will not be created again even its
condition part remains true), unless one
of the objects in its condition part is
modified again. In the later case, the
repeatability concept determines how
the rule instance is treated
W3C RIF Refraction
• Repeatability
After the execution of a rule instance,
the rule instance is removed from the
conflict set by the refraction. Later on, if
one of the objects in the condition part
is modified and if the rule evaluates to
true, the repeatability controls whether if
the rule instance can be created again.
Loop Problem (Refraction)
rule “Salary award for min 2 years service” !
repeatable false when !
e : Employee( lengthOfService > 2 )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
end!
!
rule “Salary award for min 8 years service” !
repeatable false when !
e : Employee( lengthOfService > 8 )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
end
AAAAAAhhhhhhhhhh
Drools 6.0 (Red Hat Summit)
Annotate Class
@PropertyReactive!
public class Employee {!
int salary;!
int lengthOfService!
!
// getters and setters below!
}
Loop Problem Fixed
rule “Salary award for min 2 years service” when !
e : Employee( lengthOfService > 2 )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
end!
!
rule “Salary award for min 8 years service” when !
e : Employee( lengthOfService > 8 )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
end
@Watch
rule “Salary award for min 2 years service” when !
e : Employee( salary < 1000, lengthOfService > 2 )!
@Watch( !salary )!
then !
modify( e ) { setSalary( e.getSalary() * 1.05 ) };!
end
@Watch
rule “Record Salary Changes” when !
e : Employee( ) @Watch( salary )!
then !
insert( new SalaryChange( e, e.getSalary() );!
end
@Watch
@Watch( salary, lengthOfService, age )!
!
@Watch( * )!
!
@Watch( !* )!
!
@Watch( *, !salary )!
!
@Watch( !*, salary )
Backward Chaining
158
Reasoning with Graphs
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
159
Backward Chaining
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
160
ksession.insert( new Location("Office", "House") );

ksession.insert( new Location("Kitchen", "House") );

ksession.insert( new Location("Knife", "Kitchen") );

ksession.insert( new Location("Cheese", "Kitchen") );

ksession.insert( new Location("Desk", "Office") );

ksession.insert( new Location("Chair", "Office") );

ksession.insert( new Location("Computer", "Desk") );

ksession.insert( new Location("Draw", "Desk") );
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
161
rule "go" salience 10

when

$s : String( )

then

System.out.println( $s );

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
162
rule "go1"

when

String( this == "go1" )

isContainedIn("Office", "House"; )

then

System.out.println( "office is in the house" );

end
rule "go" salience 10

when

$s : String( )

then

System.out.println( $s );

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
163
rule "go1"

when

String( this == "go1" )

isContainedIn("Office", "House"; )

then

System.out.println( "office is in the house" );

end
rule "go" salience 10

when

$s : String( )

then

System.out.println( $s );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
164
rule "go1"

when

String( this == "go1" )

isContainedIn("Office", "House"; )

then

System.out.println( "office is in the house" );

end
rule "go" salience 10

when

$s : String( )

then

System.out.println( $s );

end
ksession.insert( "go1" );

ksession.fireAllRules();
---
go1
office is in the house
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
165
rule "go1"

when

String( this == "go1" )

isContainedIn("Office", "House"; )

then

System.out.println( "office is in the house" );

end
rule "go" salience 10

when

$s : String( )

then

System.out.println( $s );

end
ksession.insert( "go1" );

ksession.fireAllRules();
---
go1
office is in the house
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
isContainedIn(x==Office, y==House)
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
166
rule "go1"

when

String( this == "go1" )

isContainedIn("Office", "House"; )

then

System.out.println( "office is in the house" );

end
rule "go" salience 10

when

$s : String( )

then

System.out.println( $s );

end
ksession.insert( "go1" );

ksession.fireAllRules();
---
go1
office is in the house
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
Location(x==Office, y==House)
isContainedIn(x==Office, y==House)
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
167
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
168
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
169
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
170
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
isContainedIn(x==Draw, y==House)
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
171
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
Location(z==Office, y==House)
isContainedIn(x==Draw, y==House)
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
172
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
Location(z==Office, y==House)
isContainedIn(x==Draw, z==Office)
isContainedIn(x==Draw, y==House)
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
173
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
Location(z==Office, y==House)
isContainedIn(x==Draw, z==Office)
Location(z==Kitchen, y==House)
isContainedIn(x==Draw, z==Kitchen)
isContainedIn(x==Draw, y==House)
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
174
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
isContainedIn(x==Draw, y==Office)
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
175
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
Location(z==Desk, y==Office)
isContainedIn(x==Draw, y==Office)
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
176
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
Location(z==Desk, y==Office)
isContainedIn(x==Draw, z==Desk)
isContainedIn(x==Draw, y==Office)
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
177
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
isContainedIn(x==Draw, y==Desk)
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
178
rule "go2"

when

String( this == "go2" )

isContainedIn("Draw", "House"; )

then

System.out.println( "Draw in the House" );

end
query isContainedIn( String x, String y )

Location( x, y; )

or

( Location( z, y; ) and isContainedIn( x, z; ) )

end
Location(x==Draw, y==Desk)
isContainedIn(x==Draw, y==Desk)
ksession.insert( "go2" );

ksession.fireAllRules();
---
go2
Draw in the House
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
179
rule "go3"

when

String( this == "go3" )

isContainedIn("Key", "Office"; )

then

System.out.println( "Key in the Office" );

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
180
rule "go3"

when

String( this == "go3" )

isContainedIn("Key", "Office"; )

then

System.out.println( "Key in the Office" );

end
ksession.insert( "go3" );

ksession.fireAllRules();
---
go3
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
181
rule "go3"

when

String( this == "go3" )

isContainedIn("Key", "Office"; )

then

System.out.println( "Key in the Office" );

end
ksession.insert( "go3" );

ksession.fireAllRules();
---
go3
ksession.insert( new Location("Key", "Draw") );

ksession.fireAllRules();
---
Key in the Office
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
182
rule "go4"

when

String( this == "go4" )

isContainedIn(thing, "Office"; )

then

System.out.println( "thing " + thing + " is in the Office" );

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
183
rule "go4"

when

String( this == "go4" )

isContainedIn(thing, "Office"; )

then

System.out.println( "thing " + thing + " is in the Office" );

end
Out Var
(unbound)
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
184
rule "go4"

when

String( this == "go4" )

isContainedIn(thing, "Office"; )

then

System.out.println( "thing " + thing + " is in the Office" );

end
ksession.insert( "go4" );

ksession.fireAllRules();
---
go4
thing Key is in the Office
thing Computer is in the Office
thing Draw is in the Office
thing Desk is in the Office
thing Chair is in the Office
Out Var
(unbound)
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
185
rule "go5"

when

String( this == "go5" )

isContainedIn(thing, location; )

then

System.out.println( "thing " + thing + " is in " + location );

end
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
186
rule "go5"

when

String( this == "go5" )

isContainedIn(thing, location; )

then

System.out.println( "thing " + thing + " is in " + location );

end
Out Var
(unbound)
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
187
rule "go5"

when

String( this == "go5" )

isContainedIn(thing, location; )

then

System.out.println( "thing " + thing + " is in " + location );

end
Out Var
(unbound)
Out Var
(unbound)
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
Backward Chaining
188
rule "go5"

when

String( this == "go5" )

isContainedIn(thing, location; )

then

System.out.println( "thing " + thing + " is in " + location );

end
ksession.insert( "go5" );

ksession.fireAllRules();
---
go5
thing Knife is in House
thing Cheese is in House
thing Key is in House
thing Computer is in House
thing Draw is in House
thing Desk is in House
thing Chair is in House
thing Key is in Office
thing Computer is in Office
thing Draw is in Office
thing Key is in Desk
thing Office is in House
Out Var
(unbound)
Out Var
(unbound)
!
thing Computer is in Desk
thing Knife is in Kitchen
thing Cheese is in Kitchen
thing Kitchen is in House
thing Key is in Draw
thing Draw is in Desk
thing Desk is in Office
thing Chair is in Office
House
Location("Office",
"House ")
Location("Kitchen",
"House")
Location("Desk",
"Office")
Location("Chair",
"Office")
Location("Computer",
"Desk")
Location("Draw",
"Desk")
Location("Knife",
"Kitchen")
Location("Cheese",
"Kitchen")
Location("Key",
"Draw")
189
Questions?
• Dave Bowman: All right, HAL; I'll go in
through the emergency airlock.
• HAL: Without your space helmet, Dave,
you're going to find that rather difficult.
• Dave Bowman: HAL, I won't argue with
you anymore! Open the doors!
• HAL: Dave, this conversation can serve
no purpose anymore. Goodbye.
Joshya: Greetings, Professor Falken.
Falken: Hello, Joshua.
Joshya: A strange game. The only winning move is not
to play. How about a nice game of chess?
1 of 189

Recommended

Drools and jBPM 6 Overview by
Drools and jBPM 6 OverviewDrools and jBPM 6 Overview
Drools and jBPM 6 OverviewMark Proctor
20.1K views106 slides
Drools by
DroolsDrools
DroolsJohn Paulett
10K views27 slides
Drools Ecosystem by
Drools EcosystemDrools Ecosystem
Drools EcosystemSaumitra Srivastav
1.2K views24 slides
Drools rule Concepts by
Drools rule ConceptsDrools rule Concepts
Drools rule ConceptsRaviShankar Mishra
1.5K views27 slides
Drools5 Community Training: Module 1.5 - Drools Expert First Example by
Drools5 Community Training: Module 1.5 - Drools Expert First ExampleDrools5 Community Training: Module 1.5 - Drools Expert First Example
Drools5 Community Training: Module 1.5 - Drools Expert First ExampleMauricio (Salaboy) Salatino
4K views24 slides
Drools by
DroolsDrools
DroolsAllan Huang
895 views23 slides

More Related Content

What's hot

Comprehensive Terraform Training by
Comprehensive Terraform TrainingComprehensive Terraform Training
Comprehensive Terraform TrainingYevgeniy Brikman
23.1K views148 slides
Easy data-with-spring-data-jpa by
Easy data-with-spring-data-jpaEasy data-with-spring-data-jpa
Easy data-with-spring-data-jpaStaples
3.5K views26 slides
Terraform -- Infrastructure as Code by
Terraform -- Infrastructure as CodeTerraform -- Infrastructure as Code
Terraform -- Infrastructure as CodeMartin Schütte
8.1K views42 slides
Terraform Introduction by
Terraform IntroductionTerraform Introduction
Terraform Introductionsoniasnowfrog
3.3K views34 slides
Solid NodeJS with TypeScript, Jest & NestJS by
Solid NodeJS with TypeScript, Jest & NestJSSolid NodeJS with TypeScript, Jest & NestJS
Solid NodeJS with TypeScript, Jest & NestJSRafael Casuso Romate
6.7K views31 slides
NestJS by
NestJSNestJS
NestJSWilson Su
1.3K views19 slides

What's hot(20)

Comprehensive Terraform Training by Yevgeniy Brikman
Comprehensive Terraform TrainingComprehensive Terraform Training
Comprehensive Terraform Training
Yevgeniy Brikman23.1K views
Easy data-with-spring-data-jpa by Staples
Easy data-with-spring-data-jpaEasy data-with-spring-data-jpa
Easy data-with-spring-data-jpa
Staples3.5K views
Terraform -- Infrastructure as Code by Martin Schütte
Terraform -- Infrastructure as CodeTerraform -- Infrastructure as Code
Terraform -- Infrastructure as Code
Martin Schütte8.1K views
Terraform Introduction by soniasnowfrog
Terraform IntroductionTerraform Introduction
Terraform Introduction
soniasnowfrog3.3K views
NestJS by Wilson Su
NestJSNestJS
NestJS
Wilson Su1.3K views
Lessons learned from writing over 300,000 lines of infrastructure code by Yevgeniy Brikman
Lessons learned from writing over 300,000 lines of infrastructure codeLessons learned from writing over 300,000 lines of infrastructure code
Lessons learned from writing over 300,000 lines of infrastructure code
Yevgeniy Brikman177.4K views
Best Practices of Infrastructure as Code with Terraform by DevOps.com
Best Practices of Infrastructure as Code with TerraformBest Practices of Infrastructure as Code with Terraform
Best Practices of Infrastructure as Code with Terraform
DevOps.com4.1K views
Microservices Architecture & Testing Strategies by Araf Karsh Hamid
Microservices Architecture & Testing StrategiesMicroservices Architecture & Testing Strategies
Microservices Architecture & Testing Strategies
Araf Karsh Hamid2.8K views
Kotlin vs TypeScript by Saiki Iijima
Kotlin vs TypeScriptKotlin vs TypeScript
Kotlin vs TypeScript
Saiki Iijima1.2K views
Drools Expert and Fusion Intro : London 2012 by Mark Proctor
Drools Expert and Fusion Intro  : London 2012Drools Expert and Fusion Intro  : London 2012
Drools Expert and Fusion Intro : London 2012
Mark Proctor5.6K views
Callbacks, Promises, and Coroutines (oh my!): Asynchronous Programming Patter... by Domenic Denicola
Callbacks, Promises, and Coroutines (oh my!): Asynchronous Programming Patter...Callbacks, Promises, and Coroutines (oh my!): Asynchronous Programming Patter...
Callbacks, Promises, and Coroutines (oh my!): Asynchronous Programming Patter...
Domenic Denicola184.2K views
Microservices Part 3 Service Mesh and Kafka by Araf Karsh Hamid
Microservices Part 3 Service Mesh and KafkaMicroservices Part 3 Service Mesh and Kafka
Microservices Part 3 Service Mesh and Kafka
Araf Karsh Hamid7.6K views

Similar to Drools 6.0 (Red Hat Summit)

What's new in Drools 6 - London JBUG 2013 by
What's new in Drools 6 - London JBUG 2013What's new in Drools 6 - London JBUG 2013
What's new in Drools 6 - London JBUG 2013Mark Proctor
3.4K views104 slides
Drools and BRMS 6.0 (Dublin Aug 2013) by
Drools and BRMS 6.0 (Dublin Aug 2013)Drools and BRMS 6.0 (Dublin Aug 2013)
Drools and BRMS 6.0 (Dublin Aug 2013)Mark Proctor
2.3K views160 slides
Hybrid rule engines (rulesfest 2010) by
Hybrid rule engines (rulesfest 2010)Hybrid rule engines (rulesfest 2010)
Hybrid rule engines (rulesfest 2010)Geoffrey De Smet
1.2K views59 slides
Aop spring by
Aop springAop spring
Aop springchamilavt
710 views16 slides
Spring by
SpringSpring
Springalex.albu
271 views12 slides
Refactoring at Large by
Refactoring at LargeRefactoring at Large
Refactoring at LargeDanilo Sato
8.1K views148 slides

Similar to Drools 6.0 (Red Hat Summit)(20)

What's new in Drools 6 - London JBUG 2013 by Mark Proctor
What's new in Drools 6 - London JBUG 2013What's new in Drools 6 - London JBUG 2013
What's new in Drools 6 - London JBUG 2013
Mark Proctor3.4K views
Drools and BRMS 6.0 (Dublin Aug 2013) by Mark Proctor
Drools and BRMS 6.0 (Dublin Aug 2013)Drools and BRMS 6.0 (Dublin Aug 2013)
Drools and BRMS 6.0 (Dublin Aug 2013)
Mark Proctor2.3K views
Hybrid rule engines (rulesfest 2010) by Geoffrey De Smet
Hybrid rule engines (rulesfest 2010)Hybrid rule engines (rulesfest 2010)
Hybrid rule engines (rulesfest 2010)
Geoffrey De Smet1.2K views
Aop spring by chamilavt
Aop springAop spring
Aop spring
chamilavt710 views
Refactoring at Large by Danilo Sato
Refactoring at LargeRefactoring at Large
Refactoring at Large
Danilo Sato8.1K views
Reducing the Cost of the Linear Growth Effect using Adaptive Rules with Unlin... by Mark Proctor
Reducing the Cost of the Linear Growth Effect using Adaptive Rules with Unlin...Reducing the Cost of the Linear Growth Effect using Adaptive Rules with Unlin...
Reducing the Cost of the Linear Growth Effect using Adaptive Rules with Unlin...
Mark Proctor806 views
Introduction to aop by Dror Helper
Introduction to aopIntroduction to aop
Introduction to aop
Dror Helper691 views
Drools 6.0 (CamelOne 2013) by Mark Proctor
Drools 6.0 (CamelOne 2013)Drools 6.0 (CamelOne 2013)
Drools 6.0 (CamelOne 2013)
Mark Proctor1.4K views
Droid on Chain - Berry Ventura Lev, Kik by DroidConTLV
Droid on Chain - Berry Ventura Lev, KikDroid on Chain - Berry Ventura Lev, Kik
Droid on Chain - Berry Ventura Lev, Kik
DroidConTLV176 views
Tips and tricks for building high performance android apps using native code by Kenneth Geisshirt
Tips and tricks for building high performance android apps using native codeTips and tricks for building high performance android apps using native code
Tips and tricks for building high performance android apps using native code
Kenneth Geisshirt4.4K views
03 integrate webapisignalr by Erhwen Kuo
03 integrate webapisignalr03 integrate webapisignalr
03 integrate webapisignalr
Erhwen Kuo553 views
Why Kubernetes Freedom Requires Chaos Engineering to Shine in Production by ScyllaDB
Why Kubernetes Freedom Requires Chaos Engineering to Shine in ProductionWhy Kubernetes Freedom Requires Chaos Engineering to Shine in Production
Why Kubernetes Freedom Requires Chaos Engineering to Shine in Production
ScyllaDB232 views
Grokking Engineering - Data Analytics Infrastructure at Viki - Huy Nguyen by Huy Nguyen
Grokking Engineering - Data Analytics Infrastructure at Viki - Huy NguyenGrokking Engineering - Data Analytics Infrastructure at Viki - Huy Nguyen
Grokking Engineering - Data Analytics Infrastructure at Viki - Huy Nguyen
Huy Nguyen1.1K views
Stream Processing in SmartNews #jawsdays by SmartNews, Inc.
Stream Processing in SmartNews #jawsdaysStream Processing in SmartNews #jawsdays
Stream Processing in SmartNews #jawsdays
SmartNews, Inc.22K views
JCConf 2016 - Google Dataflow 小試 by Simon Su
JCConf 2016 - Google Dataflow 小試JCConf 2016 - Google Dataflow 小試
JCConf 2016 - Google Dataflow 小試
Simon Su1.4K views

More from Mark Proctor

Rule Modularity and Execution Control by
Rule Modularity and Execution ControlRule Modularity and Execution Control
Rule Modularity and Execution ControlMark Proctor
263 views38 slides
Drools, jBPM OptaPlanner presentation by
Drools, jBPM OptaPlanner presentationDrools, jBPM OptaPlanner presentation
Drools, jBPM OptaPlanner presentationMark Proctor
338 views69 slides
Drools, jBPM and OptaPlanner (NYC and DC Sept 2017 - Keynote Talk Video) by
Drools, jBPM and OptaPlanner (NYC and DC Sept 2017 - Keynote Talk Video)Drools, jBPM and OptaPlanner (NYC and DC Sept 2017 - Keynote Talk Video)
Drools, jBPM and OptaPlanner (NYC and DC Sept 2017 - Keynote Talk Video)Mark Proctor
1.4K views90 slides
Learning Rule Based Programming using Games @DecisionCamp 2016 by
Learning Rule Based Programming using Games @DecisionCamp 2016Learning Rule Based Programming using Games @DecisionCamp 2016
Learning Rule Based Programming using Games @DecisionCamp 2016Mark Proctor
1.2K views84 slides
Drools Happenings 7.0 - Devnation 2016 by
Drools Happenings 7.0 - Devnation 2016Drools Happenings 7.0 - Devnation 2016
Drools Happenings 7.0 - Devnation 2016Mark Proctor
2.1K views82 slides
RuleML2015 : Hybrid Relational and Graph Reasoning by
RuleML2015 : Hybrid Relational and Graph Reasoning RuleML2015 : Hybrid Relational and Graph Reasoning
RuleML2015 : Hybrid Relational and Graph Reasoning Mark Proctor
1.7K views49 slides

More from Mark Proctor(20)

Rule Modularity and Execution Control by Mark Proctor
Rule Modularity and Execution ControlRule Modularity and Execution Control
Rule Modularity and Execution Control
Mark Proctor263 views
Drools, jBPM OptaPlanner presentation by Mark Proctor
Drools, jBPM OptaPlanner presentationDrools, jBPM OptaPlanner presentation
Drools, jBPM OptaPlanner presentation
Mark Proctor338 views
Drools, jBPM and OptaPlanner (NYC and DC Sept 2017 - Keynote Talk Video) by Mark Proctor
Drools, jBPM and OptaPlanner (NYC and DC Sept 2017 - Keynote Talk Video)Drools, jBPM and OptaPlanner (NYC and DC Sept 2017 - Keynote Talk Video)
Drools, jBPM and OptaPlanner (NYC and DC Sept 2017 - Keynote Talk Video)
Mark Proctor1.4K views
Learning Rule Based Programming using Games @DecisionCamp 2016 by Mark Proctor
Learning Rule Based Programming using Games @DecisionCamp 2016Learning Rule Based Programming using Games @DecisionCamp 2016
Learning Rule Based Programming using Games @DecisionCamp 2016
Mark Proctor1.2K views
Drools Happenings 7.0 - Devnation 2016 by Mark Proctor
Drools Happenings 7.0 - Devnation 2016Drools Happenings 7.0 - Devnation 2016
Drools Happenings 7.0 - Devnation 2016
Mark Proctor2.1K views
RuleML2015 : Hybrid Relational and Graph Reasoning by Mark Proctor
RuleML2015 : Hybrid Relational and Graph Reasoning RuleML2015 : Hybrid Relational and Graph Reasoning
RuleML2015 : Hybrid Relational and Graph Reasoning
Mark Proctor1.7K views
Red Hat Summit 2015 : Drools, jBPM and UberFire Roadmaps by Mark Proctor
Red Hat Summit 2015 : Drools, jBPM and UberFire RoadmapsRed Hat Summit 2015 : Drools, jBPM and UberFire Roadmaps
Red Hat Summit 2015 : Drools, jBPM and UberFire Roadmaps
Mark Proctor2.3K views
Red Hat JBoss BRMS and BPMS Workbench and Rich Client Technology by Mark Proctor
Red Hat JBoss BRMS and BPMS Workbench and Rich Client TechnologyRed Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Red Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Mark Proctor3.8K views
Classic Games Development with Drools by Mark Proctor
Classic Games Development with DroolsClassic Games Development with Drools
Classic Games Development with Drools
Mark Proctor2.2K views
UberFire Quick Intro and Overview (early beta Aug 2013) by Mark Proctor
UberFire Quick Intro and Overview (early beta Aug 2013)UberFire Quick Intro and Overview (early beta Aug 2013)
UberFire Quick Intro and Overview (early beta Aug 2013)
Mark Proctor2.8K views
Property Reactive RuleML 2013 by Mark Proctor
Property Reactive RuleML 2013Property Reactive RuleML 2013
Property Reactive RuleML 2013
Mark Proctor2.3K views
Reactive Transitive Closures with Drools (Backward Chaining) by Mark Proctor
Reactive Transitive Closures with Drools (Backward Chaining)Reactive Transitive Closures with Drools (Backward Chaining)
Reactive Transitive Closures with Drools (Backward Chaining)
Mark Proctor3.3K views
Drools 6.0 (JudCon 2013) by Mark Proctor
Drools 6.0 (JudCon 2013)Drools 6.0 (JudCon 2013)
Drools 6.0 (JudCon 2013)
Mark Proctor4.9K views
UberFire Quick Intro and Overview (early beta Jul 2013) by Mark Proctor
UberFire Quick Intro and Overview (early beta Jul 2013)UberFire Quick Intro and Overview (early beta Jul 2013)
UberFire Quick Intro and Overview (early beta Jul 2013)
Mark Proctor2.6K views
UberFire (JudCon 2013) by Mark Proctor
UberFire (JudCon 2013)UberFire (JudCon 2013)
UberFire (JudCon 2013)
Mark Proctor1.6K views
Drools 6.0 (Red Hat Summit 2013) by Mark Proctor
Drools 6.0 (Red Hat Summit 2013)Drools 6.0 (Red Hat Summit 2013)
Drools 6.0 (Red Hat Summit 2013)
Mark Proctor1.7K views
Games development with the Drools rule engine by Mark Proctor
Games development with the Drools rule engineGames development with the Drools rule engine
Games development with the Drools rule engine
Mark Proctor2.1K views
Drools & jBPM future roadmap talk by Mark Proctor
Drools & jBPM future roadmap talkDrools & jBPM future roadmap talk
Drools & jBPM future roadmap talk
Mark Proctor2.3K views
Drools @ IntelliFest 2012 by Mark Proctor
Drools @ IntelliFest 2012Drools @ IntelliFest 2012
Drools @ IntelliFest 2012
Mark Proctor2K views
JUDCon India 2012 Drools Fusion by Mark Proctor
JUDCon  India 2012 Drools FusionJUDCon  India 2012 Drools Fusion
JUDCon India 2012 Drools Fusion
Mark Proctor2.2K views

Recently uploaded

Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates by
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesKeynote Talk: Open Source is Not Dead - Charles Schulz - Vates
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesShapeBlue
178 views15 slides
Network Source of Truth and Infrastructure as Code revisited by
Network Source of Truth and Infrastructure as Code revisitedNetwork Source of Truth and Infrastructure as Code revisited
Network Source of Truth and Infrastructure as Code revisitedNetwork Automation Forum
49 views45 slides
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P... by
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...ShapeBlue
120 views62 slides
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit... by
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...ShapeBlue
86 views25 slides
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T by
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TCloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TShapeBlue
81 views34 slides
"Surviving highload with Node.js", Andrii Shumada by
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada Fwdays
49 views29 slides

Recently uploaded(20)

Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates by ShapeBlue
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesKeynote Talk: Open Source is Not Dead - Charles Schulz - Vates
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates
ShapeBlue178 views
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P... by ShapeBlue
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
ShapeBlue120 views
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit... by ShapeBlue
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
ShapeBlue86 views
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T by ShapeBlue
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TCloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
ShapeBlue81 views
"Surviving highload with Node.js", Andrii Shumada by Fwdays
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada
Fwdays49 views
Extending KVM Host HA for Non-NFS Storage - Alex Ivanov - StorPool by ShapeBlue
Extending KVM Host HA for Non-NFS Storage -  Alex Ivanov - StorPoolExtending KVM Host HA for Non-NFS Storage -  Alex Ivanov - StorPool
Extending KVM Host HA for Non-NFS Storage - Alex Ivanov - StorPool
ShapeBlue56 views
Business Analyst Series 2023 - Week 4 Session 7 by DianaGray10
Business Analyst Series 2023 -  Week 4 Session 7Business Analyst Series 2023 -  Week 4 Session 7
Business Analyst Series 2023 - Week 4 Session 7
DianaGray10110 views
DRBD Deep Dive - Philipp Reisner - LINBIT by ShapeBlue
DRBD Deep Dive - Philipp Reisner - LINBITDRBD Deep Dive - Philipp Reisner - LINBIT
DRBD Deep Dive - Philipp Reisner - LINBIT
ShapeBlue110 views
Migrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlue by ShapeBlue
Migrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlueMigrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlue
Migrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlue
ShapeBlue147 views
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ... by ShapeBlue
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...
ShapeBlue121 views
State of the Union - Rohit Yadav - Apache CloudStack by ShapeBlue
State of the Union - Rohit Yadav - Apache CloudStackState of the Union - Rohit Yadav - Apache CloudStack
State of the Union - Rohit Yadav - Apache CloudStack
ShapeBlue218 views
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online by ShapeBlue
KVM Security Groups Under the Hood - Wido den Hollander - Your.OnlineKVM Security Groups Under the Hood - Wido den Hollander - Your.Online
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online
ShapeBlue154 views
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha... by ShapeBlue
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
ShapeBlue113 views
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... by TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc130 views
NTGapps NTG LowCode Platform by Mustafa Kuğu
NTGapps NTG LowCode Platform NTGapps NTG LowCode Platform
NTGapps NTG LowCode Platform
Mustafa Kuğu287 views
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... by ShapeBlue
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
ShapeBlue128 views

Drools 6.0 (Red Hat Summit)

  • 1. Not Quite There Yet •The SkyNet funding bill is passed. ! •The system goes online on August 4th, 1997. ! •Human decisions are removed from strategic defense. ! •SkyNet begins to learn at a geometric rate. ! •It becomes self-aware at 2:14am Eastern time, August 29th ! •In a panic, they try to pull the plug. ! •And, Skynet fights back
  • 2. Who am I? • Drools co-founder ! • JBoss (2005) ! • Red Hat (2006) ! • Polymita Acquisition 2012 ! • Red Hat Platform Architect
  • 3. KIE - Knowledge Is Everything KIE Drools jBPMOptaPlanner UberFire Guvnor Drools-WB jBPM-WB KIE-WB
  • 4. KIE - Knowledge Is Everything
  • 5. KIE - Knowledge Is Everything
  • 6. GitHub • URL: • https://github.com/droolsjbpm/ ! • Bootstrap project: • https://github.com/droolsjbpm/droolsjbpm- build-bootstrap
  • 9. 9 Classes Account long accountNo int balance CashFlow Date date int amount AccountPeriod Date start Date end CashFlow Example
  • 10. select * from Account acc, Cashflow cf, AccountPeriod ap where acc.accountNo == cf.accountNo and cf.type == CREDIT cf.date >= ap.start and cf.date <= ap.end rule “increase balance for AccountPeriod Credits” when ap : AccountPeriod() acc : Account() cf : CashFlow( type == CREDIT, accountNo == acc.accountNo, date >= ap.start && <= ap.end ) then acc.balance += cf.amount; end 10 acc.balance += cf.amount CashFlow Rule
  • 11. select * from Account acc, Cashflow cf, AccountPeriod ap where acc.accountNo == cf.accountNo and cf.type == CREDIT cf.date >= ap.start and cf.date <= ap.end rule “increase balance for AccountPeriod Credits” when ap : AccountPeriod() acc : Account() cf : CashFlow( type == CREDIT, accountNo == acc.accountNo, date >= ap.start && <= ap.end ) then acc.balance += cf.amount; end 11 acc.balance += cf.amount CashFlow Rule
  • 12. select * from Account acc, Cashflow cf, AccountPeriod ap where acc.accountNo == cf.accountNo and cf.type == CREDIT cf.date >= ap.start and cf.date <= ap.end rule “increase balance for AccountPeriod Credits” when ap : AccountPeriod() acc : Account() cf : CashFlow( type == CREDIT, accountNo == acc.accountNo, date >= ap.start && <= ap.end ) then acc.balance += cf.amount; end 12 acc.balance += cf.amount CashFlow Rule
  • 13. select * from Account acc, Cashflow cf, AccountPeriod ap where acc.accountNo == cf.accountNo and cf.type == CREDIT cf.date >= ap.start and cf.date <= ap.end rule “increase balance for AccountPeriod Credits” when ap : AccountPeriod() acc : Account() cf : CashFlow( type == CREDIT, accountNo == acc.accountNo, date >= ap.start && <= ap.end ) then acc.balance += cf.amount; end 13 acc.balance += cf.amount CashFlow Rule
  • 14. select * from Account acc, Cashflow cf, AccountPeriod ap where acc.accountNo == cf.accountNo and cf.type == CREDIT cf.date >= ap.start and cf.date <= ap.end rule “increase balance for AccountPeriod Credits” when ap : AccountPeriod() acc : Account() cf : CashFlow( type == CREDIT, accountNo == acc.accountNo, date >= ap.start && <= ap.end ) then acc.balance += cf.amount; end 14 acc.balance += cf.amount CashFlow Rule
  • 15. 15 rule "Increase balance for AccountPeriod Credits"
 when
 ap : AccountPeriod( )
 acnt : Account( )
 cf : CashFlow( type == CashFlowType.CREDIT,
 accountNo == acnt.accountNo,
 date >= ap.start && <= ap.end )
 then
 modify(acnt) { balance = acnt.balance + cf.amount; }
 end rule "Decrease balance for AccountPeriod Debits"
 when
 ap : AccountPeriod( )
 acnt : Account( )
 cf : CashFlow( type == CashFlowType.DEBIT, accountNo == acnt.accountNo, date >= ap.start && <= ap.end )
 then
 modify(acnt) { balance = acnt.balance - cf.amount }
 end CashFlow date amount type accountNo 12-Jan-12 100 CREDIT 1 2-Feb-12 200 DEBIT 1 18-May-12 50 CREDIT 1 9-Mar-12 75 CREDIT 1 AccountingPeriod start end 01-JAN-2012 31-MAR-2012 Account accountNo balance 1 0 CashFlow date amount type accountNo 12-Jan-12 100 CREDIT 1 9-Mar-12 75 CREDIT 1 CashFlow date amount type accountNo 2-Feb-12 200 DEBIT 1 Account accountNo balance 1 -25 CashFlow Example
  • 16. 16 rule "Print balance for AccountPeriod" salience -50
 when
 ap : AccountPeriod()
 acnt : Account( )
 then
 System.out.println( "Account Number " + acnt.accountNo + " balance " + acnt.balance );
 end Agenda 1 increase balance arbitrary2 decrease balance 3 increase balance 4 print balance CashFlow Example
  • 17. CashFlow Example rule “Account in Negative send Warning"
 when
 ap : AccountPeriod()
 acnt : Account( balance < 0 )
 then insert( new NegativeWarning( acnt ) );
 end
  • 18. Accumulate rule “accumulate"
 when acc( b : Bus( color == “red” ); sumTakings : sum(b.takings);)
 then System.out.println( “sum is " + sumTakings );
 end acc( b : Bus( color == “red” ); sumTakings : sum(b.takings), minTakings : min(b.takings), maxTakings : max(b.takings); minTakings < 100 and maxTakings < 200;)
  • 19. CashFlow Example rule “Account in Negative send Warning"
 when
 ap : AccountPeriod()
 acnt : Account( balance < 0 )
 then insert( new NegativeWarning( acnt ) );
 end rule “Issue Warning"
 when
 ap : AccountPeriod()
 acnt : Account( balance < 0 ) acc( n : NegativeWarning( account == acnt ); totalWarnings : count(n); totalWarnings > 0; )
 then System.out.println( "Account warning Number " + acnt.accountNo + " balance " + acnt.balance + “ Warnings “ + totalWarnings ); ! insert( TotalWarnings( acnt, totalWarnings );
 end
  • 20. Conditional Elements not Bus ( color == “red” ) ! ! exists Bus ( color == “red” ) ! ! forall ( Bus ( color == “red” ) ! ! forall ( b : Bus ( floors == 2 ) Bus( this == b, color == “red” ) )
  • 21. CashFlow Example rule “Issue Warning"
 when
 ap : AccountPeriod()
 acnt : Account( balance < 0 ) acc( n : NegativeWarning( account == acnt ); totalWarnings : count(n); totalWarnings > 0; )
 then System.out.println( "Account warning Number " + acnt.accountNo + " balance " + acnt.balance + “ Warnings “ totalWarnings ); ! insert( TotalWarnings( acnt, totalWarnings );
 end rule “Cleanup Warnings"
 when
 ap : AccountPeriod()
 acnt : Account( balance >= 0 ) exists( NegativeWarning( account == acnt ) ) n : NegativeWarning( account == acnt )
 then delete( n );
 end
  • 22. CashFlow Example rule “Fine"
 when
 ap : AccountPeriod()
 acnt : Account( balance < 0 ) acc( n : NegativeWarning( account == acnt ) over window:time(4w); totalWarnings : count(n); totalWarnings > 3 ) TotalWarnings( total < totalWarnings )
 then System.out.println( "Account warning Number " + acnt.accountNo + " balance " + acnt.balance + Warnings “ totalWarnings );
 end rule “Issue Warning"
 when
 ap : AccountPeriod()
 acnt : Account( balance < 0 ) acc( n : NegativeWarning( account == acnt ) over window:time(4w); totalWarnings : count(n); totalWarnings > 0; )
 then System.out.println( "Account warning Number " + acnt.accountNo + " balance " + acnt.balance + “ Warnings “ totalWarnings ); ! insertLogical( new TotalWarnings( acnt, totalWarnings );
 end
  • 32. Score Cards • a) Setup Parameters • b) Characteristic Section
  • 33. Score Cards • UI Generates PMML • DRL Generated from PMML • DRL results in • Calculated Score • Ranked Reason Codes • Can import PMML 4.1 • but not exposed yet • Calculated Scores • Currently Summations • Weight coming • Not in PMML standard
  • 36. GIT + Maven Organization Unit GIT Repository GIT Repository Projects Projects Projects GIT Repository
  • 37. KIE Installation KIE Installation Organization Unit GIT Repository Reposiotry Projects Projects Projects GIT Repository Organization Unit GIT Repository Reposiotry Projects Projects Projects GIT Repository Organization Unit GIT Repository GIT Repository Projects Projects Projects GIT Repository
  • 38. Application Architecture KIE Installation Application Installation Maven Repository (local) ApplicationProject mvn install mvn install Maven Repository (local) Maven Repository (remote) mvn deploy Http
  • 41. 5.x Critique JCR • Performance Issues • Everything stored as blob • No tagging, branching etc. • Webdav • Limited team providers Content • Single tree structure (packages) • Packages created project deployment units • No easy rule use • Loading “model” jars into packages UI • Not easily extended • Fixed layouts • No perspectives • Hard to change • Too many hacks Deployment • Binary blobs, on url • Simple Snapshot system • No real methodology • Doesn’t align with any industry standards
  • 43. KIE - Knowledge Is Everything
  • 44. KIE - Knowledge Is Everything
  • 45. KIE - Knowledge Is Everything
  • 49. Workbench Screens • Workbench Screen • DIV • Lifecycle events • OnStartUp, OnShutDown • OnOpen, OnMayClose, OnClose • OnFocus, OnLostFocus
  • 50. Workbench Screens @WorkbenchScreen(identifier = "MyFirstPanel")! public class MyFirstPanel extends SimplePanel {! ! public MyFirstPanel() {! setWidget( new Label("Hello World 1") );! }! ! @WorkbenchPartTitle! public String myTitle() {! return "My First Panel!";! }! ! }
  • 52. Workbench Editor • Workbench Screen • DIV • Lifecycle events • OnStartUp, OnShutDown • OnOpen, OnMayClose, OnClose • OnFocus, OnLostFocus • IsDirty, OnSave
  • 53. Life Cycle Annotation @WorkbenchEditor(identifier = "TextEditor", ! supportedTypes = { TextResourceType.class, ! DotResourceType.class })
 public class TextEditorPresenter {
 (...)
 @OnStart
 public void onStart( final Path path ) {
 this.path = path;
 }
 
 @OnSave
 public void onSave() {! }
 
 @IsDirty
 public boolean isDirty() {
 return view.isDirty();
 }
 }
  • 54. Life Cycle Annotation @WorkbenchEditor(identifier = "TextEditor", ! supportedTypes = { TextResourceType.class, ! DotResourceType.class })
 public class TextEditorPresenter {
 (...)
 @OnStart
 public void onStart( final Path path ) {
 this.path = path;
 }
 
 @OnSave
 public void onSave() {! }
 
 @IsDirty
 public boolean isDirty() {
 return view.isDirty();
 }
 }
  • 56. Workbench Perspective $registerPerspective({ "id": "Markdown Editor", "view": { "parts": [ { "place": "MarkdownLiveViewer", "parameters": {} } ], "panels": [ { "width": 600, "min_width": 300, "position": "west", "parts": [ { "place": "MarkdownLiveEditor", "parameters": {} } ] } ] }, on_close: function () { } });
  • 60. Authoring Perspective Project Explorer Use the project explorer to navigate projects for your organizational’s repository and create assets to author. Problems When you save, validation errors for the current project are shown here Content Area Opened assets are added here
  • 61. Tab Stack Tab Stack Button Click the button to see the list of opened assets Asset List The opened assets are shown here. Click to continue authoring.
  • 62. Project Explorer Organizational Unit Lists the organizational units. Repositories Lists the repositories for the selected organisational unit. Projects Lists the projects for the selected repository. Folder Navigation Click to expand, to see folders.
  • 63. Project View Show as Folders Show as Links Compact view, that displays the folders as a single line path. Project View The project view is a simplified and hides many technical aspects of the project. Such as merging multiple paths into one tree. Shows the project folders using a tree view.
  • 64. Repository View Repository View The repository view provides raw access to the project structure and files, nothing is hidden. And all paths are visible separately; see the java and resources folders. Show as Folders Show as Links Compact view, that displays the folders as a single line path. Shows the project folders using a tree view.
  • 67. New Projects and Other Items New Projects Launches the new project wizard. Once created it appears under the project list for the target repository
  • 73. GIT Repositories Repositories Create or clone GIT repositories
  • 74. Organizational Units Manage Organizational Units Create Organizational Units and associate repositories with them.
  • 75. End Users - Task Lists
  • 76. End Users - Task Lists
  • 84. BRMS 5.0 Programmatic API KnowledgeBuilder kbuilder = KnowledgeBuilderFactory.newKnowledgeBuilder();
 
 kbuilder.batch().add( newClassPathResource( "Model.drl", getClass() ), DRL )
 .add( newClassPathResource( "Queries.drl", getClass() ), DRL )
 .add( newClassPathResource( "General.drl", getClass() ), DRL )
 .add( newClassPathResource( "Response.drl", getClass() ), DRL )
 .add( newClassPathResource( "Events.drl", getClass() ), DRL )
 .add( newClassPathResource( "UiView.drl", getClass() ), DRL )
 .add( newClassPathResource( "Commands.drl", getClass() ), DRL ).build();
 
 if ( kbuilder.hasErrors() ) {
 System.out.println( kbuilder.getErrors().toString() );
 System.exit( 1 );
 }
 
 KieBaseConfiguration kbaseConf = KnowledgeBaseFactory.newKnowledgeBaseConfiguration();
 kbaseConf.setOption( EqualityBehaviorOption.EQUALITY );
 
 KnowledgeBase kbase = KnowledgeBaseFactory.newKnowledgeBase( kbaseConf );
 kbase.addKnowledgePackages( kbuilder.getKnowledgePackages() );
 
 Counter c = new Counter();
 ksession = kbase.newStatefulKnowledgeSession();
  • 85. KieModules • Discovery • META-INF/kmodule.xml • Convention based • No programmatic api for building • Multiple Named entities • Inheritence of Resources • Defaults for lazy people • Version built in a standard
  • 86. Git Hub Examples• https://github.com/droolsjbpm/drools/tree/master/drools- examples-api
  • 87. KieModules <kmodule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xmlns="http://jboss.org/kie/6.0.0/kmodule">
 
 </kmodule> KieServices ks = KieServices.Factory.get();
 KieContainer kContainer = ks.getKieClasspathContainer();
 
 KieSession kSession = kContainer.newKieSession();
 kSession.setGlobal("out", out);
 kSession.insert(new Message("Dave", "Hello, HAL. Do you read me, HAL?"));
 kSession.fireAllRules();
  • 88. KieModules • Named Entities and JAR on Classpath • Creates one KieBase • Includes resources from package matching kbase name <kmodule xmlns="http://jboss.org/kie/6.0.0/kmodule">
 
 <kbase name="kbase1">
 <ksession name="ksession1"/>
 </kbase>
 
 </kmodule> KieServices ks = KieServices.Factory.get();
 KieContainer kContainer = ks.getKieClasspathContainer();
 
 KieSession kSession = kContainer.newKieSession("ksession1");
 kSession.setGlobal("out", out);
 kSession.insert(new Message("Dave", "Hello, HAL. Do you read me, HAL?"));
 kSession.fireAllRules();
  • 89. KieModules • Named Entities, with inheritence and JAR on Classpath • Two projects, one “includes” from the other <dependency>
 <groupId>org.drools</groupId>
 <artifactId>named-kiesession</artifactId>
 <version>6.0.0-SNAPSHOT</version>
 </dependency> <kbase name="kbase2" includes="kbase1">
 <ksession name="ksession2"/>
 </kbase> KieServices ks = KieServices.Factory.get();
 KieContainer kContainer = ks.getKieClasspathContainer();
 KieSession kSession = kContainer.newKieSession("ksession2");
 kSession.setGlobal("out", out);
 
 kSession.insert(new Message("Dave", "Hello, HAL. Do you read me, HAL?"));
 kSession.fireAllRules();
 
 kSession.insert(new Message("Dave", "Open the pod bay doors, HAL."));
 kSession.fireAllRules();
  • 90. KieModules • Package location can over-ride kbase name defaults <kbase name="WumpusMainKB" packages="org.drools.games.wumpus.server, org.drools.games.wumpus.server.view">
 <ksession name="WumpusMainKS" />
 </kbase>
 
 <kbase name="WumpusClientKB" packages="org.drools.games.wumpus.client">
 <ksession name="WumpusClientKS"/>
 </kbase> KieContainer kc = KieServices.Factory.get().getKieClasspathContainer();
 final KieSession serverKsession = kc.newKieSession( "WumpusMainKS");
 final KieSession clientKsession = kc.newKieSession("WumpusClientKS");
  • 91. Dynamic KieModules • JARs can be loaded from URLs into KieRepository • Once loaded they can be resolved via ReleaseId KieServices ks = KieServices.Factory.get();
 KieRepository kr = ks.getRepository();
 
 KieModule kModule = kr.addKieModule(ks.getResources().newFileSystemResource( getFile("default-kiesession")));
 
 KieContainer kContainer = ks.newKieContainer(kModule.getReleaseId());
 
 KieSession kSession = kContainer.newKieSession();
 kSession.setGlobal("out", out);
 
 Object msg1 = createMessage(kContainer, "Dave", "Hello, HAL. Do you read me, HAL?");
 kSession.insert(msg1);
 kSession.fireAllRules();
  • 92. Dynamic KieModules • kie-ci use embedded maven for remote discovery <dependency>
 <groupId>org.kie</groupId>
 <artifactId>kie-ci</artifactId>
 </dependency> KieServices ks = KieServices.Factory.get();
 
 // Install example1 in the local maven repo before to do this
 KieContainer kContainer = ks.newKieContainer( ks.newReleaseId("org.drools", "named-kiesession", "6.0.0-SNAPSHOT"));
 
 KieSession kSession = kContainer.newKieSession("ksession1");
 kSession.setGlobal("out", out);
 
 Object msg1 = createMessage(kContainer, "Dave", "Hello, HAL. Do you read me, HAL?");
 kSession.insert(msg1);
 kSession.fireAllRules();
  • 93. Dynamic KieModules 
 
 // create a new kjar
 InternalKieModule kJar2 = createKieJar(ks, releaseId, "rule2", "rule3");
 
 // deploy it on maven
 repository.deployArtifact(releaseId, kJar2, kPom);
 
 // since I am not calling start() on the scanner it means it won't have automatic scheduled scanning
 KieScanner scanner = ks.newKieScanner(kieContainer);
 
 // scan the maven repo to get the new kjar version and deploy it on the kcontainer
 scanner.scanNow();
 
 // create a ksesion and check it works as expected
 KieSession ksession2 = kieContainer.newKieSession("KSession1");
 checkKSession(ksession2, "rule2", "rule3");
  • 94. Maven Versions • <version>1.0.1</version> • <version>[1.0.0,2.0.0)</version> • <version>[1.0.0,)</version> • <version>LATEST</version> • <version>RELEASE</version> • <version>SNAPSHOT</version>
  • 96. Programmatic API • Builder API, for tooling integration • Incremental compilation, and problem reporting KieServices ks = KieServices.Factory.get();
 KieRepository kr = ks.getRepository();
 KieFileSystem kfs = ks.newKieFileSystem();
 
 kfs.write("src/main/resources/org/kie/example5/HAL5.drl", getRule());
 
 KieBuilder kb = ks.newKieBuilder(kfs);
 
 kb.buildAll(); // kieModule is automatically deployed to KieRepository if successfully built.
 if (kb.getResults().hasMessages(Level.ERROR)) {
 throw new RuntimeException("Build Errors:n" + kb.getResults().toString());
 }
 
 KieContainer kContainer = ks.newKieContainer(kr.getDefaultReleaseId());
 
 KieSession kSession = kContainer.newKieSession();
 kSession.setGlobal("out", out);
 
 kSession.insert(new Message("Dave", "Hello, HAL. Do you read me, HAL?"));
 kSession.fireAllRules();
  • 97. CDI
  • 98. CDI Context and Dependency • CDI injects named entities from the kmodule.xml ! • Injectable types • KieServices • KieContainer • KieBase • KieSession • StatelessKieSession
  • 99. KBase @Inject 
 @KBase(value="jar1.KBase1", name="kb2") 
 @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.0")
 private KieBase jar1KBase1kb2; 
 
 @Inject
 @KBase(value="jar1.KBase1", name="kb2") 
 @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.0")
 private KieBase jar1KBase1kb22; @Inject
 private KieBase defaultClassPathKBase;
 
 @Inject
 @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.0") 
 private KieBase defaultDynamicKBase; @Inject
 @KBase("jar1.KBase1") 
 @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.0")
 private KieBase jar1KBase1v10;
 
 @Inject
 @KBase("jar1.KBase1") 
 @KReleaseId(groupId = "jar1",
 artifactId = "art1", 
 version = "1.1")
 private KieBase jar1KBase1v11; 
 
 @Inject
 @KBase(value="jar1.KBase1", name="kb1")
 @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.0")
 private KieBase jar1KBase1kb1;
  • 100. KSession @Inject
 @KSession("jar1.KSession2") 
 @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.0" )
 private KieSession kbase1ksession2v10;
 @Inject
 @KSession("jar1.KSession2") 
 @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.1" )
 private KieSession kbase1ksession2v11; @Inject
 @KSession(value="jar1.KSession2", name="ks1") @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.0" )
 private KieSession kbase1ksession2ks1;
 
 @Inject
 @KSession(value="jar1.KSession2", name="ks2") @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.0" )
 private KieSession kbase1ksession2ks2 ; 
 
 @Inject
 @KSession(value="jar1.KSession2", name="ks2") @KReleaseId( groupId = "jar1",
 artifactId = "art1", 
 version = "1.0" )
 private KieSession kbase1ksession2ks22;
  • 102. Spring and Camel <kie:kmodule id="CxfRsSpring">
 <kie:kbase name="test1" packages="test1">
 <kie:ksession name="ksession1">
 <kie:batch>
 <kie:set-global identifier="list" >
 <bean class="java.util.ArrayList" />
 </kie:set-global>
 </kie:batch>
 </kie:ksession>
 <kie:ksession name="ksession2"/>
 </kie:kbase>
 </kie:kmodule>
  • 103. Spring and Camel <bean id="kiePolicy" class="org.kie.camel.component.KiePolicy" />
 
 <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
 
 <route>
 <from uri="cxfrs://bean://rsServer"/>
 <policy ref="kiePolicy">
 <unmarshal ref="xstream" />
 <to uri="kie:ksession1" />
 <marshal ref="xstream" />
 </policy>
 </route>
 
 <route id="x1">
 <from uri="direct://http"/>
 <policy ref="kiePolicy">
 <to uri="cxfrs://http://localhost:58001/rest"/>
 </policy> 
 </route> 
 
 </camelContext>
  • 104. 104 Questions? • Dave Bowman: All right, HAL; I'll go in through the emergency airlock. • HAL: Without your space helmet, Dave, you're going to find that rather difficult. • Dave Bowman: HAL, I won't argue with you anymore! Open the doors! • HAL: Dave, this conversation can serve no purpose anymore. Goodbye. Joshya: Greetings, Professor Falken. Falken: Hello, Joshua. Joshya: A strange game. The only winning move is not to play. How about a nice game of chess?
  • 105. R.I.P Rete Time to get Phreaky
  • 106. Rete
  • 107. ReteOO • Node sharing • Alpha indexing • Tree based graphs • Modify-in-place • Property reactive • Sub-networks • Backward Chaining • Lazy Truth Maintenance • Heap based agenda • Dynamic Rules
  • 108. R.I.P RETE Time to get Phreaky inspirations: • Leaps, Collection Oriented Match, L/R Unlinking ! New Innovations • Full Rule, and Rule Segment Unlinking • Lazy Evaluation, with Rule scoping • Set propagations ! Previous Innovations • Modify In Place • Property Reactive • Tree Based Graphs • Subnetwork support
  • 109. Phreak
  • 110. Phreak
  • 111. Phreak
  • 112. TMS
  • 113. Justification-based Truth • Drools 5.x • Simple logical insertion TMS, like Clips, Jess and others. ! • Drools 6.0 • Contradiction handling with JTMS • Clean separation of exception logic • TMS now has pluggable Belief System • Simple TMS support • JTMS now possible (exp) • Defeasible Logic (exp) ! • See drools-compiler • JTMSTest for lots of example tests
  • 114. 114 TMS Couples the logic What happens when the Child stops being 16? rule "Issue Child Bus Pass" when $p : Person( age < 16 ) then insert(new ChildBusPass( $p ) ); end rule "Issue Adult Bus Pass" when $p : Person( age >= 16 ) then insert(new AdultBusPass( $p ) ); end
  • 115. TMS • Bad • Monolithic • Leaky • Brittle integrity - manual maintenance
  • 116. 116 TMS de-couples the logic Maintains the truth by 
 automatically retracting •A rule “logically” inserts an object •When the rule is no longer true, the object is retracted. rule "IsChild" when $p : Person( age < 16 ) then logicalInsert( new IsChild( $p ) ) end rule "IsAdult" when $p : Person( age >= 16 ) then logicalInsert( new IsAdult( $p ) ) end
  • 117. 117 TMS The truth maintenance cascades rule "Issue Child Bus Pass" when $p : Person( ) IsChild( person =$p ) then logicalInsert(new ChildBusPass( $p ) ); end rule "Issue Adult Bus Pass" when $p : Person() IsAdult( person =$p ) then logicalInsert(new AdultBusPass( $p ) ); end
  • 118. 118 TMS rule "Issue Child Bus Pass" when $p : Person( ) not( ChildBusPass( person == $p ) ) then requestChildBusPass( $p ); end The truth maintenance cascades
  • 119. 119 TMS • Good • De-couple knowledge responsibilities • Encapsulate knowledge • Provide semantic abstractions for those encapsulation • Integrity robustness – truth maintenance
  • 121. JTMS
  • 122. JTMS rule "Do not issue to banned people" when $p : Person( ) Banned( person =$p ) then logicalInsert(new ChildBusPass( $p ) , “neg” ); end “plus” and “neg” labels
  • 123. JTMS IsChild ChildBusPas Rule : isChildRule Rule : IssueBusPas + + Rule : Do Not Issue to Banned People -
  • 125. Defeasible rule "All Birds Fly" when $b : Bird( ) then logicalInsert(new Fly( $b ) ); end rule "Brocken wing" when $b : Bird( ) BrockenWing($b;) then logicalInsert(new Fly( $b ), “neg” ); end
  • 126. Defeasible rule "All Birds Fly" @Defeasible when $b : Bird( ) then logicalInsert(new Fly( $b ) ); end rule "Brocken wing" @Defeasible @Defeater when $b : Bird( ) BrockenWing($b;) then logicalInsert(new Fly( $b ), “neg” ); end rule "Birds With Rockets Fly"@Defeasible @Defeats(“Brocken Wing”) when $b : Bird( ) Rocket($b;) then logicalInsert(new Fly( $b ) ); end
  • 139. Deficiency • Deficiency • Premium is £500 if applicant age is less than 30 • Premium is £300 if Years Without Claim is greater than or equal to 10 years. ! ! ! ! ! • Applicant is 29, premium is £500 • Applicant has 12 years without claim, premium is £300 • Applicant is 29 with 12 years without claim, premium is ?!?
  • 141. Loop Problem rule “Salary award for min 2 years service” when ! e : Employee( lengthOfService > 2 )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! end! ! ! ! ! !
  • 142. Loop Problem rule “Salary award for min 2 years service” no-loop when ! e : Employee( lengthOfService > 2 )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! end! ! ! ! ! !
  • 143. Loop Problem rule “Salary award for min 2 years service” no-loop when ! e : Employee( lengthOfService > 2 )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! end! ! rule “Salary award for min 8 years service” no-loop when ! e : Employee( lengthOfService > 8 )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! end
  • 144. Loop Problem rule “Salary award for min 2 years service” when ! e : Employee( lengthOfService > 2 )! not SalaryMin2Years( employee == e )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! insert ( new SalaryMin2Years(e) );! end! ! rule “Salary award for min 8 years service” when ! e : Employee( lengthOfService > 8 )! not SalaryMin8Years( employee == e )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! insert ( new SalaryMin8Years(e) );! end
  • 145. Loop Problem rule “Year End” when ! d : ChangeDate( )! e : Employee( )! then ! modify( e ) { lengthOfService( ! d.getYear() - e.getStartYear() ) };! end! ! rule “Salary award for min 8 years service” when ! e : Employee( lengthOfService > 8 )! not SalaryMin8Years( employee == e )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! insert ( new SalaryMin8Years(e) );! end
  • 146. Refraction This term comes from the neurobiological observation of a refractory period for a neuron, which means that the neuron is not able to fire immediately without first going through a relaxation process. ! In a similar way, OPS5 will not allow the same instantiation in the conflict set from firing twice in a row. This prevents the inference engine from entering into an infinite loop.
  • 147. W3C RIF Refraction • Refraction When a rule instance is fired, it is removed from the conflict set (and thus will not be created again even its condition part remains true), unless one of the objects in its condition part is modified again. In the later case, the repeatability concept determines how the rule instance is treated
  • 148. W3C RIF Refraction • Repeatability After the execution of a rule instance, the rule instance is removed from the conflict set by the refraction. Later on, if one of the objects in the condition part is modified and if the rule evaluates to true, the repeatability controls whether if the rule instance can be created again.
  • 149. Loop Problem (Refraction) rule “Salary award for min 2 years service” ! repeatable false when ! e : Employee( lengthOfService > 2 )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! end! ! rule “Salary award for min 8 years service” ! repeatable false when ! e : Employee( lengthOfService > 8 )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! end
  • 152. Annotate Class @PropertyReactive! public class Employee {! int salary;! int lengthOfService! ! // getters and setters below! }
  • 153. Loop Problem Fixed rule “Salary award for min 2 years service” when ! e : Employee( lengthOfService > 2 )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! end! ! rule “Salary award for min 8 years service” when ! e : Employee( lengthOfService > 8 )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! end
  • 154. @Watch rule “Salary award for min 2 years service” when ! e : Employee( salary < 1000, lengthOfService > 2 )! @Watch( !salary )! then ! modify( e ) { setSalary( e.getSalary() * 1.05 ) };! end
  • 155. @Watch rule “Record Salary Changes” when ! e : Employee( ) @Watch( salary )! then ! insert( new SalaryChange( e, e.getSalary() );! end
  • 156. @Watch @Watch( salary, lengthOfService, age )! ! @Watch( * )! ! @Watch( !* )! ! @Watch( *, !salary )! ! @Watch( !*, salary )
  • 158. 158 Reasoning with Graphs House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 159. 159 Backward Chaining query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 160. Backward Chaining 160 ksession.insert( new Location("Office", "House") );
 ksession.insert( new Location("Kitchen", "House") );
 ksession.insert( new Location("Knife", "Kitchen") );
 ksession.insert( new Location("Cheese", "Kitchen") );
 ksession.insert( new Location("Desk", "Office") );
 ksession.insert( new Location("Chair", "Office") );
 ksession.insert( new Location("Computer", "Desk") );
 ksession.insert( new Location("Draw", "Desk") ); House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 161. Backward Chaining 161 rule "go" salience 10
 when
 $s : String( )
 then
 System.out.println( $s );
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 162. Backward Chaining 162 rule "go1"
 when
 String( this == "go1" )
 isContainedIn("Office", "House"; )
 then
 System.out.println( "office is in the house" );
 end rule "go" salience 10
 when
 $s : String( )
 then
 System.out.println( $s );
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 163. Backward Chaining 163 rule "go1"
 when
 String( this == "go1" )
 isContainedIn("Office", "House"; )
 then
 System.out.println( "office is in the house" );
 end rule "go" salience 10
 when
 $s : String( )
 then
 System.out.println( $s );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 164. Backward Chaining 164 rule "go1"
 when
 String( this == "go1" )
 isContainedIn("Office", "House"; )
 then
 System.out.println( "office is in the house" );
 end rule "go" salience 10
 when
 $s : String( )
 then
 System.out.println( $s );
 end ksession.insert( "go1" );
 ksession.fireAllRules(); --- go1 office is in the house query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 165. Backward Chaining 165 rule "go1"
 when
 String( this == "go1" )
 isContainedIn("Office", "House"; )
 then
 System.out.println( "office is in the house" );
 end rule "go" salience 10
 when
 $s : String( )
 then
 System.out.println( $s );
 end ksession.insert( "go1" );
 ksession.fireAllRules(); --- go1 office is in the house query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end isContainedIn(x==Office, y==House) House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 166. Backward Chaining 166 rule "go1"
 when
 String( this == "go1" )
 isContainedIn("Office", "House"; )
 then
 System.out.println( "office is in the house" );
 end rule "go" salience 10
 when
 $s : String( )
 then
 System.out.println( $s );
 end ksession.insert( "go1" );
 ksession.fireAllRules(); --- go1 office is in the house query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end Location(x==Office, y==House) isContainedIn(x==Office, y==House) House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 167. Backward Chaining 167 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 168. Backward Chaining 168 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 169. Backward Chaining 169 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 170. Backward Chaining 170 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end isContainedIn(x==Draw, y==House) ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 171. Backward Chaining 171 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end Location(z==Office, y==House) isContainedIn(x==Draw, y==House) ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 172. Backward Chaining 172 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end Location(z==Office, y==House) isContainedIn(x==Draw, z==Office) isContainedIn(x==Draw, y==House) ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 173. Backward Chaining 173 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end Location(z==Office, y==House) isContainedIn(x==Draw, z==Office) Location(z==Kitchen, y==House) isContainedIn(x==Draw, z==Kitchen) isContainedIn(x==Draw, y==House) ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 174. Backward Chaining 174 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end isContainedIn(x==Draw, y==Office) ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 175. Backward Chaining 175 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end Location(z==Desk, y==Office) isContainedIn(x==Draw, y==Office) ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 176. Backward Chaining 176 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end Location(z==Desk, y==Office) isContainedIn(x==Draw, z==Desk) isContainedIn(x==Draw, y==Office) ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 177. Backward Chaining 177 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end isContainedIn(x==Draw, y==Desk) ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 178. Backward Chaining 178 rule "go2"
 when
 String( this == "go2" )
 isContainedIn("Draw", "House"; )
 then
 System.out.println( "Draw in the House" );
 end query isContainedIn( String x, String y )
 Location( x, y; )
 or
 ( Location( z, y; ) and isContainedIn( x, z; ) )
 end Location(x==Draw, y==Desk) isContainedIn(x==Draw, y==Desk) ksession.insert( "go2" );
 ksession.fireAllRules(); --- go2 Draw in the House House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 179. Backward Chaining 179 rule "go3"
 when
 String( this == "go3" )
 isContainedIn("Key", "Office"; )
 then
 System.out.println( "Key in the Office" );
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 180. Backward Chaining 180 rule "go3"
 when
 String( this == "go3" )
 isContainedIn("Key", "Office"; )
 then
 System.out.println( "Key in the Office" );
 end ksession.insert( "go3" );
 ksession.fireAllRules(); --- go3 House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 181. Backward Chaining 181 rule "go3"
 when
 String( this == "go3" )
 isContainedIn("Key", "Office"; )
 then
 System.out.println( "Key in the Office" );
 end ksession.insert( "go3" );
 ksession.fireAllRules(); --- go3 ksession.insert( new Location("Key", "Draw") );
 ksession.fireAllRules(); --- Key in the Office House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 182. Backward Chaining 182 rule "go4"
 when
 String( this == "go4" )
 isContainedIn(thing, "Office"; )
 then
 System.out.println( "thing " + thing + " is in the Office" );
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 183. Backward Chaining 183 rule "go4"
 when
 String( this == "go4" )
 isContainedIn(thing, "Office"; )
 then
 System.out.println( "thing " + thing + " is in the Office" );
 end Out Var (unbound) House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 184. Backward Chaining 184 rule "go4"
 when
 String( this == "go4" )
 isContainedIn(thing, "Office"; )
 then
 System.out.println( "thing " + thing + " is in the Office" );
 end ksession.insert( "go4" );
 ksession.fireAllRules(); --- go4 thing Key is in the Office thing Computer is in the Office thing Draw is in the Office thing Desk is in the Office thing Chair is in the Office Out Var (unbound) House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 185. Backward Chaining 185 rule "go5"
 when
 String( this == "go5" )
 isContainedIn(thing, location; )
 then
 System.out.println( "thing " + thing + " is in " + location );
 end House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 186. Backward Chaining 186 rule "go5"
 when
 String( this == "go5" )
 isContainedIn(thing, location; )
 then
 System.out.println( "thing " + thing + " is in " + location );
 end Out Var (unbound) House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 187. Backward Chaining 187 rule "go5"
 when
 String( this == "go5" )
 isContainedIn(thing, location; )
 then
 System.out.println( "thing " + thing + " is in " + location );
 end Out Var (unbound) Out Var (unbound) House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 188. Backward Chaining 188 rule "go5"
 when
 String( this == "go5" )
 isContainedIn(thing, location; )
 then
 System.out.println( "thing " + thing + " is in " + location );
 end ksession.insert( "go5" );
 ksession.fireAllRules(); --- go5 thing Knife is in House thing Cheese is in House thing Key is in House thing Computer is in House thing Draw is in House thing Desk is in House thing Chair is in House thing Key is in Office thing Computer is in Office thing Draw is in Office thing Key is in Desk thing Office is in House Out Var (unbound) Out Var (unbound) ! thing Computer is in Desk thing Knife is in Kitchen thing Cheese is in Kitchen thing Kitchen is in House thing Key is in Draw thing Draw is in Desk thing Desk is in Office thing Chair is in Office House Location("Office", "House ") Location("Kitchen", "House") Location("Desk", "Office") Location("Chair", "Office") Location("Computer", "Desk") Location("Draw", "Desk") Location("Knife", "Kitchen") Location("Cheese", "Kitchen") Location("Key", "Draw")
  • 189. 189 Questions? • Dave Bowman: All right, HAL; I'll go in through the emergency airlock. • HAL: Without your space helmet, Dave, you're going to find that rather difficult. • Dave Bowman: HAL, I won't argue with you anymore! Open the doors! • HAL: Dave, this conversation can serve no purpose anymore. Goodbye. Joshya: Greetings, Professor Falken. Falken: Hello, Joshua. Joshya: A strange game. The only winning move is not to play. How about a nice game of chess?