|
@@ -32,6 +32,22 @@ typedef int Py_ssize_t;
|
|
|
#define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
|
|
|
#endif
|
|
|
|
|
|
+#if PY_MAJOR_VERSION >= 3
|
|
|
+#define PyInt_FromLong PyLong_FromLong
|
|
|
+#define PyInt_AsLong PyLong_AsLong
|
|
|
+#define PyInt_AS_LONG PyLong_AS_LONG
|
|
|
+#define PyString_AS_STRING PyBytes_AS_STRING
|
|
|
+#define PyString_AsString PyBytes_AsString
|
|
|
+#define PyString_AsStringAndSize PyBytes_AsStringAndSize
|
|
|
+#define PyString_Check PyBytes_Check
|
|
|
+#define PyString_CheckExact PyBytes_CheckExact
|
|
|
+#define PyString_FromStringAndSize PyBytes_FromStringAndSize
|
|
|
+#define PyString_FromString PyBytes_FromString
|
|
|
+#define PyString_GET_SIZE PyBytes_GET_SIZE
|
|
|
+#define PyString_Size PyBytes_Size
|
|
|
+#define _PyString_Join _PyBytes_Join
|
|
|
+#endif
|
|
|
+
|
|
|
static PyObject *tree_entry_cls = NULL, *null_entry = NULL,
|
|
|
*defaultdict_cls = NULL, *int_cls = NULL;
|
|
|
static int block_size;
|
|
@@ -124,8 +140,13 @@ static PyObject **tree_entries(char *path, Py_ssize_t path_len, PyObject *tree,
|
|
|
memcpy(new_path, PyString_AS_STRING(name), name_len);
|
|
|
}
|
|
|
|
|
|
+#if PY_MAJOR_VERSION >= 3
|
|
|
+ result[i] = PyObject_CallFunction(tree_entry_cls, "y#OO", new_path,
|
|
|
+ new_path_len, PyTuple_GET_ITEM(old_entry, 1), sha);
|
|
|
+#else
|
|
|
result[i] = PyObject_CallFunction(tree_entry_cls, "s#OO", new_path,
|
|
|
new_path_len, PyTuple_GET_ITEM(old_entry, 1), sha);
|
|
|
+#endif
|
|
|
PyMem_Free(new_path);
|
|
|
if (!result[i]) {
|
|
|
goto error;
|
|
@@ -152,16 +173,18 @@ static int entry_path_cmp(PyObject *entry1, PyObject *entry2)
|
|
|
path1 = PyObject_GetAttrString(entry1, "path");
|
|
|
if (!path1)
|
|
|
goto done;
|
|
|
+
|
|
|
if (!PyString_Check(path1)) {
|
|
|
- PyErr_SetString(PyExc_TypeError, "path is not a string");
|
|
|
+ PyErr_SetString(PyExc_TypeError, "path is not a (byte)string");
|
|
|
goto done;
|
|
|
}
|
|
|
|
|
|
path2 = PyObject_GetAttrString(entry2, "path");
|
|
|
if (!path2)
|
|
|
goto done;
|
|
|
+
|
|
|
if (!PyString_Check(path2)) {
|
|
|
- PyErr_SetString(PyExc_TypeError, "path is not a string");
|
|
|
+ PyErr_SetString(PyExc_TypeError, "path is not a (byte)string");
|
|
|
goto done;
|
|
|
}
|
|
|
|
|
@@ -182,7 +205,11 @@ static PyObject *py_merge_entries(PyObject *self, PyObject *args)
|
|
|
char *path_str;
|
|
|
int cmp;
|
|
|
|
|
|
+#if PY_MAJOR_VERSION >= 3
|
|
|
+ if (!PyArg_ParseTuple(args, "y#OO", &path_str, &path_len, &tree1, &tree2))
|
|
|
+#else
|
|
|
if (!PyArg_ParseTuple(args, "s#OO", &path_str, &path_len, &tree1, &tree2))
|
|
|
+#endif
|
|
|
return NULL;
|
|
|
|
|
|
entries1 = tree_entries(path_str, path_len, tree1, &n1);
|
|
@@ -390,12 +417,28 @@ static PyMethodDef py_diff_tree_methods[] = {
|
|
|
{ NULL, NULL, 0, NULL }
|
|
|
};
|
|
|
|
|
|
-PyMODINIT_FUNC
|
|
|
-init_diff_tree(void)
|
|
|
+static PyObject *
|
|
|
+moduleinit(void)
|
|
|
{
|
|
|
PyObject *m, *objects_mod = NULL, *diff_tree_mod = NULL;
|
|
|
- PyObject *block_size_obj = NULL;
|
|
|
+ PyObject *block_size_obj = NULL;
|
|
|
+
|
|
|
+#if PY_MAJOR_VERSION >= 3
|
|
|
+ static struct PyModuleDef moduledef = {
|
|
|
+ PyModuleDef_HEAD_INIT,
|
|
|
+ "_diff_tree", /* m_name */
|
|
|
+ NULL, /* m_doc */
|
|
|
+ -1, /* m_size */
|
|
|
+ py_diff_tree_methods, /* m_methods */
|
|
|
+ NULL, /* m_reload */
|
|
|
+ NULL, /* m_traverse */
|
|
|
+ NULL, /* m_clear*/
|
|
|
+ NULL, /* m_free */
|
|
|
+ };
|
|
|
+ m = PyModule_Create(&moduledef);
|
|
|
+#else
|
|
|
m = Py_InitModule("_diff_tree", py_diff_tree_methods);
|
|
|
+#endif
|
|
|
if (!m)
|
|
|
goto error;
|
|
|
|
|
@@ -437,11 +480,8 @@ init_diff_tree(void)
|
|
|
}
|
|
|
|
|
|
Py_DECREF(diff_tree_mod);
|
|
|
-#if PY_MAJOR_VERSION < 3
|
|
|
- return;
|
|
|
-#else
|
|
|
- return NULL;
|
|
|
-#endif
|
|
|
+
|
|
|
+ return m;
|
|
|
|
|
|
error:
|
|
|
Py_XDECREF(objects_mod);
|
|
@@ -450,9 +490,19 @@ error:
|
|
|
Py_XDECREF(block_size_obj);
|
|
|
Py_XDECREF(defaultdict_cls);
|
|
|
Py_XDECREF(int_cls);
|
|
|
-#if PY_MAJOR_VERSION < 3
|
|
|
- return;
|
|
|
-#else
|
|
|
return NULL;
|
|
|
-#endif
|
|
|
}
|
|
|
+
|
|
|
+#if PY_MAJOR_VERSION >= 3
|
|
|
+PyMODINIT_FUNC
|
|
|
+PyInit__diff_tree(void)
|
|
|
+{
|
|
|
+ return moduleinit();
|
|
|
+}
|
|
|
+#else
|
|
|
+PyMODINIT_FUNC
|
|
|
+init_diff_tree(void)
|
|
|
+{
|
|
|
+ moduleinit();
|
|
|
+}
|
|
|
+#endif
|