PersistANewFriend.java from Texai at Krugle
Show PersistANewFriend.java syntax highlighted
/*
* PersistANewFriend.java
*
* Created on December 19, 2006, 4:24 PM
*
* Description: Persists a new Friend instance.
*
* Copyright (C) 2006 Stephen L. Reed.
*
* 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; either
* version 2 of the License, or (at your option) any later version.
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
package org.texai.kb.persistence.sample;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashSet;
import java.util.Set;
import net.sf.ehcache.CacheManager;
import org.apache.log4j.Logger;
import org.openrdf.repository.Repository;
import org.openrdf.repository.RepositoryException;
import org.openrdf.repository.sail.SailRepository;
import org.openrdf.rio.RDFHandlerException;
import org.openrdf.rio.rdfxml.util.RDFXMLPrettyWriter;
import org.openrdf.sail.nativerdf.NativeStore;
import org.texai.kb.CacheInitializer;
import org.texai.kb.persistence.RDFEntityManager;
import org.texai.util.TexaiException;
/**
*
* @author reed
*/
public final class PersistANewFriend {
/** the log4j logger */
private static final Logger LOGGER = Logger.getLogger(PersistANewFriend.class.getName());
/** the RDF entity manager */
private RDFEntityManager rdfEntityManager;
/**
* Creates a new instance of PersistANewFriend.
*/
public PersistANewFriend() {
super();
}
/** Initializes this application. */
public void initialize() {
CacheInitializer.initializeCaches();
getClass().getClassLoader().setDefaultAssertionStatus(true); // optional
CacheInitializer.initializeCaches();
final File dataDirectory = new File(System.getProperties().getProperty("user.home"));
LOGGER.info("accessing the Sesame2 repository in " + dataDirectory.toString());
final String indices = "spoc,posc";
final Repository repository = new SailRepository(new NativeStore(dataDirectory, indices));
try {
repository.initialize();
} catch (final RepositoryException ex) {
throw new TexaiException(ex);
}
rdfEntityManager = new RDFEntityManager(repository);
LOGGER.info("clearing the Sesame2 repository");
rdfEntityManager.clear();
}
/** Creates and persists a Friend instance. */
public void createAndPersistAFriend() {
rdfEntityManager.setAutoCommit(false);
// populate the Friend
final String name = "Stephen Reed";
final String birthday = "09-20";
final String gender = "male";
final Set<Object> thingsMade = new HashSet<Object>();
thingsMade.add(rdfEntityManager.getValueFactory().createURI("http://texai.org"));
final String firstName = "Stephen";
final String familyName = "Reed";
final Date dateOfBirth = (new GregorianCalendar(1951, 9, 20, 0, 0, 0)).getTime();
final Friend friend = new Friend(
name,
birthday,
gender,
thingsMade,
firstName,
familyName,
dateOfBirth);
// persist the RDF entity and commit the transaction
rdfEntityManager.persist(friend);
rdfEntityManager.commit();
// export the respository in RDF
try {
final String rdfOutputFilename = System.getProperties().getProperty("user.home")
+ "/friend.rdf";
final FileOutputStream fileOutputStream = new FileOutputStream(rdfOutputFilename);
final BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(fileOutputStream);
final RDFXMLPrettyWriter rdfXMLPrettyWriter = new RDFXMLPrettyWriter(bufferedOutputStream);
rdfEntityManager.getRepositoryConnection().export(rdfXMLPrettyWriter);
} catch (final RepositoryException ex) {
throw new TexaiException(ex);
} catch (final RDFHandlerException ex) {
throw new TexaiException(ex);
} catch (final FileNotFoundException ex) {
throw new TexaiException(ex);
}
}
/** Finalizes this application. */
public void finalization() {
CacheManager.getInstance().shutdown();
rdfEntityManager.close();
LOGGER.info("PersistANewFriend completed");
}
/** Executes this application.
*
* @param args the command line arguments, which are not used
*/
public static void main(final String[] args) {
final PersistANewFriend persistANewFriend = new PersistANewFriend();
persistANewFriend.initialize();
persistANewFriend.createAndPersistAFriend();
persistANewFriend.finalization();
}
}
See more files for this project here