Struct tracker::SparqlConnection[][src]

#[repr(transparent)]
pub struct SparqlConnection { /* fields omitted */ }
Expand description

The <structname>TrackerSparqlConnection</structname> object represents a SPARQL connection.

This is an Abstract Base Class, you cannot instantiate it.

Implementations

Connects to a database owned by another process on the local machine.

service_name

The name of the D-Bus service to connect to.

object_path

The path to the object, or None to use the default.

dbus_connection

The [gio::DBusConnection][crate::gio::DBusConnection] to use, or None to use the session bus

Returns

a new SparqlConnection. Call g_object_unref() on the object when no longer used.

Creates or opens a database.

This method should only be used for databases owned by the current process. To connect to databases managed by other processes, use bus_new().

If store is None, the database will be created in memory.

The ontologies parameter must point to a location containing suitable .ontology files in Turtle format. These control the database schema that is used. You can use the default Nepomuk ontologies by calling tracker_sparql_get_ontology_nepomuk ().

If you open an existing database using a different ontology to the one it was created with, Tracker will attempt to migrate the existing data to the new schema. This may raise an error. In particular, not all migrations are possible without causing data loss and Tracker will refuse to delete data during a migration.

You can also pass None for ontologies to mean “use the ontologies that the database was created with”. This will fail if the database doesn’t already exist.

flags

values from SparqlConnectionFlags

store

the directory that contains the database as a [gio::File][crate::gio::File], or None

ontology

the directory that contains the database schemas as a [gio::File][crate::gio::File], or None

cancellable

a [gio::Cancellable][crate::gio::Cancellable], or None

Returns

a new SparqlConnection. Call g_object_unref() on the object when no longer used.

Connects to a remote SPARQL endpoint. The connection is made using the libsoup HTTP library. The connection will normally use the http:// or https:// protocol.

uri_base

Base URI of the remote connection

Returns

a new remote SparqlConnection. Call g_object_unref() on the object when no longer used.

Closes a SPARQL connection. No other API calls than g_object_unref() should happen after this call.

This call is blocking. All pending updates will be flushed, and the store databases will be closed orderly. All ongoing SELECT queries will be cancelled. Notifiers will no longer emit events.

Closes a connection asynchronously. No other API calls than g_object_unref() should happen after this call. See close() for more information.

cancellable

a [gio::Cancellable][crate::gio::Cancellable], or None

callback

user-defined GAsyncReadyCallback to be called when asynchronous operation is finished.

Creates a new batch to store and execute update commands. If the connection is readonly or cannot issue SPARQL updates, None will be returned.

Returns

(nullable): A new Batch

Creates a new Notifier to notify about changes in self. See Notifier documentation for information about how to use this object.

Returns

a newly created notifier. Free with g_object_unref() when no longer needed.

Retrieves a NamespaceManager that contains all prefixes in the ontology of self.

Returns

a NamespaceManager for this connection. This object is owned by self and must not be freed.

Executes a SPARQL query on. The API call is completely synchronous, so it may block.

The sparql query should be built with Resource, or its parts correctly escaped using tracker_sparql_escape_string(), otherwise SPARQL injection is possible.

sparql

string containing the SPARQL query

cancellable

a [gio::Cancellable][crate::gio::Cancellable] used to cancel the operation

Returns

a SparqlCursor if results were found. On error, None is returned and the error is set accordingly. Call g_object_unref() on the returned cursor when no longer needed.

Executes asynchronously a SPARQL query.

sparql

string containing the SPARQL query

cancellable

a [gio::Cancellable][crate::gio::Cancellable] used to cancel the operation

callback

user-defined GAsyncReadyCallback to be called when asynchronous operation is finished.

Prepares the given sparql as a SparqlStatement.

sparql

the SPARQL query

cancellable

a [gio::Cancellable][crate::gio::Cancellable] used to cancel the operation, or None

Returns

a prepared statement

Executes asynchronously a SPARQL update.

sparql

string containing the SPARQL update query

cancellable

a [gio::Cancellable][crate::gio::Cancellable] used to cancel the operation

callback

user-defined GAsyncReadyCallback to be called when asynchronous operation is finished.

Executes a SPARQL update and returns the URNs of the generated nodes, if any. The API call is completely synchronous, so it may block.

The sparql query should be built with Resource, or its parts correctly escaped using tracker_sparql_escape_string(), otherwise SPARQL injection is possible.

sparql

string containing the SPARQL update query

cancellable

a [gio::Cancellable][crate::gio::Cancellable] used to cancel the operation

Returns

a [glib::Variant][struct@crate::glib::Variant] with the generated URNs, which should be freed with g_variant_unref() when no longer used.

Executes asynchronously a SPARQL update.

sparql

string containing the SPARQL update query

cancellable

a [gio::Cancellable][crate::gio::Cancellable] used to cancel the operation

callback

user-defined GAsyncReadyCallback to be called when asynchronous operation is finished.

Asynchronous version of new().

flags

values from SparqlConnectionFlags

store

the directory that contains the database as a [gio::File][crate::gio::File], or None

ontology

the directory that contains the database schemas as a [gio::File][crate::gio::File], or None

cancellable

a [gio::Cancellable][crate::gio::Cancellable], or None

callback

the GAsyncReadyCallback called when the operation completes

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Returns the type identifier of Self.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Upcasts an object to a superclass or interface T. Read more

Upcasts an object to a reference of its superclass or interface T. Read more

Tries to downcast to a subclass or interface implementor T. Read more

Tries to downcast to a reference of its subclass or interface implementor T. Read more

Tries to cast to an object of type T. This handles upcasting, downcasting and casting between interface and interface implementors. All checks are performed at runtime, while downcast and upcast will do many checks at compile-time already. Read more

Tries to cast to reference to an object of type T. This handles upcasting, downcasting and casting between interface and interface implementors. All checks are performed at runtime, while downcast and upcast will do many checks at compile-time already. Read more

Casts to T unconditionally. Read more

Casts to &T unconditionally. Read more

Performs the conversion.

Performs the conversion.

Returns true if the object is an instance of (can be cast to) T.

Returns the type of the object.

Returns the [ObjectClass] of the object. Read more

Returns the class of the object.

Returns the class of the object in the given type T. Read more

Returns the interface T of the object. Read more

Similar to [Self::set_property] but fails instead of panicking.

Sets the property property_name of the object to value value. Read more

Similar to [Self::set_property] but fails instead of panicking.

Sets the property property_name of the object to value value. Read more

Similar to [Self::set_properties] but fails instead of panicking.

Sets multiple properties of the object at once. Read more

Similar to [Self::set_properties_from_value] but fails instead of panicking.

Sets multiple properties of the object at once. Read more

Similar to [Self::property] but fails instead of panicking.

Gets the property property_name of the object and cast it to the type V. Read more

Similar to [Self::property_value] but fails instead of panicking.

Gets the property property_name of the object. Read more

Check if the object has a property property_name of the given type_. Read more

Get the type of the property property_name of this object. Read more

Get the ParamSpec of the property property_name of this object.

Return all ParamSpec of the properties of this object.

Freeze all property notifications until the return guard object is dropped. Read more

Set arbitrary data on this object with the given key. Read more

Return previously set arbitrary data of this object with the given key. Read more

Retrieve previously set arbitrary data of this object with the given key. Read more

Set arbitrary data on this object with the given key. Read more

Return previously set arbitrary data of this object with the given key. Read more

Retrieve previously set arbitrary data of this object with the given key. Read more

Block a given signal handler. Read more

Unblock a given signal handler.

Stop emission of the currently emitted signal.

Stop emission of the currently emitted signal by the (possibly detailed) signal name.

Similar to [Self::connect] but fails instead of panicking.

Connect to the signal signal_name on this object. Read more

Similar to [Self::connect_id] but fails instead of panicking.

Connect to the signal signal_id on this object. Read more

Similar to [Self::connect_local] but fails instead of panicking.

Connect to the signal signal_name on this object. Read more

Similar to [Self::connect_local_id] but fails instead of panicking.

Connect to the signal signal_id on this object. Read more

Similar to [Self::connect_unsafe] but fails instead of panicking.

Connect to the signal signal_name on this object. Read more

Similar to [Self::connect_unsafe_id] but fails instead of panicking.

Similar to [Self::connect_closure] but fails instead of panicking.

Connect a closure to the signal signal_name on this object. Read more

Similar to [Self::connect_closure_id] but fails instead of panicking.

Connect a closure to the signal signal_id on this object. Read more

Limits the lifetime of closure to the lifetime of the object. When the object’s reference count drops to zero, the closure will be invalidated. An invalidated closure will ignore any calls to Closure::invoke. Read more

Connect to the signal signal_id on this object. Read more

Similar to [Self::emit] but fails instead of panicking.

Emit signal by signal id. Read more

Similar to [Self::emit_with_values] but fails instead of panicking.

Same as [Self::emit] but takes Value for the arguments.

Similar to [Self::emit_by_name] but fails instead of panicking.

Emit signal by its name. Read more

Similar to [Self::emit_by_name_with_values] but fails instead of panicking.

Emit signal by its name. Read more

Similar to [Self::emit_with_details] but fails instead of panicking.

Emit signal by signal id with details. Read more

Similar to [Self::emit_with_details_and_values] but fails instead of panicking.

Emit signal by signal id with details. Read more

Disconnect a previously connected signal handler.

Connect to the notify signal of the object. Read more

Connect to the notify signal of the object. Read more

Connect to the notify signal of the object. Read more

Notify that the given property has changed its value. Read more

Notify that the given property has changed its value. Read more

Downgrade this object to a weak reference.

Bind property source_property on this object to the target_property on the target object. Read more

Returns the strong reference count of this object.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Returns a SendValue clone of self.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.