Bug 75450 - Missing TpAccountChannelRequest high level API
Summary: Missing TpAccountChannelRequest high level API
Status: RESOLVED FIXED
Alias: None
Product: Telepathy
Classification: Unclassified
Component: tp-glib (show other bugs)
Version: unspecified
Hardware: Other All
: medium enhancement
Assignee: Telepathy bugs list
QA Contact: Telepathy bugs list
URL: http://cgit.collabora.com/git/user/ca...
Whiteboard:
Keywords: patch
Depends on:
Blocks:
 
Reported: 2014-02-24 15:38 UTC by Guillaume Desmottes
Modified: 2014-02-26 09:31 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

Description Guillaume Desmottes 2014-02-24 15:38:06 UTC
Here are the high level API missing for Empathy:

- FileTransfer.ContentHash(Type):
void tp_account_channel_request_set_file_transfer_hash (TpAccountChannelRequest *self, TpFileHashType hash_type, const gchar *hash);

- StreamTube:
TpAccountChannelRequest * tp_account_channel_request_new_stream_tube (
    TpAccount *account,
    const gchar *service,
    gint64 user_action_time);

- DBusTube:
TpAccountChannelRequest * tp_account_channel_request_new_dbus_tube (
    TpAccount *account,
    const gchar *service_name,
    gint64 user_action_time);

- SMS.SMSChannel:
void tp_account_channel_request_set_sms_channel (TpAccountChannelRequest *self, gboolean is_sms_channel);

- Setting None as TargetHandleType. We can either allows @identifier=NULL in tp_account_channel_request_set_target_id() or maybe automatically set it when requesting if no TargetHandleType has been provided?

- Conference:
void tp_account_channel_request_set_conference_initial_channels (TpAccountChannelRequest *self, const gchar * const * channels);

void tp_account_channel_request_set_initial_invitees_ids (TpAccountChannelRequest *self, const gchar * const * ids);

and maybe a set_initial_invitees() taking a GPtrArray<TpContact> as well?
Comment 1 Simon McVittie 2014-02-25 11:39:21 UTC
(In reply to comment #0)
> - FileTransfer.ContentHash(Type):
> void tp_account_channel_request_set_file_transfer_hash
> (TpAccountChannelRequest *self, TpFileHashType hash_type, const gchar *hash);

If we're not planning to redesign it for 1.0.

> - Setting None as TargetHandleType. We can either allows @identifier=NULL in
> tp_account_channel_request_set_target_id() or maybe automatically set it
> when requesting if no TargetHandleType has been provided?

I think I'd prefer detecting whether a TargetHandleType has been provided.

> void tp_account_channel_request_set_initial_invitees_ids
> (TpAccountChannelRequest *self, const gchar * const * ids);

"initial_invitee_ids"

> and maybe a set_initial_invitees() taking a GPtrArray<TpContact> as well?

Yes, I think this version would be good to have too.
Comment 3 Simon McVittie 2014-02-25 18:54:17 UTC
> + tp_asv_set_uint32 (self->priv->request,
> + g_strdup (TP_PROP_CHANNEL_TARGET_HANDLE_TYPE), TP_HANDLE_TYPE_NONE);

I'd rather use g_hash_table_insert instead of tp_asv_set_uint32 in situations where the memory allocation model doesn't match the one tp_asv_set_uint32 documents (namely "static keys, copied values"). This use of g_strdup() feels uncomfortably like "compensating errors".

Looks good otherwise.
Comment 4 Guillaume Desmottes 2014-02-26 09:31:45 UTC
(In reply to comment #3)
> > + tp_asv_set_uint32 (self->priv->request,
> > + g_strdup (TP_PROP_CHANNEL_TARGET_HANDLE_TYPE), TP_HANDLE_TYPE_NONE);
> 
> I'd rather use g_hash_table_insert instead of tp_asv_set_uint32 in
> situations where the memory allocation model doesn't match the one
> tp_asv_set_uint32 documents (namely "static keys, copied values"). This use
> of g_strdup() feels uncomfortably like "compensating errors".

Fixed & merged to master.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.