mmmd_get()

Get the specified metadata fields from the specified item.

Synopsis:

#include <md/md.h>
int mmmd_get( mmmd_hdl_t *hdl, 
              const char *item, 
              const char *types, 
              const char *source, 
              uint32_t count, 
              char **md )

Arguments:

hdl

The handle of the session associated with the mediastore from which metadata is being read

item

A URL or an absolute path to the item whose metadata is wanted

types

A string listing the types (fields) for which metadata is wanted

source

A string specifying the metadata source (i.e., the MDP to use). Currently, this feature isn't supported so this argument must be NULL to indicate that all sources can be used.

count

The number of desired matches (responses from MDPs).

If source is NULL and count is 0, all responses are collated to return the highest-rated response (see Description: for an explanation of the highest-rated response).

If source is NULL and count is nonzero, the number of responses returned is less than or equal to count, starting with the highest-rated response. No collation is performed.

md

A pointer to a string pointer that references the buffer storing the response. The string pointer is set by the function.

Library:

libmd

Description:

Get the specified metadata fields from the specified item. The libmd library uses as many MDPs as necessary to extract metadata for all the fields listed in types. The order in which libmd invokes the MDPs is the plugin preference order for the file type indicated by the URL or path in item. The preference order is stated in the configuration file.

Retrieving multiple responses

Setting count to a value greater than 0 allows you to retrieve multiple matches or responses for metadata fields. Your client code can then choose the set of responses that provides the user with the most accurate and complete metadata possible. The number of responses returned is less than count if the number of MDPs supporting any of the requested fields is also less than count. A nonzero value for this argument simply limits how many responses can be returned.

Suppose a client sets count to 3 and requests the md_title_artist and md_title_orientation fields from a POSIX file while the MDP preference order for POSIX files is mmf, mediafs, exif. The MMF and MediaFS MDPs support the first field but not the second; the Exif MDP supports the second field but not the first. The libmd library stores a pointer in md that references the following string:

md_src_name::mmf\nmd_src_rating::0\nmd_title_artist::some_artist\n
md_src_name::mediafs\nmd_src_rating::1\nmd_title_artist::some_artist
\nmd_src_name::exif\nmd_src_rating::2\nmd_orientation::landscape\0

The name and rating of the MDP that produced the metadata are placed in front of every metadata field. Ratings are offsets in the 0-based list of preferred MDPs, so 0 indicates the first plugin listed, 1 indicates the second listed, and so on.

Retrieving the highest-rated responses

Setting count to 0 makes libmd collate the responses from many MDPs into one result set to produce the highest-rated response, which is the set of metadata fields obtained from the MDPs listed earliest in the plugin preference order.

Suppose a client sets count to set 0 and requests the md_title_width, md_title_height, and md_title_orientation fields from a POSIX file while the MDP preference order is the same as listed above. The MMF and MediaFS MDPs support the first two fields but not the last; only the Exif MDP supports the last field. The libmd library sets md to reference the following string:

md_title_width::response_from_MMF\nmd_title_height::response_from_
MMF\nmd_title_orientation::response_from_Exif

Because MMF is rated ahead of MediaFS, this first MDP's values for md_title_width and md_title_height are returned. Neither MMF nor MediaFS supports md_title_orientation, so the value from Exif for this last field is returned.

Returning metadata memory

The metadata pointer (md) should be deallocated using free() when the metadata is no longer needed. The libmd library sets this pointer to a valid value (i.e., non-NULL) only if the return value is greater than 0, meaning metadata was found.

Returns:

-1 on error

0 on failure to get metadata (but no errors occurred)

>0 on success (indicating the number of responses)