_objects.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. /*
  2. * Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; version 2
  7. * of the License or (at your option) a later version of the License.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  17. * MA 02110-1301, USA.
  18. */
  19. #include <Python.h>
  20. #include <stdlib.h>
  21. #include <sys/stat.h>
  22. #if (PY_VERSION_HEX < 0x02050000)
  23. typedef int Py_ssize_t;
  24. #endif
  25. #if defined(__MINGW32_VERSION) || defined(__APPLE__)
  26. size_t strnlen(char *text, size_t maxlen)
  27. {
  28. const char *last = memchr(text, '\0', maxlen);
  29. return last ? (size_t) (last - text) : maxlen;
  30. }
  31. #endif
  32. #define bytehex(x) (((x)<0xa)?('0'+(x)):('a'-0xa+(x)))
  33. static PyObject *tree_entry_cls;
  34. static PyObject *object_format_exception_cls;
  35. static PyObject *sha_to_pyhex(const unsigned char *sha)
  36. {
  37. char hexsha[41];
  38. int i;
  39. for (i = 0; i < 20; i++) {
  40. hexsha[i*2] = bytehex((sha[i] & 0xF0) >> 4);
  41. hexsha[i*2+1] = bytehex(sha[i] & 0x0F);
  42. }
  43. return PyString_FromStringAndSize(hexsha, 40);
  44. }
  45. static PyObject *py_parse_tree(PyObject *self, PyObject *args, PyObject *kw)
  46. {
  47. char *text, *start, *end;
  48. int len, namelen, strict;
  49. PyObject *ret, *item, *name, *py_strict = NULL;
  50. static char *kwlist[] = {"text", "strict", NULL};
  51. if (!PyArg_ParseTupleAndKeywords(args, kw, "s#|O", kwlist,
  52. &text, &len, &py_strict))
  53. return NULL;
  54. strict = py_strict ? PyObject_IsTrue(py_strict) : 0;
  55. /* TODO: currently this returns a list; if memory usage is a concern,
  56. * consider rewriting as a custom iterator object */
  57. ret = PyList_New(0);
  58. if (ret == NULL) {
  59. return NULL;
  60. }
  61. start = text;
  62. end = text + len;
  63. while (text < end) {
  64. long mode;
  65. if (strict && text[0] == '0') {
  66. PyErr_SetString(object_format_exception_cls,
  67. "Illegal leading zero on mode");
  68. Py_DECREF(ret);
  69. return NULL;
  70. }
  71. mode = strtol(text, &text, 8);
  72. if (*text != ' ') {
  73. PyErr_SetString(PyExc_ValueError, "Expected space");
  74. Py_DECREF(ret);
  75. return NULL;
  76. }
  77. text++;
  78. namelen = strnlen(text, len - (text - start));
  79. name = PyString_FromStringAndSize(text, namelen);
  80. if (name == NULL) {
  81. Py_DECREF(ret);
  82. return NULL;
  83. }
  84. if (text + namelen + 20 >= end) {
  85. PyErr_SetString(PyExc_ValueError, "SHA truncated");
  86. Py_DECREF(ret);
  87. Py_DECREF(name);
  88. return NULL;
  89. }
  90. item = Py_BuildValue("(NlN)", name, mode,
  91. sha_to_pyhex((unsigned char *)text+namelen+1));
  92. if (item == NULL) {
  93. Py_DECREF(ret);
  94. Py_DECREF(name);
  95. return NULL;
  96. }
  97. if (PyList_Append(ret, item) == -1) {
  98. Py_DECREF(ret);
  99. Py_DECREF(item);
  100. return NULL;
  101. }
  102. Py_DECREF(item);
  103. text += namelen+21;
  104. }
  105. return ret;
  106. }
  107. struct tree_item {
  108. const char *name;
  109. int mode;
  110. PyObject *tuple;
  111. };
  112. int cmp_tree_item(const void *_a, const void *_b)
  113. {
  114. const struct tree_item *a = _a, *b = _b;
  115. const char *remain_a, *remain_b;
  116. int ret, common;
  117. if (strlen(a->name) > strlen(b->name)) {
  118. common = strlen(b->name);
  119. remain_a = a->name + common;
  120. remain_b = (S_ISDIR(b->mode)?"/":"");
  121. } else if (strlen(b->name) > strlen(a->name)) {
  122. common = strlen(a->name);
  123. remain_a = (S_ISDIR(a->mode)?"/":"");
  124. remain_b = b->name + common;
  125. } else { /* strlen(a->name) == strlen(b->name) */
  126. common = 0;
  127. remain_a = a->name;
  128. remain_b = b->name;
  129. }
  130. ret = strncmp(a->name, b->name, common);
  131. if (ret != 0)
  132. return ret;
  133. return strcmp(remain_a, remain_b);
  134. }
  135. int cmp_tree_item_name_order(const void *_a, const void *_b) {
  136. const struct tree_item *a = _a, *b = _b;
  137. return strcmp(a->name, b->name);
  138. }
  139. static PyObject *py_sorted_tree_items(PyObject *self, PyObject *args)
  140. {
  141. struct tree_item *qsort_entries = NULL;
  142. int name_order, num_entries, n = 0, i;
  143. PyObject *entries, *py_name_order, *ret, *key, *value, *py_mode, *py_sha;
  144. Py_ssize_t pos = 0;
  145. int (*cmp)(const void *, const void *);
  146. if (!PyArg_ParseTuple(args, "OO", &entries, &py_name_order))
  147. goto error;
  148. if (!PyDict_Check(entries)) {
  149. PyErr_SetString(PyExc_TypeError, "Argument not a dictionary");
  150. goto error;
  151. }
  152. name_order = PyObject_IsTrue(py_name_order);
  153. if (name_order == -1)
  154. goto error;
  155. cmp = name_order ? cmp_tree_item_name_order : cmp_tree_item;
  156. num_entries = PyDict_Size(entries);
  157. if (PyErr_Occurred())
  158. goto error;
  159. qsort_entries = PyMem_New(struct tree_item, num_entries);
  160. if (!qsort_entries) {
  161. PyErr_NoMemory();
  162. goto error;
  163. }
  164. while (PyDict_Next(entries, &pos, &key, &value)) {
  165. if (!PyString_Check(key)) {
  166. PyErr_SetString(PyExc_TypeError, "Name is not a string");
  167. goto error;
  168. }
  169. if (PyTuple_Size(value) != 2) {
  170. PyErr_SetString(PyExc_ValueError, "Tuple has invalid size");
  171. goto error;
  172. }
  173. py_mode = PyTuple_GET_ITEM(value, 0);
  174. if (!PyInt_Check(py_mode)) {
  175. PyErr_SetString(PyExc_TypeError, "Mode is not an integral type");
  176. goto error;
  177. }
  178. py_sha = PyTuple_GET_ITEM(value, 1);
  179. if (!PyString_Check(py_sha)) {
  180. PyErr_SetString(PyExc_TypeError, "SHA is not a string");
  181. goto error;
  182. }
  183. qsort_entries[n].name = PyString_AS_STRING(key);
  184. qsort_entries[n].mode = PyInt_AS_LONG(py_mode);
  185. qsort_entries[n].tuple = PyObject_CallFunctionObjArgs(
  186. tree_entry_cls, key, py_mode, py_sha, NULL);
  187. if (qsort_entries[n].tuple == NULL)
  188. goto error;
  189. n++;
  190. }
  191. qsort(qsort_entries, num_entries, sizeof(struct tree_item), cmp);
  192. ret = PyList_New(num_entries);
  193. if (ret == NULL) {
  194. PyErr_NoMemory();
  195. goto error;
  196. }
  197. for (i = 0; i < num_entries; i++) {
  198. PyList_SET_ITEM(ret, i, qsort_entries[i].tuple);
  199. }
  200. PyMem_Free(qsort_entries);
  201. return ret;
  202. error:
  203. for (i = 0; i < n; i++) {
  204. Py_XDECREF(qsort_entries[i].tuple);
  205. }
  206. PyMem_Free(qsort_entries);
  207. return NULL;
  208. }
  209. static PyMethodDef py_objects_methods[] = {
  210. { "parse_tree", (PyCFunction)py_parse_tree, METH_VARARGS | METH_KEYWORDS,
  211. NULL },
  212. { "sorted_tree_items", py_sorted_tree_items, METH_VARARGS, NULL },
  213. { NULL, NULL, 0, NULL }
  214. };
  215. PyMODINIT_FUNC
  216. init_objects(void)
  217. {
  218. PyObject *m, *objects_mod, *errors_mod;
  219. m = Py_InitModule3("_objects", py_objects_methods, NULL);
  220. if (m == NULL)
  221. return;
  222. errors_mod = PyImport_ImportModule("dulwich.errors");
  223. if (errors_mod == NULL)
  224. return;
  225. object_format_exception_cls = PyObject_GetAttrString(
  226. errors_mod, "ObjectFormatException");
  227. Py_DECREF(errors_mod);
  228. if (object_format_exception_cls == NULL)
  229. return;
  230. /* This is a circular import but should be safe since this module is
  231. * imported at at the very bottom of objects.py. */
  232. objects_mod = PyImport_ImportModule("dulwich.objects");
  233. if (objects_mod == NULL)
  234. return;
  235. tree_entry_cls = PyObject_GetAttrString(objects_mod, "TreeEntry");
  236. Py_DECREF(objects_mod);
  237. if (tree_entry_cls == NULL)
  238. return;
  239. }