blob: c3bfa50ac3245497420affdc8a7e2a95fc307451 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * Netbeans integration by David Weatherford
5 * Adopted for Win32 by Sergey Khorev
6 *
7 * Do ":help uganda" in Vim to read copying and usage conditions.
8 * Do ":help credits" in Vim to see a list of people who contributed.
9 */
10
11/*
12 * Implements client side of org.netbeans.modules.emacs editor
13 * integration protocol. Be careful! The protocol uses offsets
14 * which are *between* characters, whereas vim uses line number
15 * and column number which are *on* characters.
16 * See ":help netbeans-protocol" for explanation.
17 */
18
19#include "vim.h"
20
21#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
22
Bram Moolenaarb26e6322010-05-22 21:34:09 +020023/* TODO: when should this not be defined? */
24#define INET_SOCKETS
25
Bram Moolenaar071d4272004-06-13 20:20:40 +000026/* Note: when making changes here also adjust configure.in. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000027#ifdef WIN32
28# ifdef DEBUG
29# include <tchar.h> /* for _T definition for TRACEn macros */
30# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000031/* WinSock API is separated from C API, thus we can't use read(), write(),
32 * errno... */
Bram Moolenaarc39125d2010-05-23 12:06:58 +020033# define SOCK_ERRNO errno = WSAGetLastError()
Bram Moolenaarbd42a0f2009-06-16 14:57:26 +000034# undef ECONNREFUSED
Bram Moolenaar071d4272004-06-13 20:20:40 +000035# define ECONNREFUSED WSAECONNREFUSED
36# ifdef EINTR
37# undef EINTR
38# endif
39# define EINTR WSAEINTR
40# define sock_write(sd, buf, len) send(sd, buf, len, 0)
41# define sock_read(sd, buf, len) recv(sd, buf, len, 0)
42# define sock_close(sd) closesocket(sd)
43# define sleep(t) Sleep(t*1000) /* WinAPI Sleep() accepts milliseconds */
44#else
Bram Moolenaarb26e6322010-05-22 21:34:09 +020045# ifdef INET_SOCKETS
46# include <netdb.h>
47# include <netinet/in.h>
48# else
49# include <sys/un.h>
50# endif
51
Bram Moolenaar071d4272004-06-13 20:20:40 +000052# include <sys/socket.h>
53# ifdef HAVE_LIBGEN_H
54# include <libgen.h>
55# endif
Bram Moolenaarc39125d2010-05-23 12:06:58 +020056# define SOCK_ERRNO
Bram Moolenaar071d4272004-06-13 20:20:40 +000057# define sock_write(sd, buf, len) write(sd, buf, len)
58# define sock_read(sd, buf, len) read(sd, buf, len)
59# define sock_close(sd) close(sd)
60#endif
61
62#include "version.h"
63
Bram Moolenaar071d4272004-06-13 20:20:40 +000064#define GUARDED 10000 /* typenr for "guarded" annotation */
65#define GUARDEDOFFSET 1000000 /* base for "guarded" sign id's */
Bram Moolenaar67c53842010-05-22 18:28:27 +020066#define MAX_COLOR_LENGTH 32 /* max length of color name in defineAnnoType */
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
68/* The first implementation (working only with Netbeans) returned "1.1". The
69 * protocol implemented here also supports A-A-P. */
Bram Moolenaar67c53842010-05-22 18:28:27 +020070static char *ExtEdProtocolVersion = "2.5";
Bram Moolenaar071d4272004-06-13 20:20:40 +000071
72static long pos2off __ARGS((buf_T *, pos_T *));
73static pos_T *off2pos __ARGS((buf_T *, long));
74static pos_T *get_off_or_lnum __ARGS((buf_T *buf, char_u **argp));
75static long get_buf_size __ARGS((buf_T *));
Bram Moolenaar8065d7f2010-01-19 15:13:14 +010076static int netbeans_keystring __ARGS((char_u *keystr));
77static void postpone_keycommand __ARGS((char_u *keystr));
Bram Moolenaar009b2592004-10-24 19:18:58 +000078static void special_keys __ARGS((char_u *args));
Bram Moolenaar071d4272004-06-13 20:20:40 +000079
Bram Moolenaarb26e6322010-05-22 21:34:09 +020080static int netbeans_connect __ARGS((char *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +000081static int getConnInfo __ARGS((char *file, char **host, char **port, char **password));
82
83static void nb_init_graphics __ARGS((void));
84static void coloncmd __ARGS((char *cmd, ...));
Bram Moolenaar8b6144b2006-02-08 09:20:24 +000085static void nb_set_curbuf __ARGS((buf_T *buf));
Bram Moolenaar173c9852010-09-29 17:27:01 +020086#ifdef FEAT_GUI_X11
Bram Moolenaar071d4272004-06-13 20:20:40 +000087static void messageFromNetbeans __ARGS((XtPointer, int *, XtInputId *));
88#endif
89#ifdef FEAT_GUI_GTK
90static void messageFromNetbeans __ARGS((gpointer, gint, GdkInputCondition));
91#endif
92static void nb_parse_cmd __ARGS((char_u *));
93static int nb_do_cmd __ARGS((int, char_u *, int, int, char_u *));
94static void nb_send __ARGS((char *buf, char *fun));
Bram Moolenaarb26e6322010-05-22 21:34:09 +020095static void nb_free __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000096
Bram Moolenaar67c53842010-05-22 18:28:27 +020097/* TRUE when netbeans is running with a GUI. */
98#ifdef FEAT_GUI
99# define NB_HAS_GUI (gui.in_use || gui.starting)
100#endif
101
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000102#ifdef WIN64
103typedef __int64 NBSOCK;
104#else
105typedef int NBSOCK;
106#endif
107
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200108static NBSOCK nbsock = -1; /* socket fd for Netbeans connection */
109#define NETBEANS_OPEN (nbsock != -1)
110
Bram Moolenaar173c9852010-09-29 17:27:01 +0200111#ifdef FEAT_GUI_X11
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200112static XtInputId inputHandler = (XtInputId)NULL; /* Cookie for input */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#endif
114#ifdef FEAT_GUI_GTK
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200115static gint inputHandler = 0; /* Cookie for input */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116#endif
117#ifdef FEAT_GUI_W32
118static int inputHandler = -1; /* simply ret.value of WSAAsyncSelect() */
119extern HWND s_hwnd; /* Gvim's Window handle */
120#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +0000121static int r_cmdno; /* current command number for reply */
Bram Moolenaar009b2592004-10-24 19:18:58 +0000122static int dosetvisible = FALSE;
123
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124/*
125 * Include the debugging code if wanted.
126 */
127#ifdef NBDEBUG
128# include "nbdebug.c"
129#endif
130
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200131static int needupdate = 0;
132static int inAtomic = 0;
133
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100134/*
135 * Close the socket and remove the input handlers.
136 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 static void
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100138nb_close_socket(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139{
Bram Moolenaar173c9852010-09-29 17:27:01 +0200140#ifdef FEAT_GUI_X11
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141 if (inputHandler != (XtInputId)NULL)
142 {
143 XtRemoveInput(inputHandler);
144 inputHandler = (XtInputId)NULL;
145 }
Bram Moolenaar67c53842010-05-22 18:28:27 +0200146#else
147# ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 if (inputHandler != 0)
149 {
150 gdk_input_remove(inputHandler);
151 inputHandler = 0;
152 }
Bram Moolenaar67c53842010-05-22 18:28:27 +0200153# else
154# ifdef FEAT_GUI_W32
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155 if (inputHandler == 0)
156 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200157 WSAAsyncSelect(nbsock, s_hwnd, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 inputHandler = -1;
159 }
Bram Moolenaar67c53842010-05-22 18:28:27 +0200160# endif
161# endif
162#endif
163
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100164 sock_close(nbsock);
165 nbsock = -1;
166}
167
168/*
169 * Close the connection and cleanup.
170 * May be called when nb_close_socket() was called earlier.
171 */
172 static void
173netbeans_close(void)
174{
175 if (NETBEANS_OPEN)
176 {
177 netbeans_send_disconnect();
178 nb_close_socket();
179 }
180
Bram Moolenaar67c53842010-05-22 18:28:27 +0200181#ifdef FEAT_BEVAL
Bram Moolenaard62bec82005-03-07 22:56:57 +0000182 bevalServers &= ~BEVAL_NETBEANS;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200183#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200184
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200185 needupdate = 0;
186 inAtomic = 0;
187 nb_free();
188
189 /* remove all signs and update the screen after gutter removal */
190 coloncmd(":sign unplace *");
191 changed_window_setting();
192 update_screen(CLEAR);
193 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +0200194 cursor_on();
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200195 out_flush();
196#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +0200197 if (gui.in_use)
198 {
199 gui_update_cursor(TRUE, FALSE);
200 gui_mch_flush();
201 }
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200202#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204
205#define NB_DEF_HOST "localhost"
206#define NB_DEF_ADDR "3219"
207#define NB_DEF_PASS "changeme"
208
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200209 static int
Bram Moolenaarf506c5b2010-06-22 06:28:58 +0200210netbeans_connect(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211{
212#ifdef INET_SOCKETS
213 struct sockaddr_in server;
214 struct hostent * host;
215# ifdef FEAT_GUI_W32
216 u_short port;
217# else
218 int port;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200219# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220#else
221 struct sockaddr_un server;
222#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200223 int sd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 char buf[32];
225 char *hostname = NULL;
226 char *address = NULL;
227 char *password = NULL;
228 char *fname;
229 char *arg = NULL;
230
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200231 if (*params == '=')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200233 /* "=fname": Read info from specified file. */
234 if (getConnInfo(params + 1, &hostname, &address, &password)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 == FAIL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200236 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 }
238 else
239 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200240 if (*params == ':')
241 /* ":<host>:<addr>:<password>": get info from argument */
242 arg = params + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL)
244 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200245 /* "": get info from file specified in environment */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 if (getConnInfo(fname, &hostname, &address, &password) == FAIL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200247 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248 }
249 else
250 {
251 if (arg != NULL)
252 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200253 /* ":<host>:<addr>:<password>": get info from argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 hostname = arg;
255 address = strchr(hostname, ':');
256 if (address != NULL)
257 {
258 *address++ = '\0';
259 password = strchr(address, ':');
260 if (password != NULL)
261 *password++ = '\0';
262 }
263 }
264
265 /* Get the missing values from the environment. */
266 if (hostname == NULL || *hostname == '\0')
267 hostname = getenv("__NETBEANS_HOST");
268 if (address == NULL)
269 address = getenv("__NETBEANS_SOCKET");
270 if (password == NULL)
271 password = getenv("__NETBEANS_VIM_PASSWORD");
272
273 /* Move values to allocated memory. */
274 if (hostname != NULL)
275 hostname = (char *)vim_strsave((char_u *)hostname);
276 if (address != NULL)
277 address = (char *)vim_strsave((char_u *)address);
278 if (password != NULL)
279 password = (char *)vim_strsave((char_u *)password);
280 }
281 }
282
283 /* Use the default when a value is missing. */
284 if (hostname == NULL || *hostname == '\0')
285 {
286 vim_free(hostname);
287 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST);
288 }
289 if (address == NULL || *address == '\0')
290 {
291 vim_free(address);
292 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR);
293 }
294 if (password == NULL || *password == '\0')
295 {
296 vim_free(password);
297 password = (char *)vim_strsave((char_u *)NB_DEF_PASS);
298 }
299 if (hostname == NULL || address == NULL || password == NULL)
300 goto theend; /* out of memory */
301
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200302#ifdef FEAT_GUI_W32
303 netbeans_init_winsock();
304#endif
305
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306#ifdef INET_SOCKETS
307 port = atoi(address);
308
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000309 if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000311 nbdebug(("error in socket() in netbeans_connect()\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 PERROR("socket() in netbeans_connect()");
313 goto theend;
314 }
315
316 /* Get the server internet address and put into addr structure */
317 /* fill in the socket address structure and connect to server */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200318 vim_memset((char *)&server, '\0', sizeof(server));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 server.sin_family = AF_INET;
320 server.sin_port = htons(port);
321 if ((host = gethostbyname(hostname)) == NULL)
322 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000323 nbdebug(("error in gethostbyname() in netbeans_connect()\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 PERROR("gethostbyname() in netbeans_connect()");
Bram Moolenaar870b05c2011-01-04 18:11:43 +0100325 sock_close(sd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 goto theend;
327 }
328 memcpy((char *)&server.sin_addr, host->h_addr, host->h_length);
329#else
330 if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
331 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000332 nbdebug(("error in socket() in netbeans_connect()\n"));
333 PERROR("socket() in netbeans_connect()");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334 goto theend;
335 }
336
337 server.sun_family = AF_UNIX;
338 strcpy(server.sun_path, address);
339#endif
340 /* Connect to server */
341 if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
342 {
Bram Moolenaarc39125d2010-05-23 12:06:58 +0200343 SOCK_ERRNO;
344 nbdebug(("netbeans_connect: Connect failed with errno %d\n", errno));
345 if (errno == ECONNREFUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 {
347 sock_close(sd);
348#ifdef INET_SOCKETS
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000349 if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 {
Bram Moolenaarc39125d2010-05-23 12:06:58 +0200351 SOCK_ERRNO;
Bram Moolenaarf2330482008-06-24 20:19:36 +0000352 nbdebug(("socket()#2 in netbeans_connect()\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 PERROR("socket()#2 in netbeans_connect()");
354 goto theend;
355 }
356#else
357 if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
358 {
Bram Moolenaarc39125d2010-05-23 12:06:58 +0200359 SOCK_ERRNO;
Bram Moolenaarf2330482008-06-24 20:19:36 +0000360 nbdebug(("socket()#2 in netbeans_connect()\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 PERROR("socket()#2 in netbeans_connect()");
362 goto theend;
363 }
364#endif
365 if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
366 {
367 int retries = 36;
368 int success = FALSE;
Bram Moolenaarc39125d2010-05-23 12:06:58 +0200369
370 SOCK_ERRNO;
371 while (retries-- && ((errno == ECONNREFUSED)
372 || (errno == EINTR)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 {
374 nbdebug(("retrying...\n"));
Bram Moolenaar870b05c2011-01-04 18:11:43 +0100375 mch_delay(3000L, TRUE);
376 ui_breakcheck();
377 if (got_int)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200378 {
Bram Moolenaar870b05c2011-01-04 18:11:43 +0100379 errno = EINTR;
380 break;
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200381 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382 if (connect(sd, (struct sockaddr *)&server,
Bram Moolenaarc39125d2010-05-23 12:06:58 +0200383 sizeof(server)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 {
385 success = TRUE;
386 break;
387 }
Bram Moolenaarc39125d2010-05-23 12:06:58 +0200388 SOCK_ERRNO;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 }
390 if (!success)
391 {
392 /* Get here when the server can't be found. */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000393 nbdebug(("Cannot connect to Netbeans #2\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 PERROR(_("Cannot connect to Netbeans #2"));
Bram Moolenaar870b05c2011-01-04 18:11:43 +0100395 sock_close(sd);
Bram Moolenaarf506c5b2010-06-22 06:28:58 +0200396 if (doabort)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200397 getout(1);
398 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 }
400 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 }
402 else
403 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000404 nbdebug(("Cannot connect to Netbeans\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 PERROR(_("Cannot connect to Netbeans"));
Bram Moolenaar870b05c2011-01-04 18:11:43 +0100406 sock_close(sd);
Bram Moolenaarf506c5b2010-06-22 06:28:58 +0200407 if (doabort)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200408 getout(1);
409 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 }
411 }
412
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200413 nbsock = sd;
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000414 vim_snprintf(buf, sizeof(buf), "AUTH %s\n", password);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 nb_send(buf, "netbeans_connect");
416
417 sprintf(buf, "0:version=0 \"%s\"\n", ExtEdProtocolVersion);
418 nb_send(buf, "externaleditor_version");
419
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420theend:
421 vim_free(hostname);
422 vim_free(address);
423 vim_free(password);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200424 return NETBEANS_OPEN ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425}
426
427/*
428 * Obtain the NetBeans hostname, port address and password from a file.
429 * Return the strings in allocated memory.
430 * Return FAIL if the file could not be read, OK otherwise (no matter what it
431 * contains).
432 */
433 static int
434getConnInfo(char *file, char **host, char **port, char **auth)
435{
436 FILE *fp;
437 char_u buf[BUFSIZ];
438 char_u *lp;
439 char_u *nl;
440#ifdef UNIX
441 struct stat st;
442
443 /*
444 * For Unix only accept the file when it's not accessible by others.
445 * The open will then fail if we don't own the file.
446 */
447 if (mch_stat(file, &st) == 0 && (st.st_mode & 0077) != 0)
448 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000449 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n",
450 file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 EMSG2(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""),
452 file);
453 return FAIL;
454 }
455#endif
456
457 fp = mch_fopen(file, "r");
458 if (fp == NULL)
459 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000460 nbdebug(("Cannot open NetBeans connection info file\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 PERROR("E660: Cannot open NetBeans connection info file");
462 return FAIL;
463 }
464
465 /* Read the file. There should be one of each parameter */
466 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL)
467 {
468 if ((nl = vim_strchr(lp, '\n')) != NULL)
469 *nl = 0; /* strip off the trailing newline */
470
471 if (STRNCMP(lp, "host=", 5) == 0)
472 {
473 vim_free(*host);
474 *host = (char *)vim_strsave(&buf[5]);
475 }
476 else if (STRNCMP(lp, "port=", 5) == 0)
477 {
478 vim_free(*port);
479 *port = (char *)vim_strsave(&buf[5]);
480 }
481 else if (STRNCMP(lp, "auth=", 5) == 0)
482 {
483 vim_free(*auth);
484 *auth = (char *)vim_strsave(&buf[5]);
485 }
486 }
487 fclose(fp);
488
489 return OK;
490}
491
492
493struct keyqueue
494{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100495 char_u *keystr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 struct keyqueue *next;
497 struct keyqueue *prev;
498};
499
500typedef struct keyqueue keyQ_T;
501
502static keyQ_T keyHead; /* dummy node, header for circular queue */
503
504
505/*
506 * Queue up key commands sent from netbeans.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100507 * We store the string, because it may depend on the global mod_mask and
508 * :nbkey doesn't have a key number.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 */
510 static void
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100511postpone_keycommand(char_u *keystr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512{
513 keyQ_T *node;
514
515 node = (keyQ_T *)alloc(sizeof(keyQ_T));
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100516 if (node == NULL)
517 return; /* out of memory, drop the key */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518
519 if (keyHead.next == NULL) /* initialize circular queue */
520 {
521 keyHead.next = &keyHead;
522 keyHead.prev = &keyHead;
523 }
524
525 /* insert node at tail of queue */
526 node->next = &keyHead;
527 node->prev = keyHead.prev;
528 keyHead.prev->next = node;
529 keyHead.prev = node;
530
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100531 node->keystr = vim_strsave(keystr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532}
533
534/*
535 * Handle any queued-up NetBeans keycommands to be send.
536 */
537 static void
538handle_key_queue(void)
539{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100540 int postponed = FALSE;
541
542 while (!postponed && keyHead.next && keyHead.next != &keyHead)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 {
544 /* first, unlink the node */
545 keyQ_T *node = keyHead.next;
546 keyHead.next = node->next;
547 node->next->prev = node->prev;
548
Bram Moolenaar8065d7f2010-01-19 15:13:14 +0100549 /* Now, send the keycommand. This may cause it to be postponed again
550 * and change keyHead. */
551 if (node->keystr != NULL)
552 postponed = !netbeans_keystring(node->keystr);
553 vim_free(node->keystr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
555 /* Finally, dispose of the node */
556 vim_free(node);
557 }
558}
559
560
561struct cmdqueue
562{
563 char_u *buffer;
564 struct cmdqueue *next;
565 struct cmdqueue *prev;
566};
567
568typedef struct cmdqueue queue_T;
569
570static queue_T head; /* dummy node, header for circular queue */
571
572
573/*
574 * Put the buffer on the work queue; possibly save it to a file as well.
575 */
576 static void
577save(char_u *buf, int len)
578{
579 queue_T *node;
580
581 node = (queue_T *)alloc(sizeof(queue_T));
582 if (node == NULL)
583 return; /* out of memory */
584 node->buffer = alloc(len + 1);
585 if (node->buffer == NULL)
586 {
587 vim_free(node);
588 return; /* out of memory */
589 }
590 mch_memmove(node->buffer, buf, (size_t)len);
591 node->buffer[len] = NUL;
592
593 if (head.next == NULL) /* initialize circular queue */
594 {
595 head.next = &head;
596 head.prev = &head;
597 }
598
599 /* insert node at tail of queue */
600 node->next = &head;
601 node->prev = head.prev;
602 head.prev->next = node;
603 head.prev = node;
604
605#ifdef NBDEBUG
606 {
607 static int outfd = -2;
608
609 /* possibly write buffer out to a file */
610 if (outfd == -3)
611 return;
612
613 if (outfd == -2)
614 {
615 char *file = getenv("__NETBEANS_SAVE");
616 if (file == NULL)
617 outfd = -3;
618 else
619 outfd = mch_open(file, O_WRONLY|O_CREAT|O_TRUNC, 0666);
620 }
621
622 if (outfd >= 0)
623 write(outfd, buf, len);
624 }
625#endif
626}
627
628
629/*
630 * While there's still a command in the work queue, parse and execute it.
631 */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000632 void
633netbeans_parse_messages(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634{
635 char_u *p;
636 queue_T *node;
Bram Moolenaar863053d2010-12-02 17:09:54 +0100637 int own_node;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638
Bram Moolenaarf2330482008-06-24 20:19:36 +0000639 while (head.next != NULL && head.next != &head)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 {
641 node = head.next;
642
643 /* Locate the first line in the first buffer. */
644 p = vim_strchr(node->buffer, '\n');
645 if (p == NULL)
646 {
647 /* Command isn't complete. If there is no following buffer,
648 * return (wait for more). If there is another buffer following,
649 * prepend the text to that buffer and delete this one. */
650 if (node->next == &head)
651 return;
Bram Moolenaarf2330482008-06-24 20:19:36 +0000652 p = alloc((unsigned)(STRLEN(node->buffer)
653 + STRLEN(node->next->buffer) + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 if (p == NULL)
655 return; /* out of memory */
656 STRCPY(p, node->buffer);
657 STRCAT(p, node->next->buffer);
658 vim_free(node->next->buffer);
659 node->next->buffer = p;
660
661 /* dispose of the node and buffer */
662 head.next = node->next;
663 node->next->prev = node->prev;
664 vim_free(node->buffer);
665 vim_free(node);
666 }
667 else
668 {
669 /* There is a complete command at the start of the buffer.
670 * Terminate it with a NUL. When no more text is following unlink
671 * the buffer. Do this before executing, because new buffers can
672 * be added while busy handling the command. */
673 *p++ = NUL;
674 if (*p == NUL)
675 {
Bram Moolenaar863053d2010-12-02 17:09:54 +0100676 own_node = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 head.next = node->next;
678 node->next->prev = node->prev;
679 }
Bram Moolenaar863053d2010-12-02 17:09:54 +0100680 else
681 own_node = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682
683 /* now, parse and execute the commands */
684 nb_parse_cmd(node->buffer);
685
Bram Moolenaar863053d2010-12-02 17:09:54 +0100686 if (own_node)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 {
688 /* buffer finished, dispose of the node and buffer */
689 vim_free(node->buffer);
690 vim_free(node);
691 }
Bram Moolenaar863053d2010-12-02 17:09:54 +0100692 /* Check that "head" wasn't changed under our fingers, e.g. when a
693 * DETACH command was handled. */
694 else if (head.next == node)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 {
696 /* more follows, move to the start */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000697 STRMOVE(node->buffer, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 }
699 }
700 }
701}
702
703/* Buffer size for reading incoming messages. */
704#define MAXMSGSIZE 4096
705
706/*
Bram Moolenaar67c53842010-05-22 18:28:27 +0200707 * Read a command from netbeans.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 */
Bram Moolenaar173c9852010-09-29 17:27:01 +0200709#ifdef FEAT_GUI_X11
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 static void
Bram Moolenaara9d45512009-05-17 21:25:42 +0000711messageFromNetbeans(XtPointer clientData UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000712 int *unused1 UNUSED,
713 XtInputId *unused2 UNUSED)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200714{
715 netbeans_read();
716}
717#endif
718
719#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000721messageFromNetbeans(gpointer clientData UNUSED,
722 gint unused1 UNUSED,
723 GdkInputCondition unused2 UNUSED)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200724{
725 netbeans_read();
726}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727#endif
Bram Moolenaar67c53842010-05-22 18:28:27 +0200728
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100729#define DETACH_MSG "DETACH\n"
730
Bram Moolenaar67c53842010-05-22 18:28:27 +0200731 void
732netbeans_read()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733{
734 static char_u *buf = NULL;
Bram Moolenaar0b65f892010-05-15 14:49:02 +0200735 int len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 int readlen = 0;
Bram Moolenaar581f6dc2010-03-10 16:12:48 +0100737#ifdef HAVE_SELECT
738 struct timeval tval;
739 fd_set rfds;
740#else
741# ifdef HAVE_POLL
742 struct pollfd fds;
743# endif
744#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200746 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 {
748 nbdebug(("messageFromNetbeans() called without a socket\n"));
749 return;
750 }
751
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 /* Allocate a buffer to read into. */
753 if (buf == NULL)
754 {
755 buf = alloc(MAXMSGSIZE);
756 if (buf == NULL)
757 return; /* out of memory! */
758 }
759
Bram Moolenaar581f6dc2010-03-10 16:12:48 +0100760 /* Keep on reading for as long as there is something to read.
761 * Use select() or poll() to avoid blocking on a message that is exactly
762 * MAXMSGSIZE long. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 for (;;)
764 {
Bram Moolenaar581f6dc2010-03-10 16:12:48 +0100765#ifdef HAVE_SELECT
766 FD_ZERO(&rfds);
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200767 FD_SET(nbsock, &rfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +0200768 tval.tv_sec = 0;
769 tval.tv_usec = 0;
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200770 if (select(nbsock + 1, &rfds, NULL, NULL, &tval) <= 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200771 break;
Bram Moolenaar581f6dc2010-03-10 16:12:48 +0100772#else
773# ifdef HAVE_POLL
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200774 fds.fd = nbsock;
Bram Moolenaar581f6dc2010-03-10 16:12:48 +0100775 fds.events = POLLIN;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200776 if (poll(&fds, 1, 0) <= 0)
777 break;
Bram Moolenaar581f6dc2010-03-10 16:12:48 +0100778# endif
779#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200780 len = sock_read(nbsock, buf, MAXMSGSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 if (len <= 0)
782 break; /* error or nothing more to read */
783
784 /* Store the read message in the queue. */
785 save(buf, len);
786 readlen += len;
787 if (len < MAXMSGSIZE)
788 break; /* did read everything that's available */
789 }
790
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100791 /* Reading a socket disconnection (readlen == 0), or a socket error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 if (readlen <= 0)
793 {
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100794 /* Queue a "DETACH" netbeans message in the command queue in order to
795 * terminate the netbeans session later. Do not end the session here
796 * directly as we may be running in the context of a call to
797 * netbeans_parse_messages():
798 * netbeans_parse_messages
799 * -> autocmd triggered while processing the netbeans cmd
800 * -> ui_breakcheck
801 * -> gui event loop or select loop
802 * -> netbeans_read()
803 */
Bram Moolenaarde1b0922010-12-24 14:00:17 +0100804 save((char_u *)DETACH_MSG, (int)strlen(DETACH_MSG));
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100805 nb_close_socket();
806
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 if (len < 0)
Bram Moolenaarf2330482008-06-24 20:19:36 +0000808 {
809 nbdebug(("read from Netbeans socket\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 PERROR(_("read from Netbeans socket"));
Bram Moolenaarf2330482008-06-24 20:19:36 +0000811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 }
813
Bram Moolenaar03531f72010-11-16 15:04:57 +0100814#if defined(NB_HAS_GUI) && defined(FEAT_GUI_GTK)
815 if (NB_HAS_GUI && gtk_main_level() > 0)
Bram Moolenaar7ad7d012010-11-16 15:49:02 +0100816 gtk_main_quit();
Bram Moolenaarf2330482008-06-24 20:19:36 +0000817#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818}
819
820/*
821 * Handle one NUL terminated command.
822 *
823 * format of a command from netbeans:
824 *
825 * 6:setTitle!84 "a.c"
826 *
827 * bufno
828 * colon
829 * cmd
830 * !
831 * cmdno
832 * args
833 *
834 * for function calls, the ! is replaced by a /
835 */
836 static void
837nb_parse_cmd(char_u *cmd)
838{
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000839 char *verb;
840 char *q;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 int bufno;
842 int isfunc = -1;
843
844 if (STRCMP(cmd, "DISCONNECT") == 0)
845 {
846 /* We assume the server knows that we can safely exit! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 /* Disconnect before exiting, Motif hangs in a Select error
848 * message otherwise. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200849 netbeans_close();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 getout(0);
851 /* NOTREACHED */
852 }
853
854 if (STRCMP(cmd, "DETACH") == 0)
855 {
856 /* The IDE is breaking the connection. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200857 netbeans_close();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 return;
859 }
860
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000861 bufno = strtol((char *)cmd, &verb, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862
863 if (*verb != ':')
864 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000865 nbdebug((" missing colon: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 EMSG2("E627: missing colon: %s", cmd);
867 return;
868 }
869 ++verb; /* skip colon */
870
871 for (q = verb; *q; q++)
872 {
873 if (*q == '!')
874 {
875 *q++ = NUL;
876 isfunc = 0;
877 break;
878 }
879 else if (*q == '/')
880 {
881 *q++ = NUL;
882 isfunc = 1;
883 break;
884 }
885 }
886
887 if (isfunc < 0)
888 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000889 nbdebug((" missing ! or / in: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 EMSG2("E628: missing ! or / in: %s", cmd);
891 return;
892 }
893
Bram Moolenaar89d40322006-08-29 15:30:07 +0000894 r_cmdno = strtol(q, &q, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000896 q = (char *)skipwhite((char_u *)q);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897
Bram Moolenaar89d40322006-08-29 15:30:07 +0000898 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 {
Bram Moolenaar009b2592004-10-24 19:18:58 +0000900#ifdef NBDEBUG
901 /*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100902 * This happens because the ExtEd can send a command or 2 after
Bram Moolenaar009b2592004-10-24 19:18:58 +0000903 * doing a stopDocumentListen command. It doesn't harm anything
904 * so I'm disabling it except for debugging.
905 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd));
907 EMSG("E629: bad return from nb_do_cmd");
Bram Moolenaar009b2592004-10-24 19:18:58 +0000908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 }
910}
911
912struct nbbuf_struct
913{
914 buf_T *bufp;
915 unsigned int fireChanges:1;
916 unsigned int initDone:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000917 unsigned int insertDone:1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 unsigned int modified:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000919 int nbbuf_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 char *displayname;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 int *signmap;
922 short_u signmaplen;
923 short_u signmapused;
924};
925
926typedef struct nbbuf_struct nbbuf_T;
927
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200928static nbbuf_T *buf_list = NULL;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000929static int buf_list_size = 0; /* size of buf_list */
930static int buf_list_used = 0; /* nr of entries in buf_list actually in use */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200932static char **globalsignmap = NULL;
933static int globalsignmaplen = 0;
934static int globalsignmapused = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935
936static int mapsigntype __ARGS((nbbuf_T *, int localsigntype));
937static void addsigntype __ARGS((nbbuf_T *, int localsigntype, char_u *typeName,
938 char_u *tooltip, char_u *glyphfile,
Bram Moolenaar67c53842010-05-22 18:28:27 +0200939 char_u *fg, char_u *bg));
Bram Moolenaar009b2592004-10-24 19:18:58 +0000940static void print_read_msg __ARGS((nbbuf_T *buf));
Bram Moolenaar914703b2010-05-31 21:59:46 +0200941static void print_save_msg __ARGS((nbbuf_T *buf, off_t nchars));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942
943static int curPCtype = -1;
944
945/*
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200946 * Free netbeans resources.
947 */
948 static void
949nb_free()
950{
951 keyQ_T *key_node = keyHead.next;
952 queue_T *cmd_node = head.next;
953 nbbuf_T buf;
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200954 int i;
955
956 /* free the netbeans buffer list */
957 for (i = 0; i < buf_list_used; i++)
958 {
959 buf = buf_list[i];
960 vim_free(buf.displayname);
961 vim_free(buf.signmap);
Bram Moolenaare980d8a2010-12-08 13:11:21 +0100962 if (buf.bufp != NULL)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200963 {
964 buf.bufp->b_netbeans_file = FALSE;
965 buf.bufp->b_was_netbeans_file = FALSE;
966 }
967 }
968 vim_free(buf_list);
969 buf_list = NULL;
970 buf_list_size = 0;
971 buf_list_used = 0;
972
973 /* free the queued key commands */
974 while(key_node != NULL && key_node != &keyHead)
975 {
976 keyQ_T *next = key_node->next;
977 vim_free(key_node->keystr);
978 vim_free(key_node);
979 if (next == &keyHead)
980 {
981 keyHead.next = &keyHead;
982 keyHead.prev = &keyHead;
983 break;
984 }
985 key_node = next;
986 }
987
988 /* free the queued netbeans commands */
989 while(cmd_node != NULL && cmd_node != &head)
990 {
991 queue_T *next = cmd_node->next;
992 vim_free(cmd_node->buffer);
993 vim_free(cmd_node);
994 if (next == &head)
995 {
996 head.next = &head;
997 head.prev = &head;
998 break;
999 }
1000 cmd_node = next;
1001 }
1002}
1003
1004/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 * Get the Netbeans buffer number for the specified buffer.
1006 */
1007 static int
1008nb_getbufno(buf_T *bufp)
1009{
1010 int i;
1011
1012 for (i = 0; i < buf_list_used; i++)
1013 if (buf_list[i].bufp == bufp)
1014 return i;
1015 return -1;
1016}
1017
1018/*
1019 * Is this a NetBeans-owned buffer?
1020 */
1021 int
1022isNetbeansBuffer(buf_T *bufp)
1023{
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001024 return NETBEANS_OPEN && bufp->b_netbeans_file;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025}
1026
1027/*
1028 * NetBeans and Vim have different undo models. In Vim, the file isn't
1029 * changed if changes are undone via the undo command. In NetBeans, once
1030 * a change has been made the file is marked as modified until saved. It
1031 * doesn't matter if the change was undone.
1032 *
1033 * So this function is for the corner case where Vim thinks a buffer is
1034 * unmodified but NetBeans thinks it IS modified.
1035 */
1036 int
1037isNetbeansModified(buf_T *bufp)
1038{
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001039 if (isNetbeansBuffer(bufp))
Bram Moolenaar009b2592004-10-24 19:18:58 +00001040 {
1041 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042
Bram Moolenaar009b2592004-10-24 19:18:58 +00001043 if (bufno > 0)
1044 return buf_list[bufno].modified;
1045 else
1046 return FALSE;
1047 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 else
1049 return FALSE;
1050}
1051
1052/*
1053 * Given a Netbeans buffer number, return the netbeans buffer.
1054 * Returns NULL for 0 or a negative number. A 0 bufno means a
1055 * non-buffer related command has been sent.
1056 */
1057 static nbbuf_T *
1058nb_get_buf(int bufno)
1059{
1060 /* find or create a buffer with the given number */
1061 int incr;
1062
1063 if (bufno <= 0)
1064 return NULL;
1065
1066 if (!buf_list)
1067 {
1068 /* initialize */
1069 buf_list = (nbbuf_T *)alloc_clear(100 * sizeof(nbbuf_T));
1070 buf_list_size = 100;
1071 }
1072 if (bufno >= buf_list_used) /* new */
1073 {
1074 if (bufno >= buf_list_size) /* grow list */
1075 {
1076 incr = bufno - buf_list_size + 90;
1077 buf_list_size += incr;
1078 buf_list = (nbbuf_T *)vim_realloc(
1079 buf_list, buf_list_size * sizeof(nbbuf_T));
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001080 vim_memset(buf_list + buf_list_size - incr, 0,
1081 incr * sizeof(nbbuf_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 }
1083
1084 while (buf_list_used <= bufno)
1085 {
1086 /* Default is to fire text changes. */
1087 buf_list[buf_list_used].fireChanges = 1;
1088 ++buf_list_used;
1089 }
1090 }
1091
1092 return buf_list + bufno;
1093}
1094
1095/*
1096 * Return the number of buffers that are modified.
1097 */
1098 static int
1099count_changed_buffers(void)
1100{
1101 buf_T *bufp;
1102 int n;
1103
1104 n = 0;
1105 for (bufp = firstbuf; bufp != NULL; bufp = bufp->b_next)
1106 if (bufp->b_changed)
1107 ++n;
1108 return n;
1109}
1110
1111/*
1112 * End the netbeans session.
1113 */
1114 void
1115netbeans_end(void)
1116{
1117 int i;
1118 static char buf[128];
1119
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001120 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 return;
1122
1123 for (i = 0; i < buf_list_used; i++)
1124 {
1125 if (!buf_list[i].bufp)
1126 continue;
1127 if (netbeansForcedQuit)
1128 {
1129 /* mark as unmodified so NetBeans won't put up dialog on "killed" */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001130 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 nbdebug(("EVT: %s", buf));
1132 nb_send(buf, "netbeans_end");
1133 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00001134 sprintf(buf, "%d:killed=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 nbdebug(("EVT: %s", buf));
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001136 /* nb_send(buf, "netbeans_end"); avoid "write failed" messages */
1137 ignored = sock_write(nbsock, buf, (int)STRLEN(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139}
1140
1141/*
1142 * Send a message to netbeans.
1143 */
1144 static void
1145nb_send(char *buf, char *fun)
1146{
1147 /* Avoid giving pages full of error messages when the other side has
1148 * exited, only mention the first error until the connection works again. */
1149 static int did_error = FALSE;
1150
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001151 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 {
1153 if (!did_error)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001154 {
1155 nbdebug((" %s(): write while not connected\n", fun));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 EMSG2("E630: %s(): write while not connected", fun);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001157 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 did_error = TRUE;
1159 }
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001160 else if (sock_write(nbsock, buf, (int)STRLEN(buf)) != (int)STRLEN(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 {
1162 if (!did_error)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001163 {
1164 nbdebug((" %s(): write failed\n", fun));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 EMSG2("E631: %s(): write failed", fun);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001166 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 did_error = TRUE;
1168 }
1169 else
1170 did_error = FALSE;
1171}
1172
1173/*
1174 * Some input received from netbeans requires a response. This function
1175 * handles a response with no information (except the command number).
1176 */
1177 static void
1178nb_reply_nil(int cmdno)
1179{
1180 char reply[32];
1181
Bram Moolenaar009b2592004-10-24 19:18:58 +00001182 nbdebug(("REP %d: <none>\n", cmdno));
1183
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01001184 /* Avoid printing an annoying error message. */
1185 if (!NETBEANS_OPEN)
1186 return;
1187
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 sprintf(reply, "%d\n", cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 nb_send(reply, "nb_reply_nil");
1190}
1191
1192
1193/*
1194 * Send a response with text.
1195 * "result" must have been quoted already (using nb_quote()).
1196 */
1197 static void
1198nb_reply_text(int cmdno, char_u *result)
1199{
1200 char_u *reply;
1201
Bram Moolenaar009b2592004-10-24 19:18:58 +00001202 nbdebug(("REP %d: %s\n", cmdno, (char *)result));
1203
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001204 reply = alloc((unsigned)STRLEN(result) + 32);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 nb_send((char *)reply, "nb_reply_text");
1207
1208 vim_free(reply);
1209}
1210
1211
1212/*
1213 * Send a response with a number result code.
1214 */
1215 static void
1216nb_reply_nr(int cmdno, long result)
1217{
1218 char reply[32];
1219
Bram Moolenaar009b2592004-10-24 19:18:58 +00001220 nbdebug(("REP %d: %ld\n", cmdno, result));
1221
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 sprintf(reply, "%d %ld\n", cmdno, result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 nb_send(reply, "nb_reply_nr");
1224}
1225
1226
1227/*
1228 * Encode newline, ret, backslash, double quote for transmission to NetBeans.
1229 */
1230 static char_u *
1231nb_quote(char_u *txt)
1232{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001233 char_u *buf = alloc((unsigned)(2 * STRLEN(txt) + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 char_u *p = txt;
1235 char_u *q = buf;
1236
1237 if (buf == NULL)
1238 return NULL;
1239 for (; *p; p++)
1240 {
1241 switch (*p)
1242 {
1243 case '\"':
1244 case '\\':
1245 *q++ = '\\'; *q++ = *p; break;
1246 /* case '\t': */
1247 /* *q++ = '\\'; *q++ = 't'; break; */
1248 case '\n':
1249 *q++ = '\\'; *q++ = 'n'; break;
1250 case '\r':
1251 *q++ = '\\'; *q++ = 'r'; break;
1252 default:
1253 *q++ = *p;
1254 break;
1255 }
1256 }
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01001257 *q = '\0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258
1259 return buf;
1260}
1261
1262
1263/*
1264 * Remove top level double quotes; convert backslashed chars.
1265 * Returns an allocated string (NULL for failure).
1266 * If "endp" is not NULL it is set to the character after the terminating
1267 * quote.
1268 */
1269 static char *
1270nb_unquote(char_u *p, char_u **endp)
1271{
1272 char *result = 0;
1273 char *q;
1274 int done = 0;
1275
1276 /* result is never longer than input */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001277 result = (char *)alloc_clear((unsigned)STRLEN(p) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 if (result == NULL)
1279 return NULL;
1280
1281 if (*p++ != '"')
1282 {
1283 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n",
1284 p));
1285 result[0] = NUL;
1286 return result;
1287 }
1288
1289 for (q = result; !done && *p != NUL;)
1290 {
1291 switch (*p)
1292 {
1293 case '"':
1294 /*
1295 * Unbackslashed dquote marks the end, if first char was dquote.
1296 */
1297 done = 1;
1298 break;
1299
1300 case '\\':
1301 ++p;
1302 switch (*p)
1303 {
1304 case '\\': *q++ = '\\'; break;
1305 case 'n': *q++ = '\n'; break;
1306 case 't': *q++ = '\t'; break;
1307 case 'r': *q++ = '\r'; break;
1308 case '"': *q++ = '"'; break;
1309 case NUL: --p; break;
1310 /* default: skip over illegal chars */
1311 }
1312 ++p;
1313 break;
1314
1315 default:
1316 *q++ = *p++;
1317 }
1318 }
1319
1320 if (endp != NULL)
1321 *endp = p;
1322
1323 return result;
1324}
1325
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001326/*
1327 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the
1328 * current buffer. Remove to end of line when "last" is MAXCOL.
1329 */
1330 static void
1331nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last)
1332{
1333 char_u *oldtext, *newtext;
1334 int oldlen;
1335 int lastbyte = last;
1336
1337 oldtext = ml_get(lnum);
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001338 oldlen = (int)STRLEN(oldtext);
Bram Moolenaarb3c70982008-01-18 10:40:55 +00001339 if (first >= (colnr_T)oldlen || oldlen == 0) /* just in case */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001340 return;
1341 if (lastbyte >= oldlen)
1342 lastbyte = oldlen - 1;
1343 newtext = alloc(oldlen - (int)(lastbyte - first));
1344 if (newtext != NULL)
1345 {
1346 mch_memmove(newtext, oldtext, first);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001347 STRMOVE(newtext + first, oldtext + lastbyte + 1);
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001348 nbdebug((" NEW LINE %d: %s\n", lnum, newtext));
1349 ml_replace(lnum, newtext, FALSE);
1350 }
1351}
1352
1353/*
1354 * Replace the "first" line with the concatenation of the "first" and
1355 * the "other" line. The "other" line is not removed.
1356 */
1357 static void
1358nb_joinlines(linenr_T first, linenr_T other)
1359{
1360 int len_first, len_other;
1361 char_u *p;
1362
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001363 len_first = (int)STRLEN(ml_get(first));
1364 len_other = (int)STRLEN(ml_get(other));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001365 p = alloc((unsigned)(len_first + len_other + 1));
1366 if (p != NULL)
1367 {
1368 mch_memmove(p, ml_get(first), len_first);
1369 mch_memmove(p + len_first, ml_get(other), len_other + 1);
1370 ml_replace(first, p, FALSE);
1371 }
1372}
1373
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374#define SKIP_STOP 2
1375#define streq(a,b) (strcmp(a,b) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376
1377/*
1378 * Do the actual processing of a single netbeans command or function.
Bram Moolenaar143c38c2007-05-10 16:41:10 +00001379 * The difference between a command and function is that a function
1380 * gets a response (it's required) but a command does not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 * For arguments see comment for nb_parse_cmd().
1382 */
1383 static int
1384nb_do_cmd(
1385 int bufno,
1386 char_u *cmd,
1387 int func,
1388 int cmdno,
1389 char_u *args) /* points to space before arguments or NUL */
1390{
1391 int doupdate = 0;
1392 long off = 0;
1393 nbbuf_T *buf = nb_get_buf(bufno);
1394 static int skip = 0;
1395 int retval = OK;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001396 char *cp; /* for when a char pointer is needed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397
1398 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd,
1399 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args));
1400
1401 if (func)
1402 {
1403/* =====================================================================*/
1404 if (streq((char *)cmd, "getModified"))
1405 {
1406 if (buf == NULL || buf->bufp == NULL)
1407 /* Return the number of buffers that are modified. */
1408 nb_reply_nr(cmdno, (long)count_changed_buffers());
1409 else
1410 /* Return whether the buffer is modified. */
1411 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed
1412 || isNetbeansModified(buf->bufp)));
1413/* =====================================================================*/
1414 }
1415 else if (streq((char *)cmd, "saveAndExit"))
1416 {
1417 /* Note: this will exit Vim if successful. */
1418 coloncmd(":confirm qall");
1419
1420 /* We didn't exit: return the number of changed buffers. */
1421 nb_reply_nr(cmdno, (long)count_changed_buffers());
1422/* =====================================================================*/
1423 }
1424 else if (streq((char *)cmd, "getCursor"))
1425 {
1426 char_u text[200];
1427
1428 /* Note: nb_getbufno() may return -1. This indicates the IDE
1429 * didn't assign a number to the current buffer in response to a
1430 * fileOpened event. */
1431 sprintf((char *)text, "%d %ld %d %ld",
1432 nb_getbufno(curbuf),
1433 (long)curwin->w_cursor.lnum,
1434 (int)curwin->w_cursor.col,
1435 pos2off(curbuf, &curwin->w_cursor));
1436 nb_reply_text(cmdno, text);
1437/* =====================================================================*/
1438 }
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001439 else if (streq((char *)cmd, "getAnno"))
1440 {
1441 long linenum = 0;
1442#ifdef FEAT_SIGNS
1443 if (buf == NULL || buf->bufp == NULL)
1444 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001445 nbdebug((" Invalid buffer identifier in getAnno\n"));
1446 EMSG("E652: Invalid buffer identifier in getAnno");
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001447 retval = FAIL;
1448 }
1449 else
1450 {
1451 int serNum;
1452
1453 cp = (char *)args;
1454 serNum = strtol(cp, &cp, 10);
1455 /* If the sign isn't found linenum will be zero. */
1456 linenum = (long)buf_findsign(buf->bufp, serNum);
1457 }
1458#endif
1459 nb_reply_nr(cmdno, linenum);
1460/* =====================================================================*/
1461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 else if (streq((char *)cmd, "getLength"))
1463 {
1464 long len = 0;
1465
1466 if (buf == NULL || buf->bufp == NULL)
1467 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001468 nbdebug((" invalid buffer identifier in getLength\n"));
1469 EMSG("E632: invalid buffer identifier in getLength");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 retval = FAIL;
1471 }
1472 else
1473 {
1474 len = get_buf_size(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 }
1476 nb_reply_nr(cmdno, len);
1477/* =====================================================================*/
1478 }
1479 else if (streq((char *)cmd, "getText"))
1480 {
1481 long len;
1482 linenr_T nlines;
1483 char_u *text = NULL;
1484 linenr_T lno = 1;
1485 char_u *p;
1486 char_u *line;
1487
1488 if (buf == NULL || buf->bufp == NULL)
1489 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001490 nbdebug((" invalid buffer identifier in getText\n"));
1491 EMSG("E633: invalid buffer identifier in getText");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 retval = FAIL;
1493 }
1494 else
1495 {
1496 len = get_buf_size(buf->bufp);
1497 nlines = buf->bufp->b_ml.ml_line_count;
1498 text = alloc((unsigned)((len > 0)
1499 ? ((len + nlines) * 2) : 4));
1500 if (text == NULL)
1501 {
1502 nbdebug((" nb_do_cmd: getText has null text field\n"));
1503 retval = FAIL;
1504 }
1505 else
1506 {
1507 p = text;
1508 *p++ = '\"';
1509 for (; lno <= nlines ; lno++)
1510 {
1511 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE));
1512 if (line != NULL)
1513 {
1514 STRCPY(p, line);
1515 p += STRLEN(line);
1516 *p++ = '\\';
1517 *p++ = 'n';
Bram Moolenaar009b2592004-10-24 19:18:58 +00001518 vim_free(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 }
1521 *p++ = '\"';
1522 *p = '\0';
1523 }
1524 }
1525 if (text == NULL)
1526 nb_reply_text(cmdno, (char_u *)"");
1527 else
1528 {
1529 nb_reply_text(cmdno, text);
1530 vim_free(text);
1531 }
1532/* =====================================================================*/
1533 }
1534 else if (streq((char *)cmd, "remove"))
1535 {
1536 long count;
1537 pos_T first, last;
1538 pos_T *pos;
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001539 pos_T *next;
1540 linenr_T del_from_lnum, del_to_lnum; /* lines to be deleted as a whole */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 int oldFire = netbeansFireChanges;
1542 int oldSuppress = netbeansSuppressNoLines;
1543 int wasChanged;
1544
1545 if (skip >= SKIP_STOP)
1546 {
1547 nbdebug((" Skipping %s command\n", (char *) cmd));
1548 nb_reply_nil(cmdno);
1549 return OK;
1550 }
1551
1552 if (buf == NULL || buf->bufp == NULL)
1553 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001554 nbdebug((" invalid buffer identifier in remove\n"));
1555 EMSG("E634: invalid buffer identifier in remove");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 retval = FAIL;
1557 }
1558 else
1559 {
1560 netbeansFireChanges = FALSE;
1561 netbeansSuppressNoLines = TRUE;
1562
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001563 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 wasChanged = buf->bufp->b_changed;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001565 cp = (char *)args;
1566 off = strtol(cp, &cp, 10);
1567 count = strtol(cp, &cp, 10);
1568 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 /* delete "count" chars, starting at "off" */
1570 pos = off2pos(buf->bufp, off);
1571 if (!pos)
1572 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001573 nbdebug((" !bad position\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 nb_reply_text(cmdno, (char_u *)"!bad position");
1575 netbeansFireChanges = oldFire;
1576 netbeansSuppressNoLines = oldSuppress;
1577 return FAIL;
1578 }
1579 first = *pos;
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001580 nbdebug((" FIRST POS: line %d, col %d\n",
1581 first.lnum, first.col));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 pos = off2pos(buf->bufp, off+count-1);
1583 if (!pos)
1584 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001585 nbdebug((" !bad count\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 nb_reply_text(cmdno, (char_u *)"!bad count");
1587 netbeansFireChanges = oldFire;
1588 netbeansSuppressNoLines = oldSuppress;
1589 return FAIL;
1590 }
1591 last = *pos;
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001592 nbdebug((" LAST POS: line %d, col %d\n",
1593 last.lnum, last.col));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001594 del_from_lnum = first.lnum;
1595 del_to_lnum = last.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 doupdate = 1;
1597
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001598 /* Get the position of the first byte after the deleted
1599 * section. "next" is NULL when deleting to the end of the
1600 * file. */
1601 next = off2pos(buf->bufp, off + count);
1602
1603 /* Remove part of the first line. */
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001604 if (first.col != 0
1605 || (next != NULL && first.lnum == next->lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 {
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001607 if (first.lnum != last.lnum
1608 || (next != NULL && first.lnum != next->lnum))
1609 {
1610 /* remove to the end of the first line */
1611 nb_partialremove(first.lnum, first.col,
1612 (colnr_T)MAXCOL);
1613 if (first.lnum == last.lnum)
1614 {
1615 /* Partial line to remove includes the end of
1616 * line. Join the line with the next one, have
1617 * the next line deleted below. */
1618 nb_joinlines(first.lnum, next->lnum);
1619 del_to_lnum = next->lnum;
1620 }
1621 }
1622 else
1623 {
1624 /* remove within one line */
1625 nb_partialremove(first.lnum, first.col, last.col);
1626 }
1627 ++del_from_lnum; /* don't delete the first line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 }
1629
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001630 /* Remove part of the last line. */
1631 if (first.lnum != last.lnum && next != NULL
1632 && next->col != 0 && last.lnum == next->lnum)
1633 {
1634 nb_partialremove(last.lnum, 0, last.col);
1635 if (del_from_lnum > first.lnum)
1636 {
1637 /* Join end of last line to start of first line; last
1638 * line is deleted below. */
1639 nb_joinlines(first.lnum, last.lnum);
1640 }
1641 else
1642 /* First line is deleted as a whole, keep the last
1643 * line. */
1644 --del_to_lnum;
1645 }
1646
1647 /* First is partial line; last line to remove includes
1648 * the end of line; join first line to line following last
1649 * line; line following last line is deleted below. */
1650 if (first.lnum != last.lnum && del_from_lnum > first.lnum
1651 && next != NULL && last.lnum != next->lnum)
1652 {
1653 nb_joinlines(first.lnum, next->lnum);
1654 del_to_lnum = next->lnum;
1655 }
1656
1657 /* Delete whole lines if there are any. */
1658 if (del_to_lnum >= del_from_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 {
1660 int i;
1661
1662 /* delete signs from the lines being deleted */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001663 for (i = del_from_lnum; i <= del_to_lnum; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 {
1665 int id = buf_findsign_id(buf->bufp, (linenr_T)i);
1666 if (id > 0)
1667 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001668 nbdebug((" Deleting sign %d on line %d\n",
1669 id, i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 buf_delsign(buf->bufp, id);
1671 }
1672 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001673 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 nbdebug((" No sign on line %d\n", i));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001675 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 }
1677
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00001678 nbdebug((" Deleting lines %d through %d\n",
1679 del_from_lnum, del_to_lnum));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001680 curwin->w_cursor.lnum = del_from_lnum;
1681 curwin->w_cursor.col = 0;
1682 del_lines(del_to_lnum - del_from_lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 }
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001684
1685 /* Leave cursor at first deleted byte. */
1686 curwin->w_cursor = first;
1687 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 buf->bufp->b_changed = wasChanged; /* logically unchanged */
1689 netbeansFireChanges = oldFire;
1690 netbeansSuppressNoLines = oldSuppress;
1691
1692 u_blockfree(buf->bufp);
1693 u_clearall(buf->bufp);
1694 }
1695 nb_reply_nil(cmdno);
1696/* =====================================================================*/
1697 }
1698 else if (streq((char *)cmd, "insert"))
1699 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 char_u *to_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701
1702 if (skip >= SKIP_STOP)
1703 {
1704 nbdebug((" Skipping %s command\n", (char *) cmd));
1705 nb_reply_nil(cmdno);
1706 return OK;
1707 }
1708
1709 /* get offset */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001710 cp = (char *)args;
1711 off = strtol(cp, &cp, 10);
1712 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713
1714 /* get text to be inserted */
1715 args = skipwhite(args);
1716 args = to_free = (char_u *)nb_unquote(args, NULL);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001717 /*
1718 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1719 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1720 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721
1722 if (buf == NULL || buf->bufp == NULL)
1723 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001724 nbdebug((" invalid buffer identifier in insert\n"));
1725 EMSG("E635: invalid buffer identifier in insert");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 retval = FAIL;
1727 }
1728 else if (args != NULL)
1729 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001730 int ff_detected = EOL_UNKNOWN;
1731 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY);
1732 size_t len = 0;
1733 int added = 0;
1734 int oldFire = netbeansFireChanges;
1735 int old_b_changed;
1736 char_u *nl;
1737 linenr_T lnum;
1738 linenr_T lnum_start;
1739 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 netbeansFireChanges = 0;
1742
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001743 /* Jump to the buffer where we insert. After this "curbuf"
1744 * can be used. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001745 nb_set_curbuf(buf->bufp);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001746 old_b_changed = curbuf->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001748 /* Convert the specified character offset into a lnum/col
1749 * position. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001750 pos = off2pos(curbuf, off);
1751 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001753 if (pos->lnum <= 0)
1754 lnum_start = 1;
1755 else
1756 lnum_start = pos->lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 }
1758 else
1759 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001760 /* If the given position is not found, assume we want
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 * the end of the file. See setLocAndSize HACK. */
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001762 if (buf_was_empty)
1763 lnum_start = 1; /* above empty line */
1764 else
1765 lnum_start = curbuf->b_ml.ml_line_count + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001766 }
1767
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001768 /* "lnum" is the line where we insert: either append to it or
1769 * insert a new line above it. */
1770 lnum = lnum_start;
1771
1772 /* Loop over the "\n" separated lines of the argument. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 doupdate = 1;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001774 while (*args != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001776 nl = vim_strchr(args, '\n');
1777 if (nl == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001779 /* Incomplete line, probably truncated. Next "insert"
1780 * command should append to this one. */
1781 len = STRLEN(args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001783 else
1784 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001785 len = nl - args;
1786
1787 /*
1788 * We need to detect EOL style, because the commands
1789 * use a character offset.
1790 */
1791 if (nl > args && nl[-1] == '\r')
1792 {
1793 ff_detected = EOL_DOS;
1794 --len;
1795 }
1796 else
1797 ff_detected = EOL_UNIX;
1798 }
1799 args[len] = NUL;
1800
1801 if (lnum == lnum_start
1802 && ((pos != NULL && pos->col > 0)
1803 || (lnum == 1 && buf_was_empty)))
1804 {
1805 char_u *oldline = ml_get(lnum);
1806 char_u *newline;
1807
1808 /* Insert halfway a line. For simplicity we assume we
1809 * need to append to the line. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001810 newline = alloc_check((unsigned)(STRLEN(oldline) + len + 1));
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001811 if (newline != NULL)
1812 {
1813 STRCPY(newline, oldline);
1814 STRCAT(newline, args);
1815 ml_replace(lnum, newline, FALSE);
1816 }
1817 }
1818 else
1819 {
1820 /* Append a new line. Not that we always do this,
1821 * also when the text doesn't end in a "\n". */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001822 ml_append((linenr_T)(lnum - 1), args, (colnr_T)(len + 1), FALSE);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001823 ++added;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001824 }
1825
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001826 if (nl == NULL)
1827 break;
1828 ++lnum;
1829 args = nl + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001830 }
1831
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001832 /* Adjust the marks below the inserted lines. */
1833 appended_lines_mark(lnum_start - 1, (long)added);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001835 /*
1836 * When starting with an empty buffer set the fileformat.
1837 * This is just guessing...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 */
1839 if (buf_was_empty)
1840 {
1841 if (ff_detected == EOL_UNKNOWN)
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001842#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 ff_detected = EOL_DOS;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001844#else
1845 ff_detected = EOL_UNIX;
1846#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 set_fileformat(ff_detected, OPT_LOCAL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001848 curbuf->b_start_ffc = *curbuf->b_p_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 }
1850
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 /*
1852 * XXX - GRP - Is the next line right? If I've inserted
1853 * text the buffer has been updated but not written. Will
1854 * netbeans guarantee to write it? Even if I do a :q! ?
1855 */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001856 curbuf->b_changed = old_b_changed; /* logically unchanged */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 netbeansFireChanges = oldFire;
1858
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001859 /* Undo info is invalid now... */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001860 u_blockfree(curbuf);
1861 u_clearall(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 }
1863 vim_free(to_free);
1864 nb_reply_nil(cmdno); /* or !error */
1865 }
1866 else
1867 {
1868 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd));
1869 nb_reply_nil(cmdno);
1870 retval = FAIL;
1871 }
1872 }
1873 else /* Not a function; no reply required. */
1874 {
1875/* =====================================================================*/
1876 if (streq((char *)cmd, "create"))
1877 {
1878 /* Create a buffer without a name. */
1879 if (buf == NULL)
1880 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001881 nbdebug((" invalid buffer identifier in create\n"));
1882 EMSG("E636: invalid buffer identifier in create");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 return FAIL;
1884 }
1885 vim_free(buf->displayname);
1886 buf->displayname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887
1888 netbeansReadFile = 0; /* don't try to open disk file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001889 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 netbeansReadFile = 1;
1891 buf->bufp = curbuf;
1892 maketitle();
Bram Moolenaar009b2592004-10-24 19:18:58 +00001893 buf->insertDone = FALSE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02001894#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02001895 if (gui.in_use)
1896 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001897#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898/* =====================================================================*/
1899 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001900 else if (streq((char *)cmd, "insertDone"))
1901 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001902 if (buf == NULL || buf->bufp == NULL)
1903 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001904 nbdebug((" invalid buffer identifier in insertDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001905 }
1906 else
1907 {
1908 buf->bufp->b_start_eol = *args == 'T';
1909 buf->insertDone = TRUE;
1910 args += 2;
1911 buf->bufp->b_p_ro = *args == 'T';
1912 print_read_msg(buf);
1913 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001914/* =====================================================================*/
1915 }
1916 else if (streq((char *)cmd, "saveDone"))
1917 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001918 long savedChars = atol((char *)args);
1919
1920 if (buf == NULL || buf->bufp == NULL)
1921 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001922 nbdebug((" invalid buffer identifier in saveDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001923 }
1924 else
1925 print_save_msg(buf, savedChars);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001926/* =====================================================================*/
1927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 else if (streq((char *)cmd, "startDocumentListen"))
1929 {
1930 if (buf == NULL)
1931 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001932 nbdebug((" invalid buffer identifier in startDocumentListen\n"));
1933 EMSG("E637: invalid buffer identifier in startDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 return FAIL;
1935 }
1936 buf->fireChanges = 1;
1937/* =====================================================================*/
1938 }
1939 else if (streq((char *)cmd, "stopDocumentListen"))
1940 {
1941 if (buf == NULL)
1942 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001943 nbdebug((" invalid buffer identifier in stopDocumentListen\n"));
1944 EMSG("E638: invalid buffer identifier in stopDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 return FAIL;
1946 }
1947 buf->fireChanges = 0;
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001948 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file)
Bram Moolenaar009b2592004-10-24 19:18:58 +00001949 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001950 if (!buf->bufp->b_netbeans_file)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001951 {
1952 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf->bufp->b_fnum));
Bram Moolenaar009b2592004-10-24 19:18:58 +00001953 EMSGN(_("E658: NetBeans connection lost for buffer %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 buf->bufp->b_fnum);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001955 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001956 else
1957 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001958 /* NetBeans uses stopDocumentListen when it stops editing
1959 * a file. It then expects the buffer in Vim to
1960 * disappear. */
1961 do_bufdel(DOBUF_DEL, (char_u *)"", 1,
1962 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001963 vim_memset(buf, 0, sizeof(nbbuf_T));
1964 }
1965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966/* =====================================================================*/
1967 }
1968 else if (streq((char *)cmd, "setTitle"))
1969 {
1970 if (buf == NULL)
1971 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001972 nbdebug((" invalid buffer identifier in setTitle\n"));
1973 EMSG("E639: invalid buffer identifier in setTitle");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 return FAIL;
1975 }
1976 vim_free(buf->displayname);
1977 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978/* =====================================================================*/
1979 }
1980 else if (streq((char *)cmd, "initDone"))
1981 {
1982 if (buf == NULL || buf->bufp == NULL)
1983 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001984 nbdebug((" invalid buffer identifier in initDone\n"));
1985 EMSG("E640: invalid buffer identifier in initDone");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 return FAIL;
1987 }
1988 doupdate = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001989 buf->initDone = TRUE;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001990 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991#if defined(FEAT_AUTOCMD)
1992 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp);
1993#endif
1994
1995 /* handle any postponed key commands */
1996 handle_key_queue();
1997/* =====================================================================*/
1998 }
1999 else if (streq((char *)cmd, "setBufferNumber")
2000 || streq((char *)cmd, "putBufferNumber"))
2001 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002002 char_u *path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 buf_T *bufp;
2004
2005 if (buf == NULL)
2006 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002007 nbdebug((" invalid buffer identifier in setBufferNumber\n"));
2008 EMSG("E641: invalid buffer identifier in setBufferNumber");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 return FAIL;
2010 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002011 path = (char_u *)nb_unquote(args, NULL);
2012 if (path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 return FAIL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002014 bufp = buflist_findname(path);
2015 vim_free(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 if (bufp == NULL)
2017 {
Bram Moolenaarec906222009-02-21 21:14:00 +00002018 nbdebug((" File %s not found in setBufferNumber\n", args));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 EMSG2("E642: File %s not found in setBufferNumber", args);
2020 return FAIL;
2021 }
2022 buf->bufp = bufp;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002023 buf->nbbuf_number = bufp->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024
2025 /* "setBufferNumber" has the side effect of jumping to the buffer
2026 * (don't know why!). Don't do that for "putBufferNumber". */
2027 if (*cmd != 'p')
2028 coloncmd(":buffer %d", bufp->b_fnum);
2029 else
2030 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002031 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032
2033 /* handle any postponed key commands */
2034 handle_key_queue();
2035 }
2036
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037/* =====================================================================*/
2038 }
2039 else if (streq((char *)cmd, "setFullName"))
2040 {
2041 if (buf == NULL)
2042 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002043 nbdebug((" invalid buffer identifier in setFullName\n"));
2044 EMSG("E643: invalid buffer identifier in setFullName");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 return FAIL;
2046 }
2047 vim_free(buf->displayname);
2048 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049
2050 netbeansReadFile = 0; /* don't try to open disk file */
2051 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002052 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 netbeansReadFile = 1;
2054 buf->bufp = curbuf;
2055 maketitle();
Bram Moolenaar67c53842010-05-22 18:28:27 +02002056#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02002057 if (gui.in_use)
2058 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02002059#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060/* =====================================================================*/
2061 }
2062 else if (streq((char *)cmd, "editFile"))
2063 {
2064 if (buf == NULL)
2065 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002066 nbdebug((" invalid buffer identifier in editFile\n"));
2067 EMSG("E644: invalid buffer identifier in editFile");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 return FAIL;
2069 }
2070 /* Edit a file: like create + setFullName + read the file. */
2071 vim_free(buf->displayname);
2072 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002074 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 buf->bufp = curbuf;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002076 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 doupdate = 1;
2078#if defined(FEAT_TITLE)
2079 maketitle();
2080#endif
Bram Moolenaar67c53842010-05-22 18:28:27 +02002081#if defined(FEAT_MENU) && defined(FEAT_GUI)
Bram Moolenaard54a6882010-08-09 22:49:00 +02002082 if (gui.in_use)
2083 gui_update_menus(0);
Bram Moolenaar67c53842010-05-22 18:28:27 +02002084#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085/* =====================================================================*/
2086 }
2087 else if (streq((char *)cmd, "setVisible"))
2088 {
2089 if (buf == NULL || buf->bufp == NULL)
2090 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002091 nbdebug((" invalid buffer identifier in setVisible\n"));
2092 /* This message was commented out, probably because it can
2093 * happen when shutting down. */
2094 if (p_verbose > 0)
2095 EMSG("E645: invalid buffer identifier in setVisible");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 return FAIL;
2097 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002098 if (streq((char *)args, "T") && buf->bufp != curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 {
2100 exarg_T exarg;
2101 exarg.cmd = (char_u *)"goto";
2102 exarg.forceit = FALSE;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002103 dosetvisible = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum);
2105 doupdate = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002106 dosetvisible = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107
Bram Moolenaar67c53842010-05-22 18:28:27 +02002108#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 /* Side effect!!!. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02002110 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02002112#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114/* =====================================================================*/
2115 }
2116 else if (streq((char *)cmd, "raise"))
2117 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002118#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 /* Bring gvim to the foreground. */
Bram Moolenaard54a6882010-08-09 22:49:00 +02002120 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 gui_mch_set_foreground();
Bram Moolenaar67c53842010-05-22 18:28:27 +02002122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123/* =====================================================================*/
2124 }
2125 else if (streq((char *)cmd, "setModified"))
2126 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00002127 int prev_b_changed;
2128
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 if (buf == NULL || buf->bufp == NULL)
2130 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002131 nbdebug((" invalid buffer identifier in setModified\n"));
2132 /* This message was commented out, probably because it can
2133 * happen when shutting down. */
2134 if (p_verbose > 0)
2135 EMSG("E646: invalid buffer identifier in setModified");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 return FAIL;
2137 }
Bram Moolenaarff064e12008-06-09 13:10:45 +00002138 prev_b_changed = buf->bufp->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 if (streq((char *)args, "T"))
Bram Moolenaarff064e12008-06-09 13:10:45 +00002140 buf->bufp->b_changed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 else
2142 {
2143 struct stat st;
2144
2145 /* Assume NetBeans stored the file. Reset the timestamp to
2146 * avoid "file changed" warnings. */
2147 if (buf->bufp->b_ffname != NULL
2148 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0)
2149 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname);
Bram Moolenaarff064e12008-06-09 13:10:45 +00002150 buf->bufp->b_changed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 }
2152 buf->modified = buf->bufp->b_changed;
Bram Moolenaarff064e12008-06-09 13:10:45 +00002153 if (prev_b_changed != buf->bufp->b_changed)
2154 {
2155#ifdef FEAT_WINDOWS
2156 check_status(buf->bufp);
2157 redraw_tabline = TRUE;
2158#endif
2159#ifdef FEAT_TITLE
2160 maketitle();
2161#endif
2162 update_screen(0);
2163 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164/* =====================================================================*/
2165 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002166 else if (streq((char *)cmd, "setModtime"))
2167 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002168 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002169 nbdebug((" invalid buffer identifier in setModtime\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002170 else
2171 buf->bufp->b_mtime = atoi((char *)args);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002172/* =====================================================================*/
2173 }
2174 else if (streq((char *)cmd, "setReadOnly"))
2175 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002176 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002177 nbdebug((" invalid buffer identifier in setReadOnly\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002178 else if (streq((char *)args, "T"))
Bram Moolenaar009b2592004-10-24 19:18:58 +00002179 buf->bufp->b_p_ro = TRUE;
2180 else
2181 buf->bufp->b_p_ro = FALSE;
2182/* =====================================================================*/
2183 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 else if (streq((char *)cmd, "setMark"))
2185 {
2186 /* not yet */
2187/* =====================================================================*/
2188 }
2189 else if (streq((char *)cmd, "showBalloon"))
2190 {
2191#if defined(FEAT_BEVAL)
2192 static char *text = NULL;
2193
2194 /*
2195 * Set up the Balloon Expression Evaluation area.
2196 * Ignore 'ballooneval' here.
2197 * The text pointer must remain valid for a while.
2198 */
2199 if (balloonEval != NULL)
2200 {
2201 vim_free(text);
2202 text = nb_unquote(args, NULL);
2203 if (text != NULL)
2204 gui_mch_post_balloon(balloonEval, (char_u *)text);
2205 }
2206#endif
2207/* =====================================================================*/
2208 }
2209 else if (streq((char *)cmd, "setDot"))
2210 {
2211 pos_T *pos;
2212#ifdef NBDEBUG
2213 char_u *s;
2214#endif
2215
2216 if (buf == NULL || buf->bufp == NULL)
2217 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002218 nbdebug((" invalid buffer identifier in setDot\n"));
2219 EMSG("E647: invalid buffer identifier in setDot");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 return FAIL;
2221 }
2222
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002223 nb_set_curbuf(buf->bufp);
2224
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225#ifdef FEAT_VISUAL
2226 /* Don't want Visual mode now. */
2227 if (VIsual_active)
2228 end_visual_mode();
2229#endif
2230#ifdef NBDEBUG
2231 s = args;
2232#endif
2233 pos = get_off_or_lnum(buf->bufp, &args);
2234 if (pos)
2235 {
2236 curwin->w_cursor = *pos;
2237 check_cursor();
2238#ifdef FEAT_FOLDING
2239 foldOpenCursor();
2240#endif
2241 }
2242 else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002243 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 nbdebug((" BAD POSITION in setDot: %s\n", s));
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002245 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246
2247 /* gui_update_cursor(TRUE, FALSE); */
2248 /* update_curbuf(NOT_VALID); */
2249 update_topline(); /* scroll to show the line */
2250 update_screen(VALID);
2251 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002252 cursor_on();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 out_flush();
Bram Moolenaar67c53842010-05-22 18:28:27 +02002254#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02002255 if (gui.in_use)
2256 {
2257 gui_update_cursor(TRUE, FALSE);
2258 gui_mch_flush();
2259 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02002260#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 /* Quit a hit-return or more prompt. */
2262 if (State == HITRETURN || State == ASKMORE)
2263 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02002265 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 gtk_main_quit();
2267#endif
2268 }
2269/* =====================================================================*/
2270 }
2271 else if (streq((char *)cmd, "close"))
2272 {
2273#ifdef NBDEBUG
2274 char *name = "<NONE>";
2275#endif
2276
2277 if (buf == NULL)
2278 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002279 nbdebug((" invalid buffer identifier in close\n"));
2280 EMSG("E648: invalid buffer identifier in close");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 return FAIL;
2282 }
2283
2284#ifdef NBDEBUG
2285 if (buf->displayname != NULL)
2286 name = buf->displayname;
2287#endif
Bram Moolenaarf2330482008-06-24 20:19:36 +00002288 if (buf->bufp == NULL)
2289 {
2290 nbdebug((" invalid buffer identifier in close\n"));
2291 /* This message was commented out, probably because it can
2292 * happen when shutting down. */
2293 if (p_verbose > 0)
2294 EMSG("E649: invalid buffer identifier in close");
2295 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 nbdebug((" CLOSE %d: %s\n", bufno, name));
Bram Moolenaar67c53842010-05-22 18:28:27 +02002297#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 need_mouse_correct = TRUE;
Bram Moolenaar67c53842010-05-22 18:28:27 +02002299#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 if (buf->bufp != NULL)
2301 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
2302 buf->bufp->b_fnum, TRUE);
Bram Moolenaar8d602722006-08-08 19:34:19 +00002303 buf->bufp = NULL;
2304 buf->initDone = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 doupdate = 1;
2306/* =====================================================================*/
2307 }
2308 else if (streq((char *)cmd, "setStyle")) /* obsolete... */
2309 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002310 nbdebug((" setStyle is obsolete!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311/* =====================================================================*/
2312 }
2313 else if (streq((char *)cmd, "setExitDelay"))
2314 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002315 /* Only used in version 2.1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316/* =====================================================================*/
2317 }
2318 else if (streq((char *)cmd, "defineAnnoType"))
2319 {
2320#ifdef FEAT_SIGNS
2321 int typeNum;
2322 char_u *typeName;
2323 char_u *tooltip;
2324 char_u *p;
2325 char_u *glyphFile;
Bram Moolenaar67c53842010-05-22 18:28:27 +02002326 int parse_error = FALSE;
2327 char_u *fg;
2328 char_u *bg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329
2330 if (buf == NULL)
2331 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002332 nbdebug((" invalid buffer identifier in defineAnnoType\n"));
2333 EMSG("E650: invalid buffer identifier in defineAnnoType");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 return FAIL;
2335 }
2336
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002337 cp = (char *)args;
2338 typeNum = strtol(cp, &cp, 10);
2339 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 args = skipwhite(args);
2341 typeName = (char_u *)nb_unquote(args, &args);
2342 args = skipwhite(args + 1);
2343 tooltip = (char_u *)nb_unquote(args, &args);
2344 args = skipwhite(args + 1);
2345
2346 p = (char_u *)nb_unquote(args, &args);
2347 glyphFile = vim_strsave_escaped(p, escape_chars);
2348 vim_free(p);
2349
2350 args = skipwhite(args + 1);
Bram Moolenaar67c53842010-05-22 18:28:27 +02002351 p = skiptowhite(args);
2352 if (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002354 *p = NUL;
2355 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02002357 fg = vim_strsave(args);
2358 bg = vim_strsave(p);
2359 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002361 EMSG("E532: highlighting color name too long in defineAnnoType");
2362 vim_free(typeName);
2363 parse_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02002365 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL)
2366 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 else
2368 vim_free(typeName);
2369
2370 /* don't free typeName; it's used directly in addsigntype() */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002371 vim_free(fg);
2372 vim_free(bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 vim_free(tooltip);
2374 vim_free(glyphFile);
Bram Moolenaar67c53842010-05-22 18:28:27 +02002375 if (parse_error)
2376 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377
2378#endif
2379/* =====================================================================*/
2380 }
2381 else if (streq((char *)cmd, "addAnno"))
2382 {
2383#ifdef FEAT_SIGNS
2384 int serNum;
2385 int localTypeNum;
2386 int typeNum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 pos_T *pos;
2388
2389 if (buf == NULL || buf->bufp == NULL)
2390 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002391 nbdebug((" invalid buffer identifier in addAnno\n"));
2392 EMSG("E651: invalid buffer identifier in addAnno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 return FAIL;
2394 }
2395
2396 doupdate = 1;
2397
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002398 cp = (char *)args;
2399 serNum = strtol(cp, &cp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400
2401 /* Get the typenr specific for this buffer and convert it to
2402 * the global typenumber, as used for the sign name. */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002403 localTypeNum = strtol(cp, &cp, 10);
2404 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 typeNum = mapsigntype(buf, localTypeNum);
2406
2407 pos = get_off_or_lnum(buf->bufp, &args);
2408
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002409 cp = (char *)args;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002410 ignored = (int)strtol(cp, &cp, 10);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002411 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412# ifdef NBDEBUG
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002413 if (ignored != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002415 nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 }
2417# endif
2418 if (serNum >= GUARDEDOFFSET)
2419 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002420 nbdebug((" too many annotations! ignoring...\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 return FAIL;
2422 }
2423 if (pos)
2424 {
Bram Moolenaarec906222009-02-21 21:14:00 +00002425 coloncmd(":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 serNum, pos->lnum, typeNum, buf->bufp->b_fnum);
2427 if (typeNum == curPCtype)
2428 coloncmd(":sign jump %d buffer=%d", serNum,
2429 buf->bufp->b_fnum);
2430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431#endif
2432/* =====================================================================*/
2433 }
2434 else if (streq((char *)cmd, "removeAnno"))
2435 {
2436#ifdef FEAT_SIGNS
2437 int serNum;
2438
2439 if (buf == NULL || buf->bufp == NULL)
2440 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002441 nbdebug((" invalid buffer identifier in removeAnno\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 return FAIL;
2443 }
2444 doupdate = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002445 cp = (char *)args;
2446 serNum = strtol(cp, &cp, 10);
2447 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 coloncmd(":sign unplace %d buffer=%d",
2449 serNum, buf->bufp->b_fnum);
2450 redraw_buf_later(buf->bufp, NOT_VALID);
2451#endif
2452/* =====================================================================*/
2453 }
2454 else if (streq((char *)cmd, "moveAnnoToFront"))
2455 {
2456#ifdef FEAT_SIGNS
Bram Moolenaarf2330482008-06-24 20:19:36 +00002457 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458#endif
2459/* =====================================================================*/
2460 }
2461 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard"))
2462 {
2463 int len;
2464 pos_T first;
2465 pos_T last;
2466 pos_T *pos;
2467 int un = (cmd[0] == 'u');
2468 static int guardId = GUARDEDOFFSET;
2469
2470 if (skip >= SKIP_STOP)
2471 {
2472 nbdebug((" Skipping %s command\n", (char *) cmd));
2473 return OK;
2474 }
2475
2476 nb_init_graphics();
2477
2478 if (buf == NULL || buf->bufp == NULL)
2479 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002480 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 return FAIL;
2482 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002483 nb_set_curbuf(buf->bufp);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002484 cp = (char *)args;
2485 off = strtol(cp, &cp, 10);
2486 len = strtol(cp, NULL, 10);
2487 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 pos = off2pos(buf->bufp, off);
2489 doupdate = 1;
2490 if (!pos)
2491 nbdebug((" no such start pos in %s, %ld\n", cmd, off));
2492 else
2493 {
2494 first = *pos;
2495 pos = off2pos(buf->bufp, off + len - 1);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002496 if (pos != NULL && pos->col == 0)
2497 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 /*
2499 * In Java Swing the offset is a position between 2
2500 * characters. If col == 0 then we really want the
2501 * previous line as the end.
2502 */
2503 pos = off2pos(buf->bufp, off + len - 2);
2504 }
2505 if (!pos)
2506 nbdebug((" no such end pos in %s, %ld\n",
2507 cmd, off + len - 1));
2508 else
2509 {
2510 long lnum;
2511 last = *pos;
2512 /* set highlight for region */
2513 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "",
2514 first.lnum, first.col,
2515 last.lnum, last.col));
2516#ifdef FEAT_SIGNS
2517 for (lnum = first.lnum; lnum <= last.lnum; lnum++)
2518 {
2519 if (un)
2520 {
2521 /* never used */
2522 }
2523 else
2524 {
2525 if (buf_findsigntype_id(buf->bufp, lnum,
2526 GUARDED) == 0)
2527 {
2528 coloncmd(
Bram Moolenaarec906222009-02-21 21:14:00 +00002529 ":sign place %d line=%ld name=%d buffer=%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 guardId++, lnum, GUARDED,
2531 buf->bufp->b_fnum);
2532 }
2533 }
2534 }
2535#endif
2536 redraw_buf_later(buf->bufp, NOT_VALID);
2537 }
2538 }
2539/* =====================================================================*/
2540 }
2541 else if (streq((char *)cmd, "startAtomic"))
2542 {
2543 inAtomic = 1;
2544/* =====================================================================*/
2545 }
2546 else if (streq((char *)cmd, "endAtomic"))
2547 {
2548 inAtomic = 0;
2549 if (needupdate)
2550 {
2551 doupdate = 1;
2552 needupdate = 0;
2553 }
2554/* =====================================================================*/
2555 }
2556 else if (streq((char *)cmd, "save"))
2557 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002558 /*
2559 * NOTE - This command is obsolete wrt NetBeans. Its left in
2560 * only for historical reasons.
2561 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 if (buf == NULL || buf->bufp == NULL)
2563 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002564 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 return FAIL;
2566 }
2567
2568 /* the following is taken from ex_cmds.c (do_wqall function) */
2569 if (bufIsChanged(buf->bufp))
2570 {
2571 /* Only write if the buffer can be written. */
2572 if (p_write
2573 && !buf->bufp->b_p_ro
2574 && buf->bufp->b_ffname != NULL
2575#ifdef FEAT_QUICKFIX
2576 && !bt_dontwrite(buf->bufp)
2577#endif
2578 )
2579 {
2580 buf_write_all(buf->bufp, FALSE);
2581#ifdef FEAT_AUTOCMD
2582 /* an autocommand may have deleted the buffer */
2583 if (!buf_valid(buf->bufp))
2584 buf->bufp = NULL;
2585#endif
2586 }
2587 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002588 else
2589 {
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002590 nbdebug((" Buffer has no changes!\n"));
Bram Moolenaarf2330482008-06-24 20:19:36 +00002591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592/* =====================================================================*/
2593 }
2594 else if (streq((char *)cmd, "netbeansBuffer"))
2595 {
2596 if (buf == NULL || buf->bufp == NULL)
2597 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002598 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 return FAIL;
2600 }
2601 if (*args == 'T')
2602 {
2603 buf->bufp->b_netbeans_file = TRUE;
2604 buf->bufp->b_was_netbeans_file = TRUE;
2605 }
2606 else
2607 buf->bufp->b_netbeans_file = FALSE;
2608/* =====================================================================*/
2609 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002610 else if (streq((char *)cmd, "specialKeys"))
2611 {
2612 special_keys(args);
2613/* =====================================================================*/
2614 }
2615 else if (streq((char *)cmd, "actionMenuItem"))
2616 {
2617 /* not used yet */
2618/* =====================================================================*/
2619 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 else if (streq((char *)cmd, "version"))
2621 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002622 /* not used yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002624 else
2625 {
2626 nbdebug(("Unrecognised command: %s\n", cmd));
2627 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 /*
2629 * Unrecognized command is ignored.
2630 */
2631 }
2632 if (inAtomic && doupdate)
2633 {
2634 needupdate = 1;
2635 doupdate = 0;
2636 }
2637
Bram Moolenaar009b2592004-10-24 19:18:58 +00002638 /*
2639 * Is this needed? I moved the netbeans_Xt_connect() later during startup
2640 * and it may no longer be necessary. If its not needed then needupdate
2641 * and doupdate can also be removed.
2642 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 if (buf != NULL && buf->initDone && doupdate)
2644 {
2645 update_screen(NOT_VALID);
2646 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02002647 cursor_on();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 out_flush();
Bram Moolenaar67c53842010-05-22 18:28:27 +02002649#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02002650 if (gui.in_use)
2651 {
2652 gui_update_cursor(TRUE, FALSE);
2653 gui_mch_flush();
2654 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02002655#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 /* Quit a hit-return or more prompt. */
2657 if (State == HITRETURN || State == ASKMORE)
2658 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659#ifdef FEAT_GUI_GTK
Bram Moolenaard54a6882010-08-09 22:49:00 +02002660 if (gui.in_use && gtk_main_level() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 gtk_main_quit();
2662#endif
2663 }
2664 }
2665
2666 return retval;
2667}
2668
2669
2670/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002671 * If "buf" is not the current buffer try changing to a window that edits this
2672 * buffer. If there is no such window then close the current buffer and set
2673 * the current buffer as "buf".
2674 */
2675 static void
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00002676nb_set_curbuf(buf_T *buf)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002677{
2678 if (curbuf != buf && buf_jump_open_win(buf) == NULL)
2679 set_curbuf(buf, DOBUF_GOTO);
2680}
2681
2682/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 * Process a vim colon command.
2684 */
2685 static void
2686coloncmd(char *cmd, ...)
2687{
2688 char buf[1024];
2689 va_list ap;
2690
2691 va_start(ap, cmd);
Bram Moolenaar0dc79e82009-06-24 14:50:12 +00002692 vim_vsnprintf(buf, sizeof(buf), cmd, ap, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 va_end(ap);
2694
2695 nbdebug((" COLONCMD %s\n", buf));
2696
2697/* ALT_INPUT_LOCK_ON; */
2698 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED);
2699/* ALT_INPUT_LOCK_OFF; */
2700
2701 setcursor(); /* restore the cursor position */
2702 out_flush(); /* make sure output has been written */
2703
Bram Moolenaar67c53842010-05-22 18:28:27 +02002704#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02002705 if (gui.in_use)
2706 {
2707 gui_update_cursor(TRUE, FALSE);
2708 gui_mch_flush();
2709 }
Bram Moolenaar67c53842010-05-22 18:28:27 +02002710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711}
2712
2713
2714/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002715 * Parse the specialKeys argument and issue the appropriate map commands.
2716 */
2717 static void
2718special_keys(char_u *args)
2719{
2720 char *save_str = nb_unquote(args, NULL);
2721 char *tok = strtok(save_str, " ");
2722 char *sep;
2723 char keybuf[64];
2724 char cmdbuf[256];
2725
2726 while (tok != NULL)
2727 {
2728 int i = 0;
2729
2730 if ((sep = strchr(tok, '-')) != NULL)
2731 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002732 *sep = NUL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002733 while (*tok)
2734 {
2735 switch (*tok)
2736 {
2737 case 'A':
2738 case 'M':
2739 case 'C':
2740 case 'S':
2741 keybuf[i++] = *tok;
2742 keybuf[i++] = '-';
2743 break;
2744 }
2745 tok++;
2746 }
2747 tok++;
2748 }
2749
2750 strcpy(&keybuf[i], tok);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002751 vim_snprintf(cmdbuf, sizeof(cmdbuf),
2752 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002753 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE);
2754 tok = strtok(NULL, " ");
2755 }
2756 vim_free(save_str);
2757}
2758
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002759 void
2760ex_nbclose(eap)
2761 exarg_T *eap UNUSED;
2762{
2763 netbeans_close();
2764}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002765
2766 void
2767ex_nbkey(eap)
2768 exarg_T *eap;
2769{
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002770 (void)netbeans_keystring(eap->arg);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002771}
2772
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002773 void
2774ex_nbstart(eap)
2775 exarg_T *eap;
2776{
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002777#ifdef FEAT_GUI
2778# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002779 && !defined(FEAT_GUI_W32)
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002780 if (gui.in_use)
2781 {
Bram Moolenaar7ad7d012010-11-16 15:49:02 +01002782 EMSG(_("E838: netbeans is not supported with this GUI"));
2783 return;
Bram Moolenaarc2a406b2010-09-30 21:03:26 +02002784 }
2785# endif
2786#endif
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002787 netbeans_open((char *)eap->arg, FALSE);
2788}
Bram Moolenaar009b2592004-10-24 19:18:58 +00002789
2790/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2792 */
2793 static void
2794nb_init_graphics(void)
2795{
2796 static int did_init = FALSE;
2797
2798 if (!did_init)
2799 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002800 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black"
2801 " ctermbg=LightCyan ctermfg=Black");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 coloncmd(":sign define %d linehl=NBGuarded", GUARDED);
2803
2804 did_init = TRUE;
2805 }
2806}
2807
2808/*
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01002809 * Convert key to netbeans name. This uses the global "mod_mask".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 */
2811 static void
2812netbeans_keyname(int key, char *buf)
2813{
2814 char *name = 0;
2815 char namebuf[2];
2816 int ctrl = 0;
2817 int shift = 0;
2818 int alt = 0;
2819
2820 if (mod_mask & MOD_MASK_CTRL)
2821 ctrl = 1;
2822 if (mod_mask & MOD_MASK_SHIFT)
2823 shift = 1;
2824 if (mod_mask & MOD_MASK_ALT)
2825 alt = 1;
2826
2827
2828 switch (key)
2829 {
2830 case K_F1: name = "F1"; break;
2831 case K_S_F1: name = "F1"; shift = 1; break;
2832 case K_F2: name = "F2"; break;
2833 case K_S_F2: name = "F2"; shift = 1; break;
2834 case K_F3: name = "F3"; break;
2835 case K_S_F3: name = "F3"; shift = 1; break;
2836 case K_F4: name = "F4"; break;
2837 case K_S_F4: name = "F4"; shift = 1; break;
2838 case K_F5: name = "F5"; break;
2839 case K_S_F5: name = "F5"; shift = 1; break;
2840 case K_F6: name = "F6"; break;
2841 case K_S_F6: name = "F6"; shift = 1; break;
2842 case K_F7: name = "F7"; break;
2843 case K_S_F7: name = "F7"; shift = 1; break;
2844 case K_F8: name = "F8"; break;
2845 case K_S_F8: name = "F8"; shift = 1; break;
2846 case K_F9: name = "F9"; break;
2847 case K_S_F9: name = "F9"; shift = 1; break;
2848 case K_F10: name = "F10"; break;
2849 case K_S_F10: name = "F10"; shift = 1; break;
2850 case K_F11: name = "F11"; break;
2851 case K_S_F11: name = "F11"; shift = 1; break;
2852 case K_F12: name = "F12"; break;
2853 case K_S_F12: name = "F12"; shift = 1; break;
2854 default:
2855 if (key >= ' ' && key <= '~')
2856 {
2857 /* Allow ASCII characters. */
2858 name = namebuf;
2859 namebuf[0] = key;
2860 namebuf[1] = NUL;
2861 }
2862 else
2863 name = "X";
2864 break;
2865 }
2866
2867 buf[0] = '\0';
2868 if (ctrl)
2869 strcat(buf, "C");
2870 if (shift)
2871 strcat(buf, "S");
2872 if (alt)
2873 strcat(buf, "M"); /* META */
2874 if (ctrl || shift || alt)
2875 strcat(buf, "-");
2876 strcat(buf, name);
2877}
2878
Bram Moolenaar67c53842010-05-22 18:28:27 +02002879#if defined(FEAT_BEVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880/*
2881 * Function to be called for balloon evaluation. Grabs the text under the
2882 * cursor and sends it to the debugger for evaluation. The debugger should
2883 * respond with a showBalloon command when there is a useful result.
2884 */
Bram Moolenaard62bec82005-03-07 22:56:57 +00002885 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886netbeans_beval_cb(
2887 BalloonEval *beval,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002888 int state UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889{
Bram Moolenaard62bec82005-03-07 22:56:57 +00002890 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 char_u *text;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002892 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 int col;
2894 char buf[MAXPATHL * 2 + 25];
2895 char_u *p;
2896
2897 /* Don't do anything when 'ballooneval' is off, messages scrolled the
2898 * windows up or we have no connection. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002899 if (!p_beval || msg_scrolled > 0 || !NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 return;
2901
Bram Moolenaard62bec82005-03-07 22:56:57 +00002902 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 {
2904 /* Send debugger request. Only when the text is of reasonable
2905 * length. */
2906 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL)
2907 {
2908 p = nb_quote(text);
2909 if (p != NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002910 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002911 vim_snprintf(buf, sizeof(buf),
Bram Moolenaar89d40322006-08-29 15:30:07 +00002912 "0:balloonText=%d \"%s\"\n", r_cmdno, p);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002913 vim_free(p);
2914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 nbdebug(("EVT: %s", buf));
2916 nb_send(buf, "netbeans_beval_cb");
2917 }
2918 vim_free(text);
2919 }
2920}
2921#endif
2922
2923/*
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002924 * Return TRUE when the netbeans connection is closed.
2925 */
2926 int
2927netbeans_active(void)
2928{
2929 return NETBEANS_OPEN;
2930}
2931
2932/*
Bram Moolenaar67c53842010-05-22 18:28:27 +02002933 * Return netbeans file descriptor.
2934 */
2935 int
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002936netbeans_filedesc(void)
Bram Moolenaar67c53842010-05-22 18:28:27 +02002937{
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002938 return nbsock;
Bram Moolenaar67c53842010-05-22 18:28:27 +02002939}
2940
2941#if defined(FEAT_GUI) || defined(PROTO)
2942/*
2943 * Register our file descriptor with the gui event handling system.
2944 */
2945 void
2946netbeans_gui_register(void)
2947{
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002948 if (!NB_HAS_GUI || !NETBEANS_OPEN)
Bram Moolenaar67c53842010-05-22 18:28:27 +02002949 return;
2950
Bram Moolenaar173c9852010-09-29 17:27:01 +02002951# ifdef FEAT_GUI_X11
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002952 /* tell notifier we are interested in being called
2953 * when there is input on the editor connection socket
2954 */
2955 if (inputHandler == (XtInputId)NULL)
2956 inputHandler = XtAppAddInput((XtAppContext)app_context, nbsock,
2957 (XtPointer)(XtInputReadMask + XtInputExceptMask),
2958 messageFromNetbeans, NULL);
Bram Moolenaar67c53842010-05-22 18:28:27 +02002959# else
2960# ifdef FEAT_GUI_GTK
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002961 /*
2962 * Tell gdk we are interested in being called when there
2963 * is input on the editor connection socket
2964 */
2965 if (inputHandler == 0)
2966 inputHandler = gdk_input_add((gint)nbsock, (GdkInputCondition)
2967 ((int)GDK_INPUT_READ + (int)GDK_INPUT_EXCEPTION),
2968 messageFromNetbeans, NULL);
Bram Moolenaar67c53842010-05-22 18:28:27 +02002969# else
2970# ifdef FEAT_GUI_W32
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002971 /*
2972 * Tell Windows we are interested in receiving message when there
2973 * is input on the editor connection socket
2974 */
2975 if (inputHandler == -1)
2976 inputHandler = WSAAsyncSelect(nbsock, s_hwnd, WM_NETBEANS, FD_READ);
Bram Moolenaar67c53842010-05-22 18:28:27 +02002977# endif
2978# endif
2979# endif
Bram Moolenaar67c53842010-05-22 18:28:27 +02002980
2981# ifdef FEAT_BEVAL
2982 bevalServers |= BEVAL_NETBEANS;
2983# endif
2984}
2985#endif
2986
2987/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 * Tell netbeans that the window was opened, ready for commands.
2989 */
2990 void
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002991netbeans_open(char *params, int doabort)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992{
2993 char *cmd = "0:startupDone=0\n";
2994
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002995 if (NETBEANS_OPEN)
2996 {
2997 EMSG(_("E511: netbeans already connected"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 return;
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002999 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003001 if (netbeans_connect(params, doabort) != OK)
Bram Moolenaar67c53842010-05-22 18:28:27 +02003002 return;
3003#ifdef FEAT_GUI
3004 netbeans_gui_register();
Bram Moolenaard62bec82005-03-07 22:56:57 +00003005#endif
3006
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 nbdebug(("EVT: %s", cmd));
3008 nb_send(cmd, "netbeans_startup_done");
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003009
3010 /* update the screen after having added the gutter */
3011 changed_window_setting();
3012 update_screen(CLEAR);
3013 setcursor();
Bram Moolenaar96bcc5e2011-04-01 15:33:59 +02003014 cursor_on();
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003015 out_flush();
3016#ifdef FEAT_GUI
Bram Moolenaard54a6882010-08-09 22:49:00 +02003017 if (gui.in_use)
3018 {
3019 gui_update_cursor(TRUE, FALSE);
3020 gui_mch_flush();
3021 }
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003022#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023}
3024
Bram Moolenaar009b2592004-10-24 19:18:58 +00003025/*
3026 * Tell netbeans that we're exiting. This should be called right
3027 * before calling exit.
3028 */
3029 void
3030netbeans_send_disconnect()
3031{
3032 char buf[128];
3033
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003034 if (NETBEANS_OPEN)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003035 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00003036 sprintf(buf, "0:disconnect=%d\n", r_cmdno);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003037 nbdebug(("EVT: %s", buf));
3038 nb_send(buf, "netbeans_disconnect");
3039 }
3040}
3041
Bram Moolenaar173c9852010-09-29 17:27:01 +02003042#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_W32) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043/*
3044 * Tell netbeans that the window was moved or resized.
3045 */
3046 void
3047netbeans_frame_moved(int new_x, int new_y)
3048{
3049 char buf[128];
3050
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003051 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 return;
3053
3054 sprintf(buf, "0:geometry=%d %d %d %d %d\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00003055 r_cmdno, (int)Columns, (int)Rows, new_x, new_y);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003056 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 nb_send(buf, "netbeans_frame_moved");
3058}
3059#endif
3060
3061/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00003062 * Tell netbeans the user opened or activated a file.
3063 */
3064 void
3065netbeans_file_activated(buf_T *bufp)
3066{
3067 int bufno = nb_getbufno(bufp);
3068 nbbuf_T *bp = nb_get_buf(bufno);
3069 char buffer[2*MAXPATHL];
3070 char_u *q;
3071
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003072 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003073 return;
3074
3075 q = nb_quote(bufp->b_ffname);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003076 if (q == NULL || bp == NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003077 return;
3078
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003079 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00003080 bufno,
3081 bufno,
3082 (char *)q,
3083 "T", /* open in NetBeans */
3084 "F"); /* modified */
3085
3086 vim_free(q);
3087 nbdebug(("EVT: %s", buffer));
3088
3089 nb_send(buffer, "netbeans_file_opened");
3090}
3091
3092/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 * Tell netbeans the user opened a file.
3094 */
3095 void
Bram Moolenaar009b2592004-10-24 19:18:58 +00003096netbeans_file_opened(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097{
Bram Moolenaar009b2592004-10-24 19:18:58 +00003098 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 char buffer[2*MAXPATHL];
3100 char_u *q;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003101 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp));
3102 int bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003104 if (!NETBEANS_OPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 return;
3106
Bram Moolenaar009b2592004-10-24 19:18:58 +00003107 q = nb_quote(bufp->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 if (q == NULL)
3109 return;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003110 if (bp != NULL)
3111 bnum = bufno;
3112 else
3113 bnum = 0;
3114
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003115 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00003116 bnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 0,
3118 (char *)q,
3119 "T", /* open in NetBeans */
3120 "F"); /* modified */
3121
3122 vim_free(q);
3123 nbdebug(("EVT: %s", buffer));
3124
3125 nb_send(buffer, "netbeans_file_opened");
Bram Moolenaar009b2592004-10-24 19:18:58 +00003126 if (p_acd && vim_chdirfile(bufp->b_ffname) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 shorten_fnames(TRUE);
3128}
3129
3130/*
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00003131 * Tell netbeans that a file was deleted or wiped out.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 */
3133 void
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00003134netbeans_file_killed(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135{
3136 int bufno = nb_getbufno(bufp);
3137 nbbuf_T *nbbuf = nb_get_buf(bufno);
3138 char buffer[2*MAXPATHL];
3139
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003140 if (!NETBEANS_OPEN || bufno == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 return;
3142
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00003143 nbdebug(("netbeans_file_killed:\n"));
3144 nbdebug((" Killing bufno: %d", bufno));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145
Bram Moolenaar89d40322006-08-29 15:30:07 +00003146 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147
3148 nbdebug(("EVT: %s", buffer));
3149
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00003150 nb_send(buffer, "netbeans_file_killed");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151
3152 if (nbbuf != NULL)
3153 nbbuf->bufp = NULL;
3154}
3155
3156/*
3157 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
3158 * Return NULL if there is no such buffer or changes are not to be reported.
3159 * Otherwise store the buffer number in "*bufnop".
3160 */
3161 static nbbuf_T *
3162nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop)
3163{
3164 int bufno;
3165 nbbuf_T *nbbuf;
3166
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003167 if (!NETBEANS_OPEN || !netbeansFireChanges)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 return NULL; /* changes are not reported at all */
3169
3170 bufno = nb_getbufno(bufp);
3171 if (bufno <= 0)
3172 return NULL; /* file is not known to NetBeans */
3173
3174 nbbuf = nb_get_buf(bufno);
3175 if (nbbuf != NULL && !nbbuf->fireChanges)
3176 return NULL; /* changes in this buffer are not reported */
3177
3178 *bufnop = bufno;
3179 return nbbuf;
3180}
3181
3182/*
3183 * Tell netbeans the user inserted some text.
3184 */
3185 void
3186netbeans_inserted(
3187 buf_T *bufp,
3188 linenr_T linenr,
3189 colnr_T col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 char_u *txt,
3191 int newlen)
3192{
3193 char_u *buf;
3194 int bufno;
3195 nbbuf_T *nbbuf;
3196 pos_T pos;
3197 long off;
3198 char_u *p;
3199 char_u *newtxt;
3200
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003201 if (!NETBEANS_OPEN)
3202 return;
3203
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3205 if (nbbuf == NULL)
3206 return;
3207
Bram Moolenaar009b2592004-10-24 19:18:58 +00003208 /* Don't mark as modified for initial read */
3209 if (nbbuf->insertDone)
3210 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211
3212 pos.lnum = linenr;
3213 pos.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 off = pos2off(bufp, &pos);
3215
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 /* send the "insert" EVT */
3217 newtxt = alloc(newlen + 1);
Bram Moolenaarb6356332005-07-18 21:40:44 +00003218 vim_strncpy(newtxt, txt, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 p = nb_quote(newtxt);
3220 if (p != NULL)
3221 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00003222 buf = alloc(128 + 2*newlen);
Bram Moolenaar89d40322006-08-29 15:30:07 +00003223 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n",
3224 bufno, r_cmdno, off, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 nbdebug(("EVT: %s", buf));
3226 nb_send((char *)buf, "netbeans_inserted");
Bram Moolenaar009b2592004-10-24 19:18:58 +00003227 vim_free(p);
3228 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 vim_free(newtxt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231}
3232
3233/*
3234 * Tell netbeans some bytes have been removed.
3235 */
3236 void
3237netbeans_removed(
3238 buf_T *bufp,
3239 linenr_T linenr,
3240 colnr_T col,
3241 long len)
3242{
3243 char_u buf[128];
3244 int bufno;
3245 nbbuf_T *nbbuf;
3246 pos_T pos;
3247 long off;
3248
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003249 if (!NETBEANS_OPEN)
3250 return;
3251
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3253 if (nbbuf == NULL)
3254 return;
3255
3256 if (len < 0)
3257 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00003258 nbdebug(("Negative len %ld in netbeans_removed()!\n", len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 return;
3260 }
3261
3262 nbbuf->modified = 1;
3263
3264 pos.lnum = linenr;
3265 pos.col = col;
3266
3267 off = pos2off(bufp, &pos);
3268
Bram Moolenaar89d40322006-08-29 15:30:07 +00003269 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 nbdebug(("EVT: %s", buf));
3271 nb_send((char *)buf, "netbeans_removed");
3272}
3273
3274/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003275 * Send netbeans an unmodified command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003278netbeans_unmodified(buf_T *bufp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003279{
Bram Moolenaar09092152010-08-08 16:38:42 +02003280 /* This is a no-op, because NetBeans considers a buffer modified
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 * even when all changes have been undone. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282}
3283
3284/*
3285 * Send a button release event back to netbeans. Its up to netbeans
3286 * to decide what to do (if anything) with this event.
3287 */
3288 void
3289netbeans_button_release(int button)
3290{
3291 char buf[128];
3292 int bufno;
3293
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003294 if (!NETBEANS_OPEN)
3295 return;
3296
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 bufno = nb_getbufno(curbuf);
3298
3299 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf)
3300 {
Bram Moolenaar64486672010-05-16 15:46:46 +02003301 int col = mouse_col - W_WINCOL(curwin)
Bram Moolenaar67c53842010-05-22 18:28:27 +02003302 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303 long off = pos2off(curbuf, &curwin->w_cursor);
3304
3305 /* sync the cursor position */
Bram Moolenaar89d40322006-08-29 15:30:07 +00003306 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 nbdebug(("EVT: %s", buf));
3308 nb_send(buf, "netbeans_button_release[newDotAndMark]");
3309
Bram Moolenaar89d40322006-08-29 15:30:07 +00003310 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 button, (long)curwin->w_cursor.lnum, col);
3312 nbdebug(("EVT: %s", buf));
3313 nb_send(buf, "netbeans_button_release");
3314 }
3315}
3316
3317
3318/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00003319 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00003320 * kind of function key press. This function operates on a key code.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01003321 * Return TRUE when the key was sent, FALSE when the command has been
3322 * postponed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01003324 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325netbeans_keycommand(int key)
3326{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 char keyName[60];
Bram Moolenaar009b2592004-10-24 19:18:58 +00003328
3329 netbeans_keyname(key, keyName);
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01003330 return netbeans_keystring((char_u *)keyName);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003331}
3332
3333
3334/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00003335 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00003336 * kind of function key press. This function operates on a key string.
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01003337 * Return TRUE when the key was sent, FALSE when the command has been
3338 * postponed.
Bram Moolenaar009b2592004-10-24 19:18:58 +00003339 */
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01003340 static int
3341netbeans_keystring(char_u *keyName)
Bram Moolenaar009b2592004-10-24 19:18:58 +00003342{
3343 char buf[2*MAXPATHL];
3344 int bufno = nb_getbufno(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 long off;
3346 char_u *q;
3347
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003348 if (!NETBEANS_OPEN)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01003349 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 if (bufno == -1)
3352 {
3353 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
3354 q = curbuf->b_ffname == NULL ? (char_u *)""
3355 : nb_quote(curbuf->b_ffname);
3356 if (q == NULL)
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01003357 return TRUE;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003358 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 q,
3360 "T", /* open in NetBeans */
3361 "F"); /* modified */
3362 if (curbuf->b_ffname != NULL)
3363 vim_free(q);
3364 nbdebug(("EVT: %s", buf));
3365 nb_send(buf, "netbeans_keycommand");
3366
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01003367 postpone_keycommand(keyName);
3368 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 }
3370
3371 /* sync the cursor position */
3372 off = pos2off(curbuf, &curwin->w_cursor);
Bram Moolenaar89d40322006-08-29 15:30:07 +00003373 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 nbdebug(("EVT: %s", buf));
3375 nb_send(buf, "netbeans_keycommand");
3376
3377 /* To work on Win32 you must apply patch to ExtEditor module
3378 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
3379 * more synchronous
3380 */
3381
3382 /* now send keyCommand event */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003383 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00003384 bufno, r_cmdno, keyName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 nbdebug(("EVT: %s", buf));
3386 nb_send(buf, "netbeans_keycommand");
3387
3388 /* New: do both at once and include the lnum/col. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003389 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00003390 bufno, r_cmdno, keyName,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col);
3392 nbdebug(("EVT: %s", buf));
3393 nb_send(buf, "netbeans_keycommand");
Bram Moolenaar8065d7f2010-01-19 15:13:14 +01003394 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395}
3396
3397
3398/*
3399 * Send a save event to netbeans.
3400 */
3401 void
3402netbeans_save_buffer(buf_T *bufp)
3403{
3404 char_u buf[64];
3405 int bufno;
3406 nbbuf_T *nbbuf;
3407
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003408 if (!NETBEANS_OPEN)
3409 return;
3410
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3412 if (nbbuf == NULL)
3413 return;
3414
3415 nbbuf->modified = 0;
3416
Bram Moolenaar89d40322006-08-29 15:30:07 +00003417 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 nbdebug(("EVT: %s", buf));
3419 nb_send((char *)buf, "netbeans_save_buffer");
3420}
3421
3422
3423/*
3424 * Send remove command to netbeans (this command has been turned off).
3425 */
3426 void
3427netbeans_deleted_all_lines(buf_T *bufp)
3428{
3429 char_u buf[64];
3430 int bufno;
3431 nbbuf_T *nbbuf;
3432
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003433 if (!NETBEANS_OPEN)
3434 return;
3435
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3437 if (nbbuf == NULL)
3438 return;
3439
Bram Moolenaar009b2592004-10-24 19:18:58 +00003440 /* Don't mark as modified for initial read */
3441 if (nbbuf->insertDone)
3442 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443
Bram Moolenaar89d40322006-08-29 15:30:07 +00003444 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 nbdebug(("EVT(suppressed): %s", buf));
3446/* nb_send(buf, "netbeans_deleted_all_lines"); */
3447}
3448
3449
3450/*
3451 * See if the lines are guarded. The top and bot parameters are from
3452 * u_savecommon(), these are the line above the change and the line below the
3453 * change.
3454 */
3455 int
3456netbeans_is_guarded(linenr_T top, linenr_T bot)
3457{
3458 signlist_T *p;
3459 int lnum;
3460
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003461 if (!NETBEANS_OPEN)
3462 return FALSE;
3463
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3465 if (p->id >= GUARDEDOFFSET)
3466 for (lnum = top + 1; lnum < bot; lnum++)
3467 if (lnum == p->lnum)
3468 return TRUE;
3469
3470 return FALSE;
3471}
3472
Bram Moolenaar173c9852010-09-29 17:27:01 +02003473#if defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474/*
3475 * We have multiple signs to draw at the same location. Draw the
3476 * multi-sign indicator instead. This is the Motif version.
3477 */
3478 void
3479netbeans_draw_multisign_indicator(int row)
3480{
3481 int i;
3482 int y;
3483 int x;
3484
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003485 if (!NETBEANS_OPEN)
3486 return;
3487
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 x = 0;
3489 y = row * gui.char_height + 2;
3490
3491 for (i = 0; i < gui.char_height - 3; i++)
3492 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++);
3493
3494 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y);
3495 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3496 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++);
3497 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y);
3498 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3499 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++);
3500 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3501}
Bram Moolenaar173c9852010-09-29 17:27:01 +02003502#endif /* FEAT_GUI_X11 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503
Bram Moolenaar64404472010-06-26 06:24:45 +02003504#if defined(FEAT_GUI_GTK) && !defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505/*
3506 * We have multiple signs to draw at the same location. Draw the
3507 * multi-sign indicator instead. This is the GTK/Gnome version.
3508 */
3509 void
3510netbeans_draw_multisign_indicator(int row)
3511{
3512 int i;
3513 int y;
3514 int x;
3515 GdkDrawable *drawable = gui.drawarea->window;
3516
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003517 if (!NETBEANS_OPEN)
3518 return;
3519
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 x = 0;
3521 y = row * gui.char_height + 2;
3522
3523 for (i = 0; i < gui.char_height - 3; i++)
3524 gdk_draw_point(drawable, gui.text_gc, x+2, y++);
3525
3526 gdk_draw_point(drawable, gui.text_gc, x+0, y);
3527 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3528 gdk_draw_point(drawable, gui.text_gc, x+4, y++);
3529 gdk_draw_point(drawable, gui.text_gc, x+1, y);
3530 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3531 gdk_draw_point(drawable, gui.text_gc, x+3, y++);
3532 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3533}
3534#endif /* FEAT_GUI_GTK */
3535
3536/*
3537 * If the mouse is clicked in the gutter of a line with multiple
3538 * annotations, cycle through the set of signs.
3539 */
3540 void
3541netbeans_gutter_click(linenr_T lnum)
3542{
3543 signlist_T *p;
3544
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003545 if (!NETBEANS_OPEN)
3546 return;
3547
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3549 {
3550 if (p->lnum == lnum && p->next && p->next->lnum == lnum)
3551 {
3552 signlist_T *tail;
3553
3554 /* remove "p" from list, reinsert it at the tail of the sublist */
3555 if (p->prev)
3556 p->prev->next = p->next;
3557 else
3558 curbuf->b_signlist = p->next;
3559 p->next->prev = p->prev;
3560 /* now find end of sublist and insert p */
3561 for (tail = p->next;
3562 tail->next && tail->next->lnum == lnum
3563 && tail->next->id < GUARDEDOFFSET;
3564 tail = tail->next)
3565 ;
3566 /* tail now points to last entry with same lnum (except
3567 * that "guarded" annotations are always last) */
3568 p->next = tail->next;
3569 if (tail->next)
3570 tail->next->prev = p;
3571 p->prev = tail;
3572 tail->next = p;
3573 update_debug_sign(curbuf, lnum);
3574 break;
3575 }
3576 }
3577}
3578
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579/*
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003580 * Add a sign of the requested type at the requested location.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 *
3582 * Reverse engineering:
3583 * Apparently an annotation is defined the first time it is used in a buffer.
3584 * When the same annotation is used in two buffers, the second time we do not
3585 * need to define a new sign name but reuse the existing one. But since the
3586 * ID number used in the second buffer starts counting at one again, a mapping
3587 * is made from the ID specifically for the buffer to the global sign name
3588 * (which is a number).
3589 *
3590 * globalsignmap[] stores the signs that have been defined globally.
3591 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3592 * globalsignmap[].
3593 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594 static void
3595addsigntype(
3596 nbbuf_T *buf,
3597 int typeNum,
3598 char_u *typeName,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003599 char_u *tooltip UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 char_u *glyphFile,
Bram Moolenaar67c53842010-05-22 18:28:27 +02003601 char_u *fg,
3602 char_u *bg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 int i, j;
Bram Moolenaar67c53842010-05-22 18:28:27 +02003605 int use_fg = (*fg && STRCMP(fg, "none") != 0);
3606 int use_bg = (*bg && STRCMP(bg, "none") != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607
3608 for (i = 0; i < globalsignmapused; i++)
3609 if (STRCMP(typeName, globalsignmap[i]) == 0)
3610 break;
3611
3612 if (i == globalsignmapused) /* not found; add it to global map */
3613 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003614 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 typeNum, typeName, tooltip, glyphFile, fg, bg));
3616 if (use_fg || use_bg)
3617 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003618 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3619 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1];
3620 char *ptr;
3621 int value;
3622
3623 value = strtol((char *)fg, &ptr, 10);
3624 if (ptr != (char *)fg)
3625 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF);
3626 else
3627 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg);
3628
3629 value = strtol((char *)bg, &ptr, 10);
3630 if (ptr != (char *)bg)
3631 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF);
3632 else
3633 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634
3635 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "",
3636 (use_bg) ? bgbuf : "");
3637 if (*glyphFile == NUL)
3638 /* no glyph, line highlighting only */
3639 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName);
3640 else if (vim_strsize(glyphFile) <= 2)
3641 /* one- or two-character glyph name, use as text glyph with
3642 * texthl */
3643 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1,
3644 glyphFile, typeName);
3645 else
3646 /* glyph, line highlighting */
3647 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1,
3648 glyphFile, typeName);
3649 }
3650 else
3651 /* glyph, no line highlighting */
3652 coloncmd(":sign define %d icon=%s", i + 1, glyphFile);
3653
3654 if (STRCMP(typeName,"CurrentPC") == 0)
3655 curPCtype = typeNum;
3656
3657 if (globalsignmapused == globalsignmaplen)
3658 {
3659 if (globalsignmaplen == 0) /* first allocation */
3660 {
3661 globalsignmaplen = 20;
3662 globalsignmap = (char **)alloc_clear(globalsignmaplen*sizeof(char *));
3663 }
3664 else /* grow it */
3665 {
3666 int incr;
3667 int oldlen = globalsignmaplen;
3668
3669 globalsignmaplen *= 2;
3670 incr = globalsignmaplen - oldlen;
3671 globalsignmap = (char **)vim_realloc(globalsignmap,
3672 globalsignmaplen * sizeof(char *));
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003673 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 }
3675 }
3676
3677 globalsignmap[i] = (char *)typeName;
3678 globalsignmapused = i + 1;
3679 }
3680
3681 /* check local map; should *not* be found! */
3682 for (j = 0; j < buf->signmapused; j++)
3683 if (buf->signmap[j] == i + 1)
3684 return;
3685
3686 /* add to local map */
3687 if (buf->signmapused == buf->signmaplen)
3688 {
3689 if (buf->signmaplen == 0) /* first allocation */
3690 {
3691 buf->signmaplen = 5;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003692 buf->signmap = (int *)alloc_clear(buf->signmaplen * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 }
3694 else /* grow it */
3695 {
3696 int incr;
3697 int oldlen = buf->signmaplen;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003698
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 buf->signmaplen *= 2;
3700 incr = buf->signmaplen - oldlen;
3701 buf->signmap = (int *)vim_realloc(buf->signmap,
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003702 buf->signmaplen * sizeof(int));
3703 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 }
3705 }
3706
3707 buf->signmap[buf->signmapused++] = i + 1;
3708
3709}
3710
3711
3712/*
3713 * See if we have the requested sign type in the buffer.
3714 */
3715 static int
3716mapsigntype(nbbuf_T *buf, int localsigntype)
3717{
3718 if (--localsigntype >= 0 && localsigntype < buf->signmapused)
3719 return buf->signmap[localsigntype];
3720
3721 return 0;
3722}
3723
3724
3725/*
3726 * Compute length of buffer, don't print anything.
3727 */
3728 static long
3729get_buf_size(buf_T *bufp)
3730{
3731 linenr_T lnum;
3732 long char_count = 0;
3733 int eol_size;
3734 long last_check = 100000L;
3735
3736 if (bufp->b_ml.ml_flags & ML_EMPTY)
3737 return 0;
3738 else
3739 {
3740 if (get_fileformat(bufp) == EOL_DOS)
3741 eol_size = 2;
3742 else
3743 eol_size = 1;
3744 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum)
3745 {
Bram Moolenaarfa68b0f2009-09-11 12:19:51 +00003746 char_count += (long)STRLEN(ml_get_buf(bufp, lnum, FALSE))
3747 + eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 /* Check for a CTRL-C every 100000 characters */
3749 if (char_count > last_check)
3750 {
3751 ui_breakcheck();
3752 if (got_int)
3753 return char_count;
3754 last_check = char_count + 100000L;
3755 }
3756 }
3757 /* Correction for when last line doesn't have an EOL. */
3758 if (!bufp->b_p_eol && bufp->b_p_bin)
3759 char_count -= eol_size;
3760 }
3761
3762 return char_count;
3763}
3764
3765/*
3766 * Convert character offset to lnum,col
3767 */
3768 static pos_T *
3769off2pos(buf_T *buf, long offset)
3770{
3771 linenr_T lnum;
3772 static pos_T pos;
3773
3774 pos.lnum = 0;
3775 pos.col = 0;
3776#ifdef FEAT_VIRTUALEDIT
3777 pos.coladd = 0;
3778#endif
3779
3780 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3781 {
3782 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0)
3783 return NULL;
3784 pos.lnum = lnum;
3785 pos.col = offset;
3786 }
3787
3788 return &pos;
3789}
3790
3791/*
3792 * Convert an argument in the form "1234" to an offset and compute the
3793 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3794 * lnum/col.
3795 * "argp" is advanced to after the argument.
3796 * Return a pointer to the position, NULL if something is wrong.
3797 */
3798 static pos_T *
3799get_off_or_lnum(buf_T *buf, char_u **argp)
3800{
3801 static pos_T mypos;
3802 long off;
3803
3804 off = strtol((char *)*argp, (char **)argp, 10);
3805 if (**argp == '/')
3806 {
3807 mypos.lnum = (linenr_T)off;
3808 ++*argp;
3809 mypos.col = strtol((char *)*argp, (char **)argp, 10);
3810#ifdef FEAT_VIRTUALEDIT
3811 mypos.coladd = 0;
3812#endif
3813 return &mypos;
3814 }
3815 return off2pos(buf, off);
3816}
3817
3818
3819/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003820 * Convert (lnum,col) to byte offset in the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 */
3822 static long
3823pos2off(buf_T *buf, pos_T *pos)
3824{
3825 long offset = 0;
3826
3827 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3828 {
3829 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0)
3830 return 0;
3831 offset += pos->col;
3832 }
3833
3834 return offset;
3835}
3836
3837
Bram Moolenaar009b2592004-10-24 19:18:58 +00003838/*
3839 * This message is printed after NetBeans opens a new file. Its
3840 * similar to the message readfile() uses, but since NetBeans
3841 * doesn't normally call readfile, we do our own.
3842 */
3843 static void
3844print_read_msg(buf)
3845 nbbuf_T *buf;
3846{
3847 int lnum = buf->bufp->b_ml.ml_line_count;
Bram Moolenaar914703b2010-05-31 21:59:46 +02003848 off_t nchars = buf->bufp->b_orig_size;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003849 char_u c;
3850
3851 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
3852 c = FALSE;
3853
3854 if (buf->bufp->b_p_ro)
3855 {
3856 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
3857 c = TRUE;
3858 }
3859 if (!buf->bufp->b_start_eol)
3860 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003861 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]")
3862 : _("[Incomplete last line]"));
Bram Moolenaar009b2592004-10-24 19:18:58 +00003863 c = TRUE;
3864 }
3865 msg_add_lines(c, (long)lnum, nchars);
3866
3867 /* Now display it */
3868 vim_free(keep_msg);
3869 keep_msg = NULL;
3870 msg_scrolled_ign = TRUE;
3871 msg_trunc_attr(IObuff, FALSE, 0);
3872 msg_scrolled_ign = FALSE;
3873}
3874
3875
3876/*
Bram Moolenaar67c53842010-05-22 18:28:27 +02003877 * Print a message after NetBeans writes the file. This message should be
3878 * identical to the standard message a non-netbeans user would see when
3879 * writing a file.
Bram Moolenaar009b2592004-10-24 19:18:58 +00003880 */
3881 static void
3882print_save_msg(buf, nchars)
3883 nbbuf_T *buf;
Bram Moolenaar914703b2010-05-31 21:59:46 +02003884 off_t nchars;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003885{
3886 char_u c;
3887 char_u *p;
3888
3889 if (nchars >= 0)
3890 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02003891 /* put fname in IObuff with quotes */
3892 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003893 c = FALSE;
3894
3895 msg_add_lines(c, buf->bufp->b_ml.ml_line_count,
Bram Moolenaar914703b2010-05-31 21:59:46 +02003896 buf->bufp->b_orig_size);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003897
3898 vim_free(keep_msg);
3899 keep_msg = NULL;
3900 msg_scrolled_ign = TRUE;
3901 p = msg_trunc_attr(IObuff, FALSE, 0);
3902 if ((msg_scrolled && !need_wait_return) || !buf->initDone)
3903 {
3904 /* Need to repeat the message after redrawing when:
3905 * - When reading from stdin (the screen will be cleared next).
3906 * - When restart_edit is set (otherwise there will be a delay
3907 * before redrawing).
3908 * - When the screen was scrolled but there is no wait-return
3909 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003910 set_keep_msg(p, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003911 }
3912 msg_scrolled_ign = FALSE;
3913 /* add_to_input_buf((char_u *)"\f", 1); */
3914 }
3915 else
3916 {
3917 char_u ebuf[BUFSIZ];
3918
3919 STRCPY(ebuf, (char_u *)_("E505: "));
3920 STRCAT(ebuf, IObuff);
3921 STRCAT(ebuf, (char_u *)_("is read-only (add ! to override)"));
3922 STRCPY(IObuff, ebuf);
Bram Moolenaarf2330482008-06-24 20:19:36 +00003923 nbdebug((" %s\n", ebuf ));
Bram Moolenaar009b2592004-10-24 19:18:58 +00003924 emsg(IObuff);
3925 }
3926}
3927
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928#endif /* defined(FEAT_NETBEANS_INTG) */