📄 ipset.java
字号:
/*
(c) Copyright 2003, 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP
[See end of file]
*/
package com.hp.hpl.jena.db.impl;
import java.util.List;
import com.hp.hpl.jena.db.RDFRDBException;
import com.hp.hpl.jena.graph.Triple;
import com.hp.hpl.jena.graph.TripleMatch;
import com.hp.hpl.jena.util.iterator.ExtendedIterator;
/**
* Generic database interface used for implementing PStore
* Different database table layouts and different SQL dialects should all
* be supportable via this generic interface.
*
* Based on the Jena1 version of IRDBDriver by Dave Reynolds
*
* @author hkuno
* @version $Revision: 1.14 $
*/
public interface IPSet {
/**
* Link an existing instance of the IPSet to a specific driver
*/
public void setDriver(IRDBDriver driver) throws RDFRDBException;
/**
* Pass the SQL cache to the IPSet
*/
public void setSQLCache(SQLCache cache);
public SQLCache getSQLCache();
public void setSQLType(String value);
public void setSkipDuplicateCheck(boolean value);
public void setCachePreparedStatements(boolean value);
/**
* Close this PSet
*/
public void close();
/**
* Remove all RDF information associated with this PSet
* from a database.
*/
public void cleanDB();
/**
* Return boolean indicating whether or not statement
* table for specified statement table contains
* the specified triple for the specified graph.
*/
public boolean statementTableContains(IDBID graphID, Triple t);
/**
* @param t the triple to be added
* @param gid the id of the graph
*/
public void storeTriple(Triple t, IDBID gid);
/**
* Attempt to add a list of triples to the specialized graph.
*
* As each triple is successfully added it is removed from the List.
* If complete is true then the entire List was added and the List will
* be empty upon return. if complete is false, then at least one triple
* remains in the List.
*
* If a triple can't be stored for any reason other than incompatability
* (for example, a lack of disk space) then the implemenation should throw
* a runtime exception.
*
* @param triples List of triples to be added. This is modified by the call.
* @param my_GID ID of the graph.
*/
public void storeTripleList(List triples, IDBID my_GID);
/**
* @param t the triple to be added
* @param gid the id of the graph
*/
public void deleteTriple(Triple t, IDBID gid);
/**
* @param t the triple to be added
* @param gid the id of the graph
*/
public void deleteTripleList(List triples, IDBID gid);
/**
* Method extractTripleFromRowData.
* @param subjURI
* @param predURI
* @param objURI may be null
* @param objVal may be null
* @param objRef may be null
* @return Triple
*/
Triple extractTripleFromRowData(
String subj,
String pred,
String obj);
/**
* Method find matching entries
* @param t tripleMatch pattern
* @param graphID of the graph to search
* @return ExtendedIterator holding results
*/
public ExtendedIterator find(TripleMatch t,
IDBID graphID);
/**
* Return a count of the rows in a given table
*
* @param tName
* @return int
*/
public int rowCount(int graphId);
/**
* Remove the statements associated with this PStore
* from the database tables. Leave Literals.
* @param pProp properties
*/
public void removeStatementsFromDB(IDBID graphID);
/**
* @param graphId TODO
* @return number of triples in AssertedStatement table
*/
public int tripleCount(IDBID graphId);
/**
* @param tblName
*/
public void setTblName(String tblName);
/**
* @return String the name of the table that stores the PSet.
*/
public String getTblName();
/**
* @return the driver for the PSet
*/
public IRDBDriver driver();
}
/*
* (c) Copyright 2003, 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -