/* * Copyright 2012 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.drools.simulation.impl.command; import org.kie.api.event.rule.AfterMatchFiredEvent; import org.kie.api.event.rule.AgendaEventListener; import org.kie.api.event.rule.AgendaGroupPoppedEvent; import org.kie.api.event.rule.AgendaGroupPushedEvent; import org.kie.api.event.rule.BeforeMatchFiredEvent; import org.kie.api.event.rule.MatchCancelledEvent; import org.kie.api.event.rule.MatchCreatedEvent; import org.kie.api.event.rule.RuleFlowGroupActivatedEvent; import org.kie.api.event.rule.RuleFlowGroupDeactivatedEvent; import java.util.HashMap; import java.util.List; import java.util.Map; public class FiredRuleCounter implements AgendaEventListener { private List<String> inclusiveRuleNameList = null; private List<String> exclusiveRuleNameList = null; private Map<String, Integer> ruleNameToFireCountMap = new HashMap<String, Integer>(); public FiredRuleCounter() { } public List<String> getInclusiveRuleNameList() { return inclusiveRuleNameList; } public void setInclusiveRuleNameList(List<String> inclusiveRuleNameList) { this.inclusiveRuleNameList = inclusiveRuleNameList; } public List<String> getExclusiveRuleNameList() { return exclusiveRuleNameList; } public void setExclusiveRuleNameList(List<String> exclusiveRuleNameList) { this.exclusiveRuleNameList = exclusiveRuleNameList; } // Events public void matchCreated(MatchCreatedEvent event) { } public void matchCancelled(MatchCancelledEvent event) { } public void beforeMatchFired(BeforeMatchFiredEvent event) { } public void afterMatchFired(AfterMatchFiredEvent event) { String ruleName = event.getMatch().getRule().getName(); if (acceptRuleName(ruleName)) { incrementFireCount(ruleName); } } private boolean acceptRuleName(String ruleName) { if (inclusiveRuleNameList != null) { if (!inclusiveRuleNameList.contains(ruleName)) { return false; } } if (exclusiveRuleNameList != null) { if (exclusiveRuleNameList.contains(ruleName)) { return false; } } return true; } private void incrementFireCount(String ruleName) { Integer fireCount = ruleNameToFireCountMap.get(ruleName); if (fireCount == null) { fireCount = 1; } else { fireCount++; } ruleNameToFireCountMap.put(ruleName, fireCount); } public void agendaGroupPopped(AgendaGroupPoppedEvent event) { } public void agendaGroupPushed(AgendaGroupPushedEvent event) { } public void beforeRuleFlowGroupActivated(RuleFlowGroupActivatedEvent event) { } public void afterRuleFlowGroupActivated(RuleFlowGroupActivatedEvent event) { } public void beforeRuleFlowGroupDeactivated(RuleFlowGroupDeactivatedEvent event) { } public void afterRuleFlowGroupDeactivated(RuleFlowGroupDeactivatedEvent event) { } // Results public int getRuleNameFireCount(String ruleName) { Integer fireCount = ruleNameToFireCountMap.get(ruleName); return fireCount == null ? 0 : fireCount; } }