summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-07-21 18:20:57 +0000
committerBenny Prijono <bennylp@teluu.com>2008-07-21 18:20:57 +0000
commitf50466cf0839b9abd6beb12576e83b3a78b9013c (patch)
tree3da37da741d3cba8b6faeb0d0b3cb379358b249c
parentd96688e27a0e7d8c06ac3e399718a217daf6994e (diff)
Major modifications in Python module and pjsua.py wrapper:
- replaced call/acc/buddy dictionaries with user data attachment - recommended to install callback when creating the object, to prevent missing some events - fixed circular references by using weakref - protect access to pjsua with mutex; found out that without this there will be deadlock in Python - fixed memory leaks in the _pjsua.c module (objects reference counter not properly maintained) git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2163 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjsip-apps/src/python/_pjsua.c4215
-rw-r--r--pjsip-apps/src/python/_pjsua.h1670
-rw-r--r--pjsip-apps/src/python/pjsua.py401
-rw-r--r--pjsip-apps/src/python/samples/call.py28
-rw-r--r--pjsip-apps/src/python/samples/presence.py67
-rw-r--r--pjsip-apps/src/python/samples/registration.py2
-rw-r--r--pjsip-apps/src/python/samples/subscribe.py94
7 files changed, 2624 insertions, 3853 deletions
diff --git a/pjsip-apps/src/python/_pjsua.c b/pjsip-apps/src/python/_pjsua.c
index 65a48e90..1d70e042 100644
--- a/pjsip-apps/src/python/_pjsua.c
+++ b/pjsip-apps/src/python/_pjsua.c
@@ -19,17 +19,46 @@
#include "_pjsua.h"
#define THIS_FILE "main.c"
-#define POOL_SIZE 4000
+#define POOL_SIZE 512
#define SND_DEV_NUM 64
#define SND_NAME_LEN 64
/* LIB BASE */
-static PyObject* obj_log_cb;
-static long thread_id;
+static PyObject* g_obj_log_cb;
+static long g_thread_id;
+static struct py_thread_desc
+{
+ struct py_thread_desc *next;
+ pj_thread_desc desc;
+} *py_thread_desc;
+
+/*
+ * The global callback object.
+ */
+static PyObj_pjsua_callback * g_obj_callback;
+
+/* Set this to 1 if all threads are created by Python */
+#define NO_PJSIP_THREAD 1
+
+#if NO_PJSIP_THREAD
+# define ENTER_PYTHON()
+# define LEAVE_PYTHON()
+#else
+# define ENTER_PYTHON() PyGILState_STATE state = PyGILState_Ensure()
+# define LEAVE_PYTHON() PyGILState_Release(state)
+#endif
+
+
+static void clear_py_thread_desc(void)
+{
+ while (py_thread_desc) {
+ struct py_thread_desc *next = py_thread_desc->next;
+ free(py_thread_desc);
+ py_thread_desc = next;
+ }
+}
-#define ENTER_PYTHON() PyGILState_STATE state = PyGILState_Ensure()
-#define LEAVE_PYTHON() PyGILState_Release(state)
/*
* cb_log_cb
@@ -41,54 +70,56 @@ static void cb_log_cb(int level, const char *data, int len)
/* Ignore if this callback is called from alien thread context,
* or otherwise it will crash Python.
*/
- if (pj_thread_local_get(thread_id) == 0)
+ if (pj_thread_local_get(g_thread_id) == 0)
return;
- if (PyCallable_Check(obj_log_cb))
- {
+ if (PyCallable_Check(g_obj_log_cb)) {
+ PyObject *param_data;
+
ENTER_PYTHON();
- PyObject_CallFunctionObjArgs(
- obj_log_cb, Py_BuildValue("i",level),
- PyString_FromString(data), Py_BuildValue("i",len), NULL
+ param_data = PyString_FromStringAndSize(data, len);
+
+ PyObject_CallFunction(
+ g_obj_log_cb,
+ "iOi",
+ level,
+ param_data,
+ len,
+ NULL
);
+ Py_DECREF(param_data);
+
LEAVE_PYTHON();
}
}
-
-
-/*
- * The global callback object.
- */
-static PyObj_pjsua_callback * g_obj_callback;
-
-
/*
* cb_on_call_state
* declares method on_call_state for callback struct
*/
static void cb_on_call_state(pjsua_call_id call_id, pjsip_event *e)
{
- if (PyCallable_Check(g_obj_callback->on_call_state))
- {
- PyObj_pjsip_event * obj;
+ PJ_UNUSED_ARG(e);
+
+ if (PyCallable_Check(g_obj_callback->on_call_state)) {
+ PyObject * obj;
ENTER_PYTHON();
- obj = (PyObj_pjsip_event *)PyType_GenericNew(&PyTyp_pjsip_event,
- NULL, NULL);
-
- obj->event = e;
+ obj = Py_BuildValue("");
- PyObject_CallFunctionObjArgs(
+ PyObject_CallFunction(
g_obj_callback->on_call_state,
- Py_BuildValue("i",call_id),
+ "iO",
+ call_id,
obj,
NULL
);
+ Py_DECREF(obj);
+
LEAVE_PYTHON();
}
}
@@ -101,24 +132,26 @@ static void cb_on_call_state(pjsua_call_id call_id, pjsip_event *e)
static void cb_on_incoming_call(pjsua_acc_id acc_id, pjsua_call_id call_id,
pjsip_rx_data *rdata)
{
- if (PyCallable_Check(g_obj_callback->on_incoming_call))
- {
- PyObj_pjsip_rx_data * obj;
+ PJ_UNUSED_ARG(rdata);
+
+ if (PyCallable_Check(g_obj_callback->on_incoming_call)) {
+ PyObject *obj;
ENTER_PYTHON();
- obj = (PyObj_pjsip_rx_data *)PyType_GenericNew(&PyTyp_pjsip_rx_data,
- NULL, NULL);
- obj->rdata = rdata;
+ obj = Py_BuildValue("");
- PyObject_CallFunctionObjArgs(
+ PyObject_CallFunction(
g_obj_callback->on_incoming_call,
- Py_BuildValue("i",acc_id),
- Py_BuildValue("i",call_id),
+ "iiO",
+ acc_id,
+ call_id,
obj,
NULL
);
+ Py_DECREF(obj);
+
LEAVE_PYTHON();
}
}
@@ -130,8 +163,8 @@ static void cb_on_incoming_call(pjsua_acc_id acc_id, pjsua_call_id call_id,
*/
static void cb_on_call_media_state(pjsua_call_id call_id)
{
- if (PyCallable_Check(g_obj_callback->on_call_media_state))
- {
+ if (PyCallable_Check(g_obj_callback->on_call_media_state)) {
+
ENTER_PYTHON();
PyObject_CallFunction(
@@ -152,18 +185,18 @@ static void cb_on_call_media_state(pjsua_call_id call_id)
*/
static void cb_on_dtmf_digit(pjsua_call_id call_id, int digit)
{
- if (PyCallable_Check(g_obj_callback->on_dtmf_digit))
- {
+ if (PyCallable_Check(g_obj_callback->on_dtmf_digit)) {
char digit_str[10];
ENTER_PYTHON();
pj_ansi_snprintf(digit_str, sizeof(digit_str), "%c", digit);
- PyObject_CallFunctionObjArgs(
+ PyObject_CallFunction(
g_obj_callback->on_dtmf_digit,
- Py_BuildValue("i",call_id),
- PyString_FromString(digit_str),
+ "is",
+ call_id,
+ digit_str,
NULL
);
@@ -180,26 +213,32 @@ static void cb_on_call_transfer_request(pjsua_call_id call_id,
const pj_str_t *dst,
pjsip_status_code *code)
{
- if (PyCallable_Check(g_obj_callback->on_call_transfer_request))
- {
- PyObject * ret;
+ if (PyCallable_Check(g_obj_callback->on_call_transfer_request)) {
+ PyObject *ret, *param_dst;
int cd;
ENTER_PYTHON();
- ret = PyObject_CallFunctionObjArgs(
- g_obj_callback->on_call_transfer_request,
- Py_BuildValue("i",call_id),
- PyString_FromStringAndSize(dst->ptr, dst->slen),
- Py_BuildValue("i",*code),
- NULL
- );
+ param_dst = PyString_FromPJ(dst);
+
+ ret = PyObject_CallFunction(
+ g_obj_callback->on_call_transfer_request,
+ "iOi",
+ call_id,
+ param_dst,
+ *code,
+ NULL
+ );
+
+ Py_DECREF(param_dst);
+
if (ret != NULL) {
if (ret != Py_None) {
if (PyArg_Parse(ret,"i",&cd)) {
*code = cd;
}
}
+ Py_DECREF(ret);
}
LEAVE_PYTHON();
@@ -220,28 +259,34 @@ static void cb_on_call_transfer_status( pjsua_call_id call_id,
pj_bool_t final,
pj_bool_t *p_cont)
{
- if (PyCallable_Check(g_obj_callback->on_call_transfer_status))
- {
- PyObject * ret;
- int cnt;
+ if (PyCallable_Check(g_obj_callback->on_call_transfer_status)) {
+ PyObject *ret, *param_reason;
ENTER_PYTHON();
- ret = PyObject_CallFunctionObjArgs(
- g_obj_callback->on_call_transfer_status,
- Py_BuildValue("i",call_id),
- Py_BuildValue("i",status_code),
- PyString_FromStringAndSize(status_text->ptr, status_text->slen),
- Py_BuildValue("i",final),
- Py_BuildValue("i",*p_cont),
- NULL
- );
+ param_reason = PyString_FromPJ(status_text);
+
+ ret = PyObject_CallFunction(
+ g_obj_callback->on_call_transfer_status,
+ "iiOii",
+ call_id,
+ status_code,
+ param_reason,
+ final,
+ *p_cont,
+ NULL
+ );
+
+ Py_DECREF(param_reason);
+
if (ret != NULL) {
if (ret != Py_None) {
+ int cnt;
if (PyArg_Parse(ret,"i",&cnt)) {
*p_cont = cnt;
}
}
+ Py_DECREF(ret);
}
LEAVE_PYTHON();
@@ -259,35 +304,39 @@ static void cb_on_call_replace_request( pjsua_call_id call_id,
int *st_code,
pj_str_t *st_text)
{
- if (PyCallable_Check(g_obj_callback->on_call_replace_request))
- {
- PyObject * ret;
- PyObject * txt;
+ PJ_UNUSED_ARG(rdata);
+
+ if (PyCallable_Check(g_obj_callback->on_call_replace_request)) {
+ PyObject *ret, *param_reason, *param_rdata;
int cd;
- PyObj_pjsip_rx_data * obj;
ENTER_PYTHON();
- obj = (PyObj_pjsip_rx_data *)PyType_GenericNew(&PyTyp_pjsip_rx_data,
- NULL, NULL);
- obj->rdata = rdata;
+ param_reason = PyString_FromPJ(st_text);
+ param_rdata = Py_BuildValue("");
+
+ ret = PyObject_CallFunction(
+ g_obj_callback->on_call_replace_request,
+ "iOiO",
+ call_id,
+ param_rdata,
+ *st_code,
+ param_reason,
+ NULL
+ );
+
+ Py_DECREF(param_rdata);
+ Py_DECREF(param_reason);
- ret = PyObject_CallFunctionObjArgs(
- g_obj_callback->on_call_replace_request,
- Py_BuildValue("i",call_id),
- obj,
- Py_BuildValue("i",*st_code),
- PyString_FromStringAndSize(st_text->ptr, st_text->slen),
- NULL
- );
if (ret != NULL) {
if (ret != Py_None) {
+ PyObject * txt;
if (PyArg_ParseTuple(ret,"iO",&cd, &txt)) {
*st_code = cd;
- st_text->ptr = PyString_AsString(txt);
- st_text->slen = strlen(PyString_AsString(txt));
+ *st_text = PyString_ToPJ(txt);
}
}
+ Py_DECREF(ret);
}
LEAVE_PYTHON();
@@ -303,14 +352,14 @@ static void cb_on_call_replace_request( pjsua_call_id call_id,
static void cb_on_call_replaced(pjsua_call_id old_call_id,
pjsua_call_id new_call_id)
{
- if (PyCallable_Check(g_obj_callback->on_call_replaced))
- {
+ if (PyCallable_Check(g_obj_callback->on_call_replaced)) {
ENTER_PYTHON();
- PyObject_CallFunctionObjArgs(
+ PyObject_CallFunction(
g_obj_callback->on_call_replaced,
- Py_BuildValue("i",old_call_id),
- Py_BuildValue("i",new_call_id),
+ "ii",
+ old_call_id,
+ new_call_id,
NULL
);
@@ -325,8 +374,7 @@ static void cb_on_call_replaced(pjsua_call_id old_call_id,
*/
static void cb_on_reg_state(pjsua_acc_id acc_id)
{
- if (PyCallable_Check(g_obj_callback->on_reg_state))
- {
+ if (PyCallable_Check(g_obj_callback->on_reg_state)) {
ENTER_PYTHON();
PyObject_CallFunction(
@@ -357,20 +405,53 @@ static void cb_on_incoming_subscribe( pjsua_acc_id acc_id,
PJ_UNUSED_ARG(rdata);
PJ_UNUSED_ARG(msg_data);
- if (PyCallable_Check(g_obj_callback->on_incoming_subscribe))
- {
- PyObject *ret;
+ if (PyCallable_Check(g_obj_callback->on_incoming_subscribe)) {
+ PyObject *ret, *param_from, *param_contact, *param_srv_pres;
+ pjsip_contact_hdr *contact_hdr;
+ pj_pool_t *pool = NULL;
ENTER_PYTHON();
- ret = PyObject_CallFunctionObjArgs(
- g_obj_callback->on_incoming_subscribe,
- Py_BuildValue("i", acc_id),
- Py_BuildValue("i", buddy_id),
- PyString_FromStringAndSize(from->ptr, from->slen),
- PyLong_FromLong((long)srv_pres),
- NULL
- );
+ param_from = PyString_FromPJ(from);
+ param_srv_pres = PyLong_FromLong((long)srv_pres);
+
+ contact_hdr = (pjsip_contact_hdr*)
+ pjsip_msg_find_hdr(rdata->msg_info.msg, PJSIP_H_CONTACT,
+ NULL);
+ if (contact_hdr) {
+ char *contact;
+ int len;
+
+ pool = pjsua_pool_create("pytmp", 512, 512);
+ contact = (char*) pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE+1);
+ len = pjsip_uri_print(PJSIP_URI_IN_CONTACT_HDR, contact_hdr->uri,
+ contact, PJSIP_MAX_URL_SIZE);
+ if (len < 1)
+ len = 0;
+ contact[len] = '\0';
+
+ param_contact = PyString_FromStringAndSize(contact, len);
+ } else {
+ param_contact = Py_BuildValue("");
+ }
+
+ ret = PyObject_CallFunction(
+ g_obj_callback->on_incoming_subscribe,
+ "iiOOO",
+ acc_id,
+ buddy_id,
+ param_from,
+ param_contact,
+ param_srv_pres,
+ NULL
+ );
+
+ if (pool)
+ pj_pool_release(pool);
+
+ Py_DECREF(param_from);
+ Py_DECREF(param_contact);
+ Py_DECREF(param_srv_pres);
if (ret && PyTuple_Check(ret)) {
if (PyTuple_Size(ret) >= 1)
@@ -378,13 +459,14 @@ static void cb_on_incoming_subscribe( pjsua_acc_id acc_id,
if (PyTuple_Size(ret) >= 2) {
if (PyTuple_GetItem(ret, 1) != Py_None) {
pj_str_t tmp;
- tmp = PyString_to_pj_str(PyTuple_GetItem(ret, 1));
+ tmp = PyString_ToPJ(PyTuple_GetItem(ret, 1));
reason->ptr = reason_buf;
pj_strncpy(reason, &tmp, sizeof(reason_buf));
} else {
+ reason->slen = 0;
}
}
-
+ Py_XDECREF(ret);
} else if (ret) {
Py_XDECREF(ret);
}
@@ -399,8 +481,7 @@ static void cb_on_incoming_subscribe( pjsua_acc_id acc_id,
*/
static void cb_on_buddy_state(pjsua_buddy_id buddy_id)
{
- if (PyCallable_Check(g_obj_callback->on_buddy_state))
- {
+ if (PyCallable_Check(g_obj_callback->on_buddy_state)) {
ENTER_PYTHON();
PyObject_CallFunction(
@@ -425,21 +506,36 @@ static void cb_on_pager(pjsua_call_id call_id, const pj_str_t *from,
{
PJ_UNUSED_ARG(rdata);
- if (PyCallable_Check(g_obj_callback->on_pager))
- {
+ if (PyCallable_Check(g_obj_callback->on_pager)) {
+ PyObject *param_from, *param_to, *param_contact, *param_mime_type,
+ *param_body;
+
ENTER_PYTHON();
- PyObject_CallFunctionObjArgs(
- g_obj_callback->on_pager,
- Py_BuildValue("i",call_id),
- PyString_FromStringAndSize(from->ptr, from->slen),
- PyString_FromStringAndSize(to->ptr, to->slen),
- PyString_FromStringAndSize(contact->ptr, contact->slen),
- PyString_FromStringAndSize(mime_type->ptr, mime_type->slen),
- PyString_FromStringAndSize(body->ptr, body->slen),
- Py_BuildValue("i",acc_id),
- NULL
- );
+ param_from = PyString_FromPJ(from);
+ param_to = PyString_FromPJ(to);
+ param_contact = PyString_FromPJ(contact);
+ param_mime_type = PyString_FromPJ(mime_type);
+ param_body = PyString_FromPJ(body);
+
+ PyObject_CallFunction(
+ g_obj_callback->on_pager,
+ "iOOOOOi",
+ call_id,
+ param_from,
+ param_to,
+ param_contact,
+ param_mime_type,
+ param_body,
+ acc_id,
+ NULL
+ );
+
+ Py_DECREF(param_body);
+ Py_DECREF(param_mime_type);
+ Py_DECREF(param_contact);
+ Py_DECREF(param_to);
+ Py_DECREF(param_from);
LEAVE_PYTHON();
}
@@ -458,28 +554,35 @@ static void cb_on_pager_status(pjsua_call_id call_id, const pj_str_t *to,
pjsip_rx_data *rdata,
pjsua_acc_id acc_id)
{
- if (PyCallable_Check(g_obj_callback->on_pager))
- {
- PyObject * obj_user_data;
+ if (PyCallable_Check(g_obj_callback->on_pager)) {
+ PyObject *param_call_id, *param_to, *param_body,
+ *param_user_data, *param_status, *param_reason,
+ *param_acc_id;
ENTER_PYTHON();
PJ_UNUSED_ARG(tdata);
PJ_UNUSED_ARG(rdata);
- obj_user_data = Py_BuildValue("i", user_data);
-
PyObject_CallFunctionObjArgs(
- g_obj_callback->on_pager_status,
- Py_BuildValue("i",call_id),
- PyString_FromStringAndSize(to->ptr, to->slen),
- PyString_FromStringAndSize(body->ptr, body->slen),
- obj_user_data,
- Py_BuildValue("i",status),
- PyString_FromStringAndSize(reason->ptr,reason->slen),
- Py_BuildValue("i",acc_id),
- NULL
- );
+ g_obj_callback->on_pager_status,
+ param_call_id = Py_BuildValue("i",call_id),
+ param_to = PyString_FromPJ(to),
+ param_body = PyString_FromPJ(body),
+ param_user_data = Py_BuildValue("i", user_data),
+ param_status = Py_BuildValue("i",status),
+ param_reason = PyString_FromPJ(reason),
+ param_acc_id = Py_BuildValue("i",acc_id),
+ NULL
+ );
+
+ Py_DECREF(param_call_id);
+ Py_DECREF(param_to);
+ Py_DECREF(param_body);
+ Py_DECREF(param_user_data);
+ Py_DECREF(param_status);
+ Py_DECREF(param_reason);
+ Py_DECREF(param_acc_id);
LEAVE_PYTHON();
}
@@ -495,21 +598,31 @@ static void cb_on_typing(pjsua_call_id call_id, const pj_str_t *from,
pj_bool_t is_typing, pjsip_rx_data *rdata,
pjsua_acc_id acc_id)
{
- if (PyCallable_Check(g_obj_callback->on_typing))
- {
+ if (PyCallable_Check(g_obj_callback->on_typing)) {
+ PyObject *param_call_id, *param_from, *param_to, *param_contact,
+ *param_is_typing, *param_acc_id;
+
ENTER_PYTHON();
PJ_UNUSED_ARG(rdata);
PyObject_CallFunctionObjArgs(
- g_obj_callback->on_typing,Py_BuildValue("i",call_id),
- PyString_FromStringAndSize(from->ptr, from->slen),
- PyString_FromStringAndSize(to->ptr, to->slen),
- PyString_FromStringAndSize(contact->ptr, contact->slen),
- Py_BuildValue("i",is_typing),
- Py_BuildValue("i",acc_id),
- NULL
- );
+ g_obj_callback->on_typing,
+ param_call_id = Py_BuildValue("i",call_id),
+ param_from = PyString_FromPJ(from),
+ param_to = PyString_FromPJ(to),
+ param_contact = PyString_FromPJ(contact),
+ param_is_typing = Py_BuildValue("i",is_typing),
+ param_acc_id = Py_BuildValue("i",acc_id),
+ NULL
+ );
+
+ Py_DECREF(param_call_id);
+ Py_DECREF(param_from);
+ Py_DECREF(param_to);
+ Py_DECREF(param_contact);
+ Py_DECREF(param_is_typing);
+ Py_DECREF(param_acc_id);
LEAVE_PYTHON();
}
@@ -529,20 +642,20 @@ void translate_hdr(pj_pool_t *pool, pjsip_hdr *hdr, PyObject *py_hdr_list)
if (PyList_Check(py_hdr_list)) {
int i;
- for (i = 0; i < PyList_Size(py_hdr_list); i++)
- {
+ for (i=0; i<PyList_Size(py_hdr_list); ++i) {
pj_str_t hname, hvalue;
pjsip_generic_string_hdr * new_hdr;
PyObject * tuple = PyList_GetItem(py_hdr_list, i);
- if (PyTuple_Check(tuple))
- {
- hname.ptr = PyString_AsString(PyTuple_GetItem(tuple,0));
- hname.slen = strlen(PyString_AsString
- (PyTuple_GetItem(tuple,0)));
- hvalue.ptr = PyString_AsString(PyTuple_GetItem(tuple,1));
- hvalue.slen = strlen(PyString_AsString
- (PyTuple_GetItem(tuple,1)));
+ if (PyTuple_Check(tuple)) {
+ if (PyTuple_Size(tuple) >= 1)
+ hname = PyString_ToPJ(PyTuple_GetItem(tuple,0));
+ else
+ hname.slen = 0;
+ if (PyTuple_Size(tuple) >= 2)
+ hvalue = PyString_ToPJ(PyTuple_GetItem(tuple,1));
+ else
+ hvalue.slen = 0;
} else {
hname.ptr = "";
hname.slen = 0;
@@ -555,120 +668,59 @@ void translate_hdr(pj_pool_t *pool, pjsip_hdr *hdr, PyObject *py_hdr_list)
}
}
-/*
- * translate_hdr_rev
- * internal function
- * translate from pjsip_generic_string_hdr to hdr_list
- */
-
-void translate_hdr_rev(pjsip_generic_string_hdr *hdr, PyObject *py_hdr_list)
-{
- int i;
- int len;
- pjsip_generic_string_hdr * p_hdr;
-
- len = pj_list_size(hdr);
-
- if (len > 0)
- {
- p_hdr = hdr;
- Py_XDECREF(py_hdr_list);
- py_hdr_list = PyList_New(len);
-
- for (i = 0; i < len && p_hdr != NULL; i++)
- {
- PyObject * tuple;
- PyObject * str;
-
- tuple = PyTuple_New(2);
-
- str = PyString_FromStringAndSize(p_hdr->name.ptr, p_hdr->name.slen);
- PyTuple_SetItem(tuple, 0, str);
- str = PyString_FromStringAndSize
- (hdr->hvalue.ptr, p_hdr->hvalue.slen);
- PyTuple_SetItem(tuple, 1, str);
- PyList_SetItem(py_hdr_list, i, tuple);
- p_hdr = p_hdr->next;
- }
- }
-
-
-}
-
/*
* py_pjsua_thread_register
- * !added @ 061206
*/
static PyObject *py_pjsua_thread_register(PyObject *pSelf, PyObject *pArgs)
{
-
pj_status_t status;
const char *name;
PyObject *py_desc;
pj_thread_t *thread;
- void *thread_desc;
-#if 0
- int size;
- int i;
- int *td;
-#endif
+ struct py_thread_desc *thread_desc;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "sO", &name, &py_desc))
- {
+ if (!PyArg_ParseTuple(pArgs, "sO", &name, &py_desc)) {
return NULL;
}
-#if 0
- size = PyList_Size(py_desc);
- td = (int *)malloc(size * sizeof(int));
- for (i = 0; i < size; i++)
- {
- if (!PyArg_Parse(PyList_GetItem(py_desc,i),"i", td[i]))
- {
- return NULL;
- }
- }
- thread_desc = td;
-#else
- thread_desc = malloc(sizeof(pj_thread_desc));
-#endif
- status = pj_thread_register(name, thread_desc, &thread);
+ thread_desc = (struct py_thread_desc*)
+ malloc(sizeof(struct py_thread_desc));
+ thread_desc->next = py_thread_desc;
+ py_thread_desc = thread_desc;
+
+ status = pj_thread_register(name, thread_desc->desc, &thread);
if (status == PJ_SUCCESS)
- status = pj_thread_local_set(thread_id, (void*)1);
+ status = pj_thread_local_set(g_thread_id, (void*)1);
+
return Py_BuildValue("i",status);
}
/*
* py_pjsua_logging_config_default
- * !modified @ 051206
*/
static PyObject *py_pjsua_logging_config_default(PyObject *pSelf,
- PyObject *pArgs)
+ PyObject *pArgs)
{
PyObj_pjsua_logging_config *obj;
pjsua_logging_config cfg;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
pjsua_logging_config_default(&cfg);
- obj = (PyObj_pjsua_logging_config *) PyObj_pjsua_logging_config_new
- (&PyTyp_pjsua_logging_config,NULL,NULL);
+ obj = (PyObj_pjsua_logging_config*)
+ PyObj_pjsua_logging_config_new(&PyTyp_pjsua_logging_config,
+ NULL, NULL);
PyObj_pjsua_logging_config_import(obj, &cfg);
- return (PyObject *)obj;
+ return (PyObject*)obj;
}
/*
* py_pjsua_config_default
- * !modified @ 051206
*/
static PyObject *py_pjsua_config_default(PyObject *pSelf, PyObject *pArgs)
{
@@ -676,22 +728,19 @@ static PyObject *py_pjsua_config_default(PyObject *pSelf, PyObject *pArgs)
pjsua_config cfg;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
pjsua_config_default(&cfg);
- obj = (PyObj_pjsua_config *) PyObj_pjsua_config_new(&PyTyp_pjsua_config, NULL, NULL);
+ obj = (PyObj_pjsua_config *) PyObj_pjsua_config_new(&PyTyp_pjsua_config,
+ NULL, NULL);
PyObj_pjsua_config_import(obj, &cfg);
- return (PyObject *)obj;
+ return (PyObject*)obj;
}
/*
* py_pjsua_media_config_default
- * !modified @ 051206
*/
static PyObject * py_pjsua_media_config_default(PyObject *pSelf,
PyObject *pArgs)
@@ -700,180 +749,65 @@ static PyObject * py_pjsua_media_config_default(PyObject *pSelf,
pjsua_media_config cfg;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
pjsua_media_config_default(&cfg);
obj = (PyObj_pjsua_media_config *)
PyType_GenericNew(&PyTyp_pjsua_media_config, NULL, NULL);
PyObj_pjsua_media_config_import(obj, &cfg);
+
return (PyObject *)obj;
}
/*
* py_pjsua_msg_data_init
- * !modified @ 051206
*/
static PyObject *py_pjsua_msg_data_init(PyObject *pSelf, PyObject *pArgs)
{
- PyObj_pjsua_msg_data *obj;
- pjsua_msg_data msg;
-
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
- pjsua_msg_data_init(&msg);
- obj = (PyObj_pjsua_msg_data *)PyObj_pjsua_msg_data_new(&PyTyp_pjsua_msg_data, NULL, NULL);
- Py_XDECREF(obj->content_type);
- obj->content_type = PyString_FromStringAndSize(
- msg.content_type.ptr, msg.content_type.slen
- );
- Py_XDECREF(obj->msg_body);
- obj->msg_body = PyString_FromStringAndSize(
- msg.msg_body.ptr, msg.msg_body.slen
- );
-
- translate_hdr_rev((pjsip_generic_string_hdr *)&msg.hdr_list,obj->hdr_list);
-
- return (PyObject *)obj;
+ return (PyObject *)PyObj_pjsua_msg_data_new(&PyTyp_pjsua_msg_data,
+ NULL, NULL);
}
/*
* py_pjsua_reconfigure_logging
*/
-static PyObject *py_pjsua_reconfigure_logging(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_reconfigure_logging(PyObject *pSelf,
+ PyObject *pArgs)
{
- PyObject * logObj;
- PyObj_pjsua_logging_config *log;
- pjsua_logging_config cfg;
+ PyObject *logObj;
pj_status_t status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "O", &logObj))
- {
+ if (!PyArg_ParseTuple(pArgs, "O", &logObj)) {
return NULL;
}
- if (logObj != Py_None)
- {
- log = (PyObj_pjsua_logging_config *)logObj;
+
+ if (logObj != Py_None) {
+ PyObj_pjsua_logging_config *log;
+ pjsua_logging_config cfg;
+
+ log = (PyObj_pjsua_logging_config*)logObj;
cfg.msg_logging = log->msg_logging;
cfg.level = log->level;
cfg.console_level = log->console_level;
cfg.decor = log->decor;
- cfg.log_filename.ptr = PyString_AsString(log->log_filename);
- cfg.log_filename.slen = strlen(cfg.log_filename.ptr);
- Py_XDECREF(obj_log_cb);
- obj_log_cb = log->cb;
- Py_INCREF(obj_log_cb);
+ cfg.log_filename = PyString_ToPJ(log->log_filename);
+ Py_XDECREF(g_obj_log_cb);
+ g_obj_log_cb = log->cb;
+ Py_INCREF(g_obj_log_cb);
cfg.cb = &cb_log_cb;
status = pjsua_reconfigure_logging(&cfg);
} else {
status = pjsua_reconfigure_logging(NULL);
}
- return Py_BuildValue("i",status);
-}
-
-
-/*
- * py_pjsua_pool_create
- */
-static PyObject *py_pjsua_pool_create(PyObject *pSelf, PyObject *pArgs)
-{
- pj_size_t init_size;
- pj_size_t increment;
- const char * name;
- pj_pool_t *p;
- PyObj_pj_pool *pool;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, "sII", &name, &init_size, &increment))
- {
- return NULL;
- }
-
- p = pjsua_pool_create(name, init_size, increment);
- pool = (PyObj_pj_pool *)PyType_GenericNew(&PyTyp_pj_pool_t, NULL, NULL);
- pool->pool = p;
- return (PyObject *)pool;
-}
-
-
-/*
- * py_pjsua_get_pjsip_endpt
- */
-static PyObject *py_pjsua_get_pjsip_endpt(PyObject *pSelf, PyObject *pArgs)
-{
- PyObj_pjsip_endpoint *endpt;
- pjsip_endpoint *e;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
- e = pjsua_get_pjsip_endpt();
- endpt = (PyObj_pjsip_endpoint *)PyType_GenericNew(
- &PyTyp_pjsip_endpoint, NULL, NULL
- );
- endpt->endpt = e;
- return (PyObject *)endpt;
-}
-
-
-/*
- * py_pjsua_get_pjmedia_endpt
- */
-static PyObject *py_pjsua_get_pjmedia_endpt(PyObject *pSelf, PyObject *pArgs)
-{
- PyObj_pjmedia_endpt *endpt;
- pjmedia_endpt *e;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
- e = pjsua_get_pjmedia_endpt();
- endpt = (PyObj_pjmedia_endpt *)PyType_GenericNew(
- &PyTyp_pjmedia_endpt, NULL, NULL
- );
- endpt->endpt = e;
- return (PyObject *)endpt;
-}
-
-
-/*
- * py_pjsua_get_pool_factory
- */
-static PyObject *py_pjsua_get_pool_factory(PyObject *pSelf, PyObject *pArgs)
-{
- PyObj_pj_pool_factory *pool;
- pj_pool_factory *p;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
- p = pjsua_get_pool_factory();
- pool = (PyObj_pj_pool_factory *)PyType_GenericNew(
- &PyTyp_pj_pool_factory, NULL, NULL
- );
- pool->pool_fact = p;
- return (PyObject *)pool;
+ return Py_BuildValue("i",status);
}
@@ -888,14 +822,13 @@ static PyObject *py_pjsua_perror(PyObject *pSelf, PyObject *pArgs)
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "ssi", &sender, &title, &status))
- {
+ if (!PyArg_ParseTuple(pArgs, "ssi", &sender, &title, &status)) {
return NULL;
}
pjsua_perror(sender, title, status);
- Py_INCREF(Py_None);
- return Py_None;
+
+ return Py_BuildValue("");
}
@@ -907,18 +840,16 @@ static PyObject *py_pjsua_create(PyObject *pSelf, PyObject *pArgs)
pj_status_t status;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
status = pjsua_create();
- if (status == PJ_SUCCESS)
- {
- status = pj_thread_local_alloc(&thread_id);
+ if (status == PJ_SUCCESS) {
+ status = pj_thread_local_alloc(&g_thread_id);
if (status == PJ_SUCCESS)
- status = pj_thread_local_set(thread_id, (void*)1);
+ status = pj_thread_local_set(g_thread_id, (void*)1);
+
+ pj_atexit(&clear_py_thread_desc);
}
return Py_BuildValue("i",status);
@@ -938,8 +869,7 @@ static PyObject *py_pjsua_init(PyObject *pSelf, PyObject *pArgs)
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "OOO", &o_ua_cfg, &o_log_cfg, &o_media_cfg))
- {
+ if (!PyArg_ParseTuple(pArgs, "OOO", &o_ua_cfg, &o_log_cfg, &o_media_cfg)) {
return NULL;
}
@@ -947,12 +877,12 @@ static PyObject *py_pjsua_init(PyObject *pSelf, PyObject *pArgs)
pjsua_logging_config_default(&cfg_log);
pjsua_media_config_default(&cfg_media);
- if (o_ua_cfg != Py_None)
- {
+ if (o_ua_cfg != Py_None) {
PyObj_pjsua_config *obj_ua_cfg = (PyObj_pjsua_config*)o_ua_cfg;
PyObj_pjsua_config_export(&cfg_ua, obj_ua_cfg);
+ Py_XDECREF(g_obj_callback);
g_obj_callback = obj_ua_cfg->cb;
Py_INCREF(g_obj_callback);
@@ -977,17 +907,16 @@ static PyObject *py_pjsua_init(PyObject *pSelf, PyObject *pArgs)
p_cfg_ua = NULL;
}
- if (o_log_cfg != Py_None)
- {
+ if (o_log_cfg != Py_None) {
PyObj_pjsua_logging_config * obj_log;
obj_log = (PyObj_pjsua_logging_config *)o_log_cfg;
PyObj_pjsua_logging_config_export(&cfg_log, obj_log);
- Py_XDECREF(obj_log_cb);
- obj_log_cb = obj_log->cb;
- Py_INCREF(obj_log_cb);
+ Py_XDECREF(g_obj_log_cb);
+ g_obj_log_cb = obj_log->cb;
+ Py_INCREF(g_obj_log_cb);
cfg_log.cb = &cb_log_cb;
p_cfg_log = &cfg_log;
@@ -996,8 +925,7 @@ static PyObject *py_pjsua_init(PyObject *pSelf, PyObject *pArgs)
p_cfg_log = NULL;
}
- if (o_media_cfg != Py_None)
- {
+ if (o_media_cfg != Py_None) {
PyObj_pjsua_media_config_export(&cfg_media,
(PyObj_pjsua_media_config*)o_media_cfg);
p_cfg_media = &cfg_media;
@@ -1007,7 +935,8 @@ static PyObject *py_pjsua_init(PyObject *pSelf, PyObject *pArgs)
}
status = pjsua_init(p_cfg_ua, p_cfg_log, p_cfg_media);
- return Py_BuildValue("i",status);
+
+ return Py_BuildValue("i", status);
}
@@ -1019,14 +948,11 @@ static PyObject *py_pjsua_start(PyObject *pSelf, PyObject *pArgs)
pj_status_t status;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
status = pjsua_start();
- return Py_BuildValue("i",status);
+ return Py_BuildValue("i", status);
}
@@ -1038,14 +964,11 @@ static PyObject *py_pjsua_destroy(PyObject *pSelf, PyObject *pArgs)
pj_status_t status;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
status = pjsua_destroy();
- return Py_BuildValue("i",status);
+ return Py_BuildValue("i", status);
}
@@ -1055,25 +978,33 @@ static PyObject *py_pjsua_destroy(PyObject *pSelf, PyObject *pArgs)
static PyObject *py_pjsua_handle_events(PyObject *pSelf, PyObject *pArgs)
{
int ret;
- unsigned msec;
+ int msec;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &msec))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &msec)) {
return NULL;
}
+ if (msec < 0)
+ msec = 0;
+
+#if !NO_PJSIP_THREAD
/* Since handle_events() will block, we must wrap it with ALLOW_THREADS
* construct, or otherwise many Python blocking functions (such as
* time.sleep(), readline(), etc.) may hang/block indefinitely.
* See http://www.python.org/doc/current/api/threads.html for more info.
*/
Py_BEGIN_ALLOW_THREADS
+#endif
+
ret = pjsua_handle_events(msec);
+
+#if !NO_PJSIP_THREAD
Py_END_ALLOW_THREADS
+#endif
- return Py_BuildValue("i",ret);
+ return Py_BuildValue("i", ret);
}
@@ -1087,13 +1018,13 @@ static PyObject *py_pjsua_verify_sip_url(PyObject *pSelf, PyObject *pArgs)
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "s", &url))
- {
+ if (!PyArg_ParseTuple(pArgs, "s", &url)) {
return NULL;
}
+
status = pjsua_verify_sip_url(url);
- return Py_BuildValue("i",status);
+ return Py_BuildValue("i", status);
}
@@ -1154,30 +1085,6 @@ static char pjsua_verify_sip_url_doc[] =
"Verify that valid SIP url is given Parameters: "
"c_url: The URL, as NULL terminated string.";
-static char pjsua_pool_create_doc[] =
- "_pjsua.Pj_Pool _pjsua.pool_create (string name, int init_size, "
- "int increment) "
- "Create memory pool Parameters: "
- "name: Optional pool name; "
- "init_size: Initial size of the pool; "
- "increment: Increment size.";
-
-static char pjsua_get_pjsip_endpt_doc[] =
- "_pjsua.Pjsip_Endpoint _pjsua.get_pjsip_endpt (void) "
- "Internal function to get SIP endpoint instance of pjsua, which is needed "
- "for example to register module, create transports, etc. Probably is only "
- "valid after pjsua_init() is called.";
-
-static char pjsua_get_pjmedia_endpt_doc[] =
- "_pjsua.Pjmedia_Endpt _pjsua.get_pjmedia_endpt (void) "
- "Internal function to get media endpoint instance. Only valid after "
- "pjsua_init() is called.";
-
-static char pjsua_get_pool_factory_doc[] =
- "_pjsua.Pj_Pool_Factory _pjsua.get_pool_factory (void) "
- "Internal function to get PJSUA pool factory. Only valid after "
- "pjsua_init() is called.";
-
static char pjsua_reconfigure_logging_doc[] =
"int _pjsua.reconfigure_logging (_pjsua.Logging_Config c) "
"Application can call this function at any time (after pjsua_create(), of "
@@ -1207,7 +1114,6 @@ static char pjsua_msg_data_init_doc[] =
/*
* py_pjsua_transport_config_default
- * !modified @ 051206
*/
static PyObject *py_pjsua_transport_config_default(PyObject *pSelf,
PyObject *pArgs)
@@ -1216,10 +1122,7 @@ static PyObject *py_pjsua_transport_config_default(PyObject *pSelf,
pjsua_transport_config cfg;
PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, "")) {
- return NULL;
- }
+ PJ_UNUSED_ARG(pArgs);
pjsua_transport_config_default(&cfg);
obj = (PyObj_pjsua_transport_config*)
@@ -1232,25 +1135,25 @@ static PyObject *py_pjsua_transport_config_default(PyObject *pSelf,
/*
* py_pjsua_transport_create
- * !modified @ 051206
*/
static PyObject *py_pjsua_transport_create(PyObject *pSelf, PyObject *pArgs)
{
pj_status_t status;
int type;
- PyObject * tmpObj;
+ PyObject *pCfg;
pjsua_transport_config cfg;
pjsua_transport_id id;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iO", &type, &tmpObj)) {
+ if (!PyArg_ParseTuple(pArgs, "iO", &type, &pCfg)) {
return NULL;
}
- if (tmpObj != Py_None) {
+ if (pCfg != Py_None) {
PyObj_pjsua_transport_config *obj;
- obj = (PyObj_pjsua_transport_config*)tmpObj;
+
+ obj = (PyObj_pjsua_transport_config*)pCfg;
PyObj_pjsua_transport_config_export(&cfg, obj);
status = pjsua_transport_create(type, &cfg, &id);
} else {
@@ -1263,37 +1166,26 @@ static PyObject *py_pjsua_transport_create(PyObject *pSelf, PyObject *pArgs)
/*
* py_pjsua_enum_transports
- * !modified @ 261206
*/
static PyObject *py_pjsua_enum_transports(PyObject *pSelf, PyObject *pArgs)
{
pj_status_t status;
PyObject *list;
-
pjsua_transport_id id[PJSIP_MAX_TRANSPORTS];
unsigned c, i;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
c = PJ_ARRAY_SIZE(id);
status = pjsua_enum_transports(id, &c);
list = PyList_New(c);
- for (i = 0; i < c; i++)
- {
- int ret = PyList_SetItem(list, i, Py_BuildValue("i", id[i]));
- if (ret == -1)
- {
- return NULL;
- }
+ for (i = 0; i < c; i++) {
+ PyList_SetItem(list, i, Py_BuildValue("i", id[i]));
}
- return Py_BuildValue("O",list);
+ return (PyObject*)list;
}
/*
@@ -1319,18 +1211,17 @@ static PyObject *py_pjsua_transport_get_info(PyObject *pSelf, PyObject *pArgs)
PyObj_pjsua_transport_info_new(&PyTyp_pjsua_transport_info,
NULL, NULL);
PyObj_pjsua_transport_info_import(obj, &info);
- return Py_BuildValue("O", obj);
+ return (PyObject*)obj;
} else {
- Py_INCREF(Py_None);
- return Py_None;
+ return Py_BuildValue("");
}
}
/*
* py_pjsua_transport_set_enable
*/
-static PyObject *py_pjsua_transport_set_enable
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_transport_set_enable(PyObject *pSelf,
+ PyObject *pArgs)
{
pj_status_t status;
int id;
@@ -1338,13 +1229,12 @@ static PyObject *py_pjsua_transport_set_enable
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "ii", &id, &enabled))
- {
+ if (!PyArg_ParseTuple(pArgs, "ii", &id, &enabled)) {
return NULL;
- }
- status = pjsua_transport_set_enable(id, enabled);
-
- return Py_BuildValue("i",status);
+ }
+ status = pjsua_transport_set_enable(id, enabled);
+
+ return Py_BuildValue("i", status);
}
/*
@@ -1358,13 +1248,12 @@ static PyObject *py_pjsua_transport_close(PyObject *pSelf, PyObject *pArgs)
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "ii", &id, &force))
- {
+ if (!PyArg_ParseTuple(pArgs, "ii", &id, &force)) {
return NULL;
}
status = pjsua_transport_close(id, force);
- return Py_BuildValue("i",status);
+ return Py_BuildValue("i", status);
}
static char pjsua_transport_config_default_doc[] =
@@ -1405,7 +1294,6 @@ static char pjsua_transport_close_doc[] =
/*
* py_pjsua_acc_config_default
- * !modified @ 051206
*/
static PyObject *py_pjsua_acc_config_default(PyObject *pSelf, PyObject *pArgs)
{
@@ -1413,6 +1301,7 @@ static PyObject *py_pjsua_acc_config_default(PyObject *pSelf, PyObject *pArgs)
pjsua_acc_config cfg;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
if (!PyArg_ParseTuple(pArgs, "")) {
return NULL;
@@ -1434,13 +1323,10 @@ static PyObject *py_pjsua_acc_get_count(PyObject *pSelf, PyObject *pArgs)
int count;
PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, "")) {
- return NULL;
- }
+ PJ_UNUSED_ARG(pArgs);
count = pjsua_acc_get_count();
- return Py_BuildValue("i",count);
+ return Py_BuildValue("i", count);
}
/*
@@ -1487,10 +1373,7 @@ static PyObject *py_pjsua_acc_get_default(PyObject *pSelf, PyObject *pArgs)
int id;
PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, "")) {
- return NULL;
- }
+ PJ_UNUSED_ARG(pArgs);
id = pjsua_acc_get_default();
@@ -1499,27 +1382,26 @@ static PyObject *py_pjsua_acc_get_default(PyObject *pSelf, PyObject *pArgs)
/*
* py_pjsua_acc_add
- * !modified @ 051206
*/
static PyObject *py_pjsua_acc_add(PyObject *pSelf, PyObject *pArgs)
{
int is_default;
- PyObject * acObj;
- PyObj_pjsua_acc_config * ac;
+ PyObject *pCfg;
int acc_id;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "Oi", &acObj, &is_default)) {
+ if (!PyArg_ParseTuple(pArgs, "Oi", &pCfg, &is_default)) {
return NULL;
}
- if (acObj != Py_None) {
+ if (pCfg != Py_None) {
pjsua_acc_config cfg;
+ PyObj_pjsua_acc_config *ac;
pjsua_acc_config_default(&cfg);
- ac = (PyObj_pjsua_acc_config *)acObj;
+ ac = (PyObj_pjsua_acc_config *)pCfg;
PyObj_pjsua_acc_config_export(&cfg, ac);
status = pjsua_acc_add(&cfg, is_default, &acc_id);
} else {
@@ -1532,13 +1414,12 @@ static PyObject *py_pjsua_acc_add(PyObject *pSelf, PyObject *pArgs)
/*
* py_pjsua_acc_add_local
- * !modified @ 051206
*/
static PyObject *py_pjsua_acc_add_local(PyObject *pSelf, PyObject *pArgs)
{
int is_default;
int tid;
- int p_acc_id;
+ int acc_id;
int status;
PJ_UNUSED_ARG(pSelf);
@@ -1547,10 +1428,55 @@ static PyObject *py_pjsua_acc_add_local(PyObject *pSelf, PyObject *pArgs)
return NULL;
}
+ status = pjsua_acc_add_local(tid, is_default, &acc_id);
- status = pjsua_acc_add_local(tid, is_default, &p_acc_id);
-
- return Py_BuildValue("ii", status, p_acc_id);
+ return Py_BuildValue("ii", status, acc_id);
+}
+
+/*
+ * py_pjsua_acc_set_user_data
+ */
+static PyObject *py_pjsua_acc_set_user_data(PyObject *pSelf, PyObject *pArgs)
+{
+ int acc_id;
+ PyObject *pUserData, *old_user_data;
+ int status;
+
+ PJ_UNUSED_ARG(pSelf);
+
+ if (!PyArg_ParseTuple(pArgs, "iO", &acc_id, &pUserData)) {
+ return NULL;
+ }
+
+ old_user_data = (PyObject*) pjsua_acc_get_user_data(acc_id);
+
+ status = pjsua_acc_set_user_data(acc_id, (void*)pUserData);
+
+ if (status == PJ_SUCCESS) {
+ Py_XINCREF(pUserData);
+ Py_XDECREF(old_user_data);
+ }
+
+ return Py_BuildValue("i", status);
+}
+
+/*
+ * py_pjsua_acc_get_user_data
+ */
+static PyObject *py_pjsua_acc_get_user_data(PyObject *pSelf, PyObject *pArgs)
+{
+ int acc_id;
+ PyObject *user_data;
+
+ PJ_UNUSED_ARG(pSelf);
+
+ if (!PyArg_ParseTuple(pArgs, "i", &acc_id)) {
+ return NULL;
+ }
+
+ user_data = (PyObject*) pjsua_acc_get_user_data(acc_id);
+
+ return user_data ? Py_BuildValue("O", user_data) : Py_BuildValue("");
}
/*
@@ -1559,17 +1485,20 @@ static PyObject *py_pjsua_acc_add_local(PyObject *pSelf, PyObject *pArgs)
static PyObject *py_pjsua_acc_del(PyObject *pSelf, PyObject *pArgs)
{
int acc_id;
+ PyObject *user_data;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &acc_id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &acc_id)) {
return NULL;
}
-
-
- status = pjsua_acc_del(acc_id);
+
+ user_data = (PyObject*) pjsua_acc_get_user_data(acc_id);
+ Py_XDECREF(user_data);
+
+ status = pjsua_acc_del(acc_id);
+
return Py_BuildValue("i", status);
}
@@ -1578,22 +1507,22 @@ static PyObject *py_pjsua_acc_del(PyObject *pSelf, PyObject *pArgs)
*/
static PyObject *py_pjsua_acc_modify(PyObject *pSelf, PyObject *pArgs)
{
- PyObject * acObj;
+ PyObject *pCfg;
PyObj_pjsua_acc_config * ac;
int acc_id;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iO", &acc_id, &acObj)) {
+ if (!PyArg_ParseTuple(pArgs, "iO", &acc_id, &pCfg)) {
return NULL;
}
- if (acObj != Py_None) {
+ if (pCfg != Py_None) {
pjsua_acc_config cfg;
pjsua_acc_config_default(&cfg);
- ac = (PyObj_pjsua_acc_config *)acObj;
+ ac = (PyObj_pjsua_acc_config*)pCfg;
PyObj_pjsua_acc_config_export(&cfg, ac);
status = pjsua_acc_modify(acc_id, &cfg);
@@ -1633,22 +1562,24 @@ static PyObject *py_pjsua_acc_set_online_status2(PyObject *pSelf,
int is_online;
int acc_id;
int activity_id;
- const char *activity_text;
- const char *rpid_id;
+ const char *activity_text = NULL;
+ const char *rpid_id = NULL;
pjrpid_element rpid;
pj_status_t status;
PJ_UNUSED_ARG(pSelf);
if (!PyArg_ParseTuple(pArgs, "iiiss", &acc_id, &is_online,
- &activity_id, &activity_text, &rpid_id)) {
+ &activity_id, &activity_text, &rpid_id))
+ {
return NULL;
}
pj_bzero(&rpid, sizeof(rpid));
rpid.type = PJRPID_ELEMENT_TYPE_PERSON;
rpid.activity = activity_id;
- rpid.note = pj_str((char*)activity_text);
+ if (activity_text)
+ rpid.note = pj_str((char*)activity_text);
if (rpid_id)
rpid.id = pj_str((char*)rpid_id);
@@ -1681,7 +1612,6 @@ static PyObject *py_pjsua_acc_set_registration(PyObject *pSelf,
/*
* py_pjsua_acc_get_info
- * !modified @ 051206
*/
static PyObject *py_pjsua_acc_get_info(PyObject *pSelf, PyObject *pArgs)
{
@@ -1698,54 +1628,43 @@ static PyObject *py_pjsua_acc_get_info(PyObject *pSelf, PyObject *pArgs)
status = pjsua_acc_get_info(acc_id, &info);
if (status == PJ_SUCCESS) {
- obj = (PyObj_pjsua_acc_info *)
- PyObj_pjsua_acc_info_new(&PyTyp_pjsua_acc_info,NULL, NULL);
+ obj = (PyObj_pjsua_acc_info*)
+ PyObj_pjsua_acc_info_new(&PyTyp_pjsua_acc_info, NULL, NULL);
PyObj_pjsua_acc_info_import(obj, &info);
- return Py_BuildValue("O", obj);
+ return (PyObject*)obj;
} else {
- Py_INCREF(Py_None);
- return Py_None;
+ return Py_BuildValue("");
}
}
/*
* py_pjsua_enum_accs
- * !modified @ 241206
*/
static PyObject *py_pjsua_enum_accs(PyObject *pSelf, PyObject *pArgs)
{
pj_status_t status;
PyObject *list;
-
pjsua_acc_id id[PJSUA_MAX_ACC];
unsigned c, i;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
c = PJ_ARRAY_SIZE(id);
-
status = pjsua_enum_accs(id, &c);
+ if (status != PJ_SUCCESS)
+ c = 0;
list = PyList_New(c);
- for (i = 0; i < c; i++)
- {
- int ret = PyList_SetItem(list, i, Py_BuildValue("i", id[i]));
- if (ret == -1)
- {
- return NULL;
- }
+ for (i = 0; i < c; i++) {
+ PyList_SetItem(list, i, Py_BuildValue("i", id[i]));
}
- return Py_BuildValue("O",list);
+ return (PyObject*)list;
}
/*
* py_pjsua_acc_enum_info
- * !modified @ 241206
*/
static PyObject *py_pjsua_acc_enum_info(PyObject *pSelf, PyObject *pArgs)
{
@@ -1755,6 +1674,7 @@ static PyObject *py_pjsua_acc_enum_info(PyObject *pSelf, PyObject *pArgs)
unsigned c, i;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
if (!PyArg_ParseTuple(pArgs, "")) {
return NULL;
@@ -1762,7 +1682,9 @@ static PyObject *py_pjsua_acc_enum_info(PyObject *pSelf, PyObject *pArgs)
c = PJ_ARRAY_SIZE(info);
status = pjsua_acc_enum_info(info, &c);
-
+ if (status != PJ_SUCCESS)
+ c = 0;
+
list = PyList_New(c);
for (i = 0; i < c; i++) {
PyObj_pjsua_acc_info *obj;
@@ -1771,159 +1693,23 @@ static PyObject *py_pjsua_acc_enum_info(PyObject *pSelf, PyObject *pArgs)
PyObj_pjsua_acc_info_import(obj, &info[i]);
- PyList_SetItem(list, i, (PyObject *)obj);
+ PyList_SetItem(list, i, (PyObject*)obj);
}
- return Py_BuildValue("O",list);
-}
-
-/*
- * py_pjsua_acc_find_for_outgoing
- */
-static PyObject *py_pjsua_acc_find_for_outgoing(PyObject *pSelf,
- PyObject *pArgs)
-{
- int acc_id;
- PyObject * url;
- pj_str_t str;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, "O", &url))
- {
- return NULL;
- }
- str.ptr = PyString_AsString(url);
- str.slen = strlen(PyString_AsString(url));
-
- acc_id = pjsua_acc_find_for_outgoing(&str);
-
- return Py_BuildValue("i", acc_id);
-}
-
-/*
- * py_pjsua_acc_find_for_incoming
- */
-static PyObject *py_pjsua_acc_find_for_incoming(PyObject *pSelf,
- PyObject *pArgs)
-{
- int acc_id;
- PyObject * tmpObj;
- PyObj_pjsip_rx_data * obj;
- pjsip_rx_data * rdata;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, "O", &tmpObj))
- {
- return NULL;
- }
- if (tmpObj != Py_None)
- {
- obj = (PyObj_pjsip_rx_data *)tmpObj;
- rdata = obj->rdata;
- acc_id = pjsua_acc_find_for_incoming(rdata);
- } else {
- acc_id = pjsua_acc_find_for_incoming(NULL);
- }
- return Py_BuildValue("i", acc_id);
-}
-
-/*
- * py_pjsua_acc_create_uac_contact
- * !modified @ 061206
- */
-static PyObject *py_pjsua_acc_create_uac_contact(PyObject *pSelf,
- PyObject *pArgs)
-{
- int status;
- int acc_id;
- PyObject * pObj;
- PyObj_pj_pool * p;
- pj_pool_t * pool;
- PyObject * strc;
- pj_str_t contact;
- PyObject * stru;
- pj_str_t uri;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, "OiO", &pObj, &acc_id, &stru))
- {
- return NULL;
- }
- if (pObj != Py_None)
- {
- p = (PyObj_pj_pool *)pObj;
- pool = p->pool;
- uri.ptr = PyString_AsString(stru);
- uri.slen = strlen(PyString_AsString(stru));
- status = pjsua_acc_create_uac_contact(pool, &contact, acc_id, &uri);
- } else {
- status = pjsua_acc_create_uac_contact(NULL, &contact, acc_id, &uri);
- }
- strc = PyString_FromStringAndSize(contact.ptr, contact.slen);
-
- return Py_BuildValue("O", strc);
-}
-
-/*
- * py_pjsua_acc_create_uas_contact
- * !modified @ 061206
- */
-static PyObject *py_pjsua_acc_create_uas_contact(PyObject *pSelf,
- PyObject *pArgs)
-{
- int status;
- int acc_id;
- PyObject * pObj;
- PyObj_pj_pool * p;
- pj_pool_t * pool;
- PyObject * strc;
- pj_str_t contact;
- PyObject * rObj;
- PyObj_pjsip_rx_data * objr;
- pjsip_rx_data * rdata;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, "OiO", &pObj, &acc_id, &rObj))
- {
- return NULL;
- }
- if (pObj != Py_None)
- {
- p = (PyObj_pj_pool *)pObj;
- pool = p->pool;
- } else {
- pool = NULL;
- }
- if (rObj != Py_None)
- {
- objr = (PyObj_pjsip_rx_data *)rObj;
- rdata = objr->rdata;
- } else {
- rdata = NULL;
- }
- status = pjsua_acc_create_uas_contact(pool, &contact, acc_id, rdata);
- strc = PyString_FromStringAndSize(contact.ptr, contact.slen);
-
- return Py_BuildValue("O", strc);
+ return (PyObject*)list;
}
/*
* py_pjsua_acc_set_transport
*/
-static PyObject *py_pjsua_acc_set_transport
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_acc_set_transport(PyObject *pSelf, PyObject *pArgs)
{
int acc_id, transport_id;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "ii", &acc_id, &transport_id))
- {
+ if (!PyArg_ParseTuple(pArgs, "ii", &acc_id, &transport_id)) {
return NULL;
}
@@ -1937,15 +1723,13 @@ static PyObject *py_pjsua_acc_set_transport
/*
* py_pjsua_acc_pres_notify
*/
-static PyObject *py_pjsua_acc_pres_notify
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_acc_pres_notify(PyObject *pSelf,
+ PyObject *pArgs)
{
- static char reason_buf[64];
int acc_id, state;
- PyObject *arg_pres, *arg_msg_data;
+ PyObject *arg_pres, *arg_msg_data, *arg_reason;
void *srv_pres;
pjsua_msg_data msg_data;
- const char *arg_reason;
pj_str_t reason;
pj_bool_t with_body;
pj_pool_t *pool = NULL;
@@ -1953,34 +1737,28 @@ static PyObject *py_pjsua_acc_pres_notify
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iOisO", &acc_id, &arg_pres,
+ if (!PyArg_ParseTuple(pArgs, "iOiOO", &acc_id, &arg_pres,
&state, &arg_reason, &arg_msg_data))
{
return NULL;
}
srv_pres = (void*) PyLong_AsLong(arg_pres);
- pjsua_msg_data_init(&msg_data);
with_body = (state != PJSIP_EVSUB_STATE_TERMINATED);
- if (arg_reason) {
- strncpy(reason_buf, arg_reason, sizeof(reason_buf));
- reason.ptr = reason_buf;
- reason.slen = strlen(arg_reason);
+ if (arg_reason && PyString_Check(arg_reason)) {
+ reason = PyString_ToPJ(arg_reason);
} else {
reason = pj_str("");
}
+ pjsua_msg_data_init(&msg_data);
if (arg_msg_data && arg_msg_data != Py_None) {
PyObj_pjsua_msg_data *omd = (PyObj_pjsua_msg_data *)arg_msg_data;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = PyString_Size(omd->content_type);
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = PyString_Size(omd->msg_body);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- } else if (arg_msg_data) {
- Py_XDECREF(arg_msg_data);
}
status = pjsua_pres_notify(acc_id, (pjsua_srv_pres*)srv_pres,
@@ -2048,24 +1826,6 @@ static char pjsua_enum_accs_doc[] =
static char pjsua_acc_enum_info_doc[] =
"_pjsua.Acc_Info[] _pjsua.acc_enum_info () "
"Enum accounts info.";
-static char pjsua_acc_find_for_outgoing_doc[] =
- "int _pjsua.acc_find_for_outgoing (string url) "
- "This is an internal function to find the most appropriate account "
- "to used to reach to the specified URL.";
-static char pjsua_acc_find_for_incoming_doc[] =
- "int _pjsua.acc_find_for_incoming (PyObj_pjsip_rx_data rdata) "
- "This is an internal function to find the most appropriate account "
- "to be used to handle incoming calls.";
-static char pjsua_acc_create_uac_contact_doc[] =
- "string _pjsua.acc_create_uac_contact (PyObj_pj_pool pool, "
- "int acc_id, string uri) "
- "Create a suitable URI to be put as Contact based on the specified "
- "target URI for the specified account.";
-static char pjsua_acc_create_uas_contact_doc[] =
- "string _pjsua.acc_create_uas_contact (PyObj_pj_pool pool, "
- "int acc_id, PyObj_pjsip_rx_data rdata) "
- "Create a suitable URI to be put as Contact based on the information "
- "in the incoming request.";
/* END OF LIB ACCOUNT */
@@ -2083,11 +1843,8 @@ static PyObject *py_pjsua_buddy_config_default(PyObject *pSelf,
pjsua_buddy_config cfg;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, "")) {
- return NULL;
- }
-
pjsua_buddy_config_default(&cfg);
obj = (PyObj_pjsua_buddy_config *)
PyObj_pjsua_buddy_config_new(&PyTyp_pjsua_buddy_config, NULL, NULL);
@@ -2101,16 +1858,10 @@ static PyObject *py_pjsua_buddy_config_default(PyObject *pSelf,
*/
static PyObject *py_pjsua_get_buddy_count(PyObject *pSelf, PyObject *pArgs)
{
- int ret;
-
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, "")) {
- return NULL;
- }
- ret = pjsua_get_buddy_count();
-
- return Py_BuildValue("i", ret);
+ return Py_BuildValue("i", pjsua_get_buddy_count());
}
/*
@@ -2133,39 +1884,60 @@ static PyObject *py_pjsua_buddy_is_valid(PyObject *pSelf, PyObject *pArgs)
/*
* py_pjsua_enum_buddies
- * !modified @ 241206
*/
static PyObject *py_pjsua_enum_buddies(PyObject *pSelf, PyObject *pArgs)
{
pj_status_t status;
PyObject *list;
-
pjsua_buddy_id id[PJSUA_MAX_BUDDIES];
unsigned c, i;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, "")) {
- return NULL;
- }
c = PJ_ARRAY_SIZE(id);
status = pjsua_enum_buddies(id, &c);
+ if (status != PJ_SUCCESS)
+ c = 0;
+
list = PyList_New(c);
for (i = 0; i < c; i++) {
PyList_SetItem(list, i, Py_BuildValue("i", id[i]));
}
- return Py_BuildValue("O",list);
+ return (PyObject*)list;
+}
+
+/*
+ * py_pjsua_buddy_find
+ */
+static PyObject *py_pjsua_buddy_find(PyObject *pSelf, PyObject *pArgs)
+{
+ PyObject *pURI;
+ pj_str_t uri;
+ pjsua_buddy_id buddy_id;
+
+ PJ_UNUSED_ARG(pSelf);
+
+ if (!PyArg_ParseTuple(pArgs, "O", &pURI)) {
+ return NULL;
+ }
+
+ if (!PyString_Check(pURI))
+ return Py_BuildValue("i", PJSUA_INVALID_ID);
+
+ uri = PyString_ToPJ(pURI);
+ buddy_id = pjsua_buddy_find(&uri);
+
+ return Py_BuildValue("i", buddy_id);
}
/*
* py_pjsua_buddy_get_info
- * !modified @ 071206
*/
static PyObject *py_pjsua_buddy_get_info(PyObject *pSelf, PyObject *pArgs)
{
int buddy_id;
- PyObj_pjsua_buddy_info * obj;
pjsua_buddy_info info;
int status;
@@ -2177,42 +1949,44 @@ static PyObject *py_pjsua_buddy_get_info(PyObject *pSelf, PyObject *pArgs)
status = pjsua_buddy_get_info(buddy_id, &info);
if (status == PJ_SUCCESS) {
+ PyObj_pjsua_buddy_info *obj;
+
obj = (PyObj_pjsua_buddy_info *)
- PyObj_pjsua_buddy_config_new(&PyTyp_pjsua_buddy_info,NULL,NULL);
+ PyObj_pjsua_buddy_config_new(&PyTyp_pjsua_buddy_info,
+ NULL, NULL);
PyObj_pjsua_buddy_info_import(obj, &info);
- return Py_BuildValue("O", obj);
+ return (PyObject*)obj;
} else {
- Py_INCREF(Py_None);
- return Py_None;
+ return Py_BuildValue("");
}
}
/*
* py_pjsua_buddy_add
- * !modified @ 061206
*/
static PyObject *py_pjsua_buddy_add(PyObject *pSelf, PyObject *pArgs)
{
- PyObject * bcObj;
+ PyObject *pCfg;
int buddy_id;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "O", &bcObj)) {
+ if (!PyArg_ParseTuple(pArgs, "O", &pCfg)) {
return NULL;
}
- if (bcObj != Py_None) {
+ if (pCfg != Py_None) {
pjsua_buddy_config cfg;
- PyObj_pjsua_buddy_config * bc;
+ PyObj_pjsua_buddy_config *bc;
- bc = (PyObj_pjsua_buddy_config *)bcObj;
+ bc = (PyObj_pjsua_buddy_config *)pCfg;
pjsua_buddy_config_default(&cfg);
PyObj_pjsua_buddy_config_export(&cfg, bc);
status = pjsua_buddy_add(&cfg, &buddy_id);
+
} else {
status = PJ_EINVAL;
buddy_id = PJSUA_INVALID_ID;
@@ -2227,25 +2001,76 @@ static PyObject *py_pjsua_buddy_del(PyObject *pSelf, PyObject *pArgs)
{
int buddy_id;
int status;
+ PyObject *user_data;
PJ_UNUSED_ARG(pSelf);
if (!PyArg_ParseTuple(pArgs, "i", &buddy_id)) {
return NULL;
}
-
-
- status = pjsua_buddy_del(buddy_id);
+
+ user_data = (PyObject*) pjsua_buddy_get_user_data(buddy_id);
+ Py_XDECREF(user_data);
+
+ status = pjsua_buddy_del(buddy_id);
+
return Py_BuildValue("i", status);
}
/*
- * py_pjsua_buddy_subscribe_pres
+ * py_pjsua_buddy_set_user_data
*/
-static PyObject *py_pjsua_buddy_subscribe_pres(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_buddy_set_user_data(PyObject *pSelf, PyObject *pArgs)
{
int buddy_id;
int status;
+ PyObject *user_data, *old_user_data;
+
+ PJ_UNUSED_ARG(pSelf);
+
+ if (!PyArg_ParseTuple(pArgs, "iO", &buddy_id, &user_data)) {
+ return NULL;
+ }
+
+ old_user_data = (PyObject*) pjsua_buddy_get_user_data(buddy_id);
+
+ status = pjsua_buddy_set_user_data(buddy_id, (void*)user_data);
+
+ if (status == PJ_SUCCESS) {
+ Py_XINCREF(user_data);
+ Py_XDECREF(old_user_data);
+ }
+
+ return Py_BuildValue("i", status);
+}
+
+/*
+ * py_pjsua_buddy_get_user_data
+ */
+static PyObject *py_pjsua_buddy_get_user_data(PyObject *pSelf, PyObject *pArgs)
+{
+ int buddy_id;
+ PyObject *user_data;
+
+ PJ_UNUSED_ARG(pSelf);
+
+ if (!PyArg_ParseTuple(pArgs, "i", &buddy_id)) {
+ return NULL;
+ }
+
+ user_data = (PyObject*) pjsua_buddy_get_user_data(buddy_id);
+
+ return user_data? Py_BuildValue("O", user_data) : Py_BuildValue("");
+}
+
+/*
+ * py_pjsua_buddy_subscribe_pres
+ */
+static PyObject *py_pjsua_buddy_subscribe_pres(PyObject *pSelf,
+ PyObject *pArgs)
+{
+ int buddy_id;
+ int status;
int subscribe;
PJ_UNUSED_ARG(pSelf);
@@ -2253,9 +2078,9 @@ static PyObject *py_pjsua_buddy_subscribe_pres(PyObject *pSelf, PyObject *pArgs)
if (!PyArg_ParseTuple(pArgs, "ii", &buddy_id, &subscribe)) {
return NULL;
}
-
-
- status = pjsua_buddy_subscribe_pres(buddy_id, subscribe);
+
+ status = pjsua_buddy_subscribe_pres(buddy_id, subscribe);
+
return Py_BuildValue("i", status);
}
@@ -2271,65 +2096,61 @@ static PyObject *py_pjsua_pres_dump(PyObject *pSelf, PyObject *pArgs)
if (!PyArg_ParseTuple(pArgs, "i", &verbose)) {
return NULL;
}
-
-
+
pjsua_pres_dump(verbose);
- Py_INCREF(Py_None);
- return Py_None;
+
+ return Py_BuildValue("");
}
/*
* py_pjsua_im_send
- * !modified @ 071206
*/
static PyObject *py_pjsua_im_send(PyObject *pSelf, PyObject *pArgs)
{
int status;
int acc_id;
- pj_str_t * mime_type, tmp_mime_type;
+ pj_str_t *mime_type, tmp_mime_type;
pj_str_t to, content;
- PyObject * st;
- PyObject * smt;
- PyObject * sc;
+ PyObject *pTo;
+ PyObject *pMimeType;
+ PyObject *pContent;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
-
+ PyObject *pMsgData;
int user_data;
- pj_pool_t *pool;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
if (!PyArg_ParseTuple(pArgs, "iOOOOi", &acc_id,
- &st, &smt, &sc, &omdObj, &user_data))
+ &pTo, &pMimeType, &pContent, &pMsgData, &user_data))
{
return NULL;
}
- if (smt != Py_None) {
+
+ if (pMimeType != Py_None) {
mime_type = &tmp_mime_type;
- tmp_mime_type = PyString_to_pj_str(smt);
+ tmp_mime_type = PyString_ToPJ(pMimeType);
} else {
mime_type = NULL;
}
- to = PyString_to_pj_str(st);
- content = PyString_to_pj_str(sc);
- if (omdObj != Py_None) {
-
- omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type = PyString_to_pj_str(omd->content_type);
- msg_data.msg_body = PyString_to_pj_str(omd->msg_body);
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ to = PyString_ToPJ(pTo);
+ content = PyString_ToPJ(pContent);
+ if (pMsgData != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
+ omd = (PyObj_pjsua_msg_data *)pMsgData;
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_im_send(acc_id, &to, mime_type,
- &content, &msg_data, (void *)user_data);
- pj_pool_release(pool);
- } else {
-
- status = pjsua_im_send(acc_id, &to, mime_type,
- &content, NULL, NULL);
}
+
+ status = pjsua_im_send(acc_id, &to, mime_type, &content,
+ &msg_data, (void *)user_data);
+ if (pool)
+ pj_pool_release(pool);
return Py_BuildValue("i",status);
}
@@ -2342,34 +2163,39 @@ static PyObject *py_pjsua_im_typing(PyObject *pSelf, PyObject *pArgs)
int status;
int acc_id;
pj_str_t to;
- PyObject * st;
+ PyObject *pTo;
int is_typing;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool;
+ PyObject *pMsgData;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iOiO", &acc_id, &st, &is_typing, &omdObj)) {
+ if (!PyArg_ParseTuple(pArgs, "iOiO", &acc_id, &pTo, &is_typing,
+ &pMsgData))
+ {
return NULL;
}
- to = PyString_to_pj_str(st);
+ to = PyString_ToPJ(pTo);
- if (omdObj != Py_None) {
- omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type = PyString_to_pj_str(omd->content_type);
- msg_data.msg_body = PyString_to_pj_str(omd->msg_body);
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ if (pMsgData != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
+ omd = (PyObj_pjsua_msg_data *)pMsgData;
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_im_typing(acc_id, &to, is_typing, &msg_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_im_typing(acc_id, &to, is_typing, NULL);
}
- return Py_BuildValue("i",status);
+
+ status = pjsua_im_typing(acc_id, &to, is_typing, &msg_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
static char pjsua_buddy_config_default_doc[] =
@@ -2414,1053 +2240,151 @@ static char pjsua_im_typing_doc[] =
/* LIB MEDIA */
-
-/*
- * PyObj_pjsua_codec_info
- * Codec Info
- * !modified @ 071206
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
-
- PyObject * codec_id;
- pj_uint8_t priority;
- char buf_[32];
-} PyObj_pjsua_codec_info;
-
-
-/*
- * codec_info_dealloc
- * deletes a codec_info from memory
- * !modified @ 071206
- */
-static void codec_info_dealloc(PyObj_pjsua_codec_info* self)
-{
- Py_XDECREF(self->codec_id);
-
- self->ob_type->tp_free((PyObject*)self);
-}
-
-
-/*
- * codec_info_new
- * constructor for codec_info object
- * !modified @ 071206
- */
-static PyObject * codec_info_new(PyTypeObject *type, PyObject *args,
- PyObject *kwds)
-{
- PyObj_pjsua_codec_info *self;
-
- PJ_UNUSED_ARG(args);
- PJ_UNUSED_ARG(kwds);
-
- self = (PyObj_pjsua_codec_info *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
- self->codec_id = PyString_FromString("");
- if (self->codec_id == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
-
-
- }
- return (PyObject *)self;
-}
-
-/*
- * codec_info_members
- * !modified @ 071206
- */
-static PyMemberDef codec_info_members[] =
-{
- {
- "codec_id", T_OBJECT_EX,
- offsetof(PyObj_pjsua_codec_info, codec_id), 0,
- "Codec unique identification."
- },
-
- {
- "priority", T_INT,
- offsetof(PyObj_pjsua_codec_info, priority), 0,
- "Codec priority (integer 0-255)."
- },
-
-
-
- {NULL} /* Sentinel */
-};
-
-
-
-
-/*
- * PyTyp_pjsua_codec_info
- */
-static PyTypeObject PyTyp_pjsua_codec_info =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.Codec_Info", /*tp_name*/
- sizeof(PyObj_pjsua_codec_info), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- (destructor)codec_info_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, /*tp_flags*/
- "Codec Info objects", /* tp_doc */
- 0, /* tp_traverse */
- 0, /* tp_clear */
- 0, /* tp_richcompare */
- 0, /* tp_weaklistoffset */
- 0, /* tp_iter */
- 0, /* tp_iternext */
- 0, /* tp_methods */
- codec_info_members, /* tp_members */
- 0, /* tp_getset */
- 0, /* tp_base */
- 0, /* tp_dict */
- 0, /* tp_descr_get */
- 0, /* tp_descr_set */
- 0, /* tp_dictoffset */
- 0, /* tp_init */
- 0, /* tp_alloc */
- codec_info_new, /* tp_new */
-
-};
-
-/*
- * PyObj_pjsua_conf_port_info
- * Conf Port Info
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
-
- int slot_id;
- PyObject * name;
- unsigned clock_rate;
- unsigned channel_count;
- unsigned samples_per_frame;
- unsigned bits_per_sample;
- PyListObject * listeners;
-
-} PyObj_pjsua_conf_port_info;
-
-
-/*
- * conf_port_info_dealloc
- * deletes a conf_port_info from memory
- */
-static void conf_port_info_dealloc(PyObj_pjsua_conf_port_info* self)
-{
- Py_XDECREF(self->name);
- Py_XDECREF(self->listeners);
- self->ob_type->tp_free((PyObject*)self);
-}
-
-
-/*
- * conf_port_info_new
- * constructor for conf_port_info object
- */
-static PyObject * conf_port_info_new(PyTypeObject *type, PyObject *args,
- PyObject *kwds)
-{
- PyObj_pjsua_conf_port_info *self;
-
- PJ_UNUSED_ARG(args);
- PJ_UNUSED_ARG(kwds);
-
- self = (PyObj_pjsua_conf_port_info *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
- self->name = PyString_FromString("");
- if (self->name == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
-
- self->listeners = (PyListObject *)PyList_New(0);
- if (self->listeners == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- }
- return (PyObject *)self;
-}
-
-/*
- * conf_port_info_members
- */
-static PyMemberDef conf_port_info_members[] =
-{
- {
- "slot_id", T_INT,
- offsetof(PyObj_pjsua_conf_port_info, slot_id), 0,
- "Conference port number."
- },
- {
- "name", T_OBJECT_EX,
- offsetof(PyObj_pjsua_conf_port_info, name), 0,
- "Port name"
- },
- {
- "clock_rate", T_INT,
- offsetof(PyObj_pjsua_conf_port_info, clock_rate), 0,
- "Clock rate"
- },
- {
- "channel_count", T_INT,
- offsetof(PyObj_pjsua_conf_port_info, channel_count), 0,
- "Number of channels."
- },
- {
- "samples_per_frame", T_INT,
- offsetof(PyObj_pjsua_conf_port_info, samples_per_frame), 0,
- "Samples per frame "
- },
- {
- "bits_per_sample", T_INT,
- offsetof(PyObj_pjsua_conf_port_info, bits_per_sample), 0,
- "Bits per sample"
- },
- {
- "listeners", T_OBJECT_EX,
- offsetof(PyObj_pjsua_conf_port_info, listeners), 0,
- "Array of listeners (in other words, ports where this port "
- "is transmitting to"
- },
-
- {NULL} /* Sentinel */
-};
-
-
-
-
-/*
- * PyTyp_pjsua_conf_port_info
- */
-static PyTypeObject PyTyp_pjsua_conf_port_info =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.Conf_Port_Info", /*tp_name*/
- sizeof(PyObj_pjsua_conf_port_info), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- (destructor)conf_port_info_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, /*tp_flags*/
- "Conf Port Info objects", /* tp_doc */
- 0, /* tp_traverse */
- 0, /* tp_clear */
- 0, /* tp_richcompare */
- 0, /* tp_weaklistoffset */
- 0, /* tp_iter */
- 0, /* tp_iternext */
- 0, /* tp_methods */
- conf_port_info_members, /* tp_members */
- 0, /* tp_getset */
- 0, /* tp_base */
- 0, /* tp_dict */
- 0, /* tp_descr_get */
- 0, /* tp_descr_set */
- 0, /* tp_dictoffset */
- 0, /* tp_init */
- 0, /* tp_alloc */
- conf_port_info_new, /* tp_new */
-
-};
-
-/*
- * PyObj_pjmedia_port
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
- pjmedia_port * port;
-} PyObj_pjmedia_port;
-
-
-/*
- * PyTyp_pjmedia_port
- */
-static PyTypeObject PyTyp_pjmedia_port =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.PJMedia_Port", /*tp_name*/
- sizeof(PyObj_pjmedia_port), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0, /*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, /*tp_flags*/
- "pjmedia_port objects", /* tp_doc */
-
-};
-
-/*
- * PyObj_pjmedia_snd_dev_info
- * PJMedia Snd Dev Info
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
-
-
- unsigned input_count;
- unsigned output_count;
- unsigned default_samples_per_sec;
- PyObject * name;
-
-} PyObj_pjmedia_snd_dev_info;
-
-
-/*
- * pjmedia_snd_dev_info_dealloc
- * deletes a pjmedia_snd_dev_info from memory
- */
-static void pjmedia_snd_dev_info_dealloc(PyObj_pjmedia_snd_dev_info* self)
-{
- Py_XDECREF(self->name);
- self->ob_type->tp_free((PyObject*)self);
-}
-
-
-/*
- * pjmedia_snd_dev_info_new
- * constructor for pjmedia_snd_dev_info object
- */
-static PyObject * pjmedia_snd_dev_info_new(PyTypeObject *type, PyObject *args,
- PyObject *kwds)
-{
- PyObj_pjmedia_snd_dev_info *self;
-
- PJ_UNUSED_ARG(args);
- PJ_UNUSED_ARG(kwds);
-
- self = (PyObj_pjmedia_snd_dev_info *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
- self->name = PyString_FromString("");
- if (self->name == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
-
- }
- return (PyObject *)self;
-}
-
-/*
- * pjmedia_snd_dev_info_members
- */
-static PyMemberDef pjmedia_snd_dev_info_members[] =
-{
-
- {
- "name", T_OBJECT_EX,
- offsetof(PyObj_pjmedia_snd_dev_info, name), 0,
- "Device name"
- },
- {
- "input_count", T_INT,
- offsetof(PyObj_pjmedia_snd_dev_info, input_count), 0,
- "Max number of input channels"
- },
- {
- "output_count", T_INT,
- offsetof(PyObj_pjmedia_snd_dev_info, output_count), 0,
- "Max number of output channels"
- },
- {
- "default_samples_per_sec", T_INT,
- offsetof(PyObj_pjmedia_snd_dev_info, default_samples_per_sec), 0,
- "Default sampling rate."
- },
-
-
- {NULL} /* Sentinel */
-};
-
-
-
-
-/*
- * PyTyp_pjmedia_snd_dev_info
- */
-static PyTypeObject PyTyp_pjmedia_snd_dev_info =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.PJMedia_Snd_Dev_Info", /*tp_name*/
- sizeof(PyObj_pjmedia_snd_dev_info), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- (destructor)pjmedia_snd_dev_info_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, /*tp_flags*/
- "PJMedia Snd Dev Info objects", /* tp_doc */
- 0, /* tp_traverse */
- 0, /* tp_clear */
- 0, /* tp_richcompare */
- 0, /* tp_weaklistoffset */
- 0, /* tp_iter */
- 0, /* tp_iternext */
- 0, /* tp_methods */
- pjmedia_snd_dev_info_members, /* tp_members */
- 0, /* tp_getset */
- 0, /* tp_base */
- 0, /* tp_dict */
- 0, /* tp_descr_get */
- 0, /* tp_descr_set */
- 0, /* tp_dictoffset */
- 0, /* tp_init */
- 0, /* tp_alloc */
- pjmedia_snd_dev_info_new, /* tp_new */
-
-};
-
-/*
- * PyObj_pjmedia_codec_param_info
- * PJMedia Codec Param Info
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
-
- unsigned clock_rate;
- unsigned channel_cnt;
- pj_uint32_t avg_bps;
- pj_uint16_t frm_ptime;
- pj_uint8_t pcm_bits_per_sample;
- pj_uint8_t pt;
-
-} PyObj_pjmedia_codec_param_info;
-
-
-
-/*
- * pjmedia_codec_param_info_members
- */
-static PyMemberDef pjmedia_codec_param_info_members[] =
-{
-
- {
- "clock_rate", T_INT,
- offsetof(PyObj_pjmedia_codec_param_info, clock_rate), 0,
- "Sampling rate in Hz"
- },
- {
- "channel_cnt", T_INT,
- offsetof(PyObj_pjmedia_codec_param_info, channel_cnt), 0,
- "Channel count"
- },
- {
- "avg_bps", T_INT,
- offsetof(PyObj_pjmedia_codec_param_info, avg_bps), 0,
- "Average bandwidth in bits/sec"
- },
- {
- "frm_ptime", T_INT,
- offsetof(PyObj_pjmedia_codec_param_info, frm_ptime), 0,
- "Base frame ptime in msec."
- },
- {
- "pcm_bits_per_sample", T_INT,
- offsetof(PyObj_pjmedia_codec_param_info, pcm_bits_per_sample), 0,
- "Bits/sample in the PCM side"
- },
- {
- "pt", T_INT,
- offsetof(PyObj_pjmedia_codec_param_info, pt), 0,
- "Payload type"
- },
-
- {NULL} /* Sentinel */
-};
-
-
-
-
-/*
- * PyTyp_pjmedia_codec_param_info
- */
-static PyTypeObject PyTyp_pjmedia_codec_param_info =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.PJMedia_Codec_Param_Info", /*tp_name*/
- sizeof(PyObj_pjmedia_codec_param_info), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0,/*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, /*tp_flags*/
- "PJMedia Codec Param Info objects", /* tp_doc */
- 0, /* tp_traverse */
- 0, /* tp_clear */
- 0, /* tp_richcompare */
- 0, /* tp_weaklistoffset */
- 0, /* tp_iter */
- 0, /* tp_iternext */
- 0, /* tp_methods */
- pjmedia_codec_param_info_members, /* tp_members */
-
-
-};
-
-/*
- * PyObj_pjmedia_codec_param_setting
- * PJMedia Codec Param Setting
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
- pj_uint8_t frm_per_pkt;
- unsigned vad;
- unsigned cng;
- unsigned penh;
- unsigned plc;
- unsigned reserved;
- pj_uint8_t enc_fmtp_mode;
- pj_uint8_t dec_fmtp_mode;
-
-} PyObj_pjmedia_codec_param_setting;
-
-
-
-/*
- * pjmedia_codec_param_setting_members
- */
-static PyMemberDef pjmedia_codec_param_setting_members[] =
-{
-
- {
- "frm_per_pkt", T_INT,
- offsetof(PyObj_pjmedia_codec_param_setting, frm_per_pkt), 0,
- "Number of frames per packet"
- },
- {
- "vad", T_INT,
- offsetof(PyObj_pjmedia_codec_param_setting, vad), 0,
- "Voice Activity Detector"
- },
- {
- "penh", T_INT,
- offsetof(PyObj_pjmedia_codec_param_setting, penh), 0,
- "Perceptual Enhancement"
- },
- {
- "plc", T_INT,
- offsetof(PyObj_pjmedia_codec_param_setting, plc), 0,
- "Packet loss concealment"
- },
- {
- "reserved", T_INT,
- offsetof(PyObj_pjmedia_codec_param_setting, reserved), 0,
- "Reserved, must be zero"
- },
- {
- "cng", T_INT,
- offsetof(PyObj_pjmedia_codec_param_setting, cng), 0,
- "Comfort Noise Generator"
- },
- {
- "enc_fmtp_mode", T_INT,
- offsetof(PyObj_pjmedia_codec_param_setting, enc_fmtp_mode), 0,
- "Mode param in fmtp (def:0)"
- },
- {
- "dec_fmtp_mode", T_INT,
- offsetof(PyObj_pjmedia_codec_param_setting, dec_fmtp_mode), 0,
- "Mode param in fmtp (def:0)"
- },
-
- {NULL} /* Sentinel */
-};
-
-
-
-
-/*
- * PyTyp_pjmedia_codec_param_setting
- */
-static PyTypeObject PyTyp_pjmedia_codec_param_setting =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.PJMedia_Codec_Param_Setting", /*tp_name*/
- sizeof(PyObj_pjmedia_codec_param_setting), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0,/*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, /*tp_flags*/
- "PJMedia Codec Param Setting objects", /* tp_doc */
- 0, /* tp_traverse */
- 0, /* tp_clear */
- 0, /* tp_richcompare */
- 0, /* tp_weaklistoffset */
- 0, /* tp_iter */
- 0, /* tp_iternext */
- 0, /* tp_methods */
- pjmedia_codec_param_setting_members, /* tp_members */
-
-
-};
-
-/*
- * PyObj_pjmedia_codec_param
- * PJMedia Codec Param
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
-
- PyObj_pjmedia_codec_param_info * info;
- PyObj_pjmedia_codec_param_setting * setting;
-
-} PyObj_pjmedia_codec_param;
-
-
-/*
- * pjmedia_codec_param_dealloc
- * deletes a pjmedia_codec_param from memory
- */
-static void pjmedia_codec_param_dealloc(PyObj_pjmedia_codec_param* self)
-{
- Py_XDECREF(self->info);
- Py_XDECREF(self->setting);
- self->ob_type->tp_free((PyObject*)self);
-}
-
-
-/*
- * pjmedia_codec_param_new
- * constructor for pjmedia_codec_param object
- */
-static PyObject * pjmedia_codec_param_new(PyTypeObject *type, PyObject *args,
- PyObject *kwds)
-{
- PyObj_pjmedia_codec_param *self;
-
- PJ_UNUSED_ARG(args);
- PJ_UNUSED_ARG(kwds);
-
- self = (PyObj_pjmedia_codec_param *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
- self->info = (PyObj_pjmedia_codec_param_info *)
- PyType_GenericNew(&PyTyp_pjmedia_codec_param_info, NULL, NULL);
- if (self->info == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- self->setting = (PyObj_pjmedia_codec_param_setting *)
- PyType_GenericNew(&PyTyp_pjmedia_codec_param_setting, NULL, NULL);
- if (self->setting == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- }
- return (PyObject *)self;
-}
-
-/*
- * pjmedia_codec_param_members
- */
-static PyMemberDef pjmedia_codec_param_members[] =
-{
-
- {
- "info", T_OBJECT_EX,
- offsetof(PyObj_pjmedia_codec_param, info), 0,
- "The 'info' part of codec param describes the capability of the codec,"
- " and the value should NOT be changed by application."
- },
- {
- "setting", T_OBJECT_EX,
- offsetof(PyObj_pjmedia_codec_param, setting), 0,
- "The 'setting' part of codec param describes various settings to be "
- "applied to the codec. When the codec param is retrieved from the "
- "codec or codec factory, the values of these will be filled by "
- "the capability of the codec. Any features that are supported by "
- "the codec (e.g. vad or plc) will be turned on, so that application "
- "can query which capabilities are supported by the codec. "
- "Application may change the settings here before instantiating "
- "the codec/stream."
- },
-
- {NULL} /* Sentinel */
-};
-
-
-
-
-/*
- * PyTyp_pjmedia_codec_param
- */
-static PyTypeObject PyTyp_pjmedia_codec_param =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.PJMedia_Codec_Param", /*tp_name*/
- sizeof(PyObj_pjmedia_codec_param), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- (destructor)pjmedia_codec_param_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, /*tp_flags*/
- "PJMedia Codec Param objects", /* tp_doc */
- 0, /* tp_traverse */
- 0, /* tp_clear */
- 0, /* tp_richcompare */
- 0, /* tp_weaklistoffset */
- 0, /* tp_iter */
- 0, /* tp_iternext */
- 0, /* tp_methods */
- pjmedia_codec_param_members, /* tp_members */
- 0, /* tp_getset */
- 0, /* tp_base */
- 0, /* tp_dict */
- 0, /* tp_descr_get */
- 0, /* tp_descr_set */
- 0, /* tp_dictoffset */
- 0, /* tp_init */
- 0, /* tp_alloc */
- pjmedia_codec_param_new, /* tp_new */
-
-};
-
/*
* py_pjsua_conf_get_max_ports
*/
-static PyObject *py_pjsua_conf_get_max_ports
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_conf_get_max_ports(PyObject *pSelf, PyObject *pArgs)
{
- int ret;
-
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
- ret = pjsua_conf_get_max_ports();
-
- return Py_BuildValue("i", ret);
+ return Py_BuildValue("i", pjsua_conf_get_max_ports());
}
/*
* py_pjsua_conf_get_active_ports
*/
-static PyObject *py_pjsua_conf_get_active_ports
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_conf_get_active_ports(PyObject *pSelf,
+ PyObject *pArgs)
{
- int ret;
-
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
- ret = pjsua_conf_get_active_ports();
-
- return Py_BuildValue("i", ret);
+ return Py_BuildValue("i", pjsua_conf_get_active_ports());
}
/*
* py_pjsua_enum_conf_ports
- * !modified @ 241206
*/
static PyObject *py_pjsua_enum_conf_ports(PyObject *pSelf, PyObject *pArgs)
{
pj_status_t status;
PyObject *list;
-
pjsua_conf_port_id id[PJSUA_MAX_CONF_PORTS];
unsigned c, i;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
c = PJ_ARRAY_SIZE(id);
status = pjsua_enum_conf_ports(id, &c);
+ if (status != PJ_SUCCESS)
+ c = 0;
list = PyList_New(c);
- for (i = 0; i < c; i++)
- {
- int ret = PyList_SetItem(list, i, Py_BuildValue("i", id[i]));
- if (ret == -1)
- {
- return NULL;
- }
+ for (i = 0; i < c; i++) {
+ PyList_SetItem(list, i, Py_BuildValue("i", id[i]));
}
- return Py_BuildValue("O",list);
+ return (PyObject*)list;
}
/*
* py_pjsua_conf_get_port_info
*/
-static PyObject *py_pjsua_conf_get_port_info
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_conf_get_port_info(PyObject *pSelf, PyObject *pArgs)
{
int id;
- PyObj_pjsua_conf_port_info * obj;
+ PyObj_pjsua_conf_port_info *ret;
pjsua_conf_port_info info;
int status;
unsigned i;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &id)) {
return NULL;
}
-
status = pjsua_conf_get_port_info(id, &info);
- obj = (PyObj_pjsua_conf_port_info *)conf_port_info_new
- (&PyTyp_pjsua_conf_port_info,NULL,NULL);
- obj->bits_per_sample = info.bits_per_sample;
- obj->channel_count = info.bits_per_sample;
- obj->clock_rate = info.clock_rate;
- obj->name = PyString_FromStringAndSize(info.name.ptr, info.name.slen);
- obj->samples_per_frame = info.samples_per_frame;
- obj->slot_id = info.slot_id;
-
- obj->listeners = (PyListObject *)PyList_New(info.listener_cnt);
+ ret = (PyObj_pjsua_conf_port_info *)
+ conf_port_info_new(&PyTyp_pjsua_conf_port_info, NULL, NULL);
+ ret->bits_per_sample = info.bits_per_sample;
+ ret->channel_count = info.bits_per_sample;
+ ret->clock_rate = info.clock_rate;
+ ret->name = PyString_FromPJ(&info.name);
+ ret->samples_per_frame = info.samples_per_frame;
+ ret->slot_id = info.slot_id;
+ Py_XDECREF(ret->listeners);
+ ret->listeners = PyList_New(info.listener_cnt);
for (i = 0; i < info.listener_cnt; i++) {
- PyObject * item = Py_BuildValue("i",info.listeners[i]);
- PyList_SetItem((PyObject *)obj->listeners, i, item);
+ PyObject *item = Py_BuildValue("i",info.listeners[i]);
+ PyList_SetItem(ret->listeners, i, item);
}
- return Py_BuildValue("O", obj);
-}
-
-/*
- * py_pjsua_conf_add_port
- */
-static PyObject *py_pjsua_conf_add_port
-(PyObject *pSelf, PyObject *pArgs)
-{
- int p_id;
- PyObject * oportObj;
- PyObj_pjmedia_port * oport;
- pjmedia_port * port;
- PyObject * opoolObj;
- PyObj_pj_pool * opool;
- pj_pool_t * pool;
-
- int status;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, "OO", &opoolObj, &oportObj))
- {
- return NULL;
- }
- if (opoolObj != Py_None)
- {
- opool = (PyObj_pj_pool *)opoolObj;
- pool = opool->pool;
- } else {
- opool = NULL;
- pool = NULL;
- }
- if (oportObj != Py_None)
- {
- oport = (PyObj_pjmedia_port *)oportObj;
- port = oport->port;
- } else {
- oport = NULL;
- port = NULL;
- }
-
- status = pjsua_conf_add_port(pool, port, &p_id);
-
-
- return Py_BuildValue("ii", status, p_id);
+ return (PyObject*)ret;
}
/*
* py_pjsua_conf_remove_port
*/
-static PyObject *py_pjsua_conf_remove_port
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_conf_remove_port(PyObject *pSelf, PyObject *pArgs)
{
int id;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &id)) {
return NULL;
}
status = pjsua_conf_remove_port(id);
-
return Py_BuildValue("i", status);
}
/*
* py_pjsua_conf_connect
*/
-static PyObject *py_pjsua_conf_connect
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_conf_connect(PyObject *pSelf, PyObject *pArgs)
{
int source, sink;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "ii", &source, &sink))
- {
+ if (!PyArg_ParseTuple(pArgs, "ii", &source, &sink)) {
return NULL;
}
status = pjsua_conf_connect(source, sink);
-
return Py_BuildValue("i", status);
}
/*
* py_pjsua_conf_disconnect
*/
-static PyObject *py_pjsua_conf_disconnect
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_conf_disconnect(PyObject *pSelf, PyObject *pArgs)
{
int source, sink;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "ii", &source, &sink))
- {
+ if (!PyArg_ParseTuple(pArgs, "ii", &source, &sink)) {
return NULL;
}
status = pjsua_conf_disconnect(source, sink);
-
return Py_BuildValue("i", status);
}
/*
* py_pjsua_conf_set_tx_level
*/
-static PyObject *py_pjsua_conf_set_tx_level
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_conf_set_tx_level(PyObject *pSelf, PyObject *pArgs)
{
int slot;
float level;
@@ -3468,22 +2392,19 @@ static PyObject *py_pjsua_conf_set_tx_level
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "if", &slot, &level))
- {
+ if (!PyArg_ParseTuple(pArgs, "if", &slot, &level)) {
return NULL;
}
status = pjsua_conf_adjust_tx_level(slot, level);
-
return Py_BuildValue("i", status);
}
/*
* py_pjsua_conf_set_rx_level
*/
-static PyObject *py_pjsua_conf_set_rx_level
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_conf_set_rx_level(PyObject *pSelf, PyObject *pArgs)
{
int slot;
float level;
@@ -3491,22 +2412,20 @@ static PyObject *py_pjsua_conf_set_rx_level
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "if", &slot, &level))
- {
+ if (!PyArg_ParseTuple(pArgs, "if", &slot, &level)) {
return NULL;
}
status = pjsua_conf_adjust_rx_level(slot, level);
-
return Py_BuildValue("i", status);
}
/*
* py_pjsua_conf_get_signal_level
*/
-static PyObject *py_pjsua_conf_get_signal_level
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_conf_get_signal_level(PyObject *pSelf,
+ PyObject *pArgs)
{
int slot;
unsigned tx_level, rx_level;
@@ -3514,39 +2433,35 @@ static PyObject *py_pjsua_conf_get_signal_level
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &slot))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &slot)) {
return NULL;
}
status = pjsua_conf_get_signal_level(slot, &tx_level, &rx_level);
-
return Py_BuildValue("iff", status, (float)(tx_level/255.0),
- (float)(rx_level/255.0));
+ (float)(rx_level/255.0));
}
/*
* py_pjsua_player_create
*/
-static PyObject *py_pjsua_player_create
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_player_create(PyObject *pSelf, PyObject *pArgs)
{
int id;
int options;
- PyObject * filename;
- pj_str_t str;
+ PyObject *pFilename;
+ pj_str_t filename;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "Oi", &filename, &options))
- {
+ if (!PyArg_ParseTuple(pArgs, "Oi", &pFilename, &options)) {
return NULL;
- }
- str.ptr = PyString_AsString(filename);
- str.slen = strlen(PyString_AsString(filename));
- status = pjsua_player_create(&str, options, &id);
+ }
+
+ filename = PyString_ToPJ(pFilename);
+ status = pjsua_player_create(&filename, options, &id);
return Py_BuildValue("ii", status, id);
}
@@ -3554,12 +2469,11 @@ static PyObject *py_pjsua_player_create
/*
* py_pjsua_playlist_create
*/
-static PyObject *py_pjsua_playlist_create
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_playlist_create(PyObject *pSelf, PyObject *pArgs)
{
int id;
int options;
- PyObject *arg_label, *arg_filelist;
+ PyObject *pLabel, *pFileList;
pj_str_t label;
int count;
pj_str_t files[64];
@@ -3567,22 +2481,19 @@ static PyObject *py_pjsua_playlist_create
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "OOi", &arg_label, &arg_filelist, &options))
- {
+ if (!PyArg_ParseTuple(pArgs, "OOi", &pLabel, &pFileList, &options)) {
return NULL;
- }
- label.ptr = PyString_AsString(arg_label);
- label.slen = PyString_Size(arg_label);
+ }
- if (!PyList_Check(arg_filelist))
- return NULL;
+ label = PyString_ToPJ(pLabel);
+ if (!PyList_Check(pFileList))
+ return Py_BuildValue("ii", PJ_EINVAL, PJSUA_INVALID_ID);
count = 0;
- for (count=0; count<PyList_Size(arg_filelist) &&
+ for (count=0; count<PyList_Size(pFileList) &&
count<PJ_ARRAY_SIZE(files); ++count)
{
- files[count].ptr = PyString_AsString(PyList_GetItem(arg_filelist, count));
- files[count].slen = PyString_Size(PyList_GetItem(arg_filelist, count));
+ files[count] = PyString_ToPJ(PyList_GetItem(pFileList, count));
}
status = pjsua_playlist_create(files, count, &label, options, &id);
@@ -3593,151 +2504,130 @@ static PyObject *py_pjsua_playlist_create
/*
* py_pjsua_player_get_conf_port
*/
-static PyObject *py_pjsua_player_get_conf_port
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_player_get_conf_port(PyObject *pSelf,
+ PyObject *pArgs)
{
int id, port_id;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &id)) {
return NULL;
}
port_id = pjsua_player_get_conf_port(id);
-
return Py_BuildValue("i", port_id);
}
/*
* py_pjsua_player_set_pos
*/
-static PyObject *py_pjsua_player_set_pos
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_player_set_pos(PyObject *pSelf, PyObject *pArgs)
{
int id;
- pj_uint32_t samples;
+ int samples;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iI", &id, &samples))
- {
+ if (!PyArg_ParseTuple(pArgs, "ii", &id, &samples)) {
return NULL;
}
+ if (samples < 0)
+ samples = 0;
+
status = pjsua_player_set_pos(id, samples);
-
return Py_BuildValue("i", status);
}
/*
* py_pjsua_player_destroy
*/
-static PyObject *py_pjsua_player_destroy
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_player_destroy(PyObject *pSelf, PyObject *pArgs)
{
int id;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &id)) {
return NULL;
}
status = pjsua_player_destroy(id);
-
return Py_BuildValue("i", status);
}
/*
* py_pjsua_recorder_create
- * !modified @ 261206
*/
-static PyObject *py_pjsua_recorder_create
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_recorder_create(PyObject *pSelf, PyObject *pArgs)
{
- int p_id;
- int options;
+ int id, options;
int max_size;
- PyObject * filename;
- pj_str_t str;
- PyObject * enc_param;
- pj_str_t strparam;
+ PyObject *pFilename, *pEncParam;
+ pj_str_t filename;
int enc_type;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "OiOii", &filename,
- &enc_type, &enc_param, &max_size, &options))
+ if (!PyArg_ParseTuple(pArgs, "OiOii", &pFilename, &enc_type, &pEncParam,
+ &max_size, &options))
{
return NULL;
- }
- str.ptr = PyString_AsString(filename);
- str.slen = strlen(PyString_AsString(filename));
- if (enc_param != Py_None)
- {
- strparam.ptr = PyString_AsString(enc_param);
- strparam.slen = strlen(PyString_AsString(enc_param));
- status = pjsua_recorder_create
- (&str, enc_type, NULL, max_size, options, &p_id);
- } else {
- status = pjsua_recorder_create
- (&str, enc_type, NULL, max_size, options, &p_id);
}
- return Py_BuildValue("ii", status, p_id);
+
+ filename = PyString_ToPJ(pFilename);
+
+ status = pjsua_recorder_create(&filename, enc_type, NULL, max_size,
+ options, &id);
+
+ return Py_BuildValue("ii", status, id);
}
/*
* py_pjsua_recorder_get_conf_port
*/
-static PyObject *py_pjsua_recorder_get_conf_port
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_recorder_get_conf_port(PyObject *pSelf,
+ PyObject *pArgs)
{
int id, port_id;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &id)) {
return NULL;
}
port_id = pjsua_recorder_get_conf_port(id);
-
return Py_BuildValue("i", port_id);
}
/*
* py_pjsua_recorder_destroy
*/
-static PyObject *py_pjsua_recorder_destroy
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_recorder_destroy(PyObject *pSelf, PyObject *pArgs)
{
int id;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &id)) {
return NULL;
}
status = pjsua_recorder_destroy(id);
-
return Py_BuildValue("i", status);
}
@@ -3747,145 +2637,90 @@ static PyObject *py_pjsua_recorder_destroy
static PyObject *py_pjsua_enum_snd_devs(PyObject *pSelf, PyObject *pArgs)
{
pj_status_t status;
- PyObject *list;
-
+ PyObject *ret;
pjmedia_snd_dev_info info[SND_DEV_NUM];
unsigned c, i;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
c = PJ_ARRAY_SIZE(info);
status = pjsua_enum_snd_devs(info, &c);
+ if (status != PJ_SUCCESS)
+ c = 0;
- list = PyList_New(c);
- for (i = 0; i < c; i++)
- {
- int ret;
- int j;
- char * str;
-
+ ret = PyList_New(c);
+ for (i = 0; i < c; i++) {
PyObj_pjmedia_snd_dev_info * obj;
- obj = (PyObj_pjmedia_snd_dev_info *)pjmedia_snd_dev_info_new
- (&PyTyp_pjmedia_snd_dev_info, NULL, NULL);
+
+ obj = (PyObj_pjmedia_snd_dev_info *)
+ pjmedia_snd_dev_info_new(&PyTyp_pjmedia_snd_dev_info,
+ NULL, NULL);
obj->default_samples_per_sec = info[i].default_samples_per_sec;
obj->input_count = info[i].input_count;
obj->output_count = info[i].output_count;
- str = (char *)malloc(SND_NAME_LEN * sizeof(char));
- memset(str, 0, SND_NAME_LEN);
- for (j = 0; j < SND_NAME_LEN; j++)
- {
- str[j] = info[i].name[j];
- }
- obj->name = PyString_FromStringAndSize(str, SND_NAME_LEN);
- free(str);
- ret = PyList_SetItem(list, i, (PyObject *)obj);
- if (ret == -1)
- {
- return NULL;
- }
+ obj->name = PyString_FromString(info[i].name);
+
+ PyList_SetItem(ret, i, (PyObject *)obj);
}
- return Py_BuildValue("O",list);
+ return (PyObject*)ret;
}
/*
* py_pjsua_get_snd_dev
*/
-static PyObject *py_pjsua_get_snd_dev
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_get_snd_dev(PyObject *pSelf, PyObject *pArgs)
{
int capture_dev, playback_dev;
int status;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
status = pjsua_get_snd_dev(&capture_dev, &playback_dev);
-
return Py_BuildValue("ii", capture_dev, playback_dev);
}
/*
* py_pjsua_set_snd_dev
*/
-static PyObject *py_pjsua_set_snd_dev
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_set_snd_dev(PyObject *pSelf, PyObject *pArgs)
{
int capture_dev, playback_dev;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "ii", &capture_dev, &playback_dev))
- {
+ if (!PyArg_ParseTuple(pArgs, "ii", &capture_dev, &playback_dev)) {
return NULL;
}
status = pjsua_set_snd_dev(capture_dev, playback_dev);
-
return Py_BuildValue("i", status);
}
/*
* py_pjsua_set_null_snd_dev
*/
-static PyObject *py_pjsua_set_null_snd_dev
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_set_null_snd_dev(PyObject *pSelf, PyObject *pArgs)
{
-
int status;
-
+
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
status = pjsua_set_null_snd_dev();
-
-
- return Py_BuildValue("i", status);
-}
-/*
- * py_pjsua_set_no_snd_dev
- */
-static PyObject *py_pjsua_set_no_snd_dev
-(PyObject *pSelf, PyObject *pArgs)
-{
-
- PyObj_pjmedia_port * obj;
-
- PJ_UNUSED_ARG(pSelf);
-
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
- obj = (PyObj_pjmedia_port *)PyType_GenericNew
- (&PyTyp_pjmedia_port, NULL, NULL);
- obj->port = pjsua_set_no_snd_dev();
- return Py_BuildValue("O", obj);
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_set_ec
*/
-static PyObject *py_pjsua_set_ec
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_set_ec(PyObject *pSelf, PyObject *pArgs)
{
int options;
int tail_ms;
@@ -3893,109 +2728,88 @@ static PyObject *py_pjsua_set_ec
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "ii", &tail_ms, &options))
- {
+ if (!PyArg_ParseTuple(pArgs, "ii", &tail_ms, &options)) {
return NULL;
}
-
+
status = pjsua_set_ec(tail_ms, options);
-
return Py_BuildValue("i", status);
}
/*
* py_pjsua_get_ec_tail
*/
-static PyObject *py_pjsua_get_ec_tail
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_get_ec_tail(PyObject *pSelf, PyObject *pArgs)
{
-
int status;
- unsigned p_tail_ms;
+ unsigned tail_ms;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
+ status = pjsua_get_ec_tail(&tail_ms);
+ if (status != PJ_SUCCESS)
+ tail_ms = 0;
- status = pjsua_get_ec_tail(&p_tail_ms);
-
-
- return Py_BuildValue("i", p_tail_ms);
+ return Py_BuildValue("i", tail_ms);
}
/*
* py_pjsua_enum_codecs
- * !modified @ 261206
*/
static PyObject *py_pjsua_enum_codecs(PyObject *pSelf, PyObject *pArgs)
{
pj_status_t status;
- PyObject *list;
-
+ PyObject *ret;
pjsua_codec_info info[PJMEDIA_CODEC_MGR_MAX_CODECS];
unsigned c, i;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
c = PJ_ARRAY_SIZE(info);
status = pjsua_enum_codecs(info, &c);
+ if (status != PJ_SUCCESS)
+ c = 0;
- list = PyList_New(c);
- for (i = 0; i < c; i++)
- {
- int ret;
- int j;
+ ret = PyList_New(c);
+ for (i = 0; i < c; i++) {
PyObj_pjsua_codec_info * obj;
- obj = (PyObj_pjsua_codec_info *)codec_info_new
- (&PyTyp_pjsua_codec_info, NULL, NULL);
- obj->codec_id = PyString_FromStringAndSize
- (info[i].codec_id.ptr, info[i].codec_id.slen);
+ obj = (PyObj_pjsua_codec_info *)
+ codec_info_new(&PyTyp_pjsua_codec_info, NULL, NULL);
+ obj->codec_id = PyString_FromPJ(&info[i].codec_id);
obj->priority = info[i].priority;
- for (j = 0; j < 32; j++)
- {
- obj->buf_[j] = info[i].buf_[j];
- }
- ret = PyList_SetItem(list, i, (PyObject *)obj);
- if (ret == -1) {
- return NULL;
- }
+
+ PyList_SetItem(ret, i, (PyObject *)obj);
}
-
- return Py_BuildValue("O",list);
+ return (PyObject*)ret;
}
/*
* py_pjsua_codec_set_priority
*/
-static PyObject *py_pjsua_codec_set_priority
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_codec_set_priority(PyObject *pSelf, PyObject *pArgs)
{
-
int status;
- PyObject * id;
- pj_str_t str;
- pj_uint8_t priority;
+ PyObject *pCodecId;
+ pj_str_t codec_id;
+ int priority;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "OB", &id, &priority))
- {
+ if (!PyArg_ParseTuple(pArgs, "Oi", &pCodecId, &priority)) {
return NULL;
- }
- str.ptr = PyString_AsString(id);
- str.slen = strlen(PyString_AsString(id));
- status = pjsua_codec_set_priority(&str, priority);
-
+ }
+
+ codec_id = PyString_ToPJ(pCodecId);
+ if (priority < 0)
+ priority = 0;
+ if (priority > 255)
+ priority = 255;
+
+ status = pjsua_codec_set_priority(&codec_id, (pj_uint8_t)priority);
return Py_BuildValue("i", status);
}
@@ -4003,70 +2817,70 @@ static PyObject *py_pjsua_codec_set_priority
/*
* py_pjsua_codec_get_param
*/
-static PyObject *py_pjsua_codec_get_param
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_codec_get_param(PyObject *pSelf, PyObject *pArgs)
{
-
int status;
- PyObject * id;
- pj_str_t str;
+ PyObject *pCodecId;
+ pj_str_t codec_id;
pjmedia_codec_param param;
- PyObj_pjmedia_codec_param *obj;
+ PyObj_pjmedia_codec_param *ret;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "O", &id))
- {
+ if (!PyArg_ParseTuple(pArgs, "O", &pCodecId)) {
return NULL;
}
- str.ptr = PyString_AsString(id);
- str.slen = strlen(PyString_AsString(id));
- status = pjsua_codec_get_param(&str, &param);
- obj = (PyObj_pjmedia_codec_param *)pjmedia_codec_param_new
- (&PyTyp_pjmedia_codec_param, NULL, NULL);
- obj->info->avg_bps = param.info.avg_bps;
- obj->info->channel_cnt = param.info.channel_cnt;
- obj->info->clock_rate = param.info.clock_rate;
- obj->info->frm_ptime = param.info.frm_ptime;
- obj->info->pcm_bits_per_sample = param.info.pcm_bits_per_sample;
- obj->info->pt = param.info.pt;
- obj->setting->cng = param.setting.cng;
- obj->setting->dec_fmtp_mode = param.setting.dec_fmtp_mode;
- obj->setting->enc_fmtp_mode = param.setting.enc_fmtp_mode;
- obj->setting->frm_per_pkt = param.setting.frm_per_pkt;
- obj->setting->penh = param.setting.penh;
- obj->setting->plc = param.setting.plc;
- obj->setting->reserved = param.setting.reserved;
- obj->setting->vad = param.setting.vad;
-
- return Py_BuildValue("O", obj);
+
+ codec_id = PyString_ToPJ(pCodecId);
+
+ status = pjsua_codec_get_param(&codec_id, &param);
+ if (status != PJ_SUCCESS)
+ return Py_BuildValue("");
+
+ ret = (PyObj_pjmedia_codec_param *)
+ pjmedia_codec_param_new(&PyTyp_pjmedia_codec_param, NULL, NULL);
+
+ ret->info->avg_bps = param.info.avg_bps;
+ ret->info->channel_cnt = param.info.channel_cnt;
+ ret->info->clock_rate = param.info.clock_rate;
+ ret->info->frm_ptime = param.info.frm_ptime;
+ ret->info->pcm_bits_per_sample = param.info.pcm_bits_per_sample;
+ ret->info->pt = param.info.pt;
+ ret->setting->cng = param.setting.cng;
+ ret->setting->dec_fmtp_mode = param.setting.dec_fmtp_mode;
+ ret->setting->enc_fmtp_mode = param.setting.enc_fmtp_mode;
+ ret->setting->frm_per_pkt = param.setting.frm_per_pkt;
+ ret->setting->penh = param.setting.penh;
+ ret->setting->plc = param.setting.plc;
+ ret->setting->vad = param.setting.vad;
+
+ return (PyObject*)ret;
}
+
+
/*
* py_pjsua_codec_set_param
*/
-static PyObject *py_pjsua_codec_set_param
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_codec_set_param(PyObject *pSelf, PyObject *pArgs)
{
-
int status;
- PyObject * id;
- pj_str_t str;
+ PyObject *pCodecId, *pCodecParam;
+ pj_str_t codec_id;
pjmedia_codec_param param;
- PyObject * tmpObj;
- PyObj_pjmedia_codec_param *obj;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "OO", &id, &tmpObj))
- {
+ if (!PyArg_ParseTuple(pArgs, "OO", &pCodecId, &pCodecParam)) {
return NULL;
}
- str.ptr = PyString_AsString(id);
- str.slen = strlen(PyString_AsString(id));
- if (tmpObj != Py_None)
- {
- obj = (PyObj_pjmedia_codec_param *)tmpObj;
+ codec_id = PyString_ToPJ(pCodecId);
+
+ if (pCodecParam != Py_None) {
+ PyObj_pjmedia_codec_param *obj;
+
+ obj = (PyObj_pjmedia_codec_param *)pCodecParam;
+
param.info.avg_bps = obj->info->avg_bps;
param.info.channel_cnt = obj->info->channel_cnt;
param.info.clock_rate = obj->info->clock_rate;
@@ -4079,12 +2893,13 @@ static PyObject *py_pjsua_codec_set_param
param.setting.frm_per_pkt = obj->setting->frm_per_pkt;
param.setting.penh = obj->setting->penh;
param.setting.plc = obj->setting->plc;
- param.setting.reserved = obj->setting->reserved;
param.setting.vad = obj->setting->vad;
- status = pjsua_codec_set_param(&str, &param);
+ status = pjsua_codec_set_param(&codec_id, &param);
+
} else {
- status = pjsua_codec_set_param(&str, NULL);
+ status = pjsua_codec_set_param(&codec_id, NULL);
}
+
return Py_BuildValue("i", status);
}
@@ -4100,14 +2915,6 @@ static char pjsua_enum_conf_ports_doc[] =
static char pjsua_conf_get_port_info_doc[] =
"_pjsua.Conf_Port_Info _pjsua.conf_get_port_info (int id) "
"Get information about the specified conference port";
-static char pjsua_conf_add_port_doc[] =
- "int, int _pjsua.conf_add_port "
- "(_pjsua.Pj_Pool pool, _pjsua.PJMedia_Port port) "
- "Add arbitrary media port to PJSUA's conference bridge. "
- "Application can use this function to add the media port "
- "that it creates. For media ports that are created by PJSUA-LIB "
- "(such as calls, file player, or file recorder), PJSUA-LIB will "
- "automatically add the port to the bridge.";
static char pjsua_conf_remove_port_doc[] =
"int _pjsua.conf_remove_port (int id) "
"Remove arbitrary slot from the conference bridge. "
@@ -4172,11 +2979,6 @@ static char pjsua_set_null_snd_dev_doc[] =
"Set pjsua to use null sound device. The null sound device only "
"provides the timing needed by the conference bridge, and will not "
"interract with any hardware.";
-static char pjsua_set_no_snd_dev_doc[] =
- "_pjsua.PJMedia_Port _pjsua.set_no_snd_dev () "
- "Disconnect the main conference bridge from any sound devices, "
- "and let application connect the bridge to it's "
- "own sound device/master port.";
static char pjsua_set_ec_doc[] =
"int _pjsua.set_ec (int tail_ms, int options) "
"Configure the echo canceller tail length of the sound port.";
@@ -4202,399 +3004,32 @@ static char pjsua_codec_set_param_doc[] =
/* LIB CALL */
/*
- * PyObj_pj_time_val
- * PJ Time Val
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
- long sec;
- long msec;
-
-} PyObj_pj_time_val;
-
-
-
-/*
- * pj_time_val_members
- */
-static PyMemberDef pj_time_val_members[] =
-{
-
- {
- "sec", T_INT,
- offsetof(PyObj_pj_time_val, sec), 0,
- "The seconds part of the time"
- },
- {
- "msec", T_INT,
- offsetof(PyObj_pj_time_val, sec), 0,
- "The milliseconds fraction of the time"
- },
-
-
- {NULL} /* Sentinel */
-};
-
-
-
-
-/*
- * PyTyp_pj_time_val
- */
-static PyTypeObject PyTyp_pj_time_val =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.PJ_Time_Val", /*tp_name*/
- sizeof(PyObj_pj_time_val), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0,/*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, /*tp_flags*/
- "PJ Time Val objects", /* tp_doc */
- 0, /* tp_traverse */
- 0, /* tp_clear */
- 0, /* tp_richcompare */
- 0, /* tp_weaklistoffset */
- 0, /* tp_iter */
- 0, /* tp_iternext */
- 0, /* tp_methods */
- pj_time_val_members, /* tp_members */
-
-
-};
-
-/*
- * PyObj_pjsua_call_info
- * Call Info
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
-
- int id;
- int role;
- int acc_id;
- PyObject * local_info;
- PyObject * local_contact;
- PyObject * remote_info;
- PyObject * remote_contact;
- PyObject * call_id;
- int state;
- PyObject * state_text;
- int last_status;
- PyObject * last_status_text;
- int media_status;
- int media_dir;
- int conf_slot;
- PyObj_pj_time_val * connect_duration;
- PyObj_pj_time_val * total_duration;
- struct {
- char local_info[128];
- char local_contact[128];
- char remote_info[128];
- char remote_contact[128];
- char call_id[128];
- char last_status_text[128];
- } buf_;
-
-} PyObj_pjsua_call_info;
-
-
-/*
- * call_info_dealloc
- * deletes a call_info from memory
- */
-static void call_info_dealloc(PyObj_pjsua_call_info* self)
-{
- Py_XDECREF(self->local_info);
- Py_XDECREF(self->local_contact);
- Py_XDECREF(self->remote_info);
- Py_XDECREF(self->remote_contact);
- Py_XDECREF(self->call_id);
- Py_XDECREF(self->state_text);
- Py_XDECREF(self->last_status_text);
- Py_XDECREF(self->connect_duration);
- Py_XDECREF(self->total_duration);
- self->ob_type->tp_free((PyObject*)self);
-}
-
-
-/*
- * call_info_new
- * constructor for call_info object
- */
-static PyObject * call_info_new(PyTypeObject *type, PyObject *args,
- PyObject *kwds)
-{
- PyObj_pjsua_call_info *self;
-
- PJ_UNUSED_ARG(args);
- PJ_UNUSED_ARG(kwds);
-
- self = (PyObj_pjsua_call_info *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
- self->local_info = PyString_FromString("");
- if (self->local_info == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- self->local_contact = PyString_FromString("");
- if (self->local_contact == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- self->remote_info = PyString_FromString("");
- if (self->remote_info == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- self->remote_contact = PyString_FromString("");
- if (self->remote_contact == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- self->call_id = PyString_FromString("");
- if (self->call_id == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- self->state_text = PyString_FromString("");
- if (self->state_text == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- self->last_status_text = PyString_FromString("");
- if (self->last_status_text == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- self->connect_duration = (PyObj_pj_time_val *)PyType_GenericNew
- (&PyTyp_pj_time_val,NULL,NULL);
- if (self->connect_duration == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- self->total_duration = (PyObj_pj_time_val *)PyType_GenericNew
- (&PyTyp_pj_time_val,NULL,NULL);
- if (self->total_duration == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- }
- return (PyObject *)self;
-}
-
-/*
- * call_info_members
- */
-static PyMemberDef call_info_members[] =
-{
- {
- "id", T_INT,
- offsetof(PyObj_pjsua_call_info, id), 0,
- "Call identification"
- },
- {
- "role", T_INT,
- offsetof(PyObj_pjsua_call_info, role), 0,
- "Initial call role (UAC == caller)"
- },
- {
- "acc_id", T_INT,
- offsetof(PyObj_pjsua_call_info, acc_id), 0,
- "The account ID where this call belongs."
- },
- {
- "local_info", T_OBJECT_EX,
- offsetof(PyObj_pjsua_call_info, local_info), 0,
- "Local URI"
- },
- {
- "local_contact", T_OBJECT_EX,
- offsetof(PyObj_pjsua_call_info, local_contact), 0,
- "Local Contact"
- },
- {
- "remote_info", T_OBJECT_EX,
- offsetof(PyObj_pjsua_call_info, remote_info), 0,
- "Remote URI"
- },
- {
- "remote_contact", T_OBJECT_EX,
- offsetof(PyObj_pjsua_call_info, remote_contact), 0,
- "Remote Contact"
- },
- {
- "call_id", T_OBJECT_EX,
- offsetof(PyObj_pjsua_call_info, call_id), 0,
- "Dialog Call-ID string"
- },
- {
- "state", T_INT,
- offsetof(PyObj_pjsua_call_info, state), 0,
- "Call state"
- },
- {
- "state_text", T_OBJECT_EX,
- offsetof(PyObj_pjsua_call_info, state_text), 0,
- "Text describing the state "
- },
- {
- "last_status", T_INT,
- offsetof(PyObj_pjsua_call_info, last_status), 0,
- "Last status code heard, which can be used as cause code"
- },
- {
- "last_status_text", T_OBJECT_EX,
- offsetof(PyObj_pjsua_call_info, last_status_text), 0,
- "The reason phrase describing the status."
- },
- {
- "media_status", T_INT,
- offsetof(PyObj_pjsua_call_info, media_status), 0,
- "Call media status."
- },
- {
- "media_dir", T_INT,
- offsetof(PyObj_pjsua_call_info, media_dir), 0,
- "Media direction"
- },
- {
- "conf_slot", T_INT,
- offsetof(PyObj_pjsua_call_info, conf_slot), 0,
- "The conference port number for the call"
- },
- {
- "connect_duration", T_OBJECT_EX,
- offsetof(PyObj_pjsua_call_info, connect_duration), 0,
- "Up-to-date call connected duration(zero when call is not established)"
- },
- {
- "total_duration", T_OBJECT_EX,
- offsetof(PyObj_pjsua_call_info, total_duration), 0,
- "Total call duration, including set-up time"
- },
-
- {NULL} /* Sentinel */
-};
-
-
-
-
-/*
- * PyTyp_pjsua_call_info
- */
-static PyTypeObject PyTyp_pjsua_call_info =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.Call_Info", /*tp_name*/
- sizeof(PyObj_pjsua_call_info), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- (destructor)call_info_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, /*tp_flags*/
- "Call Info objects", /* tp_doc */
- 0, /* tp_traverse */
- 0, /* tp_clear */
- 0, /* tp_richcompare */
- 0, /* tp_weaklistoffset */
- 0, /* tp_iter */
- 0, /* tp_iternext */
- 0, /* tp_methods */
- call_info_members, /* tp_members */
- 0, /* tp_getset */
- 0, /* tp_base */
- 0, /* tp_dict */
- 0, /* tp_descr_get */
- 0, /* tp_descr_set */
- 0, /* tp_dictoffset */
- 0, /* tp_init */
- 0, /* tp_alloc */
- call_info_new, /* tp_new */
-
-};
-
-/*
* py_pjsua_call_get_max_count
*/
-static PyObject *py_pjsua_call_get_max_count
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_get_max_count(PyObject *pSelf, PyObject *pArgs)
{
int count;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
count = pjsua_call_get_max_count();
-
return Py_BuildValue("i", count);
}
/*
* py_pjsua_call_get_count
*/
-static PyObject *py_pjsua_call_get_count
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_get_count(PyObject *pSelf, PyObject *pArgs)
{
-
int count;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
count = pjsua_call_get_count();
-
return Py_BuildValue("i", count);
}
@@ -4604,637 +3039,587 @@ static PyObject *py_pjsua_call_get_count
static PyObject *py_pjsua_enum_calls(PyObject *pSelf, PyObject *pArgs)
{
pj_status_t status;
- PyObject *list;
-
+ PyObject *ret;
pjsua_transport_id id[PJSUA_MAX_CALLS];
unsigned c, i;
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
c = PJ_ARRAY_SIZE(id);
status = pjsua_enum_calls(id, &c);
+ if (status != PJ_SUCCESS)
+ c = 0;
- list = PyList_New(c);
- for (i = 0; i < c; i++)
- {
- int ret = PyList_SetItem(list, i, Py_BuildValue("i", id[i]));
- if (ret == -1)
- {
- return NULL;
- }
+ ret = PyList_New(c);
+ for (i = 0; i < c; i++) {
+ PyList_SetItem(ret, i, Py_BuildValue("i", id[i]));
}
- return Py_BuildValue("O",list);
+ return (PyObject*)ret;
}
/*
* py_pjsua_call_make_call
*/
-static PyObject *py_pjsua_call_make_call
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_make_call(PyObject *pSelf, PyObject *pArgs)
{
int status;
int acc_id;
pj_str_t dst_uri;
- PyObject * sd;
+ PyObject *pDstUri, *pMsgData, *pUserData;
unsigned options;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- int user_data;
int call_id;
- pj_pool_t * pool;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple
- (pArgs, "iOIiO", &acc_id, &sd, &options, &user_data, &omdObj))
+ if (!PyArg_ParseTuple(pArgs, "iOIOO", &acc_id, &pDstUri, &options,
+ &pUserData, &pMsgData))
{
return NULL;
}
- dst_uri.ptr = PyString_AsString(sd);
- dst_uri.slen = strlen(PyString_AsString(sd));
- if (omdObj != Py_None)
- {
- omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ dst_uri = PyString_ToPJ(pDstUri);
+ pjsua_msg_data_init(&msg_data);
+
+ if (pMsgData != Py_None) {
+ PyObj_pjsua_msg_data * omd;
+
+ omd = (PyObj_pjsua_msg_data *)pMsgData;
+
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_make_call(acc_id, &dst_uri,
- options, (void*)user_data, &msg_data, &call_id);
- pj_pool_release(pool);
- } else {
-
- status = pjsua_call_make_call(acc_id, &dst_uri,
- options, (void*)user_data, NULL, &call_id);
}
-
- return Py_BuildValue("ii",status, call_id);
-
+
+ Py_XINCREF(pUserData);
+
+ status = pjsua_call_make_call(acc_id, &dst_uri,
+ options, (void*)pUserData,
+ &msg_data, &call_id);
+ if (pool != NULL)
+ pj_pool_release(pool);
+
+ if (status != PJ_SUCCESS)
+ Py_XDECREF(pUserData);
+
+ return Py_BuildValue("ii", status, call_id);
}
/*
* py_pjsua_call_is_active
*/
-static PyObject *py_pjsua_call_is_active
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_is_active(PyObject *pSelf, PyObject *pArgs)
{
int call_id;
- int isActive;
+ int is_active;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &call_id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &call_id)) {
return NULL;
}
- isActive = pjsua_call_is_active(call_id);
-
+ is_active = pjsua_call_is_active(call_id);
- return Py_BuildValue("i", isActive);
+ return Py_BuildValue("i", is_active);
}
/*
* py_pjsua_call_has_media
*/
-static PyObject *py_pjsua_call_has_media
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_has_media(PyObject *pSelf, PyObject *pArgs)
{
int call_id;
- int hasMedia;
+ int has_media;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &call_id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &call_id)) {
return NULL;
}
- hasMedia = pjsua_call_has_media(call_id);
-
-
- return Py_BuildValue("i", hasMedia);
+ has_media = pjsua_call_has_media(call_id);
+
+ return Py_BuildValue("i", has_media);
}
/*
* py_pjsua_call_get_conf_port
*/
-static PyObject *py_pjsua_call_get_conf_port
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject* py_pjsua_call_get_conf_port(PyObject *pSelf, PyObject *pArgs)
{
int call_id;
- int port_id;
-
+ int port_id;
+
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &call_id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &call_id)) {
return NULL;
- }
-
+ }
+
port_id = pjsua_call_get_conf_port(call_id);
-
-
+
return Py_BuildValue("i", port_id);
}
/*
* py_pjsua_call_get_info
*/
-static PyObject *py_pjsua_call_get_info
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject* py_pjsua_call_get_info(PyObject *pSelf, PyObject *pArgs)
{
int call_id;
int status;
- PyObj_pjsua_call_info * oi;
+ PyObj_pjsua_call_info *ret;
pjsua_call_info info;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &call_id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &call_id)) {
return NULL;
}
-
status = pjsua_call_get_info(call_id, &info);
- if (status == PJ_SUCCESS)
- {
- oi = (PyObj_pjsua_call_info *)call_info_new(&PyTyp_pjsua_call_info, NULL, NULL);
- oi->acc_id = info.acc_id;
- pj_ansi_snprintf(oi->buf_.call_id, sizeof(oi->buf_.call_id),
- "%.*s", (int)info.call_id.slen, info.call_id.ptr);
- pj_ansi_snprintf(oi->buf_.last_status_text,
- sizeof(oi->buf_.last_status_text),
- "%.*s", (int)info.last_status_text.slen, info.last_status_text.ptr);
- pj_ansi_snprintf(oi->buf_.local_contact, sizeof(oi->buf_.local_contact),
- "%.*s", (int)info.local_contact.slen, info.local_contact.ptr);
- pj_ansi_snprintf(oi->buf_.local_info, sizeof(oi->buf_.local_info),
- "%.*s", (int)info.local_info.slen, info.local_info.ptr);
- pj_ansi_snprintf(oi->buf_.remote_contact,
- sizeof(oi->buf_.remote_contact),
- "%.*s", (int)info.remote_contact.slen, info.remote_contact.ptr);
- pj_ansi_snprintf(oi->buf_.remote_info, sizeof(oi->buf_.remote_info),
- "%.*s", (int)info.remote_info.slen, info.remote_info.ptr);
-
- oi->call_id = PyString_FromStringAndSize(info.call_id.ptr,
- info.call_id.slen);
- oi->conf_slot = info.conf_slot;
- oi->connect_duration->sec = info.connect_duration.sec;
- oi->connect_duration->msec = info.connect_duration.msec;
- oi->total_duration->sec = info.total_duration.sec;
- oi->total_duration->msec = info.total_duration.msec;
- oi->id = info.id;
- oi->last_status = info.last_status;
- oi->last_status_text = PyString_FromStringAndSize(
- info.last_status_text.ptr, info.last_status_text.slen);
- oi->local_contact = PyString_FromStringAndSize(
- info.local_contact.ptr, info.local_contact.slen);
- oi->local_info = PyString_FromStringAndSize(
- info.local_info.ptr, info.local_info.slen);
- oi->remote_contact = PyString_FromStringAndSize(
- info.remote_contact.ptr, info.remote_contact.slen);
- oi->remote_info = PyString_FromStringAndSize(
- info.remote_info.ptr, info.remote_info.slen);
- oi->media_dir = info.media_dir;
- oi->media_status = info.media_status;
- oi->role = info.role;
- oi->state = info.state;
- oi->state_text = PyString_FromStringAndSize(
- info.state_text.ptr, info.state_text.slen);
-
- return Py_BuildValue("O", oi);
- } else {
- Py_INCREF(Py_None);
- return Py_None;
- }
+ if (status != PJ_SUCCESS)
+ return Py_BuildValue("");
+
+ ret = (PyObj_pjsua_call_info *)call_info_new(&PyTyp_pjsua_call_info,
+ NULL, NULL);
+ ret->acc_id = info.acc_id;
+ Py_XDECREF(ret->call_id);
+ ret->call_id = PyString_FromPJ(&info.call_id);
+ ret->conf_slot = info.conf_slot;
+ ret->connect_duration = info.connect_duration.sec * 1000 +
+ info.connect_duration.msec;
+ ret->total_duration = info.total_duration.sec * 1000 +
+ info.total_duration.msec;
+ ret->id = info.id;
+ ret->last_status = info.last_status;
+ Py_XDECREF(ret->last_status_text);
+ ret->last_status_text = PyString_FromPJ(&info.last_status_text);
+ Py_XDECREF(ret->local_contact);
+ ret->local_contact = PyString_FromPJ(&info.local_contact);
+ Py_XDECREF(ret->local_info);
+ ret->local_info = PyString_FromPJ(&info.local_info);
+ Py_XDECREF(ret->remote_contact);
+ ret->remote_contact = PyString_FromPJ(&info.remote_contact);
+ Py_XDECREF(ret->remote_info);
+ ret->remote_info = PyString_FromPJ(&info.remote_info);
+ ret->media_dir = info.media_dir;
+ ret->media_status = info.media_status;
+ ret->role = info.role;
+ ret->state = info.state;
+ Py_XDECREF(ret->state_text);
+ ret->state_text = PyString_FromPJ(&info.state_text);
+
+ return (PyObject*)ret;
}
/*
* py_pjsua_call_set_user_data
*/
-static PyObject *py_pjsua_call_set_user_data
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_set_user_data(PyObject *pSelf, PyObject *pArgs)
{
int call_id;
- int user_data;
+ PyObject *pUserData, *old_user_data;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "ii", &call_id, &user_data))
- {
+ if (!PyArg_ParseTuple(pArgs, "iO", &call_id, &pUserData)) {
return NULL;
- }
-
- status = pjsua_call_set_user_data(call_id, (void*)user_data);
-
+ }
+
+ old_user_data = (PyObject*) pjsua_call_get_user_data(call_id);
+
+ if (old_user_data == pUserData) {
+ return Py_BuildValue("i", PJ_SUCCESS);
+ }
+
+ Py_XINCREF(pUserData);
+ Py_XDECREF(old_user_data);
+
+ status = pjsua_call_set_user_data(call_id, (void*)pUserData);
+ if (status != PJ_SUCCESS)
+ Py_XDECREF(pUserData);
+
return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_get_user_data
*/
-static PyObject *py_pjsua_call_get_user_data
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_get_user_data(PyObject *pSelf, PyObject *pArgs)
{
int call_id;
- void * user_data;
+ PyObject *user_data;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &call_id))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &call_id)) {
return NULL;
}
- user_data = pjsua_call_get_user_data(call_id);
-
-
- return Py_BuildValue("i", (int)user_data);
+ user_data = (PyObject*)pjsua_call_get_user_data(call_id);
+ return user_data ? Py_BuildValue("O", user_data) : Py_BuildValue("");
}
/*
* py_pjsua_call_answer
*/
-static PyObject *py_pjsua_call_answer
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_answer(PyObject *pSelf, PyObject *pArgs)
{
int status;
int call_id;
pj_str_t * reason, tmp_reason;
- PyObject * sr;
+ PyObject *pReason;
unsigned code;
pjsua_msg_data msg_data;
PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool;
+ pj_pool_t * pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iIOO", &call_id, &code, &sr, &omdObj))
- {
+ if (!PyArg_ParseTuple(pArgs, "iIOO", &call_id, &code, &pReason, &omdObj)) {
return NULL;
}
- if (sr == Py_None)
- {
+
+ if (pReason == Py_None) {
reason = NULL;
} else {
reason = &tmp_reason;
- tmp_reason.ptr = PyString_AsString(sr);
- tmp_reason.slen = strlen(PyString_AsString(sr));
+ tmp_reason = PyString_ToPJ(pReason);
}
- if (omdObj != Py_None)
- {
+
+ pjsua_msg_data_init(&msg_data);
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
-
- status = pjsua_call_answer(call_id, code, reason, &msg_data);
-
- pj_pool_release(pool);
- } else {
-
- status = pjsua_call_answer(call_id, code, reason, NULL);
-
}
- return Py_BuildValue("i",status);
+ status = pjsua_call_answer(call_id, code, reason, &msg_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_hangup
*/
-static PyObject *py_pjsua_call_hangup
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_hangup(PyObject *pSelf, PyObject *pArgs)
{
int status;
int call_id;
- pj_str_t * reason, tmp_reason;
- PyObject * sr;
+ pj_str_t *reason, tmp_reason;
+ PyObject *pReason;
unsigned code;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool = NULL;
+ PyObject *omdObj;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iIOO", &call_id, &code, &sr, &omdObj))
+ if (!PyArg_ParseTuple(pArgs, "iIOO", &call_id, &code, &pReason,
+ &omdObj))
{
return NULL;
}
- if (sr == Py_None)
- {
+
+ if (pReason == Py_None) {
reason = NULL;
} else {
reason = &tmp_reason;
- tmp_reason.ptr = PyString_AsString(sr);
- tmp_reason.slen = strlen(PyString_AsString(sr));
+ tmp_reason = PyString_ToPJ(pReason);
}
- if (omdObj != Py_None)
- {
+
+ pjsua_msg_data_init(&msg_data);
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_hangup(call_id, code, reason, &msg_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_call_hangup(call_id, code, reason, NULL);
}
- return Py_BuildValue("i",status);
+ status = pjsua_call_hangup(call_id, code, reason, &msg_data);
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_set_hold
*/
-static PyObject *py_pjsua_call_set_hold
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_set_hold(PyObject *pSelf, PyObject *pArgs)
{
int status;
int call_id;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool;
+ PyObject *omdObj;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iO", &call_id, &omdObj))
- {
+ if (!PyArg_ParseTuple(pArgs, "iO", &call_id, &omdObj)) {
return NULL;
}
- if (omdObj != Py_None)
- {
+ pjsua_msg_data_init(&msg_data);
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_set_hold(call_id, &msg_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_call_set_hold(call_id, NULL);
}
+
+ status = pjsua_call_set_hold(call_id, &msg_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
return Py_BuildValue("i",status);
}
/*
* py_pjsua_call_reinvite
*/
-static PyObject *py_pjsua_call_reinvite
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_reinvite(PyObject *pSelf, PyObject *pArgs)
{
int status;
- int call_id;
+ int call_id;
int unhold;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool;
+ PyObject *omdObj;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iiO", &call_id, &unhold, &omdObj))
- {
+ if (!PyArg_ParseTuple(pArgs, "iiO", &call_id, &unhold, &omdObj)) {
return NULL;
}
- if (omdObj != Py_None)
- {
+ pjsua_msg_data_init(&msg_data);
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_reinvite(call_id, unhold, &msg_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_call_reinvite(call_id, unhold, NULL);
}
- return Py_BuildValue("i",status);
+
+ status = pjsua_call_reinvite(call_id, unhold, &msg_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_update
*/
-static PyObject *py_pjsua_call_update
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_update(PyObject *pSelf, PyObject *pArgs)
{
int status;
int call_id;
int option;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool;
+ PyObject *omdObj;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iiO", &call_id, &option, &omdObj))
- {
+ if (!PyArg_ParseTuple(pArgs, "iiO", &call_id, &option, &omdObj)) {
return NULL;
}
- if (omdObj != Py_None)
- {
+ pjsua_msg_data_init(&msg_data);
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_update(call_id, option, &msg_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_call_update(call_id, option, NULL);
}
- return Py_BuildValue("i",status);
+
+ status = pjsua_call_update(call_id, option, &msg_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_send_request
*/
-static PyObject *py_pjsua_call_send_request
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_send_request(PyObject *pSelf, PyObject *pArgs)
{
int status;
int call_id;
- PyObject *method_obj;
+ PyObject *pMethod;
pj_str_t method;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool;
+ PyObject *omdObj;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iOO", &call_id, &method_obj, &omdObj))
- {
+ if (!PyArg_ParseTuple(pArgs, "iOO", &call_id, &pMethod, &omdObj)) {
return NULL;
}
- if (!PyString_Check(method_obj)) {
+ if (!PyString_Check(pMethod)) {
return NULL;
}
- method.ptr = PyString_AsString(method_obj);
- method.slen = PyString_Size(method_obj);
+ method = PyString_ToPJ(pMethod);
+ pjsua_msg_data_init(&msg_data);
+
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data *omd;
- if (omdObj != Py_None)
- {
omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_send_request(call_id, &method, &msg_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_call_send_request(call_id, &method, NULL);
}
- return Py_BuildValue("i",status);
+
+ status = pjsua_call_send_request(call_id, &method, &msg_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_xfer
*/
-static PyObject *py_pjsua_call_xfer
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_xfer(PyObject *pSelf, PyObject *pArgs)
{
int status;
int call_id;
pj_str_t dest;
- PyObject * sd;
+ PyObject *pDstUri;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool;
+ PyObject *omdObj;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iOO", &call_id, &sd, &omdObj))
- {
+ if (!PyArg_ParseTuple(pArgs, "iOO", &call_id, &pDstUri, &omdObj)) {
return NULL;
}
-
- dest.ptr = PyString_AsString(sd);
- dest.slen = strlen(PyString_AsString(sd));
-
- if (omdObj != Py_None)
- {
+
+ if (!PyString_Check(pDstUri))
+ return NULL;
+
+ dest = PyString_ToPJ(pDstUri);
+ pjsua_msg_data_init(&msg_data);
+
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_xfer(call_id, &dest, &msg_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_call_xfer(call_id, &dest, NULL);
}
- return Py_BuildValue("i",status);
+
+ status = pjsua_call_xfer(call_id, &dest, &msg_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_xfer_replaces
*/
-static PyObject *py_pjsua_call_xfer_replaces
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_xfer_replaces(PyObject *pSelf, PyObject *pArgs)
{
int status;
int call_id;
int dest_call_id;
unsigned options;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool;
+ PyObject *omdObj;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple
- (pArgs, "iiIO", &call_id, &dest_call_id, &options, &omdObj))
+ if (!PyArg_ParseTuple(pArgs, "iiIO", &call_id, &dest_call_id,
+ &options, &omdObj))
{
return NULL;
}
-
- if (omdObj != Py_None)
- {
- omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+
+ pjsua_msg_data_init(&msg_data);
+
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
+ omd = (PyObj_pjsua_msg_data *)omdObj;
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_xfer_replaces
- (call_id, dest_call_id, options, &msg_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_call_xfer_replaces(call_id, dest_call_id,options, NULL);
}
- return Py_BuildValue("i",status);
+
+ status = pjsua_call_xfer_replaces(call_id, dest_call_id, options,
+ &msg_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_dial_dtmf
*/
-static PyObject *py_pjsua_call_dial_dtmf
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_dial_dtmf(PyObject *pSelf, PyObject *pArgs)
{
int call_id;
- PyObject * sd;
+ PyObject *pDigits;
pj_str_t digits;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iO", &call_id, &sd))
- {
+ if (!PyArg_ParseTuple(pArgs, "iO", &call_id, &pDigits)) {
return NULL;
- }
- digits.ptr = PyString_AsString(sd);
- digits.slen = strlen(PyString_AsString(sd));
+ }
+
+ if (!PyString_Check(pDigits))
+ return Py_BuildValue("i", PJ_EINVAL);
+
+ digits = PyString_ToPJ(pDigits);
status = pjsua_call_dial_dtmf(call_id, &digits);
return Py_BuildValue("i", status);
@@ -5243,147 +3628,142 @@ static PyObject *py_pjsua_call_dial_dtmf
/*
* py_pjsua_call_send_im
*/
-static PyObject *py_pjsua_call_send_im
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_send_im(PyObject *pSelf, PyObject *pArgs)
{
int status;
int call_id;
pj_str_t content;
pj_str_t * mime_type, tmp_mime_type;
- PyObject * sm;
- PyObject * sc;
+ PyObject *pMimeType, *pContent, *omdObj;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
int user_data;
- pj_pool_t * pool;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple
- (pArgs, "iOOOi", &call_id, &sm, &sc, &omdObj, &user_data))
+ if (!PyArg_ParseTuple(pArgs, "iOOOi", &call_id, &pMimeType, &pContent,
+ &omdObj, &user_data))
{
return NULL;
}
- if (sm == Py_None)
- {
- mime_type = NULL;
- } else {
+
+ if (!PyString_Check(pContent))
+ return Py_BuildValue("i", PJ_EINVAL);
+
+ content = PyString_ToPJ(pContent);
+
+ if (PyString_Check(pMimeType)) {
mime_type = &tmp_mime_type;
- tmp_mime_type.ptr = PyString_AsString(sm);
- tmp_mime_type.slen = strlen(PyString_AsString(sm));
+ tmp_mime_type = PyString_ToPJ(pMimeType);
+ } else {
+ mime_type = NULL;
}
- content.ptr = PyString_AsString(sc);
- content.slen = strlen(PyString_AsString(sc));
-
- if (omdObj != Py_None)
- {
+
+ pjsua_msg_data_init(&msg_data);
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data * omd;
+
omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_send_im
- (call_id, mime_type, &content, &msg_data, (void *)user_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_call_send_im
- (call_id, mime_type, &content, NULL, (void *)user_data);
}
- return Py_BuildValue("i",status);
+ status = pjsua_call_send_im(call_id, mime_type, &content,
+ &msg_data, (void *)user_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_send_typing_ind
*/
-static PyObject *py_pjsua_call_send_typing_ind
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_send_typing_ind(PyObject *pSelf,
+ PyObject *pArgs)
{
int status;
int call_id;
int is_typing;
pjsua_msg_data msg_data;
- PyObject * omdObj;
- PyObj_pjsua_msg_data * omd;
- pj_pool_t * pool;
+ PyObject *omdObj;
+ pj_pool_t *pool = NULL;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iiO", &call_id, &is_typing, &omdObj))
- {
+ if (!PyArg_ParseTuple(pArgs, "iiO", &call_id, &is_typing, &omdObj)) {
return NULL;
}
- if (omdObj != Py_None)
- {
+ pjsua_msg_data_init(&msg_data);
+ if (omdObj != Py_None) {
+ PyObj_pjsua_msg_data *omd;
+
omd = (PyObj_pjsua_msg_data *)omdObj;
- msg_data.content_type.ptr = PyString_AsString(omd->content_type);
- msg_data.content_type.slen = strlen
- (PyString_AsString(omd->content_type));
- msg_data.msg_body.ptr = PyString_AsString(omd->msg_body);
- msg_data.msg_body.slen = strlen(PyString_AsString(omd->msg_body));
- pool = pjsua_pool_create("pjsua", POOL_SIZE, POOL_SIZE);
+ msg_data.content_type = PyString_ToPJ(omd->content_type);
+ msg_data.msg_body = PyString_ToPJ(omd->msg_body);
+ pool = pjsua_pool_create("pytmp", POOL_SIZE, POOL_SIZE);
translate_hdr(pool, &msg_data.hdr_list, omd->hdr_list);
- status = pjsua_call_send_typing_ind(call_id, is_typing, &msg_data);
- pj_pool_release(pool);
- } else {
- status = pjsua_call_send_typing_ind(call_id, is_typing, NULL);
}
- return Py_BuildValue("i",status);
+
+ status = pjsua_call_send_typing_ind(call_id, is_typing, &msg_data);
+
+ if (pool)
+ pj_pool_release(pool);
+
+ return Py_BuildValue("i", status);
}
/*
* py_pjsua_call_hangup_all
*/
-static PyObject *py_pjsua_call_hangup_all
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_hangup_all(PyObject *pSelf, PyObject *pArgs)
{
-
PJ_UNUSED_ARG(pSelf);
+ PJ_UNUSED_ARG(pArgs);
- if (!PyArg_ParseTuple(pArgs, ""))
- {
- return NULL;
- }
-
pjsua_call_hangup_all();
- Py_INCREF(Py_None);
- return Py_None;
+ return Py_BuildValue("");
}
/*
* py_pjsua_call_dump
*/
-static PyObject *py_pjsua_call_dump
-(PyObject *pSelf, PyObject *pArgs)
+static PyObject *py_pjsua_call_dump(PyObject *pSelf, PyObject *pArgs)
{
int call_id;
int with_media;
- PyObject * sb;
- PyObject * si;
- char * buffer;
- char * indent;
+ PyObject *ret;
+ PyObject *pIndent;
+ char *buffer;
+ char *indent;
unsigned maxlen;
int status;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "iiIO", &call_id, &with_media, &maxlen, &si))
+ if (!PyArg_ParseTuple(pArgs, "iiIO", &call_id, &with_media,
+ &maxlen, &pIndent))
{
return NULL;
}
- buffer = (char *) malloc (maxlen * sizeof(char));
- indent = PyString_AsString(si);
+
+ buffer = (char*) malloc(maxlen * sizeof(char));
+ indent = PyString_AsString(pIndent);
status = pjsua_call_dump(call_id, with_media, buffer, maxlen, indent);
- sb = PyString_FromStringAndSize(buffer, maxlen);
+ if (status != PJ_SUCCESS) {
+ free(buffer);
+ return PyString_FromString("");
+ }
+
+ ret = PyString_FromString(buffer);
free(buffer);
- return Py_BuildValue("O", sb);
+ return (PyObject*)ret;
}
@@ -5393,58 +3773,17 @@ static PyObject *py_pjsua_call_dump
*/
static PyObject *py_pjsua_dump(PyObject *pSelf, PyObject *pArgs)
{
- unsigned old_decor;
- char buf[1024];
int detail;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &detail))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &detail)) {
return NULL;
}
- PJ_LOG(3,(THIS_FILE, "Start dumping application states:"));
-
- old_decor = pj_log_get_decor();
- pj_log_set_decor(old_decor & (PJ_LOG_HAS_NEWLINE | PJ_LOG_HAS_CR));
+ pjsua_dump(detail);
- if (detail)
- pj_dump_config();
-
- pjsip_endpt_dump(pjsua_get_pjsip_endpt(), detail);
- pjmedia_endpt_dump(pjsua_get_pjmedia_endpt());
- pjsip_tsx_layer_dump(detail);
- pjsip_ua_dump(detail);
-
-
- /* Dump all invite sessions: */
- PJ_LOG(3,(THIS_FILE, "Dumping invite sessions:"));
-
- if (pjsua_call_get_count() == 0) {
-
- PJ_LOG(3,(THIS_FILE, " - no sessions -"));
-
- } else {
- unsigned i, max;
-
- max = pjsua_call_get_max_count();
- for (i=0; i<max; ++i) {
- if (pjsua_call_is_active(i)) {
- pjsua_call_dump(i, detail, buf, sizeof(buf), " ");
- PJ_LOG(3,(THIS_FILE, "%s", buf));
- }
- }
- }
-
- /* Dump presence status */
- pjsua_pres_dump(detail);
-
- pj_log_set_decor(old_decor);
- PJ_LOG(3,(THIS_FILE, "Dump complete"));
-
- Py_INCREF(Py_None);
- return Py_None;
+ return Py_BuildValue("");
}
@@ -5455,17 +3794,17 @@ static PyObject *py_pj_strerror(PyObject *pSelf, PyObject *pArgs)
{
int err;
char err_msg[PJ_ERR_MSG_SIZE];
+ pj_str_t ret;
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "i", &err))
- {
+ if (!PyArg_ParseTuple(pArgs, "i", &err)) {
return NULL;
}
- pj_strerror(err, err_msg, sizeof(err_msg));
+ ret = pj_strerror(err, err_msg, sizeof(err_msg));
- return PyString_FromString(err_msg);
+ return PyString_FromStringAndSize(err_msg, ret.slen);
}
@@ -5474,7 +3813,7 @@ static PyObject *py_pj_strerror(PyObject *pSelf, PyObject *pArgs)
*/
static PyObject *py_pj_parse_simple_sip(PyObject *pSelf, PyObject *pArgs)
{
- const char *uri_param;
+ const char *arg_uri;
pj_pool_t *pool;
char tmp[PJSIP_MAX_URL_SIZE];
pjsip_uri *uri;
@@ -5483,12 +3822,11 @@ static PyObject *py_pj_parse_simple_sip(PyObject *pSelf, PyObject *pArgs)
PJ_UNUSED_ARG(pSelf);
- if (!PyArg_ParseTuple(pArgs, "s", &uri_param))
- {
+ if (!PyArg_ParseTuple(pArgs, "s", &arg_uri)) {
return NULL;
}
- strncpy(tmp, uri_param, sizeof(tmp));
+ strncpy(tmp, arg_uri, sizeof(tmp));
tmp[sizeof(tmp)-1] = '\0';
pool = pjsua_pool_create("py_pj_parse_simple_sip", 512, 512);
@@ -5497,24 +3835,22 @@ static PyObject *py_pj_parse_simple_sip(PyObject *pSelf, PyObject *pArgs)
if (uri == NULL || (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
!PJSIP_URI_SCHEME_IS_SIPS(uri))) {
pj_pool_release(pool);
- Py_INCREF(Py_None);
- return Py_None;
+ return Py_BuildValue("");
}
ret = PyTuple_New(5);
sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(uri);
/* Scheme */
- item = PyString_FromStringAndSize(pjsip_uri_get_scheme(uri)->ptr,
- pjsip_uri_get_scheme(uri)->slen);
+ item = PyString_FromPJ(pjsip_uri_get_scheme(uri));
PyTuple_SetItem(ret, 0, item);
/* Username */
- item = PyString_FromStringAndSize(sip_uri->user.ptr, sip_uri->user.slen);
+ item = PyString_FromPJ(&sip_uri->user);
PyTuple_SetItem(ret, 1, item);
/* Host */
- item = PyString_FromStringAndSize(sip_uri->host.ptr, sip_uri->host.slen);
+ item = PyString_FromPJ(&sip_uri->host);
PyTuple_SetItem(ret, 2, item);
/* Port */
@@ -5529,8 +3865,7 @@ static PyObject *py_pj_parse_simple_sip(PyObject *pSelf, PyObject *pArgs)
sip_uri->transport_param.ptr = "";
sip_uri->transport_param.slen = 0;
}
- item = PyString_FromStringAndSize(sip_uri->transport_param.ptr,
- sip_uri->transport_param.slen);
+ item = PyString_FromPJ(&sip_uri->transport_param);
PyTuple_SetItem(ret, 4, item);
return ret;
@@ -5652,22 +3987,6 @@ static PyMethodDef py_pjsua_methods[] =
pjsua_verify_sip_url_doc
},
{
- "pool_create", py_pjsua_pool_create, METH_VARARGS,
- pjsua_pool_create_doc
- },
- {
- "get_pjsip_endpt", py_pjsua_get_pjsip_endpt, METH_VARARGS,
- pjsua_get_pjsip_endpt_doc
- },
- {
- "get_pjmedia_endpt", py_pjsua_get_pjmedia_endpt, METH_VARARGS,
- pjsua_get_pjmedia_endpt_doc
- },
- {
- "get_pool_factory", py_pjsua_get_pool_factory, METH_VARARGS,
- pjsua_get_pool_factory_doc
- },
- {
"reconfigure_logging", py_pjsua_reconfigure_logging, METH_VARARGS,
pjsua_reconfigure_logging_doc
},
@@ -5746,6 +4065,14 @@ static PyMethodDef py_pjsua_methods[] =
pjsua_acc_del_doc
},
{
+ "acc_set_user_data", py_pjsua_acc_set_user_data, METH_VARARGS,
+ "Accociate user data with the account"
+ },
+ {
+ "acc_get_user_data", py_pjsua_acc_get_user_data, METH_VARARGS,
+ "Get account's user data"
+ },
+ {
"acc_modify", py_pjsua_acc_modify, METH_VARARGS,
pjsua_acc_modify_doc
},
@@ -5778,22 +4105,6 @@ static PyMethodDef py_pjsua_methods[] =
pjsua_acc_enum_info_doc
},
{
- "acc_find_for_outgoing", py_pjsua_acc_find_for_outgoing, METH_VARARGS,
- pjsua_acc_find_for_outgoing_doc
- },
- {
- "acc_find_for_incoming", py_pjsua_acc_find_for_incoming, METH_VARARGS,
- pjsua_acc_find_for_incoming_doc
- },
- {
- "acc_create_uac_contact", py_pjsua_acc_create_uac_contact, METH_VARARGS,
- pjsua_acc_create_uac_contact_doc
- },
- {
- "acc_create_uas_contact", py_pjsua_acc_create_uas_contact, METH_VARARGS,
- pjsua_acc_create_uas_contact_doc
- },
- {
"acc_set_transport", py_pjsua_acc_set_transport, METH_VARARGS,
"Lock transport to use the specified transport"
},
@@ -5814,6 +4125,10 @@ static PyMethodDef py_pjsua_methods[] =
pjsua_enum_buddies_doc
},
{
+ "buddy_find", py_pjsua_buddy_find, METH_VARARGS,
+ "Find buddy with the specified URI"
+ },
+ {
"buddy_get_info", py_pjsua_buddy_get_info, METH_VARARGS,
pjsua_buddy_get_info_doc
},
@@ -5826,6 +4141,14 @@ static PyMethodDef py_pjsua_methods[] =
pjsua_buddy_del_doc
},
{
+ "buddy_set_user_data", py_pjsua_buddy_set_user_data, METH_VARARGS,
+ "Associate user data to the buddy object"
+ },
+ {
+ "buddy_get_user_data", py_pjsua_buddy_get_user_data, METH_VARARGS,
+ "Get buddy user data"
+ },
+ {
"buddy_subscribe_pres", py_pjsua_buddy_subscribe_pres, METH_VARARGS,
pjsua_buddy_subscribe_pres_doc
},
@@ -5858,10 +4181,6 @@ static PyMethodDef py_pjsua_methods[] =
pjsua_conf_get_port_info_doc
},
{
- "conf_add_port", py_pjsua_conf_add_port, METH_VARARGS,
- pjsua_conf_add_port_doc
- },
- {
"conf_remove_port", py_pjsua_conf_remove_port, METH_VARARGS,
pjsua_conf_remove_port_doc
},
@@ -5936,10 +4255,6 @@ static PyMethodDef py_pjsua_methods[] =
pjsua_set_null_snd_dev_doc
},
{
- "set_no_snd_dev", py_pjsua_set_no_snd_dev, METH_VARARGS,
- pjsua_set_no_snd_dev_doc
- },
- {
"set_ec", py_pjsua_set_ec, METH_VARARGS,
pjsua_set_ec_doc
},
@@ -6094,24 +4409,6 @@ init_pjsua(void)
PyTyp_pjsua_media_config.tp_new = PyType_GenericNew;
if (PyType_Ready(&PyTyp_pjsua_media_config) < 0)
return;
- PyTyp_pjsip_event.tp_new = PyType_GenericNew;
- if (PyType_Ready(&PyTyp_pjsip_event) < 0)
- return;
- PyTyp_pjsip_rx_data.tp_new = PyType_GenericNew;
- if (PyType_Ready(&PyTyp_pjsip_rx_data) < 0)
- return;
- PyTyp_pj_pool_t.tp_new = PyType_GenericNew;
- if (PyType_Ready(&PyTyp_pj_pool_t) < 0)
- return;
- PyTyp_pjsip_endpoint.tp_new = PyType_GenericNew;
- if (PyType_Ready(&PyTyp_pjsip_endpoint) < 0)
- return;
- PyTyp_pjmedia_endpt.tp_new = PyType_GenericNew;
- if (PyType_Ready(&PyTyp_pjmedia_endpt) < 0)
- return;
- PyTyp_pj_pool_factory.tp_new = PyType_GenericNew;
- if (PyType_Ready(&PyTyp_pj_pool_factory) < 0)
- return;
PyTyp_pjsip_cred_info.tp_new = PyType_GenericNew;
if (PyType_Ready(&PyTyp_pjsip_cred_info) < 0)
return;
@@ -6153,10 +4450,6 @@ init_pjsua(void)
if (PyType_Ready(&PyTyp_pjsua_conf_port_info) < 0)
return;
- PyTyp_pjmedia_port.tp_new = PyType_GenericNew;
- if (PyType_Ready(&PyTyp_pjmedia_port) < 0)
- return;
-
if (PyType_Ready(&PyTyp_pjmedia_snd_dev_info) < 0)
return;
@@ -6174,17 +4467,13 @@ init_pjsua(void)
/* LIB CALL */
- PyTyp_pj_time_val.tp_new = PyType_GenericNew;
- if (PyType_Ready(&PyTyp_pj_time_val) < 0)
- return;
-
if (PyType_Ready(&PyTyp_pjsua_call_info) < 0)
return;
/* END OF LIB CALL */
m = Py_InitModule3(
- "_pjsua", py_pjsua_methods,"PJSUA-lib module for python"
+ "_pjsua", py_pjsua_methods, "PJSUA-lib module for python"
);
Py_INCREF(&PyTyp_pjsua_callback);
@@ -6202,26 +4491,6 @@ init_pjsua(void)
Py_INCREF(&PyTyp_pjsua_msg_data);
PyModule_AddObject(m, "Msg_Data", (PyObject *)&PyTyp_pjsua_msg_data);
- Py_INCREF(&PyTyp_pjsip_event);
- PyModule_AddObject(m, "Pjsip_Event", (PyObject *)&PyTyp_pjsip_event);
-
- Py_INCREF(&PyTyp_pjsip_rx_data);
- PyModule_AddObject(m, "Pjsip_Rx_Data", (PyObject *)&PyTyp_pjsip_rx_data);
-
- Py_INCREF(&PyTyp_pj_pool_t);
- PyModule_AddObject(m, "Pj_Pool", (PyObject *)&PyTyp_pj_pool_t);
-
- Py_INCREF(&PyTyp_pjsip_endpoint);
- PyModule_AddObject(m, "Pjsip_Endpoint", (PyObject *)&PyTyp_pjsip_endpoint);
-
- Py_INCREF(&PyTyp_pjmedia_endpt);
- PyModule_AddObject(m, "Pjmedia_Endpt", (PyObject *)&PyTyp_pjmedia_endpt);
-
- Py_INCREF(&PyTyp_pj_pool_factory);
- PyModule_AddObject(
- m, "Pj_Pool_Factory", (PyObject *)&PyTyp_pj_pool_factory
- );
-
Py_INCREF(&PyTyp_pjsip_cred_info);
PyModule_AddObject(m, "Pjsip_Cred_Info",
(PyObject *)&PyTyp_pjsip_cred_info
@@ -6264,8 +4533,6 @@ init_pjsua(void)
PyModule_AddObject(m, "Codec_Info", (PyObject *)&PyTyp_pjsua_codec_info);
Py_INCREF(&PyTyp_pjsua_conf_port_info);
PyModule_AddObject(m, "Conf_Port_Info", (PyObject *)&PyTyp_pjsua_conf_port_info);
- Py_INCREF(&PyTyp_pjmedia_port);
- PyModule_AddObject(m, "PJMedia_Port", (PyObject *)&PyTyp_pjmedia_port);
Py_INCREF(&PyTyp_pjmedia_snd_dev_info);
PyModule_AddObject(m, "PJMedia_Snd_Dev_Info",
(PyObject *)&PyTyp_pjmedia_snd_dev_info);
@@ -6283,9 +4550,6 @@ init_pjsua(void)
/* LIB CALL */
- Py_INCREF(&PyTyp_pj_time_val);
- PyModule_AddObject(m, "PJ_Time_Val", (PyObject *)&PyTyp_pj_time_val);
-
Py_INCREF(&PyTyp_pjsua_call_info);
PyModule_AddObject(m, "Call_Info", (PyObject *)&PyTyp_pjsua_call_info);
@@ -6295,56 +4559,7 @@ init_pjsua(void)
/*
* Add various constants.
*/
-
- /* Call states */
- ADD_CONSTANT(m, PJSIP_INV_STATE_NULL);
- ADD_CONSTANT(m, PJSIP_INV_STATE_CALLING);
- ADD_CONSTANT(m, PJSIP_INV_STATE_INCOMING);
- ADD_CONSTANT(m, PJSIP_INV_STATE_EARLY);
- ADD_CONSTANT(m, PJSIP_INV_STATE_CONNECTING);
- ADD_CONSTANT(m, PJSIP_INV_STATE_CONFIRMED);
- ADD_CONSTANT(m, PJSIP_INV_STATE_DISCONNECTED);
-
- /* Call media status (enum pjsua_call_media_status) */
- ADD_CONSTANT(m, PJSUA_CALL_MEDIA_NONE);
- ADD_CONSTANT(m, PJSUA_CALL_MEDIA_ACTIVE);
- ADD_CONSTANT(m, PJSUA_CALL_MEDIA_LOCAL_HOLD);
- ADD_CONSTANT(m, PJSUA_CALL_MEDIA_REMOTE_HOLD);
-
- /* Buddy status */
- ADD_CONSTANT(m, PJSUA_BUDDY_STATUS_UNKNOWN);
- ADD_CONSTANT(m, PJSUA_BUDDY_STATUS_ONLINE);
- ADD_CONSTANT(m, PJSUA_BUDDY_STATUS_OFFLINE);
-
- /* PJSIP transport types (enum pjsip_transport_type_e) */
- ADD_CONSTANT(m, PJSIP_TRANSPORT_UNSPECIFIED);
- ADD_CONSTANT(m, PJSIP_TRANSPORT_UDP);
- ADD_CONSTANT(m, PJSIP_TRANSPORT_TCP);
- ADD_CONSTANT(m, PJSIP_TRANSPORT_TLS);
- ADD_CONSTANT(m, PJSIP_TRANSPORT_SCTP);
- ADD_CONSTANT(m, PJSIP_TRANSPORT_LOOP);
- ADD_CONSTANT(m, PJSIP_TRANSPORT_LOOP_DGRAM);
-
-
- /* Invalid IDs */
- ADD_CONSTANT(m, PJSUA_INVALID_ID);
-
-
- /* Various compile time constants */
- ADD_CONSTANT(m, PJSUA_ACC_MAX_PROXIES);
- ADD_CONSTANT(m, PJSUA_MAX_ACC);
- ADD_CONSTANT(m, PJSUA_REG_INTERVAL);
- ADD_CONSTANT(m, PJSUA_PUBLISH_EXPIRATION);
- ADD_CONSTANT(m, PJSUA_DEFAULT_ACC_PRIORITY);
- ADD_CONSTANT(m, PJSUA_MAX_BUDDIES);
- ADD_CONSTANT(m, PJSUA_MAX_CONF_PORTS);
- ADD_CONSTANT(m, PJSUA_DEFAULT_CLOCK_RATE);
- ADD_CONSTANT(m, PJSUA_DEFAULT_CODEC_QUALITY);
- ADD_CONSTANT(m, PJSUA_DEFAULT_ILBC_MODE);
- ADD_CONSTANT(m, PJSUA_DEFAULT_EC_TAIL_LEN);
- ADD_CONSTANT(m, PJSUA_MAX_CALLS);
- ADD_CONSTANT(m, PJSUA_XFER_NO_REQUIRE_REPLACES);
-
+ /* Skip it.. */
#undef ADD_CONSTANT
}
diff --git a/pjsip-apps/src/python/_pjsua.h b/pjsip-apps/src/python/_pjsua.h
index 8c16c0f9..0deb0713 100644
--- a/pjsip-apps/src/python/_pjsua.h
+++ b/pjsip-apps/src/python/_pjsua.h
@@ -26,11 +26,11 @@
#include <pjsua-lib/pjsua.h>
-PJ_INLINE(pj_str_t) PyString_to_pj_str(const PyObject *obj)
+PJ_INLINE(pj_str_t) PyString_ToPJ(const PyObject *obj)
{
pj_str_t str;
- if (obj) {
+ if (obj && PyString_Check(obj)) {
str.ptr = PyString_AS_STRING(obj);
str.slen = PyString_GET_SIZE(obj);
} else {
@@ -41,178 +41,10 @@ PJ_INLINE(pj_str_t) PyString_to_pj_str(const PyObject *obj)
return str;
}
-
-//////////////////////////////////////////////////////////////////////////////
-/*
- * PyObj_pj_pool
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
- pj_pool_t * pool;
-} PyObj_pj_pool;
-
-
-/*
- * PyTyp_pj_pool_t
- */
-static PyTypeObject PyTyp_pj_pool_t =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.Pj_Pool", /*tp_name*/
- sizeof(PyObj_pj_pool), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0, /*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, /*tp_flags*/
- "pj_pool_t objects", /* tp_doc */
-
-};
-
-
-//////////////////////////////////////////////////////////////////////////////
-/*
- * PyObj_pjsip_endpoint
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
- pjsip_endpoint * endpt;
-} PyObj_pjsip_endpoint;
-
-
-/*
- * PyTyp_pjsip_endpoint
- */
-static PyTypeObject PyTyp_pjsip_endpoint =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.Pjsip_Endpoint", /*tp_name*/
- sizeof(PyObj_pjsip_endpoint),/*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0, /*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, /*tp_flags*/
- "pjsip_endpoint objects", /* tp_doc */
-};
-
-
-/*
- * PyObj_pjmedia_endpt
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
- pjmedia_endpt * endpt;
-} PyObj_pjmedia_endpt;
-
-
-//////////////////////////////////////////////////////////////////////////////
-/*
- * PyTyp_pjmedia_endpt
- */
-static PyTypeObject PyTyp_pjmedia_endpt =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.Pjmedia_Endpt", /*tp_name*/
- sizeof(PyObj_pjmedia_endpt), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0, /*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, /*tp_flags*/
- "pjmedia_endpt objects", /* tp_doc */
-
-};
-
-
-//////////////////////////////////////////////////////////////////////////////
-/*
- * PyObj_pj_pool_factory
- */
-typedef struct
+PJ_INLINE(PyObject*) PyString_FromPJ(const pj_str_t *str)
{
- PyObject_HEAD
- /* Type-specific fields go here. */
- pj_pool_factory * pool_fact;
-} PyObj_pj_pool_factory;
-
-
-
-/*
- * PyTyp_pj_pool_factory
- */
-static PyTypeObject PyTyp_pj_pool_factory =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.Pj_Pool_Factory",/*tp_name*/
- sizeof(PyObj_pj_pool_factory), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0, /*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, /*tp_flags*/
- "pj_pool_factory objects", /* tp_doc */
-
-};
-
+ return PyString_FromStringAndSize(str->ptr, str->slen);
+}
//////////////////////////////////////////////////////////////////////////////
/*
@@ -249,24 +81,24 @@ static void PyObj_pjsip_cred_info_import(PyObj_pjsip_cred_info *obj,
const pjsip_cred_info *cfg)
{
Py_XDECREF(obj->realm);
- obj->realm = PyString_FromStringAndSize(cfg->realm.ptr, cfg->realm.slen);
+ obj->realm = PyString_FromPJ(&cfg->realm);
Py_XDECREF(obj->scheme);
- obj->scheme = PyString_FromStringAndSize(cfg->scheme.ptr, cfg->scheme.slen);
+ obj->scheme = PyString_FromPJ(&cfg->scheme);
Py_XDECREF(obj->username);
- obj->username = PyString_FromStringAndSize(cfg->username.ptr, cfg->username.slen);
+ obj->username = PyString_FromPJ(&cfg->username);
obj->data_type = cfg->data_type;
Py_XDECREF(obj->data);
- obj->data = PyString_FromStringAndSize(cfg->data.ptr, cfg->data.slen);
+ obj->data = PyString_FromPJ(&cfg->data);
}
static void PyObj_pjsip_cred_info_export(pjsip_cred_info *cfg,
PyObj_pjsip_cred_info *obj)
{
- cfg->realm = PyString_to_pj_str(obj->realm);
- cfg->scheme = PyString_to_pj_str(obj->scheme);
- cfg->username = PyString_to_pj_str(obj->username);
+ cfg->realm = PyString_ToPJ(obj->realm);
+ cfg->scheme = PyString_ToPJ(obj->scheme);
+ cfg->username = PyString_ToPJ(obj->username);
cfg->data_type = obj->data_type;
- cfg->data = PyString_to_pj_str(obj->data);
+ cfg->data = PyString_ToPJ(obj->data);
}
@@ -284,33 +116,12 @@ static PyObject * PyObj_pjsip_cred_info_new(PyTypeObject *type,
PJ_UNUSED_ARG(kwds);
self = (PyObj_pjsip_cred_info *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
+ if (self != NULL) {
self->realm = PyString_FromString("");
- if (self->realm == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
self->scheme = PyString_FromString("");
- if (self->scheme == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
self->username = PyString_FromString("");
- if (self->username == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
self->data_type = PJSIP_CRED_DATA_PLAIN_PASSWD;
self->data = PyString_FromString("");
- if (self->data == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
}
return (PyObject *)self;
@@ -386,7 +197,7 @@ static PyTypeObject PyTyp_pjsip_cred_info =
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
- PyObj_pjsip_cred_info_members, /* tp_members */
+ PyObj_pjsip_cred_info_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
@@ -395,102 +206,13 @@ static PyTypeObject PyTyp_pjsip_cred_info =
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
- PyObj_pjsip_cred_info_new, /* tp_new */
+ PyObj_pjsip_cred_info_new, /* tp_new */
};
//////////////////////////////////////////////////////////////////////////////
/*
- * PyObj_pjsip_event
- * C/python typewrapper for event struct
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
- pjsip_event * event;
-} PyObj_pjsip_event;
-
-
-
-/*
- * PyTyp_pjsip_event
- * event struct signatures
- */
-static PyTypeObject PyTyp_pjsip_event =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.Pjsip_Event", /*tp_name*/
- sizeof(PyObj_pjsip_event), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0, /*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, /*tp_flags*/
- "pjsip_event object", /*tp_doc */
-};
-
-
-//////////////////////////////////////////////////////////////////////////////
-/*
- * PyObj_pjsip_rx_data
- * C/python typewrapper for pjsip_rx_data struct
- */
-typedef struct
-{
- PyObject_HEAD
- /* Type-specific fields go here. */
- pjsip_rx_data * rdata;
-} PyObj_pjsip_rx_data;
-
-
-/*
- * PyTyp_pjsip_rx_data
- */
-static PyTypeObject PyTyp_pjsip_rx_data =
-{
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
- "_pjsua.Pjsip_Rx_Data", /*tp_name*/
- sizeof(PyObj_pjsip_rx_data), /*tp_basicsize*/
- 0, /*tp_itemsize*/
- 0, /*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, /*tp_flags*/
- "pjsip_rx_data object", /*tp_doc*/
-};
-
-
-
-//////////////////////////////////////////////////////////////////////////////
-/*
* PyObj_pjsua_callback
* C/python typewrapper for callback struct
*/
@@ -553,101 +275,21 @@ static PyObject * PyObj_pjsua_callback_new(PyTypeObject *type,
PJ_UNUSED_ARG(kwds);
self = (PyObj_pjsua_callback *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
- Py_INCREF(Py_None);
- self->on_call_state = Py_None;
- if (self->on_call_state == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_incoming_call = Py_None;
- if (self->on_incoming_call == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_call_media_state = Py_None;
- if (self->on_call_media_state == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_dtmf_digit = Py_None;
- if (self->on_dtmf_digit == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_call_transfer_request = Py_None;
- if (self->on_call_transfer_request == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_call_transfer_status = Py_None;
- if (self->on_call_transfer_status == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_call_replace_request = Py_None;
- if (self->on_call_replace_request == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_call_replaced = Py_None;
- if (self->on_call_replaced == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_reg_state = Py_None;
- if (self->on_reg_state == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_incoming_subscribe = Py_None;
- Py_INCREF(Py_None);
- self->on_buddy_state = Py_None;
- if (self->on_buddy_state == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_pager = Py_None;
- if (self->on_pager == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_pager_status = Py_None;
- if (self->on_pager_status == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->on_typing = Py_None;
- if (self->on_typing == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
+ if (self != NULL) {
+ self->on_call_state = Py_BuildValue("");
+ self->on_incoming_call = Py_BuildValue("");
+ self->on_call_media_state = Py_BuildValue("");
+ self->on_dtmf_digit = Py_BuildValue("");
+ self->on_call_transfer_request = Py_BuildValue("");
+ self->on_call_transfer_status = Py_BuildValue("");
+ self->on_call_replace_request = Py_BuildValue("");
+ self->on_call_replaced = Py_BuildValue("");
+ self->on_reg_state = Py_BuildValue("");
+ self->on_incoming_subscribe = Py_BuildValue("");
+ self->on_buddy_state = Py_BuildValue("");
+ self->on_pager = Py_BuildValue("");
+ self->on_pager_status = Py_BuildValue("");
+ self->on_typing = Py_BuildValue("");
}
return (PyObject *)self;
@@ -988,7 +630,7 @@ static PyMemberDef PyObj_pjsua_media_config_members[] =
"Specify TURN password type."
},
{
- "turn_passw", T_OBJECT_EX,
+ "turn_passwd", T_OBJECT_EX,
offsetof(PyObj_pjsua_media_config, turn_passwd), 0,
"Specify the TURN password."
},
@@ -1007,8 +649,7 @@ static PyObject *PyObj_pjsua_media_config_new(PyTypeObject *type,
PJ_UNUSED_ARG(kwds);
self = (PyObj_pjsua_media_config*)type->tp_alloc(type, 0);
- if (self != NULL)
- {
+ if (self != NULL) {
self->turn_server = PyString_FromString("");
self->turn_realm = PyString_FromString("");
self->turn_username = PyString_FromString("");
@@ -1051,22 +692,18 @@ static void PyObj_pjsua_media_config_import(PyObj_pjsua_media_config *obj,
obj->enable_ice = cfg->enable_ice;
obj->enable_turn = cfg->enable_turn;
Py_XDECREF(obj->turn_server);
- obj->turn_server = PyString_FromStringAndSize(cfg->turn_server.ptr,
- cfg->turn_server.slen);
+ obj->turn_server = PyString_FromPJ(&cfg->turn_server);
obj->turn_conn_type = cfg->turn_conn_type;
if (cfg->turn_auth_cred.type == PJ_STUN_AUTH_CRED_STATIC) {
const pj_stun_auth_cred *cred = &cfg->turn_auth_cred;
Py_XDECREF(obj->turn_realm);
- obj->turn_realm = PyString_FromStringAndSize(cred->data.static_cred.realm.ptr,
- cred->data.static_cred.realm.slen);
+ obj->turn_realm = PyString_FromPJ(&cred->data.static_cred.realm);
Py_XDECREF(obj->turn_username);
- obj->turn_username = PyString_FromStringAndSize(cred->data.static_cred.username.ptr,
- cred->data.static_cred.username.slen);
+ obj->turn_username = PyString_FromPJ(&cred->data.static_cred.username);
obj->turn_passwd_type = cred->data.static_cred.data_type;
Py_XDECREF(obj->turn_passwd);
- obj->turn_passwd = PyString_FromStringAndSize(cred->data.static_cred.data.ptr,
- cred->data.static_cred.data.slen);
+ obj->turn_passwd = PyString_FromPJ(&cred->data.static_cred.data);
} else {
Py_XDECREF(obj->turn_realm);
obj->turn_realm = PyString_FromString("");
@@ -1103,13 +740,13 @@ static void PyObj_pjsua_media_config_export(pjsua_media_config *cfg,
cfg->enable_turn = obj->enable_turn;
if (cfg->enable_turn) {
- cfg->turn_server = PyString_to_pj_str(obj->turn_server);
+ cfg->turn_server = PyString_ToPJ(obj->turn_server);
cfg->turn_conn_type = obj->turn_conn_type;
cfg->turn_auth_cred.type = PJ_STUN_AUTH_CRED_STATIC;
- cfg->turn_auth_cred.data.static_cred.realm = PyString_to_pj_str(obj->turn_realm);
- cfg->turn_auth_cred.data.static_cred.username = PyString_to_pj_str(obj->turn_username);
+ cfg->turn_auth_cred.data.static_cred.realm = PyString_ToPJ(obj->turn_realm);
+ cfg->turn_auth_cred.data.static_cred.username = PyString_ToPJ(obj->turn_username);
cfg->turn_auth_cred.data.static_cred.data_type= obj->turn_passwd_type;
- cfg->turn_auth_cred.data.static_cred.data = PyString_to_pj_str(obj->turn_passwd);
+ cfg->turn_auth_cred.data.static_cred.data = PyString_ToPJ(obj->turn_passwd);
}
}
@@ -1201,25 +838,24 @@ static void PyObj_pjsua_config_import(PyObj_pjsua_config *obj,
obj->max_calls = cfg->max_calls;
obj->thread_cnt = cfg->thread_cnt;
Py_XDECREF(obj->outbound_proxy);
- obj->outbound_proxy = PyString_FromStringAndSize(cfg->outbound_proxy[0].ptr,
- cfg->outbound_proxy[0].slen);
+ if (cfg->outbound_proxy_cnt)
+ obj->outbound_proxy = PyString_FromPJ(&cfg->outbound_proxy[0]);
+ else
+ obj->outbound_proxy = PyString_FromString("");
+
Py_XDECREF(obj->stun_domain);
- obj->stun_domain = PyString_FromStringAndSize(cfg->stun_domain.ptr,
- cfg->stun_domain.slen);
+ obj->stun_domain = PyString_FromPJ(&cfg->stun_domain);
Py_XDECREF(obj->stun_host);
- obj->stun_host = PyString_FromStringAndSize(cfg->stun_host.ptr,
- cfg->stun_host.slen);
+ obj->stun_host = PyString_FromPJ(&cfg->stun_host);
Py_XDECREF(obj->nameserver);
obj->nameserver = (PyListObject *)PyList_New(0);
for (i=0; i<cfg->nameserver_count; ++i) {
PyObject * str;
- str = PyString_FromStringAndSize(cfg->nameserver[i].ptr,
- cfg->nameserver[i].slen);
+ str = PyString_FromPJ(&cfg->nameserver[i]);
PyList_Append((PyObject *)obj->nameserver, str);
}
Py_XDECREF(obj->user_agent);
- obj->user_agent = PyString_FromStringAndSize(cfg->user_agent.ptr,
- cfg->user_agent.slen);
+ obj->user_agent = PyString_FromPJ(&cfg->user_agent);
}
@@ -1232,7 +868,7 @@ static void PyObj_pjsua_config_export(pjsua_config *cfg,
cfg->thread_cnt = obj->thread_cnt;
if (PyString_Size(obj->outbound_proxy) > 0) {
cfg->outbound_proxy_cnt = 1;
- cfg->outbound_proxy[0] = PyString_to_pj_str(obj->outbound_proxy);
+ cfg->outbound_proxy[0] = PyString_ToPJ(obj->outbound_proxy);
} else {
cfg->outbound_proxy_cnt = 0;
}
@@ -1240,11 +876,12 @@ static void PyObj_pjsua_config_export(pjsua_config *cfg,
if (cfg->nameserver_count > PJ_ARRAY_SIZE(cfg->nameserver))
cfg->nameserver_count = PJ_ARRAY_SIZE(cfg->nameserver);
for (i = 0; i < cfg->nameserver_count; i++) {
- cfg->nameserver[i] = PyString_to_pj_str(PyList_GetItem((PyObject *)obj->nameserver,i));
+ PyObject *item = PyList_GetItem((PyObject *)obj->nameserver,i);
+ cfg->nameserver[i] = PyString_ToPJ(item);
}
- cfg->stun_domain = PyString_to_pj_str(obj->stun_domain);
- cfg->stun_host = PyString_to_pj_str(obj->stun_host);
- cfg->user_agent = PyString_to_pj_str(obj->user_agent);
+ cfg->stun_domain = PyString_ToPJ(obj->stun_domain);
+ cfg->stun_host = PyString_ToPJ(obj->stun_host);
+ cfg->user_agent = PyString_ToPJ(obj->user_agent);
}
@@ -1259,27 +896,13 @@ static PyObject *PyObj_pjsua_config_new(PyTypeObject *type,
PJ_UNUSED_ARG(kwds);
self = (PyObj_pjsua_config *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
+ if (self != NULL) {
self->user_agent = PyString_FromString("");
- if (self->user_agent == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
self->outbound_proxy = PyString_FromString("");
- if (self->outbound_proxy == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
+ self->stun_domain = PyString_FromString("");
+ self->stun_host = PyString_FromString("");
self->cb = (PyObj_pjsua_callback *)
PyType_GenericNew(&PyTyp_pjsua_callback, NULL, NULL);
- if (self->cb == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
}
return (PyObject *)self;
}
@@ -1425,6 +1048,8 @@ static void PyObj_pjsua_logging_config_import(PyObj_pjsua_logging_config *obj,
obj->level = cfg->level;
obj->console_level = cfg->console_level;
obj->decor = cfg->decor;
+ Py_XDECREF(obj->log_filename);
+ obj->log_filename = PyString_FromPJ(&cfg->log_filename);
}
static void PyObj_pjsua_logging_config_export(pjsua_logging_config *cfg,
@@ -1434,7 +1059,7 @@ static void PyObj_pjsua_logging_config_export(pjsua_logging_config *cfg,
cfg->level = obj->level;
cfg->console_level = obj->console_level;
cfg->decor = obj->decor;
- cfg->log_filename = PyString_to_pj_str(obj->log_filename);
+ cfg->log_filename = PyString_ToPJ(obj->log_filename);
}
@@ -1452,21 +1077,9 @@ static PyObject * PyObj_pjsua_logging_config_new(PyTypeObject *type,
PJ_UNUSED_ARG(kwds);
self = (PyObj_pjsua_logging_config *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
+ if (self != NULL) {
self->log_filename = PyString_FromString("");
- if (self->log_filename == NULL)
- {
- Py_DECREF(self);
- return NULL;
- }
- Py_INCREF(Py_None);
- self->cb = Py_None;
- if (self->cb == NULL)
- {
- Py_DECREF(Py_None);
- return NULL;
- }
+ self->cb = Py_BuildValue("");
}
return (PyObject *)self;
@@ -1609,24 +1222,10 @@ static PyObject * PyObj_pjsua_msg_data_new(PyTypeObject *type,
PJ_UNUSED_ARG(kwds);
self = (PyObj_pjsua_msg_data *)type->tp_alloc(type, 0);
- if (self != NULL)
- {
- Py_INCREF(Py_None);
- self->hdr_list = Py_None;
- if (self->hdr_list == NULL) {
- Py_DECREF(self);
- return NULL;
- }
+ if (self != NULL) {
+ self->hdr_list = PyList_New(0);
self->content_type = PyString_FromString("");
- if (self->content_type == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->msg_body = PyString_FromString("");
- if (self->msg_body == NULL) {
- Py_DECREF(self);
- return NULL;
- }
}
return (PyObject *)self;
@@ -1737,8 +1336,8 @@ static void PyObj_pjsua_transport_config_delete(PyObj_pjsua_transport_config* se
static void PyObj_pjsua_transport_config_export(pjsua_transport_config *cfg,
PyObj_pjsua_transport_config *obj)
{
- cfg->public_addr = PyString_to_pj_str(obj->public_addr);
- cfg->bound_addr = PyString_to_pj_str(obj->bound_addr);
+ cfg->public_addr = PyString_ToPJ(obj->public_addr);
+ cfg->bound_addr = PyString_ToPJ(obj->bound_addr);
cfg->port = obj->port;
}
@@ -1747,12 +1346,10 @@ static void PyObj_pjsua_transport_config_import(PyObj_pjsua_transport_config *ob
const pjsua_transport_config *cfg)
{
Py_XDECREF(obj->public_addr);
- obj->public_addr = PyString_FromStringAndSize(cfg->public_addr.ptr,
- cfg->public_addr.slen);
+ obj->public_addr = PyString_FromPJ(&cfg->public_addr);
Py_XDECREF(obj->bound_addr);
- obj->bound_addr = PyString_FromStringAndSize(cfg->bound_addr.ptr,
- cfg->bound_addr.slen);
+ obj->bound_addr = PyString_FromPJ(&cfg->bound_addr);
obj->port = cfg->port;
}
@@ -1774,15 +1371,7 @@ static PyObject * PyObj_pjsua_transport_config_new(PyTypeObject *type,
self = (PyObj_pjsua_transport_config *)type->tp_alloc(type, 0);
if (self != NULL) {
self->public_addr = PyString_FromString("");
- if (self->public_addr == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->bound_addr = PyString_FromString("");
- if (self->bound_addr == NULL) {
- Py_DECREF(self);
- return NULL;
- }
}
return (PyObject *)self;
@@ -1911,13 +1500,10 @@ static void PyObj_pjsua_transport_info_import(PyObj_pjsua_transport_info *obj,
{
obj->id = info->id;
obj->type = info->type;
- obj->type_name = PyString_FromStringAndSize(info->type_name.ptr,
- info->type_name.slen);
- obj->info = PyString_FromStringAndSize(info->info.ptr,
- info->info.slen);
+ obj->type_name = PyString_FromPJ(&info->type_name);
+ obj->info = PyString_FromPJ(&info->info);
obj->flag = info->flag;
- obj->addr = PyString_FromStringAndSize(info->local_name.host.ptr,
- info->local_name.host.slen);
+ obj->addr = PyString_FromPJ(&info->local_name.host);
obj->port = info->local_name.port;
obj->usage_count= info->usage_count;
}
@@ -1939,20 +1525,8 @@ static PyObject * PyObj_pjsua_transport_info_new(PyTypeObject *type,
if (self != NULL)
{
self->type_name = PyString_FromString("");
- if (self->type_name == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->info = PyString_FromString("");
- if (self->info == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->addr = PyString_FromString("");
- if (self->addr == NULL) {
- Py_DECREF(self);
- return NULL;
- }
}
return (PyObject *)self;
@@ -1971,7 +1545,7 @@ static PyMemberDef PyObj_pjsua_transport_info_members[] =
},
{
"type", T_INT,
- offsetof(PyObj_pjsua_transport_info, id), 0,
+ offsetof(PyObj_pjsua_transport_info, type), 0,
"Transport type."
},
{
@@ -2071,13 +1645,10 @@ typedef struct
PyObject *reg_uri;
int publish_enabled;
PyObject *force_contact;
- /*pj_str_t proxy[8];*/
PyListObject *proxy;
unsigned reg_timeout;
- /*pjsip_cred_info cred_info[8];*/
PyListObject *cred_info;
int transport_id;
-
int auth_initial_send;
PyObject *auth_initial_algorithm;
PyObject *pidf_tuple_id;
@@ -2115,20 +1686,17 @@ static void PyObj_pjsua_acc_config_import(PyObj_pjsua_acc_config *obj,
obj->priority = cfg->priority;
Py_XDECREF(obj->id);
- obj->id = PyString_FromStringAndSize(cfg->id.ptr, cfg->id.slen);
+ obj->id = PyString_FromPJ(&cfg->id);
Py_XDECREF(obj->reg_uri);
- obj->reg_uri = PyString_FromStringAndSize(cfg->reg_uri.ptr,
- cfg->reg_uri.slen);
+ obj->reg_uri = PyString_FromPJ(&cfg->reg_uri);
obj->publish_enabled = cfg->publish_enabled;
Py_XDECREF(obj->force_contact);
- obj->force_contact = PyString_FromStringAndSize(cfg->force_contact.ptr,
- cfg->force_contact.slen);
+ obj->force_contact = PyString_FromPJ(&cfg->force_contact);
Py_XDECREF(obj->proxy);
obj->proxy = (PyListObject *)PyList_New(0);
for (i=0; i<cfg->proxy_cnt; ++i) {
PyObject * str;
- str = PyString_FromStringAndSize(cfg->proxy[i].ptr,
- cfg->proxy[i].slen);
+ str = PyString_FromPJ(&cfg->proxy[i]);
PyList_Append((PyObject *)obj->proxy, str);
}
@@ -2149,16 +1717,14 @@ static void PyObj_pjsua_acc_config_import(PyObj_pjsua_acc_config *obj,
obj->auth_initial_send = cfg->auth_pref.initial_auth;
Py_XDECREF(obj->auth_initial_algorithm);
- obj->auth_initial_algorithm = PyString_FromStringAndSize(cfg->auth_pref.algorithm.ptr,
- cfg->auth_pref.algorithm.slen);
+ obj->auth_initial_algorithm = PyString_FromPJ(&cfg->auth_pref.algorithm);
Py_XDECREF(obj->pidf_tuple_id);
- obj->pidf_tuple_id = PyString_FromStringAndSize(cfg->pidf_tuple_id.ptr,
- cfg->pidf_tuple_id.slen);
+ obj->pidf_tuple_id = PyString_FromPJ(&cfg->pidf_tuple_id);
obj->require_100rel = cfg->require_100rel;
obj->allow_contact_rewrite = cfg->allow_contact_rewrite;
obj->ka_interval = cfg->ka_interval;
Py_XDECREF(obj->ka_data);
- obj->ka_data = PyString_FromStringAndSize(cfg->ka_data.ptr, cfg->ka_data.slen);
+ obj->ka_data = PyString_FromPJ(&cfg->ka_data);
obj->use_srtp = cfg->use_srtp;
obj->srtp_secure_signaling = cfg->srtp_secure_signaling;
}
@@ -2169,36 +1735,39 @@ static void PyObj_pjsua_acc_config_export(pjsua_acc_config *cfg,
unsigned i;
cfg->priority = obj->priority;
- cfg->id = PyString_to_pj_str(obj->id);
- cfg->reg_uri = PyString_to_pj_str(obj->reg_uri);
+ cfg->id = PyString_ToPJ(obj->id);
+ cfg->reg_uri = PyString_ToPJ(obj->reg_uri);
cfg->publish_enabled = obj->publish_enabled;
- cfg->force_contact = PyString_to_pj_str(obj->force_contact);
+ cfg->force_contact = PyString_ToPJ(obj->force_contact);
cfg->proxy_cnt = PyList_Size((PyObject*)obj->proxy);
+ if (cfg->proxy_cnt > PJ_ARRAY_SIZE(cfg->proxy))
+ cfg->proxy_cnt = PJ_ARRAY_SIZE(cfg->proxy);
for (i = 0; i < cfg->proxy_cnt; i++) {
- /*cfg.proxy[i] = ac->proxy[i];*/
- cfg->proxy[i] = PyString_to_pj_str(PyList_GetItem((PyObject *)obj->proxy,i));
+ PyObject *item = PyList_GetItem((PyObject *)obj->proxy, i);
+ cfg->proxy[i] = PyString_ToPJ(item);
}
cfg->reg_timeout = obj->reg_timeout;
cfg->cred_count = PyList_Size((PyObject*)obj->cred_info);
+ if (cfg->cred_count > PJ_ARRAY_SIZE(cfg->cred_info))
+ cfg->cred_count = PJ_ARRAY_SIZE(cfg->cred_info);
for (i = 0; i < cfg->cred_count; i++) {
- /*cfg.cred_info[i] = ac->cred_info[i];*/
PyObj_pjsip_cred_info *ci;
ci = (PyObj_pjsip_cred_info*)
- PyList_GetItem((PyObject *)obj->cred_info,i);
+ PyList_GetItem((PyObject *)obj->cred_info, i);
PyObj_pjsip_cred_info_export(&cfg->cred_info[i], ci);
}
cfg->transport_id = obj->transport_id;
cfg->auth_pref.initial_auth = obj->auth_initial_send;
- cfg->auth_pref.algorithm = PyString_to_pj_str(obj->auth_initial_algorithm);
- cfg->pidf_tuple_id = PyString_to_pj_str(obj->pidf_tuple_id);
+ cfg->auth_pref.algorithm = PyString_ToPJ(obj->auth_initial_algorithm);
+ cfg->pidf_tuple_id = PyString_ToPJ(obj->pidf_tuple_id);
cfg->require_100rel = obj->require_100rel;
cfg->allow_contact_rewrite = obj->allow_contact_rewrite;
cfg->ka_interval = obj->ka_interval;
- cfg->ka_data = PyString_to_pj_str(obj->ka_data);
+ cfg->ka_data = PyString_ToPJ(obj->ka_data);
cfg->use_srtp = obj->use_srtp;
cfg->srtp_secure_signaling = obj->srtp_secure_signaling;
}
@@ -2220,30 +1789,10 @@ static PyObject * PyObj_pjsua_acc_config_new(PyTypeObject *type,
self = (PyObj_pjsua_acc_config *)type->tp_alloc(type, 0);
if (self != NULL) {
self->id = PyString_FromString("");
- if (self->id == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->reg_uri = PyString_FromString("");
- if (self->reg_uri == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->force_contact = PyString_FromString("");
- if (self->force_contact == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->proxy = (PyListObject *)PyList_New(0);
- if (self->proxy == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->cred_info = (PyListObject *)PyList_New(0);
- if (self->cred_info == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->auth_initial_algorithm = PyString_FromString("");
self->pidf_tuple_id = PyString_FromString("");
self->ka_data = PyString_FromString("");
@@ -2304,7 +1853,8 @@ static PyMemberDef PyObj_pjsua_acc_config_members[] =
"proxies first (for example, border controllers)."
},
{
- "reg_timeout", T_INT, offsetof(PyObj_pjsua_acc_config, reg_timeout), 0,
+ "reg_timeout", T_INT,
+ offsetof(PyObj_pjsua_acc_config, reg_timeout), 0,
"Optional interval for registration, in seconds. "
"If the value is zero, default interval will be used "
"(PJSUA_REG_INTERVAL, 55 seconds). "
@@ -2327,7 +1877,6 @@ static PyMemberDef PyObj_pjsua_acc_config_members[] =
" application may want to have explicit control over the transport to"
" use, so in that case it can set this field."
},
-
{
"auth_initial_send", T_INT,
offsetof(PyObj_pjsua_acc_config, auth_initial_send), 0,
@@ -2387,8 +1936,8 @@ static PyTypeObject PyTyp_pjsua_acc_config =
{
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
- "_pjsua.Acc_Config", /*tp_name*/
- sizeof(PyObj_pjsua_acc_config), /*tp_basicsize*/
+ "_pjsua.Acc_Config", /*tp_name*/
+ sizeof(PyObj_pjsua_acc_config), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)PyObj_pjsua_acc_config_delete,/*tp_dealloc*/
0, /*tp_print*/
@@ -2406,15 +1955,15 @@ static PyTypeObject PyTyp_pjsua_acc_config =
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
- "Acc Config objects", /* tp_doc */
+ "Account settings", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
- 0/*acc_config_methods*/, /* tp_methods */
- PyObj_pjsua_acc_config_members, /* tp_members */
+ 0, /* tp_methods */
+ PyObj_pjsua_acc_config_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
@@ -2423,7 +1972,7 @@ static PyTypeObject PyTyp_pjsua_acc_config =
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
- PyObj_pjsua_acc_config_new, /* tp_new */
+ PyObj_pjsua_acc_config_new, /* tp_new */
};
@@ -2467,16 +2016,16 @@ static void PyObj_pjsua_acc_info_import(PyObj_pjsua_acc_info *obj,
{
obj->id = info->id;
obj->is_default = info->is_default;
- obj->acc_uri = PyString_FromStringAndSize(info->acc_uri.ptr,
- info->acc_uri.slen);
+ Py_XDECREF(obj->acc_uri);
+ obj->acc_uri = PyString_FromPJ(&info->acc_uri);
obj->has_registration = info->has_registration;
obj->expires = info->expires;
obj->status = info->status;
- obj->status_text= PyString_FromStringAndSize(info->status_text.ptr,
- info->status_text.slen);
+ Py_XDECREF(obj->status_text);
+ obj->status_text= PyString_FromPJ(&info->status_text);
obj->online_status = info->online_status;
- obj->online_status_text = PyString_FromStringAndSize(info->online_status_text.ptr,
- info->online_status_text.slen);
+ Py_XDECREF(obj->online_status_text);
+ obj->online_status_text = PyString_FromPJ(&info->online_status_text);
}
@@ -2496,20 +2045,8 @@ static PyObject * PyObj_pjsua_acc_info_new(PyTypeObject *type,
self = (PyObj_pjsua_acc_info *)type->tp_alloc(type, 0);
if (self != NULL) {
self->acc_uri = PyString_FromString("");
- if (self->acc_uri == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->status_text = PyString_FromString("");
- if (self->status_text == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->online_status_text = PyString_FromString("");
- if (self->online_status_text == NULL) {
- Py_DECREF(self);
- return NULL;
- }
}
return (PyObject *)self;
@@ -2581,8 +2118,8 @@ static PyTypeObject PyTyp_pjsua_acc_info =
{
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
- "_pjsua.Acc_Info", /*tp_name*/
- sizeof(PyObj_pjsua_acc_info), /*tp_basicsize*/
+ "_pjsua.Acc_Info", /*tp_name*/
+ sizeof(PyObj_pjsua_acc_info), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)PyObj_pjsua_acc_info_delete,/*tp_dealloc*/
0, /*tp_print*/
@@ -2600,7 +2137,7 @@ static PyTypeObject PyTyp_pjsua_acc_info =
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
- "Acc Info objects", /* tp_doc */
+ "Account info", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
@@ -2652,7 +2189,7 @@ static void PyObj_pjsua_buddy_config_import(PyObj_pjsua_buddy_config *obj,
const pjsua_buddy_config *cfg)
{
Py_XDECREF(obj->uri);
- obj->uri = PyString_FromStringAndSize(cfg->uri.ptr, cfg->uri.slen);
+ obj->uri = PyString_FromPJ(&cfg->uri);
obj->subscribe = cfg->subscribe;
}
@@ -2660,12 +2197,12 @@ static void PyObj_pjsua_buddy_config_import(PyObj_pjsua_buddy_config *obj,
static void PyObj_pjsua_buddy_config_export(pjsua_buddy_config *cfg,
PyObj_pjsua_buddy_config *obj)
{
- cfg->uri = PyString_to_pj_str(obj->uri);
+ cfg->uri = PyString_ToPJ(obj->uri);
cfg->subscribe = obj->subscribe;
+ cfg->user_data = NULL;
}
-
/*
* PyObj_pjsua_buddy_config_new
* constructor for buddy_config object
@@ -2682,10 +2219,6 @@ static PyObject *PyObj_pjsua_buddy_config_new(PyTypeObject *type,
self = (PyObj_pjsua_buddy_config *)type->tp_alloc(type, 0);
if (self != NULL) {
self->uri = PyString_FromString("");
- if (self->uri == NULL) {
- Py_DECREF(self);
- return NULL;
- }
}
return (PyObject *)self;
}
@@ -2740,7 +2273,7 @@ static PyTypeObject PyTyp_pjsua_buddy_config =
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
- "Buddy Config objects", /* tp_doc */
+ "Buddy config", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
@@ -2748,7 +2281,7 @@ static PyTypeObject PyTyp_pjsua_buddy_config =
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
- PyObj_pjsua_buddy_config_members, /* tp_members */
+ PyObj_pjsua_buddy_config_members,/* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
@@ -2803,19 +2336,17 @@ static void PyObj_pjsua_buddy_info_import(PyObj_pjsua_buddy_info *obj,
{
obj->id = info->id;
Py_XDECREF(obj->uri);
- obj->uri = PyString_FromStringAndSize(info->uri.ptr, info->uri.slen);
+ obj->uri = PyString_FromPJ(&info->uri);
Py_XDECREF(obj->contact);
- obj->contact = PyString_FromStringAndSize(info->contact.ptr, info->contact.slen);
+ obj->contact = PyString_FromPJ(&info->contact);
obj->status = info->status;
Py_XDECREF(obj->status_text);
- obj->status_text = PyString_FromStringAndSize(info->status_text.ptr,
- info->status_text.slen);
+ obj->status_text = PyString_FromPJ(&info->status_text);
obj->monitor_pres = info->monitor_pres;
obj->activity = info->rpid.activity;
obj->sub_state = info->sub_state;
Py_XDECREF(obj->sub_term_reason);
- obj->sub_term_reason = PyString_FromStringAndSize(info->sub_term_reason.ptr,
- info->sub_term_reason.slen);
+ obj->sub_term_reason = PyString_FromPJ(&info->sub_term_reason);
}
@@ -2836,20 +2367,8 @@ static PyObject * PyObj_pjsua_buddy_info_new(PyTypeObject *type,
self = (PyObj_pjsua_buddy_info *)type->tp_alloc(type, 0);
if (self != NULL) {
self->uri = PyString_FromString("");
- if (self->uri == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->contact = PyString_FromString("");
- if (self->contact == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->status_text = PyString_FromString("");
- if (self->status_text == NULL) {
- Py_DECREF(self);
- return NULL;
- }
self->sub_term_reason = PyString_FromString("");
}
return (PyObject *)self;
@@ -2923,8 +2442,8 @@ static PyTypeObject PyTyp_pjsua_buddy_info =
{
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
- "_pjsua.Buddy_Info", /*tp_name*/
- sizeof(PyObj_pjsua_buddy_info), /*tp_basicsize*/
+ "_pjsua.Buddy_Info", /*tp_name*/
+ sizeof(PyObj_pjsua_buddy_info), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)PyObj_pjsua_buddy_info_delete,/*tp_dealloc*/
0, /*tp_print*/
@@ -2942,7 +2461,396 @@ static PyTypeObject PyTyp_pjsua_buddy_info =
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
- "Buddy Info objects", /* tp_doc */
+ "Buddy Info object", /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ PyObj_pjsua_buddy_info_members, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ PyObj_pjsua_buddy_info_new, /* tp_new */
+
+};
+
+
+//////////////////////////////////////////////////////////////////////////////
+
+/*
+ * PyObj_pjsua_codec_info
+ * Codec Info
+ */
+typedef struct
+{
+ PyObject_HEAD
+ /* Type-specific fields go here. */
+
+ PyObject * codec_id;
+ pj_uint8_t priority;
+} PyObj_pjsua_codec_info;
+
+
+/*
+ * codec_info_dealloc
+ * deletes a codec_info from memory
+ */
+static void codec_info_dealloc(PyObj_pjsua_codec_info* self)
+{
+ Py_XDECREF(self->codec_id);
+ self->ob_type->tp_free((PyObject*)self);
+}
+
+
+/*
+ * codec_info_new
+ * constructor for codec_info object
+ */
+static PyObject * codec_info_new(PyTypeObject *type, PyObject *args,
+ PyObject *kwds)
+{
+ PyObj_pjsua_codec_info *self;
+
+ PJ_UNUSED_ARG(args);
+ PJ_UNUSED_ARG(kwds);
+
+ self = (PyObj_pjsua_codec_info *)type->tp_alloc(type, 0);
+ if (self != NULL) {
+ self->codec_id = PyString_FromString("");
+ }
+ return (PyObject *)self;
+}
+
+/*
+ * codec_info_members
+ * !modified @ 071206
+ */
+static PyMemberDef codec_info_members[] =
+{
+ {
+ "codec_id", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_codec_info, codec_id), 0,
+ "Codec unique identification."
+ },
+ {
+ "priority", T_INT,
+ offsetof(PyObj_pjsua_codec_info, priority), 0,
+ "Codec priority (integer 0-255)."
+ },
+
+ {NULL} /* Sentinel */
+};
+
+/*
+ * PyTyp_pjsua_codec_info
+ */
+static PyTypeObject PyTyp_pjsua_codec_info =
+{
+ PyObject_HEAD_INIT(NULL)
+ 0, /*ob_size*/
+ "_pjsua.Codec_Info", /*tp_name*/
+ sizeof(PyObj_pjsua_codec_info), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ (destructor)codec_info_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, /*tp_flags*/
+ "Codec Info", /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ codec_info_members, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ codec_info_new, /* tp_new */
+
+};
+
+
+//////////////////////////////////////////////////////////////////////////////
+
+/*
+ * PyObj_pjsua_conf_port_info
+ * Conf Port Info
+ */
+typedef struct
+{
+ PyObject_HEAD
+ /* Type-specific fields go here. */
+
+ int slot_id;
+ PyObject *name;
+ unsigned clock_rate;
+ unsigned channel_count;
+ unsigned samples_per_frame;
+ unsigned bits_per_sample;
+ PyObject *listeners;
+
+} PyObj_pjsua_conf_port_info;
+
+
+/*
+ * conf_port_info_dealloc
+ * deletes a conf_port_info from memory
+ */
+static void conf_port_info_dealloc(PyObj_pjsua_conf_port_info* self)
+{
+ Py_XDECREF(self->name);
+ Py_XDECREF(self->listeners);
+ self->ob_type->tp_free((PyObject*)self);
+}
+
+
+/*
+ * conf_port_info_new
+ * constructor for conf_port_info object
+ */
+static PyObject * conf_port_info_new(PyTypeObject *type, PyObject *args,
+ PyObject *kwds)
+{
+ PyObj_pjsua_conf_port_info *self;
+
+ PJ_UNUSED_ARG(args);
+ PJ_UNUSED_ARG(kwds);
+
+ self = (PyObj_pjsua_conf_port_info *)type->tp_alloc(type, 0);
+ if (self != NULL) {
+ self->name = PyString_FromString("");
+ self->listeners = PyList_New(0);
+ }
+ return (PyObject *)self;
+}
+
+/*
+ * conf_port_info_members
+ */
+static PyMemberDef conf_port_info_members[] =
+{
+ {
+ "slot_id", T_INT,
+ offsetof(PyObj_pjsua_conf_port_info, slot_id), 0,
+ "Conference port number."
+ },
+ {
+ "name", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_conf_port_info, name), 0,
+ "Port name"
+ },
+ {
+ "clock_rate", T_INT,
+ offsetof(PyObj_pjsua_conf_port_info, clock_rate), 0,
+ "Clock rate"
+ },
+ {
+ "channel_count", T_INT,
+ offsetof(PyObj_pjsua_conf_port_info, channel_count), 0,
+ "Number of channels."
+ },
+ {
+ "samples_per_frame", T_INT,
+ offsetof(PyObj_pjsua_conf_port_info, samples_per_frame), 0,
+ "Samples per frame "
+ },
+ {
+ "bits_per_sample", T_INT,
+ offsetof(PyObj_pjsua_conf_port_info, bits_per_sample), 0,
+ "Bits per sample"
+ },
+ {
+ "listeners", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_conf_port_info, listeners), 0,
+ "Array of listeners (in other words, ports where this port "
+ "is transmitting to"
+ },
+
+ {NULL} /* Sentinel */
+};
+
+
+
+
+/*
+ * PyTyp_pjsua_conf_port_info
+ */
+static PyTypeObject PyTyp_pjsua_conf_port_info =
+{
+ PyObject_HEAD_INIT(NULL)
+ 0, /*ob_size*/
+ "_pjsua.Conf_Port_Info", /*tp_name*/
+ sizeof(PyObj_pjsua_conf_port_info), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ (destructor)conf_port_info_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, /*tp_flags*/
+ "Conf Port Info objects", /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ conf_port_info_members, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ conf_port_info_new, /* tp_new */
+
+};
+
+//////////////////////////////////////////////////////////////////////////////
+
+/*
+ * PyObj_pjmedia_snd_dev_info
+ * PJMedia Snd Dev Info
+ */
+typedef struct
+{
+ PyObject_HEAD
+ /* Type-specific fields go here. */
+
+ unsigned input_count;
+ unsigned output_count;
+ unsigned default_samples_per_sec;
+ PyObject *name;
+
+} PyObj_pjmedia_snd_dev_info;
+
+/*
+ * pjmedia_snd_dev_info_dealloc
+ * deletes a pjmedia_snd_dev_info from memory
+ */
+static void pjmedia_snd_dev_info_dealloc(PyObj_pjmedia_snd_dev_info* self)
+{
+ Py_XDECREF(self->name);
+ self->ob_type->tp_free((PyObject*)self);
+}
+
+/*
+ * pjmedia_snd_dev_info_new
+ * constructor for pjmedia_snd_dev_info object
+ */
+static PyObject * pjmedia_snd_dev_info_new(PyTypeObject *type,
+ PyObject *args,
+ PyObject *kwds)
+{
+ PyObj_pjmedia_snd_dev_info *self;
+
+ PJ_UNUSED_ARG(args);
+ PJ_UNUSED_ARG(kwds);
+
+ self = (PyObj_pjmedia_snd_dev_info *)type->tp_alloc(type, 0);
+ if (self != NULL) {
+ self->name = PyString_FromString("");
+ }
+ return (PyObject *)self;
+}
+
+/*
+ * pjmedia_snd_dev_info_members
+ */
+static PyMemberDef pjmedia_snd_dev_info_members[] =
+{
+ {
+ "input_count", T_INT,
+ offsetof(PyObj_pjmedia_snd_dev_info, input_count), 0,
+ "Max number of input channels"
+ },
+ {
+ "output_count", T_INT,
+ offsetof(PyObj_pjmedia_snd_dev_info, output_count), 0,
+ "Max number of output channels"
+ },
+ {
+ "default_samples_per_sec", T_INT,
+ offsetof(PyObj_pjmedia_snd_dev_info, default_samples_per_sec), 0,
+ "Default sampling rate."
+ },
+ {
+ "name", T_OBJECT_EX,
+ offsetof(PyObj_pjmedia_snd_dev_info, name), 0,
+ "Device name"
+ },
+
+ {NULL} /* Sentinel */
+};
+
+
+/*
+ * PyTyp_pjmedia_snd_dev_info
+ */
+static PyTypeObject PyTyp_pjmedia_snd_dev_info =
+{
+ PyObject_HEAD_INIT(NULL)
+ 0, /*ob_size*/
+ "_pjsua.PJMedia_Snd_Dev_Info", /*tp_name*/
+ sizeof(PyObj_pjmedia_snd_dev_info), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ (destructor)pjmedia_snd_dev_info_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, /*tp_flags*/
+ "PJMedia Snd Dev Info object", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
@@ -2950,7 +2858,7 @@ static PyTypeObject PyTyp_pjsua_buddy_info =
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
- PyObj_pjsua_buddy_info_members, /* tp_members */
+ pjmedia_snd_dev_info_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
@@ -2959,13 +2867,563 @@ static PyTypeObject PyTyp_pjsua_buddy_info =
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
- PyObj_pjsua_buddy_info_new, /* tp_new */
+ pjmedia_snd_dev_info_new, /* tp_new */
+
+};
+
+//////////////////////////////////////////////////////////////////////////////
+
+/*
+ * PyObj_pjmedia_codec_param_info
+ * PJMedia Codec Param Info
+ */
+typedef struct
+{
+ PyObject_HEAD
+ /* Type-specific fields go here. */
+
+ unsigned clock_rate;
+ unsigned channel_cnt;
+ pj_uint32_t avg_bps;
+ pj_uint16_t frm_ptime;
+ pj_uint8_t pcm_bits_per_sample;
+ pj_uint8_t pt;
+
+} PyObj_pjmedia_codec_param_info;
+
+
+
+/*
+ * pjmedia_codec_param_info_members
+ */
+static PyMemberDef pjmedia_codec_param_info_members[] =
+{
+ {
+ "clock_rate", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_info, clock_rate), 0,
+ "Sampling rate in Hz"
+ },
+ {
+ "channel_cnt", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_info, channel_cnt), 0,
+ "Channel count"
+ },
+ {
+ "avg_bps", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_info, avg_bps), 0,
+ "Average bandwidth in bits/sec"
+ },
+ {
+ "frm_ptime", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_info, frm_ptime), 0,
+ "Base frame ptime in msec."
+ },
+ {
+ "pcm_bits_per_sample", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_info, pcm_bits_per_sample), 0,
+ "Bits/sample in the PCM side"
+ },
+ {
+ "pt", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_info, pt), 0,
+ "Payload type"
+ },
+
+ {NULL} /* Sentinel */
+};
+
+/*
+ * PyTyp_pjmedia_codec_param_info
+ */
+static PyTypeObject PyTyp_pjmedia_codec_param_info =
+{
+ PyObject_HEAD_INIT(NULL)
+ 0, /*ob_size*/
+ "_pjsua.PJMedia_Codec_Param_Info", /*tp_name*/
+ sizeof(PyObj_pjmedia_codec_param_info), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ 0, /*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, /*tp_flags*/
+ "PJMedia Codec Param Info objects",/* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ pjmedia_codec_param_info_members,/* tp_members */
};
+//////////////////////////////////////////////////////////////////////////////
+/*
+ * PyObj_pjmedia_codec_param_setting
+ * PJMedia Codec Param Setting
+ */
+typedef struct
+{
+ PyObject_HEAD
+ /* Type-specific fields go here. */
+ pj_uint8_t frm_per_pkt;
+ unsigned vad;
+ unsigned cng;
+ unsigned penh;
+ unsigned plc;
+ pj_uint8_t enc_fmtp_mode;
+ pj_uint8_t dec_fmtp_mode;
+} PyObj_pjmedia_codec_param_setting;
+
+
+
+/*
+ * pjmedia_codec_param_setting_members
+ */
+static PyMemberDef pjmedia_codec_param_setting_members[] =
+{
+ {
+ "frm_per_pkt", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_setting, frm_per_pkt), 0,
+ "Number of frames per packet"
+ },
+ {
+ "vad", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_setting, vad), 0,
+ "Voice Activity Detector"
+ },
+ {
+ "cng", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_setting, cng), 0,
+ "Comfort Noise Generator"
+ },
+ {
+ "penh", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_setting, penh), 0,
+ "Perceptual Enhancement"
+ },
+ {
+ "plc", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_setting, plc), 0,
+ "Packet loss concealment"
+ },
+ {
+ "enc_fmtp_mode", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_setting, enc_fmtp_mode), 0,
+ "Mode param in fmtp (def:0)"
+ },
+ {
+ "dec_fmtp_mode", T_INT,
+ offsetof(PyObj_pjmedia_codec_param_setting, dec_fmtp_mode), 0,
+ "Mode param in fmtp (def:0)"
+ },
+
+ {NULL} /* Sentinel */
+};
+
+
+/*
+ * PyTyp_pjmedia_codec_param_setting
+ */
+static PyTypeObject PyTyp_pjmedia_codec_param_setting =
+{
+ PyObject_HEAD_INIT(NULL)
+ 0, /*ob_size*/
+ "_pjsua.PJMedia_Codec_Param_Setting",/*tp_name*/
+ sizeof(PyObj_pjmedia_codec_param_setting), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ 0, /*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, /*tp_flags*/
+ "PJMedia Codec Param Setting", /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ pjmedia_codec_param_setting_members,/* tp_members */
+};
+
+//////////////////////////////////////////////////////////////////////////////
+
+
+/*
+ * PyObj_pjmedia_codec_param
+ * PJMedia Codec Param
+ */
+typedef struct
+{
+ PyObject_HEAD
+ /* Type-specific fields go here. */
+
+ PyObj_pjmedia_codec_param_info * info;
+ PyObj_pjmedia_codec_param_setting * setting;
+
+} PyObj_pjmedia_codec_param;
+
+/*
+ * pjmedia_codec_param_dealloc
+ * deletes a pjmedia_codec_param from memory
+ */
+static void pjmedia_codec_param_dealloc(PyObj_pjmedia_codec_param* self)
+{
+ Py_XDECREF(self->info);
+ Py_XDECREF(self->setting);
+ self->ob_type->tp_free((PyObject*)self);
+}
+
+/*
+ * pjmedia_codec_param_new
+ * constructor for pjmedia_codec_param object
+ */
+static PyObject * pjmedia_codec_param_new(PyTypeObject *type,
+ PyObject *args,
+ PyObject *kwds)
+{
+ PyObj_pjmedia_codec_param *self;
+
+ PJ_UNUSED_ARG(args);
+ PJ_UNUSED_ARG(kwds);
+
+ self = (PyObj_pjmedia_codec_param *)type->tp_alloc(type, 0);
+ if (self != NULL) {
+ self->info = (PyObj_pjmedia_codec_param_info *)
+ PyType_GenericNew(&PyTyp_pjmedia_codec_param_info,
+ NULL, NULL);
+ self->setting = (PyObj_pjmedia_codec_param_setting *)
+ PyType_GenericNew(&PyTyp_pjmedia_codec_param_setting,
+ NULL, NULL);
+ }
+ return (PyObject *)self;
+}
+
+/*
+ * pjmedia_codec_param_members
+ */
+static PyMemberDef pjmedia_codec_param_members[] =
+{
+
+ {
+ "info", T_OBJECT_EX,
+ offsetof(PyObj_pjmedia_codec_param, info), 0,
+ "The 'info' part of codec param describes the capability of the codec,"
+ " and the value should NOT be changed by application."
+ },
+ {
+ "setting", T_OBJECT_EX,
+ offsetof(PyObj_pjmedia_codec_param, setting), 0,
+ "The 'setting' part of codec param describes various settings to be "
+ "applied to the codec. When the codec param is retrieved from the "
+ "codec or codec factory, the values of these will be filled by "
+ "the capability of the codec. Any features that are supported by "
+ "the codec (e.g. vad or plc) will be turned on, so that application "
+ "can query which capabilities are supported by the codec. "
+ "Application may change the settings here before instantiating "
+ "the codec/stream."
+ },
+
+ {NULL} /* Sentinel */
+};
+
+/*
+ * PyTyp_pjmedia_codec_param
+ */
+static PyTypeObject PyTyp_pjmedia_codec_param =
+{
+ PyObject_HEAD_INIT(NULL)
+ 0, /*ob_size*/
+ "_pjsua.PJMedia_Codec_Param", /*tp_name*/
+ sizeof(PyObj_pjmedia_codec_param),/*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ (destructor)pjmedia_codec_param_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, /*tp_flags*/
+ "PJMedia Codec Param", /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ pjmedia_codec_param_members, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ pjmedia_codec_param_new, /* tp_new */
+
+};
+
+//////////////////////////////////////////////////////////////////////////////
+
+/*
+ * PyObj_pjsua_call_info
+ * Call Info
+ */
+typedef struct
+{
+ PyObject_HEAD
+ /* Type-specific fields go here. */
+
+ int id;
+ int role;
+ int acc_id;
+ PyObject *local_info;
+ PyObject *local_contact;
+ PyObject *remote_info;
+ PyObject *remote_contact;
+ PyObject *call_id;
+ int state;
+ PyObject *state_text;
+ int last_status;
+ PyObject *last_status_text;
+ int media_status;
+ int media_dir;
+ int conf_slot;
+ int connect_duration;
+ int total_duration;
+
+} PyObj_pjsua_call_info;
+
+
+/*
+ * call_info_dealloc
+ * deletes a call_info from memory
+ */
+static void call_info_dealloc(PyObj_pjsua_call_info* self)
+{
+ Py_XDECREF(self->local_info);
+ Py_XDECREF(self->local_contact);
+ Py_XDECREF(self->remote_info);
+ Py_XDECREF(self->remote_contact);
+ Py_XDECREF(self->call_id);
+ Py_XDECREF(self->state_text);
+ Py_XDECREF(self->last_status_text);
+ self->ob_type->tp_free((PyObject*)self);
+}
+
+
+/*
+ * call_info_new
+ * constructor for call_info object
+ */
+static PyObject * call_info_new(PyTypeObject *type, PyObject *args,
+ PyObject *kwds)
+{
+ PyObj_pjsua_call_info *self;
+
+ PJ_UNUSED_ARG(args);
+ PJ_UNUSED_ARG(kwds);
+
+ self = (PyObj_pjsua_call_info *)type->tp_alloc(type, 0);
+ if (self != NULL) {
+ self->local_info = PyString_FromString("");
+ self->local_contact = PyString_FromString("");
+ self->remote_info = PyString_FromString("");
+ self->remote_contact = PyString_FromString("");
+ self->call_id = PyString_FromString("");
+ self->state_text = PyString_FromString("");
+ self->last_status_text = PyString_FromString("");
+ }
+ return (PyObject *)self;
+}
+
+/*
+ * call_info_members
+ */
+static PyMemberDef call_info_members[] =
+{
+ {
+ "id", T_INT,
+ offsetof(PyObj_pjsua_call_info, id), 0,
+ "Call identification"
+ },
+ {
+ "role", T_INT,
+ offsetof(PyObj_pjsua_call_info, role), 0,
+ "Initial call role (UAC == caller)"
+ },
+ {
+ "acc_id", T_INT,
+ offsetof(PyObj_pjsua_call_info, acc_id), 0,
+ "The account ID where this call belongs."
+ },
+ {
+ "local_info", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_call_info, local_info), 0,
+ "Local URI"
+ },
+ {
+ "local_contact", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_call_info, local_contact), 0,
+ "Local Contact"
+ },
+ {
+ "remote_info", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_call_info, remote_info), 0,
+ "Remote URI"
+ },
+ {
+ "remote_contact", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_call_info, remote_contact), 0,
+ "Remote Contact"
+ },
+ {
+ "call_id", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_call_info, call_id), 0,
+ "Dialog Call-ID string"
+ },
+ {
+ "state", T_INT,
+ offsetof(PyObj_pjsua_call_info, state), 0,
+ "Call state"
+ },
+ {
+ "state_text", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_call_info, state_text), 0,
+ "Text describing the state "
+ },
+ {
+ "last_status", T_INT,
+ offsetof(PyObj_pjsua_call_info, last_status), 0,
+ "Last status code heard, which can be used as cause code"
+ },
+ {
+ "last_status_text", T_OBJECT_EX,
+ offsetof(PyObj_pjsua_call_info, last_status_text), 0,
+ "The reason phrase describing the status."
+ },
+ {
+ "media_status", T_INT,
+ offsetof(PyObj_pjsua_call_info, media_status), 0,
+ "Call media status."
+ },
+ {
+ "media_dir", T_INT,
+ offsetof(PyObj_pjsua_call_info, media_dir), 0,
+ "Media direction"
+ },
+ {
+ "conf_slot", T_INT,
+ offsetof(PyObj_pjsua_call_info, conf_slot), 0,
+ "The conference port number for the call"
+ },
+ {
+ "connect_duration", T_INT,
+ offsetof(PyObj_pjsua_call_info, connect_duration), 0,
+ "Up-to-date call connected duration(zero when call is not established)"
+ },
+ {
+ "total_duration", T_INT,
+ offsetof(PyObj_pjsua_call_info, total_duration), 0,
+ "Total call duration, including set-up time"
+ },
+
+ {NULL} /* Sentinel */
+};
+
+
+
+
+/*
+ * PyTyp_pjsua_call_info
+ */
+static PyTypeObject PyTyp_pjsua_call_info =
+{
+ PyObject_HEAD_INIT(NULL)
+ 0, /*ob_size*/
+ "_pjsua.Call_Info", /*tp_name*/
+ sizeof(PyObj_pjsua_call_info), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ (destructor)call_info_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, /*tp_flags*/
+ "Call Info", /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ call_info_members, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ call_info_new, /* tp_new */
+
+};
+
+
+
+//////////////////////////////////////////////////////////////////////////////
#endif /* __PY_PJSUA_H__ */
diff --git a/pjsip-apps/src/python/pjsua.py b/pjsip-apps/src/python/pjsua.py
index 96dd0e17..0eea110f 100644
--- a/pjsip-apps/src/python/pjsua.py
+++ b/pjsip-apps/src/python/pjsua.py
@@ -150,6 +150,8 @@ Account's send_pager() method.
"""
import _pjsua
import thread
+import threading
+import weakref
class Error:
"""Error exception class.
@@ -623,16 +625,21 @@ class Transport:
_obj_name = ""
def __init__(self, lib, id):
- self._lib = lib
+ self._lib = weakref.proxy(lib)
self._id = id
- self._obj_name = "Transport " + self.info().description
+ self._obj_name = "{Transport " + self.info().description + "}"
+ _Trace((self, 'created'))
+ def __del__(self):
+ _Trace((self, 'destroyed'))
+
def __str__(self):
return self._obj_name
def info(self):
"""Get TransportInfo.
"""
+ lck = self._lib.auto_lock()
ti = _pjsua.transport_get_info(self._id)
if not ti:
self._lib._err_check("info()", self, -1, "Invalid transport")
@@ -640,11 +647,13 @@ class Transport:
def enable(self):
"""Enable this transport."""
+ lck = self._lib.auto_lock()
err = _pjsua.transport_set_enable(self._id, True)
self._lib._err_check("enable()", self, err)
def disable(self):
"""Disable this transport."""
+ lck = self._lib.auto_lock()
err = _pjsua.transport_set_enable(self._id, 0)
self._lib._err_check("disable()", self, err)
@@ -654,6 +663,7 @@ class Transport:
Keyword argument:
force -- force deletion of this transport (not recommended).
"""
+ lck = self._lib.auto_lock()
err = _pjsua.transport_close(self._id, force)
self._lib._err_check("close()", self, err)
@@ -975,8 +985,17 @@ class AccountCallback:
"""
account = None
- def __init__(self, account):
- self.account = account
+ def __init__(self, account=None):
+ self._set_account(account)
+
+ def __del__(self):
+ pass
+
+ def _set_account(self, account):
+ if account:
+ self.account = weakref.proxy(account)
+ else:
+ self.account = None
def on_reg_state(self):
"""Notification that the registration status has changed.
@@ -994,7 +1013,7 @@ class AccountCallback:
"""
call.hangup()
- def on_incoming_subscribe(self, buddy, from_uri, pres_obj):
+ def on_incoming_subscribe(self, buddy, from_uri, contact_uri, pres_obj):
"""Notification when incoming SUBSCRIBE request is received.
Application may use this callback to authorize the incoming
@@ -1098,22 +1117,28 @@ class Account:
_cb = AccountCallback(None)
_obj_name = ""
- def __init__(self, lib, id):
+ def __init__(self, lib, id, cb=None):
"""Construct this class. This is normally called by Lib class and
not by application.
Keyword arguments:
lib -- the Lib instance.
id -- the pjsua account ID.
+ cb -- AccountCallback instance to receive events from this Account.
+ If callback is not specified here, it must be set later
+ using set_callback().
"""
- self._cb = AccountCallback(self)
self._id = id
- self._lib = lib
- self._lib._associate_account(self._id, self)
- self._obj_name = "Account " + self.info().uri
+ self._lib = weakref.ref(lib)
+ self._obj_name = "{Account " + self.info().uri + "}"
+ self.set_callback(cb)
+ _pjsua.acc_set_user_data(self._id, self)
+ _Trace((self, 'created'))
def __del__(self):
- self._lib._disassociate_account(self._id, self)
+ if self._id != -1:
+ _pjsua.acc_set_user_data(self._id, 0)
+ _Trace((self, 'destroyed'))
def __str__(self):
return self._obj_name
@@ -1121,9 +1146,10 @@ class Account:
def info(self):
"""Retrieve AccountInfo for this account.
"""
+ lck = self._lib().auto_lock()
ai = _pjsua.acc_get_info(self._id)
if ai==None:
- self._lib._err_check("info()", self, -1, "Invalid account")
+ self._lib()._err_check("info()", self, -1, "Invalid account")
return AccountInfo(ai)
def is_valid(self):
@@ -1131,6 +1157,7 @@ class Account:
Check if this account is still valid.
"""
+ lck = self._lib().auto_lock()
return _pjsua.acc_is_valid(self._id)
def set_callback(self, cb):
@@ -1144,19 +1171,22 @@ class Account:
self._cb = cb
else:
self._cb = AccountCallback(self)
+ self._cb._set_account(self)
def set_default(self):
""" Set this account as default account to send outgoing requests
and as the account to receive incoming requests when more exact
matching criteria fails.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.acc_set_default(self._id)
- self._lib._err_check("set_default()", self, err)
+ self._lib()._err_check("set_default()", self, err)
def is_default(self):
""" Check if this account is the default account.
"""
+ lck = self._lib().auto_lock()
def_id = _pjsua.acc_get_default()
return self.is_valid() and def_id==self._id
@@ -1164,8 +1194,12 @@ class Account:
""" Delete this account.
"""
+ lck = self._lib().auto_lock()
+ err = _pjsua.acc_set_user_data(self._id, 0)
+ self._lib()._err_check("delete()", self, err)
err = _pjsua.acc_del(self._id)
- self._lib._err_check("delete()", self, err)
+ self._lib()._err_check("delete()", self, err)
+ self._id = -1
def set_basic_status(self, is_online):
""" Set basic presence status of this account.
@@ -1174,8 +1208,9 @@ class Account:
is_online -- boolean to indicate basic presence availability.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.acc_set_online_status(self._id, is_online)
- self._lib._err_check("set_basic_status()", self, err)
+ self._lib()._err_check("set_basic_status()", self, err)
def set_presence_status(self, is_online,
activity=PresenceActivity.UNKNOWN,
@@ -1190,9 +1225,10 @@ class Account:
rpid_id -- optional string to be placed as RPID ID.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.acc_set_online_status2(self._id, is_online, activity,
pres_text, rpid_id)
- self._lib._err_check("set_presence_status()", self, err)
+ self._lib()._err_check("set_presence_status()", self, err)
def set_registration(self, renew):
"""Manually renew registration or unregister from the server.
@@ -1202,18 +1238,9 @@ class Account:
Setting this value for False will trigger unregistration.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.acc_set_registration(self._id, renew)
- self._lib._err_check("set_registration()", self, err)
-
- def has_registration(self):
- """Returns True if registration is active for this account.
-
- """
- acc_info = _pjsua.acc_get_info(self._id)
- if not acc_info:
- self._lib._err_check("has_registration()", self, -1,
- "invalid account")
- return acc_info.has_registration
+ self._lib()._err_check("set_registration()", self, err)
def set_transport(self, transport):
"""Set this account to only use the specified transport to send
@@ -1223,38 +1250,54 @@ class Account:
transport -- Transport object.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.acc_set_transport(self._id, transport._id)
- self._lib._err_check("set_transport()", self, err)
+ self._lib()._err_check("set_transport()", self, err)
- def make_call(self, dst_uri, hdr_list=None):
+ def make_call(self, dst_uri, cb=None, hdr_list=None):
"""Make outgoing call to the specified URI.
Keyword arguments:
dst_uri -- Destination SIP URI.
+ cb -- CallCallback instance to be installed to the newly
+ created Call object. If this CallCallback is not
+ specified (i.e. None is given), it must be installed
+ later using call.set_callback().
hdr_list -- Optional list of headers to be sent with outgoing
INVITE
+ Return:
+ Call instance.
"""
+ lck = self._lib().auto_lock()
+ call = Call(self._lib(), -1, cb)
err, cid = _pjsua.call_make_call(self._id, dst_uri, 0,
- 0, Lib._create_msg_data(hdr_list))
- self._lib._err_check("make_call()", self, err)
- return Call(self._lib, cid)
+ call, Lib._create_msg_data(hdr_list))
+ self._lib()._err_check("make_call()", self, err)
+ call.attach_to_id(cid)
+ return call
- def add_buddy(self, uri):
+ def add_buddy(self, uri, cb=None):
"""Add new buddy.
Keyword argument:
- uri -- SIP URI of the buddy
+ uri -- SIP URI of the buddy
+ cb -- BuddyCallback instance to be installed to the newly
+ created Buddy object. If this callback is not specified
+ (i.e. None is given), it must be installed later using
+ buddy.set_callback().
Return:
Buddy object
"""
+ lck = self._lib().auto_lock()
buddy_cfg = _pjsua.buddy_config_default()
buddy_cfg.uri = uri
buddy_cfg.subscribe = False
err, buddy_id = _pjsua.buddy_add(buddy_cfg)
- self._lib._err_check("add_buddy()", self, err)
- return Buddy(self._lib, buddy_id, self)
+ self._lib()._err_check("add_buddy()", self, err)
+ buddy = Buddy(self._lib(), buddy_id, self, cb)
+ return buddy
def pres_notify(self, pres_obj, state, reason="", hdr_list=None):
"""Send NOTIFY to inform account presence status or to terminate
@@ -1267,6 +1310,7 @@ class Account:
reason -- Optional reason phrase.
hdr_list -- Optional header list.
"""
+ lck = self._lib().auto_lock()
_pjsua.acc_pres_notify(self._id, pres_obj, state, reason,
Lib._create_msg_data(hdr_list))
@@ -1283,8 +1327,17 @@ class CallCallback:
"""
call = None
- def __init__(self, call):
- self.call = call
+ def __init__(self, call=None):
+ self._set_call(call)
+
+ def __del__(self):
+ pass
+
+ def _set_call(self, call):
+ if call:
+ self.call = weakref.proxy(call)
+ else:
+ self.call = None
def on_state(self):
"""Notification that the call's state has changed.
@@ -1468,8 +1521,8 @@ class CallInfo:
self.media_state = ci.media_status
self.media_dir = ci.media_dir
self.conf_slot = ci.conf_slot
- self.call_time = ci.connect_duration.sec
- self.total_time = ci.total_duration.sec
+ self.call_time = ci.connect_duration / 1000
+ self.total_time = ci.total_duration / 1000
class Call:
@@ -1483,19 +1536,31 @@ class Call:
_lib = None
_obj_name = ""
- def __init__(self, lib, call_id):
- self._cb = CallCallback(self)
- self._id = call_id
- self._lib = lib
- self._lib._associate_call(call_id, self)
- self._obj_name = "Call " + self.info().remote_uri
+ def __init__(self, lib, call_id, cb=None):
+ self._lib = weakref.ref(lib)
+ self.set_callback(cb)
+ self.attach_to_id(call_id)
+ _Trace((self, 'created'))
def __del__(self):
- self._lib._disassociate_call(self._id, self)
+ if self._id != -1:
+ _pjsua.call_set_user_data(self._id, 0)
+ _Trace((self, 'destroyed'))
def __str__(self):
return self._obj_name
+ def attach_to_id(self, call_id):
+ lck = self._lib().auto_lock()
+ if self._id != -1:
+ _pjsua.call_set_user_data(self._id, 0)
+ self._id = call_id
+ if self._id != -1:
+ _pjsua.call_set_user_data(self._id, self)
+ self._obj_name = "{Call " + self.info().remote_uri + "}"
+ else:
+ self._obj_name = "{Call object}"
+
def set_callback(self, cb):
"""
Set callback object to retrieve event notifications from this call.
@@ -1507,26 +1572,31 @@ class Call:
self._cb = cb
else:
self._cb = CallCallback(self)
+ self._cb._set_call(self)
def info(self):
"""
Get the CallInfo.
"""
+ lck = self._lib().auto_lock()
ci = _pjsua.call_get_info(self._id)
if not ci:
- self._lib._err_check("info", self, -1, "Invalid call")
- return CallInfo(self._lib, ci)
+ self._lib()._err_check("info", self, -1, "Invalid call")
+ call_info = CallInfo(self._lib(), ci)
+ return call_info
def is_valid(self):
"""
Check if this call is still valid.
"""
+ lck = self._lib().auto_lock()
return _pjsua.call_is_active(self._id)
def dump_status(self, with_media=True, indent="", max_len=1024):
"""
Dump the call status.
"""
+ lck = self._lib().auto_lock()
return _pjsua.call_dump(self._id, with_media, max_len, indent)
def answer(self, code=200, reason="", hdr_list=None):
@@ -1541,9 +1611,10 @@ class Call:
INVITE response.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.call_answer(self._id, code, reason,
Lib._create_msg_data(hdr_list))
- self._lib._err_check("answer()", self, err)
+ self._lib()._err_check("answer()", self, err)
def hangup(self, code=603, reason="", hdr_list=None):
"""
@@ -1557,9 +1628,10 @@ class Call:
message.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.call_hangup(self._id, code, reason,
Lib._create_msg_data(hdr_list))
- self._lib._err_check("hangup()", self, err)
+ self._lib()._err_check("hangup()", self, err)
def hold(self, hdr_list=None):
"""
@@ -1569,8 +1641,9 @@ class Call:
hdr_list -- Optional list of headers to be sent with the
message.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.call_set_hold(self._id, Lib._create_msg_data(hdr_list))
- self._lib._err_check("hold()", self, err)
+ self._lib()._err_check("hold()", self, err)
def unhold(self, hdr_list=None):
"""
@@ -1581,9 +1654,10 @@ class Call:
message.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.call_reinvite(self._id, True,
Lib._create_msg_data(hdr_list))
- self._lib._err_check("unhold()", self, err)
+ self._lib()._err_check("unhold()", self, err)
def reinvite(self, hdr_list=None):
"""
@@ -1594,9 +1668,10 @@ class Call:
message.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.call_reinvite(self._id, True,
Lib._create_msg_data(hdr_list))
- self._lib._err_check("reinvite()", self, err)
+ self._lib()._err_check("reinvite()", self, err)
def update(self, hdr_list=None, options=0):
"""
@@ -1608,9 +1683,10 @@ class Call:
options -- Must be zero for now.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.call_update(self._id, options,
Lib._create_msg_data(hdr_list))
- self._lib._err_check("update()", self, err)
+ self._lib()._err_check("update()", self, err)
def transfer(self, dest_uri, hdr_list=None):
"""
@@ -1622,9 +1698,10 @@ class Call:
message.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.call_xfer(self._id, dest_uri,
Lib._create_msg_data(hdr_list))
- self._lib._err_check("transfer()", self, err)
+ self._lib()._err_check("transfer()", self, err)
def transfer_to_call(self, call, hdr_list=None, options=0):
"""
@@ -1637,9 +1714,10 @@ class Call:
options -- Must be zero for now.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.call_xfer_replaces(self._id, call._id, options,
Lib._create_msg_data(hdr_list))
- self._lib._err_check("transfer_to_call()", self, err)
+ self._lib()._err_check("transfer_to_call()", self, err)
def dial_dtmf(self, digits):
"""
@@ -1649,8 +1727,9 @@ class Call:
digits -- DTMF digit string.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.call_dial_dtmf(self._id, digits)
- self._lib._err_check("dial_dtmf()", self, err)
+ self._lib()._err_check("dial_dtmf()", self, err)
def send_request(self, method, hdr_list=None, content_type=None,
body=None):
@@ -1669,6 +1748,7 @@ class Call:
body -- Optional SIP message body.
"""
+ lck = self._lib().auto_lock()
if hdr_list and body:
msg_data = _pjsua.Msg_Data()
if hdr_list:
@@ -1681,7 +1761,7 @@ class Call:
msg_data = None
err = _pjsua.call_send_request(self._id, method, msg_data)
- self._lib._err_check("send_request()", self, err)
+ self._lib()._err_check("send_request()", self, err)
class BuddyInfo:
@@ -1736,8 +1816,14 @@ class BuddyCallback:
"""
buddy = None
- def __init__(self, buddy):
- self.buddy = buddy
+ def __init__(self, buddy=None):
+ self._set_buddy(buddy)
+
+ def _set_buddy(self, buddy):
+ if buddy:
+ self.buddy = weakref.proxy(buddy)
+ else:
+ self.buddy = None
def on_state(self):
"""
@@ -1793,16 +1879,19 @@ class Buddy:
_obj_name = ""
_acc = None
- def __init__(self, lib, id, account):
- self._cb = BuddyCallback(self)
- self._lib = lib
+ def __init__(self, lib, id, account, cb):
self._id = id
- self._acc = account
- lib._associate_buddy(self._id, self)
- self._obj_name = "Buddy " + self.info().uri
+ self._lib = weakref.ref(lib)
+ self._acc = weakref.ref(account)
+ self._obj_name = "{Buddy " + self.info().uri + "}"
+ self.set_callback(cb)
+ _pjsua.buddy_set_user_data(self._id, self)
+ _Trace((self, 'created'))
def __del__(self):
- self._lib._disassociate_buddy(self)
+ if self._id != -1:
+ _pjsua.buddy_set_user_data(self._id, 0)
+ _Trace((self, 'destroyed'))
def __str__(self):
return self._obj_name
@@ -1811,6 +1900,7 @@ class Buddy:
"""
Get buddy info as BuddyInfo.
"""
+ lck = self._lib().auto_lock()
return BuddyInfo(_pjsua.buddy_get_info(self._id))
def set_callback(self, cb):
@@ -1823,27 +1913,33 @@ class Buddy:
self._cb = cb
else:
self._cb = BuddyCallback(self)
+ self._cb._set_buddy(self)
def subscribe(self):
"""
Subscribe to buddy's presence status notification.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.buddy_subscribe_pres(self._id, True)
- self._lib._err_check("subscribe()", self, err)
+ self._lib()._err_check("subscribe()", self, err)
def unsubscribe(self):
"""
Unsubscribe from buddy's presence status notification.
"""
+ lck = self._lib().auto_lock()
err = _pjsua.buddy_subscribe_pres(self._id, False)
- self._lib._err_check("unsubscribe()", self, err)
+ self._lib()._err_check("unsubscribe()", self, err)
def delete(self):
"""
Remove this buddy from the buddy list.
"""
+ lck = self._lib().auto_lock()
+ if self._id != -1:
+ _pjsua.buddy_set_user_data(self._id, 0)
err = _pjsua.buddy_del(self._id)
- self._lib._err_check("delete()", self, err)
+ self._lib()._err_check("delete()", self, err)
def send_pager(self, text, im_id=0, content_type="text/plain", \
hdr_list=None):
@@ -1859,11 +1955,12 @@ class Buddy:
request.
"""
- err = _pjsua.im_send(self._acc._id, self.info().uri, \
+ lck = self._lib().auto_lock()
+ err = _pjsua.im_send(self._acc()._id, self.info().uri, \
content_type, text, \
Lib._create_msg_data(hdr_list), \
im_id)
- self._lib._err_check("send_pager()", self, err)
+ self._lib()._err_check("send_pager()", self, err)
def send_typing_ind(self, is_typing=True, hdr_list=None):
"""Send typing indication to remote buddy.
@@ -1874,9 +1971,10 @@ class Buddy:
request.
"""
- err = _pjsua.im_typing(self._acc._id, self.info().uri, \
+ lck = self._lib().auto_lock()
+ err = _pjsua.im_typing(self._acc()._id, self.info().uri, \
is_typing, Lib._create_msg_data(hdr_list))
- self._lib._err_check("send_typing_ind()", self, err)
+ self._lib()._err_check("send_typing_ind()", self, err)
@@ -1981,32 +2079,43 @@ class CodecParameter:
return self._codec_param
+# Library mutex
+class _LibMutex:
+ def __init__(self, lck):
+ self._lck = lck
+ self._lck.acquire()
+ #print 'lck acquire'
+
+ def __del__(self):
+ self._lck.release()
+ #print 'lck release'
+
+
# PJSUA Library
_lib = None
class Lib:
"""Library instance.
"""
- call = {}
- account = {}
- buddy = {}
- buddy_by_uri = {}
- buddy_by_contact = {}
_quit = False
_has_thread = False
+ _lock = None
def __init__(self):
global _lib
if _lib:
raise Error("__init()__", None, -1,
"Library instance already exist")
-
+
+ self._lock = threading.RLock()
err = _pjsua.create()
self._err_check("_pjsua.create()", None, err)
_lib = self
def __del__(self):
_pjsua.destroy()
+ del self._lock
+ print 'Lib destroyed'
def __str__(self):
return "Lib"
@@ -2048,7 +2157,7 @@ class Lib:
py_ua_cfg.cb.on_typing = _cb_on_typing
err = _pjsua.init(py_ua_cfg, log_cfg._cvt_to_pjsua(),
- media_cfg._cvt_to_pjsua())
+ media_cfg._cvt_to_pjsua())
self._err_check("init()", self, err)
def destroy(self):
@@ -2058,11 +2167,11 @@ class Lib:
self._quit = 1
loop = 0
while self._quit != 2 and loop < 400:
- _pjsua.handle_events(50)
+ self.handle_events(50)
loop = loop + 1
_pjsua.destroy()
_lib = None
-
+
def start(self, with_thread=True):
"""Start the library.
@@ -2087,6 +2196,7 @@ class Lib:
timeout -- in milliseconds.
"""
+ lck = self.auto_lock()
return _pjsua.handle_events(timeout)
def verify_sip_url(self, sip_url):
@@ -2100,6 +2210,7 @@ class Lib:
code is returned.
"""
+ lck = self.auto_lock()
return _pjsua.verify_sip_url(sip_url)
def create_transport(self, type, cfg=None):
@@ -2113,12 +2224,13 @@ class Lib:
Transport object
"""
+ lck = self.auto_lock()
if not cfg: cfg=TransportConfig(type)
err, tp_id = _pjsua.transport_create(type, cfg._cvt_to_pjsua())
self._err_check("create_transport()", self, err)
return Transport(self, tp_id)
- def create_account(self, acc_config, set_default=True):
+ def create_account(self, acc_config, set_default=True, cb=None):
"""
Create a new local pjsua account using the specified configuration.
@@ -2126,35 +2238,41 @@ class Lib:
acc_config -- AccountConfig
set_default -- boolean to specify whether to use this as the
default account.
+ cb -- AccountCallback instance.
Return:
Account instance
"""
+ lck = self.auto_lock()
err, acc_id = _pjsua.acc_add(acc_config._cvt_to_pjsua(), set_default)
self._err_check("create_account()", self, err)
- return Account(self, acc_id)
+ return Account(self, acc_id, cb)
- def create_account_for_transport(self, transport, set_default=True):
+ def create_account_for_transport(self, transport, set_default=True,
+ cb=None):
"""Create a new local pjsua transport for the specified transport.
Keyword arguments:
transport -- the Transport instance.
set_default -- boolean to specify whether to use this as the
default account.
+ cb -- AccountCallback instance.
Return:
Account instance
"""
+ lck = self.auto_lock()
err, acc_id = _pjsua.acc_add_local(transport._id, set_default)
self._err_check("create_account_for_transport()", self, err)
- return Account(self, acc_id)
+ return Account(self, acc_id, cb)
def hangup_all(self):
"""Hangup all calls.
"""
+ lck = self.auto_lock()
_pjsua.call_hangup_all()
# Sound device API
@@ -2166,6 +2284,7 @@ class Lib:
list of SoundDeviceInfo. The index of the element specifies
the device ID for the device.
"""
+ lck = self.auto_lock()
sdi_list = _pjsua.enum_snd_devs()
info = []
for sdi in sdi_list:
@@ -2178,6 +2297,7 @@ class Lib:
Return:
(capture_dev_id, playback_dev_id) tuple
"""
+ lck = self.auto_lock()
return _pjsua.get_snd_dev()
def set_snd_dev(self, capture_dev, playback_dev):
@@ -2188,6 +2308,7 @@ class Lib:
playback_dev -- the device ID of playback device to be used.
"""
+ lck = self.auto_lock()
err = _pjsua.set_snd_dev(capture_dev, playback_dev)
self._err_check("set_current_sound_devices()", self, err)
@@ -2196,6 +2317,7 @@ class Lib:
does not have sound device installed.
"""
+ lck = self.auto_lock()
err = _pjsua.set_null_snd_dev()
self._err_check("set_null_snd_dev()", self, err)
@@ -2209,6 +2331,7 @@ class Lib:
conference bridge capacity.
"""
+ lck = self.auto_lock()
return _pjsua.conf_get_max_ports()
def conf_connect(self, src_slot, dst_slot):
@@ -2230,6 +2353,7 @@ class Lib:
the destination/receiver.
"""
+ lck = self.auto_lock()
err = _pjsua.conf_connect(src_slot, dst_slot)
self._err_check("conf_connect()", self, err)
@@ -2243,6 +2367,7 @@ class Lib:
the destination/receiver.
"""
+ lck = self.auto_lock()
err = _pjsua.conf_disconnect(src_slot, dst_slot)
self._err_check("conf_disconnect()", self, err)
@@ -2255,6 +2380,7 @@ class Lib:
level -- Signal level adjustment. Value 1.0 means no level
adjustment, while value 0 means to mute the port.
"""
+ lck = self.auto_lock()
err = _pjsua.conf_set_tx_level(slot, level)
self._err_check("conf_set_tx_level()", self, err)
@@ -2267,6 +2393,7 @@ class Lib:
level -- Signal level adjustment. Value 1.0 means no level
adjustment, while value 0 means to mute the port.
"""
+ lck = self.auto_lock()
err = _pjsua.conf_set_rx_level(slot, level)
self._err_check("conf_set_rx_level()", self, err)
@@ -2282,6 +2409,7 @@ class Lib:
Return value:
(tx_level, rx_level) tuple.
"""
+ lck = self.auto_lock()
err, tx_level, rx_level = _pjsua.conf_get_signal_level(slot)
self._err_check("conf_get_signal_level()", self, err)
return (tx_level, rx_level)
@@ -2297,6 +2425,7 @@ class Lib:
list of CodecInfo
"""
+ lck = self.auto_lock()
ci_list = _pjsua.enum_codecs()
codec_info = []
for ci in ci_list:
@@ -2313,6 +2442,7 @@ class Lib:
priority -- Codec priority, which range is 0-255.
"""
+ lck = self.auto_lock()
err = _pjsua.codec_set_priority(name, priority)
self._err_check("set_codec_priority()", self, err)
@@ -2323,6 +2453,7 @@ class Lib:
name -- codec name.
"""
+ lck = self.auto_lock()
cp = _pjsua.codec_get_param(name)
if not cp:
self._err_check("get_codec_parameter()", self, -1,
@@ -2337,6 +2468,7 @@ class Lib:
param -- codec parameter.
"""
+ lck = self.auto_lock()
err = _pjsua.codec_set_param(name, param._cvt_to_pjsua())
self._err_check("set_codec_parameter()", self, err)
@@ -2353,6 +2485,7 @@ class Lib:
WAV player ID
"""
+ lck = self.auto_lock()
opt = 0
if not loop:
opt = opt + 1
@@ -2370,6 +2503,7 @@ class Lib:
Conference slot number for the player
"""
+ lck = self.auto_lock()
slot = _pjsua.player_get_conf_port(player_id)
if slot < 0:
self._err_check("player_get_slot()", self, -1,
@@ -2384,6 +2518,7 @@ class Lib:
pos -- playback position, in samples
"""
+ lck = self.auto_lock()
err = _pjsua.player_set_pos(player_id, pos)
self._err_check("player_set_pos()", self, err)
@@ -2394,6 +2529,7 @@ class Lib:
player_id -- the WAV player ID.
"""
+ lck = self.auto_lock()
err = _pjsua.player_destroy(player_id)
self._err_check("player_destroy()", self, err)
@@ -2410,6 +2546,7 @@ class Lib:
Return:
playlist_id
"""
+ lck = self.auto_lock()
opt = 0
if not loop:
opt = opt + 1
@@ -2427,6 +2564,7 @@ class Lib:
Conference slot number for the playlist
"""
+ lck = self.auto_lock()
slot = _pjsua.player_get_conf_port(playlist_id)
if slot < 0:
self._err_check("playlist_get_slot()", self, -1,
@@ -2440,6 +2578,7 @@ class Lib:
playlist_id -- the WAV playlist ID.
"""
+ lck = self.auto_lock()
err = _pjsua.player_destroy(playlist_id)
self._err_check("playlist_destroy()", self, err)
@@ -2453,6 +2592,7 @@ class Lib:
WAV recorder ID
"""
+ lck = self.auto_lock()
err, rec_id = _pjsua.recorder_create(filename, 0, None, -1, 0)
self._err_check("create_recorder()", self, err)
return rec_id
@@ -2467,6 +2607,7 @@ class Lib:
Conference slot number for the recorder
"""
+ lck = self.auto_lock()
slot = _pjsua.recorder_get_conf_port(rec_id)
if slot < 1:
self._err_check("recorder_get_slot()", self, -1,
@@ -2480,6 +2621,7 @@ class Lib:
rec_id -- the WAV recorder ID.
"""
+ lck = self.auto_lock()
err = _pjsua.recorder_destroy(rec_id)
self._err_check("recorder_destroy()", self, err)
@@ -2502,48 +2644,31 @@ class Lib:
msg_data.hdr_list = hdr_list
return msg_data
- # Internal dictionary manipulation for calls, accounts, and buddies
+ def auto_lock(self):
+ return _LibMutex(self._lock)
- def _associate_call(self, call_id, call):
- self.call[call_id] = call
+ # Internal dictionary manipulation for calls, accounts, and buddies
def _lookup_call(self, call_id):
- return self.call.has_key(call_id) and self.call[call_id] or None
-
- def _disassociate_call(self, call):
- if self._lookup_call(call._id)==call:
- del self.call[call._id]
-
- def _associate_account(self, acc_id, account):
- self.account[acc_id] = account
+ return _pjsua.call_get_user_data(call_id)
def _lookup_account(self, acc_id):
- return self.account.has_key(acc_id) and self.account[acc_id] or None
-
- def _disassociate_account(self, account):
- if self._lookup_account(account._id)==account:
- del self.account[account._id]
-
- def _associate_buddy(self, buddy_id, buddy):
- self.buddy[buddy_id] = buddy
- uri = SIPUri(buddy.info().uri)
- self.buddy_by_uri[(uri.user, uri.host)] = buddy
+ return _pjsua.acc_get_user_data(acc_id)
def _lookup_buddy(self, buddy_id, uri=None):
- buddy = self.buddy.has_key(buddy_id) and self.buddy[buddy_id] or None
- if uri and not buddy:
- sip_uri = SIPUri(uri)
- buddy = self.buddy_by_uri.has_key( (sip_uri.user, sip_uri.host) ) \
- and self.buddy_by_uri[(sip_uri.user, sip_uri.host)] or \
- None
+ if buddy_id != -1:
+ buddy = _pjsua.buddy_get_user_data(buddy_id)
+ elif uri:
+ buddy_id = _pjsua.buddy_find(uri)
+ if buddy_id != -1:
+ buddy = _pjsua.buddy_get_user_data(buddy_id)
+ else:
+ buddy = None
+ else:
+ buddy = None
+
return buddy
- def _disassociate_buddy(self, buddy):
- if self._lookup_buddy(buddy._id)==buddy:
- del self.buddy[buddy._id]
- if self.buddy_by_uri.has_key(buddy.info().uri):
- del self.buddy_by_uri[buddy.info().uri]
-
# Account allbacks
def _cb_on_reg_state(self, acc_id):
@@ -2551,11 +2676,13 @@ class Lib:
if acc:
acc._cb.on_reg_state()
- def _cb_on_incoming_subscribe(self, acc_id, buddy_id, from_uri, pres_obj):
+ def _cb_on_incoming_subscribe(self, acc_id, buddy_id, from_uri,
+ contact_uri, pres_obj):
acc = self._lookup_account(acc_id)
if acc:
buddy = self._lookup_buddy(buddy_id)
- return acc._cb.on_incoming_subscribe(buddy, from_uri, pres_obj)
+ return acc._cb.on_incoming_subscribe(buddy, from_uri, contact_uri,
+ pres_obj)
else:
return (404, None)
@@ -2571,7 +2698,14 @@ class Lib:
def _cb_on_call_state(self, call_id):
call = self._lookup_call(call_id)
if call:
+ if call._id == -1:
+ call.attach_to_id(call_id)
+ done = (call.info().state == CallState.DISCONNECTED)
call._cb.on_state()
+ if done:
+ _pjsua.call_set_user_data(call_id, 0)
+ else:
+ pass
def _cb_on_call_media_state(self, call_id):
call = self._lookup_call(call_id)
@@ -2694,8 +2828,9 @@ def _cb_on_call_replaced(old_call_id, new_call_id):
def _cb_on_reg_state(acc_id):
_lib._cb_on_reg_state(acc_id)
-def _cb_on_incoming_subscribe(acc_id, buddy_id, from_uri, pres):
- return _lib._cb_on_incoming_subscribe(acc_id, buddy_id, from_uri, pres)
+def _cb_on_incoming_subscribe(acc_id, buddy_id, from_uri, contact_uri, pres):
+ return _lib._cb_on_incoming_subscribe(acc_id, buddy_id, from_uri,
+ contact_uri, pres)
def _cb_on_buddy_state(buddy_id):
_lib._cb_on_buddy_state(buddy_id)
@@ -2717,8 +2852,14 @@ def _worker_thread_main(arg):
thread_desc = 0;
err = _pjsua.thread_register("python worker", thread_desc)
_lib._err_check("thread_register()", _lib, err)
- while _lib._quit == 0:
- _pjsua.handle_events(50)
- _lib._quit = 2
-
-
+ while _lib and _lib._quit == 0:
+ _lib.handle_events(50)
+ if _lib:
+ _lib._quit = 2
+
+def _Trace(args):
+ if True:
+ print "** ",
+ for arg in args:
+ print arg,
+ print " **"
diff --git a/pjsip-apps/src/python/samples/call.py b/pjsip-apps/src/python/samples/call.py
index 2f44f62b..ac053ad5 100644
--- a/pjsip-apps/src/python/samples/call.py
+++ b/pjsip-apps/src/python/samples/call.py
@@ -1,4 +1,4 @@
-# $Id:$
+# $Id$
#
# SIP call sample.
#
@@ -18,13 +18,12 @@ def log_cb(level, str, len):
# Callback to receive events from account
class MyAccountCallback(pj.AccountCallback):
- def __init__(self, account):
+ def __init__(self, account=None):
pj.AccountCallback.__init__(self, account)
# Notification on incoming call
def on_incoming_call(self, call):
global current_call
-
if current_call:
call.answer(486, "Busy")
return
@@ -43,13 +42,12 @@ class MyAccountCallback(pj.AccountCallback):
# Callback to receive events from Call
class MyCallCallback(pj.CallCallback):
- def __init__(self, call):
+ def __init__(self, call=None):
pj.CallCallback.__init__(self, call)
# Notification when call state has changed
def on_state(self):
global current_call
-
print "Call with", self.call.info().remote_uri,
print "is", self.call.info().state_text,
print "last code =", self.call.info().last_code,
@@ -57,6 +55,7 @@ class MyCallCallback(pj.CallCallback):
if self.call.info().state == pj.CallState.DISCONNECTED:
current_call = None
+ print 'Current call is', current_call
# Notification when call's media state has changed.
def on_media_state(self):
@@ -73,12 +72,9 @@ class MyCallCallback(pj.CallCallback):
def make_call(uri):
try:
print "Making call to", uri
- call = acc.make_call(uri)
- call_cb = MyCallCallback(call)
- call.set_callback(call_cb)
- return call
+ return acc.make_call(uri, cb=MyCallCallback())
except pj.Error, e:
- print "Error: " + str(e)
+ print "Exception: " + str(e)
return None
@@ -100,13 +96,14 @@ try:
lib.start()
# Create local account
- acc = lib.create_account_for_transport(transport)
- acc_cb = MyAccountCallback(acc)
- acc.set_callback(acc_cb)
+ acc = lib.create_account_for_transport(transport, cb=MyAccountCallback())
# If argument is specified then make call to the URI
if len(sys.argv) > 1:
+ lck = lib.auto_lock()
current_call = make_call(sys.argv[1])
+ print 'Current call is', current_call
+ del lck
my_sip_uri = "sip:" + transport.info().host + \
":" + str(transport.info().port)
@@ -125,7 +122,9 @@ try:
input = sys.stdin.readline().rstrip("\r\n")
if input == "":
continue
+ lck = lib.auto_lock()
current_call = make_call(input)
+ del lck
elif input == "h":
if not current_call:
@@ -143,6 +142,9 @@ try:
break
# Shutdown the library
+ transport = None
+ acc.delete()
+ acc = None
lib.destroy()
lib = None
diff --git a/pjsip-apps/src/python/samples/presence.py b/pjsip-apps/src/python/samples/presence.py
index 5ae48645..20c2e518 100644
--- a/pjsip-apps/src/python/samples/presence.py
+++ b/pjsip-apps/src/python/samples/presence.py
@@ -8,12 +8,30 @@ import sys
import pjsua as pj
LOG_LEVEL = 3
+pending_pres = None
+pending_uri = None
def log_cb(level, str, len):
print str,
+class MyAccountCallback(pj.AccountCallback):
+ def __init__(self, account=None):
+ pj.AccountCallback.__init__(self, account)
+
+ def on_incoming_subscribe(self, buddy, from_uri, contact_uri, pres):
+ global pending_pres, pending_uri
+ # Allow buddy to subscribe to our presence
+ if buddy:
+ return (200, None)
+ print 'Incoming SUBSCRIBE request from', from_uri
+ print 'Press "A" to accept and add, "R" to reject the request'
+ pending_pres = pres
+ pending_uri = from_uri
+ return (202, None)
+
+
class MyBuddyCallback(pj.BuddyCallback):
- def __init__(self, buddy):
+ def __init__(self, buddy=None):
pj.BuddyCallback.__init__(self, buddy)
def on_state(self):
@@ -54,8 +72,9 @@ try:
lib.start()
# Create local account
- acc = lib.create_account_for_transport(transport)
-
+ acc = lib.create_account_for_transport(transport, cb=MyAccountCallback())
+ acc.set_basic_status(True)
+
my_sip_uri = "sip:" + transport.info().host + \
":" + str(transport.info().port)
@@ -64,7 +83,8 @@ try:
# Menu loop
while True:
print "My SIP URI is", my_sip_uri
- print "Menu: a=add buddy, t=toggle online status, i=send IM, q=quit"
+ print "Menu: a=add buddy, d=delete buddy, t=toggle", \
+ " online status, i=send IM, q=quit"
input = sys.stdin.readline().rstrip("\r\n")
if input == "a":
@@ -74,10 +94,7 @@ try:
if input == "":
continue
- buddy = acc.add_buddy(input)
- cb = MyBuddyCallback(buddy)
- buddy.set_callback(cb)
-
+ buddy = acc.add_buddy(input, cb=MyBuddyCallback())
buddy.subscribe()
elif input == "t":
@@ -97,11 +114,43 @@ try:
continue
buddy.send_pager(input)
-
+
+ elif input == "d":
+ if buddy:
+ buddy.delete()
+ buddy = None
+ else:
+ print 'No buddy was added'
+
+ elif input == "A":
+ if pending_pres:
+ acc.pres_notify(pending_pres, pj.SubscriptionState.ACTIVE)
+ buddy = acc.add_buddy(pending_uri, cb=MyBuddyCallback())
+ buddy.subscribe()
+ pending_pres = None
+ pending_uri = None
+ else:
+ print "No pending request"
+
+ elif input == "R":
+ if pending_pres:
+ acc.pres_notify(pending_pres, pj.SubscriptionState.TERMINATED,
+ "rejected")
+ pending_pres = None
+ pending_uri = None
+ else:
+ print "No pending request"
+
elif input == "q":
break
# Shutdown the library
+ acc.delete()
+ acc = None
+ if pending_pres:
+ acc.pres_notify(pending_pres, pj.SubscriptionState.TERMINATED,
+ "rejected")
+ transport = None
lib.destroy()
lib = None
diff --git a/pjsip-apps/src/python/samples/registration.py b/pjsip-apps/src/python/samples/registration.py
index 16cae8b2..973ea2f4 100644
--- a/pjsip-apps/src/python/samples/registration.py
+++ b/pjsip-apps/src/python/samples/registration.py
@@ -1,4 +1,4 @@
-# $Id:$
+# $Id$
#
# SIP account and registration sample. In this sample, the program
# will block to wait until registration is complete
diff --git a/pjsip-apps/src/python/samples/subscribe.py b/pjsip-apps/src/python/samples/subscribe.py
deleted file mode 100644
index e48aeee8..00000000
--- a/pjsip-apps/src/python/samples/subscribe.py
+++ /dev/null
@@ -1,94 +0,0 @@
-# $Id$
-#
-# Authorization of incoming subscribe request
-#
-# Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
-#
-import sys
-import pjsua as pj
-
-LOG_LEVEL = 3
-
-pending_pres = None
-
-def log_cb(level, str, len):
- print str,
-
-class MyAccountCallback(pj.AccountCallback):
- def __init__(self, account):
- pj.AccountCallback.__init__(self, account)
-
- def on_incoming_subscribe(self, buddy, from_uri, pres):
- # Allow buddy to subscribe to our presence
- global pending_pres
-
- if buddy:
- return (200, None)
- print 'Incoming SUBSCRIBE request from', from_uri
- print 'Press "A" to accept and add, "R" to reject the request'
- pending_pres = pres
- return (202, None)
-
-
-lib = pj.Lib()
-
-try:
- # Init library with default config and some customized
- # logging config.
- lib.init(log_cfg = pj.LogConfig(level=LOG_LEVEL, callback=log_cb))
-
- # Create UDP transport which listens to any available port
- transport = lib.create_transport(pj.TransportType.UDP,
- pj.TransportConfig(0))
- print "\nListening on", transport.info().host,
- print "port", transport.info().port, "\n"
-
- # Start the library
- lib.start()
-
- # Create local account
- acc = lib.create_account_for_transport(transport)
- acc.set_callback(MyAccountCallback(acc))
-
- my_sip_uri = "sip:" + transport.info().host + \
- ":" + str(transport.info().port)
-
- buddy = None
-
- # Menu loop
- while True:
- print "My SIP URI is", my_sip_uri
- print "Menu: t=toggle online status, q=quit"
-
- input = sys.stdin.readline().rstrip("\r\n")
-
- if input == "t":
- acc.set_basic_status(not acc.info().online_status)
-
- elif input == "A":
- if pending_pres:
- acc.pres_notify(pending_pres, pj.SubscriptionState.ACTIVE)
- pending_pres = None
- else:
- print "No pending request"
-
- elif input == "R":
- if pending_pres:
- acc.pres_notify(pending_pres, pj.SubscriptionState.TERMINATED,
- "rejected")
- pending_pres = None
- else:
- print "No pending request"
-
- elif input == "q":
- break
-
- # Shutdown the library
- lib.destroy()
- lib = None
-
-except pj.Error, e:
- print "Exception: " + str(e)
- lib.destroy()
- lib = None
-