
org.apache.jena.sparql.modify.UpdateEngineMain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jena-arq Show documentation
Show all versions of jena-arq Show documentation
ARQ is a SPARQL 1.1 query engine for Apache Jena
/*
* 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
*
* Developers who only want to change/extend the processing of individual updates can easily
*
*/
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 ; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy