All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jena.tdb.sys.TDBMaker Maven / Gradle / Ivy

Go to download

TDB is a storage subsystem for Jena and ARQ, it is a native triple store providing persistent storage of triples/quads.

There is a newer version: 4.10.0
Show newest version
/*
 * 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.tdb.sys;

import org.apache.jena.sparql.core.DatasetGraph;
import org.apache.jena.tdb.StoreConnection ;
import org.apache.jena.tdb.TDBFactory;
import org.apache.jena.tdb.base.file.Location ;
import org.apache.jena.tdb.setup.DatasetBuilderStd;
import org.apache.jena.tdb.setup.StoreParams ;
import org.apache.jena.tdb.store.DatasetGraphTDB ;
import org.apache.jena.tdb.transaction.DatasetGraphTransaction ;

/** Make datasets in various ways. */

public class TDBMaker
{
    // ---- Transactional dataset maker.
    // This hides details from the top level TDB Factory (e.g. for testing)

    /** Create a DatasetGraph that supports transactions */
    static DatasetGraphTransaction createDatasetGraphTransaction(String location) {
        return createDatasetGraphTransaction(Location.create(location)) ;
    }

    /** Create a Dataset that supports transactions */
    public static DatasetGraphTransaction createDatasetGraphTransaction(Location location) {
        return _create(location) ;
    }

    /**
     * Create a Dataset that supports transactions but runs in-memory (for
     * creating test cases)
     */
    public static DatasetGraphTransaction createDatasetGraphTransaction() {
        return createDatasetGraphTransaction(Location.mem()) ;
    }

    /**
     * Release a {@code Location}.
     * Do not use a {@code Dataset} at this location without
     * remaking it via {@link TDBFactory}.
     */
    public static void releaseLocation(Location location) {
        StoreConnection.release(location) ;
    }

    /** 
     * Reset the making and caching of datasets.
     * Applications should not use this operation.
     * All dataset must be rebuild with {@link TDBFactory}
     * after calling this operation.
     * Use {@link TDBFactory#release(DatasetGraph)} with care.  
     * @deprecated
     */
    @Deprecated
    public static void reset() {
        StoreConnection.reset() ;
    }
    
    // Make a DatasetGraphTransaction
    private static DatasetGraphTransaction _create(Location location) {
        // No need to cache StoreConnection does all that.
        return new DatasetGraphTransaction(location) ;
    }

    // ---- Raw non-transactional
    /** 
     * Create a non-transactional TDB dataset graph.
     * Use at your own risk.
     * This function does not attempt to share databases at the same location. 
     * @deprecated Use {@link TDBFactory} or {@link StoreConnection}.
     */
    @Deprecated
    public static DatasetGraphTDB createDatasetGraphTDB(Location loc, StoreParams params)
    { return DatasetBuilderStd.create(loc, params) ; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy