Implement Python >=3.3 support

This commit is contained in:
Vincent Castellano 2015-05-09 02:10:24 -07:00
parent a301e83129
commit 8c00b44863
5 changed files with 239 additions and 79 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
telegram telegram
*.o *.o
Makefile Makefile
aclocal.m4
autom4te.cache autom4te.cache
config.h config.h
config.log config.log

View File

@ -56,7 +56,7 @@
AC_DEFUN([AX_PYTHON], AC_DEFUN([AX_PYTHON],
[AC_MSG_CHECKING(for python build information) [AC_MSG_CHECKING(for python build information)
AC_MSG_RESULT([]) AC_MSG_RESULT([])
for python in python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python; do for python in python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python; do
AC_CHECK_PROGS(PYTHON_BIN, [$python]) AC_CHECK_PROGS(PYTHON_BIN, [$python])
ax_python_bin=$PYTHON_BIN ax_python_bin=$PYTHON_BIN
if test x$ax_python_bin != x; then if test x$ax_python_bin != x; then

2
configure vendored
View File

@ -5948,7 +5948,7 @@ if test "${enable_python+set}" = set; then :
$as_echo_n "checking for python build information... " >&6; } $as_echo_n "checking for python build information... " >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5
$as_echo "" >&6; } $as_echo "" >&6; }
for python in python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python; do for python in python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python; do
for ac_prog in $python for ac_prog in $python
do do
# Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.

View File

@ -31,13 +31,45 @@
#include <libgen.h> #include <libgen.h>
#include <Python.h> #include <Python.h>
#ifdef EVENT_V2 #include "bytesobject.h"
#include <event2/event.h>
// Python 2/3 compat macros
#if PY_MAJOR_VERSION >= 3
#define MOD_ERROR_VAL NULL
#define MOD_SUCCESS_VAL(val) val
#define MOD_INIT(name) PyMODINIT_FUNC PyInit_##name(void)
#define MOD_DEF(ob, name, doc, methods) \
static struct PyModuleDef moduledef = { \
PyModuleDef_HEAD_INIT, name, doc, -1, methods, NULL, NULL, NULL, NULL,}; \
ob = PyModule_Create(&moduledef);
#define PyInt_FromLong PyLong_FromLong
#else #else
#include <event.h> #define MOD_ERROR_VAL
#include "event-old.h" #define MOD_SUCCESS_VAL(val)
#define MOD_INIT(name) void init##name(void)
#define MOD_DEF(ob, name, doc, methods) \
ob = Py_InitModule3(name, methods, doc);
#endif #endif
#define TGL_PYTHON_CALLBACK(name, func) \
PyObject *set##func(PyObject *dummy, PyObject *args) { \
PyObject *result = NULL; \
PyObject *temp; \
if (PyArg_ParseTuple(args, "O:set_##name", &temp)) { \
if (!PyCallable_Check(temp)) { \
PyErr_SetString(PyExc_TypeError, "parameter must be callable");\
return NULL;\
}\
Py_XINCREF(temp);\
Py_XDECREF(func);\
func = temp;\
Py_INCREF(Py_None);\
result = Py_None;\
}\
return result;\
}
// Python Imports // Python Imports
#include "datetime.h" #include "datetime.h"
@ -75,16 +107,16 @@ void py_add_string_field (PyObject* dict, char *name, const char *value) {
assert (PyDict_Check(dict)); assert (PyDict_Check(dict));
assert (name && strlen (name)); assert (name && strlen (name));
if (!value || !strlen (value)) { return; } if (!value || !strlen (value)) { return; }
PyDict_SetItemString (dict, name, PyString_FromString(value)); PyDict_SetItemString (dict, name, PyUnicode_FromString(value));
} }
void py_add_string_field_arr (PyObject* list, int num, const char *value) { void py_add_string_field_arr (PyObject* list, int num, const char *value) {
assert(PyList_Check(list)); assert(PyList_Check(list));
if (!value || !strlen (value)) { return; } if (!value || !strlen (value)) { return; }
if(num >= 0) if(num >= 0)
PyList_SetItem (list, num, PyString_FromString (value)); PyList_SetItem (list, num, PyUnicode_FromString (value));
else // Append else // Append
PyList_Append (list, PyString_FromString (value)); PyList_Append (list, PyUnicode_FromString (value));
} }
void py_add_num_field (PyObject* dict, const char *name, double value) { void py_add_num_field (PyObject* dict, const char *name, double value) {
@ -98,13 +130,13 @@ PyObject* get_tgl_peer_type (int x) {
switch (x) { switch (x) {
case TGL_PEER_USER: case TGL_PEER_USER:
type = PyString_FromString("user"); type = PyUnicode_FromString("user");
break; break;
case TGL_PEER_CHAT: case TGL_PEER_CHAT:
type = PyString_FromString("chat"); type = PyUnicode_FromString("chat");
break; break;
case TGL_PEER_ENCR_CHAT: case TGL_PEER_ENCR_CHAT:
type = PyString_FromString("encr_chat"); type = PyUnicode_FromString("encr_chat");
break; break;
default: default:
assert (0); assert (0);
@ -264,7 +296,7 @@ PyObject* get_peer (tgl_peer_id_t id, tgl_peer_t *P) {
if(name == NULL) if(name == NULL)
assert(0); // TODO handle python exception; assert(0); // TODO handle python exception;
PyDict_SetItemString (name, "print_name", PyString_FromString(s)); PyDict_SetItemString (name, "print_name", PyUnicode_FromString(s));
PyDict_SetItemString (peer, "peer", name); PyDict_SetItemString (peer, "peer", name);
} else { } else {
PyObject *peer_obj; PyObject *peer_obj;
@ -374,7 +406,7 @@ PyObject* get_message (struct tgl_message *M) {
if (!M->service) { if (!M->service) {
if (M->message_len && M->message) { if (M->message_len && M->message) {
PyDict_SetItemString(msg, "text", PyString_FromStringAndSize(M->message, M->message_len)); PyDict_SetItemString(msg, "text", PyUnicode_FromStringAndSize(M->message, M->message_len));
} }
if (M->media.type && M->media.type != tgl_message_media_none) { if (M->media.type && M->media.type != tgl_message_media_none) {
PyDict_SetItemString(msg, "media", get_media(&M->media)); PyDict_SetItemString(msg, "media", get_media(&M->media));
@ -389,12 +421,19 @@ void py_binlog_end (void) {
PyObject *arglist, *result; PyObject *arglist, *result;
if(_py_binlog_end == NULL) {
logprintf("Callback not set for on_binlog_end");
return;
}
arglist = Py_BuildValue("()"); arglist = Py_BuildValue("()");
result = PyEval_CallObject(_py_binlog_end, arglist); result = PyEval_CallObject(_py_binlog_end, arglist);
Py_DECREF(arglist); if(result == NULL) Py_DECREF(arglist);
if(result == NULL)
PyErr_Print(); PyErr_Print();
else if(PyString_Check(result)) else if(PyUnicode_Check(result))
logprintf ("python: %s\n", PyString_AsString(result)); logprintf ("python: %s\n", PyBytes_AsString(PyUnicode_AsASCIIString(result)));
Py_XDECREF(result); Py_XDECREF(result);
} }
@ -404,12 +443,18 @@ void py_diff_end (void) {
PyObject *arglist, *result; PyObject *arglist, *result;
if(_py_diff_end == NULL) {
logprintf("Callback not set for on_diff_end");
return;
}
arglist = Py_BuildValue("()"); arglist = Py_BuildValue("()");
result = PyEval_CallObject(_py_diff_end, arglist); result = PyEval_CallObject(_py_diff_end, arglist);
Py_DECREF(arglist); if(result == NULL) Py_DECREF(arglist);
if(result == NULL)
PyErr_Print(); PyErr_Print();
else if(PyString_Check(result)) else if(PyUnicode_Check(result))
logprintf ("python: %s\n", PyString_AsString(result)); logprintf ("python: %s\n", PyBytes_AsString(PyUnicode_AsASCIIString(result)));
Py_XDECREF(result); Py_XDECREF(result);
} }
@ -419,12 +464,17 @@ void py_our_id (int id) {
PyObject *arglist, *result; PyObject *arglist, *result;
if(_py_our_id == NULL) {
logprintf("Callback not set for on_our_id");
return;
}
arglist = Py_BuildValue("(i)", id); arglist = Py_BuildValue("(i)", id);
result = PyEval_CallObject(_py_our_id, arglist); result = PyEval_CallObject(_py_our_id, arglist);
Py_DECREF(arglist); if(result == NULL) Py_DECREF(arglist); if(result == NULL)
PyErr_Print(); PyErr_Print();
else if(PyString_Check(result)) else if(PyUnicode_Check(result))
logprintf ("python: %s\n", PyString_AsString(result)); logprintf ("python: %s\n", PyBytes_AsString(PyUnicode_AsASCIIString(result)));
Py_XDECREF(result); Py_XDECREF(result);
} }
@ -434,6 +484,11 @@ void py_new_msg (struct tgl_message *M) {
PyObject *msg; PyObject *msg;
PyObject *arglist, *result; PyObject *arglist, *result;
if(_py_new_msg == NULL) {
logprintf("Callback not set for on_new_msg");
return;
}
msg = get_message (M); msg = get_message (M);
arglist = Py_BuildValue("(O)", msg); arglist = Py_BuildValue("(O)", msg);
@ -442,8 +497,8 @@ void py_new_msg (struct tgl_message *M) {
if(result == NULL) if(result == NULL)
PyErr_Print(); PyErr_Print();
else if(PyString_Check(result)) else if(PyUnicode_Check(result))
logprintf ("python: %s\n", PyString_AsString(result)); logprintf ("python: %s\n", PyBytes_AsString(PyUnicode_AsASCIIString(result)));
Py_XDECREF(result); Py_XDECREF(result);
} }
@ -453,6 +508,11 @@ void py_secret_chat_update (struct tgl_secret_chat *C, unsigned flags) {
PyObject *peer, *types; PyObject *peer, *types;
PyObject *arglist, *result; PyObject *arglist, *result;
if(_py_secret_chat_update == NULL) {
logprintf("Callback not set for on_secret_chat_update");
return;
}
peer = get_peer (C->id, (void *)C); peer = get_peer (C->id, (void *)C);
types = get_update_types (flags); types = get_update_types (flags);
@ -462,8 +522,8 @@ void py_secret_chat_update (struct tgl_secret_chat *C, unsigned flags) {
if(result == NULL) if(result == NULL)
PyErr_Print(); PyErr_Print();
else if(PyString_Check(result)) else if(PyUnicode_Check(result))
logprintf ("python: %s\n", PyString_AsString(result)); logprintf ("python: %s\n", PyBytes_AsString(PyUnicode_AsASCIIString(result)));
Py_XDECREF(result); Py_XDECREF(result);
} }
@ -474,6 +534,11 @@ void py_user_update (struct tgl_user *U, unsigned flags) {
PyObject *peer, *types; PyObject *peer, *types;
PyObject *arglist, *result; PyObject *arglist, *result;
if(_py_user_update == NULL) {
logprintf("Callback not set for on_user_update");
return;
}
peer = get_peer (U->id, (void *)U); peer = get_peer (U->id, (void *)U);
types = get_update_types (flags); types = get_update_types (flags);
@ -483,8 +548,8 @@ void py_user_update (struct tgl_user *U, unsigned flags) {
if(result == NULL) if(result == NULL)
PyErr_Print(); PyErr_Print();
else if(PyString_Check(result)) else if(PyUnicode_Check(result))
logprintf ("python: %s\n", PyString_AsString(result)); logprintf ("python: %s\n", PyBytes_AsString(PyUnicode_AsASCIIString(result)));
Py_XDECREF(result); Py_XDECREF(result);
} }
@ -495,6 +560,11 @@ void py_chat_update (struct tgl_chat *C, unsigned flags) {
PyObject *peer, *types; PyObject *peer, *types;
PyObject *arglist, *result; PyObject *arglist, *result;
if(_py_chat_update == NULL) {
logprintf("Callback not set for on_chat_update");
return;
}
peer = get_peer (C->id, (void *)C); peer = get_peer (C->id, (void *)C);
types = get_update_types (flags); types = get_update_types (flags);
@ -504,8 +574,8 @@ void py_chat_update (struct tgl_chat *C, unsigned flags) {
if(result == NULL) if(result == NULL)
PyErr_Print(); PyErr_Print();
else if(PyString_Check(result)) else if(PyUnicode_Check(result))
logprintf ("python: %s\n", PyString_AsString(result)); logprintf ("python: %s\n", PyBytes_AsString(PyUnicode_AsASCIIString(result)));
Py_XDECREF(result); Py_XDECREF(result);
} }
@ -929,7 +999,9 @@ void py_do_all (void) {
enum py_query_type f = (long)py_ptr[p ++]; enum py_query_type f = (long)py_ptr[p ++];
PyObject *args = (PyObject *)py_ptr[p ++]; PyObject *args = (PyObject *)py_ptr[p ++];
PyObject *pyObj1, *pyObj2; PyObject *pyObj1, *pyObj2;
char *s; PyObject *ustr, *str;
str = NULL;
//struct tgl_message *M; //struct tgl_message *M;
tgl_peer_id_t peer, peer1; tgl_peer_id_t peer, peer1;
@ -941,8 +1013,12 @@ void py_do_all (void) {
tgl_do_get_dialog_list (TLS, py_dialog_list_cb, NULL); tgl_do_get_dialog_list (TLS, py_dialog_list_cb, NULL);
break; break;
case pq_msg: case pq_msg:
PyArg_ParseTuple(args, "iis", &peer.type, &peer.id, &s); PyArg_ParseTuple(args, "iiU", &peer.type, &peer.id, &ustr);
tgl_do_send_message (TLS, peer, s, strlen (s), py_msg_cb, NULL); str = PyUnicode_AsUnicodeEscapeString(ustr);
if(str == NULL)
PyErr_Print();
else
tgl_do_send_message (TLS, peer, PyBytes_AsString(str), PyBytes_Size (str), py_msg_cb, NULL);
break; break;
case pq_send_typing: case pq_send_typing:
PyArg_ParseTuple(args, "ii", &peer.type, &peer.id); PyArg_ParseTuple(args, "ii", &peer.type, &peer.id);
@ -953,36 +1029,68 @@ void py_do_all (void) {
tgl_do_send_typing (TLS, peer, tgl_typing_cancel, py_empty_cb, NULL); tgl_do_send_typing (TLS, peer, tgl_typing_cancel, py_empty_cb, NULL);
break; break;
case pq_rename_chat: case pq_rename_chat:
PyArg_ParseTuple(args, "iis", &peer.type, &peer.id, &s); PyArg_ParseTuple(args, "iiU", &peer.type, &peer.id, &ustr);
tgl_do_rename_chat (TLS, peer, s, py_msg_cb, NULL); str = PyUnicode_AsUnicodeEscapeString(ustr);
if(str == NULL)
PyErr_Print();
else
tgl_do_rename_chat (TLS, peer, PyBytes_AsString(str), py_msg_cb, NULL);
break; break;
case pq_send_photo: case pq_send_photo:
PyArg_ParseTuple(args, "iis", &peer.type, &peer.id, &s); PyArg_ParseTuple(args, "iiU", &peer.type, &peer.id, &ustr);
tgl_do_send_document (TLS, -1, peer, s, py_msg_cb, NULL); str = PyUnicode_AsUnicodeEscapeString(ustr);
if(str == NULL)
PyErr_Print();
else
tgl_do_send_document (TLS, -1, peer, PyBytes_AsString(str), py_msg_cb, NULL);
break; break;
case pq_send_video: case pq_send_video:
PyArg_ParseTuple(args, "iis", &peer.type, &peer.id, &s); PyArg_ParseTuple(args, "iiU", &peer.type, &peer.id, &ustr);
tgl_do_send_document (TLS, FLAG_DOCUMENT_VIDEO, peer, s, py_msg_cb, NULL); str = PyUnicode_AsUnicodeEscapeString(ustr);
if(str == NULL)
PyErr_Print();
else
tgl_do_send_document (TLS, FLAG_DOCUMENT_VIDEO, peer, PyBytes_AsString(str), py_msg_cb, NULL);
break; break;
case pq_send_audio: case pq_send_audio:
PyArg_ParseTuple(args, "iis", &peer.type, &peer.id, &s); PyArg_ParseTuple(args, "iiU", &peer.type, &peer.id, &ustr);
tgl_do_send_document (TLS, FLAG_DOCUMENT_AUDIO, peer, s, py_msg_cb, NULL); str = PyUnicode_AsUnicodeEscapeString(ustr);
if(str == NULL)
PyErr_Print();
else
tgl_do_send_document (TLS, FLAG_DOCUMENT_AUDIO, peer, PyBytes_AsString(str), py_msg_cb, NULL);
break; break;
case pq_send_document: case pq_send_document:
PyArg_ParseTuple(args, "iis", &peer.type, &peer.id, &s); PyArg_ParseTuple(args, "iiU", &peer.type, &peer.id, &ustr);
tgl_do_send_document (TLS, 0, peer, s, py_msg_cb, NULL); str = PyUnicode_AsUnicodeEscapeString(ustr);
if(str == NULL)
PyErr_Print();
else
tgl_do_send_document (TLS, 0, peer, PyBytes_AsString(str), py_msg_cb, NULL);
break; break;
case pq_send_file: case pq_send_file:
PyArg_ParseTuple(args, "iis", &peer.type, &peer.id, &s); PyArg_ParseTuple(args, "iiU", &peer.type, &peer.id, &ustr);
tgl_do_send_document (TLS, -2, peer, s, py_msg_cb, NULL); str = PyUnicode_AsUnicodeEscapeString(ustr);
if(str == NULL)
PyErr_Print();
else
tgl_do_send_document (TLS, -2, peer, PyBytes_AsString(str), py_msg_cb, NULL);
break; break;
case pq_send_text: case pq_send_text:
PyArg_ParseTuple(args, "iis", &peer.type, &peer.id, &s); PyArg_ParseTuple(args, "iiU", &peer.type, &peer.id, &ustr);
tgl_do_send_text (TLS, peer, s, py_msg_cb, NULL); str = PyUnicode_AsUnicodeEscapeString(ustr);
if(str == NULL)
PyErr_Print();
else
tgl_do_send_text (TLS, peer, PyBytes_AsString(str), py_msg_cb, NULL);
break; break;
case pq_chat_set_photo: case pq_chat_set_photo:
PyArg_ParseTuple(args, "iis", &peer.type, &peer.id, &s); PyArg_ParseTuple(args, "iiU", &peer.type, &peer.id, &ustr);
tgl_do_set_chat_photo (TLS, peer, s, py_msg_cb, NULL); str = PyUnicode_AsUnicodeEscapeString(ustr);
if(str == NULL)
PyErr_Print();
else
tgl_do_set_chat_photo (TLS, peer, PyBytes_AsString(str), py_msg_cb, NULL);
break; break;
/* case pq_load_photo: /* case pq_load_photo:
case pq_load_video: case pq_load_video:
@ -1110,7 +1218,14 @@ void py_do_all (void) {
default: default:
assert (0); assert (0);
} }
Py_DECREF(args);
// Clean up any arg variables we could have used.
Py_XDECREF(args);
Py_XDECREF(pyObj1);
Py_XDECREF(pyObj2);
Py_XDECREF(str);
Py_XDECREF(ustr);
} }
pos = 0; pos = 0;
} }
@ -1171,6 +1286,34 @@ PyObject* py_status_offline(PyObject *self, PyObject *args) { return push_py_fun
PyObject* py_send_location(PyObject *self, PyObject *args) { return push_py_func(pq_send_location, args); } PyObject* py_send_location(PyObject *self, PyObject *args) { return push_py_func(pq_send_location, args); }
PyObject* py_extf(PyObject *self, PyObject *args) { return push_py_func(pq_extf, args); } PyObject* py_extf(PyObject *self, PyObject *args) { return push_py_func(pq_extf, args); }
// Store callables for python functions
TGL_PYTHON_CALLBACK("on_binlog_replay_end", _py_binlog_end);
TGL_PYTHON_CALLBACK("on_get_difference_end", _py_diff_end);
//TGL_PYTHON_CALLBACK("on_our_id", _py_our_id);
TGL_PYTHON_CALLBACK("on_msg_receive", _py_new_msg);
TGL_PYTHON_CALLBACK("on_secret_chat_update", _py_secret_chat_update);
TGL_PYTHON_CALLBACK("on_user_update", _py_user_update);
TGL_PYTHON_CALLBACK("on_chat_update", _py_chat_update);
PyObject *set_py_our_id(PyObject *dummy, PyObject *args) {
PyObject *result = NULL;
PyObject *temp;
if (PyArg_ParseTuple(args, "O:set_on_our_id", &temp)) {
if (!PyCallable_Check(temp)) {
PyErr_SetString(PyExc_TypeError, "parameter must be callable");
return NULL;
}
Py_XINCREF(temp);
Py_XDECREF(_py_our_id);
_py_our_id = temp;
Py_INCREF(Py_None);
result = Py_None;
}
return result;
}
static PyMethodDef py_tgl_methods[] = { static PyMethodDef py_tgl_methods[] = {
{"get_contact_list", py_contact_list, METH_VARARGS, "retrieve contact list"}, {"get_contact_list", py_contact_list, METH_VARARGS, "retrieve contact list"},
{"get_dialog_list", py_dialog_list, METH_VARARGS, ""}, {"get_dialog_list", py_dialog_list, METH_VARARGS, ""},
@ -1216,9 +1359,28 @@ static PyMethodDef py_tgl_methods[] = {
{"status_offline", py_status_offline, METH_VARARGS, ""}, {"status_offline", py_status_offline, METH_VARARGS, ""},
{"send_location", py_send_location, METH_VARARGS, ""}, {"send_location", py_send_location, METH_VARARGS, ""},
{"ext_function", py_extf, METH_VARARGS, ""}, {"ext_function", py_extf, METH_VARARGS, ""},
{"set_on_binlog_replay_end", set_py_binlog_end, METH_VARARGS, ""},
{"set_on_get_difference_end", set_py_diff_end, METH_VARARGS, ""},
{"set_on_our_id", set_py_our_id, METH_VARARGS, ""},
{"set_on_msg_receive", set_py_new_msg, METH_VARARGS, ""},
{"set_on_secret_chat_update", set_py_secret_chat_update, METH_VARARGS, ""},
{"set_on_user_update", set_py_user_update, METH_VARARGS, ""},
{"set_on_chat_update", set_py_chat_update, METH_VARARGS, ""},
{ NULL, NULL, 0, NULL } { NULL, NULL, 0, NULL }
}; };
MOD_INIT(tgl)
{
PyObject *m;
MOD_DEF(m, "tgl", NULL, py_tgl_methods)
if (m == NULL)
return MOD_ERROR_VAL;
return MOD_SUCCESS_VAL(m);
}
//static void lua_postpone_alarm (evutil_socket_t fd, short what, void *arg) { //static void lua_postpone_alarm (evutil_socket_t fd, short what, void *arg) {
// int *t = arg; // int *t = arg;
@ -1291,54 +1453,42 @@ static PyMethodDef py_tgl_methods[] = {
//} //}
// //
#define my_python_register(dict, name, f) \
f = PyDict_GetItemString(dict, name);
void inittgl()
{
(void) Py_InitModule("tgl", py_tgl_methods);
}
void py_init (const char *file) { void py_init (const char *file) {
if (!file) { return; } if (!file) { return; }
python_loaded = 0; python_loaded = 0;
PyObject *pModule, *pDict; PyObject *pModule;
// Get a copy of the filename for dirname, which may modify the string. // Get a copy of the filename for dirname, which may modify the string.
char filename[100]; char filename[100];
strncpy(filename, file, 100); strncpy(filename, file, 100);
Py_Initialize(); #if PY_MAJOR_VERSION >= 3
PyImport_AppendInittab("tgl", &PyInit_tgl);
#else
inittgl(); inittgl();
#endif
Py_Initialize();
PyObject* sysPath = PySys_GetObject((char*)"path"); PyObject* sysPath = PySys_GetObject((char*)"path");
PyList_Append(sysPath, PyString_FromString(dirname(filename))); PyList_Append(sysPath, PyUnicode_FromString(dirname(filename)));
// remove .py extension from file, if any // remove .py extension from file, if any
char* dot = strrchr(file, '.'); char* dot = strrchr(file, '.');
if (dot && strcmp(dot, ".py") == 0) if (dot && strcmp(dot, ".py") == 0)
*dot = 0; *dot = 0;
pModule = PyImport_Import(PyString_FromString(basename(file))); pModule = PyImport_Import(PyUnicode_FromString(basename(file)));
if(pModule == NULL || PyErr_Occurred()) { // Error loading script if(pModule == NULL || PyErr_Occurred()) { // Error loading script
logprintf("Failed to load python script\n"); logprintf("Failed to load python script\n");
PyErr_Print(); PyErr_Print();
exit(1); exit(1);
} else {
python_loaded = 1;
PyDateTime_IMPORT;
pDict = PyModule_GetDict(pModule);
// Store callables for python functions
my_python_register(pDict, "on_binlog_replay_end", _py_binlog_end);
my_python_register(pDict, "on_get_difference_end", _py_diff_end);
my_python_register(pDict, "on_our_id", _py_our_id);
my_python_register(pDict, "on_msg_receive", _py_new_msg);
my_python_register(pDict, "on_secret_chat_update", _py_secret_chat_update);
my_python_register(pDict, "on_user_update", _py_user_update);
my_python_register(pDict, "on_chat_update", _py_chat_update);
} }
python_loaded = 1;
PyDateTime_IMPORT;
logprintf("Python Initialized");
} }

View File

@ -3,7 +3,6 @@ import geopy
import pprint import pprint
from geopy.geocoders import Nominatim from geopy.geocoders import Nominatim
our_id = 0 our_id = 0
pp = pprint.PrettyPrinter(indent=4) pp = pprint.PrettyPrinter(indent=4)
@ -52,3 +51,13 @@ def on_user_update():
def on_chat_update(): def on_chat_update():
pass pass
# Set callbacks
tgl.set_on_binlog_replay_end(on_binlog_replay_end)
tgl.set_on_get_difference_end(on_get_difference_end)
tgl.set_on_our_id(on_our_id)
tgl.set_on_msg_receive(on_msg_receive)
tgl.set_on_secret_chat_update(on_secret_chat_update)
tgl.set_on_user_update(on_user_update)
tgl.set_on_chat_update(on_chat_update)