[PATCH 3/6] annotations: Annotated grl-metadata-source
- From: Simón Pena <spenap gmail com>
- To: grilo-list gnome org
- Subject: [PATCH 3/6] annotations: Annotated grl-metadata-source
- Date: Mon, 6 Sep 2010 19:04:13 +0200
---
src/grl-metadata-source.c | 58 +++++++++++++++++++++++++++-----------------
src/grl-metadata-source.h | 3 +-
2 files changed, 37 insertions(+), 24 deletions(-)
diff --git a/src/grl-metadata-source.c b/src/grl-metadata-source.c
index 4ec06ff..ea72371 100644
--- a/src/grl-metadata-source.c
+++ b/src/grl-metadata-source.c
@@ -503,7 +503,7 @@ analyze_keys_to_write (GrlMetadataSource *source,
* Get a list of #GrlKeyID, which describe a metadata types that the this
* source can fetch and store.
*
- * Returns: (transfer none) (allow-none): a #GList with the keys
+ * Returns: (element-type GObject.ParamSpec*) (transfer none): a #GList with the keys
*/
const GList *
grl_metadata_source_supported_keys (GrlMetadataSource *source)
@@ -520,7 +520,7 @@ grl_metadata_source_supported_keys (GrlMetadataSource *source)
* are marked as slow because of the amount of traffic/processing needed
* to fetch them.
*
- * Returns: (transfer none) (allow-none): a #GList with the keys
+ * Returns: (element-type GObject.ParamSpec*) (transfer none): a #GList with the keys
*/
const GList *
grl_metadata_source_slow_keys (GrlMetadataSource *source)
@@ -534,15 +534,15 @@ grl_metadata_source_slow_keys (GrlMetadataSource *source)
}
/**
- * grl_metadata_source_keys_depends:
+ * grl_metadata_source_key_depends:
* @source: a metadata source
- * @key_id: the requested metadata key
+ * @key_id: (type GObject.ParamSpec*): the requested metadata key
*
* Get the list of #GrlKeyID which are needed a priori, in order to fetch
* and store the requested @key_id
*
- * Returns: (transfer none) (allow-none): a #GList with the keys, or @NULL if it
- * can not resolve @key_id
+ * Returns: (element-type GObject.ParamSpec*) (transfer none):
+ * a #GList with the keys, or @NULL if it can not resolve @key_id
*/
const GList *
grl_metadata_source_key_depends (GrlMetadataSource *source, GrlKeyID key_id)
@@ -559,7 +559,8 @@ grl_metadata_source_key_depends (GrlMetadataSource *source, GrlKeyID key_id)
* are marked as writable, meaning the source allows the client
* to provide new values for these keys that will be stored permanently.
*
- * Returns: (transfer none) (allow-none): a #GList with the keys
+ * Returns: (element-type GObject.ParamSpec*) (transfer none):
+ * a #GList with the keys
*/
const GList *
grl_metadata_source_writable_keys (GrlMetadataSource *source)
@@ -575,7 +576,8 @@ grl_metadata_source_writable_keys (GrlMetadataSource *source)
/**
* grl_metadata_source_resolve:
* @source: a metadata source
- * @keys: the #GList of #GrlKeyID to retrieve
+ * @keys: (element-type GObject.ParamSpec*) (transfer none) (allow-none): the #GList
+ * of #GrlKeyID to retrieve
* @media: Transfer object where all the metadata is stored.
* @flags: bitwise mask of #GrlMetadataResolutionFlags with the resolution
* strategy
@@ -638,7 +640,8 @@ grl_metadata_source_resolve (GrlMetadataSource *source,
/**
* grl_metadata_source_resolve_sync:
* @source: a metadata source
- * @keys: the #GList of #GrlKeyID to retrieve
+ * @keys: (element-type GObject.ParamSpec*) (transfer none) (allow-none): the #GList
+ * of #GrlKeyID to retrieve
* @media: Transfer object where all the metadata is stored
* @flags: bitwise mask of #GrlMetadataResolutionFlags with the resolution
* strategy
@@ -687,15 +690,17 @@ grl_metadata_source_resolve_sync (GrlMetadataSource *source,
/**
* grl_metadata_source_filter_supported:
* @source: a metadata source
- * @keys: the list of keys to filter out
+ * @keys: (element-type GObject.ParamSpec*) (transfer container) (allow-none) (inout):
+ * the list of keys to filter out
* @return_filtered: if %TRUE the return value shall be a new list with
* the matched keys
*
* Compares the received @keys list with the supported key list by the
* metadata @source, and will delete those keys which are supported.
*
- * Returns: (transfer full) (allow-none): if @return_filtered is %TRUE
- * will return the list of intersected keys; otherwise %NULL
+ * Returns: (element-type GObject.ParamSpec*) (transfer full):
+ * if @return_filtered is %TRUE will return the list of intersected keys;
+ * otherwise %NULL
*/
GList *
grl_metadata_source_filter_supported (GrlMetadataSource *source,
@@ -745,15 +750,17 @@ grl_metadata_source_filter_supported (GrlMetadataSource *source,
/**
* grl_metadata_source_filter_slow:
* @source: a metadata source
- * @keys: the list of keys to filter out
+ * @keys: (element-type GObject.ParamSpec*) (transfer container) (allow-none) (inout):
+ * the list of keys to filter out
* @return_filtered: if %TRUE the return value shall be a new list with
* the matched keys
*
* Similar to grl_metadata_source_filter_supported() but applied to
* the slow keys in grl_metadata_source_slow_keys()
*
- * Returns: (transfer full) (allow-none): if @return_filtered is %TRUE
- * will return the list of intersected keys; otherwise %NULL
+ * Returns: (element-type GObject.ParamSpec*) (transfer full):
+ * if @return_filtered is %TRUE will return the list of intersected keys;
+ * otherwise %NULL
*/
GList *
grl_metadata_source_filter_slow (GrlMetadataSource *source,
@@ -810,15 +817,17 @@ grl_metadata_source_filter_slow (GrlMetadataSource *source,
/**
* grl_metadata_source_filter_writable:
* @source: a metadata source
- * @keys: the list of keys to filter out
+ * @keys: (element-type GObject.ParamSpec*) (transfer container) (allow-none) (inout):
+ * the list of keys to filter out
* @return_filtered: if %TRUE the return value shall be a new list with
* the matched keys
*
* Similar to grl_metadata_source_filter_supported() but applied to
* the writable keys in grl_metadata_source_writable_keys()
*
- * Returns: (transfer full) (allow-none): if @return_filtered is %TRUE
- * will return the list of intersected keys; otherwise %NULL
+ * Returns: (element-type GObject.ParamSpec*) (transfer full):
+ * if @return_filtered is %TRUE will return the list of intersected keys;
+ * otherwise %NULL
*/
GList *
grl_metadata_source_filter_writable (GrlMetadataSource *source,
@@ -1089,14 +1098,15 @@ grl_metadata_source_get_description (GrlMetadataSource *source)
* grl_metadata_source_set_metadata:
* @source: a metadata source
* @media: the #GrlMedia object that we want to operate on.
- * @key: a #GrlKeyID which value we want to change.
+ * @keys: (element-type GObject.ParamSpec*) (transfer none) (allow-none): a list
+ * of #GrlKeyID whose values we want to change.
* @callback: the callback to execute when the operation is finished.
* @user_data: user data set for the @callback
*
* This is the main method of the #GrlMetadataSource class. It will
- * get the value for @key from @media and store it permanently. After
+ * get the values for @keys from @media and store it permanently. After
* calling this method, future queries that return this media object
- * shall return this new value for the selected key.
+ * shall return this new values for the selected keys.
*
* This function is asynchronic and uses the Glib's main loop.
*/
@@ -1150,7 +1160,8 @@ grl_metadata_source_set_metadata (GrlMetadataSource *source,
* grl_metadata_source_set_metadata_sync:
* @source: a metadata source
* @media: the #GrlMedia object that we want to operate on
- * @key: a #GrlKeyID which value we want to change
+ * @keys: (element-type GObject.ParamSpec*) (allow-none) (transfer none): a list of
+ * #GrlKeyID whose values we want to change
* @error: a #GError, or @NULL
* @callback: the callback to execute when the operation is finished
* @user_data: user data set for the @callback
@@ -1162,7 +1173,8 @@ grl_metadata_source_set_metadata (GrlMetadataSource *source,
*
* This function is synchronous.
*
- * Returns: a #GList of keys that could not be updated, or @NULL
+ * Returns: (element-type GObject.ParamSpec*) (transfer container):
+ * a #GList of keys that could not be updated, or @NULL
*/
GList *
grl_metadata_source_set_metadata_sync (GrlMetadataSource *source,
diff --git a/src/grl-metadata-source.h b/src/grl-metadata-source.h
index 1cb7378..16be727 100644
--- a/src/grl-metadata-source.h
+++ b/src/grl-metadata-source.h
@@ -123,7 +123,8 @@ typedef void (*GrlMetadataSourceResolveCb) (GrlMetadataSource *source,
* GrlMetadataSourceSetMetadataCb:
* @source: a metadata source
* @media: a #GrlMedia transfer object
- * @failed_keys: (out) (element-type Grl.KeyID): #GList of keys that could not be updated, if any
+ * @failed_keys: (out) (element-type Grl.KeyID) (transfer container): #GList of
+ * keys that could not be updated, if any
* @user_data: user data passed to grl_metadata_source_set_metadata()
* @error: (not-error): possible #GError generated when updating the metadata
*
--
1.7.0.4
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]