_objects.c 8.3 KB

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