##// END OF EJS Templates
index: make node tree a Python object...
Martin von Zweigbergk -
r39252:b85b377e default
parent child Browse files
Show More
@@ -713,7 +713,7 b' void dirs_module_init(PyObject *mod);'
713 713 void manifest_module_init(PyObject *mod);
714 714 void revlog_module_init(PyObject *mod);
715 715
716 static const int version = 7;
716 static const int version = 8;
717 717
718 718 static void module_init(PyObject *mod)
719 719 {
@@ -42,6 +42,7 b' typedef struct {'
42 42 * Zero is empty
43 43 */
44 44 typedef struct {
45 PyObject_HEAD
45 46 indexObject *index;
46 47 nodetreenode *nodes;
47 48 unsigned length; /* # nodes in use */
@@ -1064,7 +1065,11 b' static int nt_delete_node(nodetree *self'
1064 1065
1065 1066 static int nt_init(nodetree *self, indexObject *index, unsigned capacity)
1066 1067 {
1068 /* Initialize before argument-checking to avoid nt_dealloc() crash. */
1069 self->nodes = NULL;
1070
1067 1071 self->index = index;
1072 Py_INCREF(index);
1068 1073 /* The input capacity is in terms of revisions, while the field is in
1069 1074 * terms of nodetree nodes. */
1070 1075 self->capacity = (capacity < 4 ? 4 : capacity / 2);
@@ -1083,6 +1088,17 b' static int nt_init(nodetree *self, index'
1083 1088 return 0;
1084 1089 }
1085 1090
1091 static PyTypeObject indexType;
1092
1093 static int nt_init_py(nodetree *self, PyObject *args)
1094 {
1095 PyObject *index;
1096 unsigned capacity;
1097 if (!PyArg_ParseTuple(args, "O!I", &indexType, &index, &capacity))
1098 return -1;
1099 return nt_init(self, (indexObject*)index, capacity);
1100 }
1101
1086 1102 static int nt_partialmatch(nodetree *self, const char *node,
1087 1103 Py_ssize_t nodelen)
1088 1104 {
@@ -1135,21 +1151,68 b' static int nt_shortest(nodetree *self, c'
1135 1151 return -3;
1136 1152 }
1137 1153
1154 static void nt_dealloc(nodetree *self)
1155 {
1156 Py_XDECREF(self->index);
1157 free(self->nodes);
1158 self->nodes = NULL;
1159 PyObject_Del(self);
1160 }
1161
1162 static PyTypeObject nodetreeType = {
1163 PyVarObject_HEAD_INIT(NULL, 0) /* header */
1164 "parsers.nodetree", /* tp_name */
1165 sizeof(nodetree) , /* tp_basicsize */
1166 0, /* tp_itemsize */
1167 (destructor)nt_dealloc, /* tp_dealloc */
1168 0, /* tp_print */
1169 0, /* tp_getattr */
1170 0, /* tp_setattr */
1171 0, /* tp_compare */
1172 0, /* tp_repr */
1173 0, /* tp_as_number */
1174 0, /* tp_as_sequence */
1175 0, /* tp_as_mapping */
1176 0, /* tp_hash */
1177 0, /* tp_call */
1178 0, /* tp_str */
1179 0, /* tp_getattro */
1180 0, /* tp_setattro */
1181 0, /* tp_as_buffer */
1182 Py_TPFLAGS_DEFAULT, /* tp_flags */
1183 "nodetree", /* tp_doc */
1184 0, /* tp_traverse */
1185 0, /* tp_clear */
1186 0, /* tp_richcompare */
1187 0, /* tp_weaklistoffset */
1188 0, /* tp_iter */
1189 0, /* tp_iternext */
1190 0, /* tp_methods */
1191 0, /* tp_members */
1192 0, /* tp_getset */
1193 0, /* tp_base */
1194 0, /* tp_dict */
1195 0, /* tp_descr_get */
1196 0, /* tp_descr_set */
1197 0, /* tp_dictoffset */
1198 (initproc)nt_init_py, /* tp_init */
1199 0, /* tp_alloc */
1200 };
1201
1138 1202 static int index_init_nt(indexObject *self)
1139 1203 {
1140 1204 if (self->nt == NULL) {
1141 self->nt = PyMem_Malloc(sizeof(nodetree));
1205 self->nt = PyObject_New(nodetree, &nodetreeType);
1142 1206 if (self->nt == NULL) {
1143 PyErr_NoMemory();
1144 1207 return -1;
1145 1208 }
1146 1209 if (nt_init(self->nt, self, self->raw_length) == -1) {
1147 PyMem_Free(self->nt);
1210 nt_dealloc(self->nt);
1148 1211 self->nt = NULL;
1149 1212 return -1;
1150 1213 }
1151 1214 if (nt_insert(self->nt, nullid, -1) == -1) {
1152 PyMem_Free(self->nt);
1215 nt_dealloc(self->nt);
1153 1216 self->nt = NULL;
1154 1217 return -1;
1155 1218 }
@@ -2009,8 +2072,7 b' static void _index_clearcaches(indexObje'
2009 2072 self->offsets = NULL;
2010 2073 }
2011 2074 if (self->nt != NULL) {
2012 free(self->nt->nodes);
2013 PyMem_Free(self->nt);
2075 nt_dealloc(self->nt);
2014 2076 }
2015 2077 self->nt = NULL;
2016 2078 Py_CLEAR(self->headrevs);
@@ -2034,6 +2096,7 b' static void index_dealloc(indexObject *s'
2034 2096 }
2035 2097 Py_XDECREF(self->data);
2036 2098 Py_XDECREF(self->added);
2099 Py_XDECREF(self->nt);
2037 2100 PyObject_Del(self);
2038 2101 }
2039 2102
@@ -2183,6 +2246,12 b' void revlog_module_init(PyObject *mod)'
2183 2246 Py_INCREF(&indexType);
2184 2247 PyModule_AddObject(mod, "index", (PyObject *)&indexType);
2185 2248
2249 nodetreeType.tp_new = PyType_GenericNew;
2250 if (PyType_Ready(&nodetreeType) < 0)
2251 return;
2252 Py_INCREF(&nodetreeType);
2253 PyModule_AddObject(mod, "nodetree", (PyObject *)&nodetreeType);
2254
2186 2255 nullentry = Py_BuildValue(PY23("iiiiiiis#", "iiiiiiiy#"), 0, 0, 0,
2187 2256 -1, -1, -1, -1, nullid, 20);
2188 2257 if (nullentry)
@@ -69,7 +69,7 b' def _importfrom(pkgname, modname):'
69 69 (r'cext', r'bdiff'): 3,
70 70 (r'cext', r'mpatch'): 1,
71 71 (r'cext', r'osutil'): 4,
72 (r'cext', r'parsers'): 7,
72 (r'cext', r'parsers'): 8,
73 73 }
74 74
75 75 # map import request to other package or module
General Comments 0
You need to be logged in to leave comments. Login now