org.geotools.data.store.ContentEntry Maven / Gradle / Ivy
Show all versions of gt-main Show documentation
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2006-2016, Open Source Geospatial Foundation (OSGeo)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
package org.geotools.data.store;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.logging.Level;
import org.geotools.data.FeatureEvent;
import org.geotools.data.FeatureListener;
import org.geotools.data.Transaction;
import org.opengis.feature.type.Name;
/**
* An entry for a type or feature source provided by a DataStore.
*
* This class is only of concern to subclasses, client code should never see this class.
*
*
Each entry maintains state on a per-transaction basis. The {@link #getState(Transaction)}
* method is used to get at this state.
*
*
*
* ContentEntry entry = ...;
*
* Transaction tx1 = new Transaction();
* Transaction tx2 = new Transaction();
*
* ContentState s1 = entry.getState( tx1 );
* ContentState s2 = entry.getState( tx2 );
*
* s1 != s2;
*
*
*
* @author Jody Garnett, Refractions Research Inc.
* @author Justin Deoliveira, The Open Planning Project
*/
public class ContentEntry {
/** Qualified name of the entry. */
Name typeName;
/** Map state according to Transaction. */
Map state;
/** Backpointer to DataStore. */
ContentDataStore dataStore;
/**
* Creates the entry.
*
* @param dataStore The DataStore of the entry.
* @param typeName The name of the entry.
*/
public ContentEntry(ContentDataStore dataStore, Name typeName) {
this.typeName = typeName;
this.dataStore = dataStore;
this.state = new ConcurrentHashMap();
// create a state for the auto commit transaction
ContentState autoState = dataStore.createContentState(this);
autoState.setTransaction(Transaction.AUTO_COMMIT);
this.state.put(Transaction.AUTO_COMMIT, autoState);
}
/** Qualified name of the entry. */
public Name getName() {
return typeName;
}
/**
* Unqualified name of the entry.
*
* Equivalent to: getName().getLocalPart()
.
*/
public String getTypeName() {
return typeName.getLocalPart();
}
/** Backpointer to datastore. */
public ContentDataStore getDataStore() {
return dataStore;
}
/**
* Returns state for the entry for a particular transaction.
*
*
In the event that no state exists for the supplied transaction one will be created by
* copying the state of {@link Transaction#AUTO_COMMIT}.
*
* @param transaction A transaction.
* @return The state for the transaction.
*/
public ContentState getState(Transaction transaction) {
if (transaction != null && state.containsKey(transaction)) {
return state.get(transaction);
} else {
ContentState auto = state.get(Transaction.AUTO_COMMIT);
ContentState copy = (ContentState) auto.copy();
Transaction t = (transaction != null ? transaction : Transaction.AUTO_COMMIT);
copy.setTransaction(t);
state.put(t, copy);
return copy;
}
}
/**
* Called by a ContentState to let others transactions know of a modification.
*
*
Transaction.AUTO_COMMIT state will call this method for everything; others mostly use this
* to broadcast the BatchFeatureEvents issued during commit and rollback.
*/
void notifiyFeatureEvent(ContentState source, FeatureEvent notification) {
for (ContentState entry : state.values()) {
if (entry == source) {
continue; // no notificaiton required
}
for (FeatureListener listener : entry.listeners) {
try {
listener.changed(notification);
} catch (Throwable t) {
// problem issuing notification to an interested party
dataStore.LOGGER.log(
Level.WARNING, "Problem issuing feature event " + notification, t);
}
}
}
}
/** Disposes the entry by disposing all maintained state. */
public void dispose() {
// clear all states
for (ContentState s : state.values()) {
s.close();
}
}
/** Removes a closed transaction from the state cache. */
public void clearTransaction(Transaction transaction) {
if (state.containsKey(transaction)) {
state.remove(transaction);
}
}
public String toString() {
return "ContentEntry " + getTypeName();
}
}