/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.jena.sparql.modify; import org.apache.jena.sparql.core.DatasetGraph ; import org.apache.jena.sparql.engine.binding.Binding ; import org.apache.jena.sparql.modify.request.UpdateVisitor ; import org.apache.jena.sparql.util.Context ; /** * Default implementation of an update engine * <p> * Developers who only want to change/extend the processing of individual updates can easily * </p> */ public class UpdateEngineMain extends UpdateEngineBase { /** * Creates a new Update Engine * @param datasetGraph DatasetGraph the updates operate over * @param inputBinding Initial binding to be applied to Update operations that can apply an initial binding (i.e. UpdateDeleteWhere, UpdateModify) * @param context Execution Context */ public UpdateEngineMain(DatasetGraph datasetGraph, Binding inputBinding, Context context) { super(datasetGraph, inputBinding, context) ; } @Override public void startRequest() {} @Override public void finishRequest() {} private UpdateSink updateSink = null ; /** * Returns the {@link UpdateSink}. In this implementation, this is done by * with an {@link UpdateVisitor} which will visit each update operation * and send the operation to the associated {@link UpdateEngineWorker}. */ @Override public UpdateSink getUpdateSink() { if ( updateSink == null ) updateSink = new UpdateVisitorSink(this.prepareWorker()); return updateSink ; } /** * Creates the {@link UpdateVisitor} which will do the work of applying the updates * @return The update visitor to be used to apply the updates */ protected UpdateVisitor prepareWorker() { return new UpdateEngineWorker(datasetGraph, inputBinding, context) ; } private static UpdateEngineFactory factory = new UpdateEngineFactory() { @Override public boolean accept(DatasetGraph datasetGraph, Context context) { return true ; } @Override public UpdateEngine create(DatasetGraph datasetGraph, Binding inputBinding, Context context) { return new UpdateEngineMain(datasetGraph, inputBinding, context) ; } } ; public static UpdateEngineFactory getFactory() { return factory ; } }