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
|
/*
irssi-python
Copyright (C) 2006 Christopher Davis
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 2 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, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
#include "dcc-object.h"
#include "factory.h"
#include "pycore.h"
/* monitor "dcc destroyed signal" */
static void dcc_cleanup(DCC_REC *dcc)
{
PyDcc *pydcc = signal_get_user_data();
if (dcc == pydcc->data)
{
pydcc->data = NULL;
pydcc->cleanup_installed = 0;
signal_remove_data("dcc destroyed", dcc_cleanup, pydcc);
}
}
static void PyDcc_dealloc(PyDcc *self)
{
if (self->cleanup_installed)
signal_remove_data("dcc destroyed", dcc_cleanup, self);
Py_XDECREF(self->server);
Py_XDECREF(self->chat);
self->ob_type->tp_free((PyObject*)self);
}
/* Getters */
PyDoc_STRVAR(PyDcc_orig_type_doc,
"Original DCC type that was sent to us - same as type except GET and SEND are swapped"
);
static PyObject *PyDcc_orig_type_get(PyDcc *self, void *closure)
{
const char *type;
RET_NULL_IF_INVALID(self->data);
type = module_find_id_str("DCC", DCC(self->data)->orig_type);
RET_AS_STRING_OR_NONE(type);
}
PyDoc_STRVAR(PyDcc_created_doc,
"Time stamp when the DCC record was created"
);
static PyObject *PyDcc_created_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
return PyLong_FromUnsignedLong(DCC(self->data)->created);
}
PyDoc_STRVAR(PyDcc_server_doc,
"Server record where the DCC was initiated."
);
static PyObject *PyDcc_server_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
RET_AS_OBJ_OR_NONE(self->server);
}
PyDoc_STRVAR(PyDcc_servertag_doc,
"Tag of the server where the DCC was initiated."
);
static PyObject *PyDcc_servertag_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
RET_AS_STRING_OR_NONE(DCC(self->data)->servertag);
}
PyDoc_STRVAR(PyDcc_mynick_doc,
"Our nick to use in DCC chat."
);
static PyObject *PyDcc_mynick_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
RET_AS_STRING_OR_NONE(DCC(self->data)->mynick);
}
PyDoc_STRVAR(PyDcc_nick_doc,
"Other side's nick name."
);
static PyObject *PyDcc_nick_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
RET_AS_STRING_OR_NONE(DCC(self->data)->nick);
}
PyDoc_STRVAR(PyDcc_chat_doc,
"Dcc chat record if the request came through DCC chat"
);
static PyObject *PyDcc_chat_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
RET_AS_OBJ_OR_NONE(self->chat);
}
PyDoc_STRVAR(PyDcc_target_doc,
"Who the request was sent to - your nick, channel or empty if you sent the request"
);
static PyObject *PyDcc_target_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
RET_AS_STRING_OR_NONE(DCC(self->data)->target);
}
PyDoc_STRVAR(PyDcc_arg_doc,
"Given argument .. file name usually"
);
static PyObject *PyDcc_arg_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
RET_AS_STRING_OR_NONE(DCC(self->data)->arg);
}
PyDoc_STRVAR(PyDcc_addr_doc,
"Other side's IP address."
);
static PyObject *PyDcc_addr_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
RET_AS_STRING_OR_NONE(DCC(self->data)->addrstr);
}
PyDoc_STRVAR(PyDcc_port_doc,
"Port we're connecting in."
);
static PyObject *PyDcc_port_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
return PyInt_FromLong(DCC(self->data)->port);
}
PyDoc_STRVAR(PyDcc_starttime_doc,
"Unix time stamp when the DCC transfer was started"
);
static PyObject *PyDcc_starttime_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
return PyLong_FromUnsignedLong(DCC(self->data)->starttime);
}
PyDoc_STRVAR(PyDcc_transfd_doc,
"Bytes transferred"
);
static PyObject *PyDcc_transfd_get(PyDcc *self, void *closure)
{
RET_NULL_IF_INVALID(self->data);
return PyLong_FromUnsignedLong(DCC(self->data)->transfd);
}
/* specialized getters/setters */
static PyGetSetDef PyDcc_getseters[] = {
{"orig_type", (getter)PyDcc_orig_type_get, NULL,
PyDcc_orig_type_doc, NULL},
{"created", (getter)PyDcc_created_get, NULL,
PyDcc_created_doc, NULL},
{"server", (getter)PyDcc_server_get, NULL,
PyDcc_server_doc, NULL},
{"servertag", (getter)PyDcc_servertag_get, NULL,
PyDcc_servertag_doc, NULL},
{"mynick", (getter)PyDcc_mynick_get, NULL,
PyDcc_mynick_doc, NULL},
{"nick", (getter)PyDcc_nick_get, NULL,
PyDcc_nick_doc, NULL},
{"chat", (getter)PyDcc_chat_get, NULL,
PyDcc_chat_doc, NULL},
{"target", (getter)PyDcc_target_get, NULL,
PyDcc_target_doc, NULL},
{"arg", (getter)PyDcc_arg_get, NULL,
PyDcc_arg_doc, NULL},
{"addr", (getter)PyDcc_addr_get, NULL,
PyDcc_addr_doc, NULL},
{"port", (getter)PyDcc_port_get, NULL,
PyDcc_port_doc, NULL},
{"starttime", (getter)PyDcc_starttime_get, NULL,
PyDcc_starttime_doc, NULL},
{"transfd", (getter)PyDcc_transfd_get, NULL,
PyDcc_transfd_doc, NULL},
{NULL}
};
/* Methods */
PyDoc_STRVAR(PyDcc_destroy_doc,
"destroy() -> None\n"
"\n"
"Destroy DCC connection\n"
);
static PyObject *PyDcc_destroy(PyDcc *self, PyObject *args)
{
RET_NULL_IF_INVALID(self->data);
dcc_destroy(DCC(self->data));
Py_RETURN_NONE;
}
PyDoc_STRVAR(PyDcc_reject_doc,
"reject() -> None\n"
"\n"
"?\n"
);
static PyObject *PyDcc_reject(PyDcc *self, PyObject *args, PyObject *kwds)
{
static char *kwlist[] = {"server", NULL};
PyObject *server = NULL;
RET_NULL_IF_INVALID(self->data);
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O", kwlist,
&server))
return NULL;
if (!pyirc_server_check(server))
return PyErr_Format(PyExc_TypeError, "arg must be IRC server object");
dcc_reject(self->data, ((PyIrcServer*)server)->data);
Py_RETURN_NONE;
}
PyDoc_STRVAR(PyDcc_close_doc,
"close() -> None\n"
"\n"
"Close and destroy DCC connection.\n"
);
static PyObject *PyDcc_close(PyDcc *self, PyObject *args)
{
RET_NULL_IF_INVALID(self->data);
dcc_close(self->data);
Py_RETURN_NONE;
}
/* Methods for object */
static PyMethodDef PyDcc_methods[] = {
{"destroy", (PyCFunction)PyDcc_destroy, METH_NOARGS,
PyDcc_destroy_doc},
{"reject", (PyCFunction)PyDcc_reject, METH_VARARGS | METH_KEYWORDS,
PyDcc_reject_doc},
{"close", (PyCFunction)PyDcc_close, METH_NOARGS,
PyDcc_close_doc},
{NULL} /* Sentinel */
};
PyTypeObject PyDccType = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"irssi.Dcc", /*tp_name*/
sizeof(PyDcc), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)PyDcc_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
"PyDcc objects", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
PyDcc_methods, /* tp_methods */
0, /* tp_members */
PyDcc_getseters, /* tp_getset */
&PyIrssiBaseType, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
};
/* Dcc factory function */
PyObject *pydcc_sub_new(void *dcc, const char *name, PyTypeObject *subclass)
{
PyObject *chat = NULL, *server = NULL;
PyDcc *pydcc;
DCC_REC *rec = dcc;
server = py_irssi_chat_new(rec->server, 1);
if (!server)
return NULL;
chat = py_irssi_chat_new(rec->chat, 1);
if (!chat)
{
Py_DECREF(server);
return NULL;
}
pydcc = py_instp(PyDcc, subclass);
if (!pydcc)
{
Py_DECREF(server);
Py_DECREF(chat);
return NULL;
}
pydcc->data = dcc;
pydcc->server = server;
pydcc->chat = chat;
pydcc->base_name = name;
pydcc->cleanup_installed = 1;
signal_add_last_data("dcc destroyed", dcc_cleanup, pydcc);
return (PyObject *)pydcc;
}
PyObject *pydcc_new(void *dcc)
{
static const char *name = "DCC";
return pydcc_sub_new(dcc, name, &PyDccType);
}
int dcc_object_init(void)
{
g_return_val_if_fail(py_module != NULL, 0);
if (PyType_Ready(&PyDccType) < 0)
return 0;
Py_INCREF(&PyDccType);
PyModule_AddObject(py_module, "Dcc", (PyObject *)&PyDccType);
return 1;
}
|