/* * Copyright 2010 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.core.reteoo; import org.drools.core.common.InternalWorkingMemory; import org.drools.core.common.Memory; import org.drools.core.common.TupleSets; import org.drools.core.common.TupleSetsImpl; import org.drools.core.rule.ContextEntry; import org.drools.core.util.AbstractBaseLinkedListNode; public class BetaMemory extends AbstractBaseLinkedListNode<Memory> implements SegmentNodeMemory { private static final long serialVersionUID = 510l; private TupleMemory leftTupleMemory; private TupleMemory rightTupleMemory; private TupleSets<RightTuple> stagedRightTuples; private ContextEntry[] context; // the node type this memory belongs to private short nodeType; private SegmentMemory segmentMemory; private long nodePosMaskBit; private int counter; private RiaPathMemory riaRuleMemory; public BetaMemory() { } public BetaMemory(final TupleMemory tupleMemory, final TupleMemory objectMemory, final ContextEntry[] context, final short nodeType) { this.leftTupleMemory = tupleMemory; this.rightTupleMemory = objectMemory; this.stagedRightTuples = new TupleSetsImpl<RightTuple>(); this.context = context; this.nodeType = nodeType; } public TupleSets<RightTuple> getStagedRightTuples() { return stagedRightTuples; } public void setStagedRightTuples(TupleSets<RightTuple> stagedRightTuples) { this.stagedRightTuples = stagedRightTuples; } public TupleMemory getRightTupleMemory() { return this.rightTupleMemory; } public TupleMemory getLeftTupleMemory() { return this.leftTupleMemory; } public RiaPathMemory getRiaRuleMemory() { return riaRuleMemory; } public void setRiaRuleMemory(RiaPathMemory riaRuleMemory) { this.riaRuleMemory = riaRuleMemory; } /** * @return the context */ public ContextEntry[] getContext() { return context; } public boolean linkNode(InternalWorkingMemory wm) { return linkNode(wm, true); } public boolean linkNode(InternalWorkingMemory wm, boolean notify) { return notify ? segmentMemory.linkNode(nodePosMaskBit, wm) : segmentMemory.linkNodeWithoutRuleNotify(nodePosMaskBit); } public boolean unlinkNode(InternalWorkingMemory wm) { return segmentMemory.unlinkNode(nodePosMaskBit, wm); } public short getNodeType() { return this.nodeType; } public SegmentMemory getSegmentMemory() { return segmentMemory; } public void setSegmentMemory(SegmentMemory segmentMemory) { this.segmentMemory = segmentMemory; } public long getNodePosMaskBit() { return nodePosMaskBit; } public void setNodePosMaskBit(long segmentPos) { this.nodePosMaskBit = segmentPos; } public int getCounter() { return counter; } public void setCounter(int counter) { this.counter = counter; } public int getAndIncCounter() { return counter++; } public int getAndDecCounter() { return counter--; } public boolean setNodeDirty(InternalWorkingMemory wm) { return setNodeDirty(wm, true); } public boolean setNodeDirty(InternalWorkingMemory wm, boolean notify) { return notify ? segmentMemory.notifyRuleLinkSegment(wm, nodePosMaskBit) : segmentMemory.linkSegmentWithoutRuleNotify(wm, nodePosMaskBit); } public void setNodeDirtyWithoutNotify() { segmentMemory.updateDirtyNodeMask( nodePosMaskBit ); } public void setNodeCleanWithoutNotify() { segmentMemory.updateCleanNodeMask( nodePosMaskBit ); } public void reset() { if (leftTupleMemory != null) { leftTupleMemory.clear(); } if (rightTupleMemory != null) { rightTupleMemory.clear(); } stagedRightTuples.resetAll(); counter = 0; } }