blob: a06690c44bff2c129fd1e7604225fd44f75735b5 [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
Bram Moolenaarff064e12008-06-09 13:10:45 +000019#if defined(MSDOS) || defined(MSWIN)
20# include "vimio.h" /* for mch_open(), must be before vim.h */
21#endif
22
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#include "vim.h"
24
25#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
26
27/* Note: when making changes here also adjust configure.in. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000028# include <fcntl.h>
29#ifdef WIN32
30# ifdef DEBUG
31# include <tchar.h> /* for _T definition for TRACEn macros */
32# endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +000033# include "vimio.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +000034/* WinSock API is separated from C API, thus we can't use read(), write(),
35 * errno... */
36# define sock_errno WSAGetLastError()
37# define ECONNREFUSED WSAECONNREFUSED
38# ifdef EINTR
39# undef EINTR
40# endif
41# define EINTR WSAEINTR
42# define sock_write(sd, buf, len) send(sd, buf, len, 0)
43# define sock_read(sd, buf, len) recv(sd, buf, len, 0)
44# define sock_close(sd) closesocket(sd)
45# define sleep(t) Sleep(t*1000) /* WinAPI Sleep() accepts milliseconds */
46#else
47# include <netdb.h>
48# include <netinet/in.h>
49# include <sys/socket.h>
50# ifdef HAVE_LIBGEN_H
51# include <libgen.h>
52# endif
53# define sock_errno errno
54# define sock_write(sd, buf, len) write(sd, buf, len)
55# define sock_read(sd, buf, len) read(sd, buf, len)
56# define sock_close(sd) close(sd)
57#endif
58
59#include "version.h"
60
61#define INET_SOCKETS
62
63#define GUARDED 10000 /* typenr for "guarded" annotation */
64#define GUARDEDOFFSET 1000000 /* base for "guarded" sign id's */
65
66/* The first implementation (working only with Netbeans) returned "1.1". The
67 * protocol implemented here also supports A-A-P. */
Bram Moolenaarc65c4912006-11-14 17:29:46 +000068static char *ExtEdProtocolVersion = "2.4";
Bram Moolenaar071d4272004-06-13 20:20:40 +000069
70static long pos2off __ARGS((buf_T *, pos_T *));
71static pos_T *off2pos __ARGS((buf_T *, long));
72static pos_T *get_off_or_lnum __ARGS((buf_T *buf, char_u **argp));
73static long get_buf_size __ARGS((buf_T *));
Bram Moolenaar009b2592004-10-24 19:18:58 +000074static void netbeans_keystring __ARGS((int key, char *keystr));
75static void special_keys __ARGS((char_u *args));
Bram Moolenaar071d4272004-06-13 20:20:40 +000076
77static void netbeans_connect __ARGS((void));
78static int getConnInfo __ARGS((char *file, char **host, char **port, char **password));
79
80static void nb_init_graphics __ARGS((void));
81static void coloncmd __ARGS((char *cmd, ...));
Bram Moolenaar8b6144b2006-02-08 09:20:24 +000082static void nb_set_curbuf __ARGS((buf_T *buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000083#ifdef FEAT_GUI_MOTIF
84static void messageFromNetbeans __ARGS((XtPointer, int *, XtInputId *));
85#endif
86#ifdef FEAT_GUI_GTK
87static void messageFromNetbeans __ARGS((gpointer, gint, GdkInputCondition));
88#endif
89static void nb_parse_cmd __ARGS((char_u *));
90static int nb_do_cmd __ARGS((int, char_u *, int, int, char_u *));
91static void nb_send __ARGS((char *buf, char *fun));
Bram Moolenaar071d4272004-06-13 20:20:40 +000092
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000093#ifdef WIN64
94typedef __int64 NBSOCK;
95#else
96typedef int NBSOCK;
97#endif
98
99static NBSOCK sd = -1; /* socket fd for Netbeans connection */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#ifdef FEAT_GUI_MOTIF
101static XtInputId inputHandler; /* Cookie for input */
102#endif
103#ifdef FEAT_GUI_GTK
104static gint inputHandler; /* Cookie for input */
105#endif
106#ifdef FEAT_GUI_W32
107static int inputHandler = -1; /* simply ret.value of WSAAsyncSelect() */
108extern HWND s_hwnd; /* Gvim's Window handle */
109#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +0000110static int r_cmdno; /* current command number for reply */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111static int haveConnection = FALSE; /* socket is connected and
112 initialization is done */
Bram Moolenaar009b2592004-10-24 19:18:58 +0000113#ifdef FEAT_GUI_MOTIF
114static void netbeans_Xt_connect __ARGS((void *context));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000115#endif
116#ifdef FEAT_GUI_GTK
Bram Moolenaar009b2592004-10-24 19:18:58 +0000117static void netbeans_gtk_connect __ARGS((void));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000118#endif
119#ifdef FEAT_GUI_W32
Bram Moolenaar009b2592004-10-24 19:18:58 +0000120static void netbeans_w32_connect __ARGS((void));
Bram Moolenaar009b2592004-10-24 19:18:58 +0000121#endif
122
123static int dosetvisible = FALSE;
124
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125/*
126 * Include the debugging code if wanted.
127 */
128#ifdef NBDEBUG
129# include "nbdebug.c"
130#endif
131
132/* Connect back to Netbeans process */
Bram Moolenaar009b2592004-10-24 19:18:58 +0000133#ifdef FEAT_GUI_MOTIF
134 static void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135netbeans_Xt_connect(void *context)
136{
137 netbeans_connect();
138 if (sd > 0)
139 {
140 /* tell notifier we are interested in being called
141 * when there is input on the editor connection socket
142 */
143 inputHandler = XtAppAddInput((XtAppContext)context, sd,
144 (XtPointer)(XtInputReadMask + XtInputExceptMask),
145 messageFromNetbeans, NULL);
146 }
147}
148
149 static void
150netbeans_disconnect(void)
151{
152 if (inputHandler != (XtInputId)NULL)
153 {
154 XtRemoveInput(inputHandler);
155 inputHandler = (XtInputId)NULL;
156 }
157 sd = -1;
158 haveConnection = FALSE;
Bram Moolenaard62bec82005-03-07 22:56:57 +0000159# ifdef FEAT_BEVAL
160 bevalServers &= ~BEVAL_NETBEANS;
161# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162}
163#endif /* FEAT_MOTIF_GUI */
164
Bram Moolenaar009b2592004-10-24 19:18:58 +0000165#ifdef FEAT_GUI_GTK
166 static void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167netbeans_gtk_connect(void)
168{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169 netbeans_connect();
170 if (sd > 0)
171 {
172 /*
173 * Tell gdk we are interested in being called when there
174 * is input on the editor connection socket
175 */
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000176 inputHandler = gdk_input_add((gint)sd, (GdkInputCondition)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 ((int)GDK_INPUT_READ + (int)GDK_INPUT_EXCEPTION),
178 messageFromNetbeans, NULL);
179 }
180}
181
182 static void
183netbeans_disconnect(void)
184{
185 if (inputHandler != 0)
186 {
187 gdk_input_remove(inputHandler);
188 inputHandler = 0;
189 }
190 sd = -1;
191 haveConnection = FALSE;
Bram Moolenaard62bec82005-03-07 22:56:57 +0000192# ifdef FEAT_BEVAL
193 bevalServers &= ~BEVAL_NETBEANS;
194# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195}
196#endif /* FEAT_GUI_GTK */
197
Bram Moolenaar5b625c52005-01-31 18:55:55 +0000198#if defined(FEAT_GUI_W32) || defined(PROTO)
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000199 static void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200netbeans_w32_connect(void)
201{
202 netbeans_connect();
203 if (sd > 0)
204 {
205 /*
206 * Tell Windows we are interested in receiving message when there
207 * is input on the editor connection socket
208 */
209 inputHandler = WSAAsyncSelect(sd, s_hwnd, WM_NETBEANS, FD_READ);
210 }
211}
212
213 static void
214netbeans_disconnect(void)
215{
216 if (inputHandler == 0)
217 {
218 WSAAsyncSelect(sd, s_hwnd, 0, 0);
219 inputHandler = -1;
220 }
221 sd = -1;
222 haveConnection = FALSE;
Bram Moolenaard62bec82005-03-07 22:56:57 +0000223# ifdef FEAT_BEVAL
224 bevalServers &= ~BEVAL_NETBEANS;
225# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226}
227#endif /* FEAT_GUI_W32 */
228
229#define NB_DEF_HOST "localhost"
230#define NB_DEF_ADDR "3219"
231#define NB_DEF_PASS "changeme"
232
233 static void
234netbeans_connect(void)
235{
236#ifdef INET_SOCKETS
237 struct sockaddr_in server;
238 struct hostent * host;
239# ifdef FEAT_GUI_W32
240 u_short port;
241# else
242 int port;
243#endif
244#else
245 struct sockaddr_un server;
246#endif
247 char buf[32];
248 char *hostname = NULL;
249 char *address = NULL;
250 char *password = NULL;
251 char *fname;
252 char *arg = NULL;
253
254 if (netbeansArg[3] == '=')
255 {
256 /* "-nb=fname": Read info from specified file. */
257 if (getConnInfo(netbeansArg + 4, &hostname, &address, &password)
258 == FAIL)
259 return;
260 }
261 else
262 {
263 if (netbeansArg[3] == ':')
264 /* "-nb:<host>:<addr>:<password>": get info from argument */
265 arg = netbeansArg + 4;
266 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL)
267 {
268 /* "-nb": get info from file specified in environment */
269 if (getConnInfo(fname, &hostname, &address, &password) == FAIL)
270 return;
271 }
272 else
273 {
274 if (arg != NULL)
275 {
276 /* "-nb:<host>:<addr>:<password>": get info from argument */
277 hostname = arg;
278 address = strchr(hostname, ':');
279 if (address != NULL)
280 {
281 *address++ = '\0';
282 password = strchr(address, ':');
283 if (password != NULL)
284 *password++ = '\0';
285 }
286 }
287
288 /* Get the missing values from the environment. */
289 if (hostname == NULL || *hostname == '\0')
290 hostname = getenv("__NETBEANS_HOST");
291 if (address == NULL)
292 address = getenv("__NETBEANS_SOCKET");
293 if (password == NULL)
294 password = getenv("__NETBEANS_VIM_PASSWORD");
295
296 /* Move values to allocated memory. */
297 if (hostname != NULL)
298 hostname = (char *)vim_strsave((char_u *)hostname);
299 if (address != NULL)
300 address = (char *)vim_strsave((char_u *)address);
301 if (password != NULL)
302 password = (char *)vim_strsave((char_u *)password);
303 }
304 }
305
306 /* Use the default when a value is missing. */
307 if (hostname == NULL || *hostname == '\0')
308 {
309 vim_free(hostname);
310 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST);
311 }
312 if (address == NULL || *address == '\0')
313 {
314 vim_free(address);
315 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR);
316 }
317 if (password == NULL || *password == '\0')
318 {
319 vim_free(password);
320 password = (char *)vim_strsave((char_u *)NB_DEF_PASS);
321 }
322 if (hostname == NULL || address == NULL || password == NULL)
323 goto theend; /* out of memory */
324
325#ifdef INET_SOCKETS
326 port = atoi(address);
327
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000328 if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 {
330 PERROR("socket() in netbeans_connect()");
331 goto theend;
332 }
333
334 /* Get the server internet address and put into addr structure */
335 /* fill in the socket address structure and connect to server */
336 memset((char *)&server, '\0', sizeof(server));
337 server.sin_family = AF_INET;
338 server.sin_port = htons(port);
339 if ((host = gethostbyname(hostname)) == NULL)
340 {
341 if (mch_access(hostname, R_OK) >= 0)
342 {
343 /* DEBUG: input file */
344 sd = mch_open(hostname, O_RDONLY, 0);
345 goto theend;
346 }
347 PERROR("gethostbyname() in netbeans_connect()");
348 sd = -1;
349 goto theend;
350 }
351 memcpy((char *)&server.sin_addr, host->h_addr, host->h_length);
352#else
353 if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
354 {
355 PERROR("socket()");
356 goto theend;
357 }
358
359 server.sun_family = AF_UNIX;
360 strcpy(server.sun_path, address);
361#endif
362 /* Connect to server */
363 if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
364 {
365 nbdebug(("netbeans_connect: Connect failed with errno %d\n", sock_errno));
366 if (sock_errno == ECONNREFUSED)
367 {
368 sock_close(sd);
369#ifdef INET_SOCKETS
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000370 if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 {
372 PERROR("socket()#2 in netbeans_connect()");
373 goto theend;
374 }
375#else
376 if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
377 {
378 PERROR("socket()#2 in netbeans_connect()");
379 goto theend;
380 }
381#endif
382 if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
383 {
384 int retries = 36;
385 int success = FALSE;
386 while (retries--
387 && ((sock_errno == ECONNREFUSED) || (sock_errno == EINTR)))
388 {
389 nbdebug(("retrying...\n"));
390 sleep(5);
391 if (connect(sd, (struct sockaddr *)&server,
392 sizeof(server)) == 0)
393 {
394 success = TRUE;
395 break;
396 }
397 }
398 if (!success)
399 {
400 /* Get here when the server can't be found. */
401 PERROR(_("Cannot connect to Netbeans #2"));
402 getout(1);
403 }
404 }
405
406 }
407 else
408 {
409 PERROR(_("Cannot connect to Netbeans"));
410 getout(1);
411 }
412 }
413
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 +0000420/* nb_init_graphics(); delay until needed */
421
422 haveConnection = TRUE;
423
424theend:
425 vim_free(hostname);
426 vim_free(address);
427 vim_free(password);
428 return;
429}
430
431/*
432 * Obtain the NetBeans hostname, port address and password from a file.
433 * Return the strings in allocated memory.
434 * Return FAIL if the file could not be read, OK otherwise (no matter what it
435 * contains).
436 */
437 static int
438getConnInfo(char *file, char **host, char **port, char **auth)
439{
440 FILE *fp;
441 char_u buf[BUFSIZ];
442 char_u *lp;
443 char_u *nl;
444#ifdef UNIX
445 struct stat st;
446
447 /*
448 * For Unix only accept the file when it's not accessible by others.
449 * The open will then fail if we don't own the file.
450 */
451 if (mch_stat(file, &st) == 0 && (st.st_mode & 0077) != 0)
452 {
453 EMSG2(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""),
454 file);
455 return FAIL;
456 }
457#endif
458
459 fp = mch_fopen(file, "r");
460 if (fp == NULL)
461 {
462 PERROR("E660: Cannot open NetBeans connection info file");
463 return FAIL;
464 }
465
466 /* Read the file. There should be one of each parameter */
467 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL)
468 {
469 if ((nl = vim_strchr(lp, '\n')) != NULL)
470 *nl = 0; /* strip off the trailing newline */
471
472 if (STRNCMP(lp, "host=", 5) == 0)
473 {
474 vim_free(*host);
475 *host = (char *)vim_strsave(&buf[5]);
476 }
477 else if (STRNCMP(lp, "port=", 5) == 0)
478 {
479 vim_free(*port);
480 *port = (char *)vim_strsave(&buf[5]);
481 }
482 else if (STRNCMP(lp, "auth=", 5) == 0)
483 {
484 vim_free(*auth);
485 *auth = (char *)vim_strsave(&buf[5]);
486 }
487 }
488 fclose(fp);
489
490 return OK;
491}
492
493
494struct keyqueue
495{
496 int key;
497 struct keyqueue *next;
498 struct keyqueue *prev;
499};
500
501typedef struct keyqueue keyQ_T;
502
503static keyQ_T keyHead; /* dummy node, header for circular queue */
504
505
506/*
507 * Queue up key commands sent from netbeans.
508 */
509 static void
510postpone_keycommand(int key)
511{
512 keyQ_T *node;
513
514 node = (keyQ_T *)alloc(sizeof(keyQ_T));
515
516 if (keyHead.next == NULL) /* initialize circular queue */
517 {
518 keyHead.next = &keyHead;
519 keyHead.prev = &keyHead;
520 }
521
522 /* insert node at tail of queue */
523 node->next = &keyHead;
524 node->prev = keyHead.prev;
525 keyHead.prev->next = node;
526 keyHead.prev = node;
527
528 node->key = key;
529}
530
531/*
532 * Handle any queued-up NetBeans keycommands to be send.
533 */
534 static void
535handle_key_queue(void)
536{
537 while (keyHead.next && keyHead.next != &keyHead)
538 {
539 /* first, unlink the node */
540 keyQ_T *node = keyHead.next;
541 keyHead.next = node->next;
542 node->next->prev = node->prev;
543
544 /* now, send the keycommand */
545 netbeans_keycommand(node->key);
546
547 /* Finally, dispose of the node */
548 vim_free(node);
549 }
550}
551
552
553struct cmdqueue
554{
555 char_u *buffer;
556 struct cmdqueue *next;
557 struct cmdqueue *prev;
558};
559
560typedef struct cmdqueue queue_T;
561
562static queue_T head; /* dummy node, header for circular queue */
563
564
565/*
566 * Put the buffer on the work queue; possibly save it to a file as well.
567 */
568 static void
569save(char_u *buf, int len)
570{
571 queue_T *node;
572
573 node = (queue_T *)alloc(sizeof(queue_T));
574 if (node == NULL)
575 return; /* out of memory */
576 node->buffer = alloc(len + 1);
577 if (node->buffer == NULL)
578 {
579 vim_free(node);
580 return; /* out of memory */
581 }
582 mch_memmove(node->buffer, buf, (size_t)len);
583 node->buffer[len] = NUL;
584
585 if (head.next == NULL) /* initialize circular queue */
586 {
587 head.next = &head;
588 head.prev = &head;
589 }
590
591 /* insert node at tail of queue */
592 node->next = &head;
593 node->prev = head.prev;
594 head.prev->next = node;
595 head.prev = node;
596
597#ifdef NBDEBUG
598 {
599 static int outfd = -2;
600
601 /* possibly write buffer out to a file */
602 if (outfd == -3)
603 return;
604
605 if (outfd == -2)
606 {
607 char *file = getenv("__NETBEANS_SAVE");
608 if (file == NULL)
609 outfd = -3;
610 else
611 outfd = mch_open(file, O_WRONLY|O_CREAT|O_TRUNC, 0666);
612 }
613
614 if (outfd >= 0)
615 write(outfd, buf, len);
616 }
617#endif
618}
619
620
621/*
622 * While there's still a command in the work queue, parse and execute it.
623 */
624 static void
625nb_parse_messages(void)
626{
627 char_u *p;
628 queue_T *node;
629
630 while (head.next != &head)
631 {
632 node = head.next;
633
634 /* Locate the first line in the first buffer. */
635 p = vim_strchr(node->buffer, '\n');
636 if (p == NULL)
637 {
638 /* Command isn't complete. If there is no following buffer,
639 * return (wait for more). If there is another buffer following,
640 * prepend the text to that buffer and delete this one. */
641 if (node->next == &head)
642 return;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000643 p = alloc((unsigned)(STRLEN(node->buffer) + STRLEN(node->next->buffer) + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 if (p == NULL)
645 return; /* out of memory */
646 STRCPY(p, node->buffer);
647 STRCAT(p, node->next->buffer);
648 vim_free(node->next->buffer);
649 node->next->buffer = p;
650
651 /* dispose of the node and buffer */
652 head.next = node->next;
653 node->next->prev = node->prev;
654 vim_free(node->buffer);
655 vim_free(node);
656 }
657 else
658 {
659 /* There is a complete command at the start of the buffer.
660 * Terminate it with a NUL. When no more text is following unlink
661 * the buffer. Do this before executing, because new buffers can
662 * be added while busy handling the command. */
663 *p++ = NUL;
664 if (*p == NUL)
665 {
666 head.next = node->next;
667 node->next->prev = node->prev;
668 }
669
670 /* now, parse and execute the commands */
671 nb_parse_cmd(node->buffer);
672
673 if (*p == NUL)
674 {
675 /* buffer finished, dispose of the node and buffer */
676 vim_free(node->buffer);
677 vim_free(node);
678 }
679 else
680 {
681 /* more follows, move to the start */
682 mch_memmove(node->buffer, p, STRLEN(p) + 1);
683 }
684 }
685 }
686}
687
688/* Buffer size for reading incoming messages. */
689#define MAXMSGSIZE 4096
690
691/*
692 * Read and process a command from netbeans.
693 */
694/*ARGSUSED*/
695#if defined(FEAT_GUI_W32) || defined(PROTO)
696/* Use this one when generating prototypes, the others are static. */
697 void
698messageFromNetbeansW32()
699#else
700# ifdef FEAT_GUI_MOTIF
701 static void
702messageFromNetbeans(XtPointer clientData, int *unused1, XtInputId *unused2)
703# endif
704# ifdef FEAT_GUI_GTK
705 static void
706messageFromNetbeans(gpointer clientData, gint unused1,
707 GdkInputCondition unused2)
708# endif
709#endif
710{
711 static char_u *buf = NULL;
712 int len;
713 int readlen = 0;
714 static int level = 0;
715
716 if (sd < 0)
717 {
718 nbdebug(("messageFromNetbeans() called without a socket\n"));
719 return;
720 }
721
722 ++level; /* recursion guard; this will be called from the X event loop */
723
724 /* Allocate a buffer to read into. */
725 if (buf == NULL)
726 {
727 buf = alloc(MAXMSGSIZE);
728 if (buf == NULL)
729 return; /* out of memory! */
730 }
731
732 /* Keep on reading for as long as there is something to read. */
733 for (;;)
734 {
735 len = sock_read(sd, buf, MAXMSGSIZE);
736 if (len <= 0)
737 break; /* error or nothing more to read */
738
739 /* Store the read message in the queue. */
740 save(buf, len);
741 readlen += len;
742 if (len < MAXMSGSIZE)
743 break; /* did read everything that's available */
744 }
745
746 if (readlen <= 0)
747 {
748 /* read error or didn't read anything */
749 netbeans_disconnect();
750 nbdebug(("messageFromNetbeans: Error in read() from socket\n"));
751 if (len < 0)
752 PERROR(_("read from Netbeans socket"));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000753 return; /* don't try to parse it */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 }
755
756 /* Parse the messages, but avoid recursion. */
757 if (level == 1)
758 nb_parse_messages();
759
760 --level;
761}
762
763/*
764 * Handle one NUL terminated command.
765 *
766 * format of a command from netbeans:
767 *
768 * 6:setTitle!84 "a.c"
769 *
770 * bufno
771 * colon
772 * cmd
773 * !
774 * cmdno
775 * args
776 *
777 * for function calls, the ! is replaced by a /
778 */
779 static void
780nb_parse_cmd(char_u *cmd)
781{
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000782 char *verb;
783 char *q;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 int bufno;
785 int isfunc = -1;
786
787 if (STRCMP(cmd, "DISCONNECT") == 0)
788 {
789 /* We assume the server knows that we can safely exit! */
790 if (sd >= 0)
791 sock_close(sd);
792 /* Disconnect before exiting, Motif hangs in a Select error
793 * message otherwise. */
794 netbeans_disconnect();
795 getout(0);
796 /* NOTREACHED */
797 }
798
799 if (STRCMP(cmd, "DETACH") == 0)
800 {
801 /* The IDE is breaking the connection. */
802 if (sd >= 0)
803 sock_close(sd);
804 netbeans_disconnect();
805 return;
806 }
807
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000808 bufno = strtol((char *)cmd, &verb, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809
810 if (*verb != ':')
811 {
812 EMSG2("E627: missing colon: %s", cmd);
813 return;
814 }
815 ++verb; /* skip colon */
816
817 for (q = verb; *q; q++)
818 {
819 if (*q == '!')
820 {
821 *q++ = NUL;
822 isfunc = 0;
823 break;
824 }
825 else if (*q == '/')
826 {
827 *q++ = NUL;
828 isfunc = 1;
829 break;
830 }
831 }
832
833 if (isfunc < 0)
834 {
835 EMSG2("E628: missing ! or / in: %s", cmd);
836 return;
837 }
838
Bram Moolenaar89d40322006-08-29 15:30:07 +0000839 r_cmdno = strtol(q, &q, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000841 q = (char *)skipwhite((char_u *)q);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842
Bram Moolenaar89d40322006-08-29 15:30:07 +0000843 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 {
Bram Moolenaar009b2592004-10-24 19:18:58 +0000845#ifdef NBDEBUG
846 /*
847 * This happens because the ExtEd can send a cammand or 2 after
848 * doing a stopDocumentListen command. It doesn't harm anything
849 * so I'm disabling it except for debugging.
850 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd));
852 EMSG("E629: bad return from nb_do_cmd");
Bram Moolenaar009b2592004-10-24 19:18:58 +0000853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 }
855}
856
857struct nbbuf_struct
858{
859 buf_T *bufp;
860 unsigned int fireChanges:1;
861 unsigned int initDone:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000862 unsigned int insertDone:1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 unsigned int modified:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000864 int nbbuf_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 char *displayname;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 int *signmap;
867 short_u signmaplen;
868 short_u signmapused;
869};
870
871typedef struct nbbuf_struct nbbuf_T;
872
873static nbbuf_T *buf_list = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000874static int buf_list_size = 0; /* size of buf_list */
875static int buf_list_used = 0; /* nr of entries in buf_list actually in use */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876
877static char **globalsignmap;
878static int globalsignmaplen;
879static int globalsignmapused;
880
881static int mapsigntype __ARGS((nbbuf_T *, int localsigntype));
882static void addsigntype __ARGS((nbbuf_T *, int localsigntype, char_u *typeName,
883 char_u *tooltip, char_u *glyphfile,
884 int usefg, int fg, int usebg, int bg));
Bram Moolenaar009b2592004-10-24 19:18:58 +0000885static void print_read_msg __ARGS((nbbuf_T *buf));
886static void print_save_msg __ARGS((nbbuf_T *buf, long nchars));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887
888static int curPCtype = -1;
889
890/*
891 * Get the Netbeans buffer number for the specified buffer.
892 */
893 static int
894nb_getbufno(buf_T *bufp)
895{
896 int i;
897
898 for (i = 0; i < buf_list_used; i++)
899 if (buf_list[i].bufp == bufp)
900 return i;
901 return -1;
902}
903
904/*
905 * Is this a NetBeans-owned buffer?
906 */
907 int
908isNetbeansBuffer(buf_T *bufp)
909{
Bram Moolenaar009b2592004-10-24 19:18:58 +0000910 return usingNetbeans && bufp->b_netbeans_file;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911}
912
913/*
914 * NetBeans and Vim have different undo models. In Vim, the file isn't
915 * changed if changes are undone via the undo command. In NetBeans, once
916 * a change has been made the file is marked as modified until saved. It
917 * doesn't matter if the change was undone.
918 *
919 * So this function is for the corner case where Vim thinks a buffer is
920 * unmodified but NetBeans thinks it IS modified.
921 */
922 int
923isNetbeansModified(buf_T *bufp)
924{
Bram Moolenaar009b2592004-10-24 19:18:58 +0000925 if (usingNetbeans && bufp->b_netbeans_file)
926 {
927 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928
Bram Moolenaar009b2592004-10-24 19:18:58 +0000929 if (bufno > 0)
930 return buf_list[bufno].modified;
931 else
932 return FALSE;
933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 else
935 return FALSE;
936}
937
938/*
939 * Given a Netbeans buffer number, return the netbeans buffer.
940 * Returns NULL for 0 or a negative number. A 0 bufno means a
941 * non-buffer related command has been sent.
942 */
943 static nbbuf_T *
944nb_get_buf(int bufno)
945{
946 /* find or create a buffer with the given number */
947 int incr;
948
949 if (bufno <= 0)
950 return NULL;
951
952 if (!buf_list)
953 {
954 /* initialize */
955 buf_list = (nbbuf_T *)alloc_clear(100 * sizeof(nbbuf_T));
956 buf_list_size = 100;
957 }
958 if (bufno >= buf_list_used) /* new */
959 {
960 if (bufno >= buf_list_size) /* grow list */
961 {
962 incr = bufno - buf_list_size + 90;
963 buf_list_size += incr;
964 buf_list = (nbbuf_T *)vim_realloc(
965 buf_list, buf_list_size * sizeof(nbbuf_T));
966 memset(buf_list + buf_list_size - incr, 0, incr * sizeof(nbbuf_T));
967 }
968
969 while (buf_list_used <= bufno)
970 {
971 /* Default is to fire text changes. */
972 buf_list[buf_list_used].fireChanges = 1;
973 ++buf_list_used;
974 }
975 }
976
977 return buf_list + bufno;
978}
979
980/*
981 * Return the number of buffers that are modified.
982 */
983 static int
984count_changed_buffers(void)
985{
986 buf_T *bufp;
987 int n;
988
989 n = 0;
990 for (bufp = firstbuf; bufp != NULL; bufp = bufp->b_next)
991 if (bufp->b_changed)
992 ++n;
993 return n;
994}
995
996/*
997 * End the netbeans session.
998 */
999 void
1000netbeans_end(void)
1001{
1002 int i;
1003 static char buf[128];
1004
1005 if (!haveConnection)
1006 return;
1007
1008 for (i = 0; i < buf_list_used; i++)
1009 {
1010 if (!buf_list[i].bufp)
1011 continue;
1012 if (netbeansForcedQuit)
1013 {
1014 /* mark as unmodified so NetBeans won't put up dialog on "killed" */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001015 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 nbdebug(("EVT: %s", buf));
1017 nb_send(buf, "netbeans_end");
1018 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00001019 sprintf(buf, "%d:killed=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 nbdebug(("EVT: %s", buf));
1021/* nb_send(buf, "netbeans_end"); avoid "write failed" messages */
1022 if (sd >= 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001023 sock_write(sd, buf, (int)STRLEN(buf)); /* ignore errors */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025}
1026
1027/*
1028 * Send a message to netbeans.
1029 */
1030 static void
1031nb_send(char *buf, char *fun)
1032{
1033 /* Avoid giving pages full of error messages when the other side has
1034 * exited, only mention the first error until the connection works again. */
1035 static int did_error = FALSE;
1036
1037 if (sd < 0)
1038 {
1039 if (!did_error)
1040 EMSG2("E630: %s(): write while not connected", fun);
1041 did_error = TRUE;
1042 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001043 else if (sock_write(sd, buf, (int)STRLEN(buf)) != (int)STRLEN(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 {
1045 if (!did_error)
1046 EMSG2("E631: %s(): write failed", fun);
1047 did_error = TRUE;
1048 }
1049 else
1050 did_error = FALSE;
1051}
1052
1053/*
1054 * Some input received from netbeans requires a response. This function
1055 * handles a response with no information (except the command number).
1056 */
1057 static void
1058nb_reply_nil(int cmdno)
1059{
1060 char reply[32];
1061
1062 if (!haveConnection)
1063 return;
1064
Bram Moolenaar009b2592004-10-24 19:18:58 +00001065 nbdebug(("REP %d: <none>\n", cmdno));
1066
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 sprintf(reply, "%d\n", cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 nb_send(reply, "nb_reply_nil");
1069}
1070
1071
1072/*
1073 * Send a response with text.
1074 * "result" must have been quoted already (using nb_quote()).
1075 */
1076 static void
1077nb_reply_text(int cmdno, char_u *result)
1078{
1079 char_u *reply;
1080
1081 if (!haveConnection)
1082 return;
1083
Bram Moolenaar009b2592004-10-24 19:18:58 +00001084 nbdebug(("REP %d: %s\n", cmdno, (char *)result));
1085
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001086 reply = alloc((unsigned)STRLEN(result) + 32);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 nb_send((char *)reply, "nb_reply_text");
1089
1090 vim_free(reply);
1091}
1092
1093
1094/*
1095 * Send a response with a number result code.
1096 */
1097 static void
1098nb_reply_nr(int cmdno, long result)
1099{
1100 char reply[32];
1101
1102 if (!haveConnection)
1103 return;
1104
Bram Moolenaar009b2592004-10-24 19:18:58 +00001105 nbdebug(("REP %d: %ld\n", cmdno, result));
1106
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 sprintf(reply, "%d %ld\n", cmdno, result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 nb_send(reply, "nb_reply_nr");
1109}
1110
1111
1112/*
1113 * Encode newline, ret, backslash, double quote for transmission to NetBeans.
1114 */
1115 static char_u *
1116nb_quote(char_u *txt)
1117{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001118 char_u *buf = alloc((unsigned)(2 * STRLEN(txt) + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 char_u *p = txt;
1120 char_u *q = buf;
1121
1122 if (buf == NULL)
1123 return NULL;
1124 for (; *p; p++)
1125 {
1126 switch (*p)
1127 {
1128 case '\"':
1129 case '\\':
1130 *q++ = '\\'; *q++ = *p; break;
1131 /* case '\t': */
1132 /* *q++ = '\\'; *q++ = 't'; break; */
1133 case '\n':
1134 *q++ = '\\'; *q++ = 'n'; break;
1135 case '\r':
1136 *q++ = '\\'; *q++ = 'r'; break;
1137 default:
1138 *q++ = *p;
1139 break;
1140 }
1141 }
1142 *q++ = '\0';
1143
1144 return buf;
1145}
1146
1147
1148/*
1149 * Remove top level double quotes; convert backslashed chars.
1150 * Returns an allocated string (NULL for failure).
1151 * If "endp" is not NULL it is set to the character after the terminating
1152 * quote.
1153 */
1154 static char *
1155nb_unquote(char_u *p, char_u **endp)
1156{
1157 char *result = 0;
1158 char *q;
1159 int done = 0;
1160
1161 /* result is never longer than input */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001162 result = (char *)alloc_clear((unsigned)STRLEN(p) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 if (result == NULL)
1164 return NULL;
1165
1166 if (*p++ != '"')
1167 {
1168 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n",
1169 p));
1170 result[0] = NUL;
1171 return result;
1172 }
1173
1174 for (q = result; !done && *p != NUL;)
1175 {
1176 switch (*p)
1177 {
1178 case '"':
1179 /*
1180 * Unbackslashed dquote marks the end, if first char was dquote.
1181 */
1182 done = 1;
1183 break;
1184
1185 case '\\':
1186 ++p;
1187 switch (*p)
1188 {
1189 case '\\': *q++ = '\\'; break;
1190 case 'n': *q++ = '\n'; break;
1191 case 't': *q++ = '\t'; break;
1192 case 'r': *q++ = '\r'; break;
1193 case '"': *q++ = '"'; break;
1194 case NUL: --p; break;
1195 /* default: skip over illegal chars */
1196 }
1197 ++p;
1198 break;
1199
1200 default:
1201 *q++ = *p++;
1202 }
1203 }
1204
1205 if (endp != NULL)
1206 *endp = p;
1207
1208 return result;
1209}
1210
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001211/*
1212 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the
1213 * current buffer. Remove to end of line when "last" is MAXCOL.
1214 */
1215 static void
1216nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last)
1217{
1218 char_u *oldtext, *newtext;
1219 int oldlen;
1220 int lastbyte = last;
1221
1222 oldtext = ml_get(lnum);
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001223 oldlen = (int)STRLEN(oldtext);
Bram Moolenaarb3c70982008-01-18 10:40:55 +00001224 if (first >= (colnr_T)oldlen || oldlen == 0) /* just in case */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001225 return;
1226 if (lastbyte >= oldlen)
1227 lastbyte = oldlen - 1;
1228 newtext = alloc(oldlen - (int)(lastbyte - first));
1229 if (newtext != NULL)
1230 {
1231 mch_memmove(newtext, oldtext, first);
1232 mch_memmove(newtext + first, oldtext + lastbyte + 1, STRLEN(oldtext + lastbyte + 1) + 1);
1233 nbdebug((" NEW LINE %d: %s\n", lnum, newtext));
1234 ml_replace(lnum, newtext, FALSE);
1235 }
1236}
1237
1238/*
1239 * Replace the "first" line with the concatenation of the "first" and
1240 * the "other" line. The "other" line is not removed.
1241 */
1242 static void
1243nb_joinlines(linenr_T first, linenr_T other)
1244{
1245 int len_first, len_other;
1246 char_u *p;
1247
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001248 len_first = (int)STRLEN(ml_get(first));
1249 len_other = (int)STRLEN(ml_get(other));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001250 p = alloc((unsigned)(len_first + len_other + 1));
1251 if (p != NULL)
1252 {
1253 mch_memmove(p, ml_get(first), len_first);
1254 mch_memmove(p + len_first, ml_get(other), len_other + 1);
1255 ml_replace(first, p, FALSE);
1256 }
1257}
1258
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259#define SKIP_STOP 2
1260#define streq(a,b) (strcmp(a,b) == 0)
1261static int needupdate = 0;
1262static int inAtomic = 0;
1263
1264/*
1265 * Do the actual processing of a single netbeans command or function.
Bram Moolenaar143c38c2007-05-10 16:41:10 +00001266 * The difference between a command and function is that a function
1267 * gets a response (it's required) but a command does not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 * For arguments see comment for nb_parse_cmd().
1269 */
1270 static int
1271nb_do_cmd(
1272 int bufno,
1273 char_u *cmd,
1274 int func,
1275 int cmdno,
1276 char_u *args) /* points to space before arguments or NUL */
1277{
1278 int doupdate = 0;
1279 long off = 0;
1280 nbbuf_T *buf = nb_get_buf(bufno);
1281 static int skip = 0;
1282 int retval = OK;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001283 char *cp; /* for when a char pointer is needed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284
1285 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd,
1286 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args));
1287
1288 if (func)
1289 {
1290/* =====================================================================*/
1291 if (streq((char *)cmd, "getModified"))
1292 {
1293 if (buf == NULL || buf->bufp == NULL)
1294 /* Return the number of buffers that are modified. */
1295 nb_reply_nr(cmdno, (long)count_changed_buffers());
1296 else
1297 /* Return whether the buffer is modified. */
1298 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed
1299 || isNetbeansModified(buf->bufp)));
1300/* =====================================================================*/
1301 }
1302 else if (streq((char *)cmd, "saveAndExit"))
1303 {
1304 /* Note: this will exit Vim if successful. */
1305 coloncmd(":confirm qall");
1306
1307 /* We didn't exit: return the number of changed buffers. */
1308 nb_reply_nr(cmdno, (long)count_changed_buffers());
1309/* =====================================================================*/
1310 }
1311 else if (streq((char *)cmd, "getCursor"))
1312 {
1313 char_u text[200];
1314
1315 /* Note: nb_getbufno() may return -1. This indicates the IDE
1316 * didn't assign a number to the current buffer in response to a
1317 * fileOpened event. */
1318 sprintf((char *)text, "%d %ld %d %ld",
1319 nb_getbufno(curbuf),
1320 (long)curwin->w_cursor.lnum,
1321 (int)curwin->w_cursor.col,
1322 pos2off(curbuf, &curwin->w_cursor));
1323 nb_reply_text(cmdno, text);
1324/* =====================================================================*/
1325 }
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001326 else if (streq((char *)cmd, "getAnno"))
1327 {
1328 long linenum = 0;
1329#ifdef FEAT_SIGNS
1330 if (buf == NULL || buf->bufp == NULL)
1331 {
1332 nbdebug((" null bufp in getAnno"));
1333 EMSG("E652: null bufp in getAnno");
1334 retval = FAIL;
1335 }
1336 else
1337 {
1338 int serNum;
1339
1340 cp = (char *)args;
1341 serNum = strtol(cp, &cp, 10);
1342 /* If the sign isn't found linenum will be zero. */
1343 linenum = (long)buf_findsign(buf->bufp, serNum);
1344 }
1345#endif
1346 nb_reply_nr(cmdno, linenum);
1347/* =====================================================================*/
1348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 else if (streq((char *)cmd, "getLength"))
1350 {
1351 long len = 0;
1352
1353 if (buf == NULL || buf->bufp == NULL)
1354 {
1355 nbdebug((" null bufp in getLength"));
1356 EMSG("E632: null bufp in getLength");
1357 retval = FAIL;
1358 }
1359 else
1360 {
1361 len = get_buf_size(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 }
1363 nb_reply_nr(cmdno, len);
1364/* =====================================================================*/
1365 }
1366 else if (streq((char *)cmd, "getText"))
1367 {
1368 long len;
1369 linenr_T nlines;
1370 char_u *text = NULL;
1371 linenr_T lno = 1;
1372 char_u *p;
1373 char_u *line;
1374
1375 if (buf == NULL || buf->bufp == NULL)
1376 {
1377 nbdebug((" null bufp in getText"));
1378 EMSG("E633: null bufp in getText");
1379 retval = FAIL;
1380 }
1381 else
1382 {
1383 len = get_buf_size(buf->bufp);
1384 nlines = buf->bufp->b_ml.ml_line_count;
1385 text = alloc((unsigned)((len > 0)
1386 ? ((len + nlines) * 2) : 4));
1387 if (text == NULL)
1388 {
1389 nbdebug((" nb_do_cmd: getText has null text field\n"));
1390 retval = FAIL;
1391 }
1392 else
1393 {
1394 p = text;
1395 *p++ = '\"';
1396 for (; lno <= nlines ; lno++)
1397 {
1398 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE));
1399 if (line != NULL)
1400 {
1401 STRCPY(p, line);
1402 p += STRLEN(line);
1403 *p++ = '\\';
1404 *p++ = 'n';
Bram Moolenaar009b2592004-10-24 19:18:58 +00001405 vim_free(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 }
1408 *p++ = '\"';
1409 *p = '\0';
1410 }
1411 }
1412 if (text == NULL)
1413 nb_reply_text(cmdno, (char_u *)"");
1414 else
1415 {
1416 nb_reply_text(cmdno, text);
1417 vim_free(text);
1418 }
1419/* =====================================================================*/
1420 }
1421 else if (streq((char *)cmd, "remove"))
1422 {
1423 long count;
1424 pos_T first, last;
1425 pos_T *pos;
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001426 pos_T *next;
1427 linenr_T del_from_lnum, del_to_lnum; /* lines to be deleted as a whole */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 int oldFire = netbeansFireChanges;
1429 int oldSuppress = netbeansSuppressNoLines;
1430 int wasChanged;
1431
1432 if (skip >= SKIP_STOP)
1433 {
1434 nbdebug((" Skipping %s command\n", (char *) cmd));
1435 nb_reply_nil(cmdno);
1436 return OK;
1437 }
1438
1439 if (buf == NULL || buf->bufp == NULL)
1440 {
1441 nbdebug((" null bufp in remove"));
1442 EMSG("E634: null bufp in remove");
1443 retval = FAIL;
1444 }
1445 else
1446 {
1447 netbeansFireChanges = FALSE;
1448 netbeansSuppressNoLines = TRUE;
1449
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001450 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 wasChanged = buf->bufp->b_changed;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001452 cp = (char *)args;
1453 off = strtol(cp, &cp, 10);
1454 count = strtol(cp, &cp, 10);
1455 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 /* delete "count" chars, starting at "off" */
1457 pos = off2pos(buf->bufp, off);
1458 if (!pos)
1459 {
1460 nb_reply_text(cmdno, (char_u *)"!bad position");
1461 netbeansFireChanges = oldFire;
1462 netbeansSuppressNoLines = oldSuppress;
1463 return FAIL;
1464 }
1465 first = *pos;
1466 nbdebug((" FIRST POS: line %d, col %d\n", first.lnum, first.col));
1467 pos = off2pos(buf->bufp, off+count-1);
1468 if (!pos)
1469 {
1470 nb_reply_text(cmdno, (char_u *)"!bad count");
1471 netbeansFireChanges = oldFire;
1472 netbeansSuppressNoLines = oldSuppress;
1473 return FAIL;
1474 }
1475 last = *pos;
1476 nbdebug((" LAST POS: line %d, col %d\n", last.lnum, last.col));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001477 del_from_lnum = first.lnum;
1478 del_to_lnum = last.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 doupdate = 1;
1480
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001481 /* Get the position of the first byte after the deleted
1482 * section. "next" is NULL when deleting to the end of the
1483 * file. */
1484 next = off2pos(buf->bufp, off + count);
1485
1486 /* Remove part of the first line. */
1487 if (first.col != 0 || (next != NULL && first.lnum == next->lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 {
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001489 if (first.lnum != last.lnum
1490 || (next != NULL && first.lnum != next->lnum))
1491 {
1492 /* remove to the end of the first line */
1493 nb_partialremove(first.lnum, first.col,
1494 (colnr_T)MAXCOL);
1495 if (first.lnum == last.lnum)
1496 {
1497 /* Partial line to remove includes the end of
1498 * line. Join the line with the next one, have
1499 * the next line deleted below. */
1500 nb_joinlines(first.lnum, next->lnum);
1501 del_to_lnum = next->lnum;
1502 }
1503 }
1504 else
1505 {
1506 /* remove within one line */
1507 nb_partialremove(first.lnum, first.col, last.col);
1508 }
1509 ++del_from_lnum; /* don't delete the first line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 }
1511
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001512 /* Remove part of the last line. */
1513 if (first.lnum != last.lnum && next != NULL
1514 && next->col != 0 && last.lnum == next->lnum)
1515 {
1516 nb_partialremove(last.lnum, 0, last.col);
1517 if (del_from_lnum > first.lnum)
1518 {
1519 /* Join end of last line to start of first line; last
1520 * line is deleted below. */
1521 nb_joinlines(first.lnum, last.lnum);
1522 }
1523 else
1524 /* First line is deleted as a whole, keep the last
1525 * line. */
1526 --del_to_lnum;
1527 }
1528
1529 /* First is partial line; last line to remove includes
1530 * the end of line; join first line to line following last
1531 * line; line following last line is deleted below. */
1532 if (first.lnum != last.lnum && del_from_lnum > first.lnum
1533 && next != NULL && last.lnum != next->lnum)
1534 {
1535 nb_joinlines(first.lnum, next->lnum);
1536 del_to_lnum = next->lnum;
1537 }
1538
1539 /* Delete whole lines if there are any. */
1540 if (del_to_lnum >= del_from_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 {
1542 int i;
1543
1544 /* delete signs from the lines being deleted */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001545 for (i = del_from_lnum; i <= del_to_lnum; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 {
1547 int id = buf_findsign_id(buf->bufp, (linenr_T)i);
1548 if (id > 0)
1549 {
1550 nbdebug((" Deleting sign %d on line %d\n", id, i));
1551 buf_delsign(buf->bufp, id);
1552 }
1553 else
1554 nbdebug((" No sign on line %d\n", i));
1555 }
1556
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001557 nbdebug((" Deleting lines %d through %d\n", del_from_lnum, del_to_lnum));
1558 curwin->w_cursor.lnum = del_from_lnum;
1559 curwin->w_cursor.col = 0;
1560 del_lines(del_to_lnum - del_from_lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 }
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001562
1563 /* Leave cursor at first deleted byte. */
1564 curwin->w_cursor = first;
1565 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 buf->bufp->b_changed = wasChanged; /* logically unchanged */
1567 netbeansFireChanges = oldFire;
1568 netbeansSuppressNoLines = oldSuppress;
1569
1570 u_blockfree(buf->bufp);
1571 u_clearall(buf->bufp);
1572 }
1573 nb_reply_nil(cmdno);
1574/* =====================================================================*/
1575 }
1576 else if (streq((char *)cmd, "insert"))
1577 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 char_u *to_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579
1580 if (skip >= SKIP_STOP)
1581 {
1582 nbdebug((" Skipping %s command\n", (char *) cmd));
1583 nb_reply_nil(cmdno);
1584 return OK;
1585 }
1586
1587 /* get offset */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001588 cp = (char *)args;
1589 off = strtol(cp, &cp, 10);
1590 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591
1592 /* get text to be inserted */
1593 args = skipwhite(args);
1594 args = to_free = (char_u *)nb_unquote(args, NULL);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001595 /*
1596 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1597 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1598 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599
1600 if (buf == NULL || buf->bufp == NULL)
1601 {
1602 nbdebug((" null bufp in insert"));
1603 EMSG("E635: null bufp in insert");
1604 retval = FAIL;
1605 }
1606 else if (args != NULL)
1607 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001608 int ff_detected = EOL_UNKNOWN;
1609 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY);
1610 size_t len = 0;
1611 int added = 0;
1612 int oldFire = netbeansFireChanges;
1613 int old_b_changed;
1614 char_u *nl;
1615 linenr_T lnum;
1616 linenr_T lnum_start;
1617 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 netbeansFireChanges = 0;
1620
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001621 /* Jump to the buffer where we insert. After this "curbuf"
1622 * can be used. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001623 nb_set_curbuf(buf->bufp);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001624 old_b_changed = curbuf->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001626 /* Convert the specified character offset into a lnum/col
1627 * position. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001628 pos = off2pos(curbuf, off);
1629 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001631 if (pos->lnum <= 0)
1632 lnum_start = 1;
1633 else
1634 lnum_start = pos->lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 }
1636 else
1637 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001638 /* If the given position is not found, assume we want
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 * the end of the file. See setLocAndSize HACK. */
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001640 if (buf_was_empty)
1641 lnum_start = 1; /* above empty line */
1642 else
1643 lnum_start = curbuf->b_ml.ml_line_count + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001644 }
1645
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001646 /* "lnum" is the line where we insert: either append to it or
1647 * insert a new line above it. */
1648 lnum = lnum_start;
1649
1650 /* Loop over the "\n" separated lines of the argument. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 doupdate = 1;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001652 while (*args != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001654 nl = vim_strchr(args, '\n');
1655 if (nl == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001657 /* Incomplete line, probably truncated. Next "insert"
1658 * command should append to this one. */
1659 len = STRLEN(args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001661 else
1662 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001663 len = nl - args;
1664
1665 /*
1666 * We need to detect EOL style, because the commands
1667 * use a character offset.
1668 */
1669 if (nl > args && nl[-1] == '\r')
1670 {
1671 ff_detected = EOL_DOS;
1672 --len;
1673 }
1674 else
1675 ff_detected = EOL_UNIX;
1676 }
1677 args[len] = NUL;
1678
1679 if (lnum == lnum_start
1680 && ((pos != NULL && pos->col > 0)
1681 || (lnum == 1 && buf_was_empty)))
1682 {
1683 char_u *oldline = ml_get(lnum);
1684 char_u *newline;
1685
1686 /* Insert halfway a line. For simplicity we assume we
1687 * need to append to the line. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001688 newline = alloc_check((unsigned)(STRLEN(oldline) + len + 1));
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001689 if (newline != NULL)
1690 {
1691 STRCPY(newline, oldline);
1692 STRCAT(newline, args);
1693 ml_replace(lnum, newline, FALSE);
1694 }
1695 }
1696 else
1697 {
1698 /* Append a new line. Not that we always do this,
1699 * also when the text doesn't end in a "\n". */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001700 ml_append((linenr_T)(lnum - 1), args, (colnr_T)(len + 1), FALSE);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001701 ++added;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001702 }
1703
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001704 if (nl == NULL)
1705 break;
1706 ++lnum;
1707 args = nl + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001708 }
1709
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001710 /* Adjust the marks below the inserted lines. */
1711 appended_lines_mark(lnum_start - 1, (long)added);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001713 /*
1714 * When starting with an empty buffer set the fileformat.
1715 * This is just guessing...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 */
1717 if (buf_was_empty)
1718 {
1719 if (ff_detected == EOL_UNKNOWN)
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001720#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 ff_detected = EOL_DOS;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001722#else
1723 ff_detected = EOL_UNIX;
1724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 set_fileformat(ff_detected, OPT_LOCAL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001726 curbuf->b_start_ffc = *curbuf->b_p_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 }
1728
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 /*
1730 * XXX - GRP - Is the next line right? If I've inserted
1731 * text the buffer has been updated but not written. Will
1732 * netbeans guarantee to write it? Even if I do a :q! ?
1733 */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001734 curbuf->b_changed = old_b_changed; /* logically unchanged */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 netbeansFireChanges = oldFire;
1736
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001737 /* Undo info is invalid now... */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001738 u_blockfree(curbuf);
1739 u_clearall(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 }
1741 vim_free(to_free);
1742 nb_reply_nil(cmdno); /* or !error */
1743 }
1744 else
1745 {
1746 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd));
1747 nb_reply_nil(cmdno);
1748 retval = FAIL;
1749 }
1750 }
1751 else /* Not a function; no reply required. */
1752 {
1753/* =====================================================================*/
1754 if (streq((char *)cmd, "create"))
1755 {
1756 /* Create a buffer without a name. */
1757 if (buf == NULL)
1758 {
1759 EMSG("E636: null buf in create");
1760 return FAIL;
1761 }
1762 vim_free(buf->displayname);
1763 buf->displayname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764
1765 netbeansReadFile = 0; /* don't try to open disk file */
1766 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF);
1767 netbeansReadFile = 1;
1768 buf->bufp = curbuf;
1769 maketitle();
Bram Moolenaar009b2592004-10-24 19:18:58 +00001770 buf->insertDone = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 gui_update_menus(0);
1772/* =====================================================================*/
1773 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001774 else if (streq((char *)cmd, "insertDone"))
1775 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001776 if (buf == NULL || buf->bufp == NULL)
1777 {
1778 nbdebug((" null bufp in insertDone"));
1779 }
1780 else
1781 {
1782 buf->bufp->b_start_eol = *args == 'T';
1783 buf->insertDone = TRUE;
1784 args += 2;
1785 buf->bufp->b_p_ro = *args == 'T';
1786 print_read_msg(buf);
1787 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001788/* =====================================================================*/
1789 }
1790 else if (streq((char *)cmd, "saveDone"))
1791 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001792 long savedChars = atol((char *)args);
1793
1794 if (buf == NULL || buf->bufp == NULL)
1795 {
1796 nbdebug((" null bufp in saveDone"));
1797 }
1798 else
1799 print_save_msg(buf, savedChars);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001800/* =====================================================================*/
1801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 else if (streq((char *)cmd, "startDocumentListen"))
1803 {
1804 if (buf == NULL)
1805 {
1806 EMSG("E637: null buf in startDocumentListen");
1807 return FAIL;
1808 }
1809 buf->fireChanges = 1;
1810/* =====================================================================*/
1811 }
1812 else if (streq((char *)cmd, "stopDocumentListen"))
1813 {
1814 if (buf == NULL)
1815 {
1816 EMSG("E638: null buf in stopDocumentListen");
1817 return FAIL;
1818 }
1819 buf->fireChanges = 0;
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001820 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file)
Bram Moolenaar009b2592004-10-24 19:18:58 +00001821 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001822 if (!buf->bufp->b_netbeans_file)
Bram Moolenaar009b2592004-10-24 19:18:58 +00001823 EMSGN(_("E658: NetBeans connection lost for buffer %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 buf->bufp->b_fnum);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001825 else
1826 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001827 /* NetBeans uses stopDocumentListen when it stops editing
1828 * a file. It then expects the buffer in Vim to
1829 * disappear. */
1830 do_bufdel(DOBUF_DEL, (char_u *)"", 1,
1831 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001832 vim_memset(buf, 0, sizeof(nbbuf_T));
1833 }
1834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835/* =====================================================================*/
1836 }
1837 else if (streq((char *)cmd, "setTitle"))
1838 {
1839 if (buf == NULL)
1840 {
1841 EMSG("E639: null buf in setTitle");
1842 return FAIL;
1843 }
1844 vim_free(buf->displayname);
1845 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846/* =====================================================================*/
1847 }
1848 else if (streq((char *)cmd, "initDone"))
1849 {
1850 if (buf == NULL || buf->bufp == NULL)
1851 {
1852 EMSG("E640: null buf in initDone");
1853 return FAIL;
1854 }
1855 doupdate = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001856 buf->initDone = TRUE;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001857 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858#if defined(FEAT_AUTOCMD)
1859 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp);
1860#endif
1861
1862 /* handle any postponed key commands */
1863 handle_key_queue();
1864/* =====================================================================*/
1865 }
1866 else if (streq((char *)cmd, "setBufferNumber")
1867 || streq((char *)cmd, "putBufferNumber"))
1868 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001869 char_u *path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 buf_T *bufp;
1871
1872 if (buf == NULL)
1873 {
1874 EMSG("E641: null buf in setBufferNumber");
1875 return FAIL;
1876 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001877 path = (char_u *)nb_unquote(args, NULL);
1878 if (path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 return FAIL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001880 bufp = buflist_findname(path);
1881 vim_free(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 if (bufp == NULL)
1883 {
1884 EMSG2("E642: File %s not found in setBufferNumber", args);
1885 return FAIL;
1886 }
1887 buf->bufp = bufp;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001888 buf->nbbuf_number = bufp->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889
1890 /* "setBufferNumber" has the side effect of jumping to the buffer
1891 * (don't know why!). Don't do that for "putBufferNumber". */
1892 if (*cmd != 'p')
1893 coloncmd(":buffer %d", bufp->b_fnum);
1894 else
1895 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001896 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897
1898 /* handle any postponed key commands */
1899 handle_key_queue();
1900 }
1901
1902#if 0 /* never used */
1903 buf->internalname = (char *)alloc_clear(8);
1904 sprintf(buf->internalname, "<%d>", bufno);
1905 buf->netbeansOwns = 0;
1906#endif
1907/* =====================================================================*/
1908 }
1909 else if (streq((char *)cmd, "setFullName"))
1910 {
1911 if (buf == NULL)
1912 {
1913 EMSG("E643: null buf in setFullName");
1914 return FAIL;
1915 }
1916 vim_free(buf->displayname);
1917 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918
1919 netbeansReadFile = 0; /* don't try to open disk file */
1920 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE,
1921 ECMD_HIDE + ECMD_OLDBUF);
1922 netbeansReadFile = 1;
1923 buf->bufp = curbuf;
1924 maketitle();
1925 gui_update_menus(0);
1926/* =====================================================================*/
1927 }
1928 else if (streq((char *)cmd, "editFile"))
1929 {
1930 if (buf == NULL)
1931 {
1932 EMSG("E644: null buf in editFile");
1933 return FAIL;
1934 }
1935 /* Edit a file: like create + setFullName + read the file. */
1936 vim_free(buf->displayname);
1937 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE,
1939 ECMD_HIDE + ECMD_OLDBUF);
1940 buf->bufp = curbuf;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001941 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 doupdate = 1;
1943#if defined(FEAT_TITLE)
1944 maketitle();
1945#endif
1946 gui_update_menus(0);
1947/* =====================================================================*/
1948 }
1949 else if (streq((char *)cmd, "setVisible"))
1950 {
1951 if (buf == NULL || buf->bufp == NULL)
1952 {
1953/* EMSG("E645: null bufp in setVisible"); */
1954 return FAIL;
1955 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001956 if (streq((char *)args, "T") && buf->bufp != curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 {
1958 exarg_T exarg;
1959 exarg.cmd = (char_u *)"goto";
1960 exarg.forceit = FALSE;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001961 dosetvisible = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum);
1963 doupdate = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001964 dosetvisible = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965
1966 /* Side effect!!!. */
1967 if (!gui.starting)
1968 gui_mch_set_foreground();
1969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970/* =====================================================================*/
1971 }
1972 else if (streq((char *)cmd, "raise"))
1973 {
1974 /* Bring gvim to the foreground. */
1975 if (!gui.starting)
1976 gui_mch_set_foreground();
1977/* =====================================================================*/
1978 }
1979 else if (streq((char *)cmd, "setModified"))
1980 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00001981 int prev_b_changed;
1982
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 if (buf == NULL || buf->bufp == NULL)
1984 {
1985/* EMSG("E646: null bufp in setModified"); */
1986 return FAIL;
1987 }
Bram Moolenaarff064e12008-06-09 13:10:45 +00001988 prev_b_changed = buf->bufp->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 if (streq((char *)args, "T"))
Bram Moolenaarff064e12008-06-09 13:10:45 +00001990 buf->bufp->b_changed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 else
1992 {
1993 struct stat st;
1994
1995 /* Assume NetBeans stored the file. Reset the timestamp to
1996 * avoid "file changed" warnings. */
1997 if (buf->bufp->b_ffname != NULL
1998 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0)
1999 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname);
Bram Moolenaarff064e12008-06-09 13:10:45 +00002000 buf->bufp->b_changed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 }
2002 buf->modified = buf->bufp->b_changed;
Bram Moolenaarff064e12008-06-09 13:10:45 +00002003 if (prev_b_changed != buf->bufp->b_changed)
2004 {
2005#ifdef FEAT_WINDOWS
2006 check_status(buf->bufp);
2007 redraw_tabline = TRUE;
2008#endif
2009#ifdef FEAT_TITLE
2010 maketitle();
2011#endif
2012 update_screen(0);
2013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014/* =====================================================================*/
2015 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002016 else if (streq((char *)cmd, "setModtime"))
2017 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002018 if (buf == NULL || buf->bufp == NULL)
2019 nbdebug((" null bufp in setModtime"));
2020 else
2021 buf->bufp->b_mtime = atoi((char *)args);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002022/* =====================================================================*/
2023 }
2024 else if (streq((char *)cmd, "setReadOnly"))
2025 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002026 if (buf == NULL || buf->bufp == NULL)
2027 nbdebug((" null bufp in setReadOnly"));
2028 else if (streq((char *)args, "T"))
Bram Moolenaar009b2592004-10-24 19:18:58 +00002029 buf->bufp->b_p_ro = TRUE;
2030 else
2031 buf->bufp->b_p_ro = FALSE;
2032/* =====================================================================*/
2033 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 else if (streq((char *)cmd, "setMark"))
2035 {
2036 /* not yet */
2037/* =====================================================================*/
2038 }
2039 else if (streq((char *)cmd, "showBalloon"))
2040 {
2041#if defined(FEAT_BEVAL)
2042 static char *text = NULL;
2043
2044 /*
2045 * Set up the Balloon Expression Evaluation area.
2046 * Ignore 'ballooneval' here.
2047 * The text pointer must remain valid for a while.
2048 */
2049 if (balloonEval != NULL)
2050 {
2051 vim_free(text);
2052 text = nb_unquote(args, NULL);
2053 if (text != NULL)
2054 gui_mch_post_balloon(balloonEval, (char_u *)text);
2055 }
2056#endif
2057/* =====================================================================*/
2058 }
2059 else if (streq((char *)cmd, "setDot"))
2060 {
2061 pos_T *pos;
2062#ifdef NBDEBUG
2063 char_u *s;
2064#endif
2065
2066 if (buf == NULL || buf->bufp == NULL)
2067 {
2068 EMSG("E647: null bufp in setDot");
2069 return FAIL;
2070 }
2071
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002072 nb_set_curbuf(buf->bufp);
2073
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074#ifdef FEAT_VISUAL
2075 /* Don't want Visual mode now. */
2076 if (VIsual_active)
2077 end_visual_mode();
2078#endif
2079#ifdef NBDEBUG
2080 s = args;
2081#endif
2082 pos = get_off_or_lnum(buf->bufp, &args);
2083 if (pos)
2084 {
2085 curwin->w_cursor = *pos;
2086 check_cursor();
2087#ifdef FEAT_FOLDING
2088 foldOpenCursor();
2089#endif
2090 }
2091 else
2092 nbdebug((" BAD POSITION in setDot: %s\n", s));
2093
2094 /* gui_update_cursor(TRUE, FALSE); */
2095 /* update_curbuf(NOT_VALID); */
2096 update_topline(); /* scroll to show the line */
2097 update_screen(VALID);
2098 setcursor();
2099 out_flush();
2100 gui_update_cursor(TRUE, FALSE);
2101 gui_mch_flush();
2102 /* Quit a hit-return or more prompt. */
2103 if (State == HITRETURN || State == ASKMORE)
2104 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105#ifdef FEAT_GUI_GTK
2106 if (gtk_main_level() > 0)
2107 gtk_main_quit();
2108#endif
2109 }
2110/* =====================================================================*/
2111 }
2112 else if (streq((char *)cmd, "close"))
2113 {
2114#ifdef NBDEBUG
2115 char *name = "<NONE>";
2116#endif
2117
2118 if (buf == NULL)
2119 {
2120 EMSG("E648: null buf in close");
2121 return FAIL;
2122 }
2123
2124#ifdef NBDEBUG
2125 if (buf->displayname != NULL)
2126 name = buf->displayname;
2127#endif
2128/* if (buf->bufp == NULL) */
2129/* EMSG("E649: null bufp in close"); */
2130 nbdebug((" CLOSE %d: %s\n", bufno, name));
2131 need_mouse_correct = TRUE;
2132 if (buf->bufp != NULL)
2133 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
2134 buf->bufp->b_fnum, TRUE);
Bram Moolenaar8d602722006-08-08 19:34:19 +00002135 buf->bufp = NULL;
2136 buf->initDone = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 doupdate = 1;
2138/* =====================================================================*/
2139 }
2140 else if (streq((char *)cmd, "setStyle")) /* obsolete... */
2141 {
2142 nbdebug((" setStyle is obsolete!"));
2143/* =====================================================================*/
2144 }
2145 else if (streq((char *)cmd, "setExitDelay"))
2146 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002147 /* Only used in version 2.1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148/* =====================================================================*/
2149 }
2150 else if (streq((char *)cmd, "defineAnnoType"))
2151 {
2152#ifdef FEAT_SIGNS
2153 int typeNum;
2154 char_u *typeName;
2155 char_u *tooltip;
2156 char_u *p;
2157 char_u *glyphFile;
2158 int use_fg = 0;
2159 int use_bg = 0;
2160 int fg = -1;
2161 int bg = -1;
2162
2163 if (buf == NULL)
2164 {
2165 EMSG("E650: null buf in defineAnnoType");
2166 return FAIL;
2167 }
2168
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002169 cp = (char *)args;
2170 typeNum = strtol(cp, &cp, 10);
2171 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 args = skipwhite(args);
2173 typeName = (char_u *)nb_unquote(args, &args);
2174 args = skipwhite(args + 1);
2175 tooltip = (char_u *)nb_unquote(args, &args);
2176 args = skipwhite(args + 1);
2177
2178 p = (char_u *)nb_unquote(args, &args);
2179 glyphFile = vim_strsave_escaped(p, escape_chars);
2180 vim_free(p);
2181
2182 args = skipwhite(args + 1);
2183 if (STRNCMP(args, "none", 4) == 0)
2184 args += 5;
2185 else
2186 {
2187 use_fg = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002188 cp = (char *)args;
2189 fg = strtol(cp, &cp, 10);
2190 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 }
2192 if (STRNCMP(args, "none", 4) == 0)
2193 args += 5;
2194 else
2195 {
2196 use_bg = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002197 cp = (char *)args;
2198 bg = strtol(cp, &cp, 10);
2199 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 }
2201 if (typeName != NULL && tooltip != NULL && glyphFile != NULL)
2202 addsigntype(buf, typeNum, typeName, tooltip, glyphFile,
2203 use_fg, fg, use_bg, bg);
2204 else
2205 vim_free(typeName);
2206
2207 /* don't free typeName; it's used directly in addsigntype() */
2208 vim_free(tooltip);
2209 vim_free(glyphFile);
2210
2211#endif
2212/* =====================================================================*/
2213 }
2214 else if (streq((char *)cmd, "addAnno"))
2215 {
2216#ifdef FEAT_SIGNS
2217 int serNum;
2218 int localTypeNum;
2219 int typeNum;
2220# ifdef NBDEBUG
2221 int len;
2222# endif
2223 pos_T *pos;
2224
2225 if (buf == NULL || buf->bufp == NULL)
2226 {
2227 EMSG("E651: null bufp in addAnno");
2228 return FAIL;
2229 }
2230
2231 doupdate = 1;
2232
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002233 cp = (char *)args;
2234 serNum = strtol(cp, &cp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235
2236 /* Get the typenr specific for this buffer and convert it to
2237 * the global typenumber, as used for the sign name. */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002238 localTypeNum = strtol(cp, &cp, 10);
2239 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 typeNum = mapsigntype(buf, localTypeNum);
2241
2242 pos = get_off_or_lnum(buf->bufp, &args);
2243
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002244 cp = (char *)args;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245# ifdef NBDEBUG
2246 len =
2247# endif
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002248 strtol(cp, &cp, 10);
2249 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250# ifdef NBDEBUG
2251 if (len != -1)
2252 {
2253 nbdebug((" partial line annotation -- Not Yet Implemented!"));
2254 }
2255# endif
2256 if (serNum >= GUARDEDOFFSET)
2257 {
2258 nbdebug((" too many annotations! ignoring..."));
2259 return FAIL;
2260 }
2261 if (pos)
2262 {
2263 coloncmd(":sign place %d line=%d name=%d buffer=%d",
2264 serNum, pos->lnum, typeNum, buf->bufp->b_fnum);
2265 if (typeNum == curPCtype)
2266 coloncmd(":sign jump %d buffer=%d", serNum,
2267 buf->bufp->b_fnum);
2268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269#endif
2270/* =====================================================================*/
2271 }
2272 else if (streq((char *)cmd, "removeAnno"))
2273 {
2274#ifdef FEAT_SIGNS
2275 int serNum;
2276
2277 if (buf == NULL || buf->bufp == NULL)
2278 {
2279 nbdebug((" null bufp in removeAnno"));
2280 return FAIL;
2281 }
2282 doupdate = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002283 cp = (char *)args;
2284 serNum = strtol(cp, &cp, 10);
2285 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 coloncmd(":sign unplace %d buffer=%d",
2287 serNum, buf->bufp->b_fnum);
2288 redraw_buf_later(buf->bufp, NOT_VALID);
2289#endif
2290/* =====================================================================*/
2291 }
2292 else if (streq((char *)cmd, "moveAnnoToFront"))
2293 {
2294#ifdef FEAT_SIGNS
2295 nbdebug((" moveAnnoToFront: Not Yet Implemented!"));
2296#endif
2297/* =====================================================================*/
2298 }
2299 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard"))
2300 {
2301 int len;
2302 pos_T first;
2303 pos_T last;
2304 pos_T *pos;
2305 int un = (cmd[0] == 'u');
2306 static int guardId = GUARDEDOFFSET;
2307
2308 if (skip >= SKIP_STOP)
2309 {
2310 nbdebug((" Skipping %s command\n", (char *) cmd));
2311 return OK;
2312 }
2313
2314 nb_init_graphics();
2315
2316 if (buf == NULL || buf->bufp == NULL)
2317 {
2318 nbdebug((" null bufp in %s command", cmd));
2319 return FAIL;
2320 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002321 nb_set_curbuf(buf->bufp);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002322 cp = (char *)args;
2323 off = strtol(cp, &cp, 10);
2324 len = strtol(cp, NULL, 10);
2325 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 pos = off2pos(buf->bufp, off);
2327 doupdate = 1;
2328 if (!pos)
2329 nbdebug((" no such start pos in %s, %ld\n", cmd, off));
2330 else
2331 {
2332 first = *pos;
2333 pos = off2pos(buf->bufp, off + len - 1);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002334 if (pos != NULL && pos->col == 0)
2335 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 /*
2337 * In Java Swing the offset is a position between 2
2338 * characters. If col == 0 then we really want the
2339 * previous line as the end.
2340 */
2341 pos = off2pos(buf->bufp, off + len - 2);
2342 }
2343 if (!pos)
2344 nbdebug((" no such end pos in %s, %ld\n",
2345 cmd, off + len - 1));
2346 else
2347 {
2348 long lnum;
2349 last = *pos;
2350 /* set highlight for region */
2351 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "",
2352 first.lnum, first.col,
2353 last.lnum, last.col));
2354#ifdef FEAT_SIGNS
2355 for (lnum = first.lnum; lnum <= last.lnum; lnum++)
2356 {
2357 if (un)
2358 {
2359 /* never used */
2360 }
2361 else
2362 {
2363 if (buf_findsigntype_id(buf->bufp, lnum,
2364 GUARDED) == 0)
2365 {
2366 coloncmd(
2367 ":sign place %d line=%d name=%d buffer=%d",
2368 guardId++, lnum, GUARDED,
2369 buf->bufp->b_fnum);
2370 }
2371 }
2372 }
2373#endif
2374 redraw_buf_later(buf->bufp, NOT_VALID);
2375 }
2376 }
2377/* =====================================================================*/
2378 }
2379 else if (streq((char *)cmd, "startAtomic"))
2380 {
2381 inAtomic = 1;
2382/* =====================================================================*/
2383 }
2384 else if (streq((char *)cmd, "endAtomic"))
2385 {
2386 inAtomic = 0;
2387 if (needupdate)
2388 {
2389 doupdate = 1;
2390 needupdate = 0;
2391 }
2392/* =====================================================================*/
2393 }
2394 else if (streq((char *)cmd, "save"))
2395 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002396 /*
2397 * NOTE - This command is obsolete wrt NetBeans. Its left in
2398 * only for historical reasons.
2399 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 if (buf == NULL || buf->bufp == NULL)
2401 {
2402 nbdebug((" null bufp in %s command", cmd));
2403 return FAIL;
2404 }
2405
2406 /* the following is taken from ex_cmds.c (do_wqall function) */
2407 if (bufIsChanged(buf->bufp))
2408 {
2409 /* Only write if the buffer can be written. */
2410 if (p_write
2411 && !buf->bufp->b_p_ro
2412 && buf->bufp->b_ffname != NULL
2413#ifdef FEAT_QUICKFIX
2414 && !bt_dontwrite(buf->bufp)
2415#endif
2416 )
2417 {
2418 buf_write_all(buf->bufp, FALSE);
2419#ifdef FEAT_AUTOCMD
2420 /* an autocommand may have deleted the buffer */
2421 if (!buf_valid(buf->bufp))
2422 buf->bufp = NULL;
2423#endif
2424 }
2425 }
2426/* =====================================================================*/
2427 }
2428 else if (streq((char *)cmd, "netbeansBuffer"))
2429 {
2430 if (buf == NULL || buf->bufp == NULL)
2431 {
2432 nbdebug((" null bufp in %s command", cmd));
2433 return FAIL;
2434 }
2435 if (*args == 'T')
2436 {
2437 buf->bufp->b_netbeans_file = TRUE;
2438 buf->bufp->b_was_netbeans_file = TRUE;
2439 }
2440 else
2441 buf->bufp->b_netbeans_file = FALSE;
2442/* =====================================================================*/
2443 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002444 else if (streq((char *)cmd, "specialKeys"))
2445 {
2446 special_keys(args);
2447/* =====================================================================*/
2448 }
2449 else if (streq((char *)cmd, "actionMenuItem"))
2450 {
2451 /* not used yet */
2452/* =====================================================================*/
2453 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 else if (streq((char *)cmd, "version"))
2455 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002456 /* not used yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 }
2458 /*
2459 * Unrecognized command is ignored.
2460 */
2461 }
2462 if (inAtomic && doupdate)
2463 {
2464 needupdate = 1;
2465 doupdate = 0;
2466 }
2467
Bram Moolenaar009b2592004-10-24 19:18:58 +00002468 /*
2469 * Is this needed? I moved the netbeans_Xt_connect() later during startup
2470 * and it may no longer be necessary. If its not needed then needupdate
2471 * and doupdate can also be removed.
2472 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 if (buf != NULL && buf->initDone && doupdate)
2474 {
2475 update_screen(NOT_VALID);
2476 setcursor();
2477 out_flush();
2478 gui_update_cursor(TRUE, FALSE);
2479 gui_mch_flush();
2480 /* Quit a hit-return or more prompt. */
2481 if (State == HITRETURN || State == ASKMORE)
2482 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483#ifdef FEAT_GUI_GTK
2484 if (gtk_main_level() > 0)
2485 gtk_main_quit();
2486#endif
2487 }
2488 }
2489
2490 return retval;
2491}
2492
2493
2494/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002495 * If "buf" is not the current buffer try changing to a window that edits this
2496 * buffer. If there is no such window then close the current buffer and set
2497 * the current buffer as "buf".
2498 */
2499 static void
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00002500nb_set_curbuf(buf_T *buf)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002501{
2502 if (curbuf != buf && buf_jump_open_win(buf) == NULL)
2503 set_curbuf(buf, DOBUF_GOTO);
2504}
2505
2506/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 * Process a vim colon command.
2508 */
2509 static void
2510coloncmd(char *cmd, ...)
2511{
2512 char buf[1024];
2513 va_list ap;
2514
2515 va_start(ap, cmd);
2516 vsprintf(buf, cmd, ap);
2517 va_end(ap);
2518
2519 nbdebug((" COLONCMD %s\n", buf));
2520
2521/* ALT_INPUT_LOCK_ON; */
2522 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED);
2523/* ALT_INPUT_LOCK_OFF; */
2524
2525 setcursor(); /* restore the cursor position */
2526 out_flush(); /* make sure output has been written */
2527
2528 gui_update_cursor(TRUE, FALSE);
2529 gui_mch_flush();
2530}
2531
2532
2533/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002534 * Parse the specialKeys argument and issue the appropriate map commands.
2535 */
2536 static void
2537special_keys(char_u *args)
2538{
2539 char *save_str = nb_unquote(args, NULL);
2540 char *tok = strtok(save_str, " ");
2541 char *sep;
2542 char keybuf[64];
2543 char cmdbuf[256];
2544
2545 while (tok != NULL)
2546 {
2547 int i = 0;
2548
2549 if ((sep = strchr(tok, '-')) != NULL)
2550 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002551 *sep = NUL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002552 while (*tok)
2553 {
2554 switch (*tok)
2555 {
2556 case 'A':
2557 case 'M':
2558 case 'C':
2559 case 'S':
2560 keybuf[i++] = *tok;
2561 keybuf[i++] = '-';
2562 break;
2563 }
2564 tok++;
2565 }
2566 tok++;
2567 }
2568
2569 strcpy(&keybuf[i], tok);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002570 vim_snprintf(cmdbuf, sizeof(cmdbuf),
2571 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002572 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE);
2573 tok = strtok(NULL, " ");
2574 }
2575 vim_free(save_str);
2576}
2577
2578
2579 void
2580ex_nbkey(eap)
2581 exarg_T *eap;
2582{
2583 netbeans_keystring(0, (char *)eap->arg);
2584}
2585
2586
2587/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2589 */
2590 static void
2591nb_init_graphics(void)
2592{
2593 static int did_init = FALSE;
2594
2595 if (!did_init)
2596 {
2597 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black");
2598 coloncmd(":sign define %d linehl=NBGuarded", GUARDED);
2599
2600 did_init = TRUE;
2601 }
2602}
2603
2604/*
2605 * Convert key to netbeans name.
2606 */
2607 static void
2608netbeans_keyname(int key, char *buf)
2609{
2610 char *name = 0;
2611 char namebuf[2];
2612 int ctrl = 0;
2613 int shift = 0;
2614 int alt = 0;
2615
2616 if (mod_mask & MOD_MASK_CTRL)
2617 ctrl = 1;
2618 if (mod_mask & MOD_MASK_SHIFT)
2619 shift = 1;
2620 if (mod_mask & MOD_MASK_ALT)
2621 alt = 1;
2622
2623
2624 switch (key)
2625 {
2626 case K_F1: name = "F1"; break;
2627 case K_S_F1: name = "F1"; shift = 1; break;
2628 case K_F2: name = "F2"; break;
2629 case K_S_F2: name = "F2"; shift = 1; break;
2630 case K_F3: name = "F3"; break;
2631 case K_S_F3: name = "F3"; shift = 1; break;
2632 case K_F4: name = "F4"; break;
2633 case K_S_F4: name = "F4"; shift = 1; break;
2634 case K_F5: name = "F5"; break;
2635 case K_S_F5: name = "F5"; shift = 1; break;
2636 case K_F6: name = "F6"; break;
2637 case K_S_F6: name = "F6"; shift = 1; break;
2638 case K_F7: name = "F7"; break;
2639 case K_S_F7: name = "F7"; shift = 1; break;
2640 case K_F8: name = "F8"; break;
2641 case K_S_F8: name = "F8"; shift = 1; break;
2642 case K_F9: name = "F9"; break;
2643 case K_S_F9: name = "F9"; shift = 1; break;
2644 case K_F10: name = "F10"; break;
2645 case K_S_F10: name = "F10"; shift = 1; break;
2646 case K_F11: name = "F11"; break;
2647 case K_S_F11: name = "F11"; shift = 1; break;
2648 case K_F12: name = "F12"; break;
2649 case K_S_F12: name = "F12"; shift = 1; break;
2650 default:
2651 if (key >= ' ' && key <= '~')
2652 {
2653 /* Allow ASCII characters. */
2654 name = namebuf;
2655 namebuf[0] = key;
2656 namebuf[1] = NUL;
2657 }
2658 else
2659 name = "X";
2660 break;
2661 }
2662
2663 buf[0] = '\0';
2664 if (ctrl)
2665 strcat(buf, "C");
2666 if (shift)
2667 strcat(buf, "S");
2668 if (alt)
2669 strcat(buf, "M"); /* META */
2670 if (ctrl || shift || alt)
2671 strcat(buf, "-");
2672 strcat(buf, name);
2673}
2674
2675#ifdef FEAT_BEVAL
2676/*
2677 * Function to be called for balloon evaluation. Grabs the text under the
2678 * cursor and sends it to the debugger for evaluation. The debugger should
2679 * respond with a showBalloon command when there is a useful result.
2680 */
2681/*ARGSUSED*/
Bram Moolenaard62bec82005-03-07 22:56:57 +00002682 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683netbeans_beval_cb(
2684 BalloonEval *beval,
2685 int state)
2686{
Bram Moolenaard62bec82005-03-07 22:56:57 +00002687 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 char_u *text;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002689 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 int col;
2691 char buf[MAXPATHL * 2 + 25];
2692 char_u *p;
2693
2694 /* Don't do anything when 'ballooneval' is off, messages scrolled the
2695 * windows up or we have no connection. */
2696 if (!p_beval || msg_scrolled > 0 || !haveConnection)
2697 return;
2698
Bram Moolenaard62bec82005-03-07 22:56:57 +00002699 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 {
2701 /* Send debugger request. Only when the text is of reasonable
2702 * length. */
2703 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL)
2704 {
2705 p = nb_quote(text);
2706 if (p != NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002707 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002708 vim_snprintf(buf, sizeof(buf),
Bram Moolenaar89d40322006-08-29 15:30:07 +00002709 "0:balloonText=%d \"%s\"\n", r_cmdno, p);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002710 vim_free(p);
2711 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 nbdebug(("EVT: %s", buf));
2713 nb_send(buf, "netbeans_beval_cb");
2714 }
2715 vim_free(text);
2716 }
2717}
2718#endif
2719
2720/*
2721 * Tell netbeans that the window was opened, ready for commands.
2722 */
2723 void
2724netbeans_startup_done(void)
2725{
2726 char *cmd = "0:startupDone=0\n";
2727
Bram Moolenaar009b2592004-10-24 19:18:58 +00002728 if (usingNetbeans)
2729#ifdef FEAT_GUI_MOTIF
2730 netbeans_Xt_connect(app_context);
2731#else
2732# ifdef FEAT_GUI_GTK
2733 netbeans_gtk_connect();
Bram Moolenaardf177f62005-02-22 08:39:57 +00002734# else
2735# ifdef FEAT_GUI_W32
2736 netbeans_w32_connect();
2737# endif
Bram Moolenaar009b2592004-10-24 19:18:58 +00002738# endif
2739#endif
2740
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 if (!haveConnection)
2742 return;
2743
Bram Moolenaard62bec82005-03-07 22:56:57 +00002744#ifdef FEAT_BEVAL
2745 bevalServers |= BEVAL_NETBEANS;
2746#endif
2747
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 nbdebug(("EVT: %s", cmd));
2749 nb_send(cmd, "netbeans_startup_done");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750}
2751
Bram Moolenaar009b2592004-10-24 19:18:58 +00002752/*
2753 * Tell netbeans that we're exiting. This should be called right
2754 * before calling exit.
2755 */
2756 void
2757netbeans_send_disconnect()
2758{
2759 char buf[128];
2760
2761 if (haveConnection)
2762 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002763 sprintf(buf, "0:disconnect=%d\n", r_cmdno);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002764 nbdebug(("EVT: %s", buf));
2765 nb_send(buf, "netbeans_disconnect");
2766 }
2767}
2768
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_W32) || defined(PROTO)
2770/*
2771 * Tell netbeans that the window was moved or resized.
2772 */
2773 void
2774netbeans_frame_moved(int new_x, int new_y)
2775{
2776 char buf[128];
2777
2778 if (!haveConnection)
2779 return;
2780
2781 sprintf(buf, "0:geometry=%d %d %d %d %d\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002782 r_cmdno, (int)Columns, (int)Rows, new_x, new_y);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002783 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 nb_send(buf, "netbeans_frame_moved");
2785}
2786#endif
2787
2788/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002789 * Tell netbeans the user opened or activated a file.
2790 */
2791 void
2792netbeans_file_activated(buf_T *bufp)
2793{
2794 int bufno = nb_getbufno(bufp);
2795 nbbuf_T *bp = nb_get_buf(bufno);
2796 char buffer[2*MAXPATHL];
2797 char_u *q;
2798
2799 if (!haveConnection || dosetvisible)
2800 return;
2801
2802 q = nb_quote(bufp->b_ffname);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002803 if (q == NULL || bp == NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002804 return;
2805
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002806 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002807 bufno,
2808 bufno,
2809 (char *)q,
2810 "T", /* open in NetBeans */
2811 "F"); /* modified */
2812
2813 vim_free(q);
2814 nbdebug(("EVT: %s", buffer));
2815
2816 nb_send(buffer, "netbeans_file_opened");
2817}
2818
2819/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 * Tell netbeans the user opened a file.
2821 */
2822 void
Bram Moolenaar009b2592004-10-24 19:18:58 +00002823netbeans_file_opened(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824{
Bram Moolenaar009b2592004-10-24 19:18:58 +00002825 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 char buffer[2*MAXPATHL];
2827 char_u *q;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002828 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp));
2829 int bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830
2831 if (!haveConnection)
2832 return;
2833
Bram Moolenaar009b2592004-10-24 19:18:58 +00002834 q = nb_quote(bufp->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 if (q == NULL)
2836 return;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002837 if (bp != NULL)
2838 bnum = bufno;
2839 else
2840 bnum = 0;
2841
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002842 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002843 bnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 0,
2845 (char *)q,
2846 "T", /* open in NetBeans */
2847 "F"); /* modified */
2848
2849 vim_free(q);
2850 nbdebug(("EVT: %s", buffer));
2851
2852 nb_send(buffer, "netbeans_file_opened");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002853 if (p_acd && vim_chdirfile(bufp->b_ffname) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 shorten_fnames(TRUE);
2855}
2856
2857/*
2858 * Tell netbeans a file was closed.
2859 */
2860 void
2861netbeans_file_closed(buf_T *bufp)
2862{
2863 int bufno = nb_getbufno(bufp);
2864 nbbuf_T *nbbuf = nb_get_buf(bufno);
2865 char buffer[2*MAXPATHL];
2866
2867 if (!haveConnection || bufno < 0)
2868 return;
2869
2870 if (!netbeansCloseFile)
2871 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002872 nbdebug(("Ignoring file_closed for %s. File was closed from IDE\n",
2873 bufp->b_ffname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 return;
2875 }
2876
Bram Moolenaar009b2592004-10-24 19:18:58 +00002877 nbdebug(("netbeans_file_closed:\n"));
2878 nbdebug((" Closing bufno: %d", bufno));
2879 if (curbuf != NULL && curbuf != bufp)
2880 {
2881 nbdebug((" Curbuf bufno: %d\n", nb_getbufno(curbuf)));
2882 }
2883 else if (curbuf == bufp)
2884 {
2885 nbdebug((" curbuf == bufp\n"));
2886 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887
2888 if (bufno <= 0)
2889 return;
2890
Bram Moolenaar89d40322006-08-29 15:30:07 +00002891 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892
2893 nbdebug(("EVT: %s", buffer));
2894
2895 nb_send(buffer, "netbeans_file_closed");
2896
2897 if (nbbuf != NULL)
2898 nbbuf->bufp = NULL;
2899}
2900
2901/*
2902 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
2903 * Return NULL if there is no such buffer or changes are not to be reported.
2904 * Otherwise store the buffer number in "*bufnop".
2905 */
2906 static nbbuf_T *
2907nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop)
2908{
2909 int bufno;
2910 nbbuf_T *nbbuf;
2911
2912 if (!haveConnection || !netbeansFireChanges)
2913 return NULL; /* changes are not reported at all */
2914
2915 bufno = nb_getbufno(bufp);
2916 if (bufno <= 0)
2917 return NULL; /* file is not known to NetBeans */
2918
2919 nbbuf = nb_get_buf(bufno);
2920 if (nbbuf != NULL && !nbbuf->fireChanges)
2921 return NULL; /* changes in this buffer are not reported */
2922
2923 *bufnop = bufno;
2924 return nbbuf;
2925}
2926
2927/*
2928 * Tell netbeans the user inserted some text.
2929 */
2930 void
2931netbeans_inserted(
2932 buf_T *bufp,
2933 linenr_T linenr,
2934 colnr_T col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 char_u *txt,
2936 int newlen)
2937{
2938 char_u *buf;
2939 int bufno;
2940 nbbuf_T *nbbuf;
2941 pos_T pos;
2942 long off;
2943 char_u *p;
2944 char_u *newtxt;
2945
2946 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2947 if (nbbuf == NULL)
2948 return;
2949
Bram Moolenaar009b2592004-10-24 19:18:58 +00002950 /* Don't mark as modified for initial read */
2951 if (nbbuf->insertDone)
2952 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953
2954 pos.lnum = linenr;
2955 pos.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 off = pos2off(bufp, &pos);
2957
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 /* send the "insert" EVT */
2959 newtxt = alloc(newlen + 1);
Bram Moolenaarb6356332005-07-18 21:40:44 +00002960 vim_strncpy(newtxt, txt, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 p = nb_quote(newtxt);
2962 if (p != NULL)
2963 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002964 buf = alloc(128 + 2*newlen);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002965 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n",
2966 bufno, r_cmdno, off, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 nbdebug(("EVT: %s", buf));
2968 nb_send((char *)buf, "netbeans_inserted");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002969 vim_free(p);
2970 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972 vim_free(newtxt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973}
2974
2975/*
2976 * Tell netbeans some bytes have been removed.
2977 */
2978 void
2979netbeans_removed(
2980 buf_T *bufp,
2981 linenr_T linenr,
2982 colnr_T col,
2983 long len)
2984{
2985 char_u buf[128];
2986 int bufno;
2987 nbbuf_T *nbbuf;
2988 pos_T pos;
2989 long off;
2990
2991 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
2992 if (nbbuf == NULL)
2993 return;
2994
2995 if (len < 0)
2996 {
2997 nbdebug(("Negative len %ld in netbeans_removed()!", len));
2998 return;
2999 }
3000
3001 nbbuf->modified = 1;
3002
3003 pos.lnum = linenr;
3004 pos.col = col;
3005
3006 off = pos2off(bufp, &pos);
3007
Bram Moolenaar89d40322006-08-29 15:30:07 +00003008 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 nbdebug(("EVT: %s", buf));
3010 nb_send((char *)buf, "netbeans_removed");
3011}
3012
3013/*
3014 * Send netbeans an unmodufied command.
3015 */
3016/*ARGSUSED*/
3017 void
3018netbeans_unmodified(buf_T *bufp)
3019{
3020#if 0
3021 char_u buf[128];
3022 int bufno;
3023 nbbuf_T *nbbuf;
3024
3025 /* This has been disabled, because NetBeans considers a buffer modified
3026 * even when all changes have been undone. */
3027 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3028 if (nbbuf == NULL)
3029 return;
3030
3031 nbbuf->modified = 0;
3032
Bram Moolenaar89d40322006-08-29 15:30:07 +00003033 sprintf((char *)buf, "%d:unmodified=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034 nbdebug(("EVT: %s", buf));
3035 nb_send((char *)buf, "netbeans_unmodified");
3036#endif
3037}
3038
3039/*
3040 * Send a button release event back to netbeans. Its up to netbeans
3041 * to decide what to do (if anything) with this event.
3042 */
3043 void
3044netbeans_button_release(int button)
3045{
3046 char buf[128];
3047 int bufno;
3048
3049 bufno = nb_getbufno(curbuf);
3050
3051 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf)
3052 {
Bram Moolenaarc92ad2e2005-01-19 22:08:28 +00003053 int col = mouse_col - W_WINCOL(curwin) - (curwin->w_p_nu ? 9 : 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 long off = pos2off(curbuf, &curwin->w_cursor);
3055
3056 /* sync the cursor position */
Bram Moolenaar89d40322006-08-29 15:30:07 +00003057 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 nbdebug(("EVT: %s", buf));
3059 nb_send(buf, "netbeans_button_release[newDotAndMark]");
3060
Bram Moolenaar89d40322006-08-29 15:30:07 +00003061 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 button, (long)curwin->w_cursor.lnum, col);
3063 nbdebug(("EVT: %s", buf));
3064 nb_send(buf, "netbeans_button_release");
3065 }
3066}
3067
3068
3069/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00003070 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00003071 * kind of function key press. This function operates on a key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 */
3073 void
3074netbeans_keycommand(int key)
3075{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 char keyName[60];
Bram Moolenaar009b2592004-10-24 19:18:58 +00003077
3078 netbeans_keyname(key, keyName);
3079 netbeans_keystring(key, keyName);
3080}
3081
3082
3083/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00003084 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00003085 * kind of function key press. This function operates on a key string.
3086 */
3087 static void
3088netbeans_keystring(int key, char *keyName)
3089{
3090 char buf[2*MAXPATHL];
3091 int bufno = nb_getbufno(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092 long off;
3093 char_u *q;
3094
3095 if (!haveConnection)
3096 return;
3097
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098
3099 if (bufno == -1)
3100 {
3101 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
3102 q = curbuf->b_ffname == NULL ? (char_u *)""
3103 : nb_quote(curbuf->b_ffname);
3104 if (q == NULL)
3105 return;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003106 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 q,
3108 "T", /* open in NetBeans */
3109 "F"); /* modified */
3110 if (curbuf->b_ffname != NULL)
3111 vim_free(q);
3112 nbdebug(("EVT: %s", buf));
3113 nb_send(buf, "netbeans_keycommand");
3114
Bram Moolenaar5b625c52005-01-31 18:55:55 +00003115 if (key > 0)
3116 postpone_keycommand(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 return;
3118 }
3119
3120 /* sync the cursor position */
3121 off = pos2off(curbuf, &curwin->w_cursor);
Bram Moolenaar89d40322006-08-29 15:30:07 +00003122 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 nbdebug(("EVT: %s", buf));
3124 nb_send(buf, "netbeans_keycommand");
3125
3126 /* To work on Win32 you must apply patch to ExtEditor module
3127 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
3128 * more synchronous
3129 */
3130
3131 /* now send keyCommand event */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003132 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00003133 bufno, r_cmdno, keyName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 nbdebug(("EVT: %s", buf));
3135 nb_send(buf, "netbeans_keycommand");
3136
3137 /* New: do both at once and include the lnum/col. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003138 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00003139 bufno, r_cmdno, keyName,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col);
3141 nbdebug(("EVT: %s", buf));
3142 nb_send(buf, "netbeans_keycommand");
3143}
3144
3145
3146/*
3147 * Send a save event to netbeans.
3148 */
3149 void
3150netbeans_save_buffer(buf_T *bufp)
3151{
3152 char_u buf[64];
3153 int bufno;
3154 nbbuf_T *nbbuf;
3155
3156 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3157 if (nbbuf == NULL)
3158 return;
3159
3160 nbbuf->modified = 0;
3161
Bram Moolenaar89d40322006-08-29 15:30:07 +00003162 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 nbdebug(("EVT: %s", buf));
3164 nb_send((char *)buf, "netbeans_save_buffer");
3165}
3166
3167
3168/*
3169 * Send remove command to netbeans (this command has been turned off).
3170 */
3171 void
3172netbeans_deleted_all_lines(buf_T *bufp)
3173{
3174 char_u buf[64];
3175 int bufno;
3176 nbbuf_T *nbbuf;
3177
3178 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3179 if (nbbuf == NULL)
3180 return;
3181
Bram Moolenaar009b2592004-10-24 19:18:58 +00003182 /* Don't mark as modified for initial read */
3183 if (nbbuf->insertDone)
3184 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185
Bram Moolenaar89d40322006-08-29 15:30:07 +00003186 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 nbdebug(("EVT(suppressed): %s", buf));
3188/* nb_send(buf, "netbeans_deleted_all_lines"); */
3189}
3190
3191
3192/*
3193 * See if the lines are guarded. The top and bot parameters are from
3194 * u_savecommon(), these are the line above the change and the line below the
3195 * change.
3196 */
3197 int
3198netbeans_is_guarded(linenr_T top, linenr_T bot)
3199{
3200 signlist_T *p;
3201 int lnum;
3202
3203 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3204 if (p->id >= GUARDEDOFFSET)
3205 for (lnum = top + 1; lnum < bot; lnum++)
3206 if (lnum == p->lnum)
3207 return TRUE;
3208
3209 return FALSE;
3210}
3211
3212#if defined(FEAT_GUI_MOTIF) || defined(PROTO)
3213/*
3214 * We have multiple signs to draw at the same location. Draw the
3215 * multi-sign indicator instead. This is the Motif version.
3216 */
3217 void
3218netbeans_draw_multisign_indicator(int row)
3219{
3220 int i;
3221 int y;
3222 int x;
3223
3224 x = 0;
3225 y = row * gui.char_height + 2;
3226
3227 for (i = 0; i < gui.char_height - 3; i++)
3228 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++);
3229
3230 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y);
3231 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3232 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++);
3233 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y);
3234 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3235 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++);
3236 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3237}
3238#endif /* FEAT_GUI_MOTIF */
3239
3240#ifdef FEAT_GUI_GTK
3241/*
3242 * We have multiple signs to draw at the same location. Draw the
3243 * multi-sign indicator instead. This is the GTK/Gnome version.
3244 */
3245 void
3246netbeans_draw_multisign_indicator(int row)
3247{
3248 int i;
3249 int y;
3250 int x;
3251 GdkDrawable *drawable = gui.drawarea->window;
3252
3253 x = 0;
3254 y = row * gui.char_height + 2;
3255
3256 for (i = 0; i < gui.char_height - 3; i++)
3257 gdk_draw_point(drawable, gui.text_gc, x+2, y++);
3258
3259 gdk_draw_point(drawable, gui.text_gc, x+0, y);
3260 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3261 gdk_draw_point(drawable, gui.text_gc, x+4, y++);
3262 gdk_draw_point(drawable, gui.text_gc, x+1, y);
3263 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3264 gdk_draw_point(drawable, gui.text_gc, x+3, y++);
3265 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3266}
3267#endif /* FEAT_GUI_GTK */
3268
3269/*
3270 * If the mouse is clicked in the gutter of a line with multiple
3271 * annotations, cycle through the set of signs.
3272 */
3273 void
3274netbeans_gutter_click(linenr_T lnum)
3275{
3276 signlist_T *p;
3277
3278 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3279 {
3280 if (p->lnum == lnum && p->next && p->next->lnum == lnum)
3281 {
3282 signlist_T *tail;
3283
3284 /* remove "p" from list, reinsert it at the tail of the sublist */
3285 if (p->prev)
3286 p->prev->next = p->next;
3287 else
3288 curbuf->b_signlist = p->next;
3289 p->next->prev = p->prev;
3290 /* now find end of sublist and insert p */
3291 for (tail = p->next;
3292 tail->next && tail->next->lnum == lnum
3293 && tail->next->id < GUARDEDOFFSET;
3294 tail = tail->next)
3295 ;
3296 /* tail now points to last entry with same lnum (except
3297 * that "guarded" annotations are always last) */
3298 p->next = tail->next;
3299 if (tail->next)
3300 tail->next->prev = p;
3301 p->prev = tail;
3302 tail->next = p;
3303 update_debug_sign(curbuf, lnum);
3304 break;
3305 }
3306 }
3307}
3308
3309
3310/*
3311 * Add a sign of the reqested type at the requested location.
3312 *
3313 * Reverse engineering:
3314 * Apparently an annotation is defined the first time it is used in a buffer.
3315 * When the same annotation is used in two buffers, the second time we do not
3316 * need to define a new sign name but reuse the existing one. But since the
3317 * ID number used in the second buffer starts counting at one again, a mapping
3318 * is made from the ID specifically for the buffer to the global sign name
3319 * (which is a number).
3320 *
3321 * globalsignmap[] stores the signs that have been defined globally.
3322 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3323 * globalsignmap[].
3324 */
3325/*ARGSUSED*/
3326 static void
3327addsigntype(
3328 nbbuf_T *buf,
3329 int typeNum,
3330 char_u *typeName,
3331 char_u *tooltip,
3332 char_u *glyphFile,
3333 int use_fg,
3334 int fg,
3335 int use_bg,
3336 int bg)
3337{
3338 char fgbuf[32];
3339 char bgbuf[32];
3340 int i, j;
3341
3342 for (i = 0; i < globalsignmapused; i++)
3343 if (STRCMP(typeName, globalsignmap[i]) == 0)
3344 break;
3345
3346 if (i == globalsignmapused) /* not found; add it to global map */
3347 {
3348 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%d,%d)\n",
3349 typeNum, typeName, tooltip, glyphFile, fg, bg));
3350 if (use_fg || use_bg)
3351 {
3352 sprintf(fgbuf, "guifg=#%06x", fg & 0xFFFFFF);
3353 sprintf(bgbuf, "guibg=#%06x", bg & 0xFFFFFF);
3354
3355 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "",
3356 (use_bg) ? bgbuf : "");
3357 if (*glyphFile == NUL)
3358 /* no glyph, line highlighting only */
3359 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName);
3360 else if (vim_strsize(glyphFile) <= 2)
3361 /* one- or two-character glyph name, use as text glyph with
3362 * texthl */
3363 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1,
3364 glyphFile, typeName);
3365 else
3366 /* glyph, line highlighting */
3367 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1,
3368 glyphFile, typeName);
3369 }
3370 else
3371 /* glyph, no line highlighting */
3372 coloncmd(":sign define %d icon=%s", i + 1, glyphFile);
3373
3374 if (STRCMP(typeName,"CurrentPC") == 0)
3375 curPCtype = typeNum;
3376
3377 if (globalsignmapused == globalsignmaplen)
3378 {
3379 if (globalsignmaplen == 0) /* first allocation */
3380 {
3381 globalsignmaplen = 20;
3382 globalsignmap = (char **)alloc_clear(globalsignmaplen*sizeof(char *));
3383 }
3384 else /* grow it */
3385 {
3386 int incr;
3387 int oldlen = globalsignmaplen;
3388
3389 globalsignmaplen *= 2;
3390 incr = globalsignmaplen - oldlen;
3391 globalsignmap = (char **)vim_realloc(globalsignmap,
3392 globalsignmaplen * sizeof(char *));
3393 memset(globalsignmap + oldlen, 0, incr * sizeof(char *));
3394 }
3395 }
3396
3397 globalsignmap[i] = (char *)typeName;
3398 globalsignmapused = i + 1;
3399 }
3400
3401 /* check local map; should *not* be found! */
3402 for (j = 0; j < buf->signmapused; j++)
3403 if (buf->signmap[j] == i + 1)
3404 return;
3405
3406 /* add to local map */
3407 if (buf->signmapused == buf->signmaplen)
3408 {
3409 if (buf->signmaplen == 0) /* first allocation */
3410 {
3411 buf->signmaplen = 5;
3412 buf->signmap = (int *)alloc_clear(buf->signmaplen * sizeof(int *));
3413 }
3414 else /* grow it */
3415 {
3416 int incr;
3417 int oldlen = buf->signmaplen;
3418 buf->signmaplen *= 2;
3419 incr = buf->signmaplen - oldlen;
3420 buf->signmap = (int *)vim_realloc(buf->signmap,
3421 buf->signmaplen*sizeof(int *));
3422 memset(buf->signmap + oldlen, 0, incr * sizeof(int *));
3423 }
3424 }
3425
3426 buf->signmap[buf->signmapused++] = i + 1;
3427
3428}
3429
3430
3431/*
3432 * See if we have the requested sign type in the buffer.
3433 */
3434 static int
3435mapsigntype(nbbuf_T *buf, int localsigntype)
3436{
3437 if (--localsigntype >= 0 && localsigntype < buf->signmapused)
3438 return buf->signmap[localsigntype];
3439
3440 return 0;
3441}
3442
3443
3444/*
3445 * Compute length of buffer, don't print anything.
3446 */
3447 static long
3448get_buf_size(buf_T *bufp)
3449{
3450 linenr_T lnum;
3451 long char_count = 0;
3452 int eol_size;
3453 long last_check = 100000L;
3454
3455 if (bufp->b_ml.ml_flags & ML_EMPTY)
3456 return 0;
3457 else
3458 {
3459 if (get_fileformat(bufp) == EOL_DOS)
3460 eol_size = 2;
3461 else
3462 eol_size = 1;
3463 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum)
3464 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003465 char_count += (long)STRLEN(ml_get(lnum)) + eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 /* Check for a CTRL-C every 100000 characters */
3467 if (char_count > last_check)
3468 {
3469 ui_breakcheck();
3470 if (got_int)
3471 return char_count;
3472 last_check = char_count + 100000L;
3473 }
3474 }
3475 /* Correction for when last line doesn't have an EOL. */
3476 if (!bufp->b_p_eol && bufp->b_p_bin)
3477 char_count -= eol_size;
3478 }
3479
3480 return char_count;
3481}
3482
3483/*
3484 * Convert character offset to lnum,col
3485 */
3486 static pos_T *
3487off2pos(buf_T *buf, long offset)
3488{
3489 linenr_T lnum;
3490 static pos_T pos;
3491
3492 pos.lnum = 0;
3493 pos.col = 0;
3494#ifdef FEAT_VIRTUALEDIT
3495 pos.coladd = 0;
3496#endif
3497
3498 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3499 {
3500 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0)
3501 return NULL;
3502 pos.lnum = lnum;
3503 pos.col = offset;
3504 }
3505
3506 return &pos;
3507}
3508
3509/*
3510 * Convert an argument in the form "1234" to an offset and compute the
3511 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3512 * lnum/col.
3513 * "argp" is advanced to after the argument.
3514 * Return a pointer to the position, NULL if something is wrong.
3515 */
3516 static pos_T *
3517get_off_or_lnum(buf_T *buf, char_u **argp)
3518{
3519 static pos_T mypos;
3520 long off;
3521
3522 off = strtol((char *)*argp, (char **)argp, 10);
3523 if (**argp == '/')
3524 {
3525 mypos.lnum = (linenr_T)off;
3526 ++*argp;
3527 mypos.col = strtol((char *)*argp, (char **)argp, 10);
3528#ifdef FEAT_VIRTUALEDIT
3529 mypos.coladd = 0;
3530#endif
3531 return &mypos;
3532 }
3533 return off2pos(buf, off);
3534}
3535
3536
3537/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003538 * Convert (lnum,col) to byte offset in the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 */
3540 static long
3541pos2off(buf_T *buf, pos_T *pos)
3542{
3543 long offset = 0;
3544
3545 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3546 {
3547 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0)
3548 return 0;
3549 offset += pos->col;
3550 }
3551
3552 return offset;
3553}
3554
3555
Bram Moolenaar009b2592004-10-24 19:18:58 +00003556/*
3557 * This message is printed after NetBeans opens a new file. Its
3558 * similar to the message readfile() uses, but since NetBeans
3559 * doesn't normally call readfile, we do our own.
3560 */
3561 static void
3562print_read_msg(buf)
3563 nbbuf_T *buf;
3564{
3565 int lnum = buf->bufp->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003566 long nchars = (long)buf->bufp->b_orig_size;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003567 char_u c;
3568
3569 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
3570 c = FALSE;
3571
3572 if (buf->bufp->b_p_ro)
3573 {
3574 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
3575 c = TRUE;
3576 }
3577 if (!buf->bufp->b_start_eol)
3578 {
3579 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") : _("[Incomplete last line]"));
3580 c = TRUE;
3581 }
3582 msg_add_lines(c, (long)lnum, nchars);
3583
3584 /* Now display it */
3585 vim_free(keep_msg);
3586 keep_msg = NULL;
3587 msg_scrolled_ign = TRUE;
3588 msg_trunc_attr(IObuff, FALSE, 0);
3589 msg_scrolled_ign = FALSE;
3590}
3591
3592
3593/*
3594 * Print a message after NetBeans writes the file. This message should be identical
3595 * to the standard message a non-netbeans user would see when writing a file.
3596 */
3597 static void
3598print_save_msg(buf, nchars)
3599 nbbuf_T *buf;
3600 long nchars;
3601{
3602 char_u c;
3603 char_u *p;
3604
3605 if (nchars >= 0)
3606 {
3607 msg_add_fname(buf->bufp, buf->bufp->b_ffname); /* fname in IObuff with quotes */
3608 c = FALSE;
3609
3610 msg_add_lines(c, buf->bufp->b_ml.ml_line_count,
3611 (long)buf->bufp->b_orig_size);
3612
3613 vim_free(keep_msg);
3614 keep_msg = NULL;
3615 msg_scrolled_ign = TRUE;
3616 p = msg_trunc_attr(IObuff, FALSE, 0);
3617 if ((msg_scrolled && !need_wait_return) || !buf->initDone)
3618 {
3619 /* Need to repeat the message after redrawing when:
3620 * - When reading from stdin (the screen will be cleared next).
3621 * - When restart_edit is set (otherwise there will be a delay
3622 * before redrawing).
3623 * - When the screen was scrolled but there is no wait-return
3624 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003625 set_keep_msg(p, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003626 }
3627 msg_scrolled_ign = FALSE;
3628 /* add_to_input_buf((char_u *)"\f", 1); */
3629 }
3630 else
3631 {
3632 char_u ebuf[BUFSIZ];
3633
3634 STRCPY(ebuf, (char_u *)_("E505: "));
3635 STRCAT(ebuf, IObuff);
3636 STRCAT(ebuf, (char_u *)_("is read-only (add ! to override)"));
3637 STRCPY(IObuff, ebuf);
3638 emsg(IObuff);
3639 }
3640}
3641
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642#endif /* defined(FEAT_NETBEANS_INTG) */