Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * |
| 5 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 6 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 7 | * See README.txt for an overview of the Vim source code. |
| 8 | */ |
| 9 | /* |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 10 | * Python extensions by Paul Moore, David Leonard, Roland Puntaier, Nikolay |
| 11 | * Pavlov. |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 12 | * |
| 13 | * Common code for if_python.c and if_python3.c. |
| 14 | */ |
| 15 | |
Bram Moolenaar | c1a995d | 2012-08-08 16:05:07 +0200 | [diff] [blame] | 16 | #if PY_VERSION_HEX < 0x02050000 |
| 17 | typedef int Py_ssize_t; /* Python 2.4 and earlier don't have this type. */ |
| 18 | #endif |
| 19 | |
Bram Moolenaar | 91805fc | 2011-06-26 04:01:44 +0200 | [diff] [blame] | 20 | #ifdef FEAT_MBYTE |
| 21 | # define ENC_OPT p_enc |
| 22 | #else |
| 23 | # define ENC_OPT "latin1" |
| 24 | #endif |
Bram Moolenaar | d620aa9 | 2013-05-17 16:40:06 +0200 | [diff] [blame] | 25 | #define DOPY_FUNC "_vim_pydo" |
Bram Moolenaar | 91805fc | 2011-06-26 04:01:44 +0200 | [diff] [blame] | 26 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 27 | #define PyErr_SetVim(str) PyErr_SetString(VimError, str) |
| 28 | |
| 29 | #define INVALID_BUFFER_VALUE ((buf_T *)(-1)) |
| 30 | #define INVALID_WINDOW_VALUE ((win_T *)(-1)) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 31 | #define INVALID_TABPAGE_VALUE ((tabpage_T *)(-1)) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 32 | |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 33 | #define DICTKEY_DECL \ |
| 34 | PyObject *dictkey_todecref; |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 35 | #define DICTKEY_CHECK_EMPTY(err) \ |
| 36 | if (*key == NUL) \ |
| 37 | { \ |
| 38 | PyErr_SetString(PyExc_ValueError, _("empty keys are not allowed")); \ |
| 39 | return err; \ |
| 40 | } |
| 41 | #define DICTKEY_SET_KEY (key = StringToChars(keyObject, &dictkey_todecref)) |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 42 | #define DICTKEY_GET(err, decref) \ |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 43 | if (!DICTKEY_SET_KEY) \ |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 44 | { \ |
| 45 | if (decref) \ |
| 46 | { \ |
| 47 | Py_DECREF(keyObject); \ |
| 48 | } \ |
Bram Moolenaar | c37b6ec | 2013-05-29 22:43:37 +0200 | [diff] [blame] | 49 | return err; \ |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 50 | } \ |
| 51 | if (decref && !dictkey_todecref) \ |
| 52 | dictkey_todecref = keyObject; \ |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 53 | DICTKEY_CHECK_EMPTY(err) |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 54 | #define DICTKEY_UNREF \ |
| 55 | Py_XDECREF(dictkey_todecref); |
| 56 | |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 57 | typedef void (*rangeinitializer)(void *); |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 58 | typedef void (*runner)(const char *, void * |
| 59 | #ifdef PY_CAN_RECURSE |
| 60 | , PyGILState_STATE * |
| 61 | #endif |
| 62 | ); |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 63 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 64 | static int ConvertFromPyObject(PyObject *, typval_T *); |
| 65 | static int _ConvertFromPyObject(PyObject *, typval_T *, PyObject *); |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 66 | static PyObject *WindowNew(win_T *, tabpage_T *); |
| 67 | static PyObject *BufferNew (buf_T *); |
| 68 | static PyObject *LineToString(const char *); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 69 | |
| 70 | static PyInt RangeStart; |
| 71 | static PyInt RangeEnd; |
| 72 | |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 73 | static PyObject *globals; |
| 74 | |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 75 | /* |
| 76 | * obtain a lock on the Vim data structures |
| 77 | */ |
| 78 | static void |
| 79 | Python_Lock_Vim(void) |
| 80 | { |
| 81 | } |
| 82 | |
| 83 | /* |
| 84 | * release a lock on the Vim data structures |
| 85 | */ |
| 86 | static void |
| 87 | Python_Release_Vim(void) |
| 88 | { |
| 89 | } |
| 90 | |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 91 | /* |
| 92 | * The "todecref" argument holds a pointer to PyObject * that must be |
| 93 | * DECREF'ed after returned char_u * is no longer needed or NULL if all what |
| 94 | * was needed to generate returned value is object. |
| 95 | * |
| 96 | * Use Py_XDECREF to decrement reference count. |
| 97 | */ |
| 98 | static char_u * |
| 99 | StringToChars(PyObject *object, PyObject **todecref) |
| 100 | { |
| 101 | char_u *p; |
| 102 | PyObject *bytes = NULL; |
| 103 | |
| 104 | if (PyBytes_Check(object)) |
| 105 | { |
| 106 | |
| 107 | if (PyString_AsStringAndSize(object, (char **) &p, NULL) == -1) |
| 108 | return NULL; |
| 109 | if (p == NULL) |
| 110 | return NULL; |
| 111 | |
| 112 | *todecref = NULL; |
| 113 | } |
| 114 | else if (PyUnicode_Check(object)) |
| 115 | { |
| 116 | bytes = PyUnicode_AsEncodedString(object, (char *)ENC_OPT, NULL); |
| 117 | if (bytes == NULL) |
| 118 | return NULL; |
| 119 | |
| 120 | if(PyString_AsStringAndSize(bytes, (char **) &p, NULL) == -1) |
| 121 | return NULL; |
| 122 | if (p == NULL) |
| 123 | return NULL; |
| 124 | |
| 125 | *todecref = bytes; |
| 126 | } |
| 127 | else |
| 128 | { |
| 129 | PyErr_SetString(PyExc_TypeError, _("object must be string")); |
| 130 | return NULL; |
| 131 | } |
| 132 | |
| 133 | return (char_u *) p; |
| 134 | } |
| 135 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 136 | static int |
| 137 | add_string(PyObject *list, char *s) |
| 138 | { |
| 139 | PyObject *string; |
| 140 | |
| 141 | if (!(string = PyString_FromString(s))) |
| 142 | return -1; |
| 143 | if (PyList_Append(list, string)) |
| 144 | { |
| 145 | Py_DECREF(string); |
| 146 | return -1; |
| 147 | } |
| 148 | |
| 149 | Py_DECREF(string); |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | static PyObject * |
| 154 | ObjectDir(PyObject *self, char **attributes) |
| 155 | { |
| 156 | PyMethodDef *method; |
| 157 | char **attr; |
| 158 | PyObject *r; |
| 159 | |
| 160 | if (!(r = PyList_New(0))) |
| 161 | return NULL; |
| 162 | |
| 163 | if (self) |
| 164 | for (method = self->ob_type->tp_methods ; method->ml_name != NULL ; ++method) |
| 165 | if (add_string(r, (char *) method->ml_name)) |
| 166 | { |
| 167 | Py_DECREF(r); |
| 168 | return NULL; |
| 169 | } |
| 170 | |
| 171 | for (attr = attributes ; *attr ; ++attr) |
| 172 | if (add_string(r, *attr)) |
| 173 | { |
| 174 | Py_DECREF(r); |
| 175 | return NULL; |
| 176 | } |
| 177 | |
| 178 | #if PY_MAJOR_VERSION < 3 |
| 179 | if (add_string(r, "__members__")) |
| 180 | { |
| 181 | Py_DECREF(r); |
| 182 | return NULL; |
| 183 | } |
| 184 | #endif |
| 185 | |
| 186 | return r; |
| 187 | } |
| 188 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 189 | /* Output buffer management |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 190 | */ |
| 191 | |
Bram Moolenaar | 2eea198 | 2010-09-21 16:49:37 +0200 | [diff] [blame] | 192 | /* Function to write a line, points to either msg() or emsg(). */ |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 193 | typedef void (*writefn)(char_u *); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 194 | |
| 195 | static PyTypeObject OutputType; |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 196 | |
| 197 | typedef struct |
| 198 | { |
| 199 | PyObject_HEAD |
| 200 | long softspace; |
| 201 | long error; |
| 202 | } OutputObject; |
| 203 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 204 | static char *OutputAttrs[] = { |
| 205 | "softspace", |
| 206 | NULL |
| 207 | }; |
| 208 | |
| 209 | static PyObject * |
| 210 | OutputDir(PyObject *self) |
| 211 | { |
| 212 | return ObjectDir(self, OutputAttrs); |
| 213 | } |
| 214 | |
Bram Moolenaar | 7704565 | 2012-09-21 13:46:06 +0200 | [diff] [blame] | 215 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 216 | OutputSetattr(OutputObject *self, char *name, PyObject *val) |
Bram Moolenaar | 7704565 | 2012-09-21 13:46:06 +0200 | [diff] [blame] | 217 | { |
| 218 | if (val == NULL) |
| 219 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 220 | PyErr_SetString(PyExc_AttributeError, |
| 221 | _("can't delete OutputObject attributes")); |
Bram Moolenaar | 7704565 | 2012-09-21 13:46:06 +0200 | [diff] [blame] | 222 | return -1; |
| 223 | } |
| 224 | |
| 225 | if (strcmp(name, "softspace") == 0) |
| 226 | { |
| 227 | if (!PyInt_Check(val)) |
| 228 | { |
| 229 | PyErr_SetString(PyExc_TypeError, _("softspace must be an integer")); |
| 230 | return -1; |
| 231 | } |
| 232 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 233 | self->softspace = PyInt_AsLong(val); |
Bram Moolenaar | 7704565 | 2012-09-21 13:46:06 +0200 | [diff] [blame] | 234 | return 0; |
| 235 | } |
| 236 | |
| 237 | PyErr_SetString(PyExc_AttributeError, _("invalid attribute")); |
| 238 | return -1; |
| 239 | } |
| 240 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 241 | /* Buffer IO, we write one whole line at a time. */ |
| 242 | static garray_T io_ga = {0, 0, 1, 80, NULL}; |
| 243 | static writefn old_fn = NULL; |
| 244 | |
| 245 | static void |
| 246 | PythonIO_Flush(void) |
| 247 | { |
| 248 | if (old_fn != NULL && io_ga.ga_len > 0) |
| 249 | { |
| 250 | ((char_u *)io_ga.ga_data)[io_ga.ga_len] = NUL; |
| 251 | old_fn((char_u *)io_ga.ga_data); |
| 252 | } |
| 253 | io_ga.ga_len = 0; |
| 254 | } |
| 255 | |
| 256 | static void |
| 257 | writer(writefn fn, char_u *str, PyInt n) |
| 258 | { |
| 259 | char_u *ptr; |
| 260 | |
| 261 | /* Flush when switching output function. */ |
| 262 | if (fn != old_fn) |
| 263 | PythonIO_Flush(); |
| 264 | old_fn = fn; |
| 265 | |
| 266 | /* Write each NL separated line. Text after the last NL is kept for |
| 267 | * writing later. */ |
| 268 | while (n > 0 && (ptr = memchr(str, '\n', n)) != NULL) |
| 269 | { |
| 270 | PyInt len = ptr - str; |
| 271 | |
| 272 | if (ga_grow(&io_ga, (int)(len + 1)) == FAIL) |
| 273 | break; |
| 274 | |
| 275 | mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)len); |
| 276 | ((char *)io_ga.ga_data)[io_ga.ga_len + len] = NUL; |
| 277 | fn((char_u *)io_ga.ga_data); |
| 278 | str = ptr + 1; |
| 279 | n -= len + 1; |
| 280 | io_ga.ga_len = 0; |
| 281 | } |
| 282 | |
| 283 | /* Put the remaining text into io_ga for later printing. */ |
| 284 | if (n > 0 && ga_grow(&io_ga, (int)(n + 1)) == OK) |
| 285 | { |
| 286 | mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)n); |
| 287 | io_ga.ga_len += (int)n; |
| 288 | } |
| 289 | } |
| 290 | |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 291 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 292 | OutputWrite(OutputObject *self, PyObject *args) |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 293 | { |
Bram Moolenaar | e8cdcef | 2012-09-12 20:21:43 +0200 | [diff] [blame] | 294 | Py_ssize_t len = 0; |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 295 | char *str = NULL; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 296 | int error = self->error; |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 297 | |
Bram Moolenaar | 2756480 | 2011-09-07 19:30:21 +0200 | [diff] [blame] | 298 | if (!PyArg_ParseTuple(args, "et#", ENC_OPT, &str, &len)) |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 299 | return NULL; |
| 300 | |
| 301 | Py_BEGIN_ALLOW_THREADS |
| 302 | Python_Lock_Vim(); |
| 303 | writer((writefn)(error ? emsg : msg), (char_u *)str, len); |
| 304 | Python_Release_Vim(); |
| 305 | Py_END_ALLOW_THREADS |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 306 | PyMem_Free(str); |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 307 | |
| 308 | Py_INCREF(Py_None); |
| 309 | return Py_None; |
| 310 | } |
| 311 | |
| 312 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 313 | OutputWritelines(OutputObject *self, PyObject *args) |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 314 | { |
Bram Moolenaar | 01a7a72 | 2013-05-30 12:26:58 +0200 | [diff] [blame] | 315 | PyObject *seq; |
| 316 | PyObject *iterator; |
| 317 | PyObject *item; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 318 | int error = self->error; |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 319 | |
Bram Moolenaar | 01a7a72 | 2013-05-30 12:26:58 +0200 | [diff] [blame] | 320 | if (!PyArg_ParseTuple(args, "O", &seq)) |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 321 | return NULL; |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 322 | |
Bram Moolenaar | 01a7a72 | 2013-05-30 12:26:58 +0200 | [diff] [blame] | 323 | if (!(iterator = PyObject_GetIter(seq))) |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 324 | return NULL; |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 325 | |
Bram Moolenaar | 01a7a72 | 2013-05-30 12:26:58 +0200 | [diff] [blame] | 326 | while ((item = PyIter_Next(iterator))) |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 327 | { |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 328 | char *str = NULL; |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 329 | PyInt len; |
| 330 | |
Bram Moolenaar | 01a7a72 | 2013-05-30 12:26:58 +0200 | [diff] [blame] | 331 | if (!PyArg_Parse(item, "et#", ENC_OPT, &str, &len)) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 332 | { |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 333 | PyErr_SetString(PyExc_TypeError, _("writelines() requires list of strings")); |
Bram Moolenaar | 01a7a72 | 2013-05-30 12:26:58 +0200 | [diff] [blame] | 334 | Py_DECREF(iterator); |
| 335 | Py_DECREF(item); |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 336 | return NULL; |
| 337 | } |
Bram Moolenaar | 01a7a72 | 2013-05-30 12:26:58 +0200 | [diff] [blame] | 338 | Py_DECREF(item); |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 339 | |
| 340 | Py_BEGIN_ALLOW_THREADS |
| 341 | Python_Lock_Vim(); |
| 342 | writer((writefn)(error ? emsg : msg), (char_u *)str, len); |
| 343 | Python_Release_Vim(); |
| 344 | Py_END_ALLOW_THREADS |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 345 | PyMem_Free(str); |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 346 | } |
| 347 | |
Bram Moolenaar | 01a7a72 | 2013-05-30 12:26:58 +0200 | [diff] [blame] | 348 | Py_DECREF(iterator); |
| 349 | |
| 350 | /* Iterator may have finished due to an exception */ |
| 351 | if (PyErr_Occurred()) |
| 352 | return NULL; |
| 353 | |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 354 | Py_INCREF(Py_None); |
| 355 | return Py_None; |
| 356 | } |
| 357 | |
Bram Moolenaar | a29a37d | 2011-03-22 15:47:44 +0100 | [diff] [blame] | 358 | static PyObject * |
Bram Moolenaar | 182dc4f | 2013-05-21 19:01:55 +0200 | [diff] [blame] | 359 | OutputFlush(PyObject *self UNUSED) |
Bram Moolenaar | a29a37d | 2011-03-22 15:47:44 +0100 | [diff] [blame] | 360 | { |
| 361 | /* do nothing */ |
| 362 | Py_INCREF(Py_None); |
| 363 | return Py_None; |
| 364 | } |
| 365 | |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 366 | /***************/ |
| 367 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 368 | static struct PyMethodDef OutputMethods[] = { |
Bram Moolenaar | 182dc4f | 2013-05-21 19:01:55 +0200 | [diff] [blame] | 369 | /* name, function, calling, doc */ |
| 370 | {"write", (PyCFunction)OutputWrite, METH_VARARGS, ""}, |
| 371 | {"writelines", (PyCFunction)OutputWritelines, METH_VARARGS, ""}, |
| 372 | {"flush", (PyCFunction)OutputFlush, METH_NOARGS, ""}, |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 373 | {"__dir__", (PyCFunction)OutputDir, METH_NOARGS, ""}, |
Bram Moolenaar | 182dc4f | 2013-05-21 19:01:55 +0200 | [diff] [blame] | 374 | { NULL, NULL, 0, NULL} |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 375 | }; |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 376 | |
| 377 | static OutputObject Output = |
| 378 | { |
| 379 | PyObject_HEAD_INIT(&OutputType) |
| 380 | 0, |
| 381 | 0 |
| 382 | }; |
| 383 | |
| 384 | static OutputObject Error = |
| 385 | { |
| 386 | PyObject_HEAD_INIT(&OutputType) |
| 387 | 0, |
| 388 | 1 |
| 389 | }; |
| 390 | |
| 391 | static int |
| 392 | PythonIO_Init_io(void) |
| 393 | { |
| 394 | PySys_SetObject("stdout", (PyObject *)(void *)&Output); |
| 395 | PySys_SetObject("stderr", (PyObject *)(void *)&Error); |
| 396 | |
| 397 | if (PyErr_Occurred()) |
| 398 | { |
| 399 | EMSG(_("E264: Python: Error initialising I/O objects")); |
| 400 | return -1; |
| 401 | } |
| 402 | |
| 403 | return 0; |
| 404 | } |
| 405 | |
| 406 | |
| 407 | static PyObject *VimError; |
| 408 | |
| 409 | /* Check to see whether a Vim error has been reported, or a keyboard |
| 410 | * interrupt has been detected. |
| 411 | */ |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 412 | |
| 413 | static void |
| 414 | VimTryStart(void) |
| 415 | { |
| 416 | ++trylevel; |
| 417 | } |
| 418 | |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 419 | static int |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 420 | VimTryEnd(void) |
| 421 | { |
| 422 | --trylevel; |
| 423 | if (got_int) |
| 424 | { |
| 425 | PyErr_SetNone(PyExc_KeyboardInterrupt); |
| 426 | return 1; |
| 427 | } |
| 428 | else if (!did_throw) |
| 429 | return 0; |
| 430 | else if (PyErr_Occurred()) |
| 431 | return 1; |
| 432 | else |
| 433 | { |
| 434 | PyErr_SetVim((char *) current_exception->value); |
| 435 | discard_current_exception(); |
| 436 | return 1; |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | static int |
| 441 | VimCheckInterrupt(void) |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 442 | { |
| 443 | if (got_int) |
| 444 | { |
| 445 | PyErr_SetNone(PyExc_KeyboardInterrupt); |
| 446 | return 1; |
| 447 | } |
Bram Moolenaar | 170bf1a | 2010-07-24 23:51:45 +0200 | [diff] [blame] | 448 | return 0; |
| 449 | } |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 450 | |
| 451 | /* Vim module - Implementation |
| 452 | */ |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 453 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 454 | static PyObject * |
| 455 | VimCommand(PyObject *self UNUSED, PyObject *args) |
| 456 | { |
| 457 | char *cmd; |
| 458 | PyObject *result; |
| 459 | |
| 460 | if (!PyArg_ParseTuple(args, "s", &cmd)) |
| 461 | return NULL; |
| 462 | |
| 463 | PyErr_Clear(); |
| 464 | |
| 465 | Py_BEGIN_ALLOW_THREADS |
| 466 | Python_Lock_Vim(); |
| 467 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 468 | VimTryStart(); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 469 | do_cmdline_cmd((char_u *)cmd); |
| 470 | update_screen(VALID); |
| 471 | |
| 472 | Python_Release_Vim(); |
| 473 | Py_END_ALLOW_THREADS |
| 474 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 475 | if (VimTryEnd()) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 476 | result = NULL; |
| 477 | else |
| 478 | result = Py_None; |
| 479 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 480 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 481 | Py_XINCREF(result); |
| 482 | return result; |
| 483 | } |
| 484 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 485 | /* |
| 486 | * Function to translate a typval_T into a PyObject; this will recursively |
| 487 | * translate lists/dictionaries into their Python equivalents. |
| 488 | * |
| 489 | * The depth parameter is to avoid infinite recursion, set it to 1 when |
| 490 | * you call VimToPython. |
| 491 | */ |
| 492 | static PyObject * |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 493 | VimToPython(typval_T *our_tv, int depth, PyObject *lookup_dict) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 494 | { |
| 495 | PyObject *result; |
| 496 | PyObject *newObj; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 497 | char ptrBuf[sizeof(void *) * 2 + 3]; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 498 | |
| 499 | /* Avoid infinite recursion */ |
| 500 | if (depth > 100) |
| 501 | { |
| 502 | Py_INCREF(Py_None); |
| 503 | result = Py_None; |
| 504 | return result; |
| 505 | } |
| 506 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 507 | /* Check if we run into a recursive loop. The item must be in lookup_dict |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 508 | * then and we can use it again. */ |
| 509 | if ((our_tv->v_type == VAR_LIST && our_tv->vval.v_list != NULL) |
| 510 | || (our_tv->v_type == VAR_DICT && our_tv->vval.v_dict != NULL)) |
| 511 | { |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 512 | sprintf(ptrBuf, "%p", |
| 513 | our_tv->v_type == VAR_LIST ? (void *)our_tv->vval.v_list |
| 514 | : (void *)our_tv->vval.v_dict); |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 515 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 516 | if ((result = PyDict_GetItemString(lookup_dict, ptrBuf))) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 517 | { |
| 518 | Py_INCREF(result); |
| 519 | return result; |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | if (our_tv->v_type == VAR_STRING) |
| 524 | { |
Bram Moolenaar | 432b09c | 2013-05-29 22:26:18 +0200 | [diff] [blame] | 525 | result = PyString_FromString(our_tv->vval.v_string == NULL |
Bram Moolenaar | d1f13fd | 2012-10-05 21:30:07 +0200 | [diff] [blame] | 526 | ? "" : (char *)our_tv->vval.v_string); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 527 | } |
| 528 | else if (our_tv->v_type == VAR_NUMBER) |
| 529 | { |
| 530 | char buf[NUMBUFLEN]; |
| 531 | |
| 532 | /* For backwards compatibility numbers are stored as strings. */ |
| 533 | sprintf(buf, "%ld", (long)our_tv->vval.v_number); |
Bram Moolenaar | 432b09c | 2013-05-29 22:26:18 +0200 | [diff] [blame] | 534 | result = PyString_FromString((char *) buf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 535 | } |
| 536 | # ifdef FEAT_FLOAT |
| 537 | else if (our_tv->v_type == VAR_FLOAT) |
| 538 | { |
| 539 | char buf[NUMBUFLEN]; |
| 540 | |
| 541 | sprintf(buf, "%f", our_tv->vval.v_float); |
Bram Moolenaar | 432b09c | 2013-05-29 22:26:18 +0200 | [diff] [blame] | 542 | result = PyString_FromString((char *) buf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 543 | } |
| 544 | # endif |
| 545 | else if (our_tv->v_type == VAR_LIST) |
| 546 | { |
| 547 | list_T *list = our_tv->vval.v_list; |
| 548 | listitem_T *curr; |
| 549 | |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 550 | if (list == NULL) |
| 551 | return NULL; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 552 | |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 553 | if (!(result = PyList_New(0))) |
| 554 | return NULL; |
| 555 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 556 | if (PyDict_SetItemString(lookup_dict, ptrBuf, result)) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 557 | { |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 558 | Py_DECREF(result); |
| 559 | return NULL; |
| 560 | } |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 561 | |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 562 | for (curr = list->lv_first; curr != NULL; curr = curr->li_next) |
| 563 | { |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 564 | if (!(newObj = VimToPython(&curr->li_tv, depth + 1, lookup_dict))) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 565 | { |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 566 | Py_DECREF(result); |
| 567 | return NULL; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 568 | } |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 569 | if (PyList_Append(result, newObj)) |
| 570 | { |
| 571 | Py_DECREF(newObj); |
| 572 | Py_DECREF(result); |
| 573 | return NULL; |
| 574 | } |
| 575 | Py_DECREF(newObj); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 576 | } |
| 577 | } |
| 578 | else if (our_tv->v_type == VAR_DICT) |
| 579 | { |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 580 | |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 581 | hashtab_T *ht = &our_tv->vval.v_dict->dv_hashtab; |
| 582 | long_u todo = ht->ht_used; |
| 583 | hashitem_T *hi; |
| 584 | dictitem_T *di; |
| 585 | if (our_tv->vval.v_dict == NULL) |
| 586 | return NULL; |
| 587 | |
| 588 | if (!(result = PyDict_New())) |
| 589 | return NULL; |
| 590 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 591 | if (PyDict_SetItemString(lookup_dict, ptrBuf, result)) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 592 | { |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 593 | Py_DECREF(result); |
| 594 | return NULL; |
| 595 | } |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 596 | |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 597 | for (hi = ht->ht_array; todo > 0; ++hi) |
| 598 | { |
| 599 | if (!HASHITEM_EMPTY(hi)) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 600 | { |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 601 | --todo; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 602 | |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 603 | di = dict_lookup(hi); |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 604 | if (!(newObj = VimToPython(&di->di_tv, depth + 1, lookup_dict))) |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 605 | { |
| 606 | Py_DECREF(result); |
| 607 | return NULL; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 608 | } |
Bram Moolenaar | 21642ed | 2013-05-29 22:20:01 +0200 | [diff] [blame] | 609 | if (PyDict_SetItemString(result, (char *)hi->hi_key, newObj)) |
| 610 | { |
| 611 | Py_DECREF(result); |
| 612 | Py_DECREF(newObj); |
| 613 | return NULL; |
| 614 | } |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 615 | } |
| 616 | } |
| 617 | } |
| 618 | else |
| 619 | { |
| 620 | Py_INCREF(Py_None); |
| 621 | result = Py_None; |
| 622 | } |
| 623 | |
| 624 | return result; |
| 625 | } |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 626 | |
| 627 | static PyObject * |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 628 | VimEval(PyObject *self UNUSED, PyObject *args) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 629 | { |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 630 | char *expr; |
| 631 | typval_T *our_tv; |
| 632 | PyObject *result; |
| 633 | PyObject *lookup_dict; |
| 634 | |
| 635 | if (!PyArg_ParseTuple(args, "s", &expr)) |
| 636 | return NULL; |
| 637 | |
| 638 | Py_BEGIN_ALLOW_THREADS |
| 639 | Python_Lock_Vim(); |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 640 | VimTryStart(); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 641 | our_tv = eval_expr((char_u *)expr, NULL); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 642 | Python_Release_Vim(); |
| 643 | Py_END_ALLOW_THREADS |
| 644 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 645 | if (VimTryEnd()) |
| 646 | return NULL; |
| 647 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 648 | if (our_tv == NULL) |
| 649 | { |
| 650 | PyErr_SetVim(_("invalid expression")); |
| 651 | return NULL; |
| 652 | } |
| 653 | |
| 654 | /* Convert the Vim type into a Python type. Create a dictionary that's |
| 655 | * used to check for recursive loops. */ |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 656 | if (!(lookup_dict = PyDict_New())) |
| 657 | result = NULL; |
| 658 | else |
| 659 | { |
| 660 | result = VimToPython(our_tv, 1, lookup_dict); |
| 661 | Py_DECREF(lookup_dict); |
| 662 | } |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 663 | |
| 664 | |
| 665 | Py_BEGIN_ALLOW_THREADS |
| 666 | Python_Lock_Vim(); |
| 667 | free_tv(our_tv); |
| 668 | Python_Release_Vim(); |
| 669 | Py_END_ALLOW_THREADS |
| 670 | |
| 671 | return result; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 672 | } |
| 673 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 674 | static PyObject *ConvertToPyObject(typval_T *); |
| 675 | |
| 676 | static PyObject * |
Bram Moolenaar | 9e74e30 | 2013-05-17 21:20:17 +0200 | [diff] [blame] | 677 | VimEvalPy(PyObject *self UNUSED, PyObject *args) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 678 | { |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 679 | char *expr; |
| 680 | typval_T *our_tv; |
| 681 | PyObject *result; |
| 682 | |
| 683 | if (!PyArg_ParseTuple(args, "s", &expr)) |
| 684 | return NULL; |
| 685 | |
| 686 | Py_BEGIN_ALLOW_THREADS |
| 687 | Python_Lock_Vim(); |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 688 | VimTryStart(); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 689 | our_tv = eval_expr((char_u *)expr, NULL); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 690 | Python_Release_Vim(); |
| 691 | Py_END_ALLOW_THREADS |
| 692 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 693 | if (VimTryEnd()) |
| 694 | return NULL; |
| 695 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 696 | if (our_tv == NULL) |
| 697 | { |
| 698 | PyErr_SetVim(_("invalid expression")); |
| 699 | return NULL; |
| 700 | } |
| 701 | |
| 702 | result = ConvertToPyObject(our_tv); |
| 703 | Py_BEGIN_ALLOW_THREADS |
| 704 | Python_Lock_Vim(); |
| 705 | free_tv(our_tv); |
| 706 | Python_Release_Vim(); |
| 707 | Py_END_ALLOW_THREADS |
| 708 | |
| 709 | return result; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | static PyObject * |
| 713 | VimStrwidth(PyObject *self UNUSED, PyObject *args) |
| 714 | { |
| 715 | char *expr; |
| 716 | |
| 717 | if (!PyArg_ParseTuple(args, "s", &expr)) |
| 718 | return NULL; |
| 719 | |
Bram Moolenaar | a54bf40 | 2012-12-05 16:30:07 +0100 | [diff] [blame] | 720 | return PyLong_FromLong( |
| 721 | #ifdef FEAT_MBYTE |
| 722 | mb_string2cells((char_u *)expr, (int)STRLEN(expr)) |
| 723 | #else |
| 724 | STRLEN(expr) |
| 725 | #endif |
| 726 | ); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 727 | } |
| 728 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 729 | /* |
| 730 | * Vim module - Definitions |
| 731 | */ |
| 732 | |
| 733 | static struct PyMethodDef VimMethods[] = { |
Bram Moolenaar | 182dc4f | 2013-05-21 19:01:55 +0200 | [diff] [blame] | 734 | /* name, function, calling, documentation */ |
| 735 | {"command", VimCommand, METH_VARARGS, "Execute a Vim ex-mode command" }, |
| 736 | {"eval", VimEval, METH_VARARGS, "Evaluate an expression using Vim evaluator" }, |
| 737 | {"bindeval", VimEvalPy, METH_VARARGS, "Like eval(), but returns objects attached to vim ones"}, |
| 738 | {"strwidth", VimStrwidth, METH_VARARGS, "Screen string width, counts <Tab> as having width 1"}, |
| 739 | { NULL, NULL, 0, NULL } |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 740 | }; |
| 741 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 742 | /* |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 743 | * Generic iterator object |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 744 | */ |
| 745 | |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 746 | static PyTypeObject IterType; |
| 747 | |
| 748 | typedef PyObject *(*nextfun)(void **); |
| 749 | typedef void (*destructorfun)(void *); |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 750 | typedef int (*traversefun)(void *, visitproc, void *); |
| 751 | typedef int (*clearfun)(void **); |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 752 | |
Bram Moolenaar | 9e74e30 | 2013-05-17 21:20:17 +0200 | [diff] [blame] | 753 | /* Main purpose of this object is removing the need for do python |
| 754 | * initialization (i.e. PyType_Ready and setting type attributes) for a big |
| 755 | * bunch of objects. */ |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 756 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 757 | typedef struct |
| 758 | { |
| 759 | PyObject_HEAD |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 760 | void *cur; |
| 761 | nextfun next; |
| 762 | destructorfun destruct; |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 763 | traversefun traverse; |
| 764 | clearfun clear; |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 765 | } IterObject; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 766 | |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 767 | static PyObject * |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 768 | IterNew(void *start, destructorfun destruct, nextfun next, traversefun traverse, |
| 769 | clearfun clear) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 770 | { |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 771 | IterObject *self; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 772 | |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 773 | self = PyObject_GC_New(IterObject, &IterType); |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 774 | self->cur = start; |
| 775 | self->next = next; |
| 776 | self->destruct = destruct; |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 777 | self->traverse = traverse; |
| 778 | self->clear = clear; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 779 | |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 780 | return (PyObject *)(self); |
| 781 | } |
| 782 | |
| 783 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 784 | IterDestructor(IterObject *self) |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 785 | { |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 786 | PyObject_GC_UnTrack((void *)(self)); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 787 | self->destruct(self->cur); |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 788 | PyObject_GC_Del((void *)(self)); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 789 | } |
| 790 | |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 791 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 792 | IterTraverse(IterObject *self, visitproc visit, void *arg) |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 793 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 794 | if (self->traverse != NULL) |
| 795 | return self->traverse(self->cur, visit, arg); |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 796 | else |
| 797 | return 0; |
| 798 | } |
| 799 | |
Bram Moolenaar | 9e74e30 | 2013-05-17 21:20:17 +0200 | [diff] [blame] | 800 | /* Mac OSX defines clear() somewhere. */ |
| 801 | #ifdef clear |
| 802 | # undef clear |
| 803 | #endif |
| 804 | |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 805 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 806 | IterClear(IterObject *self) |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 807 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 808 | if (self->clear != NULL) |
| 809 | return self->clear(&self->cur); |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 810 | else |
| 811 | return 0; |
| 812 | } |
| 813 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 814 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 815 | IterNext(IterObject *self) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 816 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 817 | return self->next(&self->cur); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 818 | } |
| 819 | |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 820 | static PyObject * |
| 821 | IterIter(PyObject *self) |
| 822 | { |
Bram Moolenaar | 1bcabe1 | 2013-05-29 22:52:32 +0200 | [diff] [blame] | 823 | Py_INCREF(self); |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 824 | return self; |
| 825 | } |
Bram Moolenaar | dfa38d4 | 2013-05-15 13:38:47 +0200 | [diff] [blame] | 826 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 827 | typedef struct pylinkedlist_S { |
| 828 | struct pylinkedlist_S *pll_next; |
| 829 | struct pylinkedlist_S *pll_prev; |
| 830 | PyObject *pll_obj; |
| 831 | } pylinkedlist_T; |
| 832 | |
| 833 | static pylinkedlist_T *lastdict = NULL; |
| 834 | static pylinkedlist_T *lastlist = NULL; |
| 835 | |
| 836 | static void |
| 837 | pyll_remove(pylinkedlist_T *ref, pylinkedlist_T **last) |
| 838 | { |
| 839 | if (ref->pll_prev == NULL) |
| 840 | { |
| 841 | if (ref->pll_next == NULL) |
| 842 | { |
| 843 | *last = NULL; |
| 844 | return; |
| 845 | } |
| 846 | } |
| 847 | else |
| 848 | ref->pll_prev->pll_next = ref->pll_next; |
| 849 | |
| 850 | if (ref->pll_next == NULL) |
| 851 | *last = ref->pll_prev; |
| 852 | else |
| 853 | ref->pll_next->pll_prev = ref->pll_prev; |
| 854 | } |
| 855 | |
| 856 | static void |
| 857 | pyll_add(PyObject *self, pylinkedlist_T *ref, pylinkedlist_T **last) |
| 858 | { |
| 859 | if (*last == NULL) |
| 860 | ref->pll_prev = NULL; |
| 861 | else |
| 862 | { |
| 863 | (*last)->pll_next = ref; |
| 864 | ref->pll_prev = *last; |
| 865 | } |
| 866 | ref->pll_next = NULL; |
| 867 | ref->pll_obj = self; |
| 868 | *last = ref; |
| 869 | } |
| 870 | |
| 871 | static PyTypeObject DictionaryType; |
| 872 | |
| 873 | typedef struct |
| 874 | { |
| 875 | PyObject_HEAD |
| 876 | dict_T *dict; |
| 877 | pylinkedlist_T ref; |
| 878 | } DictionaryObject; |
| 879 | |
| 880 | static PyObject * |
| 881 | DictionaryNew(dict_T *dict) |
| 882 | { |
| 883 | DictionaryObject *self; |
| 884 | |
| 885 | self = PyObject_NEW(DictionaryObject, &DictionaryType); |
| 886 | if (self == NULL) |
| 887 | return NULL; |
| 888 | self->dict = dict; |
| 889 | ++dict->dv_refcount; |
| 890 | |
| 891 | pyll_add((PyObject *)(self), &self->ref, &lastdict); |
| 892 | |
| 893 | return (PyObject *)(self); |
| 894 | } |
| 895 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 896 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 897 | DictionaryDestructor(DictionaryObject *self) |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 898 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 899 | pyll_remove(&self->ref, &lastdict); |
| 900 | dict_unref(self->dict); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 901 | |
| 902 | DESTRUCTOR_FINISH(self); |
| 903 | } |
| 904 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 905 | static char *DictionaryAttrs[] = { |
| 906 | "locked", "scope", |
| 907 | NULL |
| 908 | }; |
| 909 | |
| 910 | static PyObject * |
| 911 | DictionaryDir(PyObject *self) |
| 912 | { |
| 913 | return ObjectDir(self, DictionaryAttrs); |
| 914 | } |
| 915 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 916 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 917 | DictionarySetattr(DictionaryObject *self, char *name, PyObject *val) |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 918 | { |
| 919 | if (val == NULL) |
| 920 | { |
| 921 | PyErr_SetString(PyExc_AttributeError, _("Cannot delete DictionaryObject attributes")); |
| 922 | return -1; |
| 923 | } |
| 924 | |
| 925 | if (strcmp(name, "locked") == 0) |
| 926 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 927 | if (self->dict->dv_lock == VAR_FIXED) |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 928 | { |
| 929 | PyErr_SetString(PyExc_TypeError, _("Cannot modify fixed dictionary")); |
| 930 | return -1; |
| 931 | } |
| 932 | else |
| 933 | { |
Bram Moolenaar | b983f75 | 2013-05-15 16:11:50 +0200 | [diff] [blame] | 934 | int istrue = PyObject_IsTrue(val); |
| 935 | if (istrue == -1) |
| 936 | return -1; |
| 937 | else if (istrue) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 938 | self->dict->dv_lock = VAR_LOCKED; |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 939 | else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 940 | self->dict->dv_lock = 0; |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 941 | } |
| 942 | return 0; |
| 943 | } |
| 944 | else |
| 945 | { |
| 946 | PyErr_SetString(PyExc_AttributeError, _("Cannot set this attribute")); |
| 947 | return -1; |
| 948 | } |
| 949 | } |
| 950 | |
| 951 | static PyInt |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 952 | DictionaryLength(DictionaryObject *self) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 953 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 954 | return ((PyInt) (self->dict->dv_hashtab.ht_used)); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 955 | } |
| 956 | |
| 957 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 958 | DictionaryItem(DictionaryObject *self, PyObject *keyObject) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 959 | { |
| 960 | char_u *key; |
Bram Moolenaar | 231e1a1 | 2012-09-05 18:45:28 +0200 | [diff] [blame] | 961 | dictitem_T *di; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 962 | DICTKEY_DECL |
| 963 | |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 964 | DICTKEY_GET(NULL, 0) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 965 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 966 | di = dict_find(self->dict, key, -1); |
Bram Moolenaar | 231e1a1 | 2012-09-05 18:45:28 +0200 | [diff] [blame] | 967 | |
Bram Moolenaar | 696c211 | 2012-09-21 13:43:14 +0200 | [diff] [blame] | 968 | DICTKEY_UNREF |
| 969 | |
Bram Moolenaar | 231e1a1 | 2012-09-05 18:45:28 +0200 | [diff] [blame] | 970 | if (di == NULL) |
| 971 | { |
Bram Moolenaar | 4d188da | 2013-05-15 15:35:09 +0200 | [diff] [blame] | 972 | PyErr_SetObject(PyExc_KeyError, keyObject); |
Bram Moolenaar | 231e1a1 | 2012-09-05 18:45:28 +0200 | [diff] [blame] | 973 | return NULL; |
| 974 | } |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 975 | |
Bram Moolenaar | 231e1a1 | 2012-09-05 18:45:28 +0200 | [diff] [blame] | 976 | return ConvertToPyObject(&di->di_tv); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | static PyInt |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 980 | DictionaryAssItem(DictionaryObject *self, PyObject *keyObject, PyObject *valObject) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 981 | { |
| 982 | char_u *key; |
| 983 | typval_T tv; |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 984 | dict_T *dict = self->dict; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 985 | dictitem_T *di; |
| 986 | DICTKEY_DECL |
| 987 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 988 | if (dict->dv_lock) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 989 | { |
| 990 | PyErr_SetVim(_("dict is locked")); |
| 991 | return -1; |
| 992 | } |
| 993 | |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 994 | DICTKEY_GET(-1, 0) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 995 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 996 | di = dict_find(dict, key, -1); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 997 | |
| 998 | if (valObject == NULL) |
| 999 | { |
Bram Moolenaar | f27839c | 2012-06-29 16:19:50 +0200 | [diff] [blame] | 1000 | hashitem_T *hi; |
| 1001 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1002 | if (di == NULL) |
| 1003 | { |
Bram Moolenaar | 696c211 | 2012-09-21 13:43:14 +0200 | [diff] [blame] | 1004 | DICTKEY_UNREF |
Bram Moolenaar | 4d188da | 2013-05-15 15:35:09 +0200 | [diff] [blame] | 1005 | PyErr_SetObject(PyExc_KeyError, keyObject); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1006 | return -1; |
| 1007 | } |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 1008 | hi = hash_find(&dict->dv_hashtab, di->di_key); |
| 1009 | hash_remove(&dict->dv_hashtab, hi); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1010 | dictitem_free(di); |
| 1011 | return 0; |
| 1012 | } |
| 1013 | |
| 1014 | if (ConvertFromPyObject(valObject, &tv) == -1) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1015 | return -1; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1016 | |
| 1017 | if (di == NULL) |
| 1018 | { |
| 1019 | di = dictitem_alloc(key); |
| 1020 | if (di == NULL) |
| 1021 | { |
| 1022 | PyErr_NoMemory(); |
| 1023 | return -1; |
| 1024 | } |
| 1025 | di->di_tv.v_lock = 0; |
| 1026 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 1027 | if (dict_add(dict, di) == FAIL) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1028 | { |
Bram Moolenaar | 696c211 | 2012-09-21 13:43:14 +0200 | [diff] [blame] | 1029 | DICTKEY_UNREF |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1030 | vim_free(di); |
| 1031 | PyErr_SetVim(_("failed to add key to dictionary")); |
| 1032 | return -1; |
| 1033 | } |
| 1034 | } |
| 1035 | else |
| 1036 | clear_tv(&di->di_tv); |
| 1037 | |
| 1038 | DICTKEY_UNREF |
| 1039 | |
| 1040 | copy_tv(&tv, &di->di_tv); |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1041 | clear_tv(&tv); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1042 | return 0; |
| 1043 | } |
| 1044 | |
| 1045 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1046 | DictionaryListKeys(DictionaryObject *self) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1047 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1048 | dict_T *dict = self->dict; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1049 | long_u todo = dict->dv_hashtab.ht_used; |
| 1050 | Py_ssize_t i = 0; |
| 1051 | PyObject *r; |
| 1052 | hashitem_T *hi; |
| 1053 | |
| 1054 | r = PyList_New(todo); |
| 1055 | for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi) |
| 1056 | { |
| 1057 | if (!HASHITEM_EMPTY(hi)) |
| 1058 | { |
| 1059 | PyList_SetItem(r, i, PyBytes_FromString((char *)(hi->hi_key))); |
| 1060 | --todo; |
| 1061 | ++i; |
| 1062 | } |
| 1063 | } |
| 1064 | return r; |
| 1065 | } |
| 1066 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 1067 | static PyMappingMethods DictionaryAsMapping = { |
| 1068 | (lenfunc) DictionaryLength, |
| 1069 | (binaryfunc) DictionaryItem, |
| 1070 | (objobjargproc) DictionaryAssItem, |
| 1071 | }; |
| 1072 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1073 | static struct PyMethodDef DictionaryMethods[] = { |
Bram Moolenaar | 182dc4f | 2013-05-21 19:01:55 +0200 | [diff] [blame] | 1074 | {"keys", (PyCFunction)DictionaryListKeys, METH_NOARGS, ""}, |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 1075 | {"__dir__", (PyCFunction)DictionaryDir, METH_NOARGS, ""}, |
| 1076 | { NULL, NULL, 0, NULL} |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1077 | }; |
| 1078 | |
| 1079 | static PyTypeObject ListType; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 1080 | static PySequenceMethods ListAsSeq; |
| 1081 | static PyMappingMethods ListAsMapping; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1082 | |
| 1083 | typedef struct |
| 1084 | { |
| 1085 | PyObject_HEAD |
| 1086 | list_T *list; |
| 1087 | pylinkedlist_T ref; |
| 1088 | } ListObject; |
| 1089 | |
| 1090 | static PyObject * |
| 1091 | ListNew(list_T *list) |
| 1092 | { |
| 1093 | ListObject *self; |
| 1094 | |
| 1095 | self = PyObject_NEW(ListObject, &ListType); |
| 1096 | if (self == NULL) |
| 1097 | return NULL; |
| 1098 | self->list = list; |
| 1099 | ++list->lv_refcount; |
| 1100 | |
| 1101 | pyll_add((PyObject *)(self), &self->ref, &lastlist); |
| 1102 | |
| 1103 | return (PyObject *)(self); |
| 1104 | } |
| 1105 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 1106 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1107 | ListDestructor(ListObject *self) |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 1108 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1109 | pyll_remove(&self->ref, &lastlist); |
| 1110 | list_unref(self->list); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 1111 | |
| 1112 | DESTRUCTOR_FINISH(self); |
| 1113 | } |
| 1114 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1115 | static int |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 1116 | list_py_concat(list_T *l, PyObject *obj, PyObject *lookup_dict) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1117 | { |
| 1118 | Py_ssize_t i; |
| 1119 | Py_ssize_t lsize = PySequence_Size(obj); |
| 1120 | PyObject *litem; |
| 1121 | listitem_T *li; |
| 1122 | |
| 1123 | for(i=0; i<lsize; i++) |
| 1124 | { |
| 1125 | li = listitem_alloc(); |
| 1126 | if (li == NULL) |
| 1127 | { |
| 1128 | PyErr_NoMemory(); |
| 1129 | return -1; |
| 1130 | } |
| 1131 | li->li_tv.v_lock = 0; |
| 1132 | |
| 1133 | litem = PySequence_GetItem(obj, i); |
| 1134 | if (litem == NULL) |
| 1135 | return -1; |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 1136 | if (_ConvertFromPyObject(litem, &li->li_tv, lookup_dict) == -1) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1137 | return -1; |
| 1138 | |
| 1139 | list_append(l, li); |
| 1140 | } |
| 1141 | return 0; |
| 1142 | } |
| 1143 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1144 | static PyInt |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1145 | ListLength(ListObject *self) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1146 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1147 | return ((PyInt) (self->list->lv_len)); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1148 | } |
| 1149 | |
| 1150 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1151 | ListItem(ListObject *self, Py_ssize_t index) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1152 | { |
| 1153 | listitem_T *li; |
| 1154 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1155 | if (index >= ListLength(self)) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1156 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 1157 | PyErr_SetString(PyExc_IndexError, _("list index out of range")); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1158 | return NULL; |
| 1159 | } |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1160 | li = list_find(self->list, (long) index); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1161 | if (li == NULL) |
| 1162 | { |
| 1163 | PyErr_SetVim(_("internal error: failed to get vim list item")); |
| 1164 | return NULL; |
| 1165 | } |
| 1166 | return ConvertToPyObject(&li->li_tv); |
| 1167 | } |
| 1168 | |
| 1169 | #define PROC_RANGE \ |
| 1170 | if (last < 0) {\ |
| 1171 | if (last < -size) \ |
| 1172 | last = 0; \ |
| 1173 | else \ |
| 1174 | last += size; \ |
| 1175 | } \ |
| 1176 | if (first < 0) \ |
| 1177 | first = 0; \ |
| 1178 | if (first > size) \ |
| 1179 | first = size; \ |
| 1180 | if (last > size) \ |
| 1181 | last = size; |
| 1182 | |
| 1183 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1184 | ListSlice(ListObject *self, Py_ssize_t first, Py_ssize_t last) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1185 | { |
| 1186 | PyInt i; |
| 1187 | PyInt size = ListLength(self); |
| 1188 | PyInt n; |
| 1189 | PyObject *list; |
| 1190 | int reversed = 0; |
| 1191 | |
| 1192 | PROC_RANGE |
| 1193 | if (first >= last) |
| 1194 | first = last; |
| 1195 | |
| 1196 | n = last-first; |
| 1197 | list = PyList_New(n); |
| 1198 | if (list == NULL) |
| 1199 | return NULL; |
| 1200 | |
| 1201 | for (i = 0; i < n; ++i) |
| 1202 | { |
Bram Moolenaar | 24b11fb | 2013-04-05 19:32:36 +0200 | [diff] [blame] | 1203 | PyObject *item = ListItem(self, first + i); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1204 | if (item == NULL) |
| 1205 | { |
| 1206 | Py_DECREF(list); |
| 1207 | return NULL; |
| 1208 | } |
| 1209 | |
| 1210 | if ((PyList_SetItem(list, ((reversed)?(n-i-1):(i)), item))) |
| 1211 | { |
| 1212 | Py_DECREF(item); |
| 1213 | Py_DECREF(list); |
| 1214 | return NULL; |
| 1215 | } |
| 1216 | } |
| 1217 | |
| 1218 | return list; |
| 1219 | } |
| 1220 | |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 1221 | typedef struct |
| 1222 | { |
| 1223 | listwatch_T lw; |
| 1224 | list_T *list; |
| 1225 | } listiterinfo_T; |
| 1226 | |
| 1227 | static void |
| 1228 | ListIterDestruct(listiterinfo_T *lii) |
| 1229 | { |
| 1230 | list_rem_watch(lii->list, &lii->lw); |
| 1231 | PyMem_Free(lii); |
| 1232 | } |
| 1233 | |
| 1234 | static PyObject * |
| 1235 | ListIterNext(listiterinfo_T **lii) |
| 1236 | { |
| 1237 | PyObject *r; |
| 1238 | |
| 1239 | if (!((*lii)->lw.lw_item)) |
| 1240 | return NULL; |
| 1241 | |
| 1242 | if (!(r = ConvertToPyObject(&((*lii)->lw.lw_item->li_tv)))) |
| 1243 | return NULL; |
| 1244 | |
| 1245 | (*lii)->lw.lw_item = (*lii)->lw.lw_item->li_next; |
| 1246 | |
| 1247 | return r; |
| 1248 | } |
| 1249 | |
| 1250 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1251 | ListIter(ListObject *self) |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 1252 | { |
| 1253 | listiterinfo_T *lii; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1254 | list_T *l = self->list; |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 1255 | |
| 1256 | if (!(lii = PyMem_New(listiterinfo_T, 1))) |
| 1257 | { |
| 1258 | PyErr_NoMemory(); |
| 1259 | return NULL; |
| 1260 | } |
| 1261 | |
| 1262 | list_add_watch(l, &lii->lw); |
| 1263 | lii->lw.lw_item = l->lv_first; |
| 1264 | lii->list = l; |
| 1265 | |
| 1266 | return IterNew(lii, |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 1267 | (destructorfun) ListIterDestruct, (nextfun) ListIterNext, |
| 1268 | NULL, NULL); |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 1269 | } |
| 1270 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1271 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1272 | ListAssItem(ListObject *self, Py_ssize_t index, PyObject *obj) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1273 | { |
| 1274 | typval_T tv; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1275 | list_T *l = self->list; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1276 | listitem_T *li; |
| 1277 | Py_ssize_t length = ListLength(self); |
| 1278 | |
| 1279 | if (l->lv_lock) |
| 1280 | { |
| 1281 | PyErr_SetVim(_("list is locked")); |
| 1282 | return -1; |
| 1283 | } |
| 1284 | if (index>length || (index==length && obj==NULL)) |
| 1285 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 1286 | PyErr_SetString(PyExc_IndexError, _("list index out of range")); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1287 | return -1; |
| 1288 | } |
| 1289 | |
| 1290 | if (obj == NULL) |
| 1291 | { |
| 1292 | li = list_find(l, (long) index); |
| 1293 | list_remove(l, li, li); |
| 1294 | clear_tv(&li->li_tv); |
| 1295 | vim_free(li); |
| 1296 | return 0; |
| 1297 | } |
| 1298 | |
| 1299 | if (ConvertFromPyObject(obj, &tv) == -1) |
| 1300 | return -1; |
| 1301 | |
| 1302 | if (index == length) |
| 1303 | { |
| 1304 | if (list_append_tv(l, &tv) == FAIL) |
| 1305 | { |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1306 | clear_tv(&tv); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1307 | PyErr_SetVim(_("Failed to add item to list")); |
| 1308 | return -1; |
| 1309 | } |
| 1310 | } |
| 1311 | else |
| 1312 | { |
| 1313 | li = list_find(l, (long) index); |
| 1314 | clear_tv(&li->li_tv); |
| 1315 | copy_tv(&tv, &li->li_tv); |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1316 | clear_tv(&tv); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1317 | } |
| 1318 | return 0; |
| 1319 | } |
| 1320 | |
| 1321 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1322 | ListAssSlice(ListObject *self, Py_ssize_t first, Py_ssize_t last, PyObject *obj) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1323 | { |
| 1324 | PyInt size = ListLength(self); |
| 1325 | Py_ssize_t i; |
| 1326 | Py_ssize_t lsize; |
| 1327 | PyObject *litem; |
| 1328 | listitem_T *li; |
| 1329 | listitem_T *next; |
| 1330 | typval_T v; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1331 | list_T *l = self->list; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1332 | |
| 1333 | if (l->lv_lock) |
| 1334 | { |
| 1335 | PyErr_SetVim(_("list is locked")); |
| 1336 | return -1; |
| 1337 | } |
| 1338 | |
| 1339 | PROC_RANGE |
| 1340 | |
| 1341 | if (first == size) |
| 1342 | li = NULL; |
| 1343 | else |
| 1344 | { |
| 1345 | li = list_find(l, (long) first); |
| 1346 | if (li == NULL) |
| 1347 | { |
| 1348 | PyErr_SetVim(_("internal error: no vim list item")); |
| 1349 | return -1; |
| 1350 | } |
| 1351 | if (last > first) |
| 1352 | { |
| 1353 | i = last - first; |
| 1354 | while (i-- && li != NULL) |
| 1355 | { |
| 1356 | next = li->li_next; |
| 1357 | listitem_remove(l, li); |
| 1358 | li = next; |
| 1359 | } |
| 1360 | } |
| 1361 | } |
| 1362 | |
| 1363 | if (obj == NULL) |
| 1364 | return 0; |
| 1365 | |
| 1366 | if (!PyList_Check(obj)) |
| 1367 | { |
| 1368 | PyErr_SetString(PyExc_TypeError, _("can only assign lists to slice")); |
| 1369 | return -1; |
| 1370 | } |
| 1371 | |
| 1372 | lsize = PyList_Size(obj); |
| 1373 | |
| 1374 | for(i=0; i<lsize; i++) |
| 1375 | { |
| 1376 | litem = PyList_GetItem(obj, i); |
| 1377 | if (litem == NULL) |
| 1378 | return -1; |
| 1379 | if (ConvertFromPyObject(litem, &v) == -1) |
| 1380 | return -1; |
| 1381 | if (list_insert_tv(l, &v, li) == FAIL) |
| 1382 | { |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1383 | clear_tv(&v); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1384 | PyErr_SetVim(_("internal error: failed to add item to list")); |
| 1385 | return -1; |
| 1386 | } |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1387 | clear_tv(&v); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1388 | } |
| 1389 | return 0; |
| 1390 | } |
| 1391 | |
| 1392 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1393 | ListConcatInPlace(ListObject *self, PyObject *obj) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1394 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1395 | list_T *l = self->list; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1396 | PyObject *lookup_dict; |
| 1397 | |
| 1398 | if (l->lv_lock) |
| 1399 | { |
| 1400 | PyErr_SetVim(_("list is locked")); |
| 1401 | return NULL; |
| 1402 | } |
| 1403 | |
| 1404 | if (!PySequence_Check(obj)) |
| 1405 | { |
| 1406 | PyErr_SetString(PyExc_TypeError, _("can only concatenate with lists")); |
| 1407 | return NULL; |
| 1408 | } |
| 1409 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 1410 | if (!(lookup_dict = PyDict_New())) |
| 1411 | return NULL; |
| 1412 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1413 | if (list_py_concat(l, obj, lookup_dict) == -1) |
| 1414 | { |
| 1415 | Py_DECREF(lookup_dict); |
| 1416 | return NULL; |
| 1417 | } |
| 1418 | Py_DECREF(lookup_dict); |
| 1419 | |
| 1420 | Py_INCREF(self); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1421 | return (PyObject *)(self); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1422 | } |
| 1423 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 1424 | static char *ListAttrs[] = { |
| 1425 | "locked", |
| 1426 | NULL |
| 1427 | }; |
| 1428 | |
| 1429 | static PyObject * |
| 1430 | ListDir(PyObject *self) |
| 1431 | { |
| 1432 | return ObjectDir(self, ListAttrs); |
| 1433 | } |
| 1434 | |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 1435 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1436 | ListSetattr(ListObject *self, char *name, PyObject *val) |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 1437 | { |
| 1438 | if (val == NULL) |
| 1439 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 1440 | PyErr_SetString(PyExc_AttributeError, |
| 1441 | _("cannot delete vim.dictionary attributes")); |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 1442 | return -1; |
| 1443 | } |
| 1444 | |
| 1445 | if (strcmp(name, "locked") == 0) |
| 1446 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1447 | if (self->list->lv_lock == VAR_FIXED) |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 1448 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 1449 | PyErr_SetString(PyExc_TypeError, _("cannot modify fixed list")); |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 1450 | return -1; |
| 1451 | } |
| 1452 | else |
| 1453 | { |
Bram Moolenaar | b983f75 | 2013-05-15 16:11:50 +0200 | [diff] [blame] | 1454 | int istrue = PyObject_IsTrue(val); |
| 1455 | if (istrue == -1) |
| 1456 | return -1; |
| 1457 | else if (istrue) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1458 | self->list->lv_lock = VAR_LOCKED; |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 1459 | else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1460 | self->list->lv_lock = 0; |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 1461 | } |
| 1462 | return 0; |
| 1463 | } |
| 1464 | else |
| 1465 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 1466 | PyErr_SetString(PyExc_AttributeError, _("cannot set this attribute")); |
Bram Moolenaar | 66b7985 | 2012-09-21 14:00:35 +0200 | [diff] [blame] | 1467 | return -1; |
| 1468 | } |
| 1469 | } |
| 1470 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1471 | static struct PyMethodDef ListMethods[] = { |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 1472 | {"extend", (PyCFunction)ListConcatInPlace, METH_O, ""}, |
| 1473 | {"__dir__", (PyCFunction)ListDir, METH_NOARGS, ""}, |
| 1474 | { NULL, NULL, 0, NULL} |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1475 | }; |
| 1476 | |
| 1477 | typedef struct |
| 1478 | { |
| 1479 | PyObject_HEAD |
| 1480 | char_u *name; |
| 1481 | } FunctionObject; |
| 1482 | |
| 1483 | static PyTypeObject FunctionType; |
| 1484 | |
| 1485 | static PyObject * |
| 1486 | FunctionNew(char_u *name) |
| 1487 | { |
| 1488 | FunctionObject *self; |
| 1489 | |
| 1490 | self = PyObject_NEW(FunctionObject, &FunctionType); |
| 1491 | if (self == NULL) |
| 1492 | return NULL; |
| 1493 | self->name = PyMem_New(char_u, STRLEN(name) + 1); |
| 1494 | if (self->name == NULL) |
| 1495 | { |
| 1496 | PyErr_NoMemory(); |
| 1497 | return NULL; |
| 1498 | } |
| 1499 | STRCPY(self->name, name); |
| 1500 | func_ref(name); |
| 1501 | return (PyObject *)(self); |
| 1502 | } |
| 1503 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 1504 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1505 | FunctionDestructor(FunctionObject *self) |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 1506 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1507 | func_unref(self->name); |
| 1508 | PyMem_Free(self->name); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 1509 | |
| 1510 | DESTRUCTOR_FINISH(self); |
| 1511 | } |
| 1512 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 1513 | static char *FunctionAttrs[] = { |
| 1514 | "softspace", |
| 1515 | NULL |
| 1516 | }; |
| 1517 | |
| 1518 | static PyObject * |
| 1519 | FunctionDir(PyObject *self) |
| 1520 | { |
| 1521 | return ObjectDir(self, FunctionAttrs); |
| 1522 | } |
| 1523 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1524 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1525 | FunctionCall(FunctionObject *self, PyObject *argsObject, PyObject *kwargs) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1526 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1527 | char_u *name = self->name; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1528 | typval_T args; |
| 1529 | typval_T selfdicttv; |
| 1530 | typval_T rettv; |
| 1531 | dict_T *selfdict = NULL; |
| 1532 | PyObject *selfdictObject; |
| 1533 | PyObject *result; |
| 1534 | int error; |
| 1535 | |
| 1536 | if (ConvertFromPyObject(argsObject, &args) == -1) |
| 1537 | return NULL; |
| 1538 | |
| 1539 | if (kwargs != NULL) |
| 1540 | { |
| 1541 | selfdictObject = PyDict_GetItemString(kwargs, "self"); |
| 1542 | if (selfdictObject != NULL) |
| 1543 | { |
Bram Moolenaar | 9581b5f | 2012-07-25 15:36:04 +0200 | [diff] [blame] | 1544 | if (!PyMapping_Check(selfdictObject)) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1545 | { |
Bram Moolenaar | 9581b5f | 2012-07-25 15:36:04 +0200 | [diff] [blame] | 1546 | PyErr_SetString(PyExc_TypeError, |
| 1547 | _("'self' argument must be a dictionary")); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1548 | clear_tv(&args); |
| 1549 | return NULL; |
| 1550 | } |
| 1551 | if (ConvertFromPyObject(selfdictObject, &selfdicttv) == -1) |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1552 | { |
| 1553 | clear_tv(&args); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1554 | return NULL; |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1555 | } |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1556 | selfdict = selfdicttv.vval.v_dict; |
| 1557 | } |
| 1558 | } |
| 1559 | |
Bram Moolenaar | 71700b8 | 2013-05-15 17:49:05 +0200 | [diff] [blame] | 1560 | Py_BEGIN_ALLOW_THREADS |
| 1561 | Python_Lock_Vim(); |
| 1562 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 1563 | VimTryStart(); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1564 | error = func_call(name, &args, selfdict, &rettv); |
Bram Moolenaar | 71700b8 | 2013-05-15 17:49:05 +0200 | [diff] [blame] | 1565 | |
| 1566 | Python_Release_Vim(); |
| 1567 | Py_END_ALLOW_THREADS |
| 1568 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 1569 | if (VimTryEnd()) |
| 1570 | result = NULL; |
| 1571 | else if (error != OK) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1572 | { |
| 1573 | result = NULL; |
| 1574 | PyErr_SetVim(_("failed to run function")); |
| 1575 | } |
| 1576 | else |
| 1577 | result = ConvertToPyObject(&rettv); |
| 1578 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1579 | clear_tv(&args); |
| 1580 | clear_tv(&rettv); |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1581 | if (selfdict != NULL) |
| 1582 | clear_tv(&selfdicttv); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1583 | |
| 1584 | return result; |
| 1585 | } |
| 1586 | |
Bram Moolenaar | a5b725c | 2013-05-30 12:43:54 +0200 | [diff] [blame^] | 1587 | static PyObject * |
| 1588 | FunctionRepr(FunctionObject *self) |
| 1589 | { |
| 1590 | return PyString_FromFormat("<vim.Function '%s'>", self->name); |
| 1591 | } |
| 1592 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1593 | static struct PyMethodDef FunctionMethods[] = { |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 1594 | {"__call__",(PyCFunction)FunctionCall, METH_VARARGS|METH_KEYWORDS, ""}, |
| 1595 | {"__dir__", (PyCFunction)FunctionDir, METH_NOARGS, ""}, |
| 1596 | { NULL, NULL, 0, NULL} |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 1597 | }; |
| 1598 | |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1599 | /* |
| 1600 | * Options object |
| 1601 | */ |
| 1602 | |
| 1603 | static PyTypeObject OptionsType; |
| 1604 | |
| 1605 | typedef int (*checkfun)(void *); |
| 1606 | |
| 1607 | typedef struct |
| 1608 | { |
| 1609 | PyObject_HEAD |
| 1610 | int opt_type; |
| 1611 | void *from; |
| 1612 | checkfun Check; |
| 1613 | PyObject *fromObj; |
| 1614 | } OptionsObject; |
| 1615 | |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 1616 | static int |
| 1617 | dummy_check(void *arg UNUSED) |
| 1618 | { |
| 1619 | return 0; |
| 1620 | } |
| 1621 | |
| 1622 | static PyObject * |
| 1623 | OptionsNew(int opt_type, void *from, checkfun Check, PyObject *fromObj) |
| 1624 | { |
| 1625 | OptionsObject *self; |
| 1626 | |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 1627 | self = PyObject_GC_New(OptionsObject, &OptionsType); |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 1628 | if (self == NULL) |
| 1629 | return NULL; |
| 1630 | |
| 1631 | self->opt_type = opt_type; |
| 1632 | self->from = from; |
| 1633 | self->Check = Check; |
| 1634 | self->fromObj = fromObj; |
| 1635 | if (fromObj) |
| 1636 | Py_INCREF(fromObj); |
| 1637 | |
| 1638 | return (PyObject *)(self); |
| 1639 | } |
| 1640 | |
| 1641 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1642 | OptionsDestructor(OptionsObject *self) |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 1643 | { |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 1644 | PyObject_GC_UnTrack((void *)(self)); |
| 1645 | Py_XDECREF(self->fromObj); |
| 1646 | PyObject_GC_Del((void *)(self)); |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 1647 | } |
| 1648 | |
| 1649 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1650 | OptionsTraverse(OptionsObject *self, visitproc visit, void *arg) |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 1651 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1652 | Py_VISIT(self->fromObj); |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 1653 | return 0; |
| 1654 | } |
| 1655 | |
| 1656 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1657 | OptionsClear(OptionsObject *self) |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 1658 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1659 | Py_CLEAR(self->fromObj); |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 1660 | return 0; |
| 1661 | } |
| 1662 | |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1663 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1664 | OptionsItem(OptionsObject *self, PyObject *keyObject) |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1665 | { |
| 1666 | char_u *key; |
| 1667 | int flags; |
| 1668 | long numval; |
| 1669 | char_u *stringval; |
Bram Moolenaar | 161fb5e | 2013-05-06 06:26:15 +0200 | [diff] [blame] | 1670 | DICTKEY_DECL |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1671 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1672 | if (self->Check(self->from)) |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1673 | return NULL; |
| 1674 | |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 1675 | DICTKEY_GET(NULL, 0) |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1676 | |
| 1677 | flags = get_option_value_strict(key, &numval, &stringval, |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1678 | self->opt_type, self->from); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1679 | |
| 1680 | DICTKEY_UNREF |
| 1681 | |
| 1682 | if (flags == 0) |
| 1683 | { |
Bram Moolenaar | 4d188da | 2013-05-15 15:35:09 +0200 | [diff] [blame] | 1684 | PyErr_SetObject(PyExc_KeyError, keyObject); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1685 | return NULL; |
| 1686 | } |
| 1687 | |
| 1688 | if (flags & SOPT_UNSET) |
| 1689 | { |
| 1690 | Py_INCREF(Py_None); |
| 1691 | return Py_None; |
| 1692 | } |
| 1693 | else if (flags & SOPT_BOOL) |
| 1694 | { |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1695 | PyObject *r; |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1696 | r = numval ? Py_True : Py_False; |
| 1697 | Py_INCREF(r); |
| 1698 | return r; |
| 1699 | } |
| 1700 | else if (flags & SOPT_NUM) |
| 1701 | return PyInt_FromLong(numval); |
| 1702 | else if (flags & SOPT_STRING) |
| 1703 | { |
| 1704 | if (stringval) |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1705 | { |
| 1706 | PyObject *r = PyBytes_FromString((char *) stringval); |
| 1707 | vim_free(stringval); |
| 1708 | return r; |
| 1709 | } |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1710 | else |
| 1711 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 1712 | PyErr_SetString(PyExc_RuntimeError, |
| 1713 | _("unable to get option value")); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1714 | return NULL; |
| 1715 | } |
| 1716 | } |
| 1717 | else |
| 1718 | { |
| 1719 | PyErr_SetVim("Internal error: unknown option type. Should not happen"); |
| 1720 | return NULL; |
| 1721 | } |
| 1722 | } |
| 1723 | |
| 1724 | static int |
Bram Moolenaar | c96ebe7 | 2013-05-21 22:38:18 +0200 | [diff] [blame] | 1725 | set_option_value_err(key, numval, stringval, opt_flags) |
| 1726 | char_u *key; |
| 1727 | int numval; |
| 1728 | char_u *stringval; |
| 1729 | int opt_flags; |
| 1730 | { |
| 1731 | char_u *errmsg; |
| 1732 | |
| 1733 | if ((errmsg = set_option_value(key, numval, stringval, opt_flags))) |
| 1734 | { |
| 1735 | if (VimTryEnd()) |
| 1736 | return FAIL; |
| 1737 | PyErr_SetVim((char *)errmsg); |
| 1738 | return FAIL; |
| 1739 | } |
| 1740 | return OK; |
| 1741 | } |
| 1742 | |
| 1743 | static int |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1744 | set_option_value_for(key, numval, stringval, opt_flags, opt_type, from) |
| 1745 | char_u *key; |
| 1746 | int numval; |
| 1747 | char_u *stringval; |
| 1748 | int opt_flags; |
| 1749 | int opt_type; |
| 1750 | void *from; |
| 1751 | { |
Bram Moolenaar | 0b9aecc | 2013-05-21 22:13:41 +0200 | [diff] [blame] | 1752 | win_T *save_curwin = NULL; |
| 1753 | tabpage_T *save_curtab = NULL; |
| 1754 | buf_T *save_curbuf = NULL; |
Bram Moolenaar | c96ebe7 | 2013-05-21 22:38:18 +0200 | [diff] [blame] | 1755 | int r = 0; |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1756 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 1757 | VimTryStart(); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1758 | switch (opt_type) |
| 1759 | { |
| 1760 | case SREQ_WIN: |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 1761 | if (switch_win(&save_curwin, &save_curtab, (win_T *)from, |
| 1762 | win_find_tabpage((win_T *)from)) == FAIL) |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1763 | { |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 1764 | if (VimTryEnd()) |
| 1765 | return -1; |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1766 | PyErr_SetVim("Problem while switching windows."); |
| 1767 | return -1; |
| 1768 | } |
Bram Moolenaar | c96ebe7 | 2013-05-21 22:38:18 +0200 | [diff] [blame] | 1769 | r = set_option_value_err(key, numval, stringval, opt_flags); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1770 | restore_win(save_curwin, save_curtab); |
Bram Moolenaar | c96ebe7 | 2013-05-21 22:38:18 +0200 | [diff] [blame] | 1771 | if (r == FAIL) |
| 1772 | return -1; |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1773 | break; |
| 1774 | case SREQ_BUF: |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 1775 | switch_buffer(&save_curbuf, (buf_T *)from); |
Bram Moolenaar | c96ebe7 | 2013-05-21 22:38:18 +0200 | [diff] [blame] | 1776 | r = set_option_value_err(key, numval, stringval, opt_flags); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 1777 | restore_buffer(save_curbuf); |
Bram Moolenaar | c96ebe7 | 2013-05-21 22:38:18 +0200 | [diff] [blame] | 1778 | if (r == FAIL) |
| 1779 | return -1; |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1780 | break; |
| 1781 | case SREQ_GLOBAL: |
Bram Moolenaar | c96ebe7 | 2013-05-21 22:38:18 +0200 | [diff] [blame] | 1782 | r = set_option_value_err(key, numval, stringval, opt_flags); |
| 1783 | if (r == FAIL) |
| 1784 | return -1; |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1785 | break; |
| 1786 | } |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 1787 | return VimTryEnd(); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1788 | } |
| 1789 | |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 1790 | static void * |
| 1791 | py_memsave(void *p, size_t len) |
| 1792 | { |
| 1793 | void *r; |
| 1794 | if (!(r = PyMem_Malloc(len))) |
| 1795 | return NULL; |
| 1796 | mch_memmove(r, p, len); |
| 1797 | return r; |
| 1798 | } |
| 1799 | |
| 1800 | #define PY_STRSAVE(s) ((char_u *) py_memsave(s, STRLEN(s) + 1)) |
| 1801 | |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1802 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1803 | OptionsAssItem(OptionsObject *self, PyObject *keyObject, PyObject *valObject) |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1804 | { |
| 1805 | char_u *key; |
| 1806 | int flags; |
| 1807 | int opt_flags; |
| 1808 | int r = 0; |
Bram Moolenaar | 161fb5e | 2013-05-06 06:26:15 +0200 | [diff] [blame] | 1809 | DICTKEY_DECL |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1810 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1811 | if (self->Check(self->from)) |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1812 | return -1; |
| 1813 | |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 1814 | DICTKEY_GET(-1, 0) |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1815 | |
| 1816 | flags = get_option_value_strict(key, NULL, NULL, |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1817 | self->opt_type, self->from); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1818 | |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1819 | if (flags == 0) |
| 1820 | { |
Bram Moolenaar | 4d188da | 2013-05-15 15:35:09 +0200 | [diff] [blame] | 1821 | PyErr_SetObject(PyExc_KeyError, keyObject); |
Bram Moolenaar | 1bc2428 | 2013-05-29 21:37:35 +0200 | [diff] [blame] | 1822 | DICTKEY_UNREF |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1823 | return -1; |
| 1824 | } |
| 1825 | |
| 1826 | if (valObject == NULL) |
| 1827 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1828 | if (self->opt_type == SREQ_GLOBAL) |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1829 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 1830 | PyErr_SetString(PyExc_ValueError, |
| 1831 | _("unable to unset global option")); |
Bram Moolenaar | 1bc2428 | 2013-05-29 21:37:35 +0200 | [diff] [blame] | 1832 | DICTKEY_UNREF |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1833 | return -1; |
| 1834 | } |
| 1835 | else if (!(flags & SOPT_GLOBAL)) |
| 1836 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 1837 | PyErr_SetString(PyExc_ValueError, _("unable to unset option " |
| 1838 | "without global value")); |
Bram Moolenaar | 1bc2428 | 2013-05-29 21:37:35 +0200 | [diff] [blame] | 1839 | DICTKEY_UNREF |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1840 | return -1; |
| 1841 | } |
| 1842 | else |
| 1843 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1844 | unset_global_local_option(key, self->from); |
Bram Moolenaar | 1bc2428 | 2013-05-29 21:37:35 +0200 | [diff] [blame] | 1845 | DICTKEY_UNREF |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1846 | return 0; |
| 1847 | } |
| 1848 | } |
| 1849 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1850 | opt_flags = (self->opt_type ? OPT_LOCAL : OPT_GLOBAL); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1851 | |
| 1852 | if (flags & SOPT_BOOL) |
| 1853 | { |
Bram Moolenaar | b983f75 | 2013-05-15 16:11:50 +0200 | [diff] [blame] | 1854 | int istrue = PyObject_IsTrue(valObject); |
Bram Moolenaar | c96ebe7 | 2013-05-21 22:38:18 +0200 | [diff] [blame] | 1855 | |
Bram Moolenaar | b983f75 | 2013-05-15 16:11:50 +0200 | [diff] [blame] | 1856 | if (istrue == -1) |
Bram Moolenaar | 1bc2428 | 2013-05-29 21:37:35 +0200 | [diff] [blame] | 1857 | r = -1; |
| 1858 | else |
| 1859 | r = set_option_value_for(key, istrue, NULL, |
| 1860 | opt_flags, self->opt_type, self->from); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1861 | } |
| 1862 | else if (flags & SOPT_NUM) |
| 1863 | { |
| 1864 | int val; |
| 1865 | |
| 1866 | #if PY_MAJOR_VERSION < 3 |
| 1867 | if (PyInt_Check(valObject)) |
| 1868 | val = PyInt_AsLong(valObject); |
| 1869 | else |
| 1870 | #endif |
| 1871 | if (PyLong_Check(valObject)) |
| 1872 | val = PyLong_AsLong(valObject); |
| 1873 | else |
| 1874 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 1875 | PyErr_SetString(PyExc_TypeError, _("object must be integer")); |
Bram Moolenaar | 1bc2428 | 2013-05-29 21:37:35 +0200 | [diff] [blame] | 1876 | DICTKEY_UNREF |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1877 | return -1; |
| 1878 | } |
| 1879 | |
| 1880 | r = set_option_value_for(key, val, NULL, opt_flags, |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1881 | self->opt_type, self->from); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1882 | } |
| 1883 | else |
| 1884 | { |
| 1885 | char_u *val; |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 1886 | PyObject *todecref; |
| 1887 | |
| 1888 | if ((val = StringToChars(valObject, &todecref))) |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1889 | { |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 1890 | r = set_option_value_for(key, 0, val, opt_flags, |
| 1891 | self->opt_type, self->from); |
| 1892 | Py_XDECREF(todecref); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1893 | } |
| 1894 | else |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 1895 | r = -1; |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1896 | } |
| 1897 | |
Bram Moolenaar | 1bc2428 | 2013-05-29 21:37:35 +0200 | [diff] [blame] | 1898 | DICTKEY_UNREF |
| 1899 | |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1900 | return r; |
| 1901 | } |
| 1902 | |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 1903 | static PyMappingMethods OptionsAsMapping = { |
| 1904 | (lenfunc) NULL, |
| 1905 | (binaryfunc) OptionsItem, |
| 1906 | (objobjargproc) OptionsAssItem, |
| 1907 | }; |
| 1908 | |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1909 | /* Tabpage object |
| 1910 | */ |
| 1911 | |
| 1912 | typedef struct |
| 1913 | { |
| 1914 | PyObject_HEAD |
| 1915 | tabpage_T *tab; |
| 1916 | } TabPageObject; |
| 1917 | |
| 1918 | static PyObject *WinListNew(TabPageObject *tabObject); |
| 1919 | |
| 1920 | static PyTypeObject TabPageType; |
| 1921 | |
| 1922 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1923 | CheckTabPage(TabPageObject *self) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1924 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1925 | if (self->tab == INVALID_TABPAGE_VALUE) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1926 | { |
| 1927 | PyErr_SetVim(_("attempt to refer to deleted tab page")); |
| 1928 | return -1; |
| 1929 | } |
| 1930 | |
| 1931 | return 0; |
| 1932 | } |
| 1933 | |
| 1934 | static PyObject * |
| 1935 | TabPageNew(tabpage_T *tab) |
| 1936 | { |
| 1937 | TabPageObject *self; |
| 1938 | |
| 1939 | if (TAB_PYTHON_REF(tab)) |
| 1940 | { |
| 1941 | self = TAB_PYTHON_REF(tab); |
| 1942 | Py_INCREF(self); |
| 1943 | } |
| 1944 | else |
| 1945 | { |
| 1946 | self = PyObject_NEW(TabPageObject, &TabPageType); |
| 1947 | if (self == NULL) |
| 1948 | return NULL; |
| 1949 | self->tab = tab; |
| 1950 | TAB_PYTHON_REF(tab) = self; |
| 1951 | } |
| 1952 | |
| 1953 | return (PyObject *)(self); |
| 1954 | } |
| 1955 | |
| 1956 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1957 | TabPageDestructor(TabPageObject *self) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1958 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1959 | if (self->tab && self->tab != INVALID_TABPAGE_VALUE) |
| 1960 | TAB_PYTHON_REF(self->tab) = NULL; |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1961 | |
| 1962 | DESTRUCTOR_FINISH(self); |
| 1963 | } |
| 1964 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 1965 | static char *TabPageAttrs[] = { |
| 1966 | "windows", "number", "vars", "window", "valid", |
| 1967 | NULL |
| 1968 | }; |
| 1969 | |
| 1970 | static PyObject * |
| 1971 | TabPageDir(PyObject *self) |
| 1972 | { |
| 1973 | return ObjectDir(self, TabPageAttrs); |
| 1974 | } |
| 1975 | |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1976 | static PyObject * |
Bram Moolenaar | 9e822c0 | 2013-05-29 22:15:30 +0200 | [diff] [blame] | 1977 | TabPageAttrValid(TabPageObject *self, char *name) |
| 1978 | { |
| 1979 | PyObject *r; |
| 1980 | |
| 1981 | if (strcmp(name, "valid") != 0) |
| 1982 | return NULL; |
| 1983 | |
| 1984 | r = ((self->tab == INVALID_TABPAGE_VALUE) ? Py_False : Py_True); |
| 1985 | Py_INCREF(r); |
| 1986 | return r; |
| 1987 | } |
| 1988 | |
| 1989 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1990 | TabPageAttr(TabPageObject *self, char *name) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1991 | { |
| 1992 | if (strcmp(name, "windows") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1993 | return WinListNew(self); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1994 | else if (strcmp(name, "number") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1995 | return PyLong_FromLong((long) get_tab_number(self->tab)); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1996 | else if (strcmp(name, "vars") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 1997 | return DictionaryNew(self->tab->tp_vars); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 1998 | else if (strcmp(name, "window") == 0) |
| 1999 | { |
| 2000 | /* For current tab window.c does not bother to set or update tp_curwin |
| 2001 | */ |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2002 | if (self->tab == curtab) |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2003 | return WindowNew(curwin, curtab); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2004 | else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2005 | return WindowNew(self->tab->tp_curwin, self->tab); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2006 | } |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 2007 | else if (strcmp(name, "__members__") == 0) |
| 2008 | return ObjectDir(NULL, TabPageAttrs); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2009 | return NULL; |
| 2010 | } |
| 2011 | |
| 2012 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2013 | TabPageRepr(TabPageObject *self) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2014 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2015 | if (self->tab == INVALID_TABPAGE_VALUE) |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 2016 | return PyString_FromFormat("<tabpage object (deleted) at %p>", (self)); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2017 | else |
| 2018 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2019 | int t = get_tab_number(self->tab); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2020 | |
| 2021 | if (t == 0) |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 2022 | return PyString_FromFormat("<tabpage object (unknown) at %p>", |
| 2023 | (self)); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2024 | else |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 2025 | return PyString_FromFormat("<tabpage %d>", t - 1); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2026 | } |
| 2027 | } |
| 2028 | |
| 2029 | static struct PyMethodDef TabPageMethods[] = { |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 2030 | /* name, function, calling, documentation */ |
| 2031 | {"__dir__", (PyCFunction)TabPageDir, METH_NOARGS, ""}, |
| 2032 | { NULL, NULL, 0, NULL} |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2033 | }; |
| 2034 | |
| 2035 | /* |
| 2036 | * Window list object |
| 2037 | */ |
| 2038 | |
| 2039 | static PyTypeObject TabListType; |
| 2040 | static PySequenceMethods TabListAsSeq; |
| 2041 | |
| 2042 | typedef struct |
| 2043 | { |
| 2044 | PyObject_HEAD |
| 2045 | } TabListObject; |
| 2046 | |
| 2047 | static PyInt |
| 2048 | TabListLength(PyObject *self UNUSED) |
| 2049 | { |
| 2050 | tabpage_T *tp = first_tabpage; |
| 2051 | PyInt n = 0; |
| 2052 | |
| 2053 | while (tp != NULL) |
| 2054 | { |
| 2055 | ++n; |
| 2056 | tp = tp->tp_next; |
| 2057 | } |
| 2058 | |
| 2059 | return n; |
| 2060 | } |
| 2061 | |
| 2062 | static PyObject * |
| 2063 | TabListItem(PyObject *self UNUSED, PyInt n) |
| 2064 | { |
| 2065 | tabpage_T *tp; |
| 2066 | |
| 2067 | for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, --n) |
| 2068 | if (n == 0) |
| 2069 | return TabPageNew(tp); |
| 2070 | |
| 2071 | PyErr_SetString(PyExc_IndexError, _("no such tab page")); |
| 2072 | return NULL; |
| 2073 | } |
| 2074 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2075 | /* Window object |
| 2076 | */ |
| 2077 | |
| 2078 | typedef struct |
| 2079 | { |
| 2080 | PyObject_HEAD |
| 2081 | win_T *win; |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2082 | TabPageObject *tabObject; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2083 | } WindowObject; |
| 2084 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2085 | static PyTypeObject WindowType; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2086 | |
| 2087 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2088 | CheckWindow(WindowObject *self) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2089 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2090 | if (self->win == INVALID_WINDOW_VALUE) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2091 | { |
| 2092 | PyErr_SetVim(_("attempt to refer to deleted window")); |
| 2093 | return -1; |
| 2094 | } |
| 2095 | |
| 2096 | return 0; |
| 2097 | } |
| 2098 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2099 | static PyObject * |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2100 | WindowNew(win_T *win, tabpage_T *tab) |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 2101 | { |
| 2102 | /* We need to handle deletion of windows underneath us. |
| 2103 | * If we add a "w_python*_ref" field to the win_T structure, |
| 2104 | * then we can get at it in win_free() in vim. We then |
| 2105 | * need to create only ONE Python object per window - if |
| 2106 | * we try to create a second, just INCREF the existing one |
| 2107 | * and return it. The (single) Python object referring to |
| 2108 | * the window is stored in "w_python*_ref". |
| 2109 | * On a win_free() we set the Python object's win_T* field |
| 2110 | * to an invalid value. We trap all uses of a window |
| 2111 | * object, and reject them if the win_T* field is invalid. |
| 2112 | * |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2113 | * Python2 and Python3 get different fields and different objects: |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 2114 | * w_python_ref and w_python3_ref fields respectively. |
| 2115 | */ |
| 2116 | |
| 2117 | WindowObject *self; |
| 2118 | |
| 2119 | if (WIN_PYTHON_REF(win)) |
| 2120 | { |
| 2121 | self = WIN_PYTHON_REF(win); |
| 2122 | Py_INCREF(self); |
| 2123 | } |
| 2124 | else |
| 2125 | { |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 2126 | self = PyObject_GC_New(WindowObject, &WindowType); |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 2127 | if (self == NULL) |
| 2128 | return NULL; |
| 2129 | self->win = win; |
| 2130 | WIN_PYTHON_REF(win) = self; |
| 2131 | } |
| 2132 | |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2133 | self->tabObject = ((TabPageObject *)(TabPageNew(tab))); |
| 2134 | |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 2135 | return (PyObject *)(self); |
| 2136 | } |
| 2137 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2138 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2139 | WindowDestructor(WindowObject *self) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2140 | { |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 2141 | PyObject_GC_UnTrack((void *)(self)); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2142 | if (self->win && self->win != INVALID_WINDOW_VALUE) |
| 2143 | WIN_PYTHON_REF(self->win) = NULL; |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 2144 | Py_XDECREF(((PyObject *)(self->tabObject))); |
| 2145 | PyObject_GC_Del((void *)(self)); |
| 2146 | } |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2147 | |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 2148 | static int |
| 2149 | WindowTraverse(WindowObject *self, visitproc visit, void *arg) |
| 2150 | { |
| 2151 | Py_VISIT(((PyObject *)(self->tabObject))); |
| 2152 | return 0; |
| 2153 | } |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2154 | |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 2155 | static int |
| 2156 | WindowClear(WindowObject *self) |
| 2157 | { |
| 2158 | Py_CLEAR(self->tabObject); |
| 2159 | return 0; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2160 | } |
| 2161 | |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2162 | static win_T * |
| 2163 | get_firstwin(TabPageObject *tabObject) |
| 2164 | { |
| 2165 | if (tabObject) |
| 2166 | { |
| 2167 | if (CheckTabPage(tabObject)) |
| 2168 | return NULL; |
| 2169 | /* For current tab window.c does not bother to set or update tp_firstwin |
| 2170 | */ |
| 2171 | else if (tabObject->tab == curtab) |
| 2172 | return firstwin; |
| 2173 | else |
| 2174 | return tabObject->tab->tp_firstwin; |
| 2175 | } |
| 2176 | else |
| 2177 | return firstwin; |
| 2178 | } |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 2179 | static char *WindowAttrs[] = { |
| 2180 | "buffer", "cursor", "height", "vars", "options", "number", "row", "col", |
| 2181 | "tabpage", "valid", |
| 2182 | NULL |
| 2183 | }; |
| 2184 | |
| 2185 | static PyObject * |
| 2186 | WindowDir(PyObject *self) |
| 2187 | { |
| 2188 | return ObjectDir(self, WindowAttrs); |
| 2189 | } |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2190 | |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 2191 | static PyObject * |
Bram Moolenaar | 9e822c0 | 2013-05-29 22:15:30 +0200 | [diff] [blame] | 2192 | WindowAttrValid(WindowObject *self, char *name) |
| 2193 | { |
| 2194 | PyObject *r; |
| 2195 | |
| 2196 | if (strcmp(name, "valid") != 0) |
| 2197 | return NULL; |
| 2198 | |
| 2199 | r = ((self->win == INVALID_WINDOW_VALUE) ? Py_False : Py_True); |
| 2200 | Py_INCREF(r); |
| 2201 | return r; |
| 2202 | } |
| 2203 | |
| 2204 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2205 | WindowAttr(WindowObject *self, char *name) |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2206 | { |
| 2207 | if (strcmp(name, "buffer") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2208 | return (PyObject *)BufferNew(self->win->w_buffer); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2209 | else if (strcmp(name, "cursor") == 0) |
| 2210 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2211 | pos_T *pos = &self->win->w_cursor; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2212 | |
| 2213 | return Py_BuildValue("(ll)", (long)(pos->lnum), (long)(pos->col)); |
| 2214 | } |
| 2215 | else if (strcmp(name, "height") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2216 | return PyLong_FromLong((long)(self->win->w_height)); |
Bram Moolenaar | 4e5dfb5 | 2013-05-12 19:30:31 +0200 | [diff] [blame] | 2217 | #ifdef FEAT_WINDOWS |
| 2218 | else if (strcmp(name, "row") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2219 | return PyLong_FromLong((long)(self->win->w_winrow)); |
Bram Moolenaar | 4e5dfb5 | 2013-05-12 19:30:31 +0200 | [diff] [blame] | 2220 | #endif |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2221 | #ifdef FEAT_VERTSPLIT |
| 2222 | else if (strcmp(name, "width") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2223 | return PyLong_FromLong((long)(W_WIDTH(self->win))); |
Bram Moolenaar | 4e5dfb5 | 2013-05-12 19:30:31 +0200 | [diff] [blame] | 2224 | else if (strcmp(name, "col") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2225 | return PyLong_FromLong((long)(W_WINCOL(self->win))); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2226 | #endif |
Bram Moolenaar | 230bb3f | 2013-04-24 14:07:45 +0200 | [diff] [blame] | 2227 | else if (strcmp(name, "vars") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2228 | return DictionaryNew(self->win->w_vars); |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 2229 | else if (strcmp(name, "options") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2230 | return OptionsNew(SREQ_WIN, self->win, (checkfun) CheckWindow, |
| 2231 | (PyObject *) self); |
Bram Moolenaar | 6d21645 | 2013-05-12 19:00:41 +0200 | [diff] [blame] | 2232 | else if (strcmp(name, "number") == 0) |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2233 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2234 | if (CheckTabPage(self->tabObject)) |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2235 | return NULL; |
| 2236 | return PyLong_FromLong((long) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2237 | get_win_number(self->win, get_firstwin(self->tabObject))); |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2238 | } |
| 2239 | else if (strcmp(name, "tabpage") == 0) |
| 2240 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2241 | Py_INCREF(self->tabObject); |
| 2242 | return (PyObject *)(self->tabObject); |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 2243 | } |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 2244 | else if (strcmp(name, "__members__") == 0) |
| 2245 | return ObjectDir(NULL, WindowAttrs); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2246 | else |
| 2247 | return NULL; |
| 2248 | } |
| 2249 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2250 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2251 | WindowSetattr(WindowObject *self, char *name, PyObject *val) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2252 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2253 | if (CheckWindow(self)) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2254 | return -1; |
| 2255 | |
| 2256 | if (strcmp(name, "buffer") == 0) |
| 2257 | { |
| 2258 | PyErr_SetString(PyExc_TypeError, _("readonly attribute")); |
| 2259 | return -1; |
| 2260 | } |
| 2261 | else if (strcmp(name, "cursor") == 0) |
| 2262 | { |
| 2263 | long lnum; |
| 2264 | long col; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2265 | |
| 2266 | if (!PyArg_Parse(val, "(ll)", &lnum, &col)) |
| 2267 | return -1; |
| 2268 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2269 | if (lnum <= 0 || lnum > self->win->w_buffer->b_ml.ml_line_count) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2270 | { |
| 2271 | PyErr_SetVim(_("cursor position outside buffer")); |
| 2272 | return -1; |
| 2273 | } |
| 2274 | |
| 2275 | /* Check for keyboard interrupts */ |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2276 | if (VimCheckInterrupt()) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2277 | return -1; |
| 2278 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2279 | self->win->w_cursor.lnum = lnum; |
| 2280 | self->win->w_cursor.col = col; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2281 | #ifdef FEAT_VIRTUALEDIT |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2282 | self->win->w_cursor.coladd = 0; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2283 | #endif |
Bram Moolenaar | 03a807a | 2011-07-07 15:08:58 +0200 | [diff] [blame] | 2284 | /* When column is out of range silently correct it. */ |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2285 | check_cursor_col_win(self->win); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2286 | |
Bram Moolenaar | 03a807a | 2011-07-07 15:08:58 +0200 | [diff] [blame] | 2287 | update_screen(VALID); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2288 | return 0; |
| 2289 | } |
| 2290 | else if (strcmp(name, "height") == 0) |
| 2291 | { |
| 2292 | int height; |
| 2293 | win_T *savewin; |
| 2294 | |
| 2295 | if (!PyArg_Parse(val, "i", &height)) |
| 2296 | return -1; |
| 2297 | |
| 2298 | #ifdef FEAT_GUI |
| 2299 | need_mouse_correct = TRUE; |
| 2300 | #endif |
| 2301 | savewin = curwin; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2302 | curwin = self->win; |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2303 | |
| 2304 | VimTryStart(); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2305 | win_setheight(height); |
| 2306 | curwin = savewin; |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2307 | if (VimTryEnd()) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2308 | return -1; |
| 2309 | |
| 2310 | return 0; |
| 2311 | } |
| 2312 | #ifdef FEAT_VERTSPLIT |
| 2313 | else if (strcmp(name, "width") == 0) |
| 2314 | { |
| 2315 | int width; |
| 2316 | win_T *savewin; |
| 2317 | |
| 2318 | if (!PyArg_Parse(val, "i", &width)) |
| 2319 | return -1; |
| 2320 | |
| 2321 | #ifdef FEAT_GUI |
| 2322 | need_mouse_correct = TRUE; |
| 2323 | #endif |
| 2324 | savewin = curwin; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2325 | curwin = self->win; |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2326 | |
| 2327 | VimTryStart(); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2328 | win_setwidth(width); |
| 2329 | curwin = savewin; |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2330 | if (VimTryEnd()) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2331 | return -1; |
| 2332 | |
| 2333 | return 0; |
| 2334 | } |
| 2335 | #endif |
| 2336 | else |
| 2337 | { |
| 2338 | PyErr_SetString(PyExc_AttributeError, name); |
| 2339 | return -1; |
| 2340 | } |
| 2341 | } |
| 2342 | |
| 2343 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2344 | WindowRepr(WindowObject *self) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2345 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2346 | if (self->win == INVALID_WINDOW_VALUE) |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 2347 | return PyString_FromFormat("<window object (deleted) at %p>", (self)); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2348 | else |
| 2349 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2350 | int w = get_win_number(self->win, firstwin); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2351 | |
Bram Moolenaar | 6d21645 | 2013-05-12 19:00:41 +0200 | [diff] [blame] | 2352 | if (w == 0) |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 2353 | return PyString_FromFormat("<window object (unknown) at %p>", |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2354 | (self)); |
| 2355 | else |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 2356 | return PyString_FromFormat("<window %d>", w - 1); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2357 | } |
| 2358 | } |
| 2359 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2360 | static struct PyMethodDef WindowMethods[] = { |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 2361 | /* name, function, calling, documentation */ |
| 2362 | {"__dir__", (PyCFunction)WindowDir, METH_NOARGS, ""}, |
| 2363 | { NULL, NULL, 0, NULL} |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2364 | }; |
| 2365 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2366 | /* |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2367 | * Window list object |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2368 | */ |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2369 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 2370 | static PyTypeObject WinListType; |
| 2371 | static PySequenceMethods WinListAsSeq; |
| 2372 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2373 | typedef struct |
| 2374 | { |
| 2375 | PyObject_HEAD |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2376 | TabPageObject *tabObject; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 2377 | } WinListObject; |
| 2378 | |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2379 | static PyObject * |
| 2380 | WinListNew(TabPageObject *tabObject) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2381 | { |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2382 | WinListObject *self; |
| 2383 | |
| 2384 | self = PyObject_NEW(WinListObject, &WinListType); |
| 2385 | self->tabObject = tabObject; |
| 2386 | Py_INCREF(tabObject); |
| 2387 | |
| 2388 | return (PyObject *)(self); |
| 2389 | } |
| 2390 | |
| 2391 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2392 | WinListDestructor(WinListObject *self) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2393 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2394 | TabPageObject *tabObject = self->tabObject; |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2395 | |
| 2396 | if (tabObject) |
Bram Moolenaar | 425154d | 2013-05-24 18:58:43 +0200 | [diff] [blame] | 2397 | { |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2398 | Py_DECREF((PyObject *)(tabObject)); |
Bram Moolenaar | 425154d | 2013-05-24 18:58:43 +0200 | [diff] [blame] | 2399 | } |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2400 | |
| 2401 | DESTRUCTOR_FINISH(self); |
| 2402 | } |
| 2403 | |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2404 | static PyInt |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2405 | WinListLength(WinListObject *self) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2406 | { |
| 2407 | win_T *w; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2408 | PyInt n = 0; |
| 2409 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2410 | if (!(w = get_firstwin(self->tabObject))) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2411 | return -1; |
| 2412 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2413 | while (w != NULL) |
| 2414 | { |
| 2415 | ++n; |
| 2416 | w = W_NEXT(w); |
| 2417 | } |
| 2418 | |
| 2419 | return n; |
| 2420 | } |
| 2421 | |
| 2422 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2423 | WinListItem(WinListObject *self, PyInt n) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2424 | { |
| 2425 | win_T *w; |
| 2426 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2427 | if (!(w = get_firstwin(self->tabObject))) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 2428 | return NULL; |
| 2429 | |
| 2430 | for (; w != NULL; w = W_NEXT(w), --n) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2431 | if (n == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 2432 | return WindowNew(w, self->tabObject? self->tabObject->tab: curtab); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2433 | |
| 2434 | PyErr_SetString(PyExc_IndexError, _("no such window")); |
| 2435 | return NULL; |
| 2436 | } |
| 2437 | |
| 2438 | /* Convert a Python string into a Vim line. |
| 2439 | * |
| 2440 | * The result is in allocated memory. All internal nulls are replaced by |
| 2441 | * newline characters. It is an error for the string to contain newline |
| 2442 | * characters. |
| 2443 | * |
| 2444 | * On errors, the Python exception data is set, and NULL is returned. |
| 2445 | */ |
| 2446 | static char * |
| 2447 | StringToLine(PyObject *obj) |
| 2448 | { |
| 2449 | const char *str; |
| 2450 | char *save; |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2451 | PyObject *bytes; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2452 | PyInt len; |
| 2453 | PyInt i; |
| 2454 | char *p; |
| 2455 | |
| 2456 | if (obj == NULL || !PyString_Check(obj)) |
| 2457 | { |
| 2458 | PyErr_BadArgument(); |
| 2459 | return NULL; |
| 2460 | } |
| 2461 | |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2462 | bytes = PyString_AsBytes(obj); /* for Python 2 this does nothing */ |
| 2463 | str = PyString_AsString(bytes); |
| 2464 | len = PyString_Size(bytes); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2465 | |
| 2466 | /* |
| 2467 | * Error checking: String must not contain newlines, as we |
| 2468 | * are replacing a single line, and we must replace it with |
| 2469 | * a single line. |
| 2470 | * A trailing newline is removed, so that append(f.readlines()) works. |
| 2471 | */ |
| 2472 | p = memchr(str, '\n', len); |
| 2473 | if (p != NULL) |
| 2474 | { |
| 2475 | if (p == str + len - 1) |
| 2476 | --len; |
| 2477 | else |
| 2478 | { |
| 2479 | PyErr_SetVim(_("string cannot contain newlines")); |
| 2480 | return NULL; |
| 2481 | } |
| 2482 | } |
| 2483 | |
| 2484 | /* Create a copy of the string, with internal nulls replaced by |
| 2485 | * newline characters, as is the vim convention. |
| 2486 | */ |
| 2487 | save = (char *)alloc((unsigned)(len+1)); |
| 2488 | if (save == NULL) |
| 2489 | { |
| 2490 | PyErr_NoMemory(); |
| 2491 | return NULL; |
| 2492 | } |
| 2493 | |
| 2494 | for (i = 0; i < len; ++i) |
| 2495 | { |
| 2496 | if (str[i] == '\0') |
| 2497 | save[i] = '\n'; |
| 2498 | else |
| 2499 | save[i] = str[i]; |
| 2500 | } |
| 2501 | |
| 2502 | save[i] = '\0'; |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2503 | PyString_FreeBytes(bytes); /* Python 2 does nothing here */ |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2504 | |
| 2505 | return save; |
| 2506 | } |
| 2507 | |
| 2508 | /* Get a line from the specified buffer. The line number is |
| 2509 | * in Vim format (1-based). The line is returned as a Python |
| 2510 | * string object. |
| 2511 | */ |
| 2512 | static PyObject * |
| 2513 | GetBufferLine(buf_T *buf, PyInt n) |
| 2514 | { |
| 2515 | return LineToString((char *)ml_get_buf(buf, (linenr_T)n, FALSE)); |
| 2516 | } |
| 2517 | |
| 2518 | |
| 2519 | /* Get a list of lines from the specified buffer. The line numbers |
| 2520 | * are in Vim format (1-based). The range is from lo up to, but not |
| 2521 | * including, hi. The list is returned as a Python list of string objects. |
| 2522 | */ |
| 2523 | static PyObject * |
| 2524 | GetBufferLineList(buf_T *buf, PyInt lo, PyInt hi) |
| 2525 | { |
| 2526 | PyInt i; |
| 2527 | PyInt n = hi - lo; |
| 2528 | PyObject *list = PyList_New(n); |
| 2529 | |
| 2530 | if (list == NULL) |
| 2531 | return NULL; |
| 2532 | |
| 2533 | for (i = 0; i < n; ++i) |
| 2534 | { |
| 2535 | PyObject *str = LineToString((char *)ml_get_buf(buf, (linenr_T)(lo+i), FALSE)); |
| 2536 | |
| 2537 | /* Error check - was the Python string creation OK? */ |
| 2538 | if (str == NULL) |
| 2539 | { |
| 2540 | Py_DECREF(list); |
| 2541 | return NULL; |
| 2542 | } |
| 2543 | |
| 2544 | /* Set the list item */ |
| 2545 | if (PyList_SetItem(list, i, str)) |
| 2546 | { |
| 2547 | Py_DECREF(str); |
| 2548 | Py_DECREF(list); |
| 2549 | return NULL; |
| 2550 | } |
| 2551 | } |
| 2552 | |
| 2553 | /* The ownership of the Python list is passed to the caller (ie, |
| 2554 | * the caller should Py_DECREF() the object when it is finished |
| 2555 | * with it). |
| 2556 | */ |
| 2557 | |
| 2558 | return list; |
| 2559 | } |
| 2560 | |
| 2561 | /* |
| 2562 | * Check if deleting lines made the cursor position invalid. |
| 2563 | * Changed the lines from "lo" to "hi" and added "extra" lines (negative if |
| 2564 | * deleted). |
| 2565 | */ |
| 2566 | static void |
| 2567 | py_fix_cursor(linenr_T lo, linenr_T hi, linenr_T extra) |
| 2568 | { |
| 2569 | if (curwin->w_cursor.lnum >= lo) |
| 2570 | { |
| 2571 | /* Adjust the cursor position if it's in/after the changed |
| 2572 | * lines. */ |
| 2573 | if (curwin->w_cursor.lnum >= hi) |
| 2574 | { |
| 2575 | curwin->w_cursor.lnum += extra; |
| 2576 | check_cursor_col(); |
| 2577 | } |
| 2578 | else if (extra < 0) |
| 2579 | { |
| 2580 | curwin->w_cursor.lnum = lo; |
| 2581 | check_cursor(); |
| 2582 | } |
| 2583 | else |
| 2584 | check_cursor_col(); |
| 2585 | changed_cline_bef_curs(); |
| 2586 | } |
| 2587 | invalidate_botline(); |
| 2588 | } |
| 2589 | |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2590 | /* |
| 2591 | * Replace a line in the specified buffer. The line number is |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2592 | * in Vim format (1-based). The replacement line is given as |
| 2593 | * a Python string object. The object is checked for validity |
| 2594 | * and correct format. Errors are returned as a value of FAIL. |
| 2595 | * The return value is OK on success. |
| 2596 | * If OK is returned and len_change is not NULL, *len_change |
| 2597 | * is set to the change in the buffer length. |
| 2598 | */ |
| 2599 | static int |
| 2600 | SetBufferLine(buf_T *buf, PyInt n, PyObject *line, PyInt *len_change) |
| 2601 | { |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 2602 | /* First of all, we check the type of the supplied Python object. |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2603 | * There are three cases: |
| 2604 | * 1. NULL, or None - this is a deletion. |
| 2605 | * 2. A string - this is a replacement. |
| 2606 | * 3. Anything else - this is an error. |
| 2607 | */ |
| 2608 | if (line == Py_None || line == NULL) |
| 2609 | { |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2610 | buf_T *savebuf; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2611 | |
| 2612 | PyErr_Clear(); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2613 | switch_buffer(&savebuf, buf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2614 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2615 | VimTryStart(); |
| 2616 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2617 | if (u_savedel((linenr_T)n, 1L) == FAIL) |
| 2618 | PyErr_SetVim(_("cannot save undo information")); |
| 2619 | else if (ml_delete((linenr_T)n, FALSE) == FAIL) |
| 2620 | PyErr_SetVim(_("cannot delete line")); |
| 2621 | else |
| 2622 | { |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2623 | if (buf == savebuf) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2624 | py_fix_cursor((linenr_T)n, (linenr_T)n + 1, (linenr_T)-1); |
| 2625 | deleted_lines_mark((linenr_T)n, 1L); |
| 2626 | } |
| 2627 | |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2628 | restore_buffer(savebuf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2629 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2630 | if (VimTryEnd()) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2631 | return FAIL; |
| 2632 | |
| 2633 | if (len_change) |
| 2634 | *len_change = -1; |
| 2635 | |
| 2636 | return OK; |
| 2637 | } |
| 2638 | else if (PyString_Check(line)) |
| 2639 | { |
| 2640 | char *save = StringToLine(line); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2641 | buf_T *savebuf; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2642 | |
| 2643 | if (save == NULL) |
| 2644 | return FAIL; |
| 2645 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2646 | VimTryStart(); |
| 2647 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2648 | /* We do not need to free "save" if ml_replace() consumes it. */ |
| 2649 | PyErr_Clear(); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2650 | switch_buffer(&savebuf, buf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2651 | |
| 2652 | if (u_savesub((linenr_T)n) == FAIL) |
| 2653 | { |
| 2654 | PyErr_SetVim(_("cannot save undo information")); |
| 2655 | vim_free(save); |
| 2656 | } |
| 2657 | else if (ml_replace((linenr_T)n, (char_u *)save, FALSE) == FAIL) |
| 2658 | { |
| 2659 | PyErr_SetVim(_("cannot replace line")); |
| 2660 | vim_free(save); |
| 2661 | } |
| 2662 | else |
| 2663 | changed_bytes((linenr_T)n, 0); |
| 2664 | |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2665 | restore_buffer(savebuf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2666 | |
| 2667 | /* Check that the cursor is not beyond the end of the line now. */ |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2668 | if (buf == savebuf) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2669 | check_cursor_col(); |
| 2670 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2671 | if (VimTryEnd()) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2672 | return FAIL; |
| 2673 | |
| 2674 | if (len_change) |
| 2675 | *len_change = 0; |
| 2676 | |
| 2677 | return OK; |
| 2678 | } |
| 2679 | else |
| 2680 | { |
| 2681 | PyErr_BadArgument(); |
| 2682 | return FAIL; |
| 2683 | } |
| 2684 | } |
| 2685 | |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2686 | /* Replace a range of lines in the specified buffer. The line numbers are in |
| 2687 | * Vim format (1-based). The range is from lo up to, but not including, hi. |
| 2688 | * The replacement lines are given as a Python list of string objects. The |
| 2689 | * list is checked for validity and correct format. Errors are returned as a |
| 2690 | * value of FAIL. The return value is OK on success. |
| 2691 | * If OK is returned and len_change is not NULL, *len_change |
| 2692 | * is set to the change in the buffer length. |
| 2693 | */ |
| 2694 | static int |
| 2695 | SetBufferLineList(buf_T *buf, PyInt lo, PyInt hi, PyObject *list, PyInt *len_change) |
| 2696 | { |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 2697 | /* First of all, we check the type of the supplied Python object. |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2698 | * There are three cases: |
| 2699 | * 1. NULL, or None - this is a deletion. |
| 2700 | * 2. A list - this is a replacement. |
| 2701 | * 3. Anything else - this is an error. |
| 2702 | */ |
| 2703 | if (list == Py_None || list == NULL) |
| 2704 | { |
| 2705 | PyInt i; |
| 2706 | PyInt n = (int)(hi - lo); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2707 | buf_T *savebuf; |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2708 | |
| 2709 | PyErr_Clear(); |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2710 | VimTryStart(); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2711 | switch_buffer(&savebuf, buf); |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2712 | |
| 2713 | if (u_savedel((linenr_T)lo, (long)n) == FAIL) |
| 2714 | PyErr_SetVim(_("cannot save undo information")); |
| 2715 | else |
| 2716 | { |
| 2717 | for (i = 0; i < n; ++i) |
| 2718 | { |
| 2719 | if (ml_delete((linenr_T)lo, FALSE) == FAIL) |
| 2720 | { |
| 2721 | PyErr_SetVim(_("cannot delete line")); |
| 2722 | break; |
| 2723 | } |
| 2724 | } |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2725 | if (buf == savebuf) |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2726 | py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)-n); |
| 2727 | deleted_lines_mark((linenr_T)lo, (long)i); |
| 2728 | } |
| 2729 | |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2730 | restore_buffer(savebuf); |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2731 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2732 | if (VimTryEnd()) |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2733 | return FAIL; |
| 2734 | |
| 2735 | if (len_change) |
| 2736 | *len_change = -n; |
| 2737 | |
| 2738 | return OK; |
| 2739 | } |
| 2740 | else if (PyList_Check(list)) |
| 2741 | { |
| 2742 | PyInt i; |
| 2743 | PyInt new_len = PyList_Size(list); |
| 2744 | PyInt old_len = hi - lo; |
| 2745 | PyInt extra = 0; /* lines added to text, can be negative */ |
| 2746 | char **array; |
| 2747 | buf_T *savebuf; |
| 2748 | |
| 2749 | if (new_len == 0) /* avoid allocating zero bytes */ |
| 2750 | array = NULL; |
| 2751 | else |
| 2752 | { |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2753 | array = PyMem_New(char *, new_len); |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2754 | if (array == NULL) |
| 2755 | { |
| 2756 | PyErr_NoMemory(); |
| 2757 | return FAIL; |
| 2758 | } |
| 2759 | } |
| 2760 | |
| 2761 | for (i = 0; i < new_len; ++i) |
| 2762 | { |
| 2763 | PyObject *line = PyList_GetItem(list, i); |
| 2764 | |
| 2765 | array[i] = StringToLine(line); |
| 2766 | if (array[i] == NULL) |
| 2767 | { |
| 2768 | while (i) |
| 2769 | vim_free(array[--i]); |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2770 | PyMem_Free(array); |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2771 | return FAIL; |
| 2772 | } |
| 2773 | } |
| 2774 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2775 | VimTryStart(); |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2776 | PyErr_Clear(); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2777 | |
| 2778 | // START of region without "return". Must call restore_buffer()! |
| 2779 | switch_buffer(&savebuf, buf); |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2780 | |
| 2781 | if (u_save((linenr_T)(lo-1), (linenr_T)hi) == FAIL) |
| 2782 | PyErr_SetVim(_("cannot save undo information")); |
| 2783 | |
| 2784 | /* If the size of the range is reducing (ie, new_len < old_len) we |
| 2785 | * need to delete some old_len. We do this at the start, by |
| 2786 | * repeatedly deleting line "lo". |
| 2787 | */ |
| 2788 | if (!PyErr_Occurred()) |
| 2789 | { |
| 2790 | for (i = 0; i < old_len - new_len; ++i) |
| 2791 | if (ml_delete((linenr_T)lo, FALSE) == FAIL) |
| 2792 | { |
| 2793 | PyErr_SetVim(_("cannot delete line")); |
| 2794 | break; |
| 2795 | } |
| 2796 | extra -= i; |
| 2797 | } |
| 2798 | |
| 2799 | /* For as long as possible, replace the existing old_len with the |
| 2800 | * new old_len. This is a more efficient operation, as it requires |
| 2801 | * less memory allocation and freeing. |
| 2802 | */ |
| 2803 | if (!PyErr_Occurred()) |
| 2804 | { |
| 2805 | for (i = 0; i < old_len && i < new_len; ++i) |
| 2806 | if (ml_replace((linenr_T)(lo+i), (char_u *)array[i], FALSE) |
| 2807 | == FAIL) |
| 2808 | { |
| 2809 | PyErr_SetVim(_("cannot replace line")); |
| 2810 | break; |
| 2811 | } |
| 2812 | } |
| 2813 | else |
| 2814 | i = 0; |
| 2815 | |
| 2816 | /* Now we may need to insert the remaining new old_len. If we do, we |
| 2817 | * must free the strings as we finish with them (we can't pass the |
| 2818 | * responsibility to vim in this case). |
| 2819 | */ |
| 2820 | if (!PyErr_Occurred()) |
| 2821 | { |
| 2822 | while (i < new_len) |
| 2823 | { |
| 2824 | if (ml_append((linenr_T)(lo + i - 1), |
| 2825 | (char_u *)array[i], 0, FALSE) == FAIL) |
| 2826 | { |
| 2827 | PyErr_SetVim(_("cannot insert line")); |
| 2828 | break; |
| 2829 | } |
| 2830 | vim_free(array[i]); |
| 2831 | ++i; |
| 2832 | ++extra; |
| 2833 | } |
| 2834 | } |
| 2835 | |
| 2836 | /* Free any left-over old_len, as a result of an error */ |
| 2837 | while (i < new_len) |
| 2838 | { |
| 2839 | vim_free(array[i]); |
| 2840 | ++i; |
| 2841 | } |
| 2842 | |
| 2843 | /* Free the array of old_len. All of its contents have now |
| 2844 | * been dealt with (either freed, or the responsibility passed |
| 2845 | * to vim. |
| 2846 | */ |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2847 | PyMem_Free(array); |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2848 | |
| 2849 | /* Adjust marks. Invalidate any which lie in the |
| 2850 | * changed range, and move any in the remainder of the buffer. |
| 2851 | */ |
| 2852 | mark_adjust((linenr_T)lo, (linenr_T)(hi - 1), |
| 2853 | (long)MAXLNUM, (long)extra); |
| 2854 | changed_lines((linenr_T)lo, 0, (linenr_T)hi, (long)extra); |
| 2855 | |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2856 | if (buf == savebuf) |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2857 | py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)extra); |
| 2858 | |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2859 | // END of region without "return". |
| 2860 | restore_buffer(savebuf); |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2861 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2862 | if (VimTryEnd()) |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 2863 | return FAIL; |
| 2864 | |
| 2865 | if (len_change) |
| 2866 | *len_change = new_len - old_len; |
| 2867 | |
| 2868 | return OK; |
| 2869 | } |
| 2870 | else |
| 2871 | { |
| 2872 | PyErr_BadArgument(); |
| 2873 | return FAIL; |
| 2874 | } |
| 2875 | } |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2876 | |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 2877 | /* Insert a number of lines into the specified buffer after the specified line. |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2878 | * The line number is in Vim format (1-based). The lines to be inserted are |
| 2879 | * given as a Python list of string objects or as a single string. The lines |
| 2880 | * to be added are checked for validity and correct format. Errors are |
| 2881 | * returned as a value of FAIL. The return value is OK on success. |
| 2882 | * If OK is returned and len_change is not NULL, *len_change |
| 2883 | * is set to the change in the buffer length. |
| 2884 | */ |
| 2885 | static int |
| 2886 | InsertBufferLines(buf_T *buf, PyInt n, PyObject *lines, PyInt *len_change) |
| 2887 | { |
| 2888 | /* First of all, we check the type of the supplied Python object. |
| 2889 | * It must be a string or a list, or the call is in error. |
| 2890 | */ |
| 2891 | if (PyString_Check(lines)) |
| 2892 | { |
| 2893 | char *str = StringToLine(lines); |
| 2894 | buf_T *savebuf; |
| 2895 | |
| 2896 | if (str == NULL) |
| 2897 | return FAIL; |
| 2898 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2899 | PyErr_Clear(); |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2900 | VimTryStart(); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2901 | switch_buffer(&savebuf, buf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2902 | |
| 2903 | if (u_save((linenr_T)n, (linenr_T)(n+1)) == FAIL) |
| 2904 | PyErr_SetVim(_("cannot save undo information")); |
| 2905 | else if (ml_append((linenr_T)n, (char_u *)str, 0, FALSE) == FAIL) |
| 2906 | PyErr_SetVim(_("cannot insert line")); |
| 2907 | else |
| 2908 | appended_lines_mark((linenr_T)n, 1L); |
| 2909 | |
| 2910 | vim_free(str); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2911 | restore_buffer(savebuf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2912 | update_screen(VALID); |
| 2913 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2914 | if (VimTryEnd()) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2915 | return FAIL; |
| 2916 | |
| 2917 | if (len_change) |
| 2918 | *len_change = 1; |
| 2919 | |
| 2920 | return OK; |
| 2921 | } |
| 2922 | else if (PyList_Check(lines)) |
| 2923 | { |
| 2924 | PyInt i; |
| 2925 | PyInt size = PyList_Size(lines); |
| 2926 | char **array; |
| 2927 | buf_T *savebuf; |
| 2928 | |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2929 | array = PyMem_New(char *, size); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2930 | if (array == NULL) |
| 2931 | { |
| 2932 | PyErr_NoMemory(); |
| 2933 | return FAIL; |
| 2934 | } |
| 2935 | |
| 2936 | for (i = 0; i < size; ++i) |
| 2937 | { |
| 2938 | PyObject *line = PyList_GetItem(lines, i); |
| 2939 | array[i] = StringToLine(line); |
| 2940 | |
| 2941 | if (array[i] == NULL) |
| 2942 | { |
| 2943 | while (i) |
| 2944 | vim_free(array[--i]); |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2945 | PyMem_Free(array); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2946 | return FAIL; |
| 2947 | } |
| 2948 | } |
| 2949 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2950 | PyErr_Clear(); |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2951 | VimTryStart(); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2952 | switch_buffer(&savebuf, buf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2953 | |
| 2954 | if (u_save((linenr_T)n, (linenr_T)(n + 1)) == FAIL) |
| 2955 | PyErr_SetVim(_("cannot save undo information")); |
| 2956 | else |
| 2957 | { |
| 2958 | for (i = 0; i < size; ++i) |
| 2959 | { |
| 2960 | if (ml_append((linenr_T)(n + i), |
| 2961 | (char_u *)array[i], 0, FALSE) == FAIL) |
| 2962 | { |
| 2963 | PyErr_SetVim(_("cannot insert line")); |
| 2964 | |
| 2965 | /* Free the rest of the lines */ |
| 2966 | while (i < size) |
| 2967 | vim_free(array[i++]); |
| 2968 | |
| 2969 | break; |
| 2970 | } |
| 2971 | vim_free(array[i]); |
| 2972 | } |
| 2973 | if (i > 0) |
| 2974 | appended_lines_mark((linenr_T)n, (long)i); |
| 2975 | } |
| 2976 | |
| 2977 | /* Free the array of lines. All of its contents have now |
| 2978 | * been freed. |
| 2979 | */ |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2980 | PyMem_Free(array); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2981 | |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 2982 | restore_buffer(savebuf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2983 | update_screen(VALID); |
| 2984 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 2985 | if (VimTryEnd()) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 2986 | return FAIL; |
| 2987 | |
| 2988 | if (len_change) |
| 2989 | *len_change = size; |
| 2990 | |
| 2991 | return OK; |
| 2992 | } |
| 2993 | else |
| 2994 | { |
| 2995 | PyErr_BadArgument(); |
| 2996 | return FAIL; |
| 2997 | } |
| 2998 | } |
| 2999 | |
| 3000 | /* |
| 3001 | * Common routines for buffers and line ranges |
| 3002 | * ------------------------------------------- |
| 3003 | */ |
| 3004 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3005 | typedef struct |
| 3006 | { |
| 3007 | PyObject_HEAD |
| 3008 | buf_T *buf; |
| 3009 | } BufferObject; |
| 3010 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3011 | static int |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3012 | CheckBuffer(BufferObject *self) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3013 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3014 | if (self->buf == INVALID_BUFFER_VALUE) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3015 | { |
| 3016 | PyErr_SetVim(_("attempt to refer to deleted buffer")); |
| 3017 | return -1; |
| 3018 | } |
| 3019 | |
| 3020 | return 0; |
| 3021 | } |
| 3022 | |
| 3023 | static PyObject * |
| 3024 | RBItem(BufferObject *self, PyInt n, PyInt start, PyInt end) |
| 3025 | { |
| 3026 | if (CheckBuffer(self)) |
| 3027 | return NULL; |
| 3028 | |
Bram Moolenaar | 8f1723d | 2013-05-12 20:36:14 +0200 | [diff] [blame] | 3029 | if (end == -1) |
| 3030 | end = self->buf->b_ml.ml_line_count; |
| 3031 | |
Bram Moolenaar | bd80f35 | 2013-05-12 21:16:23 +0200 | [diff] [blame] | 3032 | if (n < 0) |
| 3033 | n += end - start + 1; |
| 3034 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3035 | if (n < 0 || n > end - start) |
| 3036 | { |
| 3037 | PyErr_SetString(PyExc_IndexError, _("line number out of range")); |
| 3038 | return NULL; |
| 3039 | } |
| 3040 | |
| 3041 | return GetBufferLine(self->buf, n+start); |
| 3042 | } |
| 3043 | |
| 3044 | static PyObject * |
| 3045 | RBSlice(BufferObject *self, PyInt lo, PyInt hi, PyInt start, PyInt end) |
| 3046 | { |
| 3047 | PyInt size; |
| 3048 | |
| 3049 | if (CheckBuffer(self)) |
| 3050 | return NULL; |
| 3051 | |
Bram Moolenaar | 8f1723d | 2013-05-12 20:36:14 +0200 | [diff] [blame] | 3052 | if (end == -1) |
| 3053 | end = self->buf->b_ml.ml_line_count; |
| 3054 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3055 | size = end - start + 1; |
| 3056 | |
| 3057 | if (lo < 0) |
| 3058 | lo = 0; |
| 3059 | else if (lo > size) |
| 3060 | lo = size; |
| 3061 | if (hi < 0) |
| 3062 | hi = 0; |
| 3063 | if (hi < lo) |
| 3064 | hi = lo; |
| 3065 | else if (hi > size) |
| 3066 | hi = size; |
| 3067 | |
| 3068 | return GetBufferLineList(self->buf, lo+start, hi+start); |
| 3069 | } |
| 3070 | |
| 3071 | static PyInt |
| 3072 | RBAsItem(BufferObject *self, PyInt n, PyObject *val, PyInt start, PyInt end, PyInt *new_end) |
| 3073 | { |
| 3074 | PyInt len_change; |
| 3075 | |
| 3076 | if (CheckBuffer(self)) |
| 3077 | return -1; |
| 3078 | |
Bram Moolenaar | 8f1723d | 2013-05-12 20:36:14 +0200 | [diff] [blame] | 3079 | if (end == -1) |
| 3080 | end = self->buf->b_ml.ml_line_count; |
| 3081 | |
Bram Moolenaar | bd80f35 | 2013-05-12 21:16:23 +0200 | [diff] [blame] | 3082 | if (n < 0) |
| 3083 | n += end - start + 1; |
| 3084 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3085 | if (n < 0 || n > end - start) |
| 3086 | { |
| 3087 | PyErr_SetString(PyExc_IndexError, _("line number out of range")); |
| 3088 | return -1; |
| 3089 | } |
| 3090 | |
| 3091 | if (SetBufferLine(self->buf, n+start, val, &len_change) == FAIL) |
| 3092 | return -1; |
| 3093 | |
| 3094 | if (new_end) |
| 3095 | *new_end = end + len_change; |
| 3096 | |
| 3097 | return 0; |
| 3098 | } |
| 3099 | |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 3100 | static PyInt |
| 3101 | RBAsSlice(BufferObject *self, PyInt lo, PyInt hi, PyObject *val, PyInt start, PyInt end, PyInt *new_end) |
| 3102 | { |
| 3103 | PyInt size; |
| 3104 | PyInt len_change; |
| 3105 | |
| 3106 | /* Self must be a valid buffer */ |
| 3107 | if (CheckBuffer(self)) |
| 3108 | return -1; |
| 3109 | |
Bram Moolenaar | 8f1723d | 2013-05-12 20:36:14 +0200 | [diff] [blame] | 3110 | if (end == -1) |
| 3111 | end = self->buf->b_ml.ml_line_count; |
| 3112 | |
Bram Moolenaar | 19e6094 | 2011-06-19 00:27:51 +0200 | [diff] [blame] | 3113 | /* Sort out the slice range */ |
| 3114 | size = end - start + 1; |
| 3115 | |
| 3116 | if (lo < 0) |
| 3117 | lo = 0; |
| 3118 | else if (lo > size) |
| 3119 | lo = size; |
| 3120 | if (hi < 0) |
| 3121 | hi = 0; |
| 3122 | if (hi < lo) |
| 3123 | hi = lo; |
| 3124 | else if (hi > size) |
| 3125 | hi = size; |
| 3126 | |
| 3127 | if (SetBufferLineList(self->buf, lo + start, hi + start, |
| 3128 | val, &len_change) == FAIL) |
| 3129 | return -1; |
| 3130 | |
| 3131 | if (new_end) |
| 3132 | *new_end = end + len_change; |
| 3133 | |
| 3134 | return 0; |
| 3135 | } |
| 3136 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3137 | |
| 3138 | static PyObject * |
| 3139 | RBAppend(BufferObject *self, PyObject *args, PyInt start, PyInt end, PyInt *new_end) |
| 3140 | { |
| 3141 | PyObject *lines; |
| 3142 | PyInt len_change; |
| 3143 | PyInt max; |
| 3144 | PyInt n; |
| 3145 | |
| 3146 | if (CheckBuffer(self)) |
| 3147 | return NULL; |
| 3148 | |
Bram Moolenaar | 8f1723d | 2013-05-12 20:36:14 +0200 | [diff] [blame] | 3149 | if (end == -1) |
| 3150 | end = self->buf->b_ml.ml_line_count; |
| 3151 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3152 | max = n = end - start + 1; |
| 3153 | |
| 3154 | if (!PyArg_ParseTuple(args, "O|n", &lines, &n)) |
| 3155 | return NULL; |
| 3156 | |
| 3157 | if (n < 0 || n > max) |
| 3158 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 3159 | PyErr_SetString(PyExc_IndexError, _("line number out of range")); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3160 | return NULL; |
| 3161 | } |
| 3162 | |
| 3163 | if (InsertBufferLines(self->buf, n + start - 1, lines, &len_change) == FAIL) |
| 3164 | return NULL; |
| 3165 | |
| 3166 | if (new_end) |
| 3167 | *new_end = end + len_change; |
| 3168 | |
| 3169 | Py_INCREF(Py_None); |
| 3170 | return Py_None; |
| 3171 | } |
| 3172 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3173 | /* Range object |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3174 | */ |
| 3175 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3176 | static PyTypeObject RangeType; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3177 | static PySequenceMethods RangeAsSeq; |
| 3178 | static PyMappingMethods RangeAsMapping; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3179 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3180 | typedef struct |
| 3181 | { |
| 3182 | PyObject_HEAD |
| 3183 | BufferObject *buf; |
| 3184 | PyInt start; |
| 3185 | PyInt end; |
| 3186 | } RangeObject; |
| 3187 | |
| 3188 | static PyObject * |
| 3189 | RangeNew(buf_T *buf, PyInt start, PyInt end) |
| 3190 | { |
| 3191 | BufferObject *bufr; |
| 3192 | RangeObject *self; |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 3193 | self = PyObject_GC_New(RangeObject, &RangeType); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3194 | if (self == NULL) |
| 3195 | return NULL; |
| 3196 | |
| 3197 | bufr = (BufferObject *)BufferNew(buf); |
| 3198 | if (bufr == NULL) |
| 3199 | { |
| 3200 | Py_DECREF(self); |
| 3201 | return NULL; |
| 3202 | } |
| 3203 | Py_INCREF(bufr); |
| 3204 | |
| 3205 | self->buf = bufr; |
| 3206 | self->start = start; |
| 3207 | self->end = end; |
| 3208 | |
| 3209 | return (PyObject *)(self); |
| 3210 | } |
| 3211 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3212 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3213 | RangeDestructor(RangeObject *self) |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3214 | { |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 3215 | PyObject_GC_UnTrack((void *)(self)); |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3216 | Py_XDECREF(self->buf); |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 3217 | PyObject_GC_Del((void *)(self)); |
| 3218 | } |
| 3219 | |
| 3220 | static int |
| 3221 | RangeTraverse(RangeObject *self, visitproc visit, void *arg) |
| 3222 | { |
| 3223 | Py_VISIT(((PyObject *)(self->buf))); |
| 3224 | return 0; |
| 3225 | } |
| 3226 | |
| 3227 | static int |
| 3228 | RangeClear(RangeObject *self) |
| 3229 | { |
| 3230 | Py_CLEAR(self->buf); |
| 3231 | return 0; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3232 | } |
| 3233 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3234 | static PyInt |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3235 | RangeLength(RangeObject *self) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3236 | { |
| 3237 | /* HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION? */ |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3238 | if (CheckBuffer(self->buf)) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3239 | return -1; /* ??? */ |
| 3240 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3241 | return (self->end - self->start + 1); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3242 | } |
| 3243 | |
| 3244 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3245 | RangeItem(RangeObject *self, PyInt n) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3246 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3247 | return RBItem(self->buf, n, self->start, self->end); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3248 | } |
| 3249 | |
| 3250 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3251 | RangeSlice(RangeObject *self, PyInt lo, PyInt hi) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3252 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3253 | return RBSlice(self->buf, lo, hi, self->start, self->end); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3254 | } |
| 3255 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3256 | static char *RangeAttrs[] = { |
| 3257 | "start", "end", |
| 3258 | NULL |
| 3259 | }; |
| 3260 | |
| 3261 | static PyObject * |
| 3262 | RangeDir(PyObject *self) |
| 3263 | { |
| 3264 | return ObjectDir(self, RangeAttrs); |
| 3265 | } |
| 3266 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3267 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3268 | RangeAppend(RangeObject *self, PyObject *args) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3269 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3270 | return RBAppend(self->buf, args, self->start, self->end, &self->end); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3271 | } |
| 3272 | |
| 3273 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3274 | RangeRepr(RangeObject *self) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3275 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3276 | if (self->buf->buf == INVALID_BUFFER_VALUE) |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 3277 | return PyString_FromFormat("<range object (for deleted buffer) at %p>", |
| 3278 | (self)); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3279 | else |
| 3280 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3281 | char *name = (char *)self->buf->buf->b_fname; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3282 | |
| 3283 | if (name == NULL) |
| 3284 | name = ""; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3285 | |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 3286 | return PyString_FromFormat("<range %s (%d:%d)>", |
| 3287 | name, self->start, self->end); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3288 | } |
| 3289 | } |
| 3290 | |
| 3291 | static struct PyMethodDef RangeMethods[] = { |
Bram Moolenaar | 182dc4f | 2013-05-21 19:01:55 +0200 | [diff] [blame] | 3292 | /* name, function, calling, documentation */ |
| 3293 | {"append", (PyCFunction)RangeAppend, METH_VARARGS, "Append data to the Vim range" }, |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3294 | {"__dir__", (PyCFunction)RangeDir, METH_NOARGS, ""}, |
| 3295 | { NULL, NULL, 0, NULL} |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3296 | }; |
| 3297 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3298 | static PyTypeObject BufferType; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3299 | static PySequenceMethods BufferAsSeq; |
| 3300 | static PyMappingMethods BufferAsMapping; |
| 3301 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3302 | static PyObject * |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3303 | BufferNew(buf_T *buf) |
| 3304 | { |
| 3305 | /* We need to handle deletion of buffers underneath us. |
| 3306 | * If we add a "b_python*_ref" field to the buf_T structure, |
| 3307 | * then we can get at it in buf_freeall() in vim. We then |
| 3308 | * need to create only ONE Python object per buffer - if |
| 3309 | * we try to create a second, just INCREF the existing one |
| 3310 | * and return it. The (single) Python object referring to |
| 3311 | * the buffer is stored in "b_python*_ref". |
| 3312 | * Question: what to do on a buf_freeall(). We'll probably |
| 3313 | * have to either delete the Python object (DECREF it to |
| 3314 | * zero - a bad idea, as it leaves dangling refs!) or |
| 3315 | * set the buf_T * value to an invalid value (-1?), which |
| 3316 | * means we need checks in all access functions... Bah. |
| 3317 | * |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3318 | * Python2 and Python3 get different fields and different objects: |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3319 | * b_python_ref and b_python3_ref fields respectively. |
| 3320 | */ |
| 3321 | |
| 3322 | BufferObject *self; |
| 3323 | |
| 3324 | if (BUF_PYTHON_REF(buf) != NULL) |
| 3325 | { |
| 3326 | self = BUF_PYTHON_REF(buf); |
| 3327 | Py_INCREF(self); |
| 3328 | } |
| 3329 | else |
| 3330 | { |
| 3331 | self = PyObject_NEW(BufferObject, &BufferType); |
| 3332 | if (self == NULL) |
| 3333 | return NULL; |
| 3334 | self->buf = buf; |
| 3335 | BUF_PYTHON_REF(buf) = self; |
| 3336 | } |
| 3337 | |
| 3338 | return (PyObject *)(self); |
| 3339 | } |
| 3340 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3341 | static void |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3342 | BufferDestructor(BufferObject *self) |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3343 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3344 | if (self->buf && self->buf != INVALID_BUFFER_VALUE) |
| 3345 | BUF_PYTHON_REF(self->buf) = NULL; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3346 | |
| 3347 | DESTRUCTOR_FINISH(self); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3348 | } |
| 3349 | |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3350 | static PyInt |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3351 | BufferLength(BufferObject *self) |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3352 | { |
| 3353 | /* HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION? */ |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3354 | if (CheckBuffer(self)) |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3355 | return -1; /* ??? */ |
| 3356 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3357 | return (PyInt)(self->buf->b_ml.ml_line_count); |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3358 | } |
| 3359 | |
| 3360 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3361 | BufferItem(BufferObject *self, PyInt n) |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3362 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3363 | return RBItem(self, n, 1, -1); |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3364 | } |
| 3365 | |
| 3366 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3367 | BufferSlice(BufferObject *self, PyInt lo, PyInt hi) |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3368 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3369 | return RBSlice(self, lo, hi, 1, -1); |
Bram Moolenaar | 971db46 | 2013-05-12 18:44:48 +0200 | [diff] [blame] | 3370 | } |
| 3371 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3372 | static char *BufferAttrs[] = { |
| 3373 | "name", "number", "vars", "options", "valid", |
| 3374 | NULL |
| 3375 | }; |
| 3376 | |
| 3377 | static PyObject * |
| 3378 | BufferDir(PyObject *self) |
| 3379 | { |
| 3380 | return ObjectDir(self, BufferAttrs); |
| 3381 | } |
| 3382 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3383 | static PyObject * |
Bram Moolenaar | 9e822c0 | 2013-05-29 22:15:30 +0200 | [diff] [blame] | 3384 | BufferAttrValid(BufferObject *self, char *name) |
| 3385 | { |
| 3386 | PyObject *r; |
| 3387 | |
| 3388 | if (strcmp(name, "valid") != 0) |
| 3389 | return NULL; |
| 3390 | |
| 3391 | r = ((self->buf == INVALID_BUFFER_VALUE) ? Py_False : Py_True); |
| 3392 | Py_INCREF(r); |
| 3393 | return r; |
| 3394 | } |
| 3395 | |
| 3396 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3397 | BufferAttr(BufferObject *self, char *name) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3398 | { |
| 3399 | if (strcmp(name, "name") == 0) |
Bram Moolenaar | 432b09c | 2013-05-29 22:26:18 +0200 | [diff] [blame] | 3400 | return PyString_FromString((self->buf->b_ffname == NULL |
| 3401 | ? "" : (char *) self->buf->b_ffname)); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3402 | else if (strcmp(name, "number") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3403 | return Py_BuildValue(Py_ssize_t_fmt, self->buf->b_fnum); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3404 | else if (strcmp(name, "vars") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3405 | return DictionaryNew(self->buf->b_vars); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3406 | else if (strcmp(name, "options") == 0) |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3407 | return OptionsNew(SREQ_BUF, self->buf, (checkfun) CheckBuffer, |
| 3408 | (PyObject *) self); |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3409 | else if (strcmp(name, "__members__") == 0) |
| 3410 | return ObjectDir(NULL, BufferAttrs); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3411 | else |
| 3412 | return NULL; |
| 3413 | } |
| 3414 | |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 3415 | static int |
| 3416 | BufferSetattr(BufferObject *self, char *name, PyObject *valObject) |
| 3417 | { |
| 3418 | if (CheckBuffer(self)) |
| 3419 | return -1; |
| 3420 | |
| 3421 | if (strcmp(name, "name") == 0) |
| 3422 | { |
| 3423 | char_u *val; |
| 3424 | aco_save_T aco; |
| 3425 | int r; |
| 3426 | PyObject *todecref; |
| 3427 | |
| 3428 | if (!(val = StringToChars(valObject, &todecref))) |
| 3429 | return -1; |
| 3430 | |
| 3431 | VimTryStart(); |
| 3432 | /* Using aucmd_*: autocommands will be executed by rename_buffer */ |
| 3433 | aucmd_prepbuf(&aco, self->buf); |
| 3434 | r = rename_buffer(val); |
| 3435 | aucmd_restbuf(&aco); |
| 3436 | Py_XDECREF(todecref); |
| 3437 | if (VimTryEnd()) |
| 3438 | return -1; |
| 3439 | |
| 3440 | if (r == FAIL) |
| 3441 | { |
| 3442 | PyErr_SetVim(_("failed to rename buffer")); |
| 3443 | return -1; |
| 3444 | } |
| 3445 | return 0; |
| 3446 | } |
| 3447 | else |
| 3448 | { |
| 3449 | PyErr_SetString(PyExc_AttributeError, name); |
| 3450 | return -1; |
| 3451 | } |
| 3452 | } |
| 3453 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3454 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3455 | BufferAppend(BufferObject *self, PyObject *args) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3456 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3457 | return RBAppend(self, args, 1, -1, NULL); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3458 | } |
| 3459 | |
| 3460 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3461 | BufferMark(BufferObject *self, PyObject *args) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3462 | { |
| 3463 | pos_T *posp; |
| 3464 | char *pmark; |
| 3465 | char mark; |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 3466 | buf_T *savebuf; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3467 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3468 | if (CheckBuffer(self)) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3469 | return NULL; |
| 3470 | |
| 3471 | if (!PyArg_ParseTuple(args, "s", &pmark)) |
| 3472 | return NULL; |
| 3473 | mark = *pmark; |
| 3474 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3475 | VimTryStart(); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3476 | switch_buffer(&savebuf, self->buf); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3477 | posp = getmark(mark, FALSE); |
Bram Moolenaar | 105bc35 | 2013-05-17 16:03:57 +0200 | [diff] [blame] | 3478 | restore_buffer(savebuf); |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3479 | if (VimTryEnd()) |
| 3480 | return NULL; |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3481 | |
| 3482 | if (posp == NULL) |
| 3483 | { |
| 3484 | PyErr_SetVim(_("invalid mark name")); |
| 3485 | return NULL; |
| 3486 | } |
| 3487 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3488 | if (posp->lnum <= 0) |
| 3489 | { |
| 3490 | /* Or raise an error? */ |
| 3491 | Py_INCREF(Py_None); |
| 3492 | return Py_None; |
| 3493 | } |
| 3494 | |
| 3495 | return Py_BuildValue("(ll)", (long)(posp->lnum), (long)(posp->col)); |
| 3496 | } |
| 3497 | |
| 3498 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3499 | BufferRange(BufferObject *self, PyObject *args) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3500 | { |
| 3501 | PyInt start; |
| 3502 | PyInt end; |
| 3503 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3504 | if (CheckBuffer(self)) |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3505 | return NULL; |
| 3506 | |
| 3507 | if (!PyArg_ParseTuple(args, "nn", &start, &end)) |
| 3508 | return NULL; |
| 3509 | |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3510 | return RangeNew(self->buf, start, end); |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3511 | } |
| 3512 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3513 | static PyObject * |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3514 | BufferRepr(BufferObject *self) |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3515 | { |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 3516 | if (self->buf == INVALID_BUFFER_VALUE) |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 3517 | return PyString_FromFormat("<buffer object (deleted) at %p>", self); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3518 | else |
| 3519 | { |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 3520 | char *name = (char *)self->buf->b_fname; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3521 | |
| 3522 | if (name == NULL) |
| 3523 | name = ""; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3524 | |
Bram Moolenaar | 1a3b569 | 2013-05-30 12:40:39 +0200 | [diff] [blame] | 3525 | return PyString_FromFormat("<buffer %s>", name); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3526 | } |
| 3527 | } |
| 3528 | |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3529 | static struct PyMethodDef BufferMethods[] = { |
Bram Moolenaar | 182dc4f | 2013-05-21 19:01:55 +0200 | [diff] [blame] | 3530 | /* name, function, calling, documentation */ |
| 3531 | {"append", (PyCFunction)BufferAppend, METH_VARARGS, "Append data to Vim buffer" }, |
| 3532 | {"mark", (PyCFunction)BufferMark, METH_VARARGS, "Return (row,col) representing position of named mark" }, |
| 3533 | {"range", (PyCFunction)BufferRange, METH_VARARGS, "Return a range object which represents the part of the given buffer between line numbers s and e" }, |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3534 | {"__dir__", (PyCFunction)BufferDir, METH_NOARGS, ""}, |
| 3535 | { NULL, NULL, 0, NULL} |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3536 | }; |
| 3537 | |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 3538 | /* |
| 3539 | * Buffer list object - Implementation |
| 3540 | */ |
| 3541 | |
| 3542 | static PyTypeObject BufMapType; |
| 3543 | |
| 3544 | typedef struct |
| 3545 | { |
| 3546 | PyObject_HEAD |
| 3547 | } BufMapObject; |
| 3548 | |
| 3549 | static PyInt |
| 3550 | BufMapLength(PyObject *self UNUSED) |
| 3551 | { |
| 3552 | buf_T *b = firstbuf; |
| 3553 | PyInt n = 0; |
| 3554 | |
| 3555 | while (b) |
| 3556 | { |
| 3557 | ++n; |
| 3558 | b = b->b_next; |
| 3559 | } |
| 3560 | |
| 3561 | return n; |
| 3562 | } |
| 3563 | |
| 3564 | static PyObject * |
| 3565 | BufMapItem(PyObject *self UNUSED, PyObject *keyObject) |
| 3566 | { |
| 3567 | buf_T *b; |
| 3568 | int bnr; |
| 3569 | |
| 3570 | #if PY_MAJOR_VERSION < 3 |
| 3571 | if (PyInt_Check(keyObject)) |
| 3572 | bnr = PyInt_AsLong(keyObject); |
| 3573 | else |
| 3574 | #endif |
| 3575 | if (PyLong_Check(keyObject)) |
| 3576 | bnr = PyLong_AsLong(keyObject); |
| 3577 | else |
| 3578 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 3579 | PyErr_SetString(PyExc_TypeError, _("key must be integer")); |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 3580 | return NULL; |
| 3581 | } |
| 3582 | |
| 3583 | b = buflist_findnr(bnr); |
| 3584 | |
| 3585 | if (b) |
| 3586 | return BufferNew(b); |
| 3587 | else |
| 3588 | { |
Bram Moolenaar | 4d188da | 2013-05-15 15:35:09 +0200 | [diff] [blame] | 3589 | PyErr_SetObject(PyExc_KeyError, keyObject); |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 3590 | return NULL; |
| 3591 | } |
| 3592 | } |
| 3593 | |
| 3594 | static void |
| 3595 | BufMapIterDestruct(PyObject *buffer) |
| 3596 | { |
| 3597 | /* Iteration was stopped before all buffers were processed */ |
| 3598 | if (buffer) |
| 3599 | { |
| 3600 | Py_DECREF(buffer); |
| 3601 | } |
| 3602 | } |
| 3603 | |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 3604 | static int |
| 3605 | BufMapIterTraverse(PyObject *buffer, visitproc visit, void *arg) |
| 3606 | { |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 3607 | if (buffer) |
| 3608 | Py_VISIT(buffer); |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 3609 | return 0; |
| 3610 | } |
| 3611 | |
| 3612 | static int |
| 3613 | BufMapIterClear(PyObject **buffer) |
| 3614 | { |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 3615 | if (*buffer) |
| 3616 | Py_CLEAR(*buffer); |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 3617 | return 0; |
| 3618 | } |
| 3619 | |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 3620 | static PyObject * |
| 3621 | BufMapIterNext(PyObject **buffer) |
| 3622 | { |
| 3623 | PyObject *next; |
| 3624 | PyObject *r; |
| 3625 | |
| 3626 | if (!*buffer) |
| 3627 | return NULL; |
| 3628 | |
| 3629 | r = *buffer; |
| 3630 | |
| 3631 | if (CheckBuffer((BufferObject *)(r))) |
| 3632 | { |
| 3633 | *buffer = NULL; |
| 3634 | return NULL; |
| 3635 | } |
| 3636 | |
| 3637 | if (!((BufferObject *)(r))->buf->b_next) |
| 3638 | next = NULL; |
| 3639 | else if (!(next = BufferNew(((BufferObject *)(r))->buf->b_next))) |
| 3640 | return NULL; |
| 3641 | *buffer = next; |
Bram Moolenaar | 9e74e30 | 2013-05-17 21:20:17 +0200 | [diff] [blame] | 3642 | /* Do not increment reference: we no longer hold it (decref), but whoever |
| 3643 | * on other side will hold (incref). Decref+incref = nothing. */ |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 3644 | return r; |
| 3645 | } |
| 3646 | |
| 3647 | static PyObject * |
| 3648 | BufMapIter(PyObject *self UNUSED) |
| 3649 | { |
| 3650 | PyObject *buffer; |
| 3651 | |
| 3652 | buffer = BufferNew(firstbuf); |
| 3653 | return IterNew(buffer, |
Bram Moolenaar | cfef5ff | 2013-05-17 16:24:32 +0200 | [diff] [blame] | 3654 | (destructorfun) BufMapIterDestruct, (nextfun) BufMapIterNext, |
| 3655 | (traversefun) BufMapIterTraverse, (clearfun) BufMapIterClear); |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 3656 | } |
| 3657 | |
| 3658 | static PyMappingMethods BufMapAsMapping = { |
| 3659 | (lenfunc) BufMapLength, |
| 3660 | (binaryfunc) BufMapItem, |
| 3661 | (objobjargproc) 0, |
| 3662 | }; |
| 3663 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3664 | /* Current items object |
Bram Moolenaar | ca8a4df | 2010-07-31 19:54:14 +0200 | [diff] [blame] | 3665 | */ |
| 3666 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3667 | static char *CurrentAttrs[] = { |
| 3668 | "buffer", "window", "line", "range", "tabpage", |
| 3669 | NULL |
| 3670 | }; |
| 3671 | |
| 3672 | static PyObject * |
| 3673 | CurrentDir(PyObject *self) |
| 3674 | { |
| 3675 | return ObjectDir(self, CurrentAttrs); |
| 3676 | } |
| 3677 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3678 | static PyObject * |
| 3679 | CurrentGetattr(PyObject *self UNUSED, char *name) |
| 3680 | { |
| 3681 | if (strcmp(name, "buffer") == 0) |
| 3682 | return (PyObject *)BufferNew(curbuf); |
| 3683 | else if (strcmp(name, "window") == 0) |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 3684 | return (PyObject *)WindowNew(curwin, curtab); |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 3685 | else if (strcmp(name, "tabpage") == 0) |
| 3686 | return (PyObject *)TabPageNew(curtab); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3687 | else if (strcmp(name, "line") == 0) |
| 3688 | return GetBufferLine(curbuf, (PyInt)curwin->w_cursor.lnum); |
| 3689 | else if (strcmp(name, "range") == 0) |
| 3690 | return RangeNew(curbuf, RangeStart, RangeEnd); |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3691 | else if (strcmp(name, "__members__") == 0) |
| 3692 | return ObjectDir(NULL, CurrentAttrs); |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3693 | else |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3694 | #if PY_MAJOR_VERSION < 3 |
| 3695 | return Py_FindMethod(WindowMethods, self, name); |
| 3696 | #else |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3697 | return NULL; |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3698 | #endif |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3699 | } |
| 3700 | |
| 3701 | static int |
| 3702 | CurrentSetattr(PyObject *self UNUSED, char *name, PyObject *value) |
| 3703 | { |
| 3704 | if (strcmp(name, "line") == 0) |
| 3705 | { |
| 3706 | if (SetBufferLine(curbuf, (PyInt)curwin->w_cursor.lnum, value, NULL) == FAIL) |
| 3707 | return -1; |
| 3708 | |
| 3709 | return 0; |
| 3710 | } |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3711 | else if (strcmp(name, "buffer") == 0) |
| 3712 | { |
| 3713 | int count; |
| 3714 | |
| 3715 | if (value->ob_type != &BufferType) |
| 3716 | { |
| 3717 | PyErr_SetString(PyExc_TypeError, _("expected vim.buffer object")); |
| 3718 | return -1; |
| 3719 | } |
| 3720 | |
| 3721 | if (CheckBuffer((BufferObject *)(value))) |
| 3722 | return -1; |
| 3723 | count = ((BufferObject *)(value))->buf->b_fnum; |
| 3724 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3725 | VimTryStart(); |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3726 | if (do_buffer(DOBUF_GOTO, DOBUF_FIRST, FORWARD, count, 0) == FAIL) |
| 3727 | { |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3728 | if (VimTryEnd()) |
| 3729 | return -1; |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3730 | PyErr_SetVim(_("failed to switch to given buffer")); |
| 3731 | return -1; |
| 3732 | } |
| 3733 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3734 | return VimTryEnd(); |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3735 | } |
| 3736 | else if (strcmp(name, "window") == 0) |
| 3737 | { |
| 3738 | int count; |
| 3739 | |
| 3740 | if (value->ob_type != &WindowType) |
| 3741 | { |
| 3742 | PyErr_SetString(PyExc_TypeError, _("expected vim.window object")); |
| 3743 | return -1; |
| 3744 | } |
| 3745 | |
| 3746 | if (CheckWindow((WindowObject *)(value))) |
| 3747 | return -1; |
| 3748 | count = get_win_number(((WindowObject *)(value))->win, firstwin); |
| 3749 | |
| 3750 | if (!count) |
| 3751 | { |
| 3752 | PyErr_SetString(PyExc_ValueError, |
| 3753 | _("failed to find window in the current tab page")); |
| 3754 | return -1; |
| 3755 | } |
| 3756 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3757 | VimTryStart(); |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3758 | win_goto(((WindowObject *)(value))->win); |
| 3759 | if (((WindowObject *)(value))->win != curwin) |
| 3760 | { |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3761 | if (VimTryEnd()) |
| 3762 | return -1; |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3763 | PyErr_SetString(PyExc_RuntimeError, |
| 3764 | _("did not switch to the specified window")); |
| 3765 | return -1; |
| 3766 | } |
| 3767 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3768 | return VimTryEnd(); |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3769 | } |
| 3770 | else if (strcmp(name, "tabpage") == 0) |
| 3771 | { |
| 3772 | if (value->ob_type != &TabPageType) |
| 3773 | { |
| 3774 | PyErr_SetString(PyExc_TypeError, _("expected vim.tabpage object")); |
| 3775 | return -1; |
| 3776 | } |
| 3777 | |
| 3778 | if (CheckTabPage((TabPageObject *)(value))) |
| 3779 | return -1; |
| 3780 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3781 | VimTryStart(); |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3782 | goto_tabpage_tp(((TabPageObject *)(value))->tab, TRUE, TRUE); |
| 3783 | if (((TabPageObject *)(value))->tab != curtab) |
| 3784 | { |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3785 | if (VimTryEnd()) |
| 3786 | return -1; |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3787 | PyErr_SetString(PyExc_RuntimeError, |
| 3788 | _("did not switch to the specified tab page")); |
| 3789 | return -1; |
| 3790 | } |
| 3791 | |
Bram Moolenaar | a7b64ce | 2013-05-21 20:40:40 +0200 | [diff] [blame] | 3792 | return VimTryEnd(); |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 3793 | } |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 3794 | else |
| 3795 | { |
| 3796 | PyErr_SetString(PyExc_AttributeError, name); |
| 3797 | return -1; |
| 3798 | } |
| 3799 | } |
| 3800 | |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 3801 | static struct PyMethodDef CurrentMethods[] = { |
| 3802 | /* name, function, calling, documentation */ |
| 3803 | {"__dir__", (PyCFunction)CurrentDir, METH_NOARGS, ""}, |
| 3804 | { NULL, NULL, 0, NULL} |
| 3805 | }; |
| 3806 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 3807 | static void |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3808 | init_range_cmd(exarg_T *eap) |
| 3809 | { |
| 3810 | RangeStart = eap->line1; |
| 3811 | RangeEnd = eap->line2; |
| 3812 | } |
| 3813 | |
| 3814 | static void |
| 3815 | init_range_eval(typval_T *rettv UNUSED) |
| 3816 | { |
| 3817 | RangeStart = (PyInt) curwin->w_cursor.lnum; |
| 3818 | RangeEnd = RangeStart; |
| 3819 | } |
| 3820 | |
| 3821 | static void |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3822 | run_cmd(const char *cmd, void *arg UNUSED |
| 3823 | #ifdef PY_CAN_RECURSE |
| 3824 | , PyGILState_STATE *pygilstate UNUSED |
| 3825 | #endif |
| 3826 | ) |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3827 | { |
| 3828 | PyRun_SimpleString((char *) cmd); |
| 3829 | } |
| 3830 | |
| 3831 | static const char *code_hdr = "def " DOPY_FUNC "(line, linenr):\n "; |
| 3832 | static int code_hdr_len = 30; |
| 3833 | |
| 3834 | static void |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3835 | run_do(const char *cmd, void *arg UNUSED |
| 3836 | #ifdef PY_CAN_RECURSE |
| 3837 | , PyGILState_STATE *pygilstate |
| 3838 | #endif |
| 3839 | ) |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3840 | { |
| 3841 | PyInt lnum; |
| 3842 | size_t len; |
| 3843 | char *code; |
| 3844 | int status; |
| 3845 | PyObject *pyfunc, *pymain; |
| 3846 | |
Bram Moolenaar | 4ac6676 | 2013-05-28 22:31:46 +0200 | [diff] [blame] | 3847 | if (u_save((linenr_T)RangeStart - 1, (linenr_T)RangeEnd + 1) != OK) |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3848 | { |
| 3849 | EMSG(_("cannot save undo information")); |
| 3850 | return; |
| 3851 | } |
| 3852 | |
| 3853 | len = code_hdr_len + STRLEN(cmd); |
| 3854 | code = PyMem_New(char, len + 1); |
| 3855 | memcpy(code, code_hdr, code_hdr_len); |
| 3856 | STRCPY(code + code_hdr_len, cmd); |
| 3857 | status = PyRun_SimpleString(code); |
| 3858 | PyMem_Free(code); |
| 3859 | |
| 3860 | if (status) |
| 3861 | { |
| 3862 | EMSG(_("failed to run the code")); |
| 3863 | return; |
| 3864 | } |
| 3865 | |
| 3866 | status = 0; |
| 3867 | pymain = PyImport_AddModule("__main__"); |
| 3868 | pyfunc = PyObject_GetAttrString(pymain, DOPY_FUNC); |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3869 | #ifdef PY_CAN_RECURSE |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3870 | PyGILState_Release(*pygilstate); |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3871 | #endif |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3872 | |
| 3873 | for (lnum = RangeStart; lnum <= RangeEnd; ++lnum) |
| 3874 | { |
| 3875 | PyObject *line, *linenr, *ret; |
| 3876 | |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3877 | #ifdef PY_CAN_RECURSE |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3878 | *pygilstate = PyGILState_Ensure(); |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3879 | #endif |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3880 | if (!(line = GetBufferLine(curbuf, lnum))) |
| 3881 | goto err; |
| 3882 | if (!(linenr = PyInt_FromLong((long) lnum))) |
| 3883 | { |
| 3884 | Py_DECREF(line); |
| 3885 | goto err; |
| 3886 | } |
| 3887 | ret = PyObject_CallFunctionObjArgs(pyfunc, line, linenr, NULL); |
| 3888 | Py_DECREF(line); |
| 3889 | Py_DECREF(linenr); |
| 3890 | if (!ret) |
| 3891 | goto err; |
| 3892 | |
| 3893 | if (ret != Py_None) |
| 3894 | if (SetBufferLine(curbuf, lnum, ret, NULL) == FAIL) |
| 3895 | goto err; |
| 3896 | |
| 3897 | Py_XDECREF(ret); |
| 3898 | PythonIO_Flush(); |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3899 | #ifdef PY_CAN_RECURSE |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3900 | PyGILState_Release(*pygilstate); |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3901 | #endif |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3902 | } |
| 3903 | goto out; |
| 3904 | err: |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3905 | #ifdef PY_CAN_RECURSE |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3906 | *pygilstate = PyGILState_Ensure(); |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3907 | #endif |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3908 | PyErr_PrintEx(0); |
| 3909 | PythonIO_Flush(); |
| 3910 | status = 1; |
| 3911 | out: |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3912 | #ifdef PY_CAN_RECURSE |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3913 | if (!status) |
| 3914 | *pygilstate = PyGILState_Ensure(); |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3915 | #endif |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3916 | Py_DECREF(pyfunc); |
| 3917 | PyObject_SetAttrString(pymain, DOPY_FUNC, NULL); |
| 3918 | if (status) |
| 3919 | return; |
| 3920 | check_cursor(); |
| 3921 | update_curbuf(NOT_VALID); |
| 3922 | } |
| 3923 | |
| 3924 | static void |
Bram Moolenaar | 2a0f3d3 | 2013-05-21 22:23:56 +0200 | [diff] [blame] | 3925 | run_eval(const char *cmd, typval_T *rettv |
| 3926 | #ifdef PY_CAN_RECURSE |
| 3927 | , PyGILState_STATE *pygilstate UNUSED |
| 3928 | #endif |
| 3929 | ) |
Bram Moolenaar | b52f4c0 | 2013-05-21 18:19:38 +0200 | [diff] [blame] | 3930 | { |
| 3931 | PyObject *r; |
| 3932 | |
| 3933 | r = PyRun_String((char *) cmd, Py_eval_input, globals, globals); |
| 3934 | if (r == NULL) |
| 3935 | { |
| 3936 | if (PyErr_Occurred() && !msg_silent) |
| 3937 | PyErr_PrintEx(0); |
| 3938 | EMSG(_("E858: Eval did not return a valid python object")); |
| 3939 | } |
| 3940 | else |
| 3941 | { |
| 3942 | if (ConvertFromPyObject(r, rettv) == -1) |
| 3943 | EMSG(_("E859: Failed to convert returned python object to vim value")); |
| 3944 | Py_DECREF(r); |
| 3945 | } |
| 3946 | PyErr_Clear(); |
| 3947 | } |
| 3948 | |
| 3949 | static void |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 3950 | set_ref_in_py(const int copyID) |
| 3951 | { |
| 3952 | pylinkedlist_T *cur; |
| 3953 | dict_T *dd; |
| 3954 | list_T *ll; |
| 3955 | |
| 3956 | if (lastdict != NULL) |
| 3957 | for(cur = lastdict ; cur != NULL ; cur = cur->pll_prev) |
| 3958 | { |
| 3959 | dd = ((DictionaryObject *) (cur->pll_obj))->dict; |
| 3960 | if (dd->dv_copyID != copyID) |
| 3961 | { |
| 3962 | dd->dv_copyID = copyID; |
| 3963 | set_ref_in_ht(&dd->dv_hashtab, copyID); |
| 3964 | } |
| 3965 | } |
| 3966 | |
| 3967 | if (lastlist != NULL) |
| 3968 | for(cur = lastlist ; cur != NULL ; cur = cur->pll_prev) |
| 3969 | { |
| 3970 | ll = ((ListObject *) (cur->pll_obj))->list; |
| 3971 | if (ll->lv_copyID != copyID) |
| 3972 | { |
| 3973 | ll->lv_copyID = copyID; |
| 3974 | set_ref_in_list(ll, copyID); |
| 3975 | } |
| 3976 | } |
| 3977 | } |
| 3978 | |
| 3979 | static int |
| 3980 | set_string_copy(char_u *str, typval_T *tv) |
| 3981 | { |
| 3982 | tv->vval.v_string = vim_strsave(str); |
| 3983 | if (tv->vval.v_string == NULL) |
| 3984 | { |
| 3985 | PyErr_NoMemory(); |
| 3986 | return -1; |
| 3987 | } |
| 3988 | return 0; |
| 3989 | } |
| 3990 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3991 | static int |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 3992 | pydict_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3993 | { |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 3994 | dict_T *dict; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 3995 | char_u *key; |
| 3996 | dictitem_T *di; |
| 3997 | PyObject *keyObject; |
| 3998 | PyObject *valObject; |
| 3999 | Py_ssize_t iter = 0; |
| 4000 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4001 | if (!(dict = dict_alloc())) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4002 | return -1; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4003 | |
| 4004 | tv->v_type = VAR_DICT; |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4005 | tv->vval.v_dict = dict; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4006 | |
| 4007 | while (PyDict_Next(obj, &iter, &keyObject, &valObject)) |
| 4008 | { |
| 4009 | DICTKEY_DECL |
| 4010 | |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4011 | if (keyObject == NULL || valObject == NULL) |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4012 | { |
| 4013 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4014 | return -1; |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4015 | } |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4016 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4017 | if (!DICTKEY_SET_KEY) |
| 4018 | { |
| 4019 | dict_unref(dict); |
| 4020 | return -1; |
| 4021 | } |
| 4022 | DICTKEY_CHECK_EMPTY(-1) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4023 | |
| 4024 | di = dictitem_alloc(key); |
| 4025 | |
| 4026 | DICTKEY_UNREF |
| 4027 | |
| 4028 | if (di == NULL) |
| 4029 | { |
| 4030 | PyErr_NoMemory(); |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4031 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4032 | return -1; |
| 4033 | } |
| 4034 | di->di_tv.v_lock = 0; |
| 4035 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4036 | if (_ConvertFromPyObject(valObject, &di->di_tv, lookup_dict) == -1) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4037 | { |
| 4038 | vim_free(di); |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4039 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4040 | return -1; |
| 4041 | } |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4042 | |
| 4043 | if (dict_add(dict, di) == FAIL) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4044 | { |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4045 | clear_tv(&di->di_tv); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4046 | vim_free(di); |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4047 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4048 | PyErr_SetVim(_("failed to add key to dictionary")); |
| 4049 | return -1; |
| 4050 | } |
| 4051 | } |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4052 | |
| 4053 | --dict->dv_refcount; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4054 | return 0; |
| 4055 | } |
| 4056 | |
| 4057 | static int |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4058 | pymap_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4059 | { |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4060 | dict_T *dict; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4061 | char_u *key; |
| 4062 | dictitem_T *di; |
| 4063 | PyObject *list; |
| 4064 | PyObject *litem; |
| 4065 | PyObject *keyObject; |
| 4066 | PyObject *valObject; |
| 4067 | Py_ssize_t lsize; |
| 4068 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4069 | if (!(dict = dict_alloc())) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4070 | return -1; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4071 | |
| 4072 | tv->v_type = VAR_DICT; |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4073 | tv->vval.v_dict = dict; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4074 | |
| 4075 | list = PyMapping_Items(obj); |
| 4076 | if (list == NULL) |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4077 | { |
| 4078 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4079 | return -1; |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4080 | } |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4081 | lsize = PyList_Size(list); |
| 4082 | while (lsize--) |
| 4083 | { |
| 4084 | DICTKEY_DECL |
| 4085 | |
| 4086 | litem = PyList_GetItem(list, lsize); |
| 4087 | if (litem == NULL) |
| 4088 | { |
| 4089 | Py_DECREF(list); |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4090 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4091 | return -1; |
| 4092 | } |
| 4093 | |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4094 | if (!(keyObject = PyTuple_GetItem(litem, 0))) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4095 | { |
| 4096 | Py_DECREF(list); |
| 4097 | Py_DECREF(litem); |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4098 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4099 | return -1; |
| 4100 | } |
| 4101 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4102 | if (!DICTKEY_SET_KEY) |
| 4103 | { |
| 4104 | dict_unref(dict); |
| 4105 | Py_DECREF(list); |
| 4106 | Py_DECREF(litem); |
| 4107 | DICTKEY_UNREF |
| 4108 | return -1; |
| 4109 | } |
| 4110 | DICTKEY_CHECK_EMPTY(-1) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4111 | |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4112 | if (!(valObject = PyTuple_GetItem(litem, 1))) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4113 | { |
| 4114 | Py_DECREF(list); |
| 4115 | Py_DECREF(litem); |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4116 | dict_unref(dict); |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4117 | DICTKEY_UNREF |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4118 | return -1; |
| 4119 | } |
| 4120 | |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4121 | Py_DECREF(litem); |
| 4122 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4123 | di = dictitem_alloc(key); |
| 4124 | |
| 4125 | DICTKEY_UNREF |
| 4126 | |
| 4127 | if (di == NULL) |
| 4128 | { |
| 4129 | Py_DECREF(list); |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4130 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4131 | PyErr_NoMemory(); |
| 4132 | return -1; |
| 4133 | } |
| 4134 | di->di_tv.v_lock = 0; |
| 4135 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4136 | if (_ConvertFromPyObject(valObject, &di->di_tv, lookup_dict) == -1) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4137 | { |
| 4138 | vim_free(di); |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4139 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4140 | Py_DECREF(list); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4141 | return -1; |
| 4142 | } |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4143 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4144 | if (dict_add(dict, di) == FAIL) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4145 | { |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4146 | dictitem_free(di); |
| 4147 | dict_unref(dict); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4148 | Py_DECREF(list); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4149 | PyErr_SetVim(_("failed to add key to dictionary")); |
| 4150 | return -1; |
| 4151 | } |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4152 | } |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4153 | --dict->dv_refcount; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4154 | Py_DECREF(list); |
| 4155 | return 0; |
| 4156 | } |
| 4157 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4158 | static list_T * |
| 4159 | py_list_alloc() |
| 4160 | { |
| 4161 | list_T *r; |
| 4162 | |
| 4163 | if (!(r = list_alloc())) |
| 4164 | { |
| 4165 | PyErr_NoMemory(); |
| 4166 | return NULL; |
| 4167 | } |
| 4168 | ++r->lv_refcount; |
| 4169 | |
| 4170 | return r; |
| 4171 | } |
| 4172 | |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4173 | static int |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4174 | pyseq_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4175 | { |
| 4176 | list_T *l; |
| 4177 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4178 | if (!(l = py_list_alloc())) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4179 | return -1; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4180 | |
| 4181 | tv->v_type = VAR_LIST; |
| 4182 | tv->vval.v_list = l; |
| 4183 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4184 | if (list_py_concat(l, obj, lookup_dict) == -1) |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4185 | { |
| 4186 | list_unref(l); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4187 | return -1; |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4188 | } |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4189 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4190 | --l->lv_refcount; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4191 | return 0; |
| 4192 | } |
| 4193 | |
| 4194 | static int |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4195 | pyiter_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4196 | { |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4197 | PyObject *iterator; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4198 | PyObject *item; |
| 4199 | list_T *l; |
| 4200 | listitem_T *li; |
| 4201 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4202 | if (!(l = py_list_alloc())) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4203 | return -1; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4204 | |
| 4205 | tv->vval.v_list = l; |
| 4206 | tv->v_type = VAR_LIST; |
| 4207 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4208 | if (!(iterator = PyObject_GetIter(obj))) |
| 4209 | { |
| 4210 | list_unref(l); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4211 | return -1; |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4212 | } |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4213 | |
Bram Moolenaar | c836679 | 2013-05-29 22:46:26 +0200 | [diff] [blame] | 4214 | while ((item = PyIter_Next(iterator))) |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4215 | { |
| 4216 | li = listitem_alloc(); |
| 4217 | if (li == NULL) |
| 4218 | { |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4219 | list_unref(l); |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4220 | Py_DECREF(iterator); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4221 | PyErr_NoMemory(); |
| 4222 | return -1; |
| 4223 | } |
| 4224 | li->li_tv.v_lock = 0; |
| 4225 | |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4226 | if (_ConvertFromPyObject(item, &li->li_tv, lookup_dict) == -1) |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4227 | { |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4228 | list_unref(l); |
| 4229 | listitem_free(li); |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4230 | Py_DECREF(item); |
| 4231 | Py_DECREF(iterator); |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4232 | return -1; |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4233 | } |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4234 | |
| 4235 | list_append(l, li); |
| 4236 | |
| 4237 | Py_DECREF(item); |
| 4238 | } |
| 4239 | |
| 4240 | Py_DECREF(iterator); |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4241 | |
| 4242 | /* Iterator may have finished due to an exception */ |
| 4243 | if (PyErr_Occurred()) |
| 4244 | { |
| 4245 | list_unref(l); |
| 4246 | return -1; |
| 4247 | } |
| 4248 | |
| 4249 | --l->lv_refcount; |
Bram Moolenaar | 3d0c52d | 2013-05-12 19:45:35 +0200 | [diff] [blame] | 4250 | return 0; |
| 4251 | } |
| 4252 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4253 | typedef int (*pytotvfunc)(PyObject *, typval_T *, PyObject *); |
| 4254 | |
| 4255 | static int |
| 4256 | convert_dl(PyObject *obj, typval_T *tv, |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4257 | pytotvfunc py_to_tv, PyObject *lookup_dict) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4258 | { |
| 4259 | PyObject *capsule; |
| 4260 | char hexBuf[sizeof(void *) * 2 + 3]; |
| 4261 | |
| 4262 | sprintf(hexBuf, "%p", obj); |
| 4263 | |
Bram Moolenaar | 2afa323 | 2012-06-29 16:28:28 +0200 | [diff] [blame] | 4264 | # ifdef PY_USE_CAPSULE |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4265 | capsule = PyDict_GetItemString(lookup_dict, hexBuf); |
Bram Moolenaar | 2afa323 | 2012-06-29 16:28:28 +0200 | [diff] [blame] | 4266 | # else |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4267 | capsule = (PyObject *)PyDict_GetItemString(lookup_dict, hexBuf); |
Bram Moolenaar | 2afa323 | 2012-06-29 16:28:28 +0200 | [diff] [blame] | 4268 | # endif |
Bram Moolenaar | 221d687 | 2012-06-30 13:34:34 +0200 | [diff] [blame] | 4269 | if (capsule == NULL) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4270 | { |
Bram Moolenaar | 2afa323 | 2012-06-29 16:28:28 +0200 | [diff] [blame] | 4271 | # ifdef PY_USE_CAPSULE |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4272 | capsule = PyCapsule_New(tv, NULL, NULL); |
Bram Moolenaar | 221d687 | 2012-06-30 13:34:34 +0200 | [diff] [blame] | 4273 | # else |
| 4274 | capsule = PyCObject_FromVoidPtr(tv, NULL); |
| 4275 | # endif |
Bram Moolenaar | a03e631 | 2013-05-29 22:49:26 +0200 | [diff] [blame] | 4276 | if (PyDict_SetItemString(lookup_dict, hexBuf, capsule)) |
| 4277 | { |
| 4278 | Py_DECREF(capsule); |
| 4279 | tv->v_type = VAR_UNKNOWN; |
| 4280 | return -1; |
| 4281 | } |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4282 | if (py_to_tv(obj, tv, lookup_dict) == -1) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4283 | { |
| 4284 | tv->v_type = VAR_UNKNOWN; |
| 4285 | return -1; |
| 4286 | } |
| 4287 | /* As we are not using copy_tv which increments reference count we must |
| 4288 | * do it ourself. */ |
| 4289 | switch(tv->v_type) |
| 4290 | { |
| 4291 | case VAR_DICT: ++tv->vval.v_dict->dv_refcount; break; |
| 4292 | case VAR_LIST: ++tv->vval.v_list->lv_refcount; break; |
| 4293 | } |
| 4294 | } |
| 4295 | else |
| 4296 | { |
Bram Moolenaar | 2afa323 | 2012-06-29 16:28:28 +0200 | [diff] [blame] | 4297 | typval_T *v; |
| 4298 | |
| 4299 | # ifdef PY_USE_CAPSULE |
| 4300 | v = PyCapsule_GetPointer(capsule, NULL); |
| 4301 | # else |
Bram Moolenaar | 221d687 | 2012-06-30 13:34:34 +0200 | [diff] [blame] | 4302 | v = PyCObject_AsVoidPtr(capsule); |
Bram Moolenaar | 2afa323 | 2012-06-29 16:28:28 +0200 | [diff] [blame] | 4303 | # endif |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4304 | copy_tv(v, tv); |
| 4305 | } |
| 4306 | return 0; |
| 4307 | } |
| 4308 | |
| 4309 | static int |
| 4310 | ConvertFromPyObject(PyObject *obj, typval_T *tv) |
| 4311 | { |
| 4312 | PyObject *lookup_dict; |
| 4313 | int r; |
| 4314 | |
Bram Moolenaar | 9bb77d6 | 2013-05-30 12:14:49 +0200 | [diff] [blame] | 4315 | if (!(lookup_dict = PyDict_New())) |
| 4316 | return -1; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4317 | r = _ConvertFromPyObject(obj, tv, lookup_dict); |
| 4318 | Py_DECREF(lookup_dict); |
| 4319 | return r; |
| 4320 | } |
| 4321 | |
| 4322 | static int |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4323 | _ConvertFromPyObject(PyObject *obj, typval_T *tv, PyObject *lookup_dict) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4324 | { |
| 4325 | if (obj->ob_type == &DictionaryType) |
| 4326 | { |
| 4327 | tv->v_type = VAR_DICT; |
| 4328 | tv->vval.v_dict = (((DictionaryObject *)(obj))->dict); |
| 4329 | ++tv->vval.v_dict->dv_refcount; |
| 4330 | } |
| 4331 | else if (obj->ob_type == &ListType) |
| 4332 | { |
| 4333 | tv->v_type = VAR_LIST; |
| 4334 | tv->vval.v_list = (((ListObject *)(obj))->list); |
| 4335 | ++tv->vval.v_list->lv_refcount; |
| 4336 | } |
| 4337 | else if (obj->ob_type == &FunctionType) |
| 4338 | { |
| 4339 | if (set_string_copy(((FunctionObject *) (obj))->name, tv) == -1) |
| 4340 | return -1; |
| 4341 | |
| 4342 | tv->v_type = VAR_FUNC; |
| 4343 | func_ref(tv->vval.v_string); |
| 4344 | } |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4345 | else if (PyBytes_Check(obj)) |
| 4346 | { |
Bram Moolenaar | afa6b9a | 2012-09-05 19:09:11 +0200 | [diff] [blame] | 4347 | char_u *result; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4348 | |
Bram Moolenaar | afa6b9a | 2012-09-05 19:09:11 +0200 | [diff] [blame] | 4349 | if (PyString_AsStringAndSize(obj, (char **) &result, NULL) == -1) |
| 4350 | return -1; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4351 | if (result == NULL) |
| 4352 | return -1; |
| 4353 | |
| 4354 | if (set_string_copy(result, tv) == -1) |
| 4355 | return -1; |
| 4356 | |
| 4357 | tv->v_type = VAR_STRING; |
| 4358 | } |
| 4359 | else if (PyUnicode_Check(obj)) |
| 4360 | { |
| 4361 | PyObject *bytes; |
| 4362 | char_u *result; |
| 4363 | |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4364 | bytes = PyUnicode_AsEncodedString(obj, (char *)ENC_OPT, NULL); |
| 4365 | if (bytes == NULL) |
| 4366 | return -1; |
| 4367 | |
Bram Moolenaar | afa6b9a | 2012-09-05 19:09:11 +0200 | [diff] [blame] | 4368 | if(PyString_AsStringAndSize(bytes, (char **) &result, NULL) == -1) |
| 4369 | return -1; |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4370 | if (result == NULL) |
| 4371 | return -1; |
| 4372 | |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 4373 | if (set_string_copy(result, tv)) |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4374 | { |
| 4375 | Py_XDECREF(bytes); |
| 4376 | return -1; |
| 4377 | } |
| 4378 | Py_XDECREF(bytes); |
| 4379 | |
| 4380 | tv->v_type = VAR_STRING; |
| 4381 | } |
Bram Moolenaar | 335e0b6 | 2013-04-24 13:47:45 +0200 | [diff] [blame] | 4382 | #if PY_MAJOR_VERSION < 3 |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4383 | else if (PyInt_Check(obj)) |
| 4384 | { |
| 4385 | tv->v_type = VAR_NUMBER; |
| 4386 | tv->vval.v_number = (varnumber_T) PyInt_AsLong(obj); |
| 4387 | } |
| 4388 | #endif |
| 4389 | else if (PyLong_Check(obj)) |
| 4390 | { |
| 4391 | tv->v_type = VAR_NUMBER; |
| 4392 | tv->vval.v_number = (varnumber_T) PyLong_AsLong(obj); |
| 4393 | } |
| 4394 | else if (PyDict_Check(obj)) |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4395 | return convert_dl(obj, tv, pydict_to_tv, lookup_dict); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4396 | #ifdef FEAT_FLOAT |
| 4397 | else if (PyFloat_Check(obj)) |
| 4398 | { |
| 4399 | tv->v_type = VAR_FLOAT; |
| 4400 | tv->vval.v_float = (float_T) PyFloat_AsDouble(obj); |
| 4401 | } |
| 4402 | #endif |
| 4403 | else if (PyIter_Check(obj)) |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4404 | return convert_dl(obj, tv, pyiter_to_tv, lookup_dict); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4405 | else if (PySequence_Check(obj)) |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4406 | return convert_dl(obj, tv, pyseq_to_tv, lookup_dict); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4407 | else if (PyMapping_Check(obj)) |
Bram Moolenaar | b38caae | 2013-05-29 22:39:52 +0200 | [diff] [blame] | 4408 | return convert_dl(obj, tv, pymap_to_tv, lookup_dict); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4409 | else |
| 4410 | { |
Bram Moolenaar | 8661b17 | 2013-05-15 15:44:28 +0200 | [diff] [blame] | 4411 | PyErr_SetString(PyExc_TypeError, |
| 4412 | _("unable to convert to vim structure")); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4413 | return -1; |
| 4414 | } |
| 4415 | return 0; |
| 4416 | } |
| 4417 | |
| 4418 | static PyObject * |
| 4419 | ConvertToPyObject(typval_T *tv) |
| 4420 | { |
| 4421 | if (tv == NULL) |
| 4422 | { |
| 4423 | PyErr_SetVim(_("NULL reference passed")); |
| 4424 | return NULL; |
| 4425 | } |
| 4426 | switch (tv->v_type) |
| 4427 | { |
| 4428 | case VAR_STRING: |
Bram Moolenaar | d1f13fd | 2012-10-05 21:30:07 +0200 | [diff] [blame] | 4429 | return PyBytes_FromString(tv->vval.v_string == NULL |
| 4430 | ? "" : (char *)tv->vval.v_string); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4431 | case VAR_NUMBER: |
| 4432 | return PyLong_FromLong((long) tv->vval.v_number); |
| 4433 | #ifdef FEAT_FLOAT |
| 4434 | case VAR_FLOAT: |
| 4435 | return PyFloat_FromDouble((double) tv->vval.v_float); |
| 4436 | #endif |
| 4437 | case VAR_LIST: |
| 4438 | return ListNew(tv->vval.v_list); |
| 4439 | case VAR_DICT: |
| 4440 | return DictionaryNew(tv->vval.v_dict); |
| 4441 | case VAR_FUNC: |
Bram Moolenaar | d1f13fd | 2012-10-05 21:30:07 +0200 | [diff] [blame] | 4442 | return FunctionNew(tv->vval.v_string == NULL |
| 4443 | ? (char_u *)"" : tv->vval.v_string); |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 4444 | case VAR_UNKNOWN: |
| 4445 | Py_INCREF(Py_None); |
| 4446 | return Py_None; |
| 4447 | default: |
| 4448 | PyErr_SetVim(_("internal error: invalid value type")); |
| 4449 | return NULL; |
| 4450 | } |
| 4451 | } |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4452 | |
| 4453 | typedef struct |
| 4454 | { |
| 4455 | PyObject_HEAD |
| 4456 | } CurrentObject; |
| 4457 | static PyTypeObject CurrentType; |
| 4458 | |
| 4459 | static void |
| 4460 | init_structs(void) |
| 4461 | { |
| 4462 | vim_memset(&OutputType, 0, sizeof(OutputType)); |
| 4463 | OutputType.tp_name = "vim.message"; |
| 4464 | OutputType.tp_basicsize = sizeof(OutputObject); |
| 4465 | OutputType.tp_flags = Py_TPFLAGS_DEFAULT; |
| 4466 | OutputType.tp_doc = "vim message object"; |
| 4467 | OutputType.tp_methods = OutputMethods; |
| 4468 | #if PY_MAJOR_VERSION >= 3 |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4469 | OutputType.tp_getattro = (getattrofunc)OutputGetattro; |
| 4470 | OutputType.tp_setattro = (setattrofunc)OutputSetattro; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4471 | OutputType.tp_alloc = call_PyType_GenericAlloc; |
| 4472 | OutputType.tp_new = call_PyType_GenericNew; |
| 4473 | OutputType.tp_free = call_PyObject_Free; |
| 4474 | #else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4475 | OutputType.tp_getattr = (getattrfunc)OutputGetattr; |
| 4476 | OutputType.tp_setattr = (setattrfunc)OutputSetattr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4477 | #endif |
| 4478 | |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 4479 | vim_memset(&IterType, 0, sizeof(IterType)); |
| 4480 | IterType.tp_name = "vim.iter"; |
| 4481 | IterType.tp_basicsize = sizeof(IterObject); |
Bram Moolenaar | 07b8864 | 2013-05-29 22:58:32 +0200 | [diff] [blame] | 4482 | IterType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC; |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 4483 | IterType.tp_doc = "generic iterator object"; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4484 | IterType.tp_iter = (getiterfunc)IterIter; |
| 4485 | IterType.tp_iternext = (iternextfunc)IterNext; |
| 4486 | IterType.tp_dealloc = (destructor)IterDestructor; |
| 4487 | IterType.tp_traverse = (traverseproc)IterTraverse; |
| 4488 | IterType.tp_clear = (inquiry)IterClear; |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 4489 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4490 | vim_memset(&BufferType, 0, sizeof(BufferType)); |
| 4491 | BufferType.tp_name = "vim.buffer"; |
| 4492 | BufferType.tp_basicsize = sizeof(BufferType); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4493 | BufferType.tp_dealloc = (destructor)BufferDestructor; |
| 4494 | BufferType.tp_repr = (reprfunc)BufferRepr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4495 | BufferType.tp_as_sequence = &BufferAsSeq; |
| 4496 | BufferType.tp_as_mapping = &BufferAsMapping; |
| 4497 | BufferType.tp_flags = Py_TPFLAGS_DEFAULT; |
| 4498 | BufferType.tp_doc = "vim buffer object"; |
| 4499 | BufferType.tp_methods = BufferMethods; |
| 4500 | #if PY_MAJOR_VERSION >= 3 |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4501 | BufferType.tp_getattro = (getattrofunc)BufferGetattro; |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 4502 | BufferType.tp_setattro = (setattrofunc)BufferSetattro; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4503 | BufferType.tp_alloc = call_PyType_GenericAlloc; |
| 4504 | BufferType.tp_new = call_PyType_GenericNew; |
| 4505 | BufferType.tp_free = call_PyObject_Free; |
| 4506 | #else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4507 | BufferType.tp_getattr = (getattrfunc)BufferGetattr; |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 4508 | BufferType.tp_setattr = (setattrfunc)BufferSetattr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4509 | #endif |
| 4510 | |
| 4511 | vim_memset(&WindowType, 0, sizeof(WindowType)); |
| 4512 | WindowType.tp_name = "vim.window"; |
| 4513 | WindowType.tp_basicsize = sizeof(WindowObject); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4514 | WindowType.tp_dealloc = (destructor)WindowDestructor; |
| 4515 | WindowType.tp_repr = (reprfunc)WindowRepr; |
Bram Moolenaar | 07b8864 | 2013-05-29 22:58:32 +0200 | [diff] [blame] | 4516 | WindowType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4517 | WindowType.tp_doc = "vim Window object"; |
| 4518 | WindowType.tp_methods = WindowMethods; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4519 | WindowType.tp_traverse = (traverseproc)WindowTraverse; |
| 4520 | WindowType.tp_clear = (inquiry)WindowClear; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4521 | #if PY_MAJOR_VERSION >= 3 |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4522 | WindowType.tp_getattro = (getattrofunc)WindowGetattro; |
| 4523 | WindowType.tp_setattro = (setattrofunc)WindowSetattro; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4524 | WindowType.tp_alloc = call_PyType_GenericAlloc; |
| 4525 | WindowType.tp_new = call_PyType_GenericNew; |
| 4526 | WindowType.tp_free = call_PyObject_Free; |
| 4527 | #else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4528 | WindowType.tp_getattr = (getattrfunc)WindowGetattr; |
| 4529 | WindowType.tp_setattr = (setattrfunc)WindowSetattr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4530 | #endif |
| 4531 | |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 4532 | vim_memset(&TabPageType, 0, sizeof(TabPageType)); |
| 4533 | TabPageType.tp_name = "vim.tabpage"; |
| 4534 | TabPageType.tp_basicsize = sizeof(TabPageObject); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4535 | TabPageType.tp_dealloc = (destructor)TabPageDestructor; |
| 4536 | TabPageType.tp_repr = (reprfunc)TabPageRepr; |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 4537 | TabPageType.tp_flags = Py_TPFLAGS_DEFAULT; |
| 4538 | TabPageType.tp_doc = "vim tab page object"; |
| 4539 | TabPageType.tp_methods = TabPageMethods; |
| 4540 | #if PY_MAJOR_VERSION >= 3 |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4541 | TabPageType.tp_getattro = (getattrofunc)TabPageGetattro; |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 4542 | TabPageType.tp_alloc = call_PyType_GenericAlloc; |
| 4543 | TabPageType.tp_new = call_PyType_GenericNew; |
| 4544 | TabPageType.tp_free = call_PyObject_Free; |
| 4545 | #else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4546 | TabPageType.tp_getattr = (getattrfunc)TabPageGetattr; |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 4547 | #endif |
| 4548 | |
Bram Moolenaar | dfa38d4 | 2013-05-15 13:38:47 +0200 | [diff] [blame] | 4549 | vim_memset(&BufMapType, 0, sizeof(BufMapType)); |
| 4550 | BufMapType.tp_name = "vim.bufferlist"; |
| 4551 | BufMapType.tp_basicsize = sizeof(BufMapObject); |
| 4552 | BufMapType.tp_as_mapping = &BufMapAsMapping; |
| 4553 | BufMapType.tp_flags = Py_TPFLAGS_DEFAULT; |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 4554 | BufMapType.tp_iter = BufMapIter; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4555 | BufferType.tp_doc = "vim buffer list"; |
| 4556 | |
| 4557 | vim_memset(&WinListType, 0, sizeof(WinListType)); |
| 4558 | WinListType.tp_name = "vim.windowlist"; |
| 4559 | WinListType.tp_basicsize = sizeof(WinListType); |
| 4560 | WinListType.tp_as_sequence = &WinListAsSeq; |
| 4561 | WinListType.tp_flags = Py_TPFLAGS_DEFAULT; |
| 4562 | WinListType.tp_doc = "vim window list"; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4563 | WinListType.tp_dealloc = (destructor)WinListDestructor; |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 4564 | |
| 4565 | vim_memset(&TabListType, 0, sizeof(TabListType)); |
| 4566 | TabListType.tp_name = "vim.tabpagelist"; |
| 4567 | TabListType.tp_basicsize = sizeof(TabListType); |
| 4568 | TabListType.tp_as_sequence = &TabListAsSeq; |
| 4569 | TabListType.tp_flags = Py_TPFLAGS_DEFAULT; |
| 4570 | TabListType.tp_doc = "vim tab page list"; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4571 | |
| 4572 | vim_memset(&RangeType, 0, sizeof(RangeType)); |
| 4573 | RangeType.tp_name = "vim.range"; |
| 4574 | RangeType.tp_basicsize = sizeof(RangeObject); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4575 | RangeType.tp_dealloc = (destructor)RangeDestructor; |
| 4576 | RangeType.tp_repr = (reprfunc)RangeRepr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4577 | RangeType.tp_as_sequence = &RangeAsSeq; |
| 4578 | RangeType.tp_as_mapping = &RangeAsMapping; |
Bram Moolenaar | 07b8864 | 2013-05-29 22:58:32 +0200 | [diff] [blame] | 4579 | RangeType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4580 | RangeType.tp_doc = "vim Range object"; |
| 4581 | RangeType.tp_methods = RangeMethods; |
Bram Moolenaar | 774267b | 2013-05-21 20:51:59 +0200 | [diff] [blame] | 4582 | RangeType.tp_traverse = (traverseproc)RangeTraverse; |
| 4583 | RangeType.tp_clear = (inquiry)RangeClear; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4584 | #if PY_MAJOR_VERSION >= 3 |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4585 | RangeType.tp_getattro = (getattrofunc)RangeGetattro; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4586 | RangeType.tp_alloc = call_PyType_GenericAlloc; |
| 4587 | RangeType.tp_new = call_PyType_GenericNew; |
| 4588 | RangeType.tp_free = call_PyObject_Free; |
| 4589 | #else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4590 | RangeType.tp_getattr = (getattrfunc)RangeGetattr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4591 | #endif |
| 4592 | |
| 4593 | vim_memset(&CurrentType, 0, sizeof(CurrentType)); |
| 4594 | CurrentType.tp_name = "vim.currentdata"; |
| 4595 | CurrentType.tp_basicsize = sizeof(CurrentObject); |
| 4596 | CurrentType.tp_flags = Py_TPFLAGS_DEFAULT; |
| 4597 | CurrentType.tp_doc = "vim current object"; |
Bram Moolenaar | dd8aca6 | 2013-05-29 22:36:10 +0200 | [diff] [blame] | 4598 | CurrentType.tp_methods = CurrentMethods; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4599 | #if PY_MAJOR_VERSION >= 3 |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4600 | CurrentType.tp_getattro = (getattrofunc)CurrentGetattro; |
| 4601 | CurrentType.tp_setattro = (setattrofunc)CurrentSetattro; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4602 | #else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4603 | CurrentType.tp_getattr = (getattrfunc)CurrentGetattr; |
| 4604 | CurrentType.tp_setattr = (setattrfunc)CurrentSetattr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4605 | #endif |
| 4606 | |
| 4607 | vim_memset(&DictionaryType, 0, sizeof(DictionaryType)); |
| 4608 | DictionaryType.tp_name = "vim.dictionary"; |
| 4609 | DictionaryType.tp_basicsize = sizeof(DictionaryObject); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4610 | DictionaryType.tp_dealloc = (destructor)DictionaryDestructor; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4611 | DictionaryType.tp_as_mapping = &DictionaryAsMapping; |
| 4612 | DictionaryType.tp_flags = Py_TPFLAGS_DEFAULT; |
| 4613 | DictionaryType.tp_doc = "dictionary pushing modifications to vim structure"; |
| 4614 | DictionaryType.tp_methods = DictionaryMethods; |
| 4615 | #if PY_MAJOR_VERSION >= 3 |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4616 | DictionaryType.tp_getattro = (getattrofunc)DictionaryGetattro; |
| 4617 | DictionaryType.tp_setattro = (setattrofunc)DictionarySetattro; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4618 | #else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4619 | DictionaryType.tp_getattr = (getattrfunc)DictionaryGetattr; |
| 4620 | DictionaryType.tp_setattr = (setattrfunc)DictionarySetattr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4621 | #endif |
| 4622 | |
| 4623 | vim_memset(&ListType, 0, sizeof(ListType)); |
| 4624 | ListType.tp_name = "vim.list"; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4625 | ListType.tp_dealloc = (destructor)ListDestructor; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4626 | ListType.tp_basicsize = sizeof(ListObject); |
| 4627 | ListType.tp_as_sequence = &ListAsSeq; |
| 4628 | ListType.tp_as_mapping = &ListAsMapping; |
| 4629 | ListType.tp_flags = Py_TPFLAGS_DEFAULT; |
| 4630 | ListType.tp_doc = "list pushing modifications to vim structure"; |
| 4631 | ListType.tp_methods = ListMethods; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4632 | ListType.tp_iter = (getiterfunc)ListIter; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4633 | #if PY_MAJOR_VERSION >= 3 |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4634 | ListType.tp_getattro = (getattrofunc)ListGetattro; |
| 4635 | ListType.tp_setattro = (setattrofunc)ListSetattro; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4636 | #else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4637 | ListType.tp_getattr = (getattrfunc)ListGetattr; |
| 4638 | ListType.tp_setattr = (setattrfunc)ListSetattr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4639 | #endif |
| 4640 | |
| 4641 | vim_memset(&FunctionType, 0, sizeof(FunctionType)); |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 4642 | FunctionType.tp_name = "vim.function"; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4643 | FunctionType.tp_basicsize = sizeof(FunctionObject); |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4644 | FunctionType.tp_dealloc = (destructor)FunctionDestructor; |
| 4645 | FunctionType.tp_call = (ternaryfunc)FunctionCall; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4646 | FunctionType.tp_flags = Py_TPFLAGS_DEFAULT; |
| 4647 | FunctionType.tp_doc = "object that calls vim function"; |
| 4648 | FunctionType.tp_methods = FunctionMethods; |
Bram Moolenaar | a5b725c | 2013-05-30 12:43:54 +0200 | [diff] [blame^] | 4649 | FunctionType.tp_repr = (reprfunc)FunctionRepr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4650 | #if PY_MAJOR_VERSION >= 3 |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4651 | FunctionType.tp_getattro = (getattrofunc)FunctionGetattro; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4652 | #else |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4653 | FunctionType.tp_getattr = (getattrfunc)FunctionGetattr; |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4654 | #endif |
| 4655 | |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 4656 | vim_memset(&OptionsType, 0, sizeof(OptionsType)); |
| 4657 | OptionsType.tp_name = "vim.options"; |
| 4658 | OptionsType.tp_basicsize = sizeof(OptionsObject); |
Bram Moolenaar | 07b8864 | 2013-05-29 22:58:32 +0200 | [diff] [blame] | 4659 | OptionsType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC; |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 4660 | OptionsType.tp_doc = "object for manipulating options"; |
| 4661 | OptionsType.tp_as_mapping = &OptionsAsMapping; |
Bram Moolenaar | d6e3918 | 2013-05-21 18:30:34 +0200 | [diff] [blame] | 4662 | OptionsType.tp_dealloc = (destructor)OptionsDestructor; |
| 4663 | OptionsType.tp_traverse = (traverseproc)OptionsTraverse; |
| 4664 | OptionsType.tp_clear = (inquiry)OptionsClear; |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 4665 | |
Bram Moolenaar | 4d1da49 | 2013-04-24 13:39:15 +0200 | [diff] [blame] | 4666 | #if PY_MAJOR_VERSION >= 3 |
| 4667 | vim_memset(&vimmodule, 0, sizeof(vimmodule)); |
| 4668 | vimmodule.m_name = "vim"; |
| 4669 | vimmodule.m_doc = "Vim Python interface\n"; |
| 4670 | vimmodule.m_size = -1; |
| 4671 | vimmodule.m_methods = VimMethods; |
| 4672 | #endif |
| 4673 | } |
Bram Moolenaar | 1dc2878 | 2013-05-21 19:11:01 +0200 | [diff] [blame] | 4674 | |
| 4675 | #define PYTYPE_READY(type) \ |
| 4676 | if (PyType_Ready(&type)) \ |
| 4677 | return -1; |
| 4678 | |
| 4679 | static int |
| 4680 | init_types() |
| 4681 | { |
| 4682 | PYTYPE_READY(IterType); |
| 4683 | PYTYPE_READY(BufferType); |
| 4684 | PYTYPE_READY(RangeType); |
| 4685 | PYTYPE_READY(WindowType); |
| 4686 | PYTYPE_READY(TabPageType); |
| 4687 | PYTYPE_READY(BufMapType); |
| 4688 | PYTYPE_READY(WinListType); |
| 4689 | PYTYPE_READY(TabListType); |
| 4690 | PYTYPE_READY(CurrentType); |
| 4691 | PYTYPE_READY(DictionaryType); |
| 4692 | PYTYPE_READY(ListType); |
| 4693 | PYTYPE_READY(FunctionType); |
| 4694 | PYTYPE_READY(OptionsType); |
| 4695 | PYTYPE_READY(OutputType); |
| 4696 | return 0; |
| 4697 | } |
| 4698 | |
| 4699 | static BufMapObject TheBufferMap = |
| 4700 | { |
| 4701 | PyObject_HEAD_INIT(&BufMapType) |
| 4702 | }; |
| 4703 | |
| 4704 | static WinListObject TheWindowList = |
| 4705 | { |
| 4706 | PyObject_HEAD_INIT(&WinListType) |
| 4707 | NULL |
| 4708 | }; |
| 4709 | |
| 4710 | static CurrentObject TheCurrent = |
| 4711 | { |
| 4712 | PyObject_HEAD_INIT(&CurrentType) |
| 4713 | }; |
| 4714 | |
| 4715 | static TabListObject TheTabPageList = |
| 4716 | { |
| 4717 | PyObject_HEAD_INIT(&TabListType) |
| 4718 | }; |
| 4719 | |
| 4720 | static struct numeric_constant { |
| 4721 | char *name; |
| 4722 | int value; |
| 4723 | } numeric_constants[] = { |
| 4724 | {"VAR_LOCKED", VAR_LOCKED}, |
| 4725 | {"VAR_FIXED", VAR_FIXED}, |
| 4726 | {"VAR_SCOPE", VAR_SCOPE}, |
| 4727 | {"VAR_DEF_SCOPE", VAR_DEF_SCOPE}, |
| 4728 | }; |
| 4729 | |
| 4730 | static struct object_constant { |
| 4731 | char *name; |
| 4732 | PyObject *value; |
| 4733 | } object_constants[] = { |
| 4734 | {"buffers", (PyObject *)(void *)&TheBufferMap}, |
| 4735 | {"windows", (PyObject *)(void *)&TheWindowList}, |
| 4736 | {"tabpages", (PyObject *)(void *)&TheTabPageList}, |
| 4737 | {"current", (PyObject *)(void *)&TheCurrent}, |
Bram Moolenaar | cac867a | 2013-05-21 19:50:34 +0200 | [diff] [blame] | 4738 | |
| 4739 | {"Buffer", (PyObject *)&BufferType}, |
| 4740 | {"Range", (PyObject *)&RangeType}, |
| 4741 | {"Window", (PyObject *)&WindowType}, |
| 4742 | {"TabPage", (PyObject *)&TabPageType}, |
| 4743 | {"Dictionary", (PyObject *)&DictionaryType}, |
| 4744 | {"List", (PyObject *)&ListType}, |
| 4745 | {"Function", (PyObject *)&FunctionType}, |
| 4746 | {"Options", (PyObject *)&OptionsType}, |
Bram Moolenaar | 1dc2878 | 2013-05-21 19:11:01 +0200 | [diff] [blame] | 4747 | }; |
| 4748 | |
| 4749 | typedef int (*object_adder)(PyObject *, const char *, PyObject *); |
| 4750 | |
| 4751 | #define ADD_OBJECT(m, name, obj) \ |
| 4752 | if (add_object(m, name, obj)) \ |
| 4753 | return -1; |
| 4754 | |
| 4755 | #define ADD_CHECKED_OBJECT(m, name, obj) \ |
| 4756 | { \ |
| 4757 | PyObject *value = obj; \ |
| 4758 | if (!value) \ |
| 4759 | return -1; \ |
| 4760 | ADD_OBJECT(m, name, value); \ |
| 4761 | } |
| 4762 | |
| 4763 | static int |
| 4764 | populate_module(PyObject *m, object_adder add_object) |
| 4765 | { |
| 4766 | int i; |
| 4767 | |
| 4768 | for (i = 0; i < (int)(sizeof(numeric_constants) |
| 4769 | / sizeof(struct numeric_constant)); |
| 4770 | ++i) |
| 4771 | ADD_CHECKED_OBJECT(m, numeric_constants[i].name, |
| 4772 | PyInt_FromLong(numeric_constants[i].value)); |
| 4773 | |
| 4774 | for (i = 0; i < (int)(sizeof(object_constants) |
| 4775 | / sizeof(struct object_constant)); |
| 4776 | ++i) |
| 4777 | { |
| 4778 | PyObject *value; |
| 4779 | |
| 4780 | value = object_constants[i].value; |
| 4781 | Py_INCREF(value); |
| 4782 | ADD_OBJECT(m, object_constants[i].name, value); |
| 4783 | } |
| 4784 | |
| 4785 | if (!(VimError = PyErr_NewException("vim.error", NULL, NULL))) |
| 4786 | return -1; |
| 4787 | ADD_OBJECT(m, "error", VimError); |
| 4788 | |
| 4789 | ADD_CHECKED_OBJECT(m, "vars", DictionaryNew(&globvardict)); |
| 4790 | ADD_CHECKED_OBJECT(m, "vvars", DictionaryNew(&vimvardict)); |
| 4791 | ADD_CHECKED_OBJECT(m, "options", |
| 4792 | OptionsNew(SREQ_GLOBAL, NULL, dummy_check, NULL)); |
| 4793 | return 0; |
| 4794 | } |