rand.c: Some gratuitous reformatting.
[catacomb-python] / bytestring.c
CommitLineData
d7ab1bab 1/* -*-c-*-
2 *
d7ab1bab 3 * Byte strings
4 *
5 * (c) 2004 Straylight/Edgeware
6 */
7
b2687a0a 8/*----- Licensing notice --------------------------------------------------*
d7ab1bab 9 *
10 * This file is part of the Python interface to Catacomb.
11 *
12 * Catacomb/Python is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
b2687a0a 16 *
d7ab1bab 17 * Catacomb/Python is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
b2687a0a 21 *
d7ab1bab 22 * You should have received a copy of the GNU General Public License
23 * along with Catacomb/Python; if not, write to the Free Software Foundation,
24 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
26
27/*----- Header files ------------------------------------------------------*/
28
29#include "catacomb-python.h"
30
31/*----- Main code ---------------------------------------------------------*/
32
805a0f2b 33static PyTypeObject *bytestring_pytype;
d7ab1bab 34
4d09d07e
MW
35static PyObject *empty, *bytev[256];
36
438b1639 37static PyObject *allocate(PyTypeObject *ty, size_t n)
d7ab1bab 38{
cfb291f0
MW
39 BINOBJ *x;
40 x = (BINOBJ *)ty->tp_alloc(ty, n);
d7ab1bab 41 x->ob_sval[n] = 0;
69e13768 42#if defined(CACHE_HASH) || PY_VERSION_HEX >= 0x02030000
d7ab1bab 43 x->ob_shash = -1;
44#endif
3aa33042 45 x->ob_sstate = SSTATE_NOT_INTERNED;
d7ab1bab 46 return ((PyObject *)x);
47}
48
438b1639
MW
49static PyObject *dowrap(PyTypeObject *ty, const void *p, size_t n)
50{
51 PyObject *x;
4d09d07e
MW
52 int ch;
53
54 if (p && ty == bytestring_pytype) {
55 if (!n) {
56 if (!empty) empty = allocate(ty, 0);
57 Py_INCREF(empty); return (empty);
58 } else if (n == 1 && (ch = *(unsigned char *)p) < sizeof(bytev)) {
59 if (!bytev[ch])
cfb291f0 60 { bytev[ch] = allocate(ty, 1); *BIN_PTR(bytev[ch]) = ch; }
4d09d07e
MW
61 Py_INCREF(bytev[ch]); return (bytev[ch]);
62 }
63 }
438b1639
MW
64
65 x = allocate(ty, n);
cfb291f0 66 if (p) memcpy(BIN_PTR(x), p, n);
438b1639
MW
67 return (x);
68}
69
46e6ad89 70PyObject *bytestring_pywrap(const void *p, size_t n)
71 { return (dowrap(bytestring_pytype, p, n)); }
72
d7ab1bab 73PyObject *bytestring_pywrapbuf(buf *b)
46e6ad89 74 { return (dowrap(bytestring_pytype, BCUR(b), BLEFT(b))); }
75
76static PyObject *bytestring_pynew(PyTypeObject *ty,
77 PyObject *arg, PyObject *kw)
78{
be17c8c2 79 struct bin in;
827f89d7 80 static const char *const kwlist[] = { "data", 0 };
be17c8c2 81 if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&:new", KWLIST, convbin, &in))
46e6ad89 82 return (0);
be17c8c2 83 return (dowrap(ty, in.p, in.sz));
46e6ad89 84}
d7ab1bab 85
2a21aec7 86static PyObject *meth_ctstreq(PyObject *me, PyObject *arg)
bfb450cc 87{
be17c8c2
MW
88 struct bin s0, s1;
89 if (!PyArg_ParseTuple(arg, "O&O&:ctstreq", convbin, &s0 , convbin, &s1))
bfb450cc 90 goto end;
be17c8c2 91 if (s0.sz == s1.sz && ct_memeq(s0.p, s1.p, s0.sz)) RETURN_TRUE;
bfb450cc
MW
92 else RETURN_FALSE;
93end:
94 return (0);
95}
96
b16009b0 97static PyObject *bymeth_zero(PyObject *me, PyObject *arg)
5a8b43b3
MW
98{
99 size_t sz;
100 PyObject *rc = 0;
b16009b0 101 if (!PyArg_ParseTuple(arg, "O&:zero", convszt, &sz)) goto end;
5a8b43b3 102 rc = bytestring_pywrap(0, sz);
cfb291f0 103 memset(BIN_PTR(rc), 0, sz);
5a8b43b3
MW
104end:
105 return (rc);
106}
107
bfb450cc
MW
108static PyObject *bytestring_pyrichcompare(PyObject *me,
109 PyObject *you, int op)
110{
be17c8c2 111 struct bin s0, s1;
bfb450cc 112 int b;
be17c8c2 113 Py_ssize_t minlen;
bfb450cc 114
cfb291f0 115 s0.p = BIN_PTR(me); s0.sz = BIN_LEN(me);
be17c8c2 116 if (!convbin(you, &s1)) { PyErr_Clear(); RETURN_NOTIMPL; }
bfb450cc
MW
117
118 switch (op) {
119 case Py_EQ:
be17c8c2 120 b = s0.sz == s1.sz && ct_memeq(s0.p, s1.p, s1.sz);
bfb450cc
MW
121 break;
122 case Py_NE:
be17c8c2 123 b = s0.sz != s1.sz || !ct_memeq(s0.p, s1.p, s1.sz);
bfb450cc
MW
124 break;
125 default:
be17c8c2
MW
126 minlen = s0.sz < s1.sz ? s0.sz : s1.sz;
127 b = memcmp(s0.p, s1.p, minlen);
128 if (!b) b = s0.sz < s1.sz ? -1 : s0.sz > s1.sz ? +1 : 0;
bfb450cc
MW
129 switch (op) {
130 case Py_LT: b = b < 0; break;
131 case Py_LE: b = b <= 0; break;
132 case Py_GE: b = b >= 0; break;
133 case Py_GT: b = b > 0; break;
134 default: abort();
135 }
136 }
137 if (b) RETURN_TRUE;
138 else RETURN_FALSE;
139}
140
bb5c23a4
MW
141static PyObject *bytestring_pyconcat(PyObject *x, PyObject *y)
142{
be17c8c2 143 struct bin xx, yy;
bb5c23a4
MW
144 PyObject *z = 0; char *zp; size_t zsz;
145
be17c8c2
MW
146 if (!convbin(x, &xx) || !convbin(y, &yy)) goto end;
147 zsz = (size_t)xx.sz + (size_t)yy.sz;
148 if (xx.sz < 0 || yy.sz < 0 || zsz < xx.sz) VALERR("too long");
cfb291f0 149 z = bytestring_pywrap(0, zsz); zp = BIN_PTR(z);
be17c8c2 150 memcpy(zp, xx.p, xx.sz); memcpy(zp + xx.sz, yy.p, yy.sz);
bb5c23a4
MW
151end:
152 return (z);
153}
154
155static PyObject *bytestring_pyrepeat(PyObject *me, Py_ssize_t n)
156{
157 const unsigned char *xp; size_t xsz;
158 PyObject *z = 0; char *zp; size_t zsz;
159
cfb291f0
MW
160 xp = (const unsigned char *)BIN_PTR(me);
161 xsz = BIN_LEN(me);
e8a6a67b 162 if (n < 0 || (n && xsz >= (size_t)-1/n)) VALERR("too long");
cfb291f0 163 zsz = n*xsz; z = bytestring_pywrap(0, zsz); zp = BIN_PTR(z);
bb5c23a4
MW
164 if (xsz == 1) memset(zp, *xp, zsz);
165 else while (zsz) { memcpy(zp, xp, xsz); zp += xsz; zsz -= xsz; }
166end:
167 return (z);
168}
169
170static PyObject *bytestring_pyitem(PyObject *me, Py_ssize_t i)
171{
172 PyObject *rc = 0;
173
cfb291f0
MW
174 if (i < 0 || i >= BIN_LEN(me)) IXERR("out of range");
175 rc = bytestring_pywrap(BIN_PTR(me) + i, 1);
bb5c23a4
MW
176end:
177 return (rc);
178}
179
180static PyObject *bytestring_pyslice(PyObject *me, Py_ssize_t i, Py_ssize_t j)
181{
182 PyObject *rc = 0;
cfb291f0 183 size_t n = BIN_LEN(me);
bb5c23a4
MW
184
185 if (i < 0) i = 0;
186 if (j < 0) j = 0;
187 else if (j > n) j = n;
188 if (j < i) i = j = 0;
f984b31a 189 if (i == 0 && j == n && Py_TYPE(me) == bytestring_pytype)
bb5c23a4 190 { Py_INCREF(me); rc = me; goto end; }
cfb291f0 191 rc = bytestring_pywrap(BIN_PTR(me) + i, j - i);
bb5c23a4
MW
192end:
193 return (rc);
194}
195
196static PyObject *bytestring_pysubscript(PyObject *me, PyObject *ix)
197{
198 Py_ssize_t i, j, k, n;
199 const unsigned char *p;
200 unsigned char *q;
201 PyObject *rc = 0;
202
203 if (PyIndex_Check(ix)) {
204 i = PyNumber_AsSsize_t(ix, PyExc_IndexError);
205 if (i == -1 && PyErr_Occurred()) return (0);
cfb291f0 206 if (i < 0) i += BIN_LEN(me);
bb5c23a4
MW
207 rc = bytestring_pyitem(me, i);
208 } else if (PySlice_Check(ix)) {
cfb291f0 209 if (PySlice_GetIndicesEx((PySliceObject *)ix, BIN_LEN(me),
bb5c23a4
MW
210 &i, &j, &k, &n))
211 return (0);
212 if (k == 1) return bytestring_pyslice(me, i, j);
213 rc = bytestring_pywrap(0, n);
cfb291f0
MW
214 p = (unsigned char *)BIN_PTR(me) + i;
215 q = (unsigned char *)BIN_PTR(rc);
bb5c23a4
MW
216 while (n--) { *q++ = *p; p += k; }
217 } else
218 TYERR("wanted integer or slice");
219end:
220 return (rc);
221}
222
d7ab1bab 223#define BINOP(name, op) \
224 static PyObject *bytestring_py##name(PyObject *x, PyObject *y) { \
be17c8c2 225 struct bin xx, yy; \
d7ab1bab 226 const unsigned char *xp, *yp; \
227 unsigned char *zp; \
d7ab1bab 228 int i; \
229 PyObject *rc = 0; \
be17c8c2
MW
230 if (!convbin(x, &xx) || !convbin(y, &yy)) goto end; \
231 if (xx.sz != yy.sz) VALERR("length mismatch"); \
232 rc = bytestring_pywrap(0, xx.sz); \
cfb291f0 233 xp = xx.p; yp = yy.p; zp = (unsigned char *)BIN_PTR(rc); \
be17c8c2 234 for (i = xx.sz; i > 0; i--) *zp++ = *xp++ op *yp++; \
d7ab1bab 235 end: \
236 return (rc); \
237 }
238BINOP(and, &)
239BINOP(or, |)
240BINOP(xor, ^)
241
242#define UNOP(name, op) \
243 static PyObject *bytestring_py##name(PyObject *x) { \
be17c8c2 244 struct bin xx; \
d7ab1bab 245 const unsigned char *xp; \
246 unsigned char *zp; \
d7ab1bab 247 int i; \
248 PyObject *rc = 0; \
be17c8c2
MW
249 if (!convbin(x, &xx)) goto end; \
250 rc = bytestring_pywrap(0, xx.sz); \
cfb291f0 251 xp = xx.p; zp = (unsigned char *)BIN_PTR(rc); \
be17c8c2 252 for (i = xx.sz; i > 0; i--) *zp++ = op *xp++; \
d7ab1bab 253 end: \
254 return (rc); \
255 }
256UNOP(not, ~)
257
b16009b0
MW
258static const PyMethodDef bytestring_pymethods[] = {
259#define METHNAME(name) bymeth_##name
260 SMTH (zero, "zero(N) -> 0000...00")
261#undef METHNAME
262 { 0 }
263};
264
637b9140 265static const PyNumberMethods bytestring_pynumber = {
d7ab1bab 266 0, /* @nb_add@ */
267 0, /* @nb_subtract@ */
268 0, /* @nb_multiply@ */
269 0, /* @nb_divide@ */
270 0, /* @nb_remainder@ */
271 0, /* @nb_divmod@ */
272 0, /* @nb_power@ */
273 0, /* @nb_negative@ */
274 0, /* @nb_positive@ */
275 0, /* @nb_absolute@ */
276 0, /* @nb_nonzero@ */
277 bytestring_pynot, /* @nb_invert@ */
278 0, /* @nb_lshift@ */
279 0, /* @nb_rshift@ */
280 bytestring_pyand, /* @nb_and@ */
281 bytestring_pyxor, /* @nb_xor@ */
282 bytestring_pyor, /* @nb_or@ */
283 0, /* @nb_coerce@ */
284 0, /* @nb_int@ */
285 0, /* @nb_long@ */
286 0, /* @nb_float@ */
287 0, /* @nb_oct@ */
288 0, /* @nb_hex@ */
289};
290
637b9140 291static const PySequenceMethods bytestring_pysequence = {
bb5c23a4
MW
292 0, /* @sq_length@ */
293 bytestring_pyconcat, /* @sq_concat@ */
294 bytestring_pyrepeat, /* @sq_repeat@ */
295 bytestring_pyitem, /* @sq_item@ */
296 bytestring_pyslice, /* @sq_slice@ */
297 0, /* @sq_ass_item@ */
298 0, /* @sq_ass_slice@ */
299 0, /* @sq_contains@ */
300 0, /* @sq_inplace_concat@ */
301 0, /* @sq_inplace_repeat@ */
302};
303
637b9140 304static const PyMappingMethods bytestring_pymapping = {
bb5c23a4
MW
305 0, /* @mp_length@ */
306 bytestring_pysubscript, /* @mp_subscript@ */
307 0, /* @mp_ass_subscript@ */
308};
309
ddd4720b 310static const PyTypeObject bytestring_pytype_skel = {
4648f560 311 PyVarObject_HEAD_INIT(0, 0) /* Header */
c461c9b3 312 "ByteString", /* @tp_name@ */
d7ab1bab 313 0, /* @tp_basicsize@ */
314 0, /* @tp_itemsize@ */
315
316 0, /* @tp_dealloc@ */
317 0, /* @tp_print@ */
318 0, /* @tp_getattr@ */
319 0, /* @tp_setattr@ */
320 0, /* @tp_compare@ */
321 0, /* @tp_repr@ */
637b9140
MW
322 PYNUMBER(bytestring), /* @tp_as_number@ */
323 PYSEQUENCE(bytestring), /* @tp_as_sequence@ */
324 PYMAPPING(bytestring), /* @tp_as_mapping@ */
d7ab1bab 325 0, /* @tp_hash@ */
326 0, /* @tp_call@ */
327 0, /* @tp_str@ */
328 0, /* @tp_getattro@ */
329 0, /* @tp_setattro@ */
52f65fb3 330 0, /* @tp_as_buffer@ */
d7ab1bab 331 Py_TPFLAGS_DEFAULT | /* @tp_flags@ */
332 Py_TPFLAGS_CHECKTYPES |
333 Py_TPFLAGS_BASETYPE,
334
335 /* @tp_doc@ */
ef783f91 336 "ByteString(STR): byte string class.",
d7ab1bab 337
338 0, /* @tp_traverse@ */
339 0, /* @tp_clear@ */
bfb450cc 340 bytestring_pyrichcompare, /* @tp_richcompare@ */
d7ab1bab 341 0, /* @tp_weaklistoffset@ */
342 0, /* @tp_iter@ */
963a6148 343 0, /* @tp_iternext@ */
b16009b0 344 PYMETHODS(bytestring), /* @tp_methods@ */
d7ab1bab 345 0, /* @tp_members@ */
346 0, /* @tp_getset@ */
347 0, /* @tp_base@ */
348 0, /* @tp_dict@ */
349 0, /* @tp_descr_get@ */
350 0, /* @tp_descr_set@ */
351 0, /* @tp_dictoffset@ */
352 0, /* @tp_init@ */
353 PyType_GenericAlloc, /* @tp_alloc@ */
46e6ad89 354 bytestring_pynew, /* @tp_new@ */
3aa33042 355 0, /* @tp_free@ */
d7ab1bab 356 0 /* @tp_is_gc@ */
357};
358
359/*----- Initialization ----------------------------------------------------*/
360
637b9140 361static const PyMethodDef methods[] = {
bfb450cc 362#define METHNAME(func) meth_##func
ef783f91 363 METH (ctstreq, "ctstreq(S, T) -> BOOL")
bfb450cc
MW
364#undef METHNAME
365 { 0 }
366};
367
cfb291f0 368#define string_pytype &BIN_TYPE
d7ab1bab 369void bytestring_pyinit(void)
370{
371 INITTYPE(bytestring, string);
bfb450cc 372 addmethods(methods);
d7ab1bab 373}
374
375void bytestring_pyinsert(PyObject *mod)
376{
377 INSERT("ByteString", bytestring_pytype);
378}
379
380/*----- That's all, folks -------------------------------------------------*/