if_python.c
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:53k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* vi:set ts=8 sts=4 sw=4:
  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.  */
  8. /*
  9.  * Python extensions by Paul Moore.
  10.  * Changes for Unix by David Leonard.
  11.  *
  12.  * This consists of four parts:
  13.  * 1. Python interpreter main program
  14.  * 2. Python output stream: writes output via [e]msg().
  15.  * 3. Implementation of the Vim module for Python
  16.  * 4. Utility functions for handling the interface between Vim and Python.
  17.  */
  18. #include <stdio.h>
  19. #include <stdarg.h>
  20. #include <limits.h>
  21. #include <Python.h>
  22. #ifdef macintosh
  23. # include "macglue.h"
  24. #endif
  25. #undef main /* Defined in python.h - aargh */
  26. #undef HAVE_FCNTL_H /* Clash with os_win32.h */
  27. /* Parser flags */
  28. #define single_input 256
  29. #define file_input 257
  30. #define eval_input 258
  31. #include "vim.h"
  32. /******************************************************
  33.  * Internal function prototypes.
  34.  */
  35. static int DoPythonCommand(EXARG *, const char *);
  36. static int RangeStart;
  37. static int RangeEnd;
  38. static void PythonIO_Flush(void);
  39. static int PythonIO_Init(void);
  40. static int PythonMod_Init(void);
  41. /* Utility functions for the vim/python interface
  42.  * ----------------------------------------------
  43.  */
  44. static PyObject *GetBufferLine(BUF *, int);
  45. static PyObject *GetBufferLineList(BUF *, int, int);
  46. static int SetBufferLine(BUF *, int, PyObject *, int *);
  47. static int SetBufferLineList(BUF *, int, int, PyObject *, int *);
  48. static int InsertBufferLines(BUF *, int, PyObject *, int *);
  49. static PyObject *LineToString(const char *);
  50. static char *StringToLine(PyObject *);
  51. static int VimErrorCheck(void);
  52. #define PyErr_SetVim(str) PyErr_SetString(VimError, str)
  53. /******************************************************
  54.  * 1. Python interpreter main program.
  55.  */
  56. static int initialised = 0;
  57. #if PYTHON_API_VERSION < 1007 /* Python 1.4 */
  58. typedef PyObject PyThreadState;
  59. #endif /* Python 1.4 */
  60. static PyThreadState* saved_python_thread = NULL;
  61. /* suspend a thread of the python interpreter
  62.    - other threads are allowed to run */
  63. static void Python_SaveThread() {
  64. saved_python_thread = PyEval_SaveThread();
  65. }
  66. /* restore a thread of the python interpreter
  67.    - waits for other threads to block */
  68. static void Python_RestoreThread() {
  69. PyEval_RestoreThread( saved_python_thread );
  70. saved_python_thread = NULL;
  71. }
  72. /* obtain a lock on the Vim data structures */
  73. static void Python_Lock_Vim() {
  74. }
  75. /* release a lock on the Vim data structures */
  76. static void Python_Release_Vim() {
  77. }
  78.     static int
  79. Python_Init(void)
  80. {
  81.     if (!initialised)
  82.     {
  83. #ifndef macintosh
  84. Py_Initialize();
  85. #else
  86. PyMac_Initialize();
  87. #endif
  88. if (PythonIO_Init())
  89.     goto fail;
  90. if (PythonMod_Init())
  91.     goto fail;
  92. /* the first python thread is vim's */
  93. Python_SaveThread();
  94. initialised = 1;
  95.     }
  96.     return 0;
  97. fail:
  98.     /* We call PythonIO_Flush() here to print any Python errors.
  99.      * This is OK, as it is possible to call this function even
  100.      * if PythonIO_Init() has not completed successfully (it will
  101.      * not do anything in this case).
  102.      */
  103.     PythonIO_Flush();
  104.     return -1;
  105. }
  106. /* External interface
  107.  */
  108.     static int
  109. DoPythonCommand(EXARG *eap, const char *cmd)
  110. {
  111. #ifdef macintosh
  112.     GrafPtr oldPort;
  113.     GetPort (&oldPort);
  114. #endif
  115.     if (Python_Init())
  116. return FAIL;
  117.     RangeStart = eap->line1;
  118.     RangeEnd = eap->line2;
  119.     Python_Release_Vim();     /* leave vim */
  120.     Python_RestoreThread();     /* enter python */
  121.     PyRun_SimpleString((char *)(cmd));
  122.     Python_SaveThread();     /* leave python */
  123.     Python_Lock_Vim();     /* enter vim */
  124.     PythonIO_Flush();
  125. #ifdef macintosh
  126.     SetPort (oldPort);
  127. #endif
  128.     return OK;
  129. }
  130.     int
  131. do_python(EXARG *eap)
  132. {
  133.     return DoPythonCommand(eap, (char *)eap->arg);
  134. }
  135. #define BUFFER_SIZE 1024
  136.     int
  137. do_pyfile(EXARG *eap)
  138. {
  139.     static char buffer[BUFFER_SIZE];
  140.     const char *file = (char *)eap->arg;
  141.     char *p;
  142.     /* Have to do it like this. PyRun_SimpleFile requires you to pass a
  143.      * stdio file pointer, but Vim and the Python DLL are compiled with
  144.      * different options under Windows, meaning that stdio pointers aren't
  145.      * compatible between the two. Yuk.
  146.      *
  147.      * Put the string "execfile('file')" into buffer. But, we need to
  148.      * escape any backslashes or single quotes in the file name, so that
  149.      * Python won't mangle the file name.
  150.      */
  151.     strcpy(buffer, "execfile('");
  152.     p = buffer + 10; /* size of "execfile('" */
  153.     while (*file && p < buffer + (BUFFER_SIZE - 3))
  154.     {
  155. if (*file == '\' || *file == ''')
  156.     *p++ = '\';
  157. *p++ = *file++;
  158.     }
  159.     /* If we didn't finish the file name, we hit a buffer overflow */
  160.     if (*file != '')
  161. return FAIL;
  162.     /* Put in the terminating "')" and a null */
  163.     *p++ = ''';
  164.     *p++ = ')';
  165.     *p++ = '';
  166.     /* Execute the file */
  167.     return DoPythonCommand(eap, buffer);
  168. }
  169. /******************************************************
  170.  * 2. Python output stream: writes output via [e]msg().
  171.  */
  172. /* Implementation functions
  173.  */
  174. static PyObject *OutputGetattr(PyObject *, char *);
  175. static int OutputSetattr(PyObject *, char *, PyObject *);
  176. static PyObject *OutputWrite(PyObject *, PyObject *);
  177. static PyObject *OutputWritelines(PyObject *, PyObject *);
  178. typedef void (*writefn)(char_u *);
  179. static void writer(writefn fn, char_u *str, int n);
  180. /* Output object definition
  181.  */
  182. typedef struct
  183. {
  184.     PyObject_HEAD
  185.     long softspace;
  186.     long error;
  187. } OutputObject;
  188. static struct PyMethodDef OutputMethods[] = {
  189.     /* name,     function, calling,    documentation */
  190.     {"write",     OutputWrite, 1,     "" },
  191.     {"writelines",  OutputWritelines, 1,     "" },
  192.     { NULL,     NULL, 0,     NULL }
  193. };
  194. static PyTypeObject OutputType = {
  195. PyObject_HEAD_INIT(0)
  196. 0,
  197. "message",
  198. sizeof(OutputObject),
  199. 0,
  200. (destructor) 0,
  201. (printfunc) 0,
  202. (getattrfunc) OutputGetattr,
  203. (setattrfunc) OutputSetattr,
  204. (cmpfunc) 0,
  205. (reprfunc) 0,
  206. 0, /* as number */
  207. 0, /* as sequence */
  208. 0, /* as mapping */
  209. (hashfunc) 0,
  210. (ternaryfunc) 0,
  211. (reprfunc) 0
  212. };
  213. /*************/
  214.     static PyObject *
  215. OutputGetattr(PyObject *self, char *name)
  216. {
  217.     if (strcmp(name, "softspace") == 0)
  218. return PyInt_FromLong(((OutputObject *)(self))->softspace);
  219.     return Py_FindMethod(OutputMethods, self, name);
  220. }
  221.     static int
  222. OutputSetattr(PyObject *self, char *name, PyObject *val)
  223. {
  224.     if (val == NULL) {
  225. PyErr_SetString(PyExc_AttributeError, "can't delete OutputObject attributes");
  226. return -1;
  227.     }
  228.     if (strcmp(name, "softspace") == 0)
  229.     {
  230. if (!PyInt_Check(val)) {
  231.     PyErr_SetString(PyExc_TypeError, "softspace must be an integer");
  232.     return -1;
  233. }
  234. ((OutputObject *)(self))->softspace = PyInt_AsLong(val);
  235. return 0;
  236.     }
  237.     PyErr_SetString(PyExc_AttributeError, "invalid attribute");
  238.     return -1;
  239. }
  240. /*************/
  241.     static PyObject *
  242. OutputWrite(PyObject *self, PyObject *args)
  243. {
  244.     int len;
  245.     char *str;
  246.     int error = ((OutputObject *)(self))->error;
  247.     if (!PyArg_ParseTuple(args, "s#", &str, &len))
  248. return NULL;
  249.     Py_BEGIN_ALLOW_THREADS
  250.     Python_Lock_Vim();
  251.     writer((writefn)(error ? emsg : msg), (char_u *)str, len);
  252.     Python_Release_Vim();
  253.     Py_END_ALLOW_THREADS
  254.     Py_INCREF(Py_None);
  255.     return Py_None;
  256. }
  257.     static PyObject *
  258. OutputWritelines(PyObject *self, PyObject *args)
  259. {
  260.     int n;
  261.     int i;
  262.     PyObject *list;
  263.     int error = ((OutputObject *)(self))->error;
  264.     if (!PyArg_ParseTuple(args, "O", &list))
  265. return NULL;
  266.     Py_INCREF(list);
  267.     if (!PyList_Check(list)) {
  268. PyErr_SetString(PyExc_TypeError, "writelines() requires list of strings");
  269. Py_DECREF(list);
  270. return NULL;
  271.     }
  272.     n = PyList_Size(list);
  273.     for (i = 0; i < n; ++i)
  274.     {
  275. PyObject *line = PyList_GetItem(list, i);
  276. char *str;
  277. int len;
  278. if (!PyArg_Parse(line, "s#", &str, &len)) {
  279.     PyErr_SetString(PyExc_TypeError, "writelines() requires list of strings");
  280.     Py_DECREF(list);
  281.     return NULL;
  282. }
  283. Py_BEGIN_ALLOW_THREADS
  284. Python_Lock_Vim();
  285. writer((writefn)(error ? emsg : msg), (char_u *)str, len);
  286. Python_Release_Vim();
  287. Py_END_ALLOW_THREADS
  288.     }
  289.     Py_DECREF(list);
  290.     Py_INCREF(Py_None);
  291.     return Py_None;
  292. }
  293. /* Output buffer management
  294.  */
  295. static char_u *buffer = NULL;
  296. static int buffer_len = 0;
  297. static int buffer_size = 0;
  298. static writefn old_fn = NULL;
  299.     static void
  300. buffer_ensure(int n)
  301. {
  302.     int new_size;
  303.     char_u *new_buffer;
  304.     if (n < buffer_size)
  305. return;
  306.     new_size = buffer_size;
  307.     while (new_size < n)
  308. new_size += 80;
  309.     if (new_size != buffer_size)
  310.     {
  311. new_buffer = alloc((unsigned)new_size);
  312. if (new_buffer == NULL)
  313. {
  314.     EMSG("Out of memory!");
  315.     return;
  316. }
  317. if (buffer)
  318. {
  319.     memcpy(new_buffer, buffer, buffer_len);
  320.     vim_free(buffer);
  321. }
  322. buffer = new_buffer;
  323. buffer_size = new_size;
  324.     }
  325. }
  326.     static void
  327. PythonIO_Flush(void)
  328. {
  329.     if (old_fn && buffer_len)
  330.     {
  331. buffer[buffer_len] = 0;
  332. old_fn(buffer);
  333.     }
  334.     buffer_len = 0;
  335. }
  336.     static void
  337. writer(writefn fn, char_u *str, int n)
  338. {
  339.     char_u *ptr;
  340.     if (fn != old_fn && old_fn != NULL)
  341. PythonIO_Flush();
  342.     old_fn = fn;
  343.     while (n > 0 && (ptr = memchr(str, 'n', n)) != NULL)
  344.     {
  345. int len = ptr - str;
  346. buffer_ensure(buffer_len + len + 1);
  347. memcpy(buffer + buffer_len, str, len);
  348. buffer_len += len;
  349. buffer[buffer_len] = 0;
  350. fn(buffer);
  351. str = ptr + 1;
  352. n -= len + 1;
  353. buffer_len = 0;
  354.     }
  355.     /* Put the remaining text into the buffer for later printing */
  356.     buffer_ensure(buffer_len + n + 1);
  357.     memcpy(buffer + buffer_len, str, n);
  358.     buffer_len += n;
  359. }
  360. /***************/
  361. static OutputObject Output =
  362. {
  363.     PyObject_HEAD_INIT(&OutputType)
  364.     0,
  365.     0
  366. };
  367. static OutputObject Error =
  368. {
  369.     PyObject_HEAD_INIT(&OutputType)
  370.     0,
  371.     1
  372. };
  373.     static int
  374. PythonIO_Init(void)
  375. {
  376.     /* Fixups... */
  377.     OutputType.ob_type = &PyType_Type;
  378.     PySys_SetObject("stdout", (PyObject *)(&Output));
  379.     PySys_SetObject("stderr", (PyObject *)(&Error));
  380.     if (PyErr_Occurred())
  381.     {
  382. EMSG("Python: Error initialising I/O objects");
  383. return -1;
  384.     }
  385.     return 0;
  386. }
  387. /******************************************************
  388.  * 3. Implementation of the Vim module for Python
  389.  */
  390. /* Vim module - Implementation functions
  391.  * -------------------------------------
  392.  */
  393. static PyObject *VimError;
  394. static PyObject *VimCommand(PyObject *, PyObject *);
  395. static PyObject *VimEval(PyObject *, PyObject *);
  396. /* Window type - Implementation functions
  397.  * --------------------------------------
  398.  */
  399. typedef struct
  400. {
  401.     PyObject_HEAD
  402.     WIN *win;
  403. }
  404. WindowObject;
  405. #define INVALID_WINDOW_VALUE ((WIN*)(-1))
  406. #define WindowType_Check(obj) ((obj)->ob_type == &WindowType)
  407. static PyObject *WindowNew(WIN *);
  408. static void WindowDestructor(PyObject *);
  409. static PyObject *WindowGetattr(PyObject *, char *);
  410. static int WindowSetattr(PyObject *, char *, PyObject *);
  411. static PyObject *WindowRepr(PyObject *);
  412. /* Buffer type - Implementation functions
  413.  * --------------------------------------
  414.  */
  415. typedef struct
  416. {
  417.     PyObject_HEAD
  418.     BUF *buf;
  419. }
  420. BufferObject;
  421. #define INVALID_BUFFER_VALUE ((BUF*)(-1))
  422. #define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
  423. static PyObject *BufferNew (BUF *);
  424. static void BufferDestructor(PyObject *);
  425. static PyObject *BufferGetattr(PyObject *, char *);
  426. static PyObject *BufferRepr(PyObject *);
  427. static int BufferLength(PyObject *);
  428. static PyObject *BufferItem(PyObject *, int);
  429. static PyObject *BufferSlice(PyObject *, int, int);
  430. static int BufferAssItem(PyObject *, int, PyObject *);
  431. static int BufferAssSlice(PyObject *, int, int, PyObject *);
  432. static PyObject *BufferAppend(PyObject *, PyObject *);
  433. static PyObject *BufferMark(PyObject *, PyObject *);
  434. static PyObject *BufferRange(PyObject *, PyObject *);
  435. /* Line range type - Implementation functions
  436.  * --------------------------------------
  437.  */
  438. typedef struct
  439. {
  440.     PyObject_HEAD
  441.     BufferObject *buf;
  442.     int start;
  443.     int end;
  444. }
  445. RangeObject;
  446. #define RangeType_Check(obj) ((obj)->ob_type == &RangeType)
  447. static PyObject *RangeNew(BUF *, int, int);
  448. static void RangeDestructor(PyObject *);
  449. static PyObject *RangeGetattr(PyObject *, char *);
  450. static PyObject *RangeRepr(PyObject *);
  451. static int RangeLength(PyObject *);
  452. static PyObject *RangeItem(PyObject *, int);
  453. static PyObject *RangeSlice(PyObject *, int, int);
  454. static int RangeAssItem(PyObject *, int, PyObject *);
  455. static int RangeAssSlice(PyObject *, int, int, PyObject *);
  456. static PyObject *RangeAppend(PyObject *, PyObject *);
  457. /* Window list type - Implementation functions
  458.  * -------------------------------------------
  459.  */
  460. static int WinListLength(PyObject *);
  461. static PyObject *WinListItem(PyObject *, int);
  462. /* Buffer list type - Implementation functions
  463.  * -------------------------------------------
  464.  */
  465. static int BufListLength(PyObject *);
  466. static PyObject *BufListItem(PyObject *, int);
  467. /* Current objects type - Implementation functions
  468.  * -----------------------------------------------
  469.  */
  470. static PyObject *CurrentGetattr(PyObject *, char *);
  471. static int CurrentSetattr(PyObject *, char *, PyObject *);
  472. /* Vim module - Definitions
  473.  */
  474. static struct PyMethodDef VimMethods[] = {
  475.     /* name,      function, calling,    documentation */
  476.     {"command",      VimCommand, 1,     "" },
  477.     {"eval",      VimEval, 1,     "" },
  478.     { NULL,      NULL, 0,     NULL }
  479. };
  480. /* Vim module - Implementation
  481.  */
  482. /*ARGSUSED*/
  483.     static PyObject *
  484. VimCommand(PyObject *self, PyObject *args)
  485. {
  486.     char *cmd;
  487.     PyObject *result;
  488.     if (!PyArg_ParseTuple(args, "s", &cmd))
  489. return NULL;
  490.     PyErr_Clear();
  491.     Py_BEGIN_ALLOW_THREADS
  492.     Python_Lock_Vim();
  493.     do_cmdline((char_u *)cmd, NULL, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
  494.     update_screen(NOT_VALID);
  495.     Python_Release_Vim();
  496.     Py_END_ALLOW_THREADS
  497.     if (VimErrorCheck())
  498. result = NULL;
  499.     else
  500. result = Py_None;
  501.     Py_XINCREF(result);
  502.     return result;
  503. }
  504. /*ARGSUSED*/
  505.     static PyObject *
  506. VimEval(PyObject *self, PyObject *args)
  507. {
  508.     char *expr;
  509.     char *str;
  510.     PyObject *result;
  511.     if (!PyArg_ParseTuple(args, "s", &expr))
  512. return NULL;
  513. #ifdef WANT_EVAL
  514.     Py_BEGIN_ALLOW_THREADS
  515.     Python_Lock_Vim();
  516.     str = (char *)eval_to_string((char_u *)expr, NULL);
  517.     Python_Release_Vim();
  518.     Py_END_ALLOW_THREADS
  519.     if (str == NULL)
  520.     {
  521. PyErr_SetVim("invalid expression");
  522. return NULL;
  523.     }
  524. #else
  525.     PyErr_SetVim("expressions disabled at compile time");
  526.     return NULL;
  527. #endif
  528.     result = Py_BuildValue("s", str);
  529.     Py_BEGIN_ALLOW_THREADS
  530.     Python_Lock_Vim();
  531.     vim_free(str);
  532.     Python_Release_Vim();
  533.     Py_END_ALLOW_THREADS
  534.     return result;
  535. }
  536. /* Common routines for buffers and line ranges
  537.  * -------------------------------------------
  538.  */
  539.     static int
  540. CheckBuffer(BufferObject *this)
  541. {
  542.     if (this->buf == INVALID_BUFFER_VALUE)
  543.     {
  544. PyErr_SetVim("attempt to refer to deleted buffer");
  545. return -1;
  546.     }
  547.     return 0;
  548. }
  549.     static PyObject *
  550. RBItem(BufferObject *self, int n, int start, int end)
  551. {
  552.     if (CheckBuffer(self))
  553. return NULL;
  554.     if (n < 0 || n > end - start)
  555.     {
  556. PyErr_SetString(PyExc_IndexError, "line number out of range");
  557. return NULL;
  558.     }
  559.     return GetBufferLine(self->buf, n+start);
  560. }
  561.     static PyObject *
  562. RBSlice(BufferObject *self, int lo, int hi, int start, int end)
  563. {
  564.     int size;
  565.     if (CheckBuffer(self))
  566. return NULL;
  567.     size = end - start + 1;
  568.     if (lo < 0)
  569. lo = 0;
  570.     else if (lo > size)
  571. lo = size;
  572.     if (hi < 0)
  573. hi = 0;
  574.     if (hi < lo)
  575. hi = lo;
  576.     else if (hi > size)
  577. hi = size;
  578.     return GetBufferLineList(self->buf, lo+start, hi+start);
  579. }
  580.     static int
  581. RBAssItem(BufferObject *self, int n, PyObject *val, int start, int end, int *new_end)
  582. {
  583.     int len_change;
  584.     if (CheckBuffer(self))
  585. return -1;
  586.     if (n < 0 || n > end - start)
  587.     {
  588. PyErr_SetString(PyExc_IndexError, "line number out of range");
  589. return -1;
  590.     }
  591.     if (SetBufferLine(self->buf, n+start, val, &len_change) == FAIL)
  592. return -1;
  593.     if (new_end)
  594. *new_end = end + len_change;
  595.     return 0;
  596. }
  597.     static int
  598. RBAssSlice(BufferObject *self, int lo, int hi, PyObject *val, int start, int end, int *new_end)
  599. {
  600.     int size;
  601.     int len_change;
  602.     /* Self must be a valid buffer */
  603.     if (CheckBuffer(self))
  604. return -1;
  605.     /* Sort out the slice range */
  606.     size = end - start + 1;
  607.     if (lo < 0)
  608. lo = 0;
  609.     else if (lo > size)
  610. lo = size;
  611.     if (hi < 0)
  612. hi = 0;
  613.     if (hi < lo)
  614. hi = lo;
  615.     else if (hi > size)
  616. hi = size;
  617.     if (SetBufferLineList(self->buf, lo+start, hi+start, val, &len_change) == FAIL)
  618. return -1;
  619.     if (new_end)
  620. *new_end = end + len_change;
  621.     return 0;
  622. }
  623.     static PyObject *
  624. RBAppend(BufferObject *self, PyObject *args, int start, int end, int *new_end)
  625. {
  626.     PyObject *lines;
  627.     int len_change;
  628.     int max;
  629.     int n;
  630.     if (CheckBuffer(self))
  631. return NULL;
  632.     max = n = end - start + 1;
  633.     if (!PyArg_ParseTuple(args, "O|i", &lines, &n))
  634. return NULL;
  635.     if (n < 0 || n > max)
  636.     {
  637. PyErr_SetString(PyExc_ValueError, "line number out of range");
  638. return NULL;
  639.     }
  640.     if (InsertBufferLines(self->buf, n + start - 1, lines, &len_change) == FAIL)
  641. return NULL;
  642.     if (new_end)
  643. *new_end = end + len_change;
  644.     Py_INCREF(Py_None);
  645.     return Py_None;
  646. }
  647. /* Buffer object - Definitions
  648.  */
  649. static struct PyMethodDef BufferMethods[] = {
  650.     /* name,     function, calling,    documentation */
  651.     {"append",     BufferAppend, 1,     "" },
  652.     {"mark",     BufferMark, 1,     "" },
  653.     {"range",     BufferRange, 1,     "" },
  654.     { NULL,     NULL, 0,     NULL }
  655. };
  656. static PySequenceMethods BufferAsSeq = {
  657.     (inquiry) BufferLength,     /* sq_length,    len(x)   */
  658.     (binaryfunc) 0, /* BufferConcat, */      /* sq_concat,    x+y      */
  659.     (intargfunc) 0, /* BufferRepeat, */      /* sq_repeat,    x*n      */
  660.     (intargfunc) BufferItem,     /* sq_item,      x[i]     */
  661.     (intintargfunc) BufferSlice,     /* sq_slice,     x[i:j]   */
  662.     (intobjargproc) BufferAssItem,     /* sq_ass_item,  x[i]=v   */
  663.     (intintobjargproc) BufferAssSlice,     /* sq_ass_slice, x[i:j]=v */
  664. };
  665. static PyTypeObject BufferType = {
  666.     PyObject_HEAD_INIT(0)
  667.     0,
  668.     "buffer",
  669.     sizeof(BufferObject),
  670.     0,
  671.     (destructor)    BufferDestructor, /* tp_dealloc, refcount==0  */
  672.     (printfunc)     0, /* tp_print, print x      */
  673.     (getattrfunc)   BufferGetattr, /* tp_getattr, x.attr      */
  674.     (setattrfunc)   0, /* tp_setattr, x.attr=v     */
  675.     (cmpfunc)     0, /* tp_compare, x>y      */
  676.     (reprfunc)     BufferRepr, /* tp_repr, `x`, print x */
  677.     0,     /* as number */
  678.     &BufferAsSeq,   /* as sequence */
  679.     0,     /* as mapping */
  680.     (hashfunc) 0, /* tp_hash, dict(x) */
  681.     (ternaryfunc) 0, /* tp_call, x()     */
  682.     (reprfunc) 0, /* tp_str,  str(x)  */
  683. };
  684. /* Buffer object - Implementation
  685.  */
  686.     static PyObject *
  687. BufferNew(BUF *buf)
  688. {
  689.     /* We need to handle deletion of buffers underneath us.
  690.      * If we add a "python_ref" field to the BUF structure,
  691.      * then we can get at it in buf_freeall() in vim. We then
  692.      * need to create only ONE Python object per buffer - if
  693.      * we try to create a second, just INCREF the existing one
  694.      * and return it. The (single) Python object referring to
  695.      * the buffer is stored in "python_ref".
  696.      * Question: what to do on a buf_freeall(). We'll probably
  697.      * have to either delete the Python object (DECREF it to
  698.      * zero - a bad idea, as it leaves dangling refs!) or
  699.      * set the BUF* value to an invalid value (-1?), which
  700.      * means we need checks in all access functions... Bah.
  701.      */
  702.     BufferObject *self;
  703.     if (buf->python_ref)
  704. self = buf->python_ref;
  705.     else
  706.     {
  707. self = PyObject_NEW(BufferObject, &BufferType);
  708. if (self == NULL)
  709.     return NULL;
  710. self->buf = buf;
  711. buf->python_ref = self;
  712.     }
  713.     return (PyObject *)(self);
  714. }
  715.     static void
  716. BufferDestructor(PyObject *self)
  717. {
  718.     BufferObject *this = (BufferObject *)(self);
  719.     if (this->buf && this->buf != INVALID_BUFFER_VALUE)
  720. this->buf->python_ref = NULL;
  721.     PyMem_DEL(self);
  722. }
  723.     static PyObject *
  724. BufferGetattr(PyObject *self, char *name)
  725. {
  726.     BufferObject *this = (BufferObject *)(self);
  727.     if (CheckBuffer(this))
  728. return NULL;
  729.     if (strcmp(name, "name") == 0)
  730. return Py_BuildValue("s",this->buf->b_ffname);
  731.     else if (strcmp(name,"__members__") == 0)
  732. return Py_BuildValue("[s]", "name");
  733.     else
  734. return Py_FindMethod(BufferMethods, self, name);
  735. }
  736.     static PyObject *
  737. BufferRepr(PyObject *self)
  738. {
  739.     static char repr[50];
  740.     BufferObject *this = (BufferObject *)(self);
  741.     if (this->buf == INVALID_BUFFER_VALUE)
  742.     {
  743. sprintf(repr, "<buffer object (deleted) at %8lX>", (long)(self));
  744. return PyString_FromString(repr);
  745.     }
  746.     else
  747.     {
  748. char *name = (char *)this->buf->b_fname;
  749. int len = strlen(name);
  750. if (len > 35)
  751.     name = name + (35 - len);
  752. sprintf(repr, "<buffer %s%s>", len > 35 ? "..." : "", name);
  753. return PyString_FromString(repr);
  754.     }
  755. }
  756. /******************/
  757.     static int
  758. BufferLength(PyObject *self)
  759. {
  760.     /* HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION? */
  761.     if (CheckBuffer((BufferObject *)(self)))
  762. return -1; /* ??? */
  763.     return (((BufferObject *)(self))->buf->b_ml.ml_line_count);
  764. }
  765.     static PyObject *
  766. BufferItem(PyObject *self, int n)
  767. {
  768.     return RBItem((BufferObject *)(self), n, 1,
  769.   (int)((BufferObject *)(self))->buf->b_ml.ml_line_count);
  770. }
  771.     static PyObject *
  772. BufferSlice(PyObject *self, int lo, int hi)
  773. {
  774.     return RBSlice((BufferObject *)(self), lo, hi, 1,
  775.    (int)((BufferObject *)(self))->buf->b_ml.ml_line_count);
  776. }
  777.     static int
  778. BufferAssItem(PyObject *self, int n, PyObject *val)
  779. {
  780.     return RBAssItem((BufferObject *)(self), n, val, 1,
  781.      (int)((BufferObject *)(self))->buf->b_ml.ml_line_count,
  782.      NULL);
  783. }
  784.     static int
  785. BufferAssSlice(PyObject *self, int lo, int hi, PyObject *val)
  786. {
  787.     return RBAssSlice((BufferObject *)(self), lo, hi, val, 1,
  788.       (int)((BufferObject *)(self))->buf->b_ml.ml_line_count,
  789.       NULL);
  790. }
  791.     static PyObject *
  792. BufferAppend(PyObject *self, PyObject *args)
  793. {
  794.     return RBAppend((BufferObject *)(self), args, 1,
  795.     (int)((BufferObject *)(self))->buf->b_ml.ml_line_count,
  796.     NULL);
  797. }
  798.     static PyObject *
  799. BufferMark(PyObject *self, PyObject *args)
  800. {
  801.     FPOS    *posp;
  802.     char    mark;
  803.     BUF     *curbuf_save;
  804.     if (CheckBuffer((BufferObject *)(self)))
  805. return NULL;
  806.     if (!PyArg_ParseTuple(args, "c", &mark))
  807. return NULL;
  808.     curbuf_save = curbuf;
  809.     curbuf = ((BufferObject *)(self))->buf;
  810.     posp = getmark(mark, FALSE);
  811.     curbuf = curbuf_save;
  812.     if (posp == NULL)
  813.     {
  814. PyErr_SetVim("invalid mark name");
  815. return NULL;
  816.     }
  817.     /* Ckeck for keyboard interrupt */
  818.     if (VimErrorCheck())
  819. return NULL;
  820.     if (posp->lnum == 0)
  821.     {
  822. /* Or raise an error? */
  823. Py_INCREF(Py_None);
  824. return Py_None;
  825.     }
  826.     return Py_BuildValue("(ll)", (long)(posp->lnum), (long)(posp->col));
  827. }
  828.     static PyObject *
  829. BufferRange(PyObject *self, PyObject *args)
  830. {
  831.     int start;
  832.     int end;
  833.     if (CheckBuffer((BufferObject *)(self)))
  834. return NULL;
  835.     if (!PyArg_ParseTuple(args, "ii", &start, &end))
  836. return NULL;
  837.     return RangeNew(((BufferObject *)(self))->buf, start, end);
  838. }
  839. /* Line range object - Definitions
  840.  */
  841. static struct PyMethodDef RangeMethods[] = {
  842.     /* name,     function, calling,    documentation */
  843.     {"append",     RangeAppend, 1,     "" },
  844.     { NULL,     NULL, 0,     NULL }
  845. };
  846. static PySequenceMethods RangeAsSeq = {
  847.     (inquiry) RangeLength,     /* sq_length,    len(x)   */
  848.     (binaryfunc) 0, /* RangeConcat, */      /* sq_concat,    x+y      */
  849.     (intargfunc) 0, /* RangeRepeat, */      /* sq_repeat,    x*n      */
  850.     (intargfunc) RangeItem,     /* sq_item,      x[i]     */
  851.     (intintargfunc) RangeSlice,     /* sq_slice,     x[i:j]   */
  852.     (intobjargproc) RangeAssItem,     /* sq_ass_item,  x[i]=v   */
  853.     (intintobjargproc) RangeAssSlice,     /* sq_ass_slice, x[i:j]=v */
  854. };
  855. static PyTypeObject RangeType = {
  856.     PyObject_HEAD_INIT(0)
  857.     0,
  858.     "range",
  859.     sizeof(RangeObject),
  860.     0,
  861.     (destructor)    RangeDestructor, /* tp_dealloc, refcount==0  */
  862.     (printfunc)     0, /* tp_print, print x      */
  863.     (getattrfunc)   RangeGetattr, /* tp_getattr, x.attr      */
  864.     (setattrfunc)   0, /* tp_setattr, x.attr=v     */
  865.     (cmpfunc)     0, /* tp_compare, x>y      */
  866.     (reprfunc)     RangeRepr, /* tp_repr, `x`, print x */
  867.     0,     /* as number */
  868.     &RangeAsSeq,    /* as sequence */
  869.     0,     /* as mapping */
  870.     (hashfunc) 0, /* tp_hash, dict(x) */
  871.     (ternaryfunc) 0, /* tp_call, x()     */
  872.     (reprfunc) 0, /* tp_str,  str(x)  */
  873. };
  874. /* Line range object - Implementation
  875.  */
  876.     static PyObject *
  877. RangeNew(BUF *buf, int start, int end)
  878. {
  879.     BufferObject *bufr;
  880.     RangeObject *self;
  881.     self = PyObject_NEW(RangeObject, &RangeType);
  882.     if (self == NULL)
  883. return NULL;
  884.     bufr = (BufferObject *)BufferNew(buf);
  885.     if (bufr == NULL)
  886.     {
  887. PyMem_DEL(self);
  888. return NULL;
  889.     }
  890.     Py_INCREF(bufr);
  891.     self->buf = bufr;
  892.     self->start = start;
  893.     self->end = end;
  894.     return (PyObject *)(self);
  895. }
  896.     static void
  897. RangeDestructor(PyObject *self)
  898. {
  899.     Py_DECREF(((RangeObject *)(self))->buf);
  900.     PyMem_DEL(self);
  901. }
  902.     static PyObject *
  903. RangeGetattr(PyObject *self, char *name)
  904. {
  905.     return Py_FindMethod(RangeMethods, self, name);
  906. }
  907.     static PyObject *
  908. RangeRepr(PyObject *self)
  909. {
  910.     static char repr[75];
  911.     RangeObject *this = (RangeObject *)(self);
  912.     if (this->buf->buf == INVALID_BUFFER_VALUE)
  913.     {
  914. sprintf(repr, "<range object (for deleted buffer) at %8lX>",
  915. (long)(self));
  916. return PyString_FromString(repr);
  917.     }
  918.     else
  919.     {
  920. char *name = (char *)this->buf->buf->b_fname;
  921. int len = strlen(name);
  922. if (len > 45)
  923.     name = name + (45 - len);
  924. sprintf(repr, "<range %s%s (%d:%d)>",
  925. len > 45 ? "..." : "", name,
  926. this->start, this->end);
  927. return PyString_FromString(repr);
  928.     }
  929. }
  930. /****************/
  931.     static int
  932. RangeLength(PyObject *self)
  933. {
  934.     /* HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION? */
  935.     if (CheckBuffer(((RangeObject *)(self))->buf))
  936. return -1; /* ??? */
  937.     return (((RangeObject *)(self))->end - ((RangeObject *)(self))->start + 1);
  938. }
  939.     static PyObject *
  940. RangeItem(PyObject *self, int n)
  941. {
  942.     return RBItem(((RangeObject *)(self))->buf, n,
  943.   ((RangeObject *)(self))->start,
  944.   ((RangeObject *)(self))->end);
  945. }
  946.     static PyObject *
  947. RangeSlice(PyObject *self, int lo, int hi)
  948. {
  949.     return RBSlice(((RangeObject *)(self))->buf, lo, hi,
  950.    ((RangeObject *)(self))->start,
  951.    ((RangeObject *)(self))->end);
  952. }
  953.     static int
  954. RangeAssItem(PyObject *self, int n, PyObject *val)
  955. {
  956.     return RBAssItem(((RangeObject *)(self))->buf, n, val,
  957.      ((RangeObject *)(self))->start,
  958.      ((RangeObject *)(self))->end,
  959.      &((RangeObject *)(self))->end);
  960. }
  961.     static int
  962. RangeAssSlice(PyObject *self, int lo, int hi, PyObject *val)
  963. {
  964.     return RBAssSlice(((RangeObject *)(self))->buf, lo, hi, val,
  965.       ((RangeObject *)(self))->start,
  966.       ((RangeObject *)(self))->end,
  967.       &((RangeObject *)(self))->end);
  968. }
  969.     static PyObject *
  970. RangeAppend(PyObject *self, PyObject *args)
  971. {
  972.     return RBAppend(((RangeObject *)(self))->buf, args,
  973.     ((RangeObject *)(self))->start,
  974.     ((RangeObject *)(self))->end,
  975.     &((RangeObject *)(self))->end);
  976. }
  977. /* Buffer list object - Definitions
  978.  */
  979. typedef struct
  980. {
  981.     PyObject_HEAD
  982. }
  983. BufListObject;
  984. static PySequenceMethods BufListAsSeq = {
  985.     (inquiry) BufListLength,     /* sq_length,    len(x)   */
  986.     (binaryfunc) 0,     /* sq_concat,    x+y      */
  987.     (intargfunc) 0,     /* sq_repeat,    x*n      */
  988.     (intargfunc) BufListItem,     /* sq_item,      x[i]     */
  989.     (intintargfunc) 0,     /* sq_slice,     x[i:j]   */
  990.     (intobjargproc) 0,     /* sq_ass_item,  x[i]=v   */
  991.     (intintobjargproc) 0,     /* sq_ass_slice, x[i:j]=v */
  992. };
  993. static PyTypeObject BufListType = {
  994.     PyObject_HEAD_INIT(0)
  995.     0,
  996.     "buffer list",
  997.     sizeof(BufListObject),
  998.     0,
  999.     (destructor)    0, /* tp_dealloc, refcount==0  */
  1000.     (printfunc)     0, /* tp_print, print x      */
  1001.     (getattrfunc)   0, /* tp_getattr, x.attr      */
  1002.     (setattrfunc)   0, /* tp_setattr, x.attr=v     */
  1003.     (cmpfunc)     0, /* tp_compare, x>y      */
  1004.     (reprfunc)     0, /* tp_repr, `x`, print x */
  1005.     0,     /* as number */
  1006.     &BufListAsSeq,  /* as sequence */
  1007.     0,     /* as mapping */
  1008.     (hashfunc) 0, /* tp_hash, dict(x) */
  1009.     (ternaryfunc) 0, /* tp_call, x()     */
  1010.     (reprfunc) 0, /* tp_str,  str(x)  */
  1011. };
  1012. /* Buffer list object - Implementation
  1013.  */
  1014. /*ARGSUSED*/
  1015.     static int
  1016. BufListLength(PyObject *self)
  1017. {
  1018.     BUF *b = firstbuf;
  1019.     int n = 0;
  1020.     while (b)
  1021.     {
  1022. ++n;
  1023. b = b->b_next;
  1024.     }
  1025.     return n;
  1026. }
  1027. /*ARGSUSED*/
  1028.     static PyObject *
  1029. BufListItem(PyObject *self, int n)
  1030. {
  1031.     BUF *b;
  1032.     for (b = firstbuf; b; b = b->b_next, --n)
  1033.     {
  1034. if (n == 0)
  1035.     return BufferNew(b);
  1036.     }
  1037.     PyErr_SetString(PyExc_IndexError, "no such buffer");
  1038.     return NULL;
  1039. }
  1040. /* Window object - Definitions
  1041.  */
  1042. static struct PyMethodDef WindowMethods[] = {
  1043.     /* name,     function, calling,    documentation */
  1044.     { NULL,     NULL, 0,     NULL }
  1045. };
  1046. static PyTypeObject WindowType = {
  1047.     PyObject_HEAD_INIT(0)
  1048.     0,
  1049.     "window",
  1050.     sizeof(WindowObject),
  1051.     0,
  1052.     (destructor)    WindowDestructor, /* tp_dealloc, refcount==0  */
  1053.     (printfunc)     0, /* tp_print, print x      */
  1054.     (getattrfunc)   WindowGetattr, /* tp_getattr, x.attr      */
  1055.     (setattrfunc)   WindowSetattr, /* tp_setattr, x.attr=v     */
  1056.     (cmpfunc)     0, /* tp_compare, x>y      */
  1057.     (reprfunc)     WindowRepr, /* tp_repr, `x`, print x */
  1058.     0,     /* as number */
  1059.     0,     /* as sequence */
  1060.     0,     /* as mapping */
  1061.     (hashfunc) 0, /* tp_hash, dict(x) */
  1062.     (ternaryfunc) 0, /* tp_call, x()     */
  1063.     (reprfunc) 0, /* tp_str,  str(x)  */
  1064. };
  1065. /* Window object - Implementation
  1066.  */
  1067.     static PyObject *
  1068. WindowNew(WIN *win)
  1069. {
  1070.     /* We need to handle deletion of windows underneath us.
  1071.      * If we add a "python_ref" field to the WIN structure,
  1072.      * then we can get at it in win_free() in vim. We then
  1073.      * need to create only ONE Python object per window - if
  1074.      * we try to create a second, just INCREF the existing one
  1075.      * and return it. The (single) Python object referring to
  1076.      * the window is stored in "python_ref".
  1077.      * On a win_free() we set the Python object's WIN* field
  1078.      * to an invalid value. We trap all uses of a window
  1079.      * object, and reject them if the WIN* field is invalid.
  1080.      */
  1081.     WindowObject *self;
  1082.     if (win->python_ref)
  1083. self = win->python_ref;
  1084.     else
  1085.     {
  1086. self = PyObject_NEW(WindowObject, &WindowType);
  1087. if (self == NULL)
  1088.     return NULL;
  1089. self->win = win;
  1090. win->python_ref = self;
  1091.     }
  1092.     return (PyObject *)(self);
  1093. }
  1094.     static void
  1095. WindowDestructor(PyObject *self)
  1096. {
  1097.     WindowObject *this = (WindowObject *)(self);
  1098.     if (this->win && this->win != INVALID_WINDOW_VALUE)
  1099. this->win->python_ref = NULL;
  1100.     PyMem_DEL(self);
  1101. }
  1102.     static int
  1103. CheckWindow(WindowObject *this)
  1104. {
  1105.     if (this->win == INVALID_WINDOW_VALUE)
  1106.     {
  1107. PyErr_SetVim("attempt to refer to deleted window");
  1108. return -1;
  1109.     }
  1110.     return 0;
  1111. }
  1112.     static PyObject *
  1113. WindowGetattr(PyObject *self, char *name)
  1114. {
  1115.     WindowObject *this = (WindowObject *)(self);
  1116.     if (CheckWindow(this))
  1117. return NULL;
  1118.     if (strcmp(name, "buffer") == 0)
  1119. return (PyObject *)BufferNew(this->win->w_buffer);
  1120.     else if (strcmp(name, "cursor") == 0)
  1121.     {
  1122. FPOS *pos = &this->win->w_cursor;
  1123. return Py_BuildValue("(ll)", (long)(pos->lnum), (long)(pos->col));
  1124.     }
  1125.     else if (strcmp(name, "height") == 0)
  1126. return Py_BuildValue("l", (long)(this->win->w_height));
  1127.     else if (strcmp(name,"__members__") == 0)
  1128. return Py_BuildValue("[sss]", "buffer", "cursor", "height");
  1129.     else
  1130. return Py_FindMethod(WindowMethods, self, name);
  1131. }
  1132.     static int
  1133. WindowSetattr(PyObject *self, char *name, PyObject *val)
  1134. {
  1135.     WindowObject *this = (WindowObject *)(self);
  1136.     if (CheckWindow(this))
  1137. return -1;
  1138.     if (strcmp(name, "buffer") == 0)
  1139.     {
  1140. PyErr_SetString(PyExc_TypeError, "readonly attribute");
  1141. return -1;
  1142.     }
  1143.     else if (strcmp(name, "cursor") == 0)
  1144.     {
  1145. long lnum;
  1146. long col;
  1147. if (!PyArg_Parse(val, "(ll)", &lnum, &col))
  1148.     return -1;
  1149. if (lnum <= 0 || lnum > this->win->w_buffer->b_ml.ml_line_count)
  1150. {
  1151.     PyErr_SetVim("cursor position outside buffer");
  1152.     return -1;
  1153. }
  1154. /* Check for keyboard interrupts */
  1155. if (VimErrorCheck())
  1156.     return -1;
  1157. /* NO CHECK ON COLUMN - SEEMS NOT TO MATTER */
  1158. this->win->w_cursor.lnum = lnum;
  1159. this->win->w_cursor.col = col;
  1160. update_screen(NOT_VALID);
  1161. return 0;
  1162.     }
  1163.     else if (strcmp(name, "height") == 0)
  1164.     {
  1165. int height;
  1166. WIN *savewin;
  1167. if (!PyArg_Parse(val, "i", &height))
  1168.     return -1;
  1169. #ifdef USE_GUI
  1170. need_mouse_correct = TRUE;
  1171. #endif
  1172. savewin = curwin;
  1173. curwin = this->win;
  1174. win_setheight(height);
  1175. curwin = savewin;
  1176. /* Check for keyboard interrupts */
  1177. if (VimErrorCheck())
  1178.     return -1;
  1179. return 0;
  1180.     }
  1181.     else
  1182.     {
  1183. PyErr_SetString(PyExc_AttributeError, name);
  1184. return -1;
  1185.     }
  1186. }
  1187.     static PyObject *
  1188. WindowRepr(PyObject *self)
  1189. {
  1190.     static char repr[50];
  1191.     WindowObject *this = (WindowObject *)(self);
  1192.     if (this->win == INVALID_WINDOW_VALUE)
  1193.     {
  1194. sprintf(repr, "<window object (deleted) at %.8lX>", (long)(self));
  1195. return PyString_FromString(repr);
  1196.     }
  1197.     else
  1198.     {
  1199. int i = 0;
  1200. WIN *w;
  1201. for (w = firstwin; w != NULL && w != this->win; w = w->w_next)
  1202.     ++i;
  1203. if (w == NULL)
  1204.     sprintf(repr, "<window object (unknown) at %.8lX>", (long)(self));
  1205. else
  1206.     sprintf(repr, "<window %d>", i);
  1207. return PyString_FromString(repr);
  1208.     }
  1209. }
  1210. /* Window list object - Definitions
  1211.  */
  1212. typedef struct
  1213. {
  1214.     PyObject_HEAD
  1215. }
  1216. WinListObject;
  1217. static PySequenceMethods WinListAsSeq = {
  1218.     (inquiry) WinListLength,     /* sq_length,    len(x)   */
  1219.     (binaryfunc) 0,     /* sq_concat,    x+y      */
  1220.     (intargfunc) 0,     /* sq_repeat,    x*n      */
  1221.     (intargfunc) WinListItem,     /* sq_item,      x[i]     */
  1222.     (intintargfunc) 0,     /* sq_slice,     x[i:j]   */
  1223.     (intobjargproc) 0,     /* sq_ass_item,  x[i]=v   */
  1224.     (intintobjargproc) 0,     /* sq_ass_slice, x[i:j]=v */
  1225. };
  1226. static PyTypeObject WinListType = {
  1227.     PyObject_HEAD_INIT(0)
  1228.     0,
  1229.     "window list",
  1230.     sizeof(WinListObject),
  1231.     0,
  1232.     (destructor)    0, /* tp_dealloc, refcount==0  */
  1233.     (printfunc)     0, /* tp_print, print x      */
  1234.     (getattrfunc)   0, /* tp_getattr, x.attr      */
  1235.     (setattrfunc)   0, /* tp_setattr, x.attr=v     */
  1236.     (cmpfunc)     0, /* tp_compare, x>y      */
  1237.     (reprfunc)     0, /* tp_repr, `x`, print x */
  1238.     0,     /* as number */
  1239.     &WinListAsSeq,  /* as sequence */
  1240.     0,     /* as mapping */
  1241.     (hashfunc) 0, /* tp_hash, dict(x) */
  1242.     (ternaryfunc) 0, /* tp_call, x()     */
  1243.     (reprfunc) 0, /* tp_str,  str(x)  */
  1244. };
  1245. /* Window list object - Implementation
  1246.  */
  1247. /*ARGSUSED*/
  1248.     static int
  1249. WinListLength(PyObject *self)
  1250. {
  1251.     WIN *w = firstwin;
  1252.     int n = 0;
  1253.     while (w)
  1254.     {
  1255. ++n;
  1256. w = w->w_next;
  1257.     }
  1258.     return n;
  1259. }
  1260. /*ARGSUSED*/
  1261.     static PyObject *
  1262. WinListItem(PyObject *self, int n)
  1263. {
  1264.     WIN *w;
  1265.     for (w = firstwin; w; w = w->w_next, --n)
  1266.     {
  1267. if (n == 0)
  1268.     return WindowNew(w);
  1269.     }
  1270.     PyErr_SetString(PyExc_IndexError, "no such window");
  1271.     return NULL;
  1272. }
  1273. /* Current items object - Definitions
  1274.  */
  1275. typedef struct
  1276. {
  1277.     PyObject_HEAD
  1278. }
  1279. CurrentObject;
  1280. static PyTypeObject CurrentType = {
  1281.     PyObject_HEAD_INIT(0)
  1282.     0,
  1283.     "current data",
  1284.     sizeof(CurrentObject),
  1285.     0,
  1286.     (destructor)    0, /* tp_dealloc, refcount==0  */
  1287.     (printfunc)     0, /* tp_print, print x      */
  1288.     (getattrfunc)   CurrentGetattr, /* tp_getattr, x.attr      */
  1289.     (setattrfunc)   CurrentSetattr, /* tp_setattr, x.attr=v     */
  1290.     (cmpfunc)     0, /* tp_compare, x>y      */
  1291.     (reprfunc)     0, /* tp_repr, `x`, print x */
  1292.     0,     /* as number */
  1293.     0,     /* as sequence */
  1294.     0,     /* as mapping */
  1295.     (hashfunc) 0, /* tp_hash, dict(x) */
  1296.     (ternaryfunc) 0, /* tp_call, x()     */
  1297.     (reprfunc) 0, /* tp_str,  str(x)  */
  1298. };
  1299. /* Current items object - Implementation
  1300.  */
  1301. /*ARGSUSED*/
  1302.     static PyObject *
  1303. CurrentGetattr(PyObject *self, char *name)
  1304. {
  1305.     if (strcmp(name, "buffer") == 0)
  1306. return (PyObject *)BufferNew(curbuf);
  1307.     else if (strcmp(name, "window") == 0)
  1308. return (PyObject *)WindowNew(curwin);
  1309.     else if (strcmp(name, "line") == 0)
  1310. return GetBufferLine(curbuf, (int)curwin->w_cursor.lnum);
  1311.     else if (strcmp(name, "range") == 0)
  1312. return RangeNew(curbuf, RangeStart, RangeEnd);
  1313.     else if (strcmp(name,"__members__") == 0)
  1314. return Py_BuildValue("[ssss]", "buffer", "window", "line", "range");
  1315.     else
  1316.     {
  1317. PyErr_SetString(PyExc_AttributeError, name);
  1318. return NULL;
  1319.     }
  1320. }
  1321. /*ARGSUSED*/
  1322.     static int
  1323. CurrentSetattr(PyObject *self, char *name, PyObject *value)
  1324. {
  1325.     if (strcmp(name, "line") == 0)
  1326.     {
  1327. if (SetBufferLine(curbuf, (int)curwin->w_cursor.lnum, value, NULL) == FAIL)
  1328.     return -1;
  1329. return 0;
  1330.     }
  1331.     else
  1332.     {
  1333. PyErr_SetString(PyExc_AttributeError, name);
  1334. return -1;
  1335.     }
  1336. }
  1337. /* External interface
  1338.  */
  1339.     void
  1340. python_buffer_free(BUF *buf)
  1341. {
  1342.     if (buf->python_ref)
  1343.     {
  1344. BufferObject *bp = buf->python_ref;
  1345. bp->buf = INVALID_BUFFER_VALUE;
  1346. buf->python_ref = NULL;
  1347.     }
  1348. }
  1349.     void
  1350. python_window_free(WIN *win)
  1351. {
  1352.     if (win->python_ref)
  1353.     {
  1354. WindowObject *wp = win->python_ref;
  1355. wp->win = INVALID_WINDOW_VALUE;
  1356. win->python_ref = NULL;
  1357.     }
  1358. }
  1359. static BufListObject TheBufferList =
  1360. {
  1361.     PyObject_HEAD_INIT(&BufListType)
  1362. };
  1363. static WinListObject TheWindowList =
  1364. {
  1365.     PyObject_HEAD_INIT(&WinListType)
  1366. };
  1367. static CurrentObject TheCurrent =
  1368. {
  1369.     PyObject_HEAD_INIT(&CurrentType)
  1370. };
  1371.     static int
  1372. PythonMod_Init(void)
  1373. {
  1374.     PyObject *mod;
  1375.     PyObject *dict;
  1376.     /* Fixups... */
  1377.     BufferType.ob_type = &PyType_Type;
  1378.     RangeType.ob_type = &PyType_Type;
  1379.     WindowType.ob_type = &PyType_Type;
  1380.     BufListType.ob_type = &PyType_Type;
  1381.     WinListType.ob_type = &PyType_Type;
  1382.     CurrentType.ob_type = &PyType_Type;
  1383.     mod = Py_InitModule("vim", VimMethods);
  1384.     dict = PyModule_GetDict(mod);
  1385.     VimError = Py_BuildValue("s", "vim.error");
  1386.     PyDict_SetItemString(dict, "error", VimError);
  1387.     PyDict_SetItemString(dict, "buffers", (PyObject *)(&TheBufferList));
  1388.     PyDict_SetItemString(dict, "current", (PyObject *)(&TheCurrent));
  1389.     PyDict_SetItemString(dict, "windows", (PyObject *)(&TheWindowList));
  1390.     if (PyErr_Occurred())
  1391. return -1;
  1392.     return 0;
  1393. }
  1394. /*************************************************************************
  1395.  * 4. Utility functions for handling the interface between Vim and Python.
  1396.  */
  1397. /* Get a line from the specified buffer. The line number is
  1398.  * in Vim format (1-based). The line is returned as a Python
  1399.  * string object.
  1400.  */
  1401.     static PyObject *
  1402. GetBufferLine(BUF *buf, int n)
  1403. {
  1404.     return LineToString((char *)ml_get_buf(buf, (linenr_t)n, FALSE));
  1405. }
  1406. /* Get a list of lines from the specified buffer. The line numbers
  1407.  * are in Vim format (1-based). The range is from lo up to, but not
  1408.  * including, hi. The list is returned as a Python list of string objects.
  1409.  */
  1410.     static PyObject *
  1411. GetBufferLineList(BUF *buf, int lo, int hi)
  1412. {
  1413.     int i;
  1414.     int n = hi - lo;
  1415.     PyObject *list = PyList_New(n);
  1416.     if (list == NULL)
  1417. return NULL;
  1418.     for (i = 0; i < n; ++i)
  1419.     {
  1420. PyObject *str = LineToString((char *)ml_get_buf(buf, (linenr_t)(lo+i), FALSE));
  1421. /* Error check - was the Python string creation OK? */
  1422. if (str == NULL)
  1423. {
  1424.     Py_DECREF(list);
  1425.     return NULL;
  1426. }
  1427. /* Set the list item */
  1428. if (PyList_SetItem(list, i, str))
  1429. {
  1430.     Py_DECREF(str);
  1431.     Py_DECREF(list);
  1432.     return NULL;
  1433. }
  1434.     }
  1435.     /* The ownership of the Python list is passed to the caller (ie,
  1436.      * the caller should Py_DECREF() the object when it is finished
  1437.      * with it).
  1438.      */
  1439.     return list;
  1440. }
  1441. /* Replace a line in the specified buffer. The line number is
  1442.  * in Vim format (1-based). The replacement line is given as
  1443.  * a Python string object. The object is checked for validity
  1444.  * and correct format. Errors are returned as a value of FAIL.
  1445.  * The return value is OK on success.
  1446.  * If OK is returned and len_change is not NULL, *len_change
  1447.  * is set to the change in the buffer length.
  1448.  */
  1449.     static int
  1450. SetBufferLine(BUF *buf, int n, PyObject *line, int *len_change)
  1451. {
  1452.     /* First of all, we check the thpe of the supplied Python object.
  1453.      * There are three cases:
  1454.      *   1. NULL, or None - this is a deletion.
  1455.      *   2. A string    - this is a replacement.
  1456.      *   3. Anything else - this is an error.
  1457.      */
  1458.     if (line == Py_None || line == NULL)
  1459.     {
  1460. BUF *savebuf = curbuf;
  1461. PyErr_Clear();
  1462. curbuf = buf;
  1463. if (u_savedel((linenr_t)n, 1L) == FAIL)
  1464.     PyErr_SetVim("cannot save undo information");
  1465. else if (ml_delete((linenr_t)n, FALSE) == FAIL)
  1466.     PyErr_SetVim("cannot delete line");
  1467. else
  1468. {
  1469.     mark_adjust((linenr_t)n, (linenr_t)n, (long)MAXLNUM, -1L);
  1470.     changed();
  1471. }
  1472. curbuf = savebuf;
  1473. update_screen(NOT_VALID);
  1474. if (PyErr_Occurred() || VimErrorCheck())
  1475.     return FAIL;
  1476. if (len_change)
  1477.     *len_change = -1;
  1478. return OK;
  1479.     }
  1480.     else if (PyString_Check(line))
  1481.     {
  1482. char *save = StringToLine(line);
  1483. BUF *savebuf = curbuf;
  1484. if (save == NULL)
  1485.     return FAIL;
  1486. /* We do not need to free save, as we pass responsibility for
  1487.  * it to vim, via the final parameter of ml_replace().
  1488.  */
  1489. PyErr_Clear();
  1490. curbuf = buf;
  1491. if (u_savesub((linenr_t)n) == FAIL)
  1492.     PyErr_SetVim("cannot save undo information");
  1493. else if (ml_replace((linenr_t)n, (char_u *)save, TRUE) == FAIL)
  1494.     PyErr_SetVim("cannot replace line");
  1495. else
  1496. {
  1497.     changed();
  1498. #ifdef SYNTAX_HL
  1499.     syn_changed((linenr_t)n); /* recompute syntax hl. for this line */
  1500. #endif
  1501. }
  1502. curbuf = savebuf;
  1503. update_screen(NOT_VALID);
  1504. if (PyErr_Occurred() || VimErrorCheck())
  1505.     return FAIL;
  1506. if (len_change)
  1507.     *len_change = 0;
  1508. return OK;
  1509.     }
  1510.     else
  1511.     {
  1512. PyErr_BadArgument();
  1513. return FAIL;
  1514.     }
  1515. }
  1516. /* Replace a range of lines in the specified buffer. The line numbers are in
  1517.  * Vim format (1-based). The range is from lo up to, but not including, hi.
  1518.  * The replacement lines are given as a Python list of string objects. The
  1519.  * list is checked for validity and correct format. Errors are returned as a
  1520.  * value of FAIL.  The return value is OK on success.
  1521.  * If OK is returned and len_change is not NULL, *len_change
  1522.  * is set to the change in the buffer length.
  1523.  */
  1524.     static int
  1525. SetBufferLineList(BUF *buf, int lo, int hi, PyObject *list, int *len_change)
  1526. {
  1527.     /* First of all, we check the thpe of the supplied Python object.
  1528.      * There are three cases:
  1529.      *   1. NULL, or None - this is a deletion.
  1530.      *   2. A list    - this is a replacement.
  1531.      *   3. Anything else - this is an error.
  1532.      */
  1533.     if (list == Py_None || list == NULL)
  1534.     {
  1535. int i;
  1536. int ok = 0;
  1537. int n = hi - lo;
  1538. BUF *savebuf = curbuf;
  1539. PyErr_Clear();
  1540. curbuf = buf;
  1541. if (u_savedel((linenr_t)lo, (long)n) == FAIL)
  1542.     PyErr_SetVim("cannot save undo information");
  1543. else
  1544. {
  1545.     ok = 1;
  1546.     for (i = 0; i < n; ++i)
  1547.     {
  1548. if (ml_delete((linenr_t)lo, FALSE) == FAIL)
  1549. {
  1550.     PyErr_SetVim("cannot delete line");
  1551.     ok = 0;
  1552.     break;
  1553. }
  1554. changed();
  1555.     }
  1556. }
  1557. if (ok)
  1558.     mark_adjust((linenr_t)lo, (linenr_t)(hi-1), (long)MAXLNUM,
  1559.     (long)-n);
  1560. curbuf = savebuf;
  1561. update_screen(NOT_VALID);
  1562. if (PyErr_Occurred() || VimErrorCheck())
  1563.     return FAIL;
  1564. if (len_change)
  1565.     *len_change = -n;
  1566. return OK;
  1567.     }
  1568.     else if (PyList_Check(list))
  1569.     {
  1570. int i;
  1571. int n = PyList_Size(list);
  1572. int lines = hi - lo;
  1573. char **array;
  1574. BUF *savebuf;
  1575. array = (char **)alloc((unsigned)(n * sizeof(char *)));
  1576. if (array == NULL)
  1577. {
  1578.     PyErr_NoMemory();
  1579.     return FAIL;
  1580. }
  1581. for (i = 0; i < n; ++i)
  1582. {
  1583.     PyObject *line = PyList_GetItem(list, i);
  1584.     array[i] = StringToLine(line);
  1585.     if (array[i] == NULL)
  1586.     {
  1587. while (i)
  1588.     vim_free(array[--i]);
  1589. vim_free(array);
  1590. return FAIL;
  1591.     }
  1592. }
  1593. savebuf = curbuf;
  1594. PyErr_Clear();
  1595. curbuf = buf;
  1596. if (u_save((linenr_t)(lo-1), (linenr_t)hi) == FAIL)
  1597.     PyErr_SetVim("cannot save undo information");
  1598. /* If the size of the range is reducing (ie, n < lines) we
  1599.  * need to delete some lines. We do this at the start, by
  1600.  * repeatedly deleting line "lo".
  1601.  */
  1602. if (!PyErr_Occurred())
  1603. {
  1604.     for (i = 0; i < lines - n; ++i)
  1605.     {
  1606. if (ml_delete((linenr_t)lo, FALSE) == FAIL)
  1607. {
  1608.     PyErr_SetVim("cannot delete line");
  1609.     break;
  1610. }
  1611. changed();
  1612.     }
  1613. }
  1614. /* For as long as possible, replace the existing lines with the
  1615.  * new lines. This is a more efficient operation, as it requires
  1616.  * less memory allocation and freeing.
  1617.  */
  1618. if (!PyErr_Occurred())
  1619. {
  1620.     for (i = 0; i < lines && i < n; ++i)
  1621.     {
  1622. if (ml_replace((linenr_t)(lo+i), (char_u *)array[i], TRUE)
  1623.       == FAIL)
  1624. {
  1625.     PyErr_SetVim("cannot replace line");
  1626.     break;
  1627. }
  1628. changed();
  1629. #ifdef SYNTAX_HL
  1630. /* recompute syntax hl. for this line */
  1631. syn_changed((linenr_t)(lo+i));
  1632. #endif
  1633.     }
  1634. }
  1635. /* Now we may need to insert the remaining new lines. If we do, we
  1636.  * must free the strings as we finish with them (we can't pass the
  1637.  * responsibility to vim in this case).
  1638.  */
  1639. if (!PyErr_Occurred())
  1640. {
  1641.     while (i < n)
  1642.     {
  1643. if (ml_append((linenr_t)(lo+i-1), (char_u *)array[i], 0, FALSE) == FAIL)
  1644. {
  1645.     PyErr_SetVim("cannot insert line");
  1646.     break;
  1647. }
  1648. changed();
  1649. vim_free(array[i]);
  1650. ++i;
  1651.     }
  1652. }
  1653. /* Free any left-over lines, as a result of an error */
  1654. while (i < n)
  1655. {
  1656.     vim_free(array[i]);
  1657.     ++i;
  1658. }
  1659. /* Adjust marks. Invalidate any which lie in the
  1660.  * changed range, and move any in the remainder of the buffer.
  1661.  */
  1662. if (!PyErr_Occurred())
  1663.     mark_adjust((linenr_t)lo, (linenr_t)(hi-1), (long)MAXLNUM, (long)(n - lines));
  1664. /* Free the array of lines. All of its contents have now
  1665.  * been dealt with (either freed, or the responsibility passed
  1666.  * to vim.
  1667.  */
  1668. vim_free(array);
  1669. curbuf = savebuf;
  1670. update_screen(NOT_VALID);
  1671. if (PyErr_Occurred() || VimErrorCheck())
  1672.     return FAIL;
  1673. if (len_change)
  1674.     *len_change = n - lines;
  1675. return OK;
  1676.     }
  1677.     else
  1678.     {
  1679. PyErr_BadArgument();
  1680. return FAIL;
  1681.     }
  1682. }
  1683. /* Insert a number of lines into the specified buffer after the specifed line.
  1684.  * The line number is in Vim format (1-based). The lines to be inserted are
  1685.  * given as a Python list of string objects or as a single string. The lines
  1686.  * to be added are checked for validity and correct format. Errors are
  1687.  * returned as a value of FAIL.  The return value is OK on success.
  1688.  * If OK is returned and len_change is not NULL, *len_change
  1689.  * is set to the change in the buffer length.
  1690.  */
  1691.     static int
  1692. InsertBufferLines(BUF *buf, int n, PyObject *lines, int *len_change)
  1693. {
  1694.     /* First of all, we check the type of the supplied Python object.
  1695.      * It must be a string or a list, or the call is in error.
  1696.      */
  1697.     if (PyString_Check(lines))
  1698.     {
  1699. char *str = StringToLine(lines);
  1700. BUF *savebuf;
  1701. if (str == NULL)
  1702.     return FAIL;
  1703. savebuf = curbuf;
  1704. PyErr_Clear();
  1705. curbuf = buf;
  1706. if (u_save((linenr_t)n, (linenr_t)(n+1)) == FAIL)
  1707.     PyErr_SetVim("cannot save undo information");
  1708. else if (ml_append((linenr_t)n, (char_u *)str, 0, FALSE) == FAIL)
  1709.     PyErr_SetVim("cannot insert line");
  1710. else
  1711. {
  1712.     mark_adjust((linenr_t)(n+1), (linenr_t)MAXLNUM, 1L, 0L);
  1713.     changed();
  1714. }
  1715. vim_free(str);
  1716. curbuf = savebuf;
  1717. update_screen(NOT_VALID);
  1718. if (PyErr_Occurred() || VimErrorCheck())
  1719.     return FAIL;
  1720. if (len_change)
  1721.     *len_change = 1;
  1722. return OK;
  1723.     }
  1724.     else if (PyList_Check(lines))
  1725.     {
  1726. int i;
  1727. int ok = 0;
  1728. int size = PyList_Size(lines);
  1729. char **array;
  1730. BUF *savebuf;
  1731. array = (char **)alloc((unsigned)(size * sizeof(char *)));
  1732. if (array == NULL)
  1733. {
  1734.     PyErr_NoMemory();
  1735.     return FAIL;
  1736. }
  1737. for (i = 0; i < size; ++i)
  1738. {
  1739.     PyObject *line = PyList_GetItem(lines, i);
  1740.     array[i] = StringToLine(line);
  1741.     if (array[i] == NULL)
  1742.     {
  1743. while (i)
  1744.     vim_free(array[--i]);
  1745. vim_free(array);
  1746. return FAIL;
  1747.     }
  1748. }
  1749. savebuf = curbuf;
  1750. PyErr_Clear();
  1751. curbuf = buf;
  1752. if (u_save((linenr_t)n, (linenr_t)(n+1)) == FAIL)
  1753.     PyErr_SetVim("cannot save undo information");
  1754. else
  1755. {
  1756.     ok = 1;
  1757.     for (i = 0; i < size; ++i)
  1758.     {
  1759. if (ml_append((linenr_t)(n+i), (char_u *)array[i], 0, FALSE) == FAIL)
  1760. {
  1761.     PyErr_SetVim("cannot insert line");
  1762.     ok = 0;
  1763.     /* Free the rest of the lines */
  1764.     while (i < size)
  1765. vim_free(array[i++]);
  1766.     break;
  1767. }
  1768. changed();
  1769. vim_free(array[i]);
  1770.     }
  1771. }
  1772. if (ok)
  1773.     mark_adjust((linenr_t)(n+1), (linenr_t)MAXLNUM, (long)size, 0L);
  1774. /* Free the array of lines. All of its contents have now
  1775.  * been freed.
  1776.  */
  1777. vim_free(array);
  1778. curbuf = savebuf;
  1779. update_screen(NOT_VALID);
  1780. if (PyErr_Occurred() || VimErrorCheck())
  1781.     return FAIL;
  1782. if (len_change)
  1783.     *len_change = size;
  1784. return OK;
  1785.     }
  1786.     else
  1787.     {
  1788. PyErr_BadArgument();
  1789. return FAIL;
  1790.     }
  1791. }
  1792. /* Convert a Vim line into a Python string.
  1793.  * All internal newlines are replaced by null characters.
  1794.  *
  1795.  * On errors, the Python exception data is set, and NULL is returned.
  1796.  */
  1797.     static PyObject *
  1798. LineToString(const char *str)
  1799. {
  1800.     PyObject *result;
  1801.     int len = strlen(str);
  1802.     char *p;
  1803.     /* Allocate an Python string object, with uninitialised contents. We
  1804.      * must do it this way, so that we can modify the string in place
  1805.      * later. See the Python source, Objects/stringobject.c for details.
  1806.      */
  1807.     result = PyString_FromStringAndSize(NULL, len);
  1808.     if (result == NULL)
  1809. return NULL;
  1810.     p = PyString_AsString(result);
  1811.     while (*str)
  1812.     {
  1813. if (*str == 'n')
  1814.     *p = '';
  1815. else
  1816.     *p = *str;
  1817. ++p;
  1818. ++str;
  1819.     }
  1820.     return result;
  1821. }
  1822. /* Convert a Python string into a Vim line.
  1823.  *
  1824.  * The result is in allocated memory. All internal nulls are replaced by
  1825.  * newline characters. It is an error for the string to contain newline
  1826.  * characters.
  1827.  *
  1828.  * On errors, the Python exception data is set, and NULL is returned.
  1829.  */
  1830.     static char *
  1831. StringToLine(PyObject *obj)
  1832. {
  1833.     const char *str;
  1834.     char *save;
  1835.     int len;
  1836.     int i;
  1837.     if (obj == NULL || !PyString_Check(obj))
  1838.     {
  1839. PyErr_BadArgument();
  1840. return NULL;
  1841.     }
  1842.     str = PyString_AsString(obj);
  1843.     len = PyString_Size(obj);
  1844.     /* Error checking: String must not contain newlines, as we
  1845.      * are replacing a single line, and we must replace it with
  1846.      * a single line.
  1847.      */
  1848.     if (memchr(str, 'n', len))
  1849.     {
  1850. PyErr_SetVim("string cannot contain newlines");
  1851. return NULL;
  1852.     }
  1853.     /* Create a copy of the string, with internal nulls replaced by
  1854.      * newline characters, as is the vim convention.
  1855.      */
  1856.     save = (char *)alloc((unsigned)(len+1));
  1857.     if (save == NULL)
  1858.     {
  1859. PyErr_NoMemory();
  1860. return NULL;
  1861.     }
  1862.     for (i = 0; i < len; ++i)
  1863.     {
  1864. if (str[i] == '')
  1865.     save[i] = 'n';
  1866. else
  1867.     save[i] = str[i];
  1868.     }
  1869.     save[i] = '';
  1870.     return save;
  1871. }
  1872. /* Check to see whether a Vim error has been reported, or a keyboard
  1873.  * interrupt has been detected.
  1874.  */
  1875.     static int
  1876. VimErrorCheck(void)
  1877. {
  1878.     if (got_int)
  1879.     {
  1880. PyErr_SetNone(PyExc_KeyboardInterrupt);
  1881. return 1;
  1882.     }
  1883.     else if (did_emsg && !PyErr_Occurred())
  1884.     {
  1885. PyErr_SetNone(VimError);
  1886. return 1;
  1887.     }
  1888.     return 0;
  1889. }
  1890. #if PYTHON_API_VERSION < 1007 /* Python 1.4 */
  1891.     char *
  1892. Py_GetProgramName(void)
  1893. {
  1894.     return "vim";
  1895. }
  1896. #endif /* Python 1.4 */