📄 delegatorecahandler.java
字号:
/*
* $Id: DelegatorEcaHandler.java,v 1.1 2003/08/17 06:44:25 jonesde Exp $
*
* Copyright (c) 2003 The Open For Business Project - www.ofbiz.org
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
* OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
package org.ofbiz.entityext.eca;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import org.ofbiz.base.util.Debug;
import org.ofbiz.entity.GenericDelegator;
import org.ofbiz.entity.GenericEntity;
import org.ofbiz.entity.GenericEntityException;
import org.ofbiz.entity.eca.EntityEcaHandler;
import org.ofbiz.entityext.EntityServiceFactory;
import org.ofbiz.service.DispatchContext;
/**
* EntityEcaUtil
*
* @author <a href="mailto:jonesde@ofbiz.org">David E. Jones</a>
* @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a>
* @version $Revision: 1.1 $
* @since 2.1
*/
public class DelegatorEcaHandler implements EntityEcaHandler {
public static final String module = DelegatorEcaHandler.class.getName();
protected GenericDelegator delegator = null;
protected String delegatorName = null;
protected String entityEcaReaderName = null;
protected DispatchContext dctx = null;
public DelegatorEcaHandler() { }
public void setDelegator(GenericDelegator delegator) {
this.delegator = delegator;
this.delegatorName = delegator.getDelegatorName();
this.entityEcaReaderName = EntityEcaUtil.getEntityEcaReaderName(this.delegatorName);
this.dctx = EntityServiceFactory.getDispatchContext(delegator);
//preload the cache
EntityEcaUtil.getEntityEcaCache(this.entityEcaReaderName);
}
public Map getEntityEventMap(String entityName) {
Map ecaCache = EntityEcaUtil.getEntityEcaCache(this.entityEcaReaderName);
if (ecaCache == null) return null;
return (Map) ecaCache.get(entityName);
}
public void evalRules(String currentOperation, Map eventMap, String event, GenericEntity value, boolean isError) throws GenericEntityException {
// if the eventMap is passed we save a HashMap lookup, but if not that's okay we'll just look it up now
if (eventMap == null) eventMap = this.getEntityEventMap(value.getEntityName());
if (eventMap == null || eventMap.size() == 0) {
//Debug.logInfo("Handler.evalRules for entity " + value.getEntityName() + ", event " + event + ", no eventMap for this entity", module);
return;
}
List rules = (List) eventMap.get(event);
//Debug.logInfo("Handler.evalRules for entity " + value.getEntityName() + ", event " + event + ", num rules=" + (rules == null ? 0 : rules.size()), module);
if (rules == null || rules.size() == 0) {
return;
}
Iterator i = rules.iterator();
if (i.hasNext() && Debug.verboseOn()) Debug.logVerbose("Running ECA (" + event + ").", module);
Set actionsRun = new TreeSet();
while (i.hasNext()) {
EntityEcaRule eca = (EntityEcaRule) i.next();
eca.eval(currentOperation, this.dctx, value, isError, actionsRun);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -