Mercurial > pidgin
annotate src/log.h @ 9740:2bb5e2cd64bd
[gaim-migrate @ 10605]
" A few days back, someone on #gaim was wondering how to
block IM's from IRC, which isn't supported by gaim, as
this isn't supported at a protocol level. I decided to
implement gaim's privacy options (permit lists, deny
lists, block all users, and permit people on buddy
list) at a local level for IRC and
Zephyr. Jabber, SILC, and Trepia don't seem to support
deny or permit lists in Gaim, but I don't use the
latter two protocols and wasn't sure about how to
implemnt in in Jabber.
When implementing it, I noticed that changes in privacy
settings didn't automatically cause blist.xml to get
scheduled
for writing (even on exit). To fix this, I needed to
make schedule_blist_save in blist.c non-static and call
it from serv_set_permit_deny() in server.c, and
gaim_privacy_{permit,deny}_{add,remove} in privacy.c ." --Arun A Tharuvai
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Wed, 11 Aug 2004 23:52:48 +0000 |
| parents | db62420a53a2 |
| children | 829a569993e0 |
| rev | line source |
|---|---|
| 5872 | 1 /** |
| 2 * @file log.h Logging API | |
| 3 * @ingroup core | |
| 4 * | |
| 5 * gaim | |
| 6 * | |
| 8046 | 7 * Gaim is the legal property of its developers, whose names are too numerous |
| 8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 9 * source distribution. | |
| 7440 | 10 * |
| 5872 | 11 * This program is free software; you can redistribute it and/or modify |
| 12 * it under the terms of the GNU General Public License as published by | |
| 13 * the Free Software Foundation; either version 2 of the License, or | |
| 14 * (at your option) any later version. | |
| 15 * | |
| 16 * This program is distributed in the hope that it will be useful, | |
| 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 * GNU General Public License for more details. | |
| 20 * | |
| 21 * You should have received a copy of the GNU General Public License | |
| 22 * along with this program; if not, write to the Free Software | |
| 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 */ | |
| 25 #ifndef _GAIM_LOG_H_ | |
| 26 #define _GAIM_LOG_H_ | |
| 27 | |
| 7431 | 28 #include <stdio.h> |
| 5872 | 29 |
| 30 | |
| 7431 | 31 /******************************************************** |
| 32 * DATA STRUCTURES ************************************** | |
| 33 ********************************************************/ | |
| 34 | |
| 35 typedef struct _GaimLog GaimLog; | |
| 36 typedef struct _GaimLogLogger GaimLogLogger; | |
| 37 | |
| 38 typedef enum { | |
| 39 GAIM_LOG_IM, | |
| 40 GAIM_LOG_CHAT, | |
| 41 GAIM_LOG_SYSTEM, | |
| 42 } GaimLogType; | |
| 43 | |
| 44 typedef enum { | |
| 45 GAIM_LOG_READ_NO_NEWLINE = 1, | |
| 46 } GaimLogReadFlags; | |
| 47 | |
| 48 #include "account.h" | |
| 49 #include "conversation.h" | |
| 50 | |
| 51 /** | |
| 52 * A log logger. | |
| 53 * | |
| 54 * This struct gets filled out and is included in the GaimLog. It contains everything | |
| 55 * needed to write and read from logs. | |
| 56 */ | |
| 9000 | 57 /*@{*/ |
| 7431 | 58 struct _GaimLogLogger { |
| 59 char *name; /**< The logger's name */ | |
| 60 char *id; /**< an identifier to refer to this logger */ | |
| 7440 | 61 |
| 62 /** This gets called when the log is first created. | |
| 7431 | 63 I don't think this is actually needed. */ |
| 7440 | 64 void(*create)(GaimLog *log); |
| 65 | |
| 7431 | 66 /** This is used to write to the log file */ |
| 7440 | 67 void(*write)(GaimLog *log, |
| 68 GaimMessageFlags type, | |
| 7431 | 69 const char *from, |
| 70 time_t time, | |
| 71 const char *message); | |
| 72 | |
| 73 /** Called when the log is destroyed */ | |
| 74 void (*finalize)(GaimLog *log); | |
| 7440 | 75 |
| 7431 | 76 /** This function returns a sorted GList of available GaimLogs */ |
| 8898 | 77 GList *(*list)(GaimLogType type, const char *name, GaimAccount *account); |
| 7440 | 78 |
| 79 /** Given one of the logs returned by the logger's list function, | |
| 80 * this returns the contents of the log in GtkIMHtml markup */ | |
| 7431 | 81 char *(*read)(GaimLog *log, GaimLogReadFlags *flags); |
| 7556 | 82 |
| 83 /** Given one of the logs returned by the logger's list function, | |
| 84 * this returns the size of the log in bytes */ | |
| 85 int (*size)(GaimLog *log); | |
| 8096 | 86 |
| 87 /** Returns the total size of all the logs. If this is undefined a default | |
| 88 * implementation is used */ | |
| 8898 | 89 int (*total_size)(GaimLogType type, const char *name, GaimAccount *account); |
| 8573 | 90 |
| 91 /** This function returns a sorted GList of available system GaimLogs */ | |
| 92 GList *(*list_syslog)(GaimAccount *account); | |
| 5872 | 93 }; |
| 94 | |
| 7431 | 95 /** |
| 96 * A log. Not the wooden type. | |
| 97 */ | |
| 98 struct _GaimLog { | |
| 99 GaimLogType type; /**< The type of log this is */ | |
| 100 char *name; /**< The name of this log */ | |
| 7440 | 101 GaimAccount *account; /**< The account this log is taking |
| 102 place on */ | |
| 103 time_t time; /**< The time this conversation | |
| 104 started */ | |
| 105 GaimLogLogger *logger; /**< The logging mechanism this log | |
| 106 is to use */ | |
| 7431 | 107 void *logger_data; /**< Data used by the log logger */ |
| 5872 | 108 }; |
| 109 | |
| 7431 | 110 |
|
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
111 #ifdef __cplusplus |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
112 extern "C" { |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
113 #endif |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
114 |
| 7431 | 115 /*************************************** |
| 116 ** LOG FUNCTIONS ********************** | |
| 117 ***************************************/ | |
| 7440 | 118 |
| 7431 | 119 /** |
| 120 * Creates a new log | |
| 121 * | |
| 122 * @param type The type of log this is. | |
| 7440 | 123 * @param name The name of this conversation (Screenname, chat name, |
| 124 * etc.) | |
|
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8573
diff
changeset
|
125 * @param account The account the conversation is occurring on |
| 7431 | 126 * @param time The time this conversation started |
| 127 * @return The new log | |
| 7440 | 128 */ |
| 129 GaimLog *gaim_log_new(GaimLogType type, const char *name, | |
| 130 GaimAccount *account, time_t time); | |
| 7431 | 131 |
| 132 /** | |
| 133 * Frees a log | |
| 134 * | |
| 135 * @param log The log to destroy | |
| 7440 | 136 */ |
| 7431 | 137 void gaim_log_free(GaimLog *log); |
| 7440 | 138 |
| 7431 | 139 /** |
| 140 * Writes to a log file | |
| 141 * | |
| 142 * @param log The log to write to | |
| 143 * @param type The type of message being logged | |
| 7440 | 144 * @param from Whom this message is coming from, or NULL for |
| 145 * system messages | |
| 7431 | 146 * @param time A timestamp in UNIX time |
| 147 * @param message The message to log | |
| 148 */ | |
| 149 void gaim_log_write(GaimLog *log, | |
| 7440 | 150 GaimMessageFlags type, |
| 151 const char *from, | |
| 152 time_t time, | |
| 7431 | 153 const char *message); |
| 154 | |
| 155 /** | |
| 156 * Reads from a log | |
| 157 * | |
|
7456
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
158 * @param log The log to read from |
|
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
159 * @param flags The returned logging flags. |
|
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
160 * |
|
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
161 * @return The contents of this log in Gaim Markup. |
| 7431 | 162 */ |
| 163 char *gaim_log_read(GaimLog *log, GaimLogReadFlags *flags); | |
| 164 | |
| 165 /** | |
| 166 * Returns a list of all available logs | |
| 167 * | |
| 8898 | 168 * @param type The type of the log |
| 7431 | 169 * @param name The name of the log |
| 170 * @param account The account | |
| 171 * @return A sorted list of GaimLogs | |
| 172 */ | |
| 8898 | 173 GList *gaim_log_get_logs(GaimLogType type, const char *name, GaimAccount *account); |
| 7440 | 174 |
| 7556 | 175 /** |
| 8573 | 176 * Returns a list of all available system logs |
| 177 * | |
| 178 * @param account The account | |
| 179 * @return A sorted list of GaimLogs | |
| 180 */ | |
| 181 GList *gaim_log_get_system_logs(GaimAccount *account); | |
| 182 | |
| 183 /** | |
| 7556 | 184 * Returns the size of a log |
| 185 * | |
| 186 * @param log The log | |
| 187 * @return The size of the log, in bytes | |
| 188 */ | |
| 189 int gaim_log_get_size(GaimLog *log); | |
| 5872 | 190 |
| 7556 | 191 /** |
| 192 * Returns the size, in bytes, of all available logs in this conversation | |
| 193 * | |
| 9000 | 194 * @param type The type of the log |
| 7556 | 195 * @param name The name of the log |
| 196 * @param account The account | |
| 197 * @return The size in bytes | |
| 198 */ | |
| 8898 | 199 int gaim_log_get_total_size(GaimLogType type, const char *name, GaimAccount *account); |
| 8573 | 200 |
| 201 /** | |
| 202 * Implements GCompareFunc | |
| 203 * | |
| 204 * @param y A GaimLog | |
| 205 * @param z Another GaimLog | |
| 206 * @return A value as specified by GCompareFunc | |
| 207 */ | |
| 208 gint gaim_log_compare(gconstpointer y, gconstpointer z); | |
| 209 | |
| 7431 | 210 /****************************************** |
| 211 ** LOGGER FUNCTIONS ********************** | |
| 212 ******************************************/ | |
| 7440 | 213 |
| 7431 | 214 /** |
| 215 * Creates a new logger | |
| 216 * | |
|
7456
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
217 * @param create The logger's new function. |
|
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
218 * @param write The logger's write function. |
|
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
219 * @param finalize The logger's finalize function. |
|
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
220 * @param list The logger's list function. |
|
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
221 * @param read The logger's read function. |
| 7556 | 222 * @param size The logger's size function. |
|
7456
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
223 * |
|
702fbd2460d7
[gaim-migrate @ 8069]
Christian Hammond <chipx86@chipx86.com>
parents:
7440
diff
changeset
|
224 * @return The new logger |
| 7431 | 225 */ |
| 8898 | 226 GaimLogLogger *gaim_log_logger_new( |
| 227 void(*create)(GaimLog *), | |
| 228 void(*write)(GaimLog *, GaimMessageFlags, const char *, time_t, const char *), | |
| 229 void(*finalize)(GaimLog *), | |
| 230 GList*(*list)(GaimLogType type, const char*, GaimAccount*), | |
| 231 char*(*read)(GaimLog*, GaimLogReadFlags*), | |
| 232 int(*size)(GaimLog*)); | |
| 7431 | 233 /** |
| 234 * Frees a logger | |
| 7440 | 235 * |
| 7431 | 236 * @param logger The logger to free |
| 237 */ | |
| 238 void gaim_log_logger_free(GaimLogLogger *logger); | |
| 7440 | 239 |
| 7431 | 240 /** |
| 241 * Adds a new logger | |
| 242 * | |
| 243 * @param logger The new logger to add | |
| 244 */ | |
| 245 void gaim_log_logger_add (GaimLogLogger *logger); | |
| 246 | |
| 247 /** | |
| 248 * | |
| 249 * Removes a logger | |
| 250 * | |
| 251 * @param logger The logger to remove | |
| 252 */ | |
| 253 void gaim_log_logger_remove (GaimLogLogger *logger); | |
| 254 | |
| 255 /** | |
| 256 * | |
| 257 * Sets the current logger | |
| 258 * | |
| 259 * @param logger The logger to set | |
| 260 */ | |
| 261 void gaim_log_logger_set (GaimLogLogger *logger); | |
| 7440 | 262 |
| 7431 | 263 /** |
| 7440 | 264 * |
| 7431 | 265 * Returns the current logger |
| 266 * | |
| 267 * @return logger The current logger | |
| 268 */ | |
| 269 GaimLogLogger *gaim_log_logger_get (void); | |
| 7440 | 270 |
| 7431 | 271 /** |
| 7440 | 272 * Returns a GList containing the IDs and Names of the registered log |
| 273 * loggers. | |
| 7431 | 274 * |
| 275 * @return The list of IDs and names. | |
| 276 */ | |
| 277 GList *gaim_log_logger_get_options(void); | |
| 278 | |
| 279 void gaim_log_init(void); | |
| 280 /*@}*/ | |
| 281 | |
| 5872 | 282 |
|
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
283 #ifdef __cplusplus |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
284 } |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
285 #endif |
| 7440 | 286 |
| 7431 | 287 #endif /* _GAIM_LOG_H_ */ |
