_objects.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. /*
  2. * Copyright (C) 2009 Jelmer Vernooij <jelmer@jelmer.uk>
  3. *
  4. * Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. * General Public License as public by the Free Software Foundation; version 2.0
  6. * or (at your option) any later version. You can redistribute it and/or
  7. * modify it under the terms of either of these two licenses.
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. *
  15. * You should have received a copy of the licenses; if not, see
  16. * <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. * and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. * License, Version 2.0.
  19. */
  20. #include <Python.h>
  21. #include <stdlib.h>
  22. #include <sys/stat.h>
  23. #if PY_MAJOR_VERSION >= 3
  24. #define PyInt_Check(obj) 0
  25. #define PyInt_CheckExact(obj) 0
  26. #define PyInt_AsLong PyLong_AsLong
  27. #define PyString_AS_STRING PyBytes_AS_STRING
  28. #define PyString_Check PyBytes_Check
  29. #define PyString_FromStringAndSize PyBytes_FromStringAndSize
  30. #endif
  31. #if defined(__MINGW32_VERSION) || defined(__APPLE__)
  32. size_t rep_strnlen(char *text, size_t maxlen);
  33. size_t rep_strnlen(char *text, size_t maxlen)
  34. {
  35. const char *last = memchr(text, '\0', maxlen);
  36. return last ? (size_t) (last - text) : maxlen;
  37. }
  38. #define strnlen rep_strnlen
  39. #endif
  40. #define bytehex(x) (((x)<0xa)?('0'+(x)):('a'-0xa+(x)))
  41. static PyObject *tree_entry_cls;
  42. static PyObject *object_format_exception_cls;
  43. static PyObject *sha_to_pyhex(const unsigned char *sha)
  44. {
  45. char hexsha[41];
  46. int i;
  47. for (i = 0; i < 20; i++) {
  48. hexsha[i*2] = bytehex((sha[i] & 0xF0) >> 4);
  49. hexsha[i*2+1] = bytehex(sha[i] & 0x0F);
  50. }
  51. return PyString_FromStringAndSize(hexsha, 40);
  52. }
  53. static PyObject *py_parse_tree(PyObject *self, PyObject *args, PyObject *kw)
  54. {
  55. char *text, *start, *end;
  56. int len, strict;
  57. size_t namelen;
  58. PyObject *ret, *item, *name, *sha, *py_strict = NULL;
  59. static char *kwlist[] = {"text", "strict", NULL};
  60. #if PY_MAJOR_VERSION >= 3
  61. if (!PyArg_ParseTupleAndKeywords(args, kw, "y#|O", kwlist,
  62. &text, &len, &py_strict))
  63. #else
  64. if (!PyArg_ParseTupleAndKeywords(args, kw, "s#|O", kwlist,
  65. &text, &len, &py_strict))
  66. #endif
  67. return NULL;
  68. strict = py_strict ? PyObject_IsTrue(py_strict) : 0;
  69. /* TODO: currently this returns a list; if memory usage is a concern,
  70. * consider rewriting as a custom iterator object */
  71. ret = PyList_New(0);
  72. if (ret == NULL) {
  73. return NULL;
  74. }
  75. start = text;
  76. end = text + len;
  77. while (text < end) {
  78. long mode;
  79. if (strict && text[0] == '0') {
  80. PyErr_SetString(object_format_exception_cls,
  81. "Illegal leading zero on mode");
  82. Py_DECREF(ret);
  83. return NULL;
  84. }
  85. mode = strtol(text, &text, 8);
  86. if (*text != ' ') {
  87. PyErr_SetString(PyExc_ValueError, "Expected space");
  88. Py_DECREF(ret);
  89. return NULL;
  90. }
  91. text++;
  92. namelen = strnlen(text, len - (text - start));
  93. name = PyString_FromStringAndSize(text, namelen);
  94. if (name == NULL) {
  95. Py_DECREF(ret);
  96. return NULL;
  97. }
  98. if (text + namelen + 20 >= end) {
  99. PyErr_SetString(PyExc_ValueError, "SHA truncated");
  100. Py_DECREF(ret);
  101. Py_DECREF(name);
  102. return NULL;
  103. }
  104. sha = sha_to_pyhex((unsigned char *)text+namelen+1);
  105. if (sha == NULL) {
  106. Py_DECREF(ret);
  107. Py_DECREF(name);
  108. return NULL;
  109. }
  110. item = Py_BuildValue("(NlN)", name, mode, sha);
  111. if (item == NULL) {
  112. Py_DECREF(ret);
  113. Py_DECREF(sha);
  114. Py_DECREF(name);
  115. return NULL;
  116. }
  117. if (PyList_Append(ret, item) == -1) {
  118. Py_DECREF(ret);
  119. Py_DECREF(item);
  120. return NULL;
  121. }
  122. Py_DECREF(item);
  123. text += namelen+21;
  124. }
  125. return ret;
  126. }
  127. struct tree_item {
  128. const char *name;
  129. int mode;
  130. PyObject *tuple;
  131. };
  132. int cmp_tree_item(const void *_a, const void *_b)
  133. {
  134. const struct tree_item *a = _a, *b = _b;
  135. const char *remain_a, *remain_b;
  136. int ret;
  137. size_t 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, n = 0, i;
  164. PyObject *entries, *py_name_order, *ret, *key, *value, *py_mode, *py_sha;
  165. Py_ssize_t pos = 0, num_entries;
  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