TrackerThumbnailer

TrackerThumbnailer — Request the thumbnailer service creates or updates thumbnails.

Synopsis

#include <libtracker-miner/tracker-miner.h>

struct              TrackerThumbnailer;
struct              TrackerThumbnailerClass;
TrackerThumbnailer * tracker_thumbnailer_new            (void);
void                tracker_thumbnailer_send            (TrackerThumbnailer *thumbnailer);
gboolean            tracker_thumbnailer_move_add        (TrackerThumbnailer *thumbnailer,
                                                         const gchar *from_uri,
                                                         const gchar *mime_type,
                                                         const gchar *to_uri);
gboolean            tracker_thumbnailer_remove_add      (TrackerThumbnailer *thumbnailer,
                                                         const gchar *uri,
                                                         const gchar *mime_type);
gboolean            tracker_thumbnailer_cleanup         (TrackerThumbnailer *thumbnailer,
                                                         const gchar *uri_prefix);

Description

This is a convenience API using D-Bus for creating and updating thumbnails for files being mined. It is also used to create thumbnails for album art found embedded in some medias.

This follows the thumbnailer specification: http://live.gnome.org/ThumbnailerSpec

Details

struct TrackerThumbnailer

struct TrackerThumbnailer {
	GObject parent;
};

A class implementation for managing thumbnails when mining content.

GObject parent;

parent object

struct TrackerThumbnailerClass

struct TrackerThumbnailerClass {
	GObjectClass parent;
};

Prototype for the class.

GObjectClass parent;

parent object class

tracker_thumbnailer_new ()

TrackerThumbnailer * tracker_thumbnailer_new            (void);


tracker_thumbnailer_send ()

void                tracker_thumbnailer_send            (TrackerThumbnailer *thumbnailer);

Sends to the thumbnailer all stored requests.

thumbnailer :

Thumbnailer object

Since 0.8


tracker_thumbnailer_move_add ()

gboolean            tracker_thumbnailer_move_add        (TrackerThumbnailer *thumbnailer,
                                                         const gchar *from_uri,
                                                         const gchar *mime_type,
                                                         const gchar *to_uri);

Adds a new request to tell the thumbnailer that from_uri was moved to to_uri. Stored requests can be sent with tracker_thumbnailer_send().

thumbnailer :

Thumbnailer object

from_uri :

URI of the file before the move

mime_type :

mime-type of the file

to_uri :

URI of the file after the move

Returns :

TRUE if successfully stored to be reported, FALSE otherwise.

Since 0.8


tracker_thumbnailer_remove_add ()

gboolean            tracker_thumbnailer_remove_add      (TrackerThumbnailer *thumbnailer,
                                                         const gchar *uri,
                                                         const gchar *mime_type);

Adds a new request to tell the thumbnailer that uri was removed. Stored requests can be sent with tracker_thumbnailer_send().

thumbnailer :

Thumbnailer object

uri :

URI of the file

mime_type :

mime-type of the file

Returns :

TRUE if successfully stored to be reported, FALSE otherwise.

Since 0.8


tracker_thumbnailer_cleanup ()

gboolean            tracker_thumbnailer_cleanup         (TrackerThumbnailer *thumbnailer,
                                                         const gchar *uri_prefix);

Tells thumbnailer to cleanup all thumbnails under uri_prefix.

thumbnailer :

Thumbnailer object

uri_prefix :

URI prefix

Returns :

TRUE if successfully reported, FALSE otherwise.

Since 0.8