Sat, 16 Apr 2005 16:53:05 +0000
[gaim-migrate @ 12499]
Fix bug #1083465 - don't automatically add yourself to your buddy list with
the gevolution plugin, this is probably what caused complaint #59 that Ubuntu
interface designer had.
| 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; | |
| 10822 | 37 | typedef struct _GaimLogCommonLoggerData GaimLogCommonLoggerData; |
| 7431 | 38 | |
| 39 | typedef enum { | |
| 40 | GAIM_LOG_IM, | |
| 41 | GAIM_LOG_CHAT, | |
|
10348
0ab5eb1a828e
[gaim-migrate @ 11562]
Mark Doliner <markdoliner@pidgin.im>
parents:
10231
diff
changeset
|
42 | GAIM_LOG_SYSTEM |
| 7431 | 43 | } GaimLogType; |
| 44 | ||
| 45 | typedef enum { | |
|
10348
0ab5eb1a828e
[gaim-migrate @ 11562]
Mark Doliner <markdoliner@pidgin.im>
parents:
10231
diff
changeset
|
46 | GAIM_LOG_READ_NO_NEWLINE = 1 |
| 7431 | 47 | } GaimLogReadFlags; |
| 48 | ||
| 49 | #include "account.h" | |
| 50 | #include "conversation.h" | |
| 51 | ||
| 52 | /** | |
| 53 | * A log logger. | |
| 54 | * | |
| 55 | * This struct gets filled out and is included in the GaimLog. It contains everything | |
| 56 | * needed to write and read from logs. | |
| 57 | */ | |
| 9000 | 58 | /*@{*/ |
| 7431 | 59 | struct _GaimLogLogger { |
| 60 | char *name; /**< The logger's name */ | |
| 61 | char *id; /**< an identifier to refer to this logger */ | |
| 7440 | 62 | |
| 63 | /** This gets called when the log is first created. | |
| 7431 | 64 | I don't think this is actually needed. */ |
|
10812
25c595cbffe8
[gaim-migrate @ 12465]
Richard Laager <rlaager@pidgin.im>
parents:
10566
diff
changeset
|
65 | void (*create)(GaimLog *log); |
| 7440 | 66 | |
| 7431 | 67 | /** This is used to write to the log file */ |
|
10812
25c595cbffe8
[gaim-migrate @ 12465]
Richard Laager <rlaager@pidgin.im>
parents:
10566
diff
changeset
|
68 | void (*write)(GaimLog *log, |
| 7440 | 69 | GaimMessageFlags type, |
| 7431 | 70 | const char *from, |
| 71 | time_t time, | |
| 72 | const char *message); | |
| 73 | ||
| 74 | /** Called when the log is destroyed */ | |
| 75 | void (*finalize)(GaimLog *log); | |
| 7440 | 76 | |
| 7431 | 77 | /** This function returns a sorted GList of available GaimLogs */ |
|
8898
85f5615bc27e
[gaim-migrate @ 9667]
Mark Doliner <markdoliner@pidgin.im>
parents:
8735
diff
changeset
|
78 | GList *(*list)(GaimLogType type, const char *name, GaimAccount *account); |
| 7440 | 79 | |
| 80 | /** Given one of the logs returned by the logger's list function, | |
| 81 | * this returns the contents of the log in GtkIMHtml markup */ | |
| 7431 | 82 | char *(*read)(GaimLog *log, GaimLogReadFlags *flags); |
|
10231
047177cee39f
[gaim-migrate @ 11366]
Andrew Hart <arhart@users.sourceforge.net>
parents:
10171
diff
changeset
|
83 | |
| 7556 | 84 | /** Given one of the logs returned by the logger's list function, |
| 85 | * this returns the size of the log in bytes */ | |
| 86 | int (*size)(GaimLog *log); | |
| 8096 | 87 | |
| 88 | /** Returns the total size of all the logs. If this is undefined a default | |
| 89 | * implementation is used */ | |
|
8898
85f5615bc27e
[gaim-migrate @ 9667]
Mark Doliner <markdoliner@pidgin.im>
parents:
8735
diff
changeset
|
90 | int (*total_size)(GaimLogType type, const char *name, GaimAccount *account); |
| 8573 | 91 | |
| 92 | /** This function returns a sorted GList of available system GaimLogs */ | |
| 93 | GList *(*list_syslog)(GaimAccount *account); | |
| 5872 | 94 | }; |
| 95 | ||
| 7431 | 96 | /** |
| 97 | * A log. Not the wooden type. | |
| 98 | */ | |
| 99 | struct _GaimLog { | |
| 100 | GaimLogType type; /**< The type of log this is */ | |
| 101 | char *name; /**< The name of this log */ | |
| 7440 | 102 | GaimAccount *account; /**< The account this log is taking |
| 103 | place on */ | |
| 104 | time_t time; /**< The time this conversation | |
| 105 | started */ | |
| 106 | GaimLogLogger *logger; /**< The logging mechanism this log | |
| 107 | is to use */ | |
| 7431 | 108 | void *logger_data; /**< Data used by the log logger */ |
| 5872 | 109 | }; |
| 110 | ||
| 10822 | 111 | /** |
| 112 | * A common logger_data struct containing a file handle and path, as well | |
| 113 | * as a pointer to something else for additional data. | |
| 114 | */ | |
| 115 | struct _GaimLogCommonLoggerData { | |
| 116 | char *path; | |
| 117 | FILE *file; | |
| 118 | void *extra_data; | |
| 119 | }; | |
| 7431 | 120 | |
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
121 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
122 | extern "C" { |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
123 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
124 | |
| 10566 | 125 | /***************************************/ |
| 126 | /** @name Log Functions */ | |
| 127 | /***************************************/ | |
| 128 | /*@{*/ | |
| 7440 | 129 | |
| 10566 | 130 | /** |
| 131 | * Creates a new log | |
| 132 | * | |
| 133 | * @param type The type of log this is. | |
| 134 | * @param name The name of this conversation (Screenname, chat name, | |
| 135 | * etc.) | |
| 136 | * @param account The account the conversation is occurring on | |
| 137 | * @param time The time this conversation started | |
| 138 | * @return The new log | |
| 139 | */ | |
| 140 | GaimLog *gaim_log_new(GaimLogType type, const char *name, | |
| 141 | GaimAccount *account, time_t time); | |
| 7431 | 142 | |
| 10566 | 143 | /** |
| 144 | * Frees a log | |
| 145 | * | |
| 146 | * @param log The log to destroy | |
| 147 | */ | |
| 148 | void gaim_log_free(GaimLog *log); | |
| 7440 | 149 | |
| 10566 | 150 | /** |
| 151 | * Writes to a log file. Assumes you have checked preferences already. | |
| 152 | * | |
| 153 | * @param log The log to write to | |
| 154 | * @param type The type of message being logged | |
| 155 | * @param from Whom this message is coming from, or NULL for | |
| 156 | * system messages | |
| 157 | * @param time A timestamp in UNIX time | |
| 158 | * @param message The message to log | |
| 159 | */ | |
| 160 | void gaim_log_write(GaimLog *log, | |
| 161 | GaimMessageFlags type, | |
| 162 | const char *from, | |
| 163 | time_t time, | |
| 164 | const char *message); | |
| 7431 | 165 | |
| 10566 | 166 | /** |
| 167 | * Reads from a log | |
| 168 | * | |
| 169 | * @param log The log to read from | |
| 170 | * @param flags The returned logging flags. | |
| 171 | * | |
| 172 | * @return The contents of this log in Gaim Markup. | |
| 173 | */ | |
| 174 | char *gaim_log_read(GaimLog *log, GaimLogReadFlags *flags); | |
| 7431 | 175 | |
| 10566 | 176 | /** |
| 177 | * Returns a list of all available logs | |
| 178 | * | |
| 179 | * @param type The type of the log | |
| 180 | * @param name The name of the log | |
| 181 | * @param account The account | |
| 182 | * @return A sorted list of GaimLogs | |
| 183 | */ | |
| 184 | GList *gaim_log_get_logs(GaimLogType type, const char *name, GaimAccount *account); | |
| 7440 | 185 | |
| 10566 | 186 | /** |
| 187 | * Returns a list of all available system logs | |
| 188 | * | |
| 189 | * @param account The account | |
| 190 | * @return A sorted list of GaimLogs | |
| 191 | */ | |
| 192 | GList *gaim_log_get_system_logs(GaimAccount *account); | |
| 8573 | 193 | |
| 10566 | 194 | /** |
| 10822 | 195 | * Returns the size of a log |
| 10566 | 196 | * |
| 197 | * @param log The log | |
| 198 | * @return The size of the log, in bytes | |
| 199 | */ | |
| 200 | int gaim_log_get_size(GaimLog *log); | |
| 5872 | 201 | |
| 10566 | 202 | /** |
| 203 | * Returns the size, in bytes, of all available logs in this conversation | |
| 204 | * | |
| 205 | * @param type The type of the log | |
| 206 | * @param name The name of the log | |
| 207 | * @param account The account | |
| 208 | * @return The size in bytes | |
| 209 | */ | |
| 210 | int gaim_log_get_total_size(GaimLogType type, const char *name, GaimAccount *account); | |
| 8573 | 211 | |
| 10566 | 212 | /** |
| 10822 | 213 | * Returns the default logger directory Gaim uses for a given account |
| 214 | * and username. This would be where Gaim stores logs created by | |
| 215 | * the built-in text or HTML loggers. | |
| 216 | * | |
| 217 | * @param type The type of the log. | |
| 218 | * @param name The name of the log. | |
| 219 | * @param account The account. | |
| 220 | * @return The default logger directory for Gaim. | |
| 221 | */ | |
| 222 | char *gaim_log_get_log_dir(GaimLogType type, const char *name, GaimAccount *account); | |
| 223 | ||
| 224 | /** | |
| 10566 | 225 | * Implements GCompareFunc |
| 226 | * | |
| 227 | * @param y A GaimLog | |
| 228 | * @param z Another GaimLog | |
| 229 | * @return A value as specified by GCompareFunc | |
| 230 | */ | |
| 231 | gint gaim_log_compare(gconstpointer y, gconstpointer z); | |
| 232 | /*@}*/ | |
| 8573 | 233 | |
| 10566 | 234 | /******************************************/ |
| 10822 | 235 | /** @name Common Logger Functions */ |
| 236 | /******************************************/ | |
| 237 | /*@{*/ | |
| 238 | ||
| 239 | /** | |
| 240 | * Opens a new log file in the standard Gaim log location | |
| 241 | * with the given file extension, named for the current time, | |
| 242 | * for writing. If a log file is already open, the existing | |
| 243 | * file handle is retained. The log's logger_data value is | |
| 244 | * set to a GaimLogCommonLoggerData struct containing the log | |
| 245 | * file handle and log path. | |
| 246 | * | |
| 247 | * @param log The log to write to. | |
| 248 | * @param time The time of the item being logged. | |
| 249 | * @param ext The file extension to give to this log file. | |
| 250 | */ | |
| 251 | void gaim_log_common_writer(GaimLog *log, time_t time, const char *ext); | |
| 252 | ||
| 253 | /** | |
| 254 | * Returns a sorted GList of GaimLogs of the requested type. | |
| 255 | * This function should only be used with logs that are written | |
| 256 | * with gaim_log_common_writer(). | |
| 257 | * | |
| 258 | * @param type The type of the logs being listed. | |
| 259 | * @param name The name of the log. | |
| 260 | * @param account The account of the log. | |
| 261 | * @param ext The file extension this log format uses. | |
| 262 | * @param logger A reference to the logger struct for this log. | |
| 263 | * | |
| 264 | * @return A sorted GList of GaimLogs matching the parameters. | |
| 265 | */ | |
| 266 | GList *gaim_log_common_lister(GaimLogType type, const char *name, | |
| 267 | GaimAccount *account, const char *ext, | |
| 268 | GaimLogLogger *logger); | |
| 269 | ||
| 270 | /** | |
| 271 | * Returns the size of a given GaimLog. | |
| 272 | * This function should only be used with logs that are written | |
| 273 | * with gaim_log_common_writer(). | |
| 274 | * | |
| 275 | * @param log The GaimLog to size. | |
| 276 | * | |
| 277 | * @return An integer indicating the size of the log in bytes. | |
| 278 | */ | |
| 279 | int gaim_log_common_sizer(GaimLog *log); | |
| 280 | /*@}*/ | |
| 281 | ||
| 282 | /******************************************/ | |
| 10566 | 283 | /** @name Logger Functions */ |
| 284 | /******************************************/ | |
| 285 | /*@{*/ | |
| 7440 | 286 | |
| 10566 | 287 | /** |
| 288 | * Creates a new logger | |
| 289 | * | |
| 290 | * @param create The logger's new function. | |
| 291 | * @param write The logger's write function. | |
| 292 | * @param finalize The logger's finalize function. | |
| 293 | * @param list The logger's list function. | |
| 294 | * @param read The logger's read function. | |
| 295 | * @param size The logger's size function. | |
| 296 | * | |
| 297 | * @return The new logger | |
| 298 | */ | |
| 299 | GaimLogLogger *gaim_log_logger_new( | |
| 300 | void(*create)(GaimLog *), | |
| 301 | void(*write)(GaimLog *, GaimMessageFlags, const char *, time_t, const char *), | |
| 302 | void(*finalize)(GaimLog *), | |
| 303 | GList*(*list)(GaimLogType type, const char*, GaimAccount*), | |
| 304 | char*(*read)(GaimLog*, GaimLogReadFlags*), | |
| 305 | int(*size)(GaimLog*)); | |
| 306 | /** | |
| 307 | * Frees a logger | |
| 308 | * | |
| 309 | * @param logger The logger to free | |
| 310 | */ | |
| 311 | void gaim_log_logger_free(GaimLogLogger *logger); | |
| 7440 | 312 | |
| 10566 | 313 | /** |
| 314 | * Adds a new logger | |
| 315 | * | |
| 316 | * @param logger The new logger to add | |
| 317 | */ | |
| 318 | void gaim_log_logger_add (GaimLogLogger *logger); | |
| 7431 | 319 | |
| 10566 | 320 | /** |
| 321 | * | |
| 322 | * Removes a logger | |
| 323 | * | |
| 324 | * @param logger The logger to remove | |
| 325 | */ | |
| 326 | void gaim_log_logger_remove (GaimLogLogger *logger); | |
| 7431 | 327 | |
| 10566 | 328 | /** |
| 329 | * | |
| 330 | * Sets the current logger | |
| 331 | * | |
| 332 | * @param logger The logger to set | |
| 333 | */ | |
| 334 | void gaim_log_logger_set (GaimLogLogger *logger); | |
| 7440 | 335 | |
| 10566 | 336 | /** |
| 337 | * | |
| 338 | * Returns the current logger | |
| 339 | * | |
| 340 | * @return logger The current logger | |
| 341 | */ | |
| 342 | GaimLogLogger *gaim_log_logger_get (void); | |
| 7440 | 343 | |
| 10566 | 344 | /** |
| 345 | * Returns a GList containing the IDs and Names of the registered log | |
| 346 | * loggers. | |
| 347 | * | |
| 348 | * @return The list of IDs and names. | |
| 349 | */ | |
| 350 | GList *gaim_log_logger_get_options(void); | |
| 7431 | 351 | |
| 10566 | 352 | void gaim_log_init(void); |
| 353 | /*@}*/ | |
| 7431 | 354 | |
| 5872 | 355 | |
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
356 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
357 | } |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5934
diff
changeset
|
358 | #endif |
| 7440 | 359 | |
| 7431 | 360 | #endif /* _GAIM_LOG_H_ */ |