Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
Admin message
The migration is almost done, at least the rest should happen in the background. There are still a few technical difference between the old cluster and the new ones, and they are summarized in this issue. Please pay attention to the TL:DR at the end of the comment.
Oh hey, it's removed in the following patch. Could you rebase this spurious change out of existence? I find skim-reading the patch series in gitweb before submitting it for review is a good way to catch these kinds of things ahead of time.
Since: WHEN
Use "0.13.UNRELEASED". The release scripts grep for "UNRELEASED" and make distcheck fail if it's found.
GHashTable params; / TpConnectionManagerParam */
Is that the key or the value?
/* holding state during parsing */
ParseState state;
gboolean interested;
struct {
GString *content;
TpConnectionManagerParam *param;
Presence *presence;
xmlParserCtxtPtr context;
} current;
Can't the parser state be a separate struct that has a reference to the TpServiceProfile? It might make the separation between temporary state and the actual profile object clearer.
If you --enable-gtk-doc, make check fails because there's no entry in telepathy-glib.sections for TpServiceProfile and its symbols.
There's a tonne of unnecessary and irregular linebreaks between functions in service-profile.h. Some are separated by one line, others by two, and for all the trivial get-me-a-string accessors I think it'd be better with no space in between, to be honest.
Their names should contain is or get. eg. tp_service_profile_valid() and tp_service_profile_get_id(). Really they should all be GObject properties too.
I think I would represent channel classes as GHashTables as used by tp_asv_new() and friends. Then you could just have GList *tp_service_profile_get_forbidden_channel_classes (TpServiceProfile *);. The internal list-of-FCCProperty representation could also be replaced with this.
GList of gchar * is unconventional; a const gchar * const * would be more consistent with the rest of Telepathy. And I do wonder whether a list/array of some TpServicePresenceSpec struct would be better, or maybe just returning a ref of the internal hash?
I don't think you meant to leave this code in in this form? It's unreadable and has if (1) and fprintf and ... The unreadable bit would go away if FCCs were represented as a{sv}s, I think.
There are a load of
DEBUG ();
which should either be removed or have useful information added to the message. This should also be removed from _get_property and _set_property:
DEBUG ("%u", prop_id);
_end_element_ns() would be easier to read if it were not 160 lines long, and were better split up into sub-functions and a switch on the state.
This isn't a full review, I'll do some more on the actual code later.