Soprano
2.7.6
|
Model filter that makes working with NRL data simpler. More...
#include <Soprano/NRLModel>
Public Member Functions | |
NRLModel () | |
NRLModel (Model *parent) | |
~NRLModel () | |
void | setIgnoreContext (bool b) |
bool | ignoreContext () const |
void | setEnableQueryPrefixExpansion (bool enable) |
bool | queryPrefixExpansionEnabled () const |
QHash< QString, QUrl > | queryPrefixes () const |
Error::ErrorCode | addNrlStatement (const Statement &s) |
QUrl | createGraph (const QUrl &type, QUrl *metadataGraph=0) |
Error::ErrorCode | removeGraph (const QUrl &graph) |
virtual QueryResultIterator | executeQuery (const QString &query, Query::QueryLanguage language, const QString &userQueryLanguage=QString()) const |
virtual Error::ErrorCode | removeAllStatements (const Statement &statement) |
![]() | |
virtual | ~FilterModel () |
virtual void | setParentModel (Model *model) |
virtual Model * | parentModel () const |
virtual Error::ErrorCode | addStatement (const Statement &statement) |
Error::ErrorCode | addStatement (const Node &subject, const Node &predicate, const Node &object, const Node &context=Node()) |
virtual Error::ErrorCode | removeStatement (const Statement &statement) |
Error::ErrorCode | removeStatement (const Node &subject, const Node &predicate, const Node &object, const Node &context=Node()) |
Error::ErrorCode | removeAllStatements (const Node &subject, const Node &predicate, const Node &object, const Node &context=Node()) |
virtual StatementIterator | listStatements (const Statement &partial) const |
StatementIterator | listStatements (const Node &subject, const Node &predicate, const Node &object, const Node &context=Node()) const |
virtual NodeIterator | listContexts () const |
virtual bool | containsStatement (const Statement &statement) const |
bool | containsStatement (const Node &subject, const Node &predicate, const Node &object, const Node &context=Node()) const |
virtual bool | containsAnyStatement (const Statement &statement) const |
bool | containsAnyStatement (const Node &subject, const Node &predicate, const Node &object, const Node &context=Node()) const |
virtual bool | isEmpty () const |
virtual int | statementCount () const |
virtual Error::ErrorCode | write (QTextStream &os) const |
virtual Node | createBlankNode () |
![]() | |
virtual | ~Model () |
Error::ErrorCode | addStatements (const QList< Statement > &statements) |
Error::ErrorCode | removeStatements (const QList< Statement > &statements) |
Error::ErrorCode | removeContext (const Node &) |
Error::ErrorCode | removeAllStatements () |
StatementIterator | listStatements () const |
StatementIterator | listStatementsInContext (const Node &context) const |
bool | containsContext (const Node &context) const |
![]() | |
QObject (QObject *parent=0) | |
blockSignals (bool block) | |
childEvent (QChildEvent *event) | |
children () | |
connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type=Qt::AutoCompatConnection) | |
connect (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type=Qt::AutoCompatConnection) | |
connectNotify (const char *signal) | |
customEvent (QEvent *event) | |
deleteLater () | |
destroyed (QObject *obj=0) | |
disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method) | |
disconnect (const char *signal=0, const QObject *receiver=0, const char *method=0) | |
disconnect (const QObject *receiver, const char *method=0) | |
disconnectNotify (const char *signal) | |
dumpObjectInfo () | |
dumpObjectTree () | |
dynamicPropertyNames () | |
event (QEvent *e) | |
eventFilter (QObject *watched, QEvent *event) | |
findChild (const QString &name=QString() | |
findChildren (const QString &name=QString() | |
findChildren (const QRegExp ®Exp) | |
inherits (const char *className) | |
installEventFilter (QObject *filterObj) | |
isWidgetType () | |
killTimer (int id) | |
metaObject () | |
moveToThread (QThread *targetThread) | |
parent () | |
property (const char *name) | |
receivers (const char *signal) | |
removeEventFilter (QObject *obj) | |
sender () | |
setParent (QObject *parent) | |
setProperty (const char *name, const QVariant &value) | |
signalsBlocked () | |
startTimer (int interval) | |
thread () | |
timerEvent (QTimerEvent *event) | |
tr (const char *sourceText, const char *comment=0, int n=-1) | |
trUtf8 (const char *sourceText, const char *comment=0, int n=-1) | |
staticMetaObject | |
QObject (QObject *parent, const char *name) | |
checkConnectArgs (const char *signal, const QObject *object, const char *method) | |
child (const char *objName, const char *inheritsClass=0, bool recursiveSearch=true) | |
className () | |
insertChild (QObject *object) | |
isA (const char *className) | |
name () | |
name (const char *defaultName) | |
normalizeSignalSlot (const char *signalSlot) | |
removeChild (QObject *object) | |
setName (const char *name) | |
![]() | |
virtual | ~ErrorCache () |
virtual Error | lastError () const |
Additional Inherited Members | |
![]() | |
FilterModel () | |
FilterModel (Model *parent) | |
virtual void | parentStatementsAdded () |
virtual void | parentStatementsRemoved () |
virtual void | parentStatementAdded (const Statement &) |
virtual void | parentStatementRemoved (const Statement &) |
![]() | |
Model () | |
![]() | |
ErrorCache () | |
void | clearError () const |
void | setError (const Error &) const |
void | setError (const QString &errorMessage, int code=ErrorUnknown) const |
Model filter that makes working with NRL data simpler.
The NRLModel enforces NRL cardinality rules. That means predicates with a cardinality of maximum 1 are always udpated while statements that define predicates with a maximum cardinality bigger than 1 are rejected once the maximum is reached (future versions might remove an earlier defined statement based on the time the old statements were added).
Thus, at the moment NRLModel is mostly usable for handling properties with a maximum cardinality of 1.
NRLModel also provides automatic query prefix expansion and named graph creation and removal with automatic metadata graph handling.
THE API AND EVEN THE COMPLETE CLASS IS SUBJECT TO CHANGE!
Definition at line 56 of file nrlmodel.h.
Soprano::NRLModel::NRLModel | ( | ) |
Soprano::NRLModel::NRLModel | ( | Model * | parent | ) |
Soprano::NRLModel::~NRLModel | ( | ) |
void Soprano::NRLModel::setIgnoreContext | ( | bool | b | ) |
When enforcing the NRL cardinality rules NRLModel can either ignore the context of statements or treat different contexts as separate sets, each resetting the cardinality.
b | If true (the default) NRLModel does ignore the context when enforcing rules. If false the NRL rules can be violated across contexts. |
By default contexts are ignored.
bool Soprano::NRLModel::ignoreContext | ( | ) | const |
true
if contexts should be ignored when enforcing NRL rules.void Soprano::NRLModel::setEnableQueryPrefixExpansion | ( | bool | enable | ) |
Enable automatic query prefix expansion based on nao:hasDefaultNamespaceAbbreviation. This will trigger reading all prefixes stored in the underlying model.
By default query prefix expansion is disabled.
bool Soprano::NRLModel::queryPrefixExpansionEnabled | ( | ) | const |
true
if query prefix expansion is enabled.The prefixes that have been read from the underlying model.
Error::ErrorCode Soprano::NRLModel::addNrlStatement | ( | const Statement & | s | ) |
Add a statement.
s | The statement containing the property to be set. If the predicate has NRL cardinality restrictions existing statements will be updated. Otherwise this method has the same effect as Model::addStatement(). |
Adding a statement that defines a predicate with a maximum cardinality bigger than 1 which has already been reached fails with an error.
Create a new graph of type type
.
This will actually create two graphs: the requested one and its metadata graph which will already contain basic metadata like creation date.
Error::ErrorCode Soprano::NRLModel::removeGraph | ( | const QUrl & | graph | ) |
Remove a complete graph including its metadata graph
This method can be seen as the counterpart to createGraph
|
virtual |
If queryPrefixExpansionEnabled is true
query prefixes will be expanded before sending the query to the underlying model.
Reimplemented from Soprano::FilterModel.
|
virtual |
If the only node defined in statement
is the context the graph including its metadata is removed.
Reimplemented from Soprano::FilterModel.