/******************************************************************************* * Copyright 2012 University of Southern California * * 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. * * This code was developed by the Information Integration Group as part * of the Karma project at the Information Sciences Institute of the * University of Southern California. For more information, publications, * and related projects, please see: http://www.isi.edu/integration ******************************************************************************/ package edu.isi.karma.controller.command.worksheet; import java.io.File; import java.io.IOException; import org.json.JSONArray; import org.openrdf.model.Statement; import org.openrdf.model.URI; import org.openrdf.model.Value; import org.openrdf.model.ValueFactory; import org.openrdf.repository.Repository; import org.openrdf.repository.RepositoryConnection; import org.openrdf.repository.RepositoryException; import org.openrdf.repository.RepositoryResult; import org.openrdf.repository.sail.SailRepository; import org.openrdf.rio.RDFFormat; import org.openrdf.rio.RDFParseException; import org.openrdf.sail.memory.MemoryStore; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import edu.isi.karma.controller.command.Command; import edu.isi.karma.controller.command.CommandException; import edu.isi.karma.controller.history.WorksheetCommandHistoryReader; import edu.isi.karma.controller.update.ErrorUpdate; import edu.isi.karma.controller.update.InfoUpdate; import edu.isi.karma.controller.update.SVGAlignmentUpdate_ForceKarmaLayout; import edu.isi.karma.controller.update.SemanticTypesUpdate; import edu.isi.karma.controller.update.UpdateContainer; import edu.isi.karma.modeling.Uris; import edu.isi.karma.modeling.alignment.Alignment; import edu.isi.karma.modeling.alignment.AlignmentManager; import edu.isi.karma.modeling.semantictypes.SemanticTypeUtil; import edu.isi.karma.rep.Worksheet; import edu.isi.karma.view.VWorksheet; import edu.isi.karma.view.VWorkspace; public class ApplyHistoryFromR2RMLModelCommand extends Command { private final File r2rmlModelFile; private final String vWorksheetId; private static Logger logger = LoggerFactory.getLogger(ApplyHistoryFromR2RMLModelCommand.class); protected ApplyHistoryFromR2RMLModelCommand(String id, File uploadedFile, String vWorksheetId) { super(id); this.r2rmlModelFile = uploadedFile; this.vWorksheetId = vWorksheetId; } @Override public String getCommandName() { return ApplyHistoryFromR2RMLModelCommand.class.getName(); } @Override public String getTitle() { return "Apply History"; } @Override public String getDescription() { return null; } @Override public CommandType getCommandType() { return CommandType.notUndoable; } @Override public UpdateContainer doIt(VWorkspace vWorkspace) throws CommandException { WorksheetCommandHistoryReader histReader = new WorksheetCommandHistoryReader( vWorksheetId, vWorkspace); try { String historyStr = extractHistoryFromModel(); if (historyStr.isEmpty()) { return new UpdateContainer(new ErrorUpdate("No history found in R2RML Model!")); } JSONArray historyJson = new JSONArray(historyStr); histReader.readAndExecuteAllCommands(historyJson); } catch (Exception e) { String msg = "Error occured while applying history!"; logger.error(msg, e); return new UpdateContainer(new ErrorUpdate(msg)); } // Add worksheet updates that could have resulted out of the transformation commands Worksheet worksheet = vWorkspace.getViewFactory().getVWorksheet(vWorksheetId).getWorksheet(); UpdateContainer c = new UpdateContainer(); vWorkspace.getViewFactory().updateWorksheet(vWorksheetId, worksheet, worksheet.getHeaders().getAllPaths(), vWorkspace); VWorksheet vw = vWorkspace.getViewFactory().getVWorksheet(vWorksheetId); vw.update(c); String alignmentId = AlignmentManager.Instance().constructAlignmentId( vWorkspace.getWorkspace().getId(), vWorksheetId); Alignment alignment = AlignmentManager.Instance().getAlignment(alignmentId); if (alignment == null) { alignment = new Alignment(vWorkspace.getWorkspace().getOntologyManager()); AlignmentManager.Instance().addAlignmentToMap(alignmentId, alignment); } // Compute the semantic type suggestions SemanticTypeUtil.computeSemanticTypesSuggestion(worksheet, vWorkspace.getWorkspace().getCrfModelHandler(), vWorkspace.getWorkspace().getOntologyManager(), alignment); // Add the alignment update c.add(new SemanticTypesUpdate(worksheet, vWorksheetId, alignment)); c.add(new SVGAlignmentUpdate_ForceKarmaLayout(vWorkspace.getViewFactory().getVWorksheet(vWorksheetId), alignment)); c.add(new InfoUpdate("Model successfully applied!")); return c; } private String extractHistoryFromModel() throws RepositoryException, RDFParseException, IOException { Repository myRepository = new SailRepository(new MemoryStore()); myRepository.initialize(); RepositoryConnection con = myRepository.getConnection(); ValueFactory f = con.getValueFactory(); con.add(r2rmlModelFile, "", RDFFormat.TURTLE); URI wkHistUri = f.createURI(Uris.KM_HAS_WORKSHEET_HISTORY_URI); RepositoryResult<Statement> wkHistStmts = con.getStatements(null, wkHistUri, null, false); while (wkHistStmts.hasNext()) { // Return the object value of the first history statement Statement st = wkHistStmts.next(); Value histVal = st.getObject(); return histVal.stringValue(); } return ""; } @Override public UpdateContainer undoIt(VWorkspace vWorkspace) { return null; } }