123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- /*
- * Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; version 2
- * of the License or (at your option) a later version of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
- */
- #include <Python.h>
- #include <stdlib.h>
- #include <sys/stat.h>
- #if defined(__APPLE__)
- #include <Availability.h>
- #endif
- #if (PY_VERSION_HEX < 0x02050000)
- typedef int Py_ssize_t;
- #endif
- #if defined(__MINGW32_VERSION) || (defined(__APPLE__) && __MAC_OS_X_VERSION_MIN_REQUIRED < 1070)
- size_t strnlen(char *text, size_t maxlen)
- {
- const char *last = memchr(text, '\0', maxlen);
- return last ? (size_t) (last - text) : maxlen;
- }
- #endif
- #define bytehex(x) (((x)<0xa)?('0'+(x)):('a'-0xa+(x)))
- static PyObject *tree_entry_cls;
- static PyObject *object_format_exception_cls;
- static PyObject *sha_to_pyhex(const unsigned char *sha)
- {
- char hexsha[41];
- int i;
- for (i = 0; i < 20; i++) {
- hexsha[i*2] = bytehex((sha[i] & 0xF0) >> 4);
- hexsha[i*2+1] = bytehex(sha[i] & 0x0F);
- }
- return PyString_FromStringAndSize(hexsha, 40);
- }
- static PyObject *py_parse_tree(PyObject *self, PyObject *args, PyObject *kw)
- {
- char *text, *start, *end;
- int len, namelen, strict;
- PyObject *ret, *item, *name, *py_strict = NULL;
- static char *kwlist[] = {"text", "strict", NULL};
- if (!PyArg_ParseTupleAndKeywords(args, kw, "s#|O", kwlist,
- &text, &len, &py_strict))
- return NULL;
- strict = py_strict ? PyObject_IsTrue(py_strict) : 0;
- /* TODO: currently this returns a list; if memory usage is a concern,
- * consider rewriting as a custom iterator object */
- ret = PyList_New(0);
- if (ret == NULL) {
- return NULL;
- }
- start = text;
- end = text + len;
- while (text < end) {
- long mode;
- if (strict && text[0] == '0') {
- PyErr_SetString(object_format_exception_cls,
- "Illegal leading zero on mode");
- Py_DECREF(ret);
- return NULL;
- }
- mode = strtol(text, &text, 8);
- if (*text != ' ') {
- PyErr_SetString(PyExc_ValueError, "Expected space");
- Py_DECREF(ret);
- return NULL;
- }
- text++;
- namelen = strnlen(text, len - (text - start));
- name = PyString_FromStringAndSize(text, namelen);
- if (name == NULL) {
- Py_DECREF(ret);
- return NULL;
- }
- if (text + namelen + 20 >= end) {
- PyErr_SetString(PyExc_ValueError, "SHA truncated");
- Py_DECREF(ret);
- Py_DECREF(name);
- return NULL;
- }
- item = Py_BuildValue("(NlN)", name, mode,
- sha_to_pyhex((unsigned char *)text+namelen+1));
- if (item == NULL) {
- Py_DECREF(ret);
- Py_DECREF(name);
- return NULL;
- }
- if (PyList_Append(ret, item) == -1) {
- Py_DECREF(ret);
- Py_DECREF(item);
- return NULL;
- }
- Py_DECREF(item);
- text += namelen+21;
- }
- return ret;
- }
- struct tree_item {
- const char *name;
- int mode;
- PyObject *tuple;
- };
- int cmp_tree_item(const void *_a, const void *_b)
- {
- const struct tree_item *a = _a, *b = _b;
- const char *remain_a, *remain_b;
- int ret, common;
- if (strlen(a->name) > strlen(b->name)) {
- common = strlen(b->name);
- remain_a = a->name + common;
- remain_b = (S_ISDIR(b->mode)?"/":"");
- } else if (strlen(b->name) > strlen(a->name)) {
- common = strlen(a->name);
- remain_a = (S_ISDIR(a->mode)?"/":"");
- remain_b = b->name + common;
- } else { /* strlen(a->name) == strlen(b->name) */
- common = 0;
- remain_a = a->name;
- remain_b = b->name;
- }
- ret = strncmp(a->name, b->name, common);
- if (ret != 0)
- return ret;
- return strcmp(remain_a, remain_b);
- }
- int cmp_tree_item_name_order(const void *_a, const void *_b) {
- const struct tree_item *a = _a, *b = _b;
- return strcmp(a->name, b->name);
- }
- static PyObject *py_sorted_tree_items(PyObject *self, PyObject *args)
- {
- struct tree_item *qsort_entries = NULL;
- int name_order, num_entries, n = 0, i;
- PyObject *entries, *py_name_order, *ret, *key, *value, *py_mode, *py_sha;
- Py_ssize_t pos = 0;
- int (*cmp)(const void *, const void *);
- if (!PyArg_ParseTuple(args, "OO", &entries, &py_name_order))
- goto error;
- if (!PyDict_Check(entries)) {
- PyErr_SetString(PyExc_TypeError, "Argument not a dictionary");
- goto error;
- }
- name_order = PyObject_IsTrue(py_name_order);
- if (name_order == -1)
- goto error;
- cmp = name_order ? cmp_tree_item_name_order : cmp_tree_item;
- num_entries = PyDict_Size(entries);
- if (PyErr_Occurred())
- goto error;
- qsort_entries = PyMem_New(struct tree_item, num_entries);
- if (!qsort_entries) {
- PyErr_NoMemory();
- goto error;
- }
- while (PyDict_Next(entries, &pos, &key, &value)) {
- if (!PyString_Check(key)) {
- PyErr_SetString(PyExc_TypeError, "Name is not a string");
- goto error;
- }
- if (PyTuple_Size(value) != 2) {
- PyErr_SetString(PyExc_ValueError, "Tuple has invalid size");
- goto error;
- }
- py_mode = PyTuple_GET_ITEM(value, 0);
- if (!PyInt_Check(py_mode)) {
- PyErr_SetString(PyExc_TypeError, "Mode is not an integral type");
- goto error;
- }
- py_sha = PyTuple_GET_ITEM(value, 1);
- if (!PyString_Check(py_sha)) {
- PyErr_SetString(PyExc_TypeError, "SHA is not a string");
- goto error;
- }
- qsort_entries[n].name = PyString_AS_STRING(key);
- qsort_entries[n].mode = PyInt_AS_LONG(py_mode);
- qsort_entries[n].tuple = PyObject_CallFunctionObjArgs(
- tree_entry_cls, key, py_mode, py_sha, NULL);
- if (qsort_entries[n].tuple == NULL)
- goto error;
- n++;
- }
- qsort(qsort_entries, num_entries, sizeof(struct tree_item), cmp);
- ret = PyList_New(num_entries);
- if (ret == NULL) {
- PyErr_NoMemory();
- goto error;
- }
- for (i = 0; i < num_entries; i++) {
- PyList_SET_ITEM(ret, i, qsort_entries[i].tuple);
- }
- PyMem_Free(qsort_entries);
- return ret;
- error:
- for (i = 0; i < n; i++) {
- Py_XDECREF(qsort_entries[i].tuple);
- }
- PyMem_Free(qsort_entries);
- return NULL;
- }
- static PyMethodDef py_objects_methods[] = {
- { "parse_tree", (PyCFunction)py_parse_tree, METH_VARARGS | METH_KEYWORDS,
- NULL },
- { "sorted_tree_items", py_sorted_tree_items, METH_VARARGS, NULL },
- { NULL, NULL, 0, NULL }
- };
- PyMODINIT_FUNC
- init_objects(void)
- {
- PyObject *m, *objects_mod, *errors_mod;
- m = Py_InitModule3("_objects", py_objects_methods, NULL);
- if (m == NULL)
- return;
- errors_mod = PyImport_ImportModule("dulwich.errors");
- if (errors_mod == NULL)
- return;
- object_format_exception_cls = PyObject_GetAttrString(
- errors_mod, "ObjectFormatException");
- Py_DECREF(errors_mod);
- if (object_format_exception_cls == NULL)
- return;
- /* This is a circular import but should be safe since this module is
- * imported at at the very bottom of objects.py. */
- objects_mod = PyImport_ImportModule("dulwich.objects");
- if (objects_mod == NULL)
- return;
- tree_entry_cls = PyObject_GetAttrString(objects_mod, "TreeEntry");
- Py_DECREF(objects_mod);
- if (tree_entry_cls == NULL)
- return;
- }
|