1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
|
/*
* Copyright (c) 2003-2009 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* notify.c: Notify plugin for WeeChat: set/save buffer notify levels */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <iconv.h>
#include "../weechat-plugin.h"
#define NOTIFY_PLUGIN_NAME "notify"
WEECHAT_PLUGIN_NAME(NOTIFY_PLUGIN_NAME);
WEECHAT_PLUGIN_DESCRIPTION("Notify plugin for WeeChat (set/save buffer notify levels)");
WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION);
WEECHAT_PLUGIN_WEECHAT_VERSION(WEECHAT_VERSION);
WEECHAT_PLUGIN_LICENSE("GPL3");
#define NOTIFY_CONFIG_NAME "notify"
struct t_weechat_plugin *weechat_notify_plugin = NULL;
#define weechat_plugin weechat_notify_plugin
struct t_config_file *notify_config_file = NULL;
struct t_config_section *notify_config_section_buffer = NULL;
#define NOTIFY_NUM_LEVELS 4
char *notify_string[NOTIFY_NUM_LEVELS] =
{ "none", "highlight", "message", "all" };
/*
* notify_search: search a notify level by name
*/
int
notify_search (const char *notify_name)
{
int i;
for (i = 0; i < NOTIFY_NUM_LEVELS; i++)
{
if (weechat_strcasecmp (notify_name, notify_string[i]) == 0)
return i;
}
/* notify level not found */
return -1;
}
/*
* notify_build_option_name: build option name for a buffer
*/
char *
notify_build_option_name (struct t_gui_buffer *buffer)
{
const char *plugin_name, *name;
char *option_name;
int length;
plugin_name = weechat_buffer_get_string (buffer, "plugin");
name = weechat_buffer_get_string (buffer, "name");
length = strlen (plugin_name) + 1 + strlen (name) + 1;
option_name = malloc (length);
if (!option_name)
return NULL;
snprintf (option_name, length, "%s.%s", plugin_name, name);
return option_name;
}
/*
* notify_get: read a notify level in config file
* we first try with all arguments, then remove one by one
* to find notify level (from specific to general notify)
*/
int
notify_get (const char *name)
{
char *option_name, *ptr_end;
struct t_config_option *ptr_option;
option_name = strdup (name);
if (option_name)
{
ptr_end = option_name + strlen (option_name);
while (ptr_end >= option_name)
{
ptr_option = weechat_config_search_option (notify_config_file,
notify_config_section_buffer,
option_name);
if (ptr_option)
{
free (option_name);
return weechat_config_integer (ptr_option);
}
ptr_end--;
while ((ptr_end >= option_name) && (ptr_end[0] != '.'))
{
ptr_end--;
}
if ((ptr_end >= option_name) && (ptr_end[0] == '.'))
ptr_end[0] = '\0';
}
ptr_option = weechat_config_search_option (notify_config_file,
notify_config_section_buffer,
option_name);
free (option_name);
if (ptr_option)
return weechat_config_integer (ptr_option);
}
/* notify level not found */
return -1;
}
/*
* notify_set_buffer: set notify for a buffer
*/
void
notify_set_buffer (struct t_gui_buffer *buffer)
{
char *option_name, notify_str[16];
int notify;
option_name = notify_build_option_name (buffer);
if (option_name)
{
notify = notify_get (option_name);
if (weechat_notify_plugin->debug)
{
weechat_printf (NULL,
_("notify: debug: set notify for buffer %s to "
"%d (%s)"),
option_name, notify,
(notify < 0) ? "reset" : notify_string[notify]);
}
/* set notify for buffer */
snprintf (notify_str, sizeof (notify_str), "%d", notify);
weechat_buffer_set (buffer, "notify", notify_str);
free (option_name);
}
}
/*
* notify_set_buffer_all: set notify for all open buffers
*/
void
notify_set_buffer_all ()
{
struct t_infolist *ptr_infolist;
ptr_infolist = weechat_infolist_get ("buffer", NULL, NULL);
if (ptr_infolist)
{
while (weechat_infolist_next (ptr_infolist))
{
notify_set_buffer (weechat_infolist_pointer (ptr_infolist,
"pointer"));
}
weechat_infolist_free (ptr_infolist);
}
}
/*
* notify_config_cb: callback for config hook
*/
int
notify_config_cb (void *data, const char *option, const char *value)
{
/* make C compiler happy */
(void) data;
(void) option;
(void) value;
notify_set_buffer_all ();
return WEECHAT_RC_OK;
}
/*
* notify_config_reaload: reload notify configuration file
*/
int
notify_config_reload (void *data, struct t_config_file *config_file)
{
/* make C compiler happy */
(void) data;
/* free all notify levels */
weechat_config_section_free_options (notify_config_section_buffer);
return weechat_config_reload (config_file);
}
/*
* notify_config_create_option: set a notify level
*/
int
notify_config_create_option (void *data, struct t_config_file *config_file,
struct t_config_section *section,
const char *option_name, const char *value)
{
struct t_config_option *ptr_option;
int rc;
/* make C compiler happy */
(void) data;
rc = WEECHAT_CONFIG_OPTION_SET_ERROR;
if (option_name)
{
ptr_option = weechat_config_search_option (config_file, section,
option_name);
if (ptr_option)
{
if (value && value[0])
rc = weechat_config_option_set (ptr_option, value, 1);
else
{
weechat_config_option_free (ptr_option);
rc = WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE;
}
}
else
{
if (value && value[0])
{
ptr_option = weechat_config_new_option (
config_file, section,
option_name, "integer", NULL,
"none|highlight|message|all",
0, 0, "", value, 0, NULL, NULL, NULL, NULL, NULL, NULL);
rc = (ptr_option) ?
WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE : WEECHAT_CONFIG_OPTION_SET_ERROR;
}
else
rc = WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE;
}
}
if (rc == WEECHAT_CONFIG_OPTION_SET_ERROR)
{
weechat_printf (NULL,
_("%s%s: unable to set notify level \"%s\" => \"%s\""),
weechat_prefix ("error"), NOTIFY_PLUGIN_NAME,
option_name, value);
}
return rc;
}
/*
* notify_config_init: init notify configuration file
* return: 1 if ok, 0 if error
*/
int
notify_config_init ()
{
struct t_config_section *ptr_section;
notify_config_file = weechat_config_new (NOTIFY_CONFIG_NAME,
¬ify_config_reload, NULL);
if (!notify_config_file)
return 0;
ptr_section = weechat_config_new_section (notify_config_file, "buffer",
1, 1,
NULL, NULL,
NULL, NULL,
NULL, NULL,
¬ify_config_create_option, NULL,
NULL, NULL);
if (!ptr_section)
{
weechat_config_free (notify_config_file);
return 0;
}
notify_config_section_buffer = ptr_section;
return 1;
}
/*
* notify_config_read: read notify configuration file
*/
int
notify_config_read ()
{
return weechat_config_read (notify_config_file);
}
/*
* notify_config_write: write notify configuration file
*/
int
notify_config_write ()
{
return weechat_config_write (notify_config_file);
}
/*
* notify_buffer_open_signal_cb: callback for "buffer_open" signal
*/
int
notify_buffer_open_signal_cb (void *data, const char *signal,
const char *type_data, void *signal_data)
{
/* make C compiler happy */
(void) data;
(void) signal;
(void) type_data;
notify_set_buffer (signal_data);
return WEECHAT_RC_OK;
}
/*
* notify_set: set a notify level for a buffer
*/
void
notify_set (struct t_gui_buffer *buffer, const char *name, int value)
{
char notify_str[16];
/* create/update option */
if (notify_config_create_option (NULL,
notify_config_file,
notify_config_section_buffer,
name,
(value < 0) ?
NULL : notify_string[value]) > 0)
{
/* set notify for buffer */
snprintf (notify_str, sizeof (notify_str), "%d", value);
weechat_buffer_set (buffer, "notify", notify_str);
/* display message */
if (value >= 0)
weechat_printf (NULL, "%s: \"%s\" => %s",
NOTIFY_PLUGIN_NAME, name, notify_string[value]);
else
weechat_printf (NULL, _("%s: \"%s\" removed"),
NOTIFY_PLUGIN_NAME, name);
}
}
/*
* notify_command_cb: callback for /notify command
*/
int
notify_command_cb (void *data, struct t_gui_buffer *buffer, int argc,
char **argv, char **argv_eol)
{
int notify_level;
char *option_name;
/* make C compiler happy */
(void) data;
/* check arguments */
if (argc < 2)
{
weechat_printf (NULL,
_("%s%s: missing parameters"),
weechat_prefix ("error"), NOTIFY_PLUGIN_NAME);
return WEECHAT_RC_ERROR;
}
/* check if notify level exists */
if (weechat_strcasecmp (argv[1], "reset") == 0)
notify_level = -1;
else
{
notify_level = notify_search (argv_eol[1]);
if (notify_level < 0)
{
weechat_printf (NULL,
_("%s%s: unknown notify level \"%s\""),
weechat_prefix ("error"), NOTIFY_PLUGIN_NAME,
argv_eol[1]);
return WEECHAT_RC_ERROR;
}
}
/* set buffer notify level */
option_name = notify_build_option_name (buffer);
if (option_name)
{
notify_set (buffer, option_name, notify_level);
free (option_name);
}
else
return WEECHAT_RC_ERROR;
return WEECHAT_RC_OK;
}
/*
* weechat_plugin_init: init notify plugin
*/
int
weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
{
/* make C compiler happy */
(void) argc;
(void) argv;
weechat_plugin = plugin;
if (!notify_config_init ())
{
weechat_printf (NULL,
_("%s%s: error creating configuration file"),
weechat_prefix("error"), NOTIFY_PLUGIN_NAME);
return WEECHAT_RC_ERROR;
}
notify_config_read ();
/* /notify command */
weechat_hook_command ("notify",
N_("change notify level for current buffer"),
N_("reset | none | highlight | message | all"),
N_(" reset: reset notify level to default value\n"
" none: buffer will never be in hotlist\n"
"highlight: buffer will be in hotlist for "
"highlights only\n"
" message: buffer will be in hotlist for "
"highlights and user messages only\n"
" all: buffer will be in hotlist for "
"any text printed"),
"reset|none|highlight|message|all",
¬ify_command_cb, NULL);
/* callback when a buffer is open */
weechat_hook_signal ("buffer_open", ¬ify_buffer_open_signal_cb, NULL);
/* callback when a config option is changed */
weechat_hook_config ("notify.buffer.*", ¬ify_config_cb, NULL);
/* set notify for open buffers */
notify_set_buffer_all ();
return WEECHAT_RC_OK;
}
/*
* weechat_plugin_end: end notify plugin
*/
int
weechat_plugin_end (struct t_weechat_plugin *plugin)
{
/* make C compiler happy */
(void) plugin;
notify_config_write ();
weechat_config_free (notify_config_file);
return WEECHAT_RC_OK;
}
|