/** * Copyright 2005 JBoss Inc * * 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.common; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicLong; import org.drools.reteoo.ObjectTypeConf; import org.drools.runtime.rule.WorkingMemoryEntryPoint; import org.drools.spi.FactHandleFactory; public abstract class AbstractFactHandleFactory implements FactHandleFactory { /** * */ private static final long serialVersionUID = 510l; // protected final PrimitiveLongStack factHandlePool = new PrimitiveLongStack(); /** The fact id. */ private AtomicInteger id; /** The number of facts created - used for recency. */ private AtomicLong counter; public AbstractFactHandleFactory() { this.id = new AtomicInteger(-1); this.counter = new AtomicLong(-1); } public AbstractFactHandleFactory(int id, long counter) { this.id = new AtomicInteger( id ); this.counter = new AtomicLong( counter ); } /* (non-Javadoc) * @see org.drools.reteoo.FactHandleFactory#newFactHandle() */ public final InternalFactHandle newFactHandle(final Object object, final ObjectTypeConf conf, final InternalWorkingMemory workingMemory, final WorkingMemoryEntryPoint wmEntryPoint) { // @FIXME make id re-cycling thread safe // if ( !this.factHandlePool.isEmpty() ) { // return newFactHandle( this.factHandlePool.pop(), // object, // isEvent, // 0, // workingMemory ); // } return newFactHandle( this.id.incrementAndGet(), object, conf, workingMemory, wmEntryPoint ); } /* (non-Javadoc) * @see org.drools.reteoo.FactHandleFactory#newFactHandle(long) */ protected final InternalFactHandle newFactHandle(final int id, final Object object, final ObjectTypeConf conf, final InternalWorkingMemory workingMemory, final WorkingMemoryEntryPoint wmEntryPoint) { return newFactHandle( id, object, this.counter.incrementAndGet(), conf, workingMemory, wmEntryPoint ); } /* (non-Javadoc) * @see org.drools.reteoo.FactHandleFactory#newFactHandle(long) */ protected abstract InternalFactHandle newFactHandle(final int id, final Object object, final long recency, final ObjectTypeConf conf, final InternalWorkingMemory workingMemory, final WorkingMemoryEntryPoint wmEntryPoint); /* (non-Javadoc) * @see org.drools.reteoo.FactHandleFactory#increaseFactHandleRecency(org.drools.FactHandle) */ public final void increaseFactHandleRecency(final InternalFactHandle factHandle) { factHandle.setRecency( this.counter.incrementAndGet() ); } public void destroyFactHandle(final InternalFactHandle factHandle) { // @FIXME make id re-cycling thread safe // this.factHandlePool.push( factHandle.getId() ); factHandle.invalidate(); } /* (non-Javadoc) * @see org.drools.reteoo.FactHandleFactory#newInstance() */ public abstract FactHandleFactory newInstance(); public int getId() { return this.id.get(); } public long getRecency() { return this.counter.get(); } public void clear(int id, long counter) { this.id = new AtomicInteger( id ); this.counter = new AtomicLong( counter ); } }