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
|
#include "module.h"
/* TODO
void
purple_status_type_add_attrs(status_type, id, name, value, purple_status_type_add_attrs)
Purple::StatusType status_type
const char *id
const char *name
Purple::Value value
...
Purple::StatusType
purple_status_type_new_with_attrs(primitive, id, name, saveable, user_settable, independent, attr_id, attr_name, attr_value, purple_status_type_new_with_attrs)
Purple::StatusPrimitive primitive
const char *id
const char *name
gboolean saveable
gboolean user_settable
gboolean independent
const char *attr_id
const char *attr_name
Purple::Value attr_value
...
*/
/* These break on faceprint's amd64 box
void
purple_status_type_add_attrs_vargs(status_type, args)
Purple::StatusType status_type
va_list args
void
purple_status_set_active_with_attrs(status, active, args)
Purple::Status status
gboolean active
va_list args
*/
MODULE = Purple::Status PACKAGE = Purple::Presence PREFIX = purple_presence_
PROTOTYPES: ENABLE
BOOT:
{
HV *context_stash = gv_stashpv("Purple::Presence::Context", 1);
HV *primitive_stash = gv_stashpv("Purple::Status::Primitive", 1);
static const constiv *civ, context_const_iv[] = {
#define const_iv(name) {#name, (IV)PURPLE_PRESENCE_CONTEXT_##name}
const_iv(UNSET),
const_iv(ACCOUNT),
const_iv(CONV),
const_iv(BUDDY),
};
static const constiv primitive_const_iv[] = {
#undef const_iv
#define const_iv(name) {#name, (IV)PURPLE_STATUS_##name}
const_iv(UNSET),
const_iv(OFFLINE),
const_iv(AVAILABLE),
const_iv(UNAVAILABLE),
const_iv(INVISIBLE),
const_iv(AWAY),
const_iv(EXTENDED_AWAY),
const_iv(MOBILE),
};
for (civ = context_const_iv + sizeof(context_const_iv) / sizeof(context_const_iv[0]); civ-- > context_const_iv; )
newCONSTSUB(context_stash, (char *)civ->name, newSViv(civ->iv));
for (civ = primitive_const_iv + sizeof(primitive_const_iv) / sizeof(primitive_const_iv[0]); civ-- > primitive_const_iv; )
newCONSTSUB(primitive_stash, (char *)civ->name, newSViv(civ->iv));
}
gint
purple_presence_compare(presence1, presence2)
Purple::Presence presence1
Purple::Presence presence2
void
purple_presence_destroy(presence)
Purple::Presence presence
Purple::Account
purple_presence_get_account(presence)
Purple::Presence presence
Purple::Status
purple_presence_get_active_status(presence)
Purple::Presence presence
const char *
purple_presence_get_chat_user(presence)
Purple::Presence presence
Purple::PresenceContext
purple_presence_get_context(presence)
Purple::Presence presence
Purple::Conversation
purple_presence_get_conversation(presence)
Purple::Presence presence
time_t
purple_presence_get_idle_time(presence)
Purple::Presence presence
time_t
purple_presence_get_login_time(presence)
Purple::Presence presence
Purple::Status
purple_presence_get_status(presence, status_id)
Purple::Presence presence
const char *status_id
void
purple_presence_get_statuses(presence)
Purple::Presence presence
PREINIT:
GList *l;
PPCODE:
for (l = purple_presence_get_statuses(presence); l != NULL; l = l->next) {
XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Purple::Status")));
}
gboolean
purple_presence_is_available(presence)
Purple::Presence presence
gboolean
purple_presence_is_idle(presence)
Purple::Presence presence
gboolean
purple_presence_is_online(presence)
Purple::Presence presence
gboolean
purple_presence_is_status_active(presence, status_id)
Purple::Presence presence
const char *status_id
gboolean
purple_presence_is_status_primitive_active(presence, primitive)
Purple::Presence presence
Purple::StatusPrimitive primitive
Purple::Presence
purple_presence_new(context)
Purple::PresenceContext context
Purple::Presence
purple_presence_new_for_account(account)
Purple::Account account
Purple::Presence
purple_presence_new_for_buddy(buddy)
Purple::BuddyList::Buddy buddy
Purple::Presence
purple_presence_new_for_conv(conv)
Purple::Conversation conv
void
purple_presence_set_idle(presence, idle, idle_time)
Purple::Presence presence
gboolean idle
time_t idle_time
void
purple_presence_set_login_time(presence, login_time)
Purple::Presence presence
time_t login_time
void
purple_presence_set_status_active(presence, status_id, active)
Purple::Presence presence
const char *status_id
gboolean active
void
purple_presence_switch_status(presence, status_id)
Purple::Presence presence
const char *status_id
MODULE = Purple::Status PACKAGE = Purple::Primitive PREFIX = purple_primitive_
PROTOTYPES: ENABLE
const char *
purple_primitive_get_id_from_type(type)
Purple::StatusPrimitive type
const char *
purple_primitive_get_name_from_type(type)
Purple::StatusPrimitive type
Purple::StatusPrimitive
purple_primitive_get_type_from_id(id)
const char *id
MODULE = Purple::Status PACKAGE = Purple::StatusAttr PREFIX = purple_status_attr_
PROTOTYPES: ENABLE
void
purple_status_attr_destroy(attr)
Purple::StatusAttr attr
const char *
purple_status_attr_get_id(attr)
Purple::StatusAttr attr
const char *
purple_status_attr_get_name(attr)
Purple::StatusAttr attr
Purple::Value
purple_status_attr_get_value(attr)
Purple::StatusAttr attr
Purple::StatusAttr
purple_status_attr_new(id, name, value_type)
const char *id
const char *name
Purple::Value value_type
MODULE = Purple::Status PACKAGE = Purple::Status PREFIX = purple_status_
PROTOTYPES: ENABLE
gint
purple_status_compare(status1, status2)
Purple::Status status1
Purple::Status status2
void
purple_status_destroy(status)
Purple::Status status
gboolean
purple_status_get_attr_boolean(status, id)
Purple::Status status
const char *id
int
purple_status_get_attr_int(status, id)
Purple::Status status
const char *id
const char *
purple_status_get_attr_string(status, id)
Purple::Status status
const char *id
Purple::Value
purple_status_get_attr_value(status, id)
Purple::Status status
const char *id
Purple::Handle
purple_status_get_handle()
const char *
purple_status_get_id(status)
Purple::Status status
const char *
purple_status_get_name(status)
Purple::Status status
Purple::Presence
purple_status_get_presence(status)
Purple::Status status
Purple::StatusType
purple_status_get_type(status)
Purple::Status status
gboolean
purple_status_is_active(status)
Purple::Status status
gboolean
purple_status_is_available(status)
Purple::Status status
gboolean
purple_status_is_exclusive(status)
Purple::Status status
gboolean
purple_status_is_independent(status)
Purple::Status status
gboolean
purple_status_is_online(status)
Purple::Status status
Purple::Status
purple_status_new(status_type, presence)
Purple::StatusType status_type
Purple::Presence presence
void
purple_status_set_active(status, active)
Purple::Status status
gboolean active
MODULE = Purple::Status PACKAGE = Purple::StatusType PREFIX = purple_status_type_
PROTOTYPES: ENABLE
void
purple_status_type_destroy(status_type)
Purple::StatusType status_type
Purple::StatusAttr
purple_status_type_get_attr(status_type, id)
Purple::StatusType status_type
const char *id
void
purple_status_type_get_attrs(status_type)
Purple::StatusType status_type
PREINIT:
GList *l;
PPCODE:
for (l = purple_status_type_get_attrs(status_type); l != NULL; l = l->next) {
XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Purple::StatusAttr")));
}
Purple::StatusType
purple_status_type_find_with_id(status_types, id)
SV *status_types
const char *id
PREINIT:
GList *t_GL;
int i, t_len;
CODE:
t_GL = NULL;
t_len = av_len((AV *)SvRV(status_types));
for (i = 0; i <= t_len; i++) {
t_GL = g_list_append(t_GL, SvPVutf8_nolen(*av_fetch((AV *)SvRV(status_types), i, 0)));
}
RETVAL = (PurpleStatusType *)purple_status_type_find_with_id(t_GL, id);
g_list_free(t_GL);
OUTPUT:
RETVAL
const char *
purple_status_type_get_id(status_type)
Purple::StatusType status_type
const char *
purple_status_type_get_name(status_type)
Purple::StatusType status_type
Purple::StatusPrimitive
purple_status_type_get_primitive(status_type)
Purple::StatusType status_type
gboolean
purple_status_type_is_available(status_type)
Purple::StatusType status_type
gboolean
purple_status_type_is_exclusive(status_type)
Purple::StatusType status_type
gboolean
purple_status_type_is_independent(status_type)
Purple::StatusType status_type
gboolean
purple_status_type_is_saveable(status_type)
Purple::StatusType status_type
gboolean
purple_status_type_is_user_settable(status_type)
Purple::StatusType status_type
Purple::StatusType
purple_status_type_new(primitive, id, name, user_settable)
Purple::StatusPrimitive primitive
const char *id
const char *name
gboolean user_settable
Purple::StatusType
purple_status_type_new_full(primitive, id, name, saveable, user_settable, independent)
Purple::StatusPrimitive primitive
const char *id
const char *name
gboolean saveable
gboolean user_settable
gboolean independent
|