_objects.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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 rep_strnlen(char *text, size_t maxlen);
  27. size_t rep_strnlen(char *text, size_t maxlen)
  28. {
  29. const char *last = memchr(text, '\0', maxlen);
  30. return last ? (size_t) (last - text) : maxlen;
  31. }
  32. #define strnlen rep_strnlen
  33. #endif
  34. #define bytehex(x) (((x)<0xa)?('0'+(x)):('a'-0xa+(x)))
  35. static PyObject *tree_entry_cls;
  36. static PyObject *object_format_exception_cls;
  37. static PyObject *sha_to_pyhex(const unsigned char *sha)
  38. {
  39. char hexsha[41];
  40. int i;
  41. for (i = 0; i < 20; i++) {
  42. hexsha[i*2] = bytehex((sha[i] & 0xF0) >> 4);
  43. hexsha[i*2+1] = bytehex(sha[i] & 0x0F);
  44. }
  45. return PyString_FromStringAndSize(hexsha, 40);
  46. }
  47. static PyObject *py_parse_tree(PyObject *self, PyObject *args, PyObject *kw)
  48. {
  49. char *text, *start, *end;
  50. int len, namelen, strict;
  51. PyObject *ret, *item, *name, *py_strict = NULL;
  52. static char *kwlist[] = {"text", "strict", NULL};
  53. if (!PyArg_ParseTupleAndKeywords(args, kw, "s#|O", kwlist,
  54. &text, &len, &py_strict))
  55. return NULL;
  56. strict = py_strict ? PyObject_IsTrue(py_strict) : 0;
  57. /* TODO: currently this returns a list; if memory usage is a concern,
  58. * consider rewriting as a custom iterator object */
  59. ret = PyList_New(0);
  60. if (ret == NULL) {
  61. return NULL;
  62. }
  63. start = text;
  64. end = text + len;
  65. while (text < end) {
  66. long mode;
  67. if (strict && text[0] == '0') {
  68. PyErr_SetString(object_format_exception_cls,
  69. "Illegal leading zero on mode");
  70. Py_DECREF(ret);
  71. return NULL;
  72. }
  73. mode = strtol(text, &text, 8);
  74. if (*text != ' ') {
  75. PyErr_SetString(PyExc_ValueError, "Expected space");
  76. Py_DECREF(ret);
  77. return NULL;
  78. }
  79. text++;
  80. namelen = strnlen(text, len - (text - start));
  81. name = PyString_FromStringAndSize(text, namelen);
  82. if (name == NULL) {
  83. Py_DECREF(ret);
  84. return NULL;
  85. }
  86. if (text + namelen + 20 >= end) {
  87. PyErr_SetString(PyExc_ValueError, "SHA truncated");
  88. Py_DECREF(ret);
  89. Py_DECREF(name);
  90. return NULL;
  91. }
  92. item = Py_BuildValue("(NlN)", name, mode,
  93. sha_to_pyhex((unsigned char *)text+namelen+1));
  94. if (item == NULL) {
  95. Py_DECREF(ret);
  96. Py_DECREF(name);
  97. return NULL;
  98. }
  99. if (PyList_Append(ret, item) == -1) {
  100. Py_DECREF(ret);
  101. Py_DECREF(item);
  102. return NULL;
  103. }
  104. Py_DECREF(item);
  105. text += namelen+21;
  106. }
  107. return ret;
  108. }
  109. struct tree_item {
  110. const char *name;
  111. int mode;
  112. PyObject *tuple;
  113. };
  114. int cmp_tree_item(const void *_a, const void *_b)
  115. {
  116. const struct tree_item *a = _a, *b = _b;
  117. const char *remain_a, *remain_b;
  118. int ret, common;
  119. if (strlen(a->name) > strlen(b->name)) {
  120. common = strlen(b->name);
  121. remain_a = a->name + common;
  122. remain_b = (S_ISDIR(b->mode)?"/":"");
  123. } else if (strlen(b->name) > strlen(a->name)) {
  124. common = strlen(a->name);
  125. remain_a = (S_ISDIR(a->mode)?"/":"");
  126. remain_b = b->name + common;
  127. } else { /* strlen(a->name) == strlen(b->name) */
  128. common = 0;
  129. remain_a = a->name;
  130. remain_b = b->name;
  131. }
  132. ret = strncmp(a->name, b->name, common);
  133. if (ret != 0)
  134. return ret;
  135. return strcmp(remain_a, remain_b);
  136. }
  137. int cmp_tree_item_name_order(const void *_a, const void *_b) {
  138. const struct tree_item *a = _a, *b = _b;
  139. return strcmp(a->name, b->name);
  140. }
  141. static PyObject *py_sorted_tree_items(PyObject *self, PyObject *args)
  142. {
  143. struct tree_item *qsort_entries = NULL;
  144. int name_order, num_entries, n = 0, i;
  145. PyObject *entries, *py_name_order, *ret, *key, *value, *py_mode, *py_sha;
  146. Py_ssize_t pos = 0;
  147. int (*cmp)(const void *, const void *);
  148. if (!PyArg_ParseTuple(args, "OO", &entries, &py_name_order))
  149. goto error;
  150. if (!PyDict_Check(entries)) {
  151. PyErr_SetString(PyExc_TypeError, "Argument not a dictionary");
  152. goto error;
  153. }
  154. name_order = PyObject_IsTrue(py_name_order);
  155. if (name_order == -1)
  156. goto error;
  157. cmp = name_order ? cmp_tree_item_name_order : cmp_tree_item;
  158. num_entries = PyDict_Size(entries);
  159. if (PyErr_Occurred())
  160. goto error;
  161. qsort_entries = PyMem_New(struct tree_item, num_entries);
  162. if (!qsort_entries) {
  163. PyErr_NoMemory();
  164. goto error;
  165. }
  166. while (PyDict_Next(entries, &pos, &key, &value)) {
  167. if (!PyString_Check(key)) {
  168. PyErr_SetString(PyExc_TypeError, "Name is not a string");
  169. goto error;
  170. }
  171. if (PyTuple_Size(value) != 2) {
  172. PyErr_SetString(PyExc_ValueError, "Tuple has invalid size");
  173. goto error;
  174. }
  175. py_mode = PyTuple_GET_ITEM(value, 0);
  176. if (!PyInt_Check(py_mode)) {
  177. PyErr_SetString(PyExc_TypeError, "Mode is not an integral type");
  178. goto error;
  179. }
  180. py_sha = PyTuple_GET_ITEM(value, 1);
  181. if (!PyString_Check(py_sha)) {
  182. PyErr_SetString(PyExc_TypeError, "SHA is not a string");
  183. goto error;
  184. }
  185. qsort_entries[n].name = PyString_AS_STRING(key);
  186. qsort_entries[n].mode = PyInt_AS_LONG(py_mode);
  187. qsort_entries[n].tuple = PyObject_CallFunctionObjArgs(
  188. tree_entry_cls, key, py_mode, py_sha, NULL);
  189. if (qsort_entries[n].tuple == NULL)
  190. goto error;
  191. n++;
  192. }
  193. qsort(qsort_entries, num_entries, sizeof(struct tree_item), cmp);
  194. ret = PyList_New(num_entries);
  195. if (ret == NULL) {
  196. PyErr_NoMemory();
  197. goto error;
  198. }
  199. for (i = 0; i < num_entries; i++) {
  200. PyList_SET_ITEM(ret, i, qsort_entries[i].tuple);
  201. }
  202. PyMem_Free(qsort_entries);
  203. return ret;
  204. error:
  205. for (i = 0; i < n; i++) {
  206. Py_XDECREF(qsort_entries[i].tuple);
  207. }
  208. PyMem_Free(qsort_entries);
  209. return NULL;
  210. }
  211. static PyMethodDef py_objects_methods[] = {
  212. { "parse_tree", (PyCFunction)py_parse_tree, METH_VARARGS | METH_KEYWORDS,
  213. NULL },
  214. { "sorted_tree_items", py_sorted_tree_items, METH_VARARGS, NULL },
  215. { NULL, NULL, 0, NULL }
  216. };
  217. PyMODINIT_FUNC
  218. init_objects(void)
  219. {
  220. PyObject *m, *objects_mod, *errors_mod;
  221. m = Py_InitModule3("_objects", py_objects_methods, NULL);
  222. if (m == NULL)
  223. return;
  224. errors_mod = PyImport_ImportModule("dulwich.errors");
  225. if (errors_mod == NULL)
  226. return;
  227. object_format_exception_cls = PyObject_GetAttrString(
  228. errors_mod, "ObjectFormatException");
  229. Py_DECREF(errors_mod);
  230. if (object_format_exception_cls == NULL)
  231. return;
  232. /* This is a circular import but should be safe since this module is
  233. * imported at at the very bottom of objects.py. */
  234. objects_mod = PyImport_ImportModule("dulwich.objects");
  235. if (objects_mod == NULL)
  236. return;
  237. tree_entry_cls = PyObject_GetAttrString(objects_mod, "TreeEntry");
  238. Py_DECREF(objects_mod);
  239. if (tree_entry_cls == NULL)
  240. return;
  241. }