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 506 507 508
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
%module cproton
%{
/* Includes the header in the wrapper code */
#if defined(_WIN32) && ! defined(__CYGWIN__)
#include <winsock2.h>
#endif
/* TODO: Remove once pn_work_head() and related have been removed from Proton */
#define PN_USE_DEPRECATED_API 1
#include <proton/engine.h>
#include <proton/message.h>
#include <proton/object.h>
#include <proton/sasl.h>
#include <proton/messenger.h>
#include <proton/ssl.h>
/*
NOTE: According to ccache-swig man page: "Known problems are using
preprocessor directives within %inline blocks and the use of ’#pragma SWIG’."
This includes using macros in an %inline section.
Keep preprocessor directives and macro expansions in the normal header section.
*/
PN_HANDLE(PNI_PYTRACER);
%}
%include <cstring.i>
%cstring_output_allocate_size(char **ALLOC_OUTPUT, size_t *ALLOC_SIZE, free(*$1));
%cstring_output_maxsize(char *OUTPUT, size_t MAX_OUTPUT_SIZE)
%include <pybuffer.i>
%pybuffer_binary(const char *BIN_IN, size_t BIN_LEN)
// Typemap for methods that return binary data:
// force the return type as binary - this is necessary for Python3
%typemap(in,noblock=1,fragment=SWIG_AsVal_frag(size_t)) (char *BIN_OUT, size_t *BIN_SIZE)
(int res, size_t n, char *buff = 0, $*2_ltype size) {
res = SWIG_AsVal(size_t)($input, &n);
if (!SWIG_IsOK(res)) {
%argument_fail(res, "(char *BIN_OUT, size_t *BIN_SIZE)", $symname, $argnum);
}
buff= %new_array(n+1, char);
$1 = %static_cast(buff, $1_ltype);
size = %numeric_cast(n,$*2_ltype);
$2 = &size;
}
%typemap(freearg,noblock=1,match="in")(char *BIN_OUT, size_t *BIN_SIZE) {
if (buff$argnum) %delete_array(buff$argnum);
}
%typemap(argout,noblock=1) (char *BIN_OUT, size_t *BIN_SIZE) {
%append_output(PyBytes_FromStringAndSize($1,*$2));
}
// Typemap for those methods that return variable length text data in a buffer
// provided as a parameter. If the method fails we must avoid attempting to
// decode the contents of the buffer as it does not carry valid text data.
%typemap(in,noblock=1,fragment=SWIG_AsVal_frag(size_t)) (char *VTEXT_OUT, size_t *VTEXT_SIZE)
(int res, size_t n, char *buff = 0, $*2_ltype size) {
res = SWIG_AsVal(size_t)($input, &n);
if (!SWIG_IsOK(res)) {
%argument_fail(res, "(char *VTEXT_OUT, size_t *VTEXT_SIZE)", $symname, $argnum);
}
buff = %new_array(n+1, char);
$1 = %static_cast(buff, $1_ltype);
size = %numeric_cast(n,$*2_ltype);
$2 = &size;
}
%typemap(freearg,noblock=1,match="in")(char *VTEXT_OUT, size_t *VTEXT_SIZE) {
if (buff$argnum) %delete_array(buff$argnum);
}
%typemap(argout,noblock=1,fragment="SWIG_FromCharPtrAndSize") (char *VTEXT_OUT, size_t *VTEXT_SIZE) {
%append_output(SWIG_FromCharPtrAndSize($1,*$2));
}
// These are not used/needed in the python binding
%ignore pn_dtag;
%ignore pn_message_id;
%ignore pn_message_correlation_id;
%ignore pn_list;
%ignore pn_list_size;
%ignore pn_list_get;
%ignore pn_list_set;
%ignore pn_list_add;
%ignore pn_list_pop;
%ignore pn_list_index;
%ignore pn_list_remove;
%ignore pn_list_del;
%ignore pn_list_clear;
%ignore pn_list_iterator;
%ignore pn_list_minpush;
%ignore pn_list_minpop;
%ignore pn_map;
%ignore pn_map_size;
%ignore pn_map_put;
%ignore pn_map_get;
%ignore pn_map_del;
%ignore pn_map_head;
%ignore pn_map_next;
%ignore pn_map_key;
%ignore pn_map_value;
%ignore pn_hash;
%ignore pn_hash_size;
%ignore pn_hash_put;
%ignore pn_hash_get;
%ignore pn_hash_del;
%ignore pn_hash_head;
%ignore pn_hash_next;
%ignore pn_hash_key;
%ignore pn_hash_value;
%ignore pn_stringn;
%ignore pn_string_size;
%ignore pn_string_set;
%ignore pn_string_setn;
%ignore pn_string_put;
%ignore pn_string_clear;
%ignore pn_string_format;
%ignore pn_string_vformat;
%ignore pn_string_addf;
%ignore pn_string_vaddf;
%ignore pn_string_grow;
%ignore pn_string_buffer;
%ignore pn_string_capacity;
%ignore pn_string_resize;
%ignore pn_string_copy;
%ignore pn_iterator;
%ignore pn_iterator_start;
%ignore pn_iterator_next;
%typemap(in) pn_handle_t {
$1 = PyLong_AsVoidPtr($input);
}
%typemap(out) pn_handle_t {
$result = PyLong_FromVoidPtr((void*)$1);
}
%typemap(in) pn_bytes_t {
if ($input == Py_None) {
$1.start = NULL;
$1.size = 0;
} else {
$1.start = PyBytes_AsString($input);
if (!$1.start) {
return NULL;
}
$1.size = PyBytes_Size($input);
}
}
%typemap(out) pn_bytes_t {
$result = PyBytes_FromStringAndSize($1.start, $1.size);
}
%typemap(in) pn_msgid_t {
if (PyTuple_Check($input)) {
pn_type_t type = PyLong_AsUnsignedLong(PyTuple_GetItem($input, 0));
PyObject* obj = PyTuple_GetItem($input, 1);
switch (type) {
case PN_NULL:
break;
case PN_ULONG:
$1.u.as_ulong = PyLong_AsUnsignedLong(obj);
break;
case PN_UUID:
if (PyBytes_Check(obj)) {
memmove(&$1.u.as_uuid, PyBytes_AsString(obj), (PyBytes_Size(obj) < 16 ? PyBytes_Size(obj) : 16));
break;
}
PyErr_SetString(PyExc_TypeError, "Require bytes for uuid id");
SWIG_fail;
case PN_BINARY:
if (PyBytes_Check(obj)) {
$1.u.as_bytes = (pn_bytes_t){.size=PyBytes_Size(obj), .start=PyBytes_AsString(obj)};
break;
}
PyErr_SetString(PyExc_TypeError, "Require bytes for binary id");
SWIG_fail;
case PN_STRING:
if (PyBytes_Check(obj)) {
$1.u.as_bytes = (pn_bytes_t){.size=PyBytes_Size(obj), .start=PyBytes_AsString(obj)};
break;
}
PyErr_SetString(PyExc_TypeError, "Require bytes for string id");
SWIG_fail;
default:
PyErr_SetString(PyExc_ValueError, "Invalid type selector for id");
SWIG_fail;
}
$1.type = type;
} else if (PyLong_Check($input)) {
$1.type = PN_ULONG;
$1.u.as_ulong = PyLong_AsUnsignedLong($input);
} else if (PyBytes_Check($input)) {
$1.type = PN_BINARY;
$1.u.as_bytes = (pn_bytes_t){.size=PyBytes_Size($input), .start=PyBytes_AsString($input)};
} else if (PyUnicode_Check($input)) {
$1.type = PN_STRING;
Py_ssize_t utf8size;
const char *utf8 = PyUnicode_AsUTF8AndSize($input, &utf8size);
$1.u.as_bytes = (pn_bytes_t){.size=utf8size, .start=utf8};
} else if ($input == Py_None) {
$1.type = PN_NULL;
} else {
PyErr_SetString(PyExc_TypeError, "Cannot convert to id");
SWIG_fail;
}
}
%typemap(out) pn_msgid_t {
switch ($1.type) {
case PN_NULL:
Py_INCREF(Py_None);
$result = Py_None;
break;
case PN_ULONG:
$result = PyLong_FromUnsignedLong($1.u.as_ulong);
break;
case PN_BINARY:
$result = PyBytes_FromStringAndSize($1.u.as_bytes.start, $1.u.as_bytes.size);
break;
case PN_STRING:
$result = PyUnicode_FromStringAndSize($1.u.as_bytes.start, $1.u.as_bytes.size);
break;
case PN_UUID:
$result = PyTuple_New(2);
PyTuple_SetItem($result, 0, PyLong_FromUnsignedLong($1.type));
PyTuple_SetItem($result, 1, PyBytes_FromStringAndSize($1.u.as_uuid.bytes, 16));
break;
// Theses 2 cases are for compatibility with the broken ruby binding
case PN_INT: {
int32_t v = $1.u.as_int;
if (v>=0) {
$result = PyLong_FromLong(v);
break;
}
Py_INCREF(Py_None);
$result = Py_None;
break;
}
case PN_LONG: {
int64_t v = $1.u.as_long;
if (v>=0) {
$result = PyLong_FromLong(v);
break;
}
}
default:
Py_INCREF(Py_None);
$result = Py_None;
break;
}
}
%typemap(out) pn_delivery_tag_t {
$result = PyBytes_FromStringAndSize($1.bytes, $1.size);
}
%typemap(in) pn_uuid_t {
memset($1.bytes, 0, 16);
if ($input == Py_None) {
; // Already zeroed out
} else {
const char* b = PyBytes_AsString($input);
if (b) {
memmove($1.bytes, b, (PyBytes_Size($input) < 16 ? PyBytes_Size($input) : 16));
} else {
return NULL;
}
}
}
%typemap(out) pn_uuid_t {
$result = PyBytes_FromStringAndSize($1.bytes, 16);
}
%apply pn_uuid_t { pn_decimal128_t };
int pn_message_encode(pn_message_t *msg, char *BIN_OUT, size_t *BIN_SIZE);
%ignore pn_message_encode;
int pn_message_decode(pn_message_t *msg, const char *BIN_IN, size_t BIN_LEN);
%ignore pn_message_decode;
ssize_t pn_link_send(pn_link_t *transport, const char *BIN_IN, size_t BIN_LEN);
%ignore pn_link_send;
%rename(pn_link_recv) wrap_pn_link_recv;
%inline %{
ssize_t wrap_pn_link_recv(pn_link_t *link, char *BIN_OUT, size_t *BIN_SIZE) {
ssize_t sz = pn_link_recv(link, BIN_OUT, *BIN_SIZE);
if (sz >= 0) {
*BIN_SIZE = sz;
} else {
*BIN_SIZE = 0;
}
return sz;
}
%}
%ignore pn_link_recv;
ssize_t pn_transport_push(pn_transport_t *transport, const char *BIN_IN, size_t BIN_LEN);
%ignore pn_transport_push;
%rename(pn_transport_peek) wrap_pn_transport_peek;
%inline %{
ssize_t wrap_pn_transport_peek(pn_transport_t *transport, char *BIN_OUT, size_t *BIN_SIZE) {
ssize_t sz = pn_transport_peek(transport, BIN_OUT, *BIN_SIZE);
if (sz >= 0) {
*BIN_SIZE = sz;
} else {
*BIN_SIZE = 0;
}
return sz;
}
%}
%ignore pn_transport_peek;
%rename(pn_delivery) wrap_pn_delivery;
%inline %{
pn_delivery_t *wrap_pn_delivery(pn_link_t *link, char *STRING, size_t LENGTH) {
return pn_delivery(link, pn_dtag(STRING, LENGTH));
}
%}
%ignore pn_delivery;
%rename(pn_delivery_tag) wrap_pn_delivery_tag;
%inline %{
void wrap_pn_delivery_tag(pn_delivery_t *delivery, char **ALLOC_OUTPUT, size_t *ALLOC_SIZE) {
pn_delivery_tag_t tag = pn_delivery_tag(delivery);
*ALLOC_OUTPUT = (char *) malloc(tag.size);
*ALLOC_SIZE = tag.size;
memcpy(*ALLOC_OUTPUT, tag.start, tag.size);
}
%}
%ignore pn_delivery_tag;
ssize_t pn_data_decode(pn_data_t *data, const char *BIN_IN, size_t BIN_LEN);
%ignore pn_data_decode;
%rename(pn_data_encode) wrap_pn_data_encode;
%inline %{
ssize_t wrap_pn_data_encode(pn_data_t *data, char *BIN_OUT, size_t *BIN_SIZE) {
ssize_t sz = pn_data_encode(data, BIN_OUT, *BIN_SIZE);
if (sz >= 0) {
*BIN_SIZE = sz;
} else {
*BIN_SIZE = 0;
}
return sz;
}
%}
%ignore pn_data_encode;
%rename(pn_data_format) wrap_pn_data_format;
%inline %{
int wrap_pn_data_format(pn_data_t *data, char *VTEXT_OUT, size_t *VTEXT_SIZE) {
int err = pn_data_format(data, VTEXT_OUT, VTEXT_SIZE);
if (err) *VTEXT_SIZE = 0;
return err;
}
%}
%ignore pn_data_format;
bool pn_ssl_get_cipher_name(pn_ssl_t *ssl, char *OUTPUT, size_t MAX_OUTPUT_SIZE);
%ignore pn_ssl_get_cipher_name;
bool pn_ssl_get_protocol_name(pn_ssl_t *ssl, char *OUTPUT, size_t MAX_OUTPUT_SIZE);
%ignore pn_ssl_get_protocol_name;
char* pn_ssl_get_remote_subject_subfield(pn_ssl_t *ssl, pn_ssl_cert_subject_subfield field);
%ignore pn_ssl_get_remote_subject_subfield;
int pn_ssl_get_cert_fingerprint(pn_ssl_t *ssl, char *OUTPUT, size_t MAX_OUTPUT_SIZE, pn_ssl_hash_alg hash_alg);
%ignore pn_ssl_get_cert_fingerprint;
%rename(pn_ssl_get_peer_hostname) wrap_pn_ssl_get_peer_hostname;
%inline %{
int wrap_pn_ssl_get_peer_hostname(pn_ssl_t *ssl, char *VTEXT_OUT, size_t *VTEXT_SIZE) {
int err = pn_ssl_get_peer_hostname(ssl, VTEXT_OUT, VTEXT_SIZE);
if (err) *VTEXT_SIZE = 0;
return err;
}
%}
%ignore pn_ssl_get_peer_hostname;
%immutable PN_PYREF;
%inline %{
extern const pn_class_t PN_PYREF[];
#define CID_pn_pyref CID_pn_void
#define pn_pyref_new NULL
#define pn_pyref_initialize NULL
#define pn_pyref_finalize NULL
#define pn_pyref_free NULL
#define pn_pyref_hashcode pn_void_hashcode
#define pn_pyref_compare pn_void_compare
#define pn_pyref_inspect pn_void_inspect
static void pn_pyref_incref(void *object) {
PyObject* p = (PyObject*) object;
SWIG_PYTHON_THREAD_BEGIN_BLOCK;
Py_XINCREF(p);
SWIG_PYTHON_THREAD_END_BLOCK;
}
static void pn_pyref_decref(void *object) {
PyObject* p = (PyObject*) object;
SWIG_PYTHON_THREAD_BEGIN_BLOCK;
Py_XDECREF(p);
SWIG_PYTHON_THREAD_END_BLOCK;
}
static int pn_pyref_refcount(void *object) {
return 1;
}
static const pn_class_t *pn_pyref_reify(void *object) {
return PN_PYREF;
}
const pn_class_t PN_PYREF[] = {PN_METACLASS(pn_pyref)};
void *pn_py2void(PyObject *object) {
return object;
}
PyObject *pn_void2py(void *object) {
if (object) {
PyObject* p = (PyObject*) object;
SWIG_PYTHON_THREAD_BEGIN_BLOCK;
Py_INCREF(p);
SWIG_PYTHON_THREAD_END_BLOCK;
return p;
} else {
Py_RETURN_NONE;
}
}
PyObject *pn_cast_pn_void(void *object) {
return pn_void2py(object);
}
void pn_pytracer(pn_transport_t *transport, const char *message) {
PyObject *pytracer = (PyObject *) pn_record_get(pn_transport_attachments(transport), PNI_PYTRACER);
SWIG_PYTHON_THREAD_BEGIN_BLOCK;
PyObject *pytrans = SWIG_NewPointerObj(transport, SWIGTYPE_p_pn_transport_t, 0);
PyObject *pymsg = PyString_FromString(message);
PyObject *result = PyObject_CallFunctionObjArgs(pytracer, pytrans, pymsg, NULL);
if (!result) {
PyErr_PrintEx(true);
}
Py_XDECREF(pytrans);
Py_XDECREF(pymsg);
Py_XDECREF(result);
SWIG_PYTHON_THREAD_END_BLOCK;
}
void pn_transport_set_pytracer(pn_transport_t *transport, PyObject *obj) {
pn_record_t *record = pn_transport_attachments(transport);
pn_record_def(record, PNI_PYTRACER, PN_PYREF);
pn_record_set(record, PNI_PYTRACER, obj);
pn_transport_set_tracer(transport, pn_pytracer);
}
PyObject *pn_transport_get_pytracer(pn_transport_t *transport) {
pn_record_t *record = pn_transport_attachments(transport);
PyObject *obj = (PyObject *)pn_record_get(record, PNI_PYTRACER);
if (obj) {
Py_XINCREF(obj);
return obj;
} else {
Py_RETURN_NONE;
}
}
%}
%include "proton/cproton.i"
|