Mercurial > pidgin
view libpurple/roomlist.h @ 18088:c138916a49b3
I think it's reasonable to search through a haystack that is the
empty string. This gets rid of the following assertion failure
for me:
#0 0x00002b7f5ebdccab in raise () from /lib/libc.so.6
#1 0x00002b7f5ebde660 in abort () from /lib/libc.so.6
#2 0x00002b7f5e046b1b in g_logv () from /usr/lib/libglib-2.0.so.0
#3 0x00002b7f5e046bb3 in g_log () from /usr/lib/libglib-2.0.so.0
#4 0x00002b7f5e326746 in purple_markup_find_tag (needle=0x2b7f5e33fb89 "img",
haystack=0x11fcf6c "", start=0x7fff51043070, end=0x7fff51043068,
attributes=0x7fff51043060) at util.c:1016
#5 0x00002b7f5e2fa9f4 in convert_image_tags (log=0x931a80,
msg=0x11fcf60 "<IMG ID=\"1\">") at log.c:709
#6 0x00002b7f5e2fba15 in html_logger_write (log=0x931a80, type=4097,
from=0x778e00 "lk80z", time=1181547027, message=0x11fcf60 "<IMG ID=\"1\">")
at log.c:1339
#7 0x00002b7f5e2f8fee in purple_log_write (log=0x931a80, type=4097,
from=0x778e00 "lk80z", time=1181547027, message=0x11fcf60 "<IMG ID=\"1\">")
at log.c:155
#8 0x00002b7f5e2eca6c in purple_conversation_write (conv=0x1041500,
who=0xf50ba0 "giantpucepanda", message=0x11ec670 "<IMG ID=\"1\">",
flags=4097, mtime=1181547027) at conversation.c:883
#9 0x0000000000452ca5 in pidgin_conv_write_im (conv=0x1041500, who=0x0,
message=0x11ec670 "<IMG ID=\"1\">", flags=4097, mtime=1181547027)
at gtkconv.c:4827
#10 0x00002b7f5e2ed21e in purple_conv_im_write (im=0x111b170, who=0x0,
message=0x11ec670 "<IMG ID=\"1\">", flags=4097, mtime=1181547027)
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 11 Jun 2007 07:45:19 +0000 |
parents | 516f14bef90e |
children | 44b4e8bd759b |
line wrap: on
line source
/** * @file roomlist.h Room List API * @ingroup core * * purple * * Purple is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _PURPLE_ROOMLIST_H_ #define _PURPLE_ROOMLIST_H_ typedef struct _PurpleRoomlist PurpleRoomlist; typedef struct _PurpleRoomlistRoom PurpleRoomlistRoom; typedef struct _PurpleRoomlistField PurpleRoomlistField; typedef struct _PurpleRoomlistUiOps PurpleRoomlistUiOps; /** * The types of rooms. * * These are ORable flags. */ typedef enum { PURPLE_ROOMLIST_ROOMTYPE_CATEGORY = 0x01, /**< It's a category, but not a room you can join. */ PURPLE_ROOMLIST_ROOMTYPE_ROOM = 0x02 /**< It's a room, like the kind you can join. */ } PurpleRoomlistRoomType; /** * The types of fields. */ typedef enum { PURPLE_ROOMLIST_FIELD_BOOL, PURPLE_ROOMLIST_FIELD_INT, PURPLE_ROOMLIST_FIELD_STRING /**< We do a g_strdup on the passed value if it's this type. */ } PurpleRoomlistFieldType; #include "account.h" #include "glib.h" /**************************************************************************/ /** Data Structures */ /**************************************************************************/ /** * Represents a list of rooms for a given connection on a given protocol. */ struct _PurpleRoomlist { PurpleAccount *account; /**< The account this list belongs to. */ GList *fields; /**< The fields. */ GList *rooms; /**< The list of rooms. */ gboolean in_progress; /**< The listing is in progress. */ gpointer ui_data; /**< UI private data. */ gpointer proto_data; /** Prpl private data. */ guint ref; /**< The reference count. */ }; /** * Represents a room. */ struct _PurpleRoomlistRoom { PurpleRoomlistRoomType type; /**< The type of room. */ gchar *name; /**< The name of the room. */ GList *fields; /**< Other fields. */ PurpleRoomlistRoom *parent; /**< The parent room, or NULL. */ gboolean expanded_once; /**< A flag the UI uses to avoid multiple expand prpl cbs. */ }; /** * A field a room might have. */ struct _PurpleRoomlistField { PurpleRoomlistFieldType type; /**< The type of field. */ gchar *label; /**< The i18n user displayed name of the field. */ gchar *name; /**< The internal name of the field. */ gboolean hidden; /**< Hidden? */ }; /** * The room list ops to be filled out by the UI. */ struct _PurpleRoomlistUiOps { void (*show_with_account)(PurpleAccount *account); /**< Force the ui to pop up a dialog and get the list */ void (*create)(PurpleRoomlist *list); /**< A new list was created. */ void (*set_fields)(PurpleRoomlist *list, GList *fields); /**< Sets the columns. */ void (*add_room)(PurpleRoomlist *list, PurpleRoomlistRoom *room); /**< Add a room to the list. */ void (*in_progress)(PurpleRoomlist *list, gboolean flag); /**< Are we fetching stuff still? */ void (*destroy)(PurpleRoomlist *list); /**< We're destroying list. */ void (*_purple_reserved1)(void); void (*_purple_reserved2)(void); void (*_purple_reserved3)(void); void (*_purple_reserved4)(void); }; #ifdef __cplusplus extern "C" { #endif /**************************************************************************/ /** @name Room List API */ /**************************************************************************/ /*@{*/ /** * This is used to get the room list on an account, asking the UI * to pop up a dialog with the specified account already selected, * and pretend the user clicked the get list button. * While we're pretending, predend I didn't say anything about dialogs * or buttons, since this is the core. * * @param account The account to get the list on. */ void purple_roomlist_show_with_account(PurpleAccount *account); /** * Returns a newly created room list object. * * It has an initial reference count of 1. * * @param account The account that's listing rooms. * @return The new room list handle. */ PurpleRoomlist *purple_roomlist_new(PurpleAccount *account); /** * Increases the reference count on the room list. * * @param list The object to ref. */ void purple_roomlist_ref(PurpleRoomlist *list); /** * Decreases the reference count on the room list. * * The room list will be destroyed when this reaches 0. * * @param list The room list object to unref and possibly * destroy. */ void purple_roomlist_unref(PurpleRoomlist *list); /** * Set the different field types and their names for this protocol. * * This must be called before purple_roomlist_room_add(). * * @param list The room list. * @param fields A GList of PurpleRoomlistField's. UI's are encouraged * to default to displaying them in the order given. */ void purple_roomlist_set_fields(PurpleRoomlist *list, GList *fields); /** * Set the "in progress" state of the room list. * * The UI is encouraged to somehow hint to the user * whether or not we're busy downloading a room list or not. * * @param list The room list. * @param in_progress We're downloading it, or we're not. */ void purple_roomlist_set_in_progress(PurpleRoomlist *list, gboolean in_progress); /** * Gets the "in progress" state of the room list. * * The UI is encouraged to somehow hint to the user * whether or not we're busy downloading a room list or not. * * @param list The room list. * @return True if we're downloading it, or false if we're not. */ gboolean purple_roomlist_get_in_progress(PurpleRoomlist *list); /** * Adds a room to the list of them. * * @param list The room list. * @param room The room to add to the list. The GList of fields must be in the same order as was given in purple_roomlist_set_fields(). */ void purple_roomlist_room_add(PurpleRoomlist *list, PurpleRoomlistRoom *room); /** * Returns a PurpleRoomlist structure from the prpl, and * instructs the prpl to start fetching the list. * * @param gc The PurpleConnection to have get a list. * * @return A PurpleRoomlist* or @c NULL if the protocol * doesn't support that. */ PurpleRoomlist *purple_roomlist_get_list(PurpleConnection *gc); /** * Tells the prpl to stop fetching the list. * If this is possible and done, the prpl will * call set_in_progress with @c FALSE and possibly * unref the list if it took a reference. * * @param list The room list to cancel a get_list on. */ void purple_roomlist_cancel_get_list(PurpleRoomlist *list); /** * Tells the prpl that a category was expanded. * * On some protocols, the rooms in the category * won't be fetched until this is called. * * @param list The room list. * @param category The category that was expanded. The expression * (category->type & PURPLE_ROOMLIST_ROOMTYPE_CATEGORY) * must be true. */ void purple_roomlist_expand_category(PurpleRoomlist *list, PurpleRoomlistRoom *category); /*@}*/ /**************************************************************************/ /** @name Room API */ /**************************************************************************/ /*@{*/ /** * Creates a new room, to be added to the list. * * @param type The type of room. * @param name The name of the room. * @param parent The room's parent, if any. * * @return A new room. */ PurpleRoomlistRoom *purple_roomlist_room_new(PurpleRoomlistRoomType type, const gchar *name, PurpleRoomlistRoom *parent); /** * Adds a field to a room. * * @param list The room list the room belongs to. * @param room The room. * @param field The field to append. Strings get g_strdup'd internally. */ void purple_roomlist_room_add_field(PurpleRoomlist *list, PurpleRoomlistRoom *room, gconstpointer field); /** * Join a room, given a PurpleRoomlistRoom and it's associated PurpleRoomlist. * * @param list The room list the room belongs to. * @param room The room to join. */ void purple_roomlist_room_join(PurpleRoomlist *list, PurpleRoomlistRoom *room); /*@}*/ /**************************************************************************/ /** @name Room Field API */ /**************************************************************************/ /*@{*/ /** * Creates a new field. * * @param type The type of the field. * @param label The i18n'ed, user displayable name. * @param name The internal name of the field. * @param hidden Hide the field. * * @return A new PurpleRoomlistField, ready to be added to a GList and passed to * purple_roomlist_set_fields(). */ PurpleRoomlistField *purple_roomlist_field_new(PurpleRoomlistFieldType type, const gchar *label, const gchar *name, gboolean hidden); /*@}*/ /**************************************************************************/ /** @name UI Registration Functions */ /**************************************************************************/ /*@{*/ /** * Sets the UI operations structure to be used in all purple room lists. * * @param ops The UI operations structure. */ void purple_roomlist_set_ui_ops(PurpleRoomlistUiOps *ops); /** * Returns the purple window UI operations structure to be used in * new windows. * * @return A filled-out PurpleRoomlistUiOps structure. */ PurpleRoomlistUiOps *purple_roomlist_get_ui_ops(void); /*@}*/ #ifdef __cplusplus } #endif #endif /* _PURPLE_ROOMLIST_H_ */