Mercurial > pidgin.yaz
annotate src/log.c @ 11690:872932089400
[gaim-migrate @ 13976]
Removing the a_virgin field from GaimGtkImPane. It's no longer used.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 17 Oct 2005 23:04:59 +0000 |
parents | 8004885fabbe |
children | a647f92e1d57 |
rev | line source |
---|---|
7431 | 1 /** |
2 * @file log.c 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. | |
7436 | 10 * |
7431 | 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 | |
4184 | 24 */ |
4195 | 25 |
7431 | 26 #include "account.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5839
diff
changeset
|
27 #include "debug.h" |
7431 | 28 #include "internal.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5839
diff
changeset
|
29 #include "log.h" |
5548 | 30 #include "prefs.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5839
diff
changeset
|
31 #include "util.h" |
7764 | 32 #include "stringref.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5839
diff
changeset
|
33 |
8096 | 34 static GSList *loggers = NULL; |
35 | |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
36 static GaimLogLogger *html_logger; |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
37 static GaimLogLogger *txt_logger; |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
38 static GaimLogLogger *old_logger; |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5839
diff
changeset
|
39 |
8635 | 40 struct _gaim_logsize_user { |
41 char *name; | |
42 GaimAccount *account; | |
43 }; | |
44 static GHashTable *logsize_users = NULL; | |
45 | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
46 static void log_get_log_sets_common(GHashTable *sets); |
8635 | 47 |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
48 static void html_logger_write(GaimLog *log, GaimMessageFlags type, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
49 const char *from, time_t time, const char *message); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
50 static void html_logger_finalize(GaimLog *log); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
51 static GList *html_logger_list(GaimLogType type, const char *sn, GaimAccount *account); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
52 static GList *html_logger_list_syslog(GaimAccount *account); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
53 static char *html_logger_read(GaimLog *log, GaimLogReadFlags *flags); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
54 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
55 static GList *old_logger_list(GaimLogType type, const char *sn, GaimAccount *account); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
56 static int old_logger_total_size(GaimLogType type, const char *name, GaimAccount *account); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
57 static char * old_logger_read (GaimLog *log, GaimLogReadFlags *flags); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
58 static int old_logger_size (GaimLog *log); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
59 static void old_logger_get_log_sets(GaimLogSetCallback cb, GHashTable *sets); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
60 static void old_logger_finalize(GaimLog *log); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
61 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
62 static void txt_logger_write(GaimLog *log, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
63 GaimMessageFlags type, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
64 const char *from, time_t time, const char *message); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
65 static void txt_logger_finalize(GaimLog *log); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
66 static GList *txt_logger_list(GaimLogType type, const char *sn, GaimAccount *account); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
67 static GList *txt_logger_list_syslog(GaimAccount *account); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
68 static char *txt_logger_read(GaimLog *log, GaimLogReadFlags *flags); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
69 |
7431 | 70 /************************************************************************** |
71 * PUBLIC LOGGING FUNCTIONS *********************************************** | |
72 **************************************************************************/ | |
4184 | 73 |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
74 GaimLog *gaim_log_new(GaimLogType type, const char *name, GaimAccount *account, |
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
75 GaimConversation *conv, time_t time) |
7431 | 76 { |
77 GaimLog *log = g_new0(GaimLog, 1); | |
8635 | 78 log->name = g_strdup(gaim_normalize(account, name)); |
7431 | 79 log->account = account; |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
80 log->conv = conv; |
7431 | 81 log->time = time; |
8573 | 82 log->type = type; |
8096 | 83 log->logger_data = NULL; |
7431 | 84 log->logger = gaim_log_logger_get(); |
7440 | 85 if (log->logger && log->logger->create) |
86 log->logger->create(log); | |
7431 | 87 return log; |
4184 | 88 } |
89 | |
7431 | 90 void gaim_log_free(GaimLog *log) |
4184 | 91 { |
7431 | 92 g_return_if_fail(log); |
93 if (log->logger && log->logger->finalize) | |
94 log->logger->finalize(log); | |
95 g_free(log->name); | |
96 g_free(log); | |
97 } | |
7436 | 98 |
99 void gaim_log_write(GaimLog *log, GaimMessageFlags type, | |
7431 | 100 const char *from, time_t time, const char *message) |
101 { | |
10173 | 102 struct _gaim_logsize_user *lu; |
103 | |
7431 | 104 g_return_if_fail(log); |
105 g_return_if_fail(log->logger); | |
7442 | 106 g_return_if_fail(log->logger->write); |
7431 | 107 |
10171
829a569993e0
[gaim-migrate @ 11263]
Luke Schierer <lschiere@pidgin.im>
parents:
10087
diff
changeset
|
108 (log->logger->write)(log, type, from, time, message); |
829a569993e0
[gaim-migrate @ 11263]
Luke Schierer <lschiere@pidgin.im>
parents:
10087
diff
changeset
|
109 |
829a569993e0
[gaim-migrate @ 11263]
Luke Schierer <lschiere@pidgin.im>
parents:
10087
diff
changeset
|
110 lu = g_new(struct _gaim_logsize_user, 1); |
9892 | 111 |
10171
829a569993e0
[gaim-migrate @ 11263]
Luke Schierer <lschiere@pidgin.im>
parents:
10087
diff
changeset
|
112 lu->name = g_strdup(gaim_normalize(log->account, log->name)); |
829a569993e0
[gaim-migrate @ 11263]
Luke Schierer <lschiere@pidgin.im>
parents:
10087
diff
changeset
|
113 lu->account = log->account; |
829a569993e0
[gaim-migrate @ 11263]
Luke Schierer <lschiere@pidgin.im>
parents:
10087
diff
changeset
|
114 g_hash_table_remove(logsize_users, lu); |
829a569993e0
[gaim-migrate @ 11263]
Luke Schierer <lschiere@pidgin.im>
parents:
10087
diff
changeset
|
115 g_free(lu->name); |
829a569993e0
[gaim-migrate @ 11263]
Luke Schierer <lschiere@pidgin.im>
parents:
10087
diff
changeset
|
116 g_free(lu); |
9892 | 117 |
4184 | 118 } |
119 | |
7431 | 120 char *gaim_log_read(GaimLog *log, GaimLogReadFlags *flags) |
4184 | 121 { |
7542 | 122 GaimLogReadFlags mflags; |
7431 | 123 g_return_val_if_fail(log && log->logger, NULL); |
7462 | 124 if (log->logger->read) { |
7535 | 125 char *ret = (log->logger->read)(log, flags ? flags : &mflags); |
7478
3c21f3084ff0
[gaim-migrate @ 8091]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7473
diff
changeset
|
126 gaim_str_strip_cr(ret); |
7462 | 127 return ret; |
128 } | |
7470 | 129 return (_("<b><font color=\"red\">The logger has no read function</font></b>")); |
4184 | 130 } |
7616 | 131 |
7556 | 132 int gaim_log_get_size(GaimLog *log) |
133 { | |
134 g_return_val_if_fail(log && log->logger, 0); | |
8096 | 135 |
7556 | 136 if (log->logger->size) |
137 return log->logger->size(log); | |
138 return 0; | |
139 } | |
140 | |
8635 | 141 static guint _gaim_logsize_user_hash(struct _gaim_logsize_user *lu) |
142 { | |
143 return g_str_hash(lu->name); | |
144 } | |
145 | |
146 static guint _gaim_logsize_user_equal(struct _gaim_logsize_user *lu1, | |
147 struct _gaim_logsize_user *lu2) | |
148 { | |
149 return ((!strcmp(lu1->name, lu2->name)) && lu1->account == lu2->account); | |
150 } | |
151 | |
152 static void _gaim_logsize_user_free_key(struct _gaim_logsize_user *lu) | |
153 { | |
154 g_free(lu->name); | |
155 g_free(lu); | |
156 } | |
157 | |
8898 | 158 int gaim_log_get_total_size(GaimLogType type, const char *name, GaimAccount *account) |
7556 | 159 { |
9677 | 160 gpointer ptrsize; |
161 int size = 0; | |
8096 | 162 GSList *n; |
8635 | 163 struct _gaim_logsize_user *lu; |
8096 | 164 |
8635 | 165 lu = g_new(struct _gaim_logsize_user, 1); |
166 lu->name = g_strdup(gaim_normalize(account, name)); | |
167 lu->account = account; | |
168 | |
9677 | 169 if(g_hash_table_lookup_extended(logsize_users, lu, NULL, &ptrsize)) { |
170 size = GPOINTER_TO_INT(ptrsize); | |
8635 | 171 g_free(lu->name); |
172 g_free(lu); | |
173 } else { | |
174 for (n = loggers; n; n = n->next) { | |
175 GaimLogLogger *logger = n->data; | |
7616 | 176 |
8635 | 177 if(logger->total_size){ |
8898 | 178 size += (logger->total_size)(type, name, account); |
8635 | 179 } else if(logger->list) { |
8898 | 180 GList *logs = (logger->list)(type, name, account); |
8635 | 181 int this_size = 0; |
182 | |
183 while (logs) { | |
184 GList *logs2 = logs->next; | |
185 GaimLog *log = (GaimLog*)(logs->data); | |
186 this_size += gaim_log_get_size(log); | |
187 gaim_log_free(log); | |
188 g_list_free_1(logs); | |
189 logs = logs2; | |
190 } | |
191 | |
192 size += this_size; | |
8096 | 193 } |
8635 | 194 } |
8096 | 195 |
8635 | 196 g_hash_table_replace(logsize_users, lu, GINT_TO_POINTER(size)); |
7556 | 197 } |
198 return size; | |
199 } | |
4184 | 200 |
10822 | 201 char * |
10577 | 202 gaim_log_get_log_dir(GaimLogType type, const char *name, GaimAccount *account) |
203 { | |
204 GaimPlugin *prpl; | |
205 GaimPluginProtocolInfo *prpl_info; | |
206 const char *prpl_name; | |
207 char *acct_name; | |
9926 | 208 const char *target; |
10577 | 209 char *dir; |
9926 | 210 |
10577 | 211 prpl = gaim_find_prpl(gaim_account_get_protocol_id(account)); |
212 if (!prpl) | |
213 return NULL; | |
214 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
215 prpl_name = prpl_info->list_icon(account, NULL); | |
216 | |
217 acct_name = g_strdup(gaim_escape_filename(gaim_normalize(account, | |
218 gaim_account_get_username(account)))); | |
9923 | 219 |
220 if (type == GAIM_LOG_CHAT) { | |
221 char *temp = g_strdup_printf("%s.chat", gaim_normalize(account, name)); | |
9926 | 222 target = gaim_escape_filename(temp); |
9923 | 223 g_free(temp); |
224 } else if(type == GAIM_LOG_SYSTEM) { | |
9926 | 225 target = ".system"; |
9923 | 226 } else { |
9926 | 227 target = gaim_escape_filename(gaim_normalize(account, name)); |
9923 | 228 } |
229 | |
10577 | 230 dir = g_build_filename(gaim_user_dir(), "logs", prpl_name, acct_name, target, NULL); |
9926 | 231 |
9923 | 232 g_free(acct_name); |
10577 | 233 |
9923 | 234 return dir; |
235 } | |
236 | |
7431 | 237 /**************************************************************************** |
238 * LOGGER FUNCTIONS ********************************************************* | |
239 ****************************************************************************/ | |
4184 | 240 |
7431 | 241 static GaimLogLogger *current_logger = NULL; |
7436 | 242 |
7431 | 243 static void logger_pref_cb(const char *name, GaimPrefType type, |
244 gpointer value, gpointer data) | |
245 { | |
246 GaimLogLogger *logger; | |
247 GSList *l = loggers; | |
248 while (l) { | |
249 logger = l->data; | |
250 if (!strcmp(logger->id, value)) { | |
251 gaim_log_logger_set(logger); | |
252 return; | |
4184 | 253 } |
7431 | 254 l = l->next; |
255 } | |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
256 gaim_log_logger_set(txt_logger); |
7431 | 257 } |
4184 | 258 |
259 | |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
260 GaimLogLogger *gaim_log_logger_new(const char *id, const char *name, int functions, ...) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
261 { |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
262 #if 0 |
8898 | 263 void(*create)(GaimLog *), |
264 void(*write)(GaimLog *, GaimMessageFlags, const char *, time_t, const char *), | |
265 void(*finalize)(GaimLog *), | |
266 GList*(*list)(GaimLogType type, const char*, GaimAccount*), | |
267 char*(*read)(GaimLog*, GaimLogReadFlags*), | |
11025 | 268 int(*size)(GaimLog*), |
269 int(*total_size)(GaimLogType type, const char *name, GaimAccount *account), | |
270 GList*(*list_syslog)(GaimAccount *account), | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
271 void(*get_log_sets)(GaimLogSetCallback cb, GHashTable *sets)) |
7431 | 272 { |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
273 #endif |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
274 GaimLogLogger *logger; |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
275 va_list args; |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
276 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
277 g_return_val_if_fail(id != NULL, NULL); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
278 g_return_val_if_fail(name != NULL, NULL); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
279 g_return_val_if_fail(functions >= 1, NULL); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
280 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
281 logger = g_new0(GaimLogLogger, 1); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
282 logger->id = g_strdup(id); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
283 logger->name = g_strdup(name); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
284 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
285 va_start(args, functions); |
11025 | 286 |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
287 if (functions >= 1) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
288 logger->create = va_arg(args, void *); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
289 if (functions >= 2) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
290 logger->write = va_arg(args, void *); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
291 if (functions >= 3) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
292 logger->finalize = va_arg(args, void *); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
293 if (functions >= 4) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
294 logger->list = va_arg(args, void *); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
295 if (functions >= 5) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
296 logger->read = va_arg(args, void *); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
297 if (functions >= 6) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
298 logger->size = va_arg(args, void *); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
299 if (functions >= 7) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
300 logger->total_size = va_arg(args, void *); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
301 if (functions >= 8) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
302 logger->list_syslog = va_arg(args, void *); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
303 if (functions >= 9) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
304 logger->get_log_sets = va_arg(args, void *); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
305 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
306 if (functions > 9) |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
307 gaim_debug_info("log", "Dropping new functions for logger: %s (%s)\n", name, id); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
308 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
309 va_end(args); |
11025 | 310 |
7431 | 311 return logger; |
4184 | 312 } |
313 | |
7431 | 314 void gaim_log_logger_free(GaimLogLogger *logger) |
4184 | 315 { |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
316 g_free(logger->name); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
317 g_free(logger->id); |
7431 | 318 g_free(logger); |
319 } | |
4184 | 320 |
7431 | 321 void gaim_log_logger_add (GaimLogLogger *logger) |
322 { | |
323 g_return_if_fail(logger); | |
324 if (g_slist_find(loggers, logger)) | |
325 return; | |
326 loggers = g_slist_append(loggers, logger); | |
327 } | |
328 | |
329 void gaim_log_logger_remove (GaimLogLogger *logger) | |
330 { | |
331 g_return_if_fail(logger); | |
332 g_slist_remove(loggers, logger); | |
4184 | 333 } |
334 | |
7431 | 335 void gaim_log_logger_set (GaimLogLogger *logger) |
4184 | 336 { |
7431 | 337 g_return_if_fail(logger); |
338 current_logger = logger; | |
7436 | 339 } |
4184 | 340 |
7431 | 341 GaimLogLogger *gaim_log_logger_get() |
342 { | |
343 return current_logger; | |
344 } | |
4184 | 345 |
7431 | 346 GList *gaim_log_logger_get_options(void) |
347 { | |
348 GSList *n; | |
349 GList *list = NULL; | |
350 GaimLogLogger *data; | |
4184 | 351 |
7431 | 352 for (n = loggers; n; n = n->next) { |
353 data = n->data; | |
354 if (!data->write) | |
355 continue; | |
7494 | 356 list = g_list_append(list, _(data->name)); |
7431 | 357 list = g_list_append(list, data->id); |
4184 | 358 } |
359 | |
7431 | 360 return list; |
361 } | |
362 | |
8573 | 363 gint gaim_log_compare(gconstpointer y, gconstpointer z) |
7431 | 364 { |
7436 | 365 const GaimLog *a = y; |
366 const GaimLog *b = z; | |
367 | |
7431 | 368 return b->time - a->time; |
369 } | |
370 | |
8898 | 371 GList *gaim_log_get_logs(GaimLogType type, const char *name, GaimAccount *account) |
7431 | 372 { |
373 GList *logs = NULL; | |
374 GSList *n; | |
375 for (n = loggers; n; n = n->next) { | |
376 GaimLogLogger *logger = n->data; | |
377 if (!logger->list) | |
378 continue; | |
8898 | 379 logs = g_list_concat(logs, logger->list(type, name, account)); |
7431 | 380 } |
7436 | 381 |
8573 | 382 return g_list_sort(logs, gaim_log_compare); |
383 } | |
384 | |
11025 | 385 gint gaim_log_set_compare(gconstpointer y, gconstpointer z) |
386 { | |
387 const GaimLogSet *a = y; | |
388 const GaimLogSet *b = z; | |
389 gint ret = 0; | |
390 | |
391 /* This logic seems weird at first... | |
392 * If either account is NULL, we pretend the accounts are | |
393 * equal. This allows us to detect duplicates that will | |
394 * exist if one logger knows the account and another | |
395 * doesn't. */ | |
396 if (a->account != NULL && b->account != NULL) { | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
397 ret = strcmp(gaim_account_get_username(a->account), gaim_account_get_username(b->account)); |
11025 | 398 if (ret != 0) |
399 return ret; | |
400 } | |
401 | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
402 ret = strcmp(a->normalized_name, b->normalized_name); |
11025 | 403 if (ret != 0) |
404 return ret; | |
405 | |
406 return (gint)b->type - (gint)a->type; | |
407 } | |
408 | |
11677 | 409 static guint |
410 log_set_hash(gconstpointer key) | |
11025 | 411 { |
412 const GaimLogSet *set = key; | |
413 | |
414 /* The account isn't hashed because we need GaimLogSets with NULL accounts | |
415 * to be found when we search by a GaimLogSet that has a non-NULL account | |
416 * but the same type and name. */ | |
417 return g_int_hash((gint *)&set->type) + g_str_hash(set->name); | |
418 } | |
419 | |
11677 | 420 static gboolean |
421 log_set_equal(gconstpointer a, gconstpointer b) | |
11025 | 422 { |
423 /* I realize that the choices made for GList and GHashTable | |
424 * make sense for those data types, but I wish the comparison | |
425 * functions were compatible. */ | |
426 return !gaim_log_set_compare(a, b); | |
427 } | |
428 | |
11677 | 429 static void |
430 log_add_log_set_to_hash(GHashTable *sets, GaimLogSet *set) | |
11025 | 431 { |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
432 GaimLogSet *existing_set = g_hash_table_lookup(sets, set); |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
433 |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
434 if (existing_set == NULL) |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
435 g_hash_table_insert(sets, set, set); |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
436 else if (existing_set->account == NULL && set->account != NULL) |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
437 g_hash_table_replace(sets, set, set); |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
438 else |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
439 gaim_log_set_free(set); |
11025 | 440 } |
441 | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
442 GHashTable *gaim_log_get_log_sets(void) |
11025 | 443 { |
444 GSList *n; | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
445 GHashTable *sets = g_hash_table_new_full(log_set_hash, log_set_equal, |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
446 (GDestroyNotify)gaim_log_set_free, NULL); |
11025 | 447 |
448 /* Get the log sets from all the loggers. */ | |
449 for (n = loggers; n; n = n->next) { | |
450 GaimLogLogger *logger = n->data; | |
451 | |
452 if (!logger->get_log_sets) | |
453 continue; | |
454 | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
455 logger->get_log_sets(log_add_log_set_to_hash, sets); |
11025 | 456 } |
457 | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
458 log_get_log_sets_common(sets); |
11025 | 459 |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
460 /* Return the GHashTable of unique GaimLogSets. */ |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
461 return sets; |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
462 } |
11025 | 463 |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
464 void gaim_log_set_free(GaimLogSet *set) |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
465 { |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
466 g_return_if_fail(set != NULL); |
11025 | 467 |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
468 g_free(set->name); |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
469 if (set->normalized_name != set->name) |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
470 g_free(set->normalized_name); |
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
471 g_free(set); |
11025 | 472 } |
473 | |
8573 | 474 GList *gaim_log_get_system_logs(GaimAccount *account) |
475 { | |
476 GList *logs = NULL; | |
477 GSList *n; | |
478 for (n = loggers; n; n = n->next) { | |
479 GaimLogLogger *logger = n->data; | |
480 if (!logger->list_syslog) | |
481 continue; | |
482 logs = g_list_concat(logs, logger->list_syslog(account)); | |
483 } | |
484 | |
485 return g_list_sort(logs, gaim_log_compare); | |
7431 | 486 } |
487 | |
488 void gaim_log_init(void) | |
7436 | 489 { |
7431 | 490 gaim_prefs_add_none("/core/logging"); |
7555 | 491 gaim_prefs_add_bool("/core/logging/log_ims", FALSE); |
492 gaim_prefs_add_bool("/core/logging/log_chats", FALSE); | |
8573 | 493 gaim_prefs_add_bool("/core/logging/log_system", FALSE); |
494 gaim_prefs_add_bool("/core/logging/log_signon_signoff", FALSE); | |
495 gaim_prefs_add_bool("/core/logging/log_idle_state", FALSE); | |
496 gaim_prefs_add_bool("/core/logging/log_away_state", FALSE); | |
497 gaim_prefs_add_bool("/core/logging/log_own_states", FALSE); | |
498 | |
7431 | 499 gaim_prefs_add_string("/core/logging/format", "txt"); |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
500 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
501 html_logger = gaim_log_logger_new("html", "HTML", 8, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
502 NULL, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
503 html_logger_write, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
504 html_logger_finalize, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
505 html_logger_list, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
506 html_logger_read, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
507 gaim_log_common_sizer, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
508 NULL, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
509 html_logger_list_syslog); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
510 gaim_log_logger_add(html_logger); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
511 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
512 txt_logger = gaim_log_logger_new("txt", "Plain text", 8, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
513 NULL, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
514 txt_logger_write, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
515 txt_logger_finalize, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
516 txt_logger_list, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
517 txt_logger_read, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
518 gaim_log_common_sizer, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
519 NULL, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
520 txt_logger_list_syslog); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
521 gaim_log_logger_add(txt_logger); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
522 |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
523 old_logger = gaim_log_logger_new("old", "Old Gaim", 9, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
524 NULL, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
525 NULL, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
526 old_logger_finalize, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
527 old_logger_list, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
528 old_logger_read, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
529 old_logger_size, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
530 old_logger_total_size, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
531 NULL, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
532 old_logger_get_log_sets); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
533 gaim_log_logger_add(old_logger); |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
534 |
10087 | 535 gaim_prefs_connect_callback(NULL, "/core/logging/format", |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
536 logger_pref_cb, NULL); |
7431 | 537 gaim_prefs_trigger_callback("/core/logging/format"); |
8635 | 538 |
539 logsize_users = g_hash_table_new_full((GHashFunc)_gaim_logsize_user_hash, | |
540 (GEqualFunc)_gaim_logsize_user_equal, | |
541 (GDestroyNotify)_gaim_logsize_user_free_key, NULL); | |
7431 | 542 } |
543 | |
544 /**************************************************************************** | |
545 * LOGGERS ****************************************************************** | |
546 ****************************************************************************/ | |
547 | |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
548 void gaim_log_common_writer(GaimLog *log, const char *ext) |
9763 | 549 { |
550 char date[64]; | |
10822 | 551 GaimLogCommonLoggerData *data = log->logger_data; |
9763 | 552 |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
553 if (data == NULL) |
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
554 { |
9763 | 555 /* This log is new */ |
9923 | 556 char *dir, *filename, *path; |
10577 | 557 |
9923 | 558 dir = gaim_log_get_log_dir(log->type, log->name, log->account); |
10577 | 559 if (dir == NULL) |
560 return; | |
561 | |
9923 | 562 gaim_build_dir (dir, S_IRUSR | S_IWUSR | S_IXUSR); |
9763 | 563 |
564 strftime(date, sizeof(date), "%Y-%m-%d.%H%M%S", localtime(&log->time)); | |
565 | |
566 filename = g_strdup_printf("%s%s", date, ext ? ext : ""); | |
567 | |
568 path = g_build_filename(dir, filename, NULL); | |
569 g_free(dir); | |
570 g_free(filename); | |
571 | |
10822 | 572 log->logger_data = data = g_new0(GaimLogCommonLoggerData, 1); |
9763 | 573 |
10589
0f7452b1f777
[gaim-migrate @ 11994]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10577
diff
changeset
|
574 data->file = g_fopen(path, "a"); |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
575 if (data->file == NULL) |
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
576 { |
9763 | 577 gaim_debug(GAIM_DEBUG_ERROR, "log", |
9892 | 578 "Could not create log file %s\n", path); |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
579 |
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
580 if (log->conv != NULL) |
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
581 gaim_conversation_write(log->conv, NULL, _("Logging of this conversation failed."), |
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
582 GAIM_MESSAGE_ERROR, time(NULL)); |
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
583 |
9763 | 584 g_free(path); |
585 return; | |
586 } | |
587 g_free(path); | |
10577 | 588 } |
9763 | 589 } |
590 | |
10822 | 591 GList *gaim_log_common_lister(GaimLogType type, const char *name, GaimAccount *account, const char *ext, GaimLogLogger *logger) |
7431 | 592 { |
593 GDir *dir; | |
594 GList *list = NULL; | |
7628 | 595 const char *filename; |
8111 | 596 char *path; |
597 | |
598 if(!account) | |
599 return NULL; | |
600 | |
9923 | 601 path = gaim_log_get_log_dir(type, name, account); |
10577 | 602 if (path == NULL) |
603 return NULL; | |
7447 | 604 |
7431 | 605 if (!(dir = g_dir_open(path, 0, NULL))) { |
606 g_free(path); | |
607 return NULL; | |
608 } | |
8898 | 609 |
7431 | 610 while ((filename = g_dir_read_name(dir))) { |
8577 | 611 if (gaim_str_has_suffix(filename, ext) && |
612 strlen(filename) == 17 + strlen(ext)) { | |
7431 | 613 GaimLog *log; |
10822 | 614 GaimLogCommonLoggerData *data; |
8577 | 615 time_t stamp = gaim_str_to_time(filename, FALSE); |
7431 | 616 |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
617 log = gaim_log_new(type, name, account, NULL, stamp); |
7431 | 618 log->logger = logger; |
10822 | 619 log->logger_data = data = g_new0(GaimLogCommonLoggerData, 1); |
7616 | 620 data->path = g_build_filename(path, filename, NULL); |
7431 | 621 list = g_list_append(list, log); |
4184 | 622 } |
623 } | |
7431 | 624 g_dir_close(dir); |
7447 | 625 g_free(path); |
7431 | 626 return list; |
627 } | |
4184 | 628 |
10822 | 629 int gaim_log_common_sizer(GaimLog *log) |
7556 | 630 { |
631 struct stat st; | |
10822 | 632 GaimLogCommonLoggerData *data = log->logger_data; |
7556 | 633 |
10589
0f7452b1f777
[gaim-migrate @ 11994]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10577
diff
changeset
|
634 if (!data->path || g_stat(data->path, &st)) |
7556 | 635 st.st_size = 0; |
636 | |
637 return st.st_size; | |
638 } | |
639 | |
11025 | 640 /* This will build log sets for all loggers that use the common logger |
641 * functions because they use the same directory structure. */ | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
642 static void log_get_log_sets_common(GHashTable *sets) |
11025 | 643 { |
644 gchar *log_path = g_build_filename(gaim_user_dir(), "logs", NULL); | |
645 GDir *log_dir = g_dir_open(log_path, 0, NULL); | |
646 const gchar *protocol; | |
647 | |
648 if (log_dir == NULL) { | |
649 g_free(log_path); | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
650 return; |
11025 | 651 } |
652 | |
653 while ((protocol = g_dir_read_name(log_dir)) != NULL) { | |
654 gchar *protocol_path = g_build_filename(log_path, protocol, NULL); | |
655 GDir *protocol_dir; | |
656 const gchar *username; | |
657 gchar *protocol_unescaped; | |
658 GList *account_iter; | |
659 GList *accounts = NULL; | |
660 | |
661 if ((protocol_dir = g_dir_open(protocol_path, 0, NULL)) == NULL) { | |
662 g_free(protocol_path); | |
663 continue; | |
664 } | |
665 | |
666 /* Using g_strdup() to cover the one-in-a-million chance that a | |
667 * prpl's list_icon function uses gaim_unescape_filename(). */ | |
668 protocol_unescaped = g_strdup(gaim_unescape_filename(protocol)); | |
669 | |
670 /* Find all the accounts for protocol. */ | |
671 for (account_iter = gaim_accounts_get_all() ; account_iter != NULL ; account_iter = account_iter->next) { | |
672 GaimPlugin *prpl; | |
673 GaimPluginProtocolInfo *prpl_info; | |
674 | |
675 prpl = gaim_find_prpl(gaim_account_get_protocol_id((GaimAccount *)account_iter->data)); | |
676 if (!prpl) | |
677 continue; | |
678 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(prpl); | |
679 | |
680 if (!strcmp(protocol_unescaped, prpl_info->list_icon((GaimAccount *)account_iter->data, NULL))) | |
681 accounts = g_list_append(accounts, account_iter->data); | |
682 } | |
683 g_free(protocol_unescaped); | |
684 | |
685 while ((username = g_dir_read_name(protocol_dir)) != NULL) { | |
686 gchar *username_path = g_build_filename(protocol_path, username, NULL); | |
687 GDir *username_dir; | |
688 const gchar *username_unescaped; | |
689 GaimAccount *account = NULL; | |
690 gchar *name; | |
691 | |
692 if ((username_dir = g_dir_open(username_path, 0, NULL)) == NULL) { | |
693 g_free(username_path); | |
694 continue; | |
695 } | |
696 | |
697 /* Find the account for username in the list of accounts for protocol. */ | |
698 username_unescaped = gaim_unescape_filename(username); | |
699 for (account_iter = g_list_first(accounts) ; account_iter != NULL ; account_iter = account_iter->next) { | |
700 if (!strcmp(((GaimAccount *)account_iter->data)->username, username_unescaped)) { | |
701 account = account_iter->data; | |
702 break; | |
703 } | |
704 } | |
705 | |
706 /* Don't worry about the cast, name will point to dynamically allocated memory shortly. */ | |
707 while ((name = (gchar *)g_dir_read_name(username_dir)) != NULL) { | |
708 size_t len; | |
709 GaimLogSet *set = g_new0(GaimLogSet, 1); | |
710 | |
711 /* Unescape the filename. */ | |
712 name = g_strdup(gaim_unescape_filename(name)); | |
713 | |
714 /* Get the (possibly new) length of name. */ | |
715 len = strlen(name); | |
716 | |
717 set->account = account; | |
718 set->name = name; | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
719 set->normalized_name = g_strdup(gaim_normalize(account, name)); |
11025 | 720 |
721 /* Chat for .chat or .system at the end of the name to determine the type. */ | |
722 set->type = GAIM_LOG_IM; | |
723 if (len > 7) { | |
724 gchar *tmp = &name[len - 7]; | |
725 if (!strcmp(tmp, ".system")) { | |
726 set->type = GAIM_LOG_SYSTEM; | |
727 *tmp = '\0'; | |
728 } | |
729 } | |
730 if (len > 5) { | |
731 gchar *tmp = &name[len - 5]; | |
732 if (!strcmp(tmp, ".chat")) { | |
733 set->type = GAIM_LOG_CHAT; | |
734 *tmp = '\0'; | |
735 } | |
736 } | |
737 | |
738 /* Determine if this (account, name) combination exists as a buddy. */ | |
11458
4db38b374d3f
[gaim-migrate @ 13697]
Richard Laager <rlaager@wiktel.com>
parents:
11292
diff
changeset
|
739 if (account != NULL) |
4db38b374d3f
[gaim-migrate @ 13697]
Richard Laager <rlaager@wiktel.com>
parents:
11292
diff
changeset
|
740 set->buddy = (gaim_find_buddy(account, name) != NULL); |
11025 | 741 |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
742 log_add_log_set_to_hash(sets, set); |
11025 | 743 } |
744 g_free(username_path); | |
745 g_dir_close(username_dir); | |
746 } | |
747 g_free(protocol_path); | |
748 g_dir_close(protocol_dir); | |
749 } | |
750 g_free(log_path); | |
751 g_dir_close(log_dir); | |
752 } | |
753 | |
7431 | 754 #if 0 /* Maybe some other time. */ |
7443 | 755 /**************** |
7431 | 756 ** XML LOGGER ** |
757 ****************/ | |
758 | |
759 static const char *str_from_msg_type (GaimMessageFlags type) | |
760 { | |
7443 | 761 |
7431 | 762 return ""; |
7443 | 763 |
7431 | 764 } |
765 | |
7443 | 766 static void xml_logger_write(GaimLog *log, |
767 GaimMessageFlags type, | |
7431 | 768 const char *from, time_t time, const char *message) |
769 { | |
770 char date[64]; | |
771 char *xhtml = NULL; | |
10577 | 772 |
7431 | 773 if (!log->logger_data) { |
774 /* This log is new. We could use the loggers 'new' function, but | |
775 * creating a new file there would result in empty files in the case | |
776 * that you open a convo with someone, but don't say anything. | |
777 */ | |
9923 | 778 char *dir = gaim_log_get_log_dir(log->type, log->name, log->account); |
7431 | 779 FILE *file; |
10577 | 780 |
781 if (dir == NULL) | |
782 return; | |
783 | |
7453 | 784 strftime(date, sizeof(date), "%Y-%m-%d.%H%M%S.xml", localtime(&log->time)); |
7443 | 785 |
7612 | 786 gaim_build_dir (dir, S_IRUSR | S_IWUSR | S_IXUSR); |
7443 | 787 |
7431 | 788 char *filename = g_build_filename(dir, date, NULL); |
789 g_free(dir); | |
7443 | 790 |
10589
0f7452b1f777
[gaim-migrate @ 11994]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10577
diff
changeset
|
791 log->logger_data = g_fopen(filename, "a"); |
7431 | 792 if (!log->logger_data) { |
793 gaim_debug(GAIM_DEBUG_ERROR, "log", "Could not create log file %s\n", filename); | |
7564 | 794 g_free(filename); |
7431 | 795 return; |
796 } | |
7564 | 797 g_free(filename); |
7431 | 798 fprintf(log->logger_data, "<?xml version='1.0' encoding='UTF-8' ?>\n" |
799 "<?xml-stylesheet href='file:///usr/src/web/htdocs/log-stylesheet.xsl' type='text/xml' ?>\n"); | |
7443 | 800 |
7453 | 801 strftime(date, sizeof(date), "%Y-%m-%d %H:%M:%S", localtime(&log->time)); |
7431 | 802 fprintf(log->logger_data, "<conversation time='%s' screenname='%s' protocol='%s'>\n", |
803 date, log->name, prpl); | |
804 } | |
7443 | 805 |
9923 | 806 /* if we can't write to the file, give up before we hurt ourselves */ |
807 if(!data->file) | |
808 return; | |
809 | |
7453 | 810 strftime(date, sizeof(date), "%H:%M:%S", localtime(&time)); |
7431 | 811 gaim_markup_html_to_xhtml(message, &xhtml, NULL); |
812 if (from) | |
7443 | 813 fprintf(log->logger_data, "<message %s %s from='%s' time='%s'>%s</message>\n", |
814 str_from_msg_type(type), | |
7431 | 815 type & GAIM_MESSAGE_SEND ? "direction='sent'" : |
816 type & GAIM_MESSAGE_RECV ? "direction='received'" : "", | |
817 from, date, xhtml); | |
818 else | |
7443 | 819 fprintf(log->logger_data, "<message %s %s time='%s'>%s</message>\n", |
820 str_from_msg_type(type), | |
7431 | 821 type & GAIM_MESSAGE_SEND ? "direction='sent'" : |
822 type & GAIM_MESSAGE_RECV ? "direction='received'" : "", | |
7443 | 823 date, xhtml): |
7431 | 824 fflush(log->logger_data); |
825 g_free(xhtml); | |
7443 | 826 } |
827 | |
7431 | 828 static void xml_logger_finalize(GaimLog *log) |
829 { | |
830 if (log->logger_data) { | |
831 fprintf(log->logger_data, "</conversation>\n"); | |
832 fclose(log->logger_data); | |
833 log->logger_data = NULL; | |
834 } | |
835 } | |
7443 | 836 |
8898 | 837 static GList *xml_logger_list(GaimLogType type, const char *sn, GaimAccount *account) |
7431 | 838 { |
10822 | 839 return gaim_log_common_lister(type, sn, account, ".xml", &xml_logger); |
4184 | 840 } |
841 | |
7431 | 842 static GaimLogLogger xml_logger = { |
843 N_("XML"), "xml", | |
844 NULL, | |
845 xml_logger_write, | |
846 xml_logger_finalize, | |
847 xml_logger_list, | |
8096 | 848 NULL, |
11025 | 849 NULL, |
7431 | 850 NULL |
851 }; | |
852 #endif | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5560
diff
changeset
|
853 |
7431 | 854 /**************************** |
7457 | 855 ** HTML LOGGER ************* |
856 ****************************/ | |
857 | |
858 static void html_logger_write(GaimLog *log, GaimMessageFlags type, | |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
859 const char *from, time_t time, const char *message) |
7457 | 860 { |
9763 | 861 char *msg_fixed; |
7457 | 862 char date[64]; |
9613 | 863 GaimPlugin *plugin = gaim_find_prpl(gaim_account_get_protocol_id(log->account)); |
10822 | 864 GaimLogCommonLoggerData *data = log->logger_data; |
9613 | 865 |
7618 | 866 if(!data) { |
9763 | 867 const char *prpl = |
868 GAIM_PLUGIN_PROTOCOL_INFO(plugin)->list_icon(log->account, NULL); | |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
869 gaim_log_common_writer(log, ".html"); |
7457 | 870 |
9763 | 871 data = log->logger_data; |
7457 | 872 |
9763 | 873 /* if we can't write to the file, give up before we hurt ourselves */ |
874 if(!data->file) | |
875 return; | |
7616 | 876 |
7457 | 877 strftime(date, sizeof(date), "%Y-%m-%d %H:%M:%S", localtime(&log->time)); |
11092
68652f4ad6a7
[gaim-migrate @ 13115]
Richard Laager <rlaager@wiktel.com>
parents:
11033
diff
changeset
|
878 fprintf(data->file, "<html><head>"); |
11094
59a1ff5a4bae
[gaim-migrate @ 13119]
Richard Laager <rlaager@wiktel.com>
parents:
11092
diff
changeset
|
879 fprintf(data->file, "<meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">"); |
11092
68652f4ad6a7
[gaim-migrate @ 13115]
Richard Laager <rlaager@wiktel.com>
parents:
11033
diff
changeset
|
880 fprintf(data->file, "<title>"); |
7616 | 881 fprintf(data->file, "Conversation with %s at %s on %s (%s)", |
7457 | 882 log->name, date, gaim_account_get_username(log->account), prpl); |
7616 | 883 fprintf(data->file, "</title></head><body>"); |
884 fprintf(data->file, | |
7457 | 885 "<h3>Conversation with %s at %s on %s (%s)</h3>\n", |
886 log->name, date, gaim_account_get_username(log->account), prpl); | |
9763 | 887 |
7457 | 888 } |
7623 | 889 |
9892 | 890 /* if we can't write to the file, give up before we hurt ourselves */ |
891 if(!data->file) | |
892 return; | |
893 | |
7882 | 894 gaim_markup_html_to_xhtml(message, &msg_fixed, NULL); |
895 | |
8577 | 896 if(log->type == GAIM_LOG_SYSTEM){ |
9592 | 897 strftime(date, sizeof(date), "%Y-%m-%d %H:%M:%S", localtime(&time)); |
8577 | 898 fprintf(data->file, "---- %s @ %s ----<br/>\n", msg_fixed, date); |
899 } else { | |
900 strftime(date, sizeof(date), "%H:%M:%S", localtime(&time)); | |
901 if (type & GAIM_MESSAGE_SYSTEM) | |
902 fprintf(data->file, "<font size=\"2\">(%s)</font><b> %s</b><br/>\n", date, msg_fixed); | |
903 else if (type & GAIM_MESSAGE_WHISPER) | |
904 fprintf(data->file, "<font color=\"#6C2585\"><font size=\"2\">(%s)</font><b> %s:</b></font> %s<br/>\n", | |
905 date, from, msg_fixed); | |
906 else if (type & GAIM_MESSAGE_AUTO_RESP) { | |
907 if (type & GAIM_MESSAGE_SEND) | |
908 fprintf(data->file, _("<font color=\"#16569E\"><font size=\"2\">(%s)</font> <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n"), date, from, msg_fixed); | |
909 else if (type & GAIM_MESSAGE_RECV) | |
910 fprintf(data->file, _("<font color=\"#A82F2F\"><font size=\"2\">(%s)</font> <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n"), date, from, msg_fixed); | |
911 } else if (type & GAIM_MESSAGE_RECV) { | |
912 if(gaim_message_meify(msg_fixed, -1)) | |
10735
a0edd89ddb83
[gaim-migrate @ 12337]
Luke Schierer <lschiere@pidgin.im>
parents:
10732
diff
changeset
|
913 fprintf(data->file, "<font color=\"#062585\"><font size=\"2\">(%s)</font> <b>***%s</b></font> %s<br/>\n", |
10645 | 914 date, from, msg_fixed); |
8577 | 915 else |
10645 | 916 fprintf(data->file, "<font color=\"#A82F2F\"><font size=\"2\">(%s)</font> <b>%s:</b></font> %s<br/>\n", |
917 date, from, msg_fixed); | |
8577 | 918 } else if (type & GAIM_MESSAGE_SEND) { |
919 if(gaim_message_meify(msg_fixed, -1)) | |
10735
a0edd89ddb83
[gaim-migrate @ 12337]
Luke Schierer <lschiere@pidgin.im>
parents:
10732
diff
changeset
|
920 fprintf(data->file, "<font color=\"#062585\"><font size=\"2\">(%s)</font> <b>***%s</b></font> %s<br/>\n", |
10645 | 921 date, from, msg_fixed); |
8577 | 922 else |
10645 | 923 fprintf(data->file, "<font color=\"#16569E\"><font size=\"2\">(%s)</font> <b>%s:</b></font> %s<br/>\n", |
924 date, from, msg_fixed); | |
8577 | 925 } |
7564 | 926 } |
8573 | 927 |
7882 | 928 g_free(msg_fixed); |
7616 | 929 fflush(data->file); |
7457 | 930 } |
931 | |
932 static void html_logger_finalize(GaimLog *log) | |
933 { | |
10822 | 934 GaimLogCommonLoggerData *data = log->logger_data; |
7616 | 935 if (data) { |
936 if(data->file) { | |
937 fprintf(data->file, "</body></html>"); | |
938 fclose(data->file); | |
939 } | |
940 g_free(data->path); | |
7752 | 941 g_free(data); |
7463 | 942 } |
7457 | 943 } |
944 | |
8898 | 945 static GList *html_logger_list(GaimLogType type, const char *sn, GaimAccount *account) |
7457 | 946 { |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
947 return gaim_log_common_lister(type, sn, account, ".html", html_logger); |
7457 | 948 } |
949 | |
8573 | 950 static GList *html_logger_list_syslog(GaimAccount *account) |
951 { | |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
952 return gaim_log_common_lister(GAIM_LOG_SYSTEM, ".system", account, ".html", html_logger); |
8573 | 953 } |
954 | |
7457 | 955 static char *html_logger_read(GaimLog *log, GaimLogReadFlags *flags) |
956 { | |
957 char *read, *minus_header; | |
10822 | 958 GaimLogCommonLoggerData *data = log->logger_data; |
7457 | 959 *flags = GAIM_LOG_READ_NO_NEWLINE; |
7616 | 960 if (!data || !data->path) |
961 return g_strdup(_("<font color=\"red\"><b>Unable to find log path!</b></font>")); | |
962 if (g_file_get_contents(data->path, &read, NULL, NULL)) { | |
7457 | 963 minus_header = strchr(read, '\n'); |
964 if (!minus_header) | |
965 minus_header = g_strdup(read); | |
966 else | |
967 minus_header = g_strdup(minus_header + 1); | |
968 g_free(read); | |
969 return minus_header; | |
970 } | |
8578 | 971 return g_strdup_printf(_("<font color=\"red\"><b>Could not read file: %s</b></font>"), data->path); |
7457 | 972 } |
973 | |
974 | |
975 | |
976 /**************************** | |
7431 | 977 ** PLAIN TEXT LOGGER ******* |
978 ****************************/ | |
4184 | 979 |
7436 | 980 static void txt_logger_write(GaimLog *log, |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
981 GaimMessageFlags type, |
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
982 const char *from, time_t time, const char *message) |
7431 | 983 { |
984 char date[64]; | |
9763 | 985 GaimPlugin *plugin = gaim_find_prpl(gaim_account_get_protocol_id(log->account)); |
10822 | 986 GaimLogCommonLoggerData *data = log->logger_data; |
9763 | 987 char *stripped = NULL; |
988 | |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
989 if (data == NULL) { |
7431 | 990 /* This log is new. We could use the loggers 'new' function, but |
991 * creating a new file there would result in empty files in the case | |
992 * that you open a convo with someone, but don't say anything. | |
993 */ | |
9763 | 994 const char *prpl = |
995 GAIM_PLUGIN_PROTOCOL_INFO(plugin)->list_icon(log->account, NULL); | |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
996 gaim_log_common_writer(log, ".txt"); |
8898 | 997 |
9763 | 998 data = log->logger_data; |
7436 | 999 |
9763 | 1000 /* if we can't write to the file, give up before we hurt ourselves */ |
1001 if(!data->file) | |
1002 return; | |
7616 | 1003 |
7453 | 1004 strftime(date, sizeof(date), "%Y-%m-%d %H:%M:%S", localtime(&log->time)); |
7616 | 1005 fprintf(data->file, "Conversation with %s at %s on %s (%s)\n", |
7431 | 1006 log->name, date, gaim_account_get_username(log->account), prpl); |
1007 } | |
7436 | 1008 |
7623 | 1009 /* if we can't write to the file, give up before we hurt ourselves */ |
1010 if(!data->file) | |
1011 return; | |
1012 | |
8573 | 1013 stripped = gaim_markup_strip_html(message); |
1014 | |
1015 if(log->type == GAIM_LOG_SYSTEM){ | |
9592 | 1016 strftime(date, sizeof(date), "%Y-%m-%d %H:%M:%S", localtime(&time)); |
8573 | 1017 fprintf(data->file, "---- %s @ %s ----\n", stripped, date); |
1018 } else { | |
1019 strftime(date, sizeof(date), "%H:%M:%S", localtime(&time)); | |
1020 if (type & GAIM_MESSAGE_SEND || | |
1021 type & GAIM_MESSAGE_RECV) { | |
1022 if (type & GAIM_MESSAGE_AUTO_RESP) { | |
1023 fprintf(data->file, _("(%s) %s <AUTO-REPLY>: %s\n"), date, | |
1024 from, stripped); | |
1025 } else { | |
1026 if(gaim_message_meify(stripped, -1)) | |
1027 fprintf(data->file, "(%s) ***%s %s\n", date, from, | |
1028 stripped); | |
1029 else | |
1030 fprintf(data->file, "(%s) %s: %s\n", date, from, | |
1031 stripped); | |
1032 } | |
1033 } else if (type & GAIM_MESSAGE_SYSTEM) | |
1034 fprintf(data->file, "(%s) %s\n", date, stripped); | |
1035 else if (type & GAIM_MESSAGE_NO_LOG) { | |
1036 /* This shouldn't happen */ | |
1037 g_free(stripped); | |
1038 return; | |
1039 } else if (type & GAIM_MESSAGE_WHISPER) | |
1040 fprintf(data->file, "(%s) *%s* %s", date, from, stripped); | |
1041 else | |
1042 fprintf(data->file, "(%s) %s%s %s\n", date, from ? from : "", | |
1043 from ? ":" : "", stripped); | |
1044 } | |
1045 | |
1046 fflush(data->file); | |
1047 g_free(stripped); | |
7431 | 1048 } |
1049 | |
1050 static void txt_logger_finalize(GaimLog *log) | |
1051 { | |
10822 | 1052 GaimLogCommonLoggerData *data = log->logger_data; |
7616 | 1053 if (data) { |
1054 if(data->file) | |
1055 fclose(data->file); | |
1056 if(data->path) | |
1057 g_free(data->path); | |
7752 | 1058 g_free(data); |
7616 | 1059 } |
7431 | 1060 } |
1061 | |
8898 | 1062 static GList *txt_logger_list(GaimLogType type, const char *sn, GaimAccount *account) |
7431 | 1063 { |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
1064 return gaim_log_common_lister(type, sn, account, ".txt", txt_logger); |
7431 | 1065 } |
1066 | |
8573 | 1067 static GList *txt_logger_list_syslog(GaimAccount *account) |
1068 { | |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
1069 return gaim_log_common_lister(GAIM_LOG_SYSTEM, ".system", account, ".txt", txt_logger); |
8573 | 1070 } |
1071 | |
7431 | 1072 static char *txt_logger_read(GaimLog *log, GaimLogReadFlags *flags) |
1073 { | |
8517 | 1074 char *read, *minus_header, *minus_header2; |
10822 | 1075 GaimLogCommonLoggerData *data = log->logger_data; |
7457 | 1076 *flags = 0; |
7616 | 1077 if (!data || !data->path) |
1078 return g_strdup(_("<font color=\"red\"><b>Unable to find log path!</b></font>")); | |
1079 if (g_file_get_contents(data->path, &read, NULL, NULL)) { | |
7431 | 1080 minus_header = strchr(read, '\n'); |
1081 if (!minus_header) | |
1082 minus_header = g_strdup(read); | |
7436 | 1083 else |
7431 | 1084 minus_header = g_strdup(minus_header + 1); |
1085 g_free(read); | |
10732
c4cb90065e1d
[gaim-migrate @ 12334]
Luke Schierer <lschiere@pidgin.im>
parents:
10645
diff
changeset
|
1086 minus_header2 = g_markup_escape_text(minus_header, -1); |
8517 | 1087 g_free(minus_header); |
1088 return minus_header2; | |
7431 | 1089 } |
8578 | 1090 return g_strdup_printf(_("<font color=\"red\"><b>Could not read file: %s</b></font>"), data->path); |
7436 | 1091 } |
7431 | 1092 |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
1093 |
7431 | 1094 |
1095 /**************** | |
1096 * OLD LOGGER *** | |
1097 ****************/ | |
1098 | |
1099 /* The old logger doesn't write logs, only reads them. This is to include | |
1100 * old logs in the log viewer transparently. | |
1101 */ | |
1102 | |
1103 struct old_logger_data { | |
7764 | 1104 GaimStringref *pathref; |
7431 | 1105 int offset; |
1106 int length; | |
1107 }; | |
1108 | |
8898 | 1109 static GList *old_logger_list(GaimLogType type, const char *sn, GaimAccount *account) |
7431 | 1110 { |
1111 FILE *file; | |
1112 char buf[BUF_LONG]; | |
1113 struct tm tm; | |
7761 | 1114 char month[4]; |
7431 | 1115 struct old_logger_data *data = NULL; |
1116 char *logfile = g_strdup_printf("%s.log", gaim_normalize(account, sn)); | |
7764 | 1117 char *pathstr = g_build_filename(gaim_user_dir(), "logs", logfile, NULL); |
1118 GaimStringref *pathref = gaim_stringref_new(pathstr); | |
7431 | 1119 char *newlog; |
7761 | 1120 int logfound = 0; |
1121 int lastoff = 0; | |
1122 int newlen; | |
7791 | 1123 time_t lasttime = 0; |
7431 | 1124 |
1125 GaimLog *log = NULL; | |
1126 GList *list = NULL; | |
1127 | |
7473 | 1128 g_free(logfile); |
7764 | 1129 g_free(pathstr); |
7473 | 1130 |
10589
0f7452b1f777
[gaim-migrate @ 11994]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10577
diff
changeset
|
1131 if (!(file = g_fopen(gaim_stringref_value(pathref), "rb"))) { |
7764 | 1132 gaim_stringref_unref(pathref); |
7431 | 1133 return NULL; |
7447 | 1134 } |
7436 | 1135 |
7431 | 1136 while (fgets(buf, BUF_LONG, file)) { |
1137 if ((newlog = strstr(buf, "---- New C"))) { | |
1138 int length; | |
1139 int offset; | |
1140 char convostart[32]; | |
1141 char *temp = strchr(buf, '@'); | |
7436 | 1142 |
7431 | 1143 if (temp == NULL || strlen(temp) < 2) |
1144 continue; | |
7436 | 1145 |
7431 | 1146 temp++; |
1147 length = strcspn(temp, "-"); | |
1148 if (length > 31) length = 31; | |
7436 | 1149 |
7431 | 1150 offset = ftell(file); |
7436 | 1151 |
7761 | 1152 if (logfound) { |
1153 newlen = offset - lastoff - length; | |
7436 | 1154 if(strstr(buf, "----</H3><BR>")) { |
7761 | 1155 newlen -= |
1156 sizeof("<HR><BR><H3 Align=Center> ---- New Conversation @ ") + | |
1157 sizeof("----</H3><BR>") - 2; | |
7436 | 1158 } else { |
7761 | 1159 newlen -= |
1160 sizeof("---- New Conversation @ ") + sizeof("----") - 2; | |
7436 | 1161 } |
1162 | |
7461 | 1163 if(strchr(buf, '\r')) |
7770 | 1164 newlen--; |
7461 | 1165 |
7761 | 1166 if (newlen != 0) { |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
1167 log = gaim_log_new(GAIM_LOG_IM, sn, account, NULL, -1); |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
1168 log->logger = old_logger; |
7761 | 1169 log->time = lasttime; |
1170 data = g_new0(struct old_logger_data, 1); | |
1171 data->offset = lastoff; | |
1172 data->length = newlen; | |
7764 | 1173 data->pathref = gaim_stringref_ref(pathref); |
7761 | 1174 log->logger_data = data; |
7431 | 1175 list = g_list_append(list, log); |
7761 | 1176 } |
7431 | 1177 } |
1178 | |
7761 | 1179 logfound = 1; |
1180 lastoff = offset; | |
7436 | 1181 |
7431 | 1182 g_snprintf(convostart, length, "%s", temp); |
7676 | 1183 sscanf(convostart, "%*s %s %d %d:%d:%d %d", |
1184 month, &tm.tm_mday, &tm.tm_hour, &tm.tm_min, &tm.tm_sec, &tm.tm_year); | |
1185 /* Ugly hack, in case current locale is not English */ | |
1186 if (strcmp(month, "Jan") == 0) { | |
1187 tm.tm_mon= 0; | |
1188 } else if (strcmp(month, "Feb") == 0) { | |
1189 tm.tm_mon = 1; | |
1190 } else if (strcmp(month, "Mar") == 0) { | |
1191 tm.tm_mon = 2; | |
1192 } else if (strcmp(month, "Apr") == 0) { | |
1193 tm.tm_mon = 3; | |
1194 } else if (strcmp(month, "May") == 0) { | |
1195 tm.tm_mon = 4; | |
1196 } else if (strcmp(month, "Jun") == 0) { | |
1197 tm.tm_mon = 5; | |
1198 } else if (strcmp(month, "Jul") == 0) { | |
1199 tm.tm_mon = 6; | |
1200 } else if (strcmp(month, "Aug") == 0) { | |
1201 tm.tm_mon = 7; | |
1202 } else if (strcmp(month, "Sep") == 0) { | |
1203 tm.tm_mon = 8; | |
1204 } else if (strcmp(month, "Oct") == 0) { | |
1205 tm.tm_mon = 9; | |
1206 } else if (strcmp(month, "Nov") == 0) { | |
1207 tm.tm_mon = 10; | |
1208 } else if (strcmp(month, "Dec") == 0) { | |
1209 tm.tm_mon = 11; | |
1210 } | |
1211 tm.tm_year -= 1900; | |
7761 | 1212 lasttime = mktime(&tm); |
4184 | 1213 } |
1214 } | |
7613 | 1215 |
7761 | 1216 if (logfound) { |
1217 if ((newlen = ftell(file) - lastoff) != 0) { | |
11292
ef9280fdc511
[gaim-migrate @ 13492]
Richard Laager <rlaager@wiktel.com>
parents:
11256
diff
changeset
|
1218 log = gaim_log_new(GAIM_LOG_IM, sn, account, NULL, -1); |
11503
cd0c8830d881
[gaim-migrate @ 13748]
Richard Laager <rlaager@wiktel.com>
parents:
11458
diff
changeset
|
1219 log->logger = old_logger; |
7761 | 1220 log->time = lasttime; |
1221 data = g_new0(struct old_logger_data, 1); | |
1222 data->offset = lastoff; | |
1223 data->length = newlen; | |
7764 | 1224 data->pathref = gaim_stringref_ref(pathref); |
7761 | 1225 log->logger_data = data; |
7613 | 1226 list = g_list_append(list, log); |
7761 | 1227 } |
7613 | 1228 } |
1229 | |
7764 | 1230 gaim_stringref_unref(pathref); |
7431 | 1231 fclose(file); |
1232 return list; | |
4184 | 1233 } |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4227
diff
changeset
|
1234 |
8898 | 1235 static int old_logger_total_size(GaimLogType type, const char *name, GaimAccount *account) |
8096 | 1236 { |
1237 char *logfile = g_strdup_printf("%s.log", gaim_normalize(account, name)); | |
1238 char *pathstr = g_build_filename(gaim_user_dir(), "logs", logfile, NULL); | |
1239 int size; | |
1240 struct stat st; | |
1241 | |
10589
0f7452b1f777
[gaim-migrate @ 11994]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10577
diff
changeset
|
1242 if (g_stat(pathstr, &st)) |
8096 | 1243 size = 0; |
1244 else | |
1245 size = st.st_size; | |
1246 | |
1247 g_free(logfile); | |
1248 g_free(pathstr); | |
1249 | |
1250 return size; | |
1251 } | |
1252 | |
7616 | 1253 static char * old_logger_read (GaimLog *log, GaimLogReadFlags *flags) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4227
diff
changeset
|
1254 { |
7431 | 1255 struct old_logger_data *data = log->logger_data; |
10589
0f7452b1f777
[gaim-migrate @ 11994]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10577
diff
changeset
|
1256 FILE *file = g_fopen(gaim_stringref_value(data->pathref), "rb"); |
10906 | 1257 char *tmp, *read = g_malloc(data->length + 1); |
7431 | 1258 fseek(file, data->offset, SEEK_SET); |
1259 fread(read, data->length, 1, file); | |
8370 | 1260 fclose(file); |
7431 | 1261 read[data->length] = '\0'; |
7436 | 1262 *flags = 0; |
1263 if(strstr(read, "<BR>")) | |
1264 *flags |= GAIM_LOG_READ_NO_NEWLINE; | |
10906 | 1265 else { |
1266 tmp = g_markup_escape_text(read, -1); | |
1267 g_free(read); | |
1268 read = tmp; | |
1269 } | |
7431 | 1270 return read; |
1271 } | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4227
diff
changeset
|
1272 |
7616 | 1273 static int old_logger_size (GaimLog *log) |
7556 | 1274 { |
1275 struct old_logger_data *data = log->logger_data; | |
7616 | 1276 return data ? data->length : 0; |
1277 } | |
1278 | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
1279 static void old_logger_get_log_sets(GaimLogSetCallback cb, GHashTable *sets) |
11025 | 1280 { |
1281 char *log_path = g_build_filename(gaim_user_dir(), "logs", NULL); | |
1282 GDir *log_dir = g_dir_open(log_path, 0, NULL); | |
1283 gchar *name; | |
1284 GaimBlistNode *gnode, *cnode, *bnode; | |
1285 | |
1286 g_free(log_path); | |
1287 if (log_dir == NULL) | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
1288 return; |
11025 | 1289 |
1290 /* Don't worry about the cast, name will be filled with a dynamically allocated data shortly. */ | |
1291 while ((name = (gchar *)g_dir_read_name(log_dir)) != NULL) { | |
1292 size_t len; | |
1293 gchar *ext; | |
1294 GaimLogSet *set; | |
1295 gboolean found = FALSE; | |
1296 | |
1297 /* Unescape the filename. */ | |
1298 name = g_strdup(gaim_unescape_filename(name)); | |
1299 | |
1300 /* Get the (possibly new) length of name. */ | |
1301 len = strlen(name); | |
1302 | |
1303 if (len < 5) { | |
1304 g_free(name); | |
1305 continue; | |
1306 } | |
1307 | |
1308 /* Make sure we're dealing with a log file. */ | |
1309 ext = &name[len - 4]; | |
1310 if (strcmp(ext, ".log")) { | |
1311 g_free(name); | |
1312 continue; | |
1313 } | |
1314 | |
1315 set = g_new0(GaimLogSet, 1); | |
1316 | |
1317 /* Chat for .chat at the end of the name to determine the type. */ | |
1318 *ext = '\0'; | |
1319 set->type = GAIM_LOG_IM; | |
1320 if (len > 9) { | |
1321 char *tmp = &name[len - 9]; | |
1322 if (!strcmp(tmp, ".chat")) { | |
1323 set->type = GAIM_LOG_CHAT; | |
1324 *tmp = '\0'; | |
1325 } | |
1326 } | |
1327 | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
1328 set->name = set->normalized_name = name; |
11025 | 1329 |
1330 /* Search the buddy list to find the account and to determine if this is a buddy. */ | |
1331 for (gnode = gaim_get_blist()->root; !found && gnode != NULL; gnode = gnode->next) | |
1332 { | |
1333 if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
1334 continue; | |
1335 | |
1336 for (cnode = gnode->child; !found && cnode != NULL; cnode = cnode->next) | |
1337 { | |
1338 if (!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
1339 continue; | |
1340 | |
1341 for (bnode = cnode->child; !found && bnode != NULL; bnode = bnode->next) | |
1342 { | |
1343 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
1344 | |
1345 if (!strcmp(buddy->name, name)) { | |
1346 set->account = buddy->account; | |
1347 set->buddy = TRUE; | |
1348 found = TRUE; | |
1349 } | |
1350 } | |
1351 } | |
1352 } | |
1353 | |
11177
3924db2b1ca8
[gaim-migrate @ 13285]
Richard Laager <rlaager@wiktel.com>
parents:
11094
diff
changeset
|
1354 cb(sets, set); |
11025 | 1355 } |
1356 g_dir_close(log_dir); | |
1357 } | |
1358 | |
7616 | 1359 static void old_logger_finalize(GaimLog *log) |
1360 { | |
1361 struct old_logger_data *data = log->logger_data; | |
7764 | 1362 gaim_stringref_unref(data->pathref); |
7616 | 1363 g_free(data); |
7556 | 1364 } |