![JAR search and dependency download from the Maven repository](/logo.png)
com.bigdata.rdf.changesets.InMemChangeLog Maven / Gradle / Ivy
/**
Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved.
Contact:
SYSTAP, LLC DBA Blazegraph
2501 Calvert ST NW #106
Washington, DC 20008
[email protected]
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.bigdata.rdf.changesets;
import java.util.Collection;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
import org.apache.log4j.Logger;
import com.bigdata.rdf.model.BigdataStatement;
import com.bigdata.rdf.spo.ISPO;
import com.bigdata.rdf.store.AbstractTripleStore;
import com.bigdata.rdf.store.BigdataStatementIterator;
import com.bigdata.striterator.ChunkedArrayIterator;
/**
* This is a very simple implementation of a change log. NOTE: This is not
* a particularly great implementation. First of all it ends up storing
* two copies of the change set. Secondly it needs to be smarter about
* concurrency, or maybe we can be smart about it when we do the
* implementation on the other side (the SAIL connection can just write
* change events to a buffer and then the buffer can be drained by
* another thread that doesn't block the actual read/write operations,
* although then we need to be careful not to issue the committed()
* notification before the buffer is drained).
*
* @author mike
*/
public class InMemChangeLog implements IChangeLog {
private static final Logger log = Logger.getLogger(InMemChangeLog.class);
/**
* Running tally of new changes since the last commit notification.
*/
private final Map changeSet =
new HashMap();
/**
* Keep a record of the change set as of the last commit.
*/
private final Map committed =
new HashMap();
/**
* See {@link IChangeLog#changeEvent(IChangeRecord)}.
*/
@Override
public synchronized void changeEvent(final IChangeRecord record) {
if (log.isInfoEnabled())
log.info(record);
changeSet.put(record.getStatement(), record);
}
@Override
public void transactionBegin() {
}
@Override
public void transactionPrepare() {
}
/**
* See {@link IChangeLog#transactionCommited(long)}.
*/
public synchronized void transactionCommited(final long commitTime) {
if (log.isInfoEnabled())
log.info("transaction committed: " + commitTime);
committed.clear();
committed.putAll(changeSet);
changeSet.clear();
}
/**
* See {@link IChangeLog#transactionAborted()}.
*/
public synchronized void transactionAborted() {
if (log.isInfoEnabled())
log.info("transaction aborted");
changeSet.clear();
}
/**
* See {@link IChangeLog#close()}.
*/
@Override
public void close() {
}
/**
* Return the change set as of the last commmit point.
*
* @return
* a collection of {@link IChangeRecord}s as of the last commit
* point
*/
public Collection getLastCommit() {
return committed.values();
}
/**
* Return the change set as of the last commmit point, using the supplied
* database to resolve ISPOs to BigdataStatements.
*
* @return
* a collection of {@link IChangeRecord}s as of the last commit
* point
*/
public Collection getLastCommit(final AbstractTripleStore db) {
return resolve(db, committed.values());
}
/**
* Use the supplied database to turn a set of ISPO change records into
* BigdataStatement change records. BigdataStatements also implement
* ISPO, the difference being that BigdataStatements also contain
* materialized RDF terms for the 3 (or 4) positions, in addition to just
* the internal identifiers (IVs) for those terms.
*
* @param db
* the database containing the lexicon needed to materialize
* the BigdataStatement objects
* @param unresolved
* the ISPO change records that came from IChangeLog notification
* events
* @return
* the fully resolves BigdataStatement change records
*/
private Collection resolve(final AbstractTripleStore db,
final Collection unresolved) {
final Collection resolved =
new LinkedList();
// collect up the ISPOs out of the unresolved change records
final ISPO[] spos = new ISPO[unresolved.size()];
int i = 0;
for (IChangeRecord rec : unresolved) {
spos[i++] = rec.getStatement();
}
// use the database to resolve them into BigdataStatements
final BigdataStatementIterator it =
db.asStatementIterator(
new ChunkedArrayIterator(i, spos, null/* keyOrder */));
/*
* the BigdataStatementIterator will produce BigdataStatement objects
* in the same order as the original ISPO array
*/
for (IChangeRecord rec : unresolved) {
final BigdataStatement stmt = it.next();
resolved.add(new ChangeRecord(stmt, rec.getChangeAction()));
}
return resolved;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy