hexavalent 0.3.0

Write HexChat plugins in Rust.
Documentation
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
use std::ffi::c_void;
use std::marker::PhantomData;
use std::os::raw::{c_char, c_int};
use std::ptr::NonNull;

use libc::time_t;

use crate::ffi::{
    hexchat_context, hexchat_event_attrs, hexchat_hook, hexchat_list, hexchat_plugin,
};

#[derive(Debug, Copy, Clone)]
pub(crate) struct RawPluginHandle<'ph> {
    /// Always points to an instance of `hexchat_plugin` valid for `'ph`.
    handle: NonNull<hexchat_plugin>,
    _lifetime: PhantomData<&'ph hexchat_plugin>,
}

impl<'ph> RawPluginHandle<'ph> {
    /// Creates a new `RawPluginHandle` from a native `hexchat_plugin`.
    ///
    /// # Safety
    ///
    /// `handle` must point an instance of `hexchat_plugin` valid for the entire lifetime `'ph`.
    pub(crate) unsafe fn new(handle: NonNull<hexchat_plugin>) -> Self {
        Self {
            handle,
            _lifetime: PhantomData,
        }
    }
}

impl RawPluginHandle<'_> {
    pub(crate) unsafe fn hexchat_hook_command(
        self,
        name: *const c_char,
        pri: c_int,
        callback: unsafe extern "C" fn(
            word: *mut *mut c_char,
            word_eol: *mut *mut c_char,
            user_data: *mut c_void,
        ) -> c_int,
        help_text: *const c_char,
        userdata: *mut c_void,
    ) -> *mut hexchat_hook {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_hook_command)(
                self.handle.as_ptr(),
                name,
                pri,
                callback,
                help_text,
                userdata,
            )
        }
    }

    pub(crate) unsafe fn hexchat_hook_server(
        self,
        name: *const c_char,
        pri: c_int,
        callback: unsafe extern "C" fn(
            word: *mut *mut c_char,
            word_eol: *mut *mut c_char,
            user_data: *mut c_void,
        ) -> c_int,
        userdata: *mut c_void,
    ) -> *mut hexchat_hook {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_hook_server)(
                self.handle.as_ptr(),
                name,
                pri,
                callback,
                userdata,
            )
        }
    }

    pub(crate) unsafe fn hexchat_hook_print(
        self,
        name: *const c_char,
        pri: c_int,
        callback: unsafe extern "C" fn(word: *mut *mut c_char, user_data: *mut c_void) -> c_int,
        userdata: *mut c_void,
    ) -> *mut hexchat_hook {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_hook_print)(
                self.handle.as_ptr(),
                name,
                pri,
                callback,
                userdata,
            )
        }
    }

    pub(crate) unsafe fn hexchat_hook_timer(
        self,
        timeout: c_int,
        callback: unsafe extern "C" fn(user_data: *mut c_void) -> c_int,
        userdata: *mut c_void,
    ) -> *mut hexchat_hook {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_hook_timer)(
                self.handle.as_ptr(),
                timeout,
                callback,
                userdata,
            )
        }
    }

    pub(crate) unsafe fn hexchat_unhook(self, hook: *mut hexchat_hook) -> *mut c_void {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_unhook)(self.handle.as_ptr(), hook) }
    }

    pub(crate) unsafe fn hexchat_print(self, text: *const c_char) {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_print)(self.handle.as_ptr(), text) }
    }

    pub(crate) unsafe fn hexchat_command(self, command: *const c_char) {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_command)(self.handle.as_ptr(), command) }
    }

    pub(crate) unsafe fn hexchat_nickcmp(self, s1: *const c_char, s2: *const c_char) -> c_int {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_nickcmp)(self.handle.as_ptr(), s1, s2) }
    }

    pub(crate) unsafe fn hexchat_set_context(self, ctx: *mut hexchat_context) -> c_int {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_set_context)(self.handle.as_ptr(), ctx) }
    }

    pub(crate) unsafe fn hexchat_find_context(
        self,
        servname: *const c_char,
        channel: *const c_char,
    ) -> *mut hexchat_context {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_find_context)(self.handle.as_ptr(), servname, channel)
        }
    }

    pub(crate) unsafe fn hexchat_get_context(self) -> *mut hexchat_context {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_get_context)(self.handle.as_ptr()) }
    }

    pub(crate) unsafe fn hexchat_get_info(self, id: *const c_char) -> *const c_char {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_get_info)(self.handle.as_ptr(), id) }
    }

    pub(crate) unsafe fn hexchat_get_prefs(
        self,
        name: *const c_char,
        string: *mut *const c_char,
        integer: *mut c_int,
    ) -> c_int {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_get_prefs)(self.handle.as_ptr(), name, string, integer)
        }
    }

    pub(crate) unsafe fn hexchat_list_get(self, name: *const c_char) -> *mut hexchat_list {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_list_get)(self.handle.as_ptr(), name) }
    }

    pub(crate) unsafe fn hexchat_list_free(self, xlist: *mut hexchat_list) {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_list_free)(self.handle.as_ptr(), xlist) }
    }

    pub(crate) unsafe fn hexchat_list_next(self, xlist: *mut hexchat_list) -> c_int {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_list_next)(self.handle.as_ptr(), xlist) }
    }

    pub(crate) unsafe fn hexchat_list_str(
        self,
        xlist: *mut hexchat_list,
        name: *const c_char,
    ) -> *const c_char {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_list_str)(self.handle.as_ptr(), xlist, name) }
    }

    pub(crate) unsafe fn hexchat_list_int(
        self,
        xlist: *mut hexchat_list,
        name: *const c_char,
    ) -> c_int {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_list_int)(self.handle.as_ptr(), xlist, name) }
    }

    pub(crate) unsafe fn hexchat_plugingui_add(
        self,
        filename: *const c_char,
        name: *const c_char,
        desc: *const c_char,
        version: *const c_char,
        reserved: *mut c_char,
    ) -> *mut c_void {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_plugingui_add)(
                self.handle.as_ptr(),
                filename,
                name,
                desc,
                version,
                reserved,
            )
        }
    }

    pub(crate) unsafe fn hexchat_plugingui_remove(self, handle: *mut c_void) {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_plugingui_remove)(self.handle.as_ptr(), handle) }
    }

    pub(crate) unsafe fn hexchat_emit_print(
        self,
        event_name: *const c_char,
        a1: *const c_char,
        a2: *const c_char,
        a3: *const c_char,
        a4: *const c_char,
        a5: *const c_char,
    ) -> c_int {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_emit_print)(
                self.handle.as_ptr(),
                event_name,
                a1,
                a2,
                a3,
                a4,
                a5,
            )
        }
    }

    pub(crate) unsafe fn hexchat_list_time(
        self,
        xlist: *mut hexchat_list,
        name: *const c_char,
    ) -> time_t {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_list_time)(self.handle.as_ptr(), xlist, name) }
    }

    pub(crate) unsafe fn hexchat_send_modes(
        self,
        targets: *mut *const c_char,
        ntargets: c_int,
        modes_per_line: c_int,
        sign: c_char,
        mode: c_char,
    ) {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_send_modes)(
                self.handle.as_ptr(),
                targets,
                ntargets,
                modes_per_line,
                sign,
                mode,
            )
        }
    }

    pub(crate) unsafe fn hexchat_strip(
        self,
        str: *const c_char,
        len: c_int,
        flags: c_int,
    ) -> *mut c_char {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_strip)(self.handle.as_ptr(), str, len, flags) }
    }

    pub(crate) unsafe fn hexchat_free(self, ptr: *mut c_void) {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_free)(self.handle.as_ptr(), ptr) }
    }

    pub(crate) unsafe fn hexchat_pluginpref_set_str(
        self,
        var: *const c_char,
        value: *const c_char,
    ) -> c_int {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_pluginpref_set_str)(self.handle.as_ptr(), var, value)
        }
    }

    pub(crate) unsafe fn hexchat_pluginpref_get_str(
        self,
        var: *const c_char,
        dest: *mut c_char,
    ) -> c_int {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_pluginpref_get_str)(self.handle.as_ptr(), var, dest)
        }
    }

    pub(crate) unsafe fn hexchat_pluginpref_set_int(
        self,
        var: *const c_char,
        value: c_int,
    ) -> c_int {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_pluginpref_set_int)(self.handle.as_ptr(), var, value)
        }
    }

    pub(crate) unsafe fn hexchat_pluginpref_get_int(self, var: *const c_char) -> c_int {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_pluginpref_get_int)(self.handle.as_ptr(), var) }
    }

    pub(crate) unsafe fn hexchat_pluginpref_delete(self, var: *const c_char) -> c_int {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_pluginpref_delete)(self.handle.as_ptr(), var) }
    }

    pub(crate) unsafe fn hexchat_pluginpref_list(self, dest: *mut c_char) -> c_int {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_pluginpref_list)(self.handle.as_ptr(), dest) }
    }

    pub(crate) unsafe fn hexchat_hook_server_attrs(
        self,
        name: *const c_char,
        pri: c_int,
        callback: unsafe extern "C" fn(
            word: *mut *mut c_char,
            word_eol: *mut *mut c_char,
            attrs: *mut hexchat_event_attrs,
            user_data: *mut c_void,
        ) -> c_int,
        userdata: *mut c_void,
    ) -> *mut hexchat_hook {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_hook_server_attrs)(
                self.handle.as_ptr(),
                name,
                pri,
                callback,
                userdata,
            )
        }
    }

    pub(crate) unsafe fn hexchat_hook_print_attrs(
        self,
        name: *const c_char,
        pri: c_int,
        callback: unsafe extern "C" fn(
            word: *mut *mut c_char,
            attrs: *mut hexchat_event_attrs,
            user_data: *mut c_void,
        ) -> c_int,
        userdata: *mut c_void,
    ) -> *mut hexchat_hook {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_hook_print_attrs)(
                self.handle.as_ptr(),
                name,
                pri,
                callback,
                userdata,
            )
        }
    }

    pub(crate) unsafe fn hexchat_emit_print_attrs(
        self,
        attrs: *mut hexchat_event_attrs,
        event_name: *const c_char,
        a1: *const c_char,
        a2: *const c_char,
        a3: *const c_char,
        a4: *const c_char,
        a5: *const c_char,
    ) -> c_int {
        // Safety: forwarded to caller
        unsafe {
            ((*self.handle.as_ptr()).hexchat_emit_print_attrs)(
                self.handle.as_ptr(),
                attrs,
                event_name,
                a1,
                a2,
                a3,
                a4,
                a5,
            )
        }
    }

    pub(crate) unsafe fn hexchat_event_attrs_create(self) -> *mut hexchat_event_attrs {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_event_attrs_create)(self.handle.as_ptr()) }
    }

    pub(crate) unsafe fn hexchat_event_attrs_free(self, attrs: *mut hexchat_event_attrs) {
        // Safety: forwarded to caller
        unsafe { ((*self.handle.as_ptr()).hexchat_event_attrs_free)(self.handle.as_ptr(), attrs) }
    }
}