_objects.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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. #define bytehex(x) (((x)<0xa)?('0'+(x)):('a'-0xa+(x)))
  23. static PyObject *sha_to_pyhex(const unsigned char *sha)
  24. {
  25. char hexsha[41];
  26. int i;
  27. for (i = 0; i < 20; i++) {
  28. hexsha[i*2] = bytehex((sha[i] & 0xF0) >> 4);
  29. hexsha[i*2+1] = bytehex(sha[i] & 0x0F);
  30. }
  31. return PyString_FromStringAndSize(hexsha, 40);
  32. }
  33. static PyObject *py_parse_tree(PyObject *self, PyObject *args)
  34. {
  35. char *text, *start, *end;
  36. int len, namelen;
  37. PyObject *ret, *item, *name;
  38. if (!PyArg_ParseTuple(args, "s#", &text, &len))
  39. return NULL;
  40. /* TODO: currently this returns a list; if memory usage is a concern,
  41. * consider rewriting as a custom iterator object */
  42. ret = PyList_New(0);
  43. if (ret == NULL) {
  44. return NULL;
  45. }
  46. start = text;
  47. end = text + len;
  48. while (text < end) {
  49. long mode;
  50. mode = strtol(text, &text, 8);
  51. if (*text != ' ') {
  52. PyErr_SetString(PyExc_ValueError, "Expected space");
  53. Py_DECREF(ret);
  54. return NULL;
  55. }
  56. text++;
  57. namelen = strnlen(text, len - (text - start));
  58. name = PyString_FromStringAndSize(text, namelen);
  59. if (name == NULL) {
  60. Py_DECREF(ret);
  61. return NULL;
  62. }
  63. if (text + namelen + 20 >= end) {
  64. PyErr_SetString(PyExc_ValueError, "SHA truncated");
  65. Py_DECREF(ret);
  66. Py_DECREF(name);
  67. return NULL;
  68. }
  69. item = Py_BuildValue("(NlN)", name, mode,
  70. sha_to_pyhex((unsigned char *)text+namelen+1));
  71. if (item == NULL) {
  72. Py_DECREF(ret);
  73. Py_DECREF(name);
  74. return NULL;
  75. }
  76. if (PyList_Append(ret, item) == -1) {
  77. Py_DECREF(ret);
  78. Py_DECREF(item);
  79. return NULL;
  80. }
  81. Py_DECREF(item);
  82. text += namelen+21;
  83. }
  84. return ret;
  85. }
  86. struct tree_item {
  87. const char *name;
  88. int mode;
  89. PyObject *tuple;
  90. };
  91. int cmp_tree_item(const void *_a, const void *_b)
  92. {
  93. const struct tree_item *a = _a, *b = _b;
  94. const char *remain_a, *remain_b;
  95. int ret, common;
  96. if (strlen(a->name) > strlen(b->name)) {
  97. common = strlen(b->name);
  98. remain_a = a->name + common;
  99. remain_b = (S_ISDIR(b->mode)?"/":"");
  100. } else if (strlen(b->name) > strlen(a->name)) {
  101. common = strlen(a->name);
  102. remain_a = (S_ISDIR(a->mode)?"/":"");
  103. remain_b = b->name + common;
  104. } else { /* strlen(a->name) == strlen(b->name) */
  105. common = 0;
  106. remain_a = a->name;
  107. remain_b = b->name;
  108. }
  109. ret = strncmp(a->name, b->name, common);
  110. if (ret != 0)
  111. return ret;
  112. return strcmp(remain_a, remain_b);
  113. }
  114. static PyObject *py_sorted_tree_items(PyObject *self, PyObject *entries)
  115. {
  116. struct tree_item *qsort_entries;
  117. int num, i;
  118. PyObject *ret;
  119. Py_ssize_t pos = 0;
  120. PyObject *key, *value;
  121. if (!PyDict_Check(entries)) {
  122. PyErr_SetString(PyExc_TypeError, "Argument not a dictionary");
  123. return NULL;
  124. }
  125. num = PyDict_Size(entries);
  126. qsort_entries = malloc(num * sizeof(struct tree_item));
  127. if (qsort_entries == NULL) {
  128. PyErr_NoMemory();
  129. return NULL;
  130. }
  131. i = 0;
  132. while (PyDict_Next(entries, &pos, &key, &value)) {
  133. PyObject *py_mode, *py_sha;
  134. if (PyTuple_Size(value) != 2) {
  135. PyErr_SetString(PyExc_ValueError, "Tuple has invalid size");
  136. free(qsort_entries);
  137. return NULL;
  138. }
  139. py_mode = PyTuple_GET_ITEM(value, 0);
  140. py_sha = PyTuple_GET_ITEM(value, 1);
  141. qsort_entries[i].tuple = Py_BuildValue("(OOO)", key, py_mode, py_sha);
  142. if (!PyString_CheckExact(key)) {
  143. PyErr_SetString(PyExc_TypeError, "Name is not a string");
  144. free(qsort_entries);
  145. return NULL;
  146. }
  147. qsort_entries[i].name = PyString_AS_STRING(key);
  148. if (!PyInt_CheckExact(py_mode)) {
  149. PyErr_SetString(PyExc_TypeError, "Mode is not an int");
  150. free(qsort_entries);
  151. return NULL;
  152. }
  153. qsort_entries[i].mode = PyInt_AS_LONG(py_mode);
  154. i++;
  155. }
  156. qsort(qsort_entries, num, sizeof(struct tree_item), cmp_tree_item);
  157. ret = PyList_New(num);
  158. if (ret == NULL) {
  159. free(qsort_entries);
  160. PyErr_NoMemory();
  161. return NULL;
  162. }
  163. for (i = 0; i < num; i++) {
  164. PyList_SET_ITEM(ret, i, qsort_entries[i].tuple);
  165. }
  166. free(qsort_entries);
  167. return ret;
  168. }
  169. static PyMethodDef py_objects_methods[] = {
  170. { "parse_tree", (PyCFunction)py_parse_tree, METH_VARARGS, NULL },
  171. { "sorted_tree_items", (PyCFunction)py_sorted_tree_items, METH_O, NULL },
  172. { NULL, NULL, 0, NULL }
  173. };
  174. void init_objects(void)
  175. {
  176. PyObject *m;
  177. m = Py_InitModule3("_objects", py_objects_methods, NULL);
  178. if (m == NULL)
  179. return;
  180. }