blob: 67301767da986d8568328f61ee84bd3c61f2eee5 [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 Moolenaarc236c162008-07-13 17:41:49 +000019#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
Bram Moolenaarff064e12008-06-09 13:10:45 +000020# 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#ifdef WIN32
29# ifdef DEBUG
30# include <tchar.h> /* for _T definition for TRACEn macros */
31# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000032/* WinSock API is separated from C API, thus we can't use read(), write(),
33 * errno... */
34# define sock_errno WSAGetLastError()
35# define ECONNREFUSED WSAECONNREFUSED
36# ifdef EINTR
37# undef EINTR
38# endif
39# define EINTR WSAEINTR
40# define sock_write(sd, buf, len) send(sd, buf, len, 0)
41# define sock_read(sd, buf, len) recv(sd, buf, len, 0)
42# define sock_close(sd) closesocket(sd)
43# define sleep(t) Sleep(t*1000) /* WinAPI Sleep() accepts milliseconds */
44#else
45# include <netdb.h>
46# include <netinet/in.h>
47# include <sys/socket.h>
48# ifdef HAVE_LIBGEN_H
49# include <libgen.h>
50# endif
51# define sock_errno errno
52# define sock_write(sd, buf, len) write(sd, buf, len)
53# define sock_read(sd, buf, len) read(sd, buf, len)
54# define sock_close(sd) close(sd)
55#endif
56
57#include "version.h"
58
59#define INET_SOCKETS
60
61#define GUARDED 10000 /* typenr for "guarded" annotation */
62#define GUARDEDOFFSET 1000000 /* base for "guarded" sign id's */
63
64/* The first implementation (working only with Netbeans) returned "1.1". The
65 * protocol implemented here also supports A-A-P. */
Bram Moolenaarc65c4912006-11-14 17:29:46 +000066static char *ExtEdProtocolVersion = "2.4";
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
68static long pos2off __ARGS((buf_T *, pos_T *));
69static pos_T *off2pos __ARGS((buf_T *, long));
70static pos_T *get_off_or_lnum __ARGS((buf_T *buf, char_u **argp));
71static long get_buf_size __ARGS((buf_T *));
Bram Moolenaar009b2592004-10-24 19:18:58 +000072static void netbeans_keystring __ARGS((int key, char *keystr));
73static void special_keys __ARGS((char_u *args));
Bram Moolenaar071d4272004-06-13 20:20:40 +000074
75static void netbeans_connect __ARGS((void));
76static int getConnInfo __ARGS((char *file, char **host, char **port, char **password));
77
78static void nb_init_graphics __ARGS((void));
79static void coloncmd __ARGS((char *cmd, ...));
Bram Moolenaar8b6144b2006-02-08 09:20:24 +000080static void nb_set_curbuf __ARGS((buf_T *buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000081#ifdef FEAT_GUI_MOTIF
82static void messageFromNetbeans __ARGS((XtPointer, int *, XtInputId *));
83#endif
84#ifdef FEAT_GUI_GTK
85static void messageFromNetbeans __ARGS((gpointer, gint, GdkInputCondition));
86#endif
87static void nb_parse_cmd __ARGS((char_u *));
88static int nb_do_cmd __ARGS((int, char_u *, int, int, char_u *));
89static void nb_send __ARGS((char *buf, char *fun));
Bram Moolenaar071d4272004-06-13 20:20:40 +000090
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000091#ifdef WIN64
92typedef __int64 NBSOCK;
93#else
94typedef int NBSOCK;
95#endif
96
97static NBSOCK sd = -1; /* socket fd for Netbeans connection */
Bram Moolenaar071d4272004-06-13 20:20:40 +000098#ifdef FEAT_GUI_MOTIF
99static XtInputId inputHandler; /* Cookie for input */
100#endif
101#ifdef FEAT_GUI_GTK
102static gint inputHandler; /* Cookie for input */
103#endif
104#ifdef FEAT_GUI_W32
105static int inputHandler = -1; /* simply ret.value of WSAAsyncSelect() */
106extern HWND s_hwnd; /* Gvim's Window handle */
107#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +0000108static int r_cmdno; /* current command number for reply */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109static int haveConnection = FALSE; /* socket is connected and
110 initialization is done */
Bram Moolenaar009b2592004-10-24 19:18:58 +0000111#ifdef FEAT_GUI_MOTIF
112static void netbeans_Xt_connect __ARGS((void *context));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000113#endif
114#ifdef FEAT_GUI_GTK
Bram Moolenaar009b2592004-10-24 19:18:58 +0000115static void netbeans_gtk_connect __ARGS((void));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000116#endif
117#ifdef FEAT_GUI_W32
Bram Moolenaar009b2592004-10-24 19:18:58 +0000118static void netbeans_w32_connect __ARGS((void));
Bram Moolenaar009b2592004-10-24 19:18:58 +0000119#endif
120
121static int dosetvisible = FALSE;
122
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123/*
124 * Include the debugging code if wanted.
125 */
126#ifdef NBDEBUG
127# include "nbdebug.c"
128#endif
129
130/* Connect back to Netbeans process */
Bram Moolenaar009b2592004-10-24 19:18:58 +0000131#ifdef FEAT_GUI_MOTIF
132 static void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133netbeans_Xt_connect(void *context)
134{
135 netbeans_connect();
136 if (sd > 0)
137 {
138 /* tell notifier we are interested in being called
139 * when there is input on the editor connection socket
140 */
141 inputHandler = XtAppAddInput((XtAppContext)context, sd,
142 (XtPointer)(XtInputReadMask + XtInputExceptMask),
143 messageFromNetbeans, NULL);
144 }
145}
146
147 static void
148netbeans_disconnect(void)
149{
150 if (inputHandler != (XtInputId)NULL)
151 {
152 XtRemoveInput(inputHandler);
153 inputHandler = (XtInputId)NULL;
154 }
155 sd = -1;
156 haveConnection = FALSE;
Bram Moolenaard62bec82005-03-07 22:56:57 +0000157# ifdef FEAT_BEVAL
158 bevalServers &= ~BEVAL_NETBEANS;
159# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160}
161#endif /* FEAT_MOTIF_GUI */
162
Bram Moolenaar009b2592004-10-24 19:18:58 +0000163#ifdef FEAT_GUI_GTK
164 static void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165netbeans_gtk_connect(void)
166{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167 netbeans_connect();
168 if (sd > 0)
169 {
170 /*
171 * Tell gdk we are interested in being called when there
172 * is input on the editor connection socket
173 */
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000174 inputHandler = gdk_input_add((gint)sd, (GdkInputCondition)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 ((int)GDK_INPUT_READ + (int)GDK_INPUT_EXCEPTION),
176 messageFromNetbeans, NULL);
177 }
178}
179
180 static void
181netbeans_disconnect(void)
182{
183 if (inputHandler != 0)
184 {
185 gdk_input_remove(inputHandler);
186 inputHandler = 0;
187 }
188 sd = -1;
189 haveConnection = FALSE;
Bram Moolenaard62bec82005-03-07 22:56:57 +0000190# ifdef FEAT_BEVAL
191 bevalServers &= ~BEVAL_NETBEANS;
192# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193}
194#endif /* FEAT_GUI_GTK */
195
Bram Moolenaar5b625c52005-01-31 18:55:55 +0000196#if defined(FEAT_GUI_W32) || defined(PROTO)
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000197 static void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198netbeans_w32_connect(void)
199{
200 netbeans_connect();
201 if (sd > 0)
202 {
203 /*
204 * Tell Windows we are interested in receiving message when there
205 * is input on the editor connection socket
206 */
207 inputHandler = WSAAsyncSelect(sd, s_hwnd, WM_NETBEANS, FD_READ);
208 }
209}
210
211 static void
212netbeans_disconnect(void)
213{
214 if (inputHandler == 0)
215 {
216 WSAAsyncSelect(sd, s_hwnd, 0, 0);
217 inputHandler = -1;
218 }
219 sd = -1;
220 haveConnection = FALSE;
Bram Moolenaard62bec82005-03-07 22:56:57 +0000221# ifdef FEAT_BEVAL
222 bevalServers &= ~BEVAL_NETBEANS;
223# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224}
225#endif /* FEAT_GUI_W32 */
226
227#define NB_DEF_HOST "localhost"
228#define NB_DEF_ADDR "3219"
229#define NB_DEF_PASS "changeme"
230
231 static void
232netbeans_connect(void)
233{
234#ifdef INET_SOCKETS
235 struct sockaddr_in server;
236 struct hostent * host;
237# ifdef FEAT_GUI_W32
238 u_short port;
239# else
240 int port;
241#endif
242#else
243 struct sockaddr_un server;
244#endif
245 char buf[32];
246 char *hostname = NULL;
247 char *address = NULL;
248 char *password = NULL;
249 char *fname;
250 char *arg = NULL;
251
252 if (netbeansArg[3] == '=')
253 {
254 /* "-nb=fname": Read info from specified file. */
255 if (getConnInfo(netbeansArg + 4, &hostname, &address, &password)
256 == FAIL)
257 return;
258 }
259 else
260 {
261 if (netbeansArg[3] == ':')
262 /* "-nb:<host>:<addr>:<password>": get info from argument */
263 arg = netbeansArg + 4;
264 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL)
265 {
266 /* "-nb": get info from file specified in environment */
267 if (getConnInfo(fname, &hostname, &address, &password) == FAIL)
268 return;
269 }
270 else
271 {
272 if (arg != NULL)
273 {
274 /* "-nb:<host>:<addr>:<password>": get info from argument */
275 hostname = arg;
276 address = strchr(hostname, ':');
277 if (address != NULL)
278 {
279 *address++ = '\0';
280 password = strchr(address, ':');
281 if (password != NULL)
282 *password++ = '\0';
283 }
284 }
285
286 /* Get the missing values from the environment. */
287 if (hostname == NULL || *hostname == '\0')
288 hostname = getenv("__NETBEANS_HOST");
289 if (address == NULL)
290 address = getenv("__NETBEANS_SOCKET");
291 if (password == NULL)
292 password = getenv("__NETBEANS_VIM_PASSWORD");
293
294 /* Move values to allocated memory. */
295 if (hostname != NULL)
296 hostname = (char *)vim_strsave((char_u *)hostname);
297 if (address != NULL)
298 address = (char *)vim_strsave((char_u *)address);
299 if (password != NULL)
300 password = (char *)vim_strsave((char_u *)password);
301 }
302 }
303
304 /* Use the default when a value is missing. */
305 if (hostname == NULL || *hostname == '\0')
306 {
307 vim_free(hostname);
308 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST);
309 }
310 if (address == NULL || *address == '\0')
311 {
312 vim_free(address);
313 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR);
314 }
315 if (password == NULL || *password == '\0')
316 {
317 vim_free(password);
318 password = (char *)vim_strsave((char_u *)NB_DEF_PASS);
319 }
320 if (hostname == NULL || address == NULL || password == NULL)
321 goto theend; /* out of memory */
322
323#ifdef INET_SOCKETS
324 port = atoi(address);
325
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000326 if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000328 nbdebug(("error in socket() in netbeans_connect()\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 PERROR("socket() in netbeans_connect()");
330 goto theend;
331 }
332
333 /* Get the server internet address and put into addr structure */
334 /* fill in the socket address structure and connect to server */
335 memset((char *)&server, '\0', sizeof(server));
336 server.sin_family = AF_INET;
337 server.sin_port = htons(port);
338 if ((host = gethostbyname(hostname)) == NULL)
339 {
340 if (mch_access(hostname, R_OK) >= 0)
341 {
342 /* DEBUG: input file */
343 sd = mch_open(hostname, O_RDONLY, 0);
344 goto theend;
345 }
Bram Moolenaarf2330482008-06-24 20:19:36 +0000346 nbdebug(("error in gethostbyname() in netbeans_connect()\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 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 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000355 nbdebug(("error in socket() in netbeans_connect()\n"));
356 PERROR("socket() in netbeans_connect()");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 goto theend;
358 }
359
360 server.sun_family = AF_UNIX;
361 strcpy(server.sun_path, address);
362#endif
363 /* Connect to server */
364 if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
365 {
366 nbdebug(("netbeans_connect: Connect failed with errno %d\n", sock_errno));
367 if (sock_errno == ECONNREFUSED)
368 {
369 sock_close(sd);
370#ifdef INET_SOCKETS
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000371 if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000373 nbdebug(("socket()#2 in netbeans_connect()\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 PERROR("socket()#2 in netbeans_connect()");
375 goto theend;
376 }
377#else
378 if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
379 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000380 nbdebug(("socket()#2 in netbeans_connect()\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 PERROR("socket()#2 in netbeans_connect()");
382 goto theend;
383 }
384#endif
385 if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
386 {
387 int retries = 36;
388 int success = FALSE;
389 while (retries--
390 && ((sock_errno == ECONNREFUSED) || (sock_errno == EINTR)))
391 {
392 nbdebug(("retrying...\n"));
393 sleep(5);
394 if (connect(sd, (struct sockaddr *)&server,
395 sizeof(server)) == 0)
396 {
397 success = TRUE;
398 break;
399 }
400 }
401 if (!success)
402 {
403 /* Get here when the server can't be found. */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000404 nbdebug(("Cannot connect to Netbeans #2\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 PERROR(_("Cannot connect to Netbeans #2"));
406 getout(1);
407 }
408 }
409
410 }
411 else
412 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000413 nbdebug(("Cannot connect to Netbeans\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 PERROR(_("Cannot connect to Netbeans"));
415 getout(1);
416 }
417 }
418
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000419 vim_snprintf(buf, sizeof(buf), "AUTH %s\n", password);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 nb_send(buf, "netbeans_connect");
421
422 sprintf(buf, "0:version=0 \"%s\"\n", ExtEdProtocolVersion);
423 nb_send(buf, "externaleditor_version");
424
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425/* nb_init_graphics(); delay until needed */
426
427 haveConnection = TRUE;
428
429theend:
430 vim_free(hostname);
431 vim_free(address);
432 vim_free(password);
433 return;
434}
435
436/*
437 * Obtain the NetBeans hostname, port address and password from a file.
438 * Return the strings in allocated memory.
439 * Return FAIL if the file could not be read, OK otherwise (no matter what it
440 * contains).
441 */
442 static int
443getConnInfo(char *file, char **host, char **port, char **auth)
444{
445 FILE *fp;
446 char_u buf[BUFSIZ];
447 char_u *lp;
448 char_u *nl;
449#ifdef UNIX
450 struct stat st;
451
452 /*
453 * For Unix only accept the file when it's not accessible by others.
454 * The open will then fail if we don't own the file.
455 */
456 if (mch_stat(file, &st) == 0 && (st.st_mode & 0077) != 0)
457 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000458 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n",
459 file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 EMSG2(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""),
461 file);
462 return FAIL;
463 }
464#endif
465
466 fp = mch_fopen(file, "r");
467 if (fp == NULL)
468 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000469 nbdebug(("Cannot open NetBeans connection info file\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 PERROR("E660: Cannot open NetBeans connection info file");
471 return FAIL;
472 }
473
474 /* Read the file. There should be one of each parameter */
475 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL)
476 {
477 if ((nl = vim_strchr(lp, '\n')) != NULL)
478 *nl = 0; /* strip off the trailing newline */
479
480 if (STRNCMP(lp, "host=", 5) == 0)
481 {
482 vim_free(*host);
483 *host = (char *)vim_strsave(&buf[5]);
484 }
485 else if (STRNCMP(lp, "port=", 5) == 0)
486 {
487 vim_free(*port);
488 *port = (char *)vim_strsave(&buf[5]);
489 }
490 else if (STRNCMP(lp, "auth=", 5) == 0)
491 {
492 vim_free(*auth);
493 *auth = (char *)vim_strsave(&buf[5]);
494 }
495 }
496 fclose(fp);
497
498 return OK;
499}
500
501
502struct keyqueue
503{
504 int key;
505 struct keyqueue *next;
506 struct keyqueue *prev;
507};
508
509typedef struct keyqueue keyQ_T;
510
511static keyQ_T keyHead; /* dummy node, header for circular queue */
512
513
514/*
515 * Queue up key commands sent from netbeans.
516 */
517 static void
518postpone_keycommand(int key)
519{
520 keyQ_T *node;
521
522 node = (keyQ_T *)alloc(sizeof(keyQ_T));
523
524 if (keyHead.next == NULL) /* initialize circular queue */
525 {
526 keyHead.next = &keyHead;
527 keyHead.prev = &keyHead;
528 }
529
530 /* insert node at tail of queue */
531 node->next = &keyHead;
532 node->prev = keyHead.prev;
533 keyHead.prev->next = node;
534 keyHead.prev = node;
535
536 node->key = key;
537}
538
539/*
540 * Handle any queued-up NetBeans keycommands to be send.
541 */
542 static void
543handle_key_queue(void)
544{
545 while (keyHead.next && keyHead.next != &keyHead)
546 {
547 /* first, unlink the node */
548 keyQ_T *node = keyHead.next;
549 keyHead.next = node->next;
550 node->next->prev = node->prev;
551
552 /* now, send the keycommand */
553 netbeans_keycommand(node->key);
554
555 /* Finally, dispose of the node */
556 vim_free(node);
557 }
558}
559
560
561struct cmdqueue
562{
563 char_u *buffer;
564 struct cmdqueue *next;
565 struct cmdqueue *prev;
566};
567
568typedef struct cmdqueue queue_T;
569
570static queue_T head; /* dummy node, header for circular queue */
571
572
573/*
574 * Put the buffer on the work queue; possibly save it to a file as well.
575 */
576 static void
577save(char_u *buf, int len)
578{
579 queue_T *node;
580
581 node = (queue_T *)alloc(sizeof(queue_T));
582 if (node == NULL)
583 return; /* out of memory */
584 node->buffer = alloc(len + 1);
585 if (node->buffer == NULL)
586 {
587 vim_free(node);
588 return; /* out of memory */
589 }
590 mch_memmove(node->buffer, buf, (size_t)len);
591 node->buffer[len] = NUL;
592
593 if (head.next == NULL) /* initialize circular queue */
594 {
595 head.next = &head;
596 head.prev = &head;
597 }
598
599 /* insert node at tail of queue */
600 node->next = &head;
601 node->prev = head.prev;
602 head.prev->next = node;
603 head.prev = node;
604
605#ifdef NBDEBUG
606 {
607 static int outfd = -2;
608
609 /* possibly write buffer out to a file */
610 if (outfd == -3)
611 return;
612
613 if (outfd == -2)
614 {
615 char *file = getenv("__NETBEANS_SAVE");
616 if (file == NULL)
617 outfd = -3;
618 else
619 outfd = mch_open(file, O_WRONLY|O_CREAT|O_TRUNC, 0666);
620 }
621
622 if (outfd >= 0)
623 write(outfd, buf, len);
624 }
625#endif
626}
627
628
629/*
630 * While there's still a command in the work queue, parse and execute it.
631 */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000632 void
633netbeans_parse_messages(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634{
635 char_u *p;
636 queue_T *node;
637
Bram Moolenaarf2330482008-06-24 20:19:36 +0000638 while (head.next != NULL && head.next != &head)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 {
640 node = head.next;
641
642 /* Locate the first line in the first buffer. */
643 p = vim_strchr(node->buffer, '\n');
644 if (p == NULL)
645 {
646 /* Command isn't complete. If there is no following buffer,
647 * return (wait for more). If there is another buffer following,
648 * prepend the text to that buffer and delete this one. */
649 if (node->next == &head)
650 return;
Bram Moolenaarf2330482008-06-24 20:19:36 +0000651 p = alloc((unsigned)(STRLEN(node->buffer)
652 + STRLEN(node->next->buffer) + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 if (p == NULL)
654 return; /* out of memory */
655 STRCPY(p, node->buffer);
656 STRCAT(p, node->next->buffer);
657 vim_free(node->next->buffer);
658 node->next->buffer = p;
659
660 /* dispose of the node and buffer */
661 head.next = node->next;
662 node->next->prev = node->prev;
663 vim_free(node->buffer);
664 vim_free(node);
665 }
666 else
667 {
668 /* There is a complete command at the start of the buffer.
669 * Terminate it with a NUL. When no more text is following unlink
670 * the buffer. Do this before executing, because new buffers can
671 * be added while busy handling the command. */
672 *p++ = NUL;
673 if (*p == NUL)
674 {
675 head.next = node->next;
676 node->next->prev = node->prev;
677 }
678
679 /* now, parse and execute the commands */
680 nb_parse_cmd(node->buffer);
681
682 if (*p == NUL)
683 {
684 /* buffer finished, dispose of the node and buffer */
685 vim_free(node->buffer);
686 vim_free(node);
687 }
688 else
689 {
690 /* more follows, move to the start */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000691 STRMOVE(node->buffer, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 }
693 }
694 }
695}
696
697/* Buffer size for reading incoming messages. */
698#define MAXMSGSIZE 4096
699
700/*
701 * Read and process a command from netbeans.
702 */
703/*ARGSUSED*/
704#if defined(FEAT_GUI_W32) || defined(PROTO)
705/* Use this one when generating prototypes, the others are static. */
706 void
707messageFromNetbeansW32()
708#else
709# ifdef FEAT_GUI_MOTIF
710 static void
711messageFromNetbeans(XtPointer clientData, int *unused1, XtInputId *unused2)
712# endif
713# ifdef FEAT_GUI_GTK
714 static void
715messageFromNetbeans(gpointer clientData, gint unused1,
716 GdkInputCondition unused2)
717# endif
718#endif
719{
720 static char_u *buf = NULL;
721 int len;
722 int readlen = 0;
Bram Moolenaarf2330482008-06-24 20:19:36 +0000723#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 static int level = 0;
Bram Moolenaarf2330482008-06-24 20:19:36 +0000725#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726
727 if (sd < 0)
728 {
729 nbdebug(("messageFromNetbeans() called without a socket\n"));
730 return;
731 }
732
Bram Moolenaarf2330482008-06-24 20:19:36 +0000733#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 ++level; /* recursion guard; this will be called from the X event loop */
Bram Moolenaarf2330482008-06-24 20:19:36 +0000735#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736
737 /* Allocate a buffer to read into. */
738 if (buf == NULL)
739 {
740 buf = alloc(MAXMSGSIZE);
741 if (buf == NULL)
742 return; /* out of memory! */
743 }
744
745 /* Keep on reading for as long as there is something to read. */
746 for (;;)
747 {
748 len = sock_read(sd, buf, MAXMSGSIZE);
749 if (len <= 0)
750 break; /* error or nothing more to read */
751
752 /* Store the read message in the queue. */
753 save(buf, len);
754 readlen += len;
755 if (len < MAXMSGSIZE)
756 break; /* did read everything that's available */
757 }
758
759 if (readlen <= 0)
760 {
761 /* read error or didn't read anything */
762 netbeans_disconnect();
763 nbdebug(("messageFromNetbeans: Error in read() from socket\n"));
764 if (len < 0)
Bram Moolenaarf2330482008-06-24 20:19:36 +0000765 {
766 nbdebug(("read from Netbeans socket\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 PERROR(_("read from Netbeans socket"));
Bram Moolenaarf2330482008-06-24 20:19:36 +0000768 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000769 return; /* don't try to parse it */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 }
771
Bram Moolenaar61665aa2008-12-24 11:20:53 +0000772#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
773 /* Let the main loop handle messages. */
774# ifdef FEAT_GUI_GTK
Bram Moolenaarf2330482008-06-24 20:19:36 +0000775 if (gtk_main_level() > 0)
776 gtk_main_quit();
Bram Moolenaar61665aa2008-12-24 11:20:53 +0000777# endif
Bram Moolenaarf2330482008-06-24 20:19:36 +0000778#else
Bram Moolenaar61665aa2008-12-24 11:20:53 +0000779 /* Parse the messages now, but avoid recursion. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 if (level == 1)
Bram Moolenaarf2330482008-06-24 20:19:36 +0000781 netbeans_parse_messages();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782
783 --level;
Bram Moolenaarf2330482008-06-24 20:19:36 +0000784#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785}
786
787/*
788 * Handle one NUL terminated command.
789 *
790 * format of a command from netbeans:
791 *
792 * 6:setTitle!84 "a.c"
793 *
794 * bufno
795 * colon
796 * cmd
797 * !
798 * cmdno
799 * args
800 *
801 * for function calls, the ! is replaced by a /
802 */
803 static void
804nb_parse_cmd(char_u *cmd)
805{
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000806 char *verb;
807 char *q;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 int bufno;
809 int isfunc = -1;
810
811 if (STRCMP(cmd, "DISCONNECT") == 0)
812 {
813 /* We assume the server knows that we can safely exit! */
814 if (sd >= 0)
815 sock_close(sd);
816 /* Disconnect before exiting, Motif hangs in a Select error
817 * message otherwise. */
818 netbeans_disconnect();
819 getout(0);
820 /* NOTREACHED */
821 }
822
823 if (STRCMP(cmd, "DETACH") == 0)
824 {
825 /* The IDE is breaking the connection. */
826 if (sd >= 0)
827 sock_close(sd);
828 netbeans_disconnect();
829 return;
830 }
831
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000832 bufno = strtol((char *)cmd, &verb, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833
834 if (*verb != ':')
835 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000836 nbdebug((" missing colon: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 EMSG2("E627: missing colon: %s", cmd);
838 return;
839 }
840 ++verb; /* skip colon */
841
842 for (q = verb; *q; q++)
843 {
844 if (*q == '!')
845 {
846 *q++ = NUL;
847 isfunc = 0;
848 break;
849 }
850 else if (*q == '/')
851 {
852 *q++ = NUL;
853 isfunc = 1;
854 break;
855 }
856 }
857
858 if (isfunc < 0)
859 {
Bram Moolenaarf2330482008-06-24 20:19:36 +0000860 nbdebug((" missing ! or / in: %s\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 EMSG2("E628: missing ! or / in: %s", cmd);
862 return;
863 }
864
Bram Moolenaar89d40322006-08-29 15:30:07 +0000865 r_cmdno = strtol(q, &q, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866
Bram Moolenaar349b2f62004-10-11 10:00:50 +0000867 q = (char *)skipwhite((char_u *)q);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868
Bram Moolenaar89d40322006-08-29 15:30:07 +0000869 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 {
Bram Moolenaar009b2592004-10-24 19:18:58 +0000871#ifdef NBDEBUG
872 /*
873 * This happens because the ExtEd can send a cammand or 2 after
874 * doing a stopDocumentListen command. It doesn't harm anything
875 * so I'm disabling it except for debugging.
876 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd));
878 EMSG("E629: bad return from nb_do_cmd");
Bram Moolenaar009b2592004-10-24 19:18:58 +0000879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 }
881}
882
883struct nbbuf_struct
884{
885 buf_T *bufp;
886 unsigned int fireChanges:1;
887 unsigned int initDone:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000888 unsigned int insertDone:1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 unsigned int modified:1;
Bram Moolenaar009b2592004-10-24 19:18:58 +0000890 int nbbuf_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 char *displayname;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 int *signmap;
893 short_u signmaplen;
894 short_u signmapused;
895};
896
897typedef struct nbbuf_struct nbbuf_T;
898
899static nbbuf_T *buf_list = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000900static int buf_list_size = 0; /* size of buf_list */
901static int buf_list_used = 0; /* nr of entries in buf_list actually in use */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902
903static char **globalsignmap;
904static int globalsignmaplen;
905static int globalsignmapused;
906
907static int mapsigntype __ARGS((nbbuf_T *, int localsigntype));
908static void addsigntype __ARGS((nbbuf_T *, int localsigntype, char_u *typeName,
909 char_u *tooltip, char_u *glyphfile,
910 int usefg, int fg, int usebg, int bg));
Bram Moolenaar009b2592004-10-24 19:18:58 +0000911static void print_read_msg __ARGS((nbbuf_T *buf));
912static void print_save_msg __ARGS((nbbuf_T *buf, long nchars));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913
914static int curPCtype = -1;
915
916/*
917 * Get the Netbeans buffer number for the specified buffer.
918 */
919 static int
920nb_getbufno(buf_T *bufp)
921{
922 int i;
923
924 for (i = 0; i < buf_list_used; i++)
925 if (buf_list[i].bufp == bufp)
926 return i;
927 return -1;
928}
929
930/*
931 * Is this a NetBeans-owned buffer?
932 */
933 int
934isNetbeansBuffer(buf_T *bufp)
935{
Bram Moolenaar009b2592004-10-24 19:18:58 +0000936 return usingNetbeans && bufp->b_netbeans_file;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937}
938
939/*
940 * NetBeans and Vim have different undo models. In Vim, the file isn't
941 * changed if changes are undone via the undo command. In NetBeans, once
942 * a change has been made the file is marked as modified until saved. It
943 * doesn't matter if the change was undone.
944 *
945 * So this function is for the corner case where Vim thinks a buffer is
946 * unmodified but NetBeans thinks it IS modified.
947 */
948 int
949isNetbeansModified(buf_T *bufp)
950{
Bram Moolenaar009b2592004-10-24 19:18:58 +0000951 if (usingNetbeans && bufp->b_netbeans_file)
952 {
953 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954
Bram Moolenaar009b2592004-10-24 19:18:58 +0000955 if (bufno > 0)
956 return buf_list[bufno].modified;
957 else
958 return FALSE;
959 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 else
961 return FALSE;
962}
963
964/*
965 * Given a Netbeans buffer number, return the netbeans buffer.
966 * Returns NULL for 0 or a negative number. A 0 bufno means a
967 * non-buffer related command has been sent.
968 */
969 static nbbuf_T *
970nb_get_buf(int bufno)
971{
972 /* find or create a buffer with the given number */
973 int incr;
974
975 if (bufno <= 0)
976 return NULL;
977
978 if (!buf_list)
979 {
980 /* initialize */
981 buf_list = (nbbuf_T *)alloc_clear(100 * sizeof(nbbuf_T));
982 buf_list_size = 100;
983 }
984 if (bufno >= buf_list_used) /* new */
985 {
986 if (bufno >= buf_list_size) /* grow list */
987 {
988 incr = bufno - buf_list_size + 90;
989 buf_list_size += incr;
990 buf_list = (nbbuf_T *)vim_realloc(
991 buf_list, buf_list_size * sizeof(nbbuf_T));
992 memset(buf_list + buf_list_size - incr, 0, incr * sizeof(nbbuf_T));
993 }
994
995 while (buf_list_used <= bufno)
996 {
997 /* Default is to fire text changes. */
998 buf_list[buf_list_used].fireChanges = 1;
999 ++buf_list_used;
1000 }
1001 }
1002
1003 return buf_list + bufno;
1004}
1005
1006/*
1007 * Return the number of buffers that are modified.
1008 */
1009 static int
1010count_changed_buffers(void)
1011{
1012 buf_T *bufp;
1013 int n;
1014
1015 n = 0;
1016 for (bufp = firstbuf; bufp != NULL; bufp = bufp->b_next)
1017 if (bufp->b_changed)
1018 ++n;
1019 return n;
1020}
1021
1022/*
1023 * End the netbeans session.
1024 */
1025 void
1026netbeans_end(void)
1027{
1028 int i;
1029 static char buf[128];
1030
1031 if (!haveConnection)
1032 return;
1033
1034 for (i = 0; i < buf_list_used; i++)
1035 {
1036 if (!buf_list[i].bufp)
1037 continue;
1038 if (netbeansForcedQuit)
1039 {
1040 /* mark as unmodified so NetBeans won't put up dialog on "killed" */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001041 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 nbdebug(("EVT: %s", buf));
1043 nb_send(buf, "netbeans_end");
1044 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00001045 sprintf(buf, "%d:killed=%d\n", i, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 nbdebug(("EVT: %s", buf));
1047/* nb_send(buf, "netbeans_end"); avoid "write failed" messages */
1048 if (sd >= 0)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001049 ignored = sock_write(sd, buf, (int)STRLEN(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051}
1052
1053/*
1054 * Send a message to netbeans.
1055 */
1056 static void
1057nb_send(char *buf, char *fun)
1058{
1059 /* Avoid giving pages full of error messages when the other side has
1060 * exited, only mention the first error until the connection works again. */
1061 static int did_error = FALSE;
1062
1063 if (sd < 0)
1064 {
1065 if (!did_error)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001066 {
1067 nbdebug((" %s(): write while not connected\n", fun));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 EMSG2("E630: %s(): write while not connected", fun);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001069 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 did_error = TRUE;
1071 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001072 else if (sock_write(sd, buf, (int)STRLEN(buf)) != (int)STRLEN(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 {
1074 if (!did_error)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001075 {
1076 nbdebug((" %s(): write failed\n", fun));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 EMSG2("E631: %s(): write failed", fun);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 did_error = TRUE;
1080 }
1081 else
1082 did_error = FALSE;
1083}
1084
1085/*
1086 * Some input received from netbeans requires a response. This function
1087 * handles a response with no information (except the command number).
1088 */
1089 static void
1090nb_reply_nil(int cmdno)
1091{
1092 char reply[32];
1093
1094 if (!haveConnection)
1095 return;
1096
Bram Moolenaar009b2592004-10-24 19:18:58 +00001097 nbdebug(("REP %d: <none>\n", cmdno));
1098
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 sprintf(reply, "%d\n", cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 nb_send(reply, "nb_reply_nil");
1101}
1102
1103
1104/*
1105 * Send a response with text.
1106 * "result" must have been quoted already (using nb_quote()).
1107 */
1108 static void
1109nb_reply_text(int cmdno, char_u *result)
1110{
1111 char_u *reply;
1112
1113 if (!haveConnection)
1114 return;
1115
Bram Moolenaar009b2592004-10-24 19:18:58 +00001116 nbdebug(("REP %d: %s\n", cmdno, (char *)result));
1117
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001118 reply = alloc((unsigned)STRLEN(result) + 32);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 nb_send((char *)reply, "nb_reply_text");
1121
1122 vim_free(reply);
1123}
1124
1125
1126/*
1127 * Send a response with a number result code.
1128 */
1129 static void
1130nb_reply_nr(int cmdno, long result)
1131{
1132 char reply[32];
1133
1134 if (!haveConnection)
1135 return;
1136
Bram Moolenaar009b2592004-10-24 19:18:58 +00001137 nbdebug(("REP %d: %ld\n", cmdno, result));
1138
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 sprintf(reply, "%d %ld\n", cmdno, result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 nb_send(reply, "nb_reply_nr");
1141}
1142
1143
1144/*
1145 * Encode newline, ret, backslash, double quote for transmission to NetBeans.
1146 */
1147 static char_u *
1148nb_quote(char_u *txt)
1149{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001150 char_u *buf = alloc((unsigned)(2 * STRLEN(txt) + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 char_u *p = txt;
1152 char_u *q = buf;
1153
1154 if (buf == NULL)
1155 return NULL;
1156 for (; *p; p++)
1157 {
1158 switch (*p)
1159 {
1160 case '\"':
1161 case '\\':
1162 *q++ = '\\'; *q++ = *p; break;
1163 /* case '\t': */
1164 /* *q++ = '\\'; *q++ = 't'; break; */
1165 case '\n':
1166 *q++ = '\\'; *q++ = 'n'; break;
1167 case '\r':
1168 *q++ = '\\'; *q++ = 'r'; break;
1169 default:
1170 *q++ = *p;
1171 break;
1172 }
1173 }
1174 *q++ = '\0';
1175
1176 return buf;
1177}
1178
1179
1180/*
1181 * Remove top level double quotes; convert backslashed chars.
1182 * Returns an allocated string (NULL for failure).
1183 * If "endp" is not NULL it is set to the character after the terminating
1184 * quote.
1185 */
1186 static char *
1187nb_unquote(char_u *p, char_u **endp)
1188{
1189 char *result = 0;
1190 char *q;
1191 int done = 0;
1192
1193 /* result is never longer than input */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001194 result = (char *)alloc_clear((unsigned)STRLEN(p) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 if (result == NULL)
1196 return NULL;
1197
1198 if (*p++ != '"')
1199 {
1200 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n",
1201 p));
1202 result[0] = NUL;
1203 return result;
1204 }
1205
1206 for (q = result; !done && *p != NUL;)
1207 {
1208 switch (*p)
1209 {
1210 case '"':
1211 /*
1212 * Unbackslashed dquote marks the end, if first char was dquote.
1213 */
1214 done = 1;
1215 break;
1216
1217 case '\\':
1218 ++p;
1219 switch (*p)
1220 {
1221 case '\\': *q++ = '\\'; break;
1222 case 'n': *q++ = '\n'; break;
1223 case 't': *q++ = '\t'; break;
1224 case 'r': *q++ = '\r'; break;
1225 case '"': *q++ = '"'; break;
1226 case NUL: --p; break;
1227 /* default: skip over illegal chars */
1228 }
1229 ++p;
1230 break;
1231
1232 default:
1233 *q++ = *p++;
1234 }
1235 }
1236
1237 if (endp != NULL)
1238 *endp = p;
1239
1240 return result;
1241}
1242
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001243/*
1244 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the
1245 * current buffer. Remove to end of line when "last" is MAXCOL.
1246 */
1247 static void
1248nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last)
1249{
1250 char_u *oldtext, *newtext;
1251 int oldlen;
1252 int lastbyte = last;
1253
1254 oldtext = ml_get(lnum);
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001255 oldlen = (int)STRLEN(oldtext);
Bram Moolenaarb3c70982008-01-18 10:40:55 +00001256 if (first >= (colnr_T)oldlen || oldlen == 0) /* just in case */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001257 return;
1258 if (lastbyte >= oldlen)
1259 lastbyte = oldlen - 1;
1260 newtext = alloc(oldlen - (int)(lastbyte - first));
1261 if (newtext != NULL)
1262 {
1263 mch_memmove(newtext, oldtext, first);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001264 STRMOVE(newtext + first, oldtext + lastbyte + 1);
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001265 nbdebug((" NEW LINE %d: %s\n", lnum, newtext));
1266 ml_replace(lnum, newtext, FALSE);
1267 }
1268}
1269
1270/*
1271 * Replace the "first" line with the concatenation of the "first" and
1272 * the "other" line. The "other" line is not removed.
1273 */
1274 static void
1275nb_joinlines(linenr_T first, linenr_T other)
1276{
1277 int len_first, len_other;
1278 char_u *p;
1279
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001280 len_first = (int)STRLEN(ml_get(first));
1281 len_other = (int)STRLEN(ml_get(other));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001282 p = alloc((unsigned)(len_first + len_other + 1));
1283 if (p != NULL)
1284 {
1285 mch_memmove(p, ml_get(first), len_first);
1286 mch_memmove(p + len_first, ml_get(other), len_other + 1);
1287 ml_replace(first, p, FALSE);
1288 }
1289}
1290
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291#define SKIP_STOP 2
1292#define streq(a,b) (strcmp(a,b) == 0)
1293static int needupdate = 0;
1294static int inAtomic = 0;
1295
1296/*
1297 * Do the actual processing of a single netbeans command or function.
Bram Moolenaar143c38c2007-05-10 16:41:10 +00001298 * The difference between a command and function is that a function
1299 * gets a response (it's required) but a command does not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 * For arguments see comment for nb_parse_cmd().
1301 */
1302 static int
1303nb_do_cmd(
1304 int bufno,
1305 char_u *cmd,
1306 int func,
1307 int cmdno,
1308 char_u *args) /* points to space before arguments or NUL */
1309{
1310 int doupdate = 0;
1311 long off = 0;
1312 nbbuf_T *buf = nb_get_buf(bufno);
1313 static int skip = 0;
1314 int retval = OK;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001315 char *cp; /* for when a char pointer is needed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316
1317 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd,
1318 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args));
1319
1320 if (func)
1321 {
1322/* =====================================================================*/
1323 if (streq((char *)cmd, "getModified"))
1324 {
1325 if (buf == NULL || buf->bufp == NULL)
1326 /* Return the number of buffers that are modified. */
1327 nb_reply_nr(cmdno, (long)count_changed_buffers());
1328 else
1329 /* Return whether the buffer is modified. */
1330 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed
1331 || isNetbeansModified(buf->bufp)));
1332/* =====================================================================*/
1333 }
1334 else if (streq((char *)cmd, "saveAndExit"))
1335 {
1336 /* Note: this will exit Vim if successful. */
1337 coloncmd(":confirm qall");
1338
1339 /* We didn't exit: return the number of changed buffers. */
1340 nb_reply_nr(cmdno, (long)count_changed_buffers());
1341/* =====================================================================*/
1342 }
1343 else if (streq((char *)cmd, "getCursor"))
1344 {
1345 char_u text[200];
1346
1347 /* Note: nb_getbufno() may return -1. This indicates the IDE
1348 * didn't assign a number to the current buffer in response to a
1349 * fileOpened event. */
1350 sprintf((char *)text, "%d %ld %d %ld",
1351 nb_getbufno(curbuf),
1352 (long)curwin->w_cursor.lnum,
1353 (int)curwin->w_cursor.col,
1354 pos2off(curbuf, &curwin->w_cursor));
1355 nb_reply_text(cmdno, text);
1356/* =====================================================================*/
1357 }
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001358 else if (streq((char *)cmd, "getAnno"))
1359 {
1360 long linenum = 0;
1361#ifdef FEAT_SIGNS
1362 if (buf == NULL || buf->bufp == NULL)
1363 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001364 nbdebug((" Invalid buffer identifier in getAnno\n"));
1365 EMSG("E652: Invalid buffer identifier in getAnno");
Bram Moolenaarc65c4912006-11-14 17:29:46 +00001366 retval = FAIL;
1367 }
1368 else
1369 {
1370 int serNum;
1371
1372 cp = (char *)args;
1373 serNum = strtol(cp, &cp, 10);
1374 /* If the sign isn't found linenum will be zero. */
1375 linenum = (long)buf_findsign(buf->bufp, serNum);
1376 }
1377#endif
1378 nb_reply_nr(cmdno, linenum);
1379/* =====================================================================*/
1380 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 else if (streq((char *)cmd, "getLength"))
1382 {
1383 long len = 0;
1384
1385 if (buf == NULL || buf->bufp == NULL)
1386 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001387 nbdebug((" invalid buffer identifier in getLength\n"));
1388 EMSG("E632: invalid buffer identifier in getLength");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 retval = FAIL;
1390 }
1391 else
1392 {
1393 len = get_buf_size(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 }
1395 nb_reply_nr(cmdno, len);
1396/* =====================================================================*/
1397 }
1398 else if (streq((char *)cmd, "getText"))
1399 {
1400 long len;
1401 linenr_T nlines;
1402 char_u *text = NULL;
1403 linenr_T lno = 1;
1404 char_u *p;
1405 char_u *line;
1406
1407 if (buf == NULL || buf->bufp == NULL)
1408 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001409 nbdebug((" invalid buffer identifier in getText\n"));
1410 EMSG("E633: invalid buffer identifier in getText");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 retval = FAIL;
1412 }
1413 else
1414 {
1415 len = get_buf_size(buf->bufp);
1416 nlines = buf->bufp->b_ml.ml_line_count;
1417 text = alloc((unsigned)((len > 0)
1418 ? ((len + nlines) * 2) : 4));
1419 if (text == NULL)
1420 {
1421 nbdebug((" nb_do_cmd: getText has null text field\n"));
1422 retval = FAIL;
1423 }
1424 else
1425 {
1426 p = text;
1427 *p++ = '\"';
1428 for (; lno <= nlines ; lno++)
1429 {
1430 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE));
1431 if (line != NULL)
1432 {
1433 STRCPY(p, line);
1434 p += STRLEN(line);
1435 *p++ = '\\';
1436 *p++ = 'n';
Bram Moolenaar009b2592004-10-24 19:18:58 +00001437 vim_free(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 }
1440 *p++ = '\"';
1441 *p = '\0';
1442 }
1443 }
1444 if (text == NULL)
1445 nb_reply_text(cmdno, (char_u *)"");
1446 else
1447 {
1448 nb_reply_text(cmdno, text);
1449 vim_free(text);
1450 }
1451/* =====================================================================*/
1452 }
1453 else if (streq((char *)cmd, "remove"))
1454 {
1455 long count;
1456 pos_T first, last;
1457 pos_T *pos;
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001458 pos_T *next;
1459 linenr_T del_from_lnum, del_to_lnum; /* lines to be deleted as a whole */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 int oldFire = netbeansFireChanges;
1461 int oldSuppress = netbeansSuppressNoLines;
1462 int wasChanged;
1463
1464 if (skip >= SKIP_STOP)
1465 {
1466 nbdebug((" Skipping %s command\n", (char *) cmd));
1467 nb_reply_nil(cmdno);
1468 return OK;
1469 }
1470
1471 if (buf == NULL || buf->bufp == NULL)
1472 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001473 nbdebug((" invalid buffer identifier in remove\n"));
1474 EMSG("E634: invalid buffer identifier in remove");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 retval = FAIL;
1476 }
1477 else
1478 {
1479 netbeansFireChanges = FALSE;
1480 netbeansSuppressNoLines = TRUE;
1481
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001482 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 wasChanged = buf->bufp->b_changed;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001484 cp = (char *)args;
1485 off = strtol(cp, &cp, 10);
1486 count = strtol(cp, &cp, 10);
1487 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 /* delete "count" chars, starting at "off" */
1489 pos = off2pos(buf->bufp, off);
1490 if (!pos)
1491 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001492 nbdebug((" !bad position\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 nb_reply_text(cmdno, (char_u *)"!bad position");
1494 netbeansFireChanges = oldFire;
1495 netbeansSuppressNoLines = oldSuppress;
1496 return FAIL;
1497 }
1498 first = *pos;
1499 nbdebug((" FIRST POS: line %d, col %d\n", first.lnum, first.col));
1500 pos = off2pos(buf->bufp, off+count-1);
1501 if (!pos)
1502 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001503 nbdebug((" !bad count\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 nb_reply_text(cmdno, (char_u *)"!bad count");
1505 netbeansFireChanges = oldFire;
1506 netbeansSuppressNoLines = oldSuppress;
1507 return FAIL;
1508 }
1509 last = *pos;
1510 nbdebug((" LAST POS: line %d, col %d\n", last.lnum, last.col));
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001511 del_from_lnum = first.lnum;
1512 del_to_lnum = last.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 doupdate = 1;
1514
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001515 /* Get the position of the first byte after the deleted
1516 * section. "next" is NULL when deleting to the end of the
1517 * file. */
1518 next = off2pos(buf->bufp, off + count);
1519
1520 /* Remove part of the first line. */
1521 if (first.col != 0 || (next != NULL && first.lnum == next->lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 {
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001523 if (first.lnum != last.lnum
1524 || (next != NULL && first.lnum != next->lnum))
1525 {
1526 /* remove to the end of the first line */
1527 nb_partialremove(first.lnum, first.col,
1528 (colnr_T)MAXCOL);
1529 if (first.lnum == last.lnum)
1530 {
1531 /* Partial line to remove includes the end of
1532 * line. Join the line with the next one, have
1533 * the next line deleted below. */
1534 nb_joinlines(first.lnum, next->lnum);
1535 del_to_lnum = next->lnum;
1536 }
1537 }
1538 else
1539 {
1540 /* remove within one line */
1541 nb_partialremove(first.lnum, first.col, last.col);
1542 }
1543 ++del_from_lnum; /* don't delete the first line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 }
1545
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001546 /* Remove part of the last line. */
1547 if (first.lnum != last.lnum && next != NULL
1548 && next->col != 0 && last.lnum == next->lnum)
1549 {
1550 nb_partialremove(last.lnum, 0, last.col);
1551 if (del_from_lnum > first.lnum)
1552 {
1553 /* Join end of last line to start of first line; last
1554 * line is deleted below. */
1555 nb_joinlines(first.lnum, last.lnum);
1556 }
1557 else
1558 /* First line is deleted as a whole, keep the last
1559 * line. */
1560 --del_to_lnum;
1561 }
1562
1563 /* First is partial line; last line to remove includes
1564 * the end of line; join first line to line following last
1565 * line; line following last line is deleted below. */
1566 if (first.lnum != last.lnum && del_from_lnum > first.lnum
1567 && next != NULL && last.lnum != next->lnum)
1568 {
1569 nb_joinlines(first.lnum, next->lnum);
1570 del_to_lnum = next->lnum;
1571 }
1572
1573 /* Delete whole lines if there are any. */
1574 if (del_to_lnum >= del_from_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 {
1576 int i;
1577
1578 /* delete signs from the lines being deleted */
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001579 for (i = del_from_lnum; i <= del_to_lnum; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 {
1581 int id = buf_findsign_id(buf->bufp, (linenr_T)i);
1582 if (id > 0)
1583 {
1584 nbdebug((" Deleting sign %d on line %d\n", id, i));
1585 buf_delsign(buf->bufp, id);
1586 }
1587 else
1588 nbdebug((" No sign on line %d\n", i));
1589 }
1590
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001591 nbdebug((" Deleting lines %d through %d\n", del_from_lnum, del_to_lnum));
1592 curwin->w_cursor.lnum = del_from_lnum;
1593 curwin->w_cursor.col = 0;
1594 del_lines(del_to_lnum - del_from_lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 }
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00001596
1597 /* Leave cursor at first deleted byte. */
1598 curwin->w_cursor = first;
1599 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 buf->bufp->b_changed = wasChanged; /* logically unchanged */
1601 netbeansFireChanges = oldFire;
1602 netbeansSuppressNoLines = oldSuppress;
1603
1604 u_blockfree(buf->bufp);
1605 u_clearall(buf->bufp);
1606 }
1607 nb_reply_nil(cmdno);
1608/* =====================================================================*/
1609 }
1610 else if (streq((char *)cmd, "insert"))
1611 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 char_u *to_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613
1614 if (skip >= SKIP_STOP)
1615 {
1616 nbdebug((" Skipping %s command\n", (char *) cmd));
1617 nb_reply_nil(cmdno);
1618 return OK;
1619 }
1620
1621 /* get offset */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00001622 cp = (char *)args;
1623 off = strtol(cp, &cp, 10);
1624 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625
1626 /* get text to be inserted */
1627 args = skipwhite(args);
1628 args = to_free = (char_u *)nb_unquote(args, NULL);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001629 /*
1630 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1631 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1632 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633
1634 if (buf == NULL || buf->bufp == NULL)
1635 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001636 nbdebug((" invalid buffer identifier in insert\n"));
1637 EMSG("E635: invalid buffer identifier in insert");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 retval = FAIL;
1639 }
1640 else if (args != NULL)
1641 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001642 int ff_detected = EOL_UNKNOWN;
1643 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY);
1644 size_t len = 0;
1645 int added = 0;
1646 int oldFire = netbeansFireChanges;
1647 int old_b_changed;
1648 char_u *nl;
1649 linenr_T lnum;
1650 linenr_T lnum_start;
1651 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 netbeansFireChanges = 0;
1654
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001655 /* Jump to the buffer where we insert. After this "curbuf"
1656 * can be used. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001657 nb_set_curbuf(buf->bufp);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001658 old_b_changed = curbuf->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001660 /* Convert the specified character offset into a lnum/col
1661 * position. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001662 pos = off2pos(curbuf, off);
1663 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001665 if (pos->lnum <= 0)
1666 lnum_start = 1;
1667 else
1668 lnum_start = pos->lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 }
1670 else
1671 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001672 /* If the given position is not found, assume we want
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 * the end of the file. See setLocAndSize HACK. */
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001674 if (buf_was_empty)
1675 lnum_start = 1; /* above empty line */
1676 else
1677 lnum_start = curbuf->b_ml.ml_line_count + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001678 }
1679
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001680 /* "lnum" is the line where we insert: either append to it or
1681 * insert a new line above it. */
1682 lnum = lnum_start;
1683
1684 /* Loop over the "\n" separated lines of the argument. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 doupdate = 1;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001686 while (*args != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001688 nl = vim_strchr(args, '\n');
1689 if (nl == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001691 /* Incomplete line, probably truncated. Next "insert"
1692 * command should append to this one. */
1693 len = STRLEN(args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001695 else
1696 {
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001697 len = nl - args;
1698
1699 /*
1700 * We need to detect EOL style, because the commands
1701 * use a character offset.
1702 */
1703 if (nl > args && nl[-1] == '\r')
1704 {
1705 ff_detected = EOL_DOS;
1706 --len;
1707 }
1708 else
1709 ff_detected = EOL_UNIX;
1710 }
1711 args[len] = NUL;
1712
1713 if (lnum == lnum_start
1714 && ((pos != NULL && pos->col > 0)
1715 || (lnum == 1 && buf_was_empty)))
1716 {
1717 char_u *oldline = ml_get(lnum);
1718 char_u *newline;
1719
1720 /* Insert halfway a line. For simplicity we assume we
1721 * need to append to the line. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001722 newline = alloc_check((unsigned)(STRLEN(oldline) + len + 1));
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001723 if (newline != NULL)
1724 {
1725 STRCPY(newline, oldline);
1726 STRCAT(newline, args);
1727 ml_replace(lnum, newline, FALSE);
1728 }
1729 }
1730 else
1731 {
1732 /* Append a new line. Not that we always do this,
1733 * also when the text doesn't end in a "\n". */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001734 ml_append((linenr_T)(lnum - 1), args, (colnr_T)(len + 1), FALSE);
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001735 ++added;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001736 }
1737
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001738 if (nl == NULL)
1739 break;
1740 ++lnum;
1741 args = nl + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001742 }
1743
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001744 /* Adjust the marks below the inserted lines. */
1745 appended_lines_mark(lnum_start - 1, (long)added);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001747 /*
1748 * When starting with an empty buffer set the fileformat.
1749 * This is just guessing...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 */
1751 if (buf_was_empty)
1752 {
1753 if (ff_detected == EOL_UNKNOWN)
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001754#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 ff_detected = EOL_DOS;
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001756#else
1757 ff_detected = EOL_UNIX;
1758#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 set_fileformat(ff_detected, OPT_LOCAL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00001760 curbuf->b_start_ffc = *curbuf->b_p_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 }
1762
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 /*
1764 * XXX - GRP - Is the next line right? If I've inserted
1765 * text the buffer has been updated but not written. Will
1766 * netbeans guarantee to write it? Even if I do a :q! ?
1767 */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001768 curbuf->b_changed = old_b_changed; /* logically unchanged */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 netbeansFireChanges = oldFire;
1770
Bram Moolenaar0fd92892006-03-09 22:27:48 +00001771 /* Undo info is invalid now... */
Bram Moolenaara3227e22006-03-08 21:32:40 +00001772 u_blockfree(curbuf);
1773 u_clearall(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 }
1775 vim_free(to_free);
1776 nb_reply_nil(cmdno); /* or !error */
1777 }
1778 else
1779 {
1780 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd));
1781 nb_reply_nil(cmdno);
1782 retval = FAIL;
1783 }
1784 }
1785 else /* Not a function; no reply required. */
1786 {
1787/* =====================================================================*/
1788 if (streq((char *)cmd, "create"))
1789 {
1790 /* Create a buffer without a name. */
1791 if (buf == NULL)
1792 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001793 nbdebug((" invalid buffer identifier in create\n"));
1794 EMSG("E636: invalid buffer identifier in create");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 return FAIL;
1796 }
1797 vim_free(buf->displayname);
1798 buf->displayname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799
1800 netbeansReadFile = 0; /* don't try to open disk file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001801 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 netbeansReadFile = 1;
1803 buf->bufp = curbuf;
1804 maketitle();
Bram Moolenaar009b2592004-10-24 19:18:58 +00001805 buf->insertDone = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 gui_update_menus(0);
1807/* =====================================================================*/
1808 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001809 else if (streq((char *)cmd, "insertDone"))
1810 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001811 if (buf == NULL || buf->bufp == NULL)
1812 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001813 nbdebug((" invalid buffer identifier in insertDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001814 }
1815 else
1816 {
1817 buf->bufp->b_start_eol = *args == 'T';
1818 buf->insertDone = TRUE;
1819 args += 2;
1820 buf->bufp->b_p_ro = *args == 'T';
1821 print_read_msg(buf);
1822 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001823/* =====================================================================*/
1824 }
1825 else if (streq((char *)cmd, "saveDone"))
1826 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001827 long savedChars = atol((char *)args);
1828
1829 if (buf == NULL || buf->bufp == NULL)
1830 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001831 nbdebug((" invalid buffer identifier in saveDone\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001832 }
1833 else
1834 print_save_msg(buf, savedChars);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001835/* =====================================================================*/
1836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 else if (streq((char *)cmd, "startDocumentListen"))
1838 {
1839 if (buf == NULL)
1840 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001841 nbdebug((" invalid buffer identifier in startDocumentListen\n"));
1842 EMSG("E637: invalid buffer identifier in startDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 return FAIL;
1844 }
1845 buf->fireChanges = 1;
1846/* =====================================================================*/
1847 }
1848 else if (streq((char *)cmd, "stopDocumentListen"))
1849 {
1850 if (buf == NULL)
1851 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001852 nbdebug((" invalid buffer identifier in stopDocumentListen\n"));
1853 EMSG("E638: invalid buffer identifier in stopDocumentListen");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 return FAIL;
1855 }
1856 buf->fireChanges = 0;
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001857 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file)
Bram Moolenaar009b2592004-10-24 19:18:58 +00001858 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001859 if (!buf->bufp->b_netbeans_file)
Bram Moolenaarf2330482008-06-24 20:19:36 +00001860 {
1861 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf->bufp->b_fnum));
Bram Moolenaar009b2592004-10-24 19:18:58 +00001862 EMSGN(_("E658: NetBeans connection lost for buffer %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 buf->bufp->b_fnum);
Bram Moolenaarf2330482008-06-24 20:19:36 +00001864 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001865 else
1866 {
Bram Moolenaar24c088a2005-02-02 22:55:47 +00001867 /* NetBeans uses stopDocumentListen when it stops editing
1868 * a file. It then expects the buffer in Vim to
1869 * disappear. */
1870 do_bufdel(DOBUF_DEL, (char_u *)"", 1,
1871 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001872 vim_memset(buf, 0, sizeof(nbbuf_T));
1873 }
1874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875/* =====================================================================*/
1876 }
1877 else if (streq((char *)cmd, "setTitle"))
1878 {
1879 if (buf == NULL)
1880 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001881 nbdebug((" invalid buffer identifier in setTitle\n"));
1882 EMSG("E639: invalid buffer identifier in setTitle");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 return FAIL;
1884 }
1885 vim_free(buf->displayname);
1886 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887/* =====================================================================*/
1888 }
1889 else if (streq((char *)cmd, "initDone"))
1890 {
1891 if (buf == NULL || buf->bufp == NULL)
1892 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001893 nbdebug((" invalid buffer identifier in initDone\n"));
1894 EMSG("E640: invalid buffer identifier in initDone");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 return FAIL;
1896 }
1897 doupdate = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001898 buf->initDone = TRUE;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001899 nb_set_curbuf(buf->bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900#if defined(FEAT_AUTOCMD)
1901 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp);
1902#endif
1903
1904 /* handle any postponed key commands */
1905 handle_key_queue();
1906/* =====================================================================*/
1907 }
1908 else if (streq((char *)cmd, "setBufferNumber")
1909 || streq((char *)cmd, "putBufferNumber"))
1910 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001911 char_u *path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 buf_T *bufp;
1913
1914 if (buf == NULL)
1915 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001916 nbdebug((" invalid buffer identifier in setBufferNumber\n"));
1917 EMSG("E641: invalid buffer identifier in setBufferNumber");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 return FAIL;
1919 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00001920 path = (char_u *)nb_unquote(args, NULL);
1921 if (path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 return FAIL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001923 bufp = buflist_findname(path);
1924 vim_free(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 if (bufp == NULL)
1926 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001927 nbdebug((" File %s not found in setBufferNumber\n", args));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 EMSG2("E642: File %s not found in setBufferNumber", args);
1929 return FAIL;
1930 }
1931 buf->bufp = bufp;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001932 buf->nbbuf_number = bufp->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933
1934 /* "setBufferNumber" has the side effect of jumping to the buffer
1935 * (don't know why!). Don't do that for "putBufferNumber". */
1936 if (*cmd != 'p')
1937 coloncmd(":buffer %d", bufp->b_fnum);
1938 else
1939 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001940 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941
1942 /* handle any postponed key commands */
1943 handle_key_queue();
1944 }
1945
1946#if 0 /* never used */
1947 buf->internalname = (char *)alloc_clear(8);
1948 sprintf(buf->internalname, "<%d>", bufno);
1949 buf->netbeansOwns = 0;
1950#endif
1951/* =====================================================================*/
1952 }
1953 else if (streq((char *)cmd, "setFullName"))
1954 {
1955 if (buf == NULL)
1956 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001957 nbdebug((" invalid buffer identifier in setFullName\n"));
1958 EMSG("E643: invalid buffer identifier in setFullName");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 return FAIL;
1960 }
1961 vim_free(buf->displayname);
1962 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963
1964 netbeansReadFile = 0; /* don't try to open disk file */
1965 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001966 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 netbeansReadFile = 1;
1968 buf->bufp = curbuf;
1969 maketitle();
1970 gui_update_menus(0);
1971/* =====================================================================*/
1972 }
1973 else if (streq((char *)cmd, "editFile"))
1974 {
1975 if (buf == NULL)
1976 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001977 nbdebug((" invalid buffer identifier in editFile\n"));
1978 EMSG("E644: invalid buffer identifier in editFile");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 return FAIL;
1980 }
1981 /* Edit a file: like create + setFullName + read the file. */
1982 vim_free(buf->displayname);
1983 buf->displayname = nb_unquote(args, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001985 ECMD_HIDE + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 buf->bufp = curbuf;
Bram Moolenaar009b2592004-10-24 19:18:58 +00001987 buf->initDone = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 doupdate = 1;
1989#if defined(FEAT_TITLE)
1990 maketitle();
1991#endif
1992 gui_update_menus(0);
1993/* =====================================================================*/
1994 }
1995 else if (streq((char *)cmd, "setVisible"))
1996 {
1997 if (buf == NULL || buf->bufp == NULL)
1998 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001999 nbdebug((" invalid buffer identifier in setVisible\n"));
2000 /* This message was commented out, probably because it can
2001 * happen when shutting down. */
2002 if (p_verbose > 0)
2003 EMSG("E645: invalid buffer identifier in setVisible");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 return FAIL;
2005 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002006 if (streq((char *)args, "T") && buf->bufp != curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 {
2008 exarg_T exarg;
2009 exarg.cmd = (char_u *)"goto";
2010 exarg.forceit = FALSE;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002011 dosetvisible = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum);
2013 doupdate = 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002014 dosetvisible = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015
2016 /* Side effect!!!. */
2017 if (!gui.starting)
2018 gui_mch_set_foreground();
2019 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020/* =====================================================================*/
2021 }
2022 else if (streq((char *)cmd, "raise"))
2023 {
2024 /* Bring gvim to the foreground. */
2025 if (!gui.starting)
2026 gui_mch_set_foreground();
2027/* =====================================================================*/
2028 }
2029 else if (streq((char *)cmd, "setModified"))
2030 {
Bram Moolenaarff064e12008-06-09 13:10:45 +00002031 int prev_b_changed;
2032
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 if (buf == NULL || buf->bufp == NULL)
2034 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002035 nbdebug((" invalid buffer identifier in setModified\n"));
2036 /* This message was commented out, probably because it can
2037 * happen when shutting down. */
2038 if (p_verbose > 0)
2039 EMSG("E646: invalid buffer identifier in setModified");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 return FAIL;
2041 }
Bram Moolenaarff064e12008-06-09 13:10:45 +00002042 prev_b_changed = buf->bufp->b_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 if (streq((char *)args, "T"))
Bram Moolenaarff064e12008-06-09 13:10:45 +00002044 buf->bufp->b_changed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 else
2046 {
2047 struct stat st;
2048
2049 /* Assume NetBeans stored the file. Reset the timestamp to
2050 * avoid "file changed" warnings. */
2051 if (buf->bufp->b_ffname != NULL
2052 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0)
2053 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname);
Bram Moolenaarff064e12008-06-09 13:10:45 +00002054 buf->bufp->b_changed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 }
2056 buf->modified = buf->bufp->b_changed;
Bram Moolenaarff064e12008-06-09 13:10:45 +00002057 if (prev_b_changed != buf->bufp->b_changed)
2058 {
2059#ifdef FEAT_WINDOWS
2060 check_status(buf->bufp);
2061 redraw_tabline = TRUE;
2062#endif
2063#ifdef FEAT_TITLE
2064 maketitle();
2065#endif
2066 update_screen(0);
2067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068/* =====================================================================*/
2069 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002070 else if (streq((char *)cmd, "setModtime"))
2071 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002072 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002073 nbdebug((" invalid buffer identifier in setModtime\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002074 else
2075 buf->bufp->b_mtime = atoi((char *)args);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002076/* =====================================================================*/
2077 }
2078 else if (streq((char *)cmd, "setReadOnly"))
2079 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002080 if (buf == NULL || buf->bufp == NULL)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002081 nbdebug((" invalid buffer identifier in setReadOnly\n"));
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002082 else if (streq((char *)args, "T"))
Bram Moolenaar009b2592004-10-24 19:18:58 +00002083 buf->bufp->b_p_ro = TRUE;
2084 else
2085 buf->bufp->b_p_ro = FALSE;
2086/* =====================================================================*/
2087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 else if (streq((char *)cmd, "setMark"))
2089 {
2090 /* not yet */
2091/* =====================================================================*/
2092 }
2093 else if (streq((char *)cmd, "showBalloon"))
2094 {
2095#if defined(FEAT_BEVAL)
2096 static char *text = NULL;
2097
2098 /*
2099 * Set up the Balloon Expression Evaluation area.
2100 * Ignore 'ballooneval' here.
2101 * The text pointer must remain valid for a while.
2102 */
2103 if (balloonEval != NULL)
2104 {
2105 vim_free(text);
2106 text = nb_unquote(args, NULL);
2107 if (text != NULL)
2108 gui_mch_post_balloon(balloonEval, (char_u *)text);
2109 }
2110#endif
2111/* =====================================================================*/
2112 }
2113 else if (streq((char *)cmd, "setDot"))
2114 {
2115 pos_T *pos;
2116#ifdef NBDEBUG
2117 char_u *s;
2118#endif
2119
2120 if (buf == NULL || buf->bufp == NULL)
2121 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002122 nbdebug((" invalid buffer identifier in setDot\n"));
2123 EMSG("E647: invalid buffer identifier in setDot");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 return FAIL;
2125 }
2126
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002127 nb_set_curbuf(buf->bufp);
2128
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129#ifdef FEAT_VISUAL
2130 /* Don't want Visual mode now. */
2131 if (VIsual_active)
2132 end_visual_mode();
2133#endif
2134#ifdef NBDEBUG
2135 s = args;
2136#endif
2137 pos = get_off_or_lnum(buf->bufp, &args);
2138 if (pos)
2139 {
2140 curwin->w_cursor = *pos;
2141 check_cursor();
2142#ifdef FEAT_FOLDING
2143 foldOpenCursor();
2144#endif
2145 }
2146 else
2147 nbdebug((" BAD POSITION in setDot: %s\n", s));
2148
2149 /* gui_update_cursor(TRUE, FALSE); */
2150 /* update_curbuf(NOT_VALID); */
2151 update_topline(); /* scroll to show the line */
2152 update_screen(VALID);
2153 setcursor();
2154 out_flush();
2155 gui_update_cursor(TRUE, FALSE);
2156 gui_mch_flush();
2157 /* Quit a hit-return or more prompt. */
2158 if (State == HITRETURN || State == ASKMORE)
2159 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160#ifdef FEAT_GUI_GTK
2161 if (gtk_main_level() > 0)
2162 gtk_main_quit();
2163#endif
2164 }
2165/* =====================================================================*/
2166 }
2167 else if (streq((char *)cmd, "close"))
2168 {
2169#ifdef NBDEBUG
2170 char *name = "<NONE>";
2171#endif
2172
2173 if (buf == NULL)
2174 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002175 nbdebug((" invalid buffer identifier in close\n"));
2176 EMSG("E648: invalid buffer identifier in close");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 return FAIL;
2178 }
2179
2180#ifdef NBDEBUG
2181 if (buf->displayname != NULL)
2182 name = buf->displayname;
2183#endif
Bram Moolenaarf2330482008-06-24 20:19:36 +00002184 if (buf->bufp == NULL)
2185 {
2186 nbdebug((" invalid buffer identifier in close\n"));
2187 /* This message was commented out, probably because it can
2188 * happen when shutting down. */
2189 if (p_verbose > 0)
2190 EMSG("E649: invalid buffer identifier in close");
2191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 nbdebug((" CLOSE %d: %s\n", bufno, name));
2193 need_mouse_correct = TRUE;
2194 if (buf->bufp != NULL)
2195 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
2196 buf->bufp->b_fnum, TRUE);
Bram Moolenaar8d602722006-08-08 19:34:19 +00002197 buf->bufp = NULL;
2198 buf->initDone = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 doupdate = 1;
2200/* =====================================================================*/
2201 }
2202 else if (streq((char *)cmd, "setStyle")) /* obsolete... */
2203 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002204 nbdebug((" setStyle is obsolete!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205/* =====================================================================*/
2206 }
2207 else if (streq((char *)cmd, "setExitDelay"))
2208 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002209 /* Only used in version 2.1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210/* =====================================================================*/
2211 }
2212 else if (streq((char *)cmd, "defineAnnoType"))
2213 {
2214#ifdef FEAT_SIGNS
2215 int typeNum;
2216 char_u *typeName;
2217 char_u *tooltip;
2218 char_u *p;
2219 char_u *glyphFile;
2220 int use_fg = 0;
2221 int use_bg = 0;
2222 int fg = -1;
2223 int bg = -1;
2224
2225 if (buf == NULL)
2226 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002227 nbdebug((" invalid buffer identifier in defineAnnoType\n"));
2228 EMSG("E650: invalid buffer identifier in defineAnnoType");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 return FAIL;
2230 }
2231
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002232 cp = (char *)args;
2233 typeNum = strtol(cp, &cp, 10);
2234 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 args = skipwhite(args);
2236 typeName = (char_u *)nb_unquote(args, &args);
2237 args = skipwhite(args + 1);
2238 tooltip = (char_u *)nb_unquote(args, &args);
2239 args = skipwhite(args + 1);
2240
2241 p = (char_u *)nb_unquote(args, &args);
2242 glyphFile = vim_strsave_escaped(p, escape_chars);
2243 vim_free(p);
2244
2245 args = skipwhite(args + 1);
2246 if (STRNCMP(args, "none", 4) == 0)
2247 args += 5;
2248 else
2249 {
2250 use_fg = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002251 cp = (char *)args;
2252 fg = strtol(cp, &cp, 10);
2253 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 }
2255 if (STRNCMP(args, "none", 4) == 0)
2256 args += 5;
2257 else
2258 {
2259 use_bg = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002260 cp = (char *)args;
2261 bg = strtol(cp, &cp, 10);
2262 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 }
2264 if (typeName != NULL && tooltip != NULL && glyphFile != NULL)
2265 addsigntype(buf, typeNum, typeName, tooltip, glyphFile,
2266 use_fg, fg, use_bg, bg);
2267 else
2268 vim_free(typeName);
2269
2270 /* don't free typeName; it's used directly in addsigntype() */
2271 vim_free(tooltip);
2272 vim_free(glyphFile);
2273
2274#endif
2275/* =====================================================================*/
2276 }
2277 else if (streq((char *)cmd, "addAnno"))
2278 {
2279#ifdef FEAT_SIGNS
2280 int serNum;
2281 int localTypeNum;
2282 int typeNum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 pos_T *pos;
2284
2285 if (buf == NULL || buf->bufp == NULL)
2286 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002287 nbdebug((" invalid buffer identifier in addAnno\n"));
2288 EMSG("E651: invalid buffer identifier in addAnno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 return FAIL;
2290 }
2291
2292 doupdate = 1;
2293
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002294 cp = (char *)args;
2295 serNum = strtol(cp, &cp, 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296
2297 /* Get the typenr specific for this buffer and convert it to
2298 * the global typenumber, as used for the sign name. */
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002299 localTypeNum = strtol(cp, &cp, 10);
2300 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 typeNum = mapsigntype(buf, localTypeNum);
2302
2303 pos = get_off_or_lnum(buf->bufp, &args);
2304
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002305 cp = (char *)args;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002306 ignored = (int)strtol(cp, &cp, 10);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002307 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308# ifdef NBDEBUG
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002309 if (ignored != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002311 nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 }
2313# endif
2314 if (serNum >= GUARDEDOFFSET)
2315 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002316 nbdebug((" too many annotations! ignoring...\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 return FAIL;
2318 }
2319 if (pos)
2320 {
2321 coloncmd(":sign place %d line=%d name=%d buffer=%d",
2322 serNum, pos->lnum, typeNum, buf->bufp->b_fnum);
2323 if (typeNum == curPCtype)
2324 coloncmd(":sign jump %d buffer=%d", serNum,
2325 buf->bufp->b_fnum);
2326 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327#endif
2328/* =====================================================================*/
2329 }
2330 else if (streq((char *)cmd, "removeAnno"))
2331 {
2332#ifdef FEAT_SIGNS
2333 int serNum;
2334
2335 if (buf == NULL || buf->bufp == NULL)
2336 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002337 nbdebug((" invalid buffer identifier in removeAnno\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 return FAIL;
2339 }
2340 doupdate = 1;
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002341 cp = (char *)args;
2342 serNum = strtol(cp, &cp, 10);
2343 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 coloncmd(":sign unplace %d buffer=%d",
2345 serNum, buf->bufp->b_fnum);
2346 redraw_buf_later(buf->bufp, NOT_VALID);
2347#endif
2348/* =====================================================================*/
2349 }
2350 else if (streq((char *)cmd, "moveAnnoToFront"))
2351 {
2352#ifdef FEAT_SIGNS
Bram Moolenaarf2330482008-06-24 20:19:36 +00002353 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354#endif
2355/* =====================================================================*/
2356 }
2357 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard"))
2358 {
2359 int len;
2360 pos_T first;
2361 pos_T last;
2362 pos_T *pos;
2363 int un = (cmd[0] == 'u');
2364 static int guardId = GUARDEDOFFSET;
2365
2366 if (skip >= SKIP_STOP)
2367 {
2368 nbdebug((" Skipping %s command\n", (char *) cmd));
2369 return OK;
2370 }
2371
2372 nb_init_graphics();
2373
2374 if (buf == NULL || buf->bufp == NULL)
2375 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002376 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 return FAIL;
2378 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002379 nb_set_curbuf(buf->bufp);
Bram Moolenaar349b2f62004-10-11 10:00:50 +00002380 cp = (char *)args;
2381 off = strtol(cp, &cp, 10);
2382 len = strtol(cp, NULL, 10);
2383 args = (char_u *)cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 pos = off2pos(buf->bufp, off);
2385 doupdate = 1;
2386 if (!pos)
2387 nbdebug((" no such start pos in %s, %ld\n", cmd, off));
2388 else
2389 {
2390 first = *pos;
2391 pos = off2pos(buf->bufp, off + len - 1);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002392 if (pos != NULL && pos->col == 0)
2393 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 /*
2395 * In Java Swing the offset is a position between 2
2396 * characters. If col == 0 then we really want the
2397 * previous line as the end.
2398 */
2399 pos = off2pos(buf->bufp, off + len - 2);
2400 }
2401 if (!pos)
2402 nbdebug((" no such end pos in %s, %ld\n",
2403 cmd, off + len - 1));
2404 else
2405 {
2406 long lnum;
2407 last = *pos;
2408 /* set highlight for region */
2409 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "",
2410 first.lnum, first.col,
2411 last.lnum, last.col));
2412#ifdef FEAT_SIGNS
2413 for (lnum = first.lnum; lnum <= last.lnum; lnum++)
2414 {
2415 if (un)
2416 {
2417 /* never used */
2418 }
2419 else
2420 {
2421 if (buf_findsigntype_id(buf->bufp, lnum,
2422 GUARDED) == 0)
2423 {
2424 coloncmd(
2425 ":sign place %d line=%d name=%d buffer=%d",
2426 guardId++, lnum, GUARDED,
2427 buf->bufp->b_fnum);
2428 }
2429 }
2430 }
2431#endif
2432 redraw_buf_later(buf->bufp, NOT_VALID);
2433 }
2434 }
2435/* =====================================================================*/
2436 }
2437 else if (streq((char *)cmd, "startAtomic"))
2438 {
2439 inAtomic = 1;
2440/* =====================================================================*/
2441 }
2442 else if (streq((char *)cmd, "endAtomic"))
2443 {
2444 inAtomic = 0;
2445 if (needupdate)
2446 {
2447 doupdate = 1;
2448 needupdate = 0;
2449 }
2450/* =====================================================================*/
2451 }
2452 else if (streq((char *)cmd, "save"))
2453 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002454 /*
2455 * NOTE - This command is obsolete wrt NetBeans. Its left in
2456 * only for historical reasons.
2457 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 if (buf == NULL || buf->bufp == NULL)
2459 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002460 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 return FAIL;
2462 }
2463
2464 /* the following is taken from ex_cmds.c (do_wqall function) */
2465 if (bufIsChanged(buf->bufp))
2466 {
2467 /* Only write if the buffer can be written. */
2468 if (p_write
2469 && !buf->bufp->b_p_ro
2470 && buf->bufp->b_ffname != NULL
2471#ifdef FEAT_QUICKFIX
2472 && !bt_dontwrite(buf->bufp)
2473#endif
2474 )
2475 {
2476 buf_write_all(buf->bufp, FALSE);
2477#ifdef FEAT_AUTOCMD
2478 /* an autocommand may have deleted the buffer */
2479 if (!buf_valid(buf->bufp))
2480 buf->bufp = NULL;
2481#endif
2482 }
2483 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002484 else
2485 {
2486 nbdebug((" Buffer has no changes!\n"));
2487 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488/* =====================================================================*/
2489 }
2490 else if (streq((char *)cmd, "netbeansBuffer"))
2491 {
2492 if (buf == NULL || buf->bufp == NULL)
2493 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002494 nbdebug((" invalid buffer identifier in %s command\n", cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 return FAIL;
2496 }
2497 if (*args == 'T')
2498 {
2499 buf->bufp->b_netbeans_file = TRUE;
2500 buf->bufp->b_was_netbeans_file = TRUE;
2501 }
2502 else
2503 buf->bufp->b_netbeans_file = FALSE;
2504/* =====================================================================*/
2505 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00002506 else if (streq((char *)cmd, "specialKeys"))
2507 {
2508 special_keys(args);
2509/* =====================================================================*/
2510 }
2511 else if (streq((char *)cmd, "actionMenuItem"))
2512 {
2513 /* not used yet */
2514/* =====================================================================*/
2515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516 else if (streq((char *)cmd, "version"))
2517 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002518 /* not used yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 }
Bram Moolenaarf2330482008-06-24 20:19:36 +00002520 else
2521 {
2522 nbdebug(("Unrecognised command: %s\n", cmd));
2523 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 /*
2525 * Unrecognized command is ignored.
2526 */
2527 }
2528 if (inAtomic && doupdate)
2529 {
2530 needupdate = 1;
2531 doupdate = 0;
2532 }
2533
Bram Moolenaar009b2592004-10-24 19:18:58 +00002534 /*
2535 * Is this needed? I moved the netbeans_Xt_connect() later during startup
2536 * and it may no longer be necessary. If its not needed then needupdate
2537 * and doupdate can also be removed.
2538 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 if (buf != NULL && buf->initDone && doupdate)
2540 {
2541 update_screen(NOT_VALID);
2542 setcursor();
2543 out_flush();
2544 gui_update_cursor(TRUE, FALSE);
2545 gui_mch_flush();
2546 /* Quit a hit-return or more prompt. */
2547 if (State == HITRETURN || State == ASKMORE)
2548 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549#ifdef FEAT_GUI_GTK
2550 if (gtk_main_level() > 0)
2551 gtk_main_quit();
2552#endif
2553 }
2554 }
2555
2556 return retval;
2557}
2558
2559
2560/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002561 * If "buf" is not the current buffer try changing to a window that edits this
2562 * buffer. If there is no such window then close the current buffer and set
2563 * the current buffer as "buf".
2564 */
2565 static void
Bram Moolenaar5eaf8722008-01-05 17:07:13 +00002566nb_set_curbuf(buf_T *buf)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002567{
2568 if (curbuf != buf && buf_jump_open_win(buf) == NULL)
2569 set_curbuf(buf, DOBUF_GOTO);
2570}
2571
2572/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 * Process a vim colon command.
2574 */
2575 static void
2576coloncmd(char *cmd, ...)
2577{
2578 char buf[1024];
2579 va_list ap;
2580
2581 va_start(ap, cmd);
2582 vsprintf(buf, cmd, ap);
2583 va_end(ap);
2584
2585 nbdebug((" COLONCMD %s\n", buf));
2586
2587/* ALT_INPUT_LOCK_ON; */
2588 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED);
2589/* ALT_INPUT_LOCK_OFF; */
2590
2591 setcursor(); /* restore the cursor position */
2592 out_flush(); /* make sure output has been written */
2593
2594 gui_update_cursor(TRUE, FALSE);
2595 gui_mch_flush();
2596}
2597
2598
2599/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002600 * Parse the specialKeys argument and issue the appropriate map commands.
2601 */
2602 static void
2603special_keys(char_u *args)
2604{
2605 char *save_str = nb_unquote(args, NULL);
2606 char *tok = strtok(save_str, " ");
2607 char *sep;
2608 char keybuf[64];
2609 char cmdbuf[256];
2610
2611 while (tok != NULL)
2612 {
2613 int i = 0;
2614
2615 if ((sep = strchr(tok, '-')) != NULL)
2616 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002617 *sep = NUL;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002618 while (*tok)
2619 {
2620 switch (*tok)
2621 {
2622 case 'A':
2623 case 'M':
2624 case 'C':
2625 case 'S':
2626 keybuf[i++] = *tok;
2627 keybuf[i++] = '-';
2628 break;
2629 }
2630 tok++;
2631 }
2632 tok++;
2633 }
2634
2635 strcpy(&keybuf[i], tok);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002636 vim_snprintf(cmdbuf, sizeof(cmdbuf),
2637 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002638 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE);
2639 tok = strtok(NULL, " ");
2640 }
2641 vim_free(save_str);
2642}
2643
2644
2645 void
2646ex_nbkey(eap)
2647 exarg_T *eap;
2648{
2649 netbeans_keystring(0, (char *)eap->arg);
2650}
2651
2652
2653/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2655 */
2656 static void
2657nb_init_graphics(void)
2658{
2659 static int did_init = FALSE;
2660
2661 if (!did_init)
2662 {
2663 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black");
2664 coloncmd(":sign define %d linehl=NBGuarded", GUARDED);
2665
2666 did_init = TRUE;
2667 }
2668}
2669
2670/*
2671 * Convert key to netbeans name.
2672 */
2673 static void
2674netbeans_keyname(int key, char *buf)
2675{
2676 char *name = 0;
2677 char namebuf[2];
2678 int ctrl = 0;
2679 int shift = 0;
2680 int alt = 0;
2681
2682 if (mod_mask & MOD_MASK_CTRL)
2683 ctrl = 1;
2684 if (mod_mask & MOD_MASK_SHIFT)
2685 shift = 1;
2686 if (mod_mask & MOD_MASK_ALT)
2687 alt = 1;
2688
2689
2690 switch (key)
2691 {
2692 case K_F1: name = "F1"; break;
2693 case K_S_F1: name = "F1"; shift = 1; break;
2694 case K_F2: name = "F2"; break;
2695 case K_S_F2: name = "F2"; shift = 1; break;
2696 case K_F3: name = "F3"; break;
2697 case K_S_F3: name = "F3"; shift = 1; break;
2698 case K_F4: name = "F4"; break;
2699 case K_S_F4: name = "F4"; shift = 1; break;
2700 case K_F5: name = "F5"; break;
2701 case K_S_F5: name = "F5"; shift = 1; break;
2702 case K_F6: name = "F6"; break;
2703 case K_S_F6: name = "F6"; shift = 1; break;
2704 case K_F7: name = "F7"; break;
2705 case K_S_F7: name = "F7"; shift = 1; break;
2706 case K_F8: name = "F8"; break;
2707 case K_S_F8: name = "F8"; shift = 1; break;
2708 case K_F9: name = "F9"; break;
2709 case K_S_F9: name = "F9"; shift = 1; break;
2710 case K_F10: name = "F10"; break;
2711 case K_S_F10: name = "F10"; shift = 1; break;
2712 case K_F11: name = "F11"; break;
2713 case K_S_F11: name = "F11"; shift = 1; break;
2714 case K_F12: name = "F12"; break;
2715 case K_S_F12: name = "F12"; shift = 1; break;
2716 default:
2717 if (key >= ' ' && key <= '~')
2718 {
2719 /* Allow ASCII characters. */
2720 name = namebuf;
2721 namebuf[0] = key;
2722 namebuf[1] = NUL;
2723 }
2724 else
2725 name = "X";
2726 break;
2727 }
2728
2729 buf[0] = '\0';
2730 if (ctrl)
2731 strcat(buf, "C");
2732 if (shift)
2733 strcat(buf, "S");
2734 if (alt)
2735 strcat(buf, "M"); /* META */
2736 if (ctrl || shift || alt)
2737 strcat(buf, "-");
2738 strcat(buf, name);
2739}
2740
2741#ifdef FEAT_BEVAL
2742/*
2743 * Function to be called for balloon evaluation. Grabs the text under the
2744 * cursor and sends it to the debugger for evaluation. The debugger should
2745 * respond with a showBalloon command when there is a useful result.
2746 */
2747/*ARGSUSED*/
Bram Moolenaard62bec82005-03-07 22:56:57 +00002748 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749netbeans_beval_cb(
2750 BalloonEval *beval,
2751 int state)
2752{
Bram Moolenaard62bec82005-03-07 22:56:57 +00002753 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 char_u *text;
Bram Moolenaard62bec82005-03-07 22:56:57 +00002755 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 int col;
2757 char buf[MAXPATHL * 2 + 25];
2758 char_u *p;
2759
2760 /* Don't do anything when 'ballooneval' is off, messages scrolled the
2761 * windows up or we have no connection. */
2762 if (!p_beval || msg_scrolled > 0 || !haveConnection)
2763 return;
2764
Bram Moolenaard62bec82005-03-07 22:56:57 +00002765 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 {
2767 /* Send debugger request. Only when the text is of reasonable
2768 * length. */
2769 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL)
2770 {
2771 p = nb_quote(text);
2772 if (p != NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002773 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002774 vim_snprintf(buf, sizeof(buf),
Bram Moolenaar89d40322006-08-29 15:30:07 +00002775 "0:balloonText=%d \"%s\"\n", r_cmdno, p);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002776 vim_free(p);
2777 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 nbdebug(("EVT: %s", buf));
2779 nb_send(buf, "netbeans_beval_cb");
2780 }
2781 vim_free(text);
2782 }
2783}
2784#endif
2785
2786/*
2787 * Tell netbeans that the window was opened, ready for commands.
2788 */
2789 void
2790netbeans_startup_done(void)
2791{
2792 char *cmd = "0:startupDone=0\n";
2793
Bram Moolenaar009b2592004-10-24 19:18:58 +00002794 if (usingNetbeans)
2795#ifdef FEAT_GUI_MOTIF
2796 netbeans_Xt_connect(app_context);
2797#else
2798# ifdef FEAT_GUI_GTK
2799 netbeans_gtk_connect();
Bram Moolenaardf177f62005-02-22 08:39:57 +00002800# else
2801# ifdef FEAT_GUI_W32
2802 netbeans_w32_connect();
2803# endif
Bram Moolenaar009b2592004-10-24 19:18:58 +00002804# endif
2805#endif
2806
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 if (!haveConnection)
2808 return;
2809
Bram Moolenaard62bec82005-03-07 22:56:57 +00002810#ifdef FEAT_BEVAL
2811 bevalServers |= BEVAL_NETBEANS;
2812#endif
2813
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 nbdebug(("EVT: %s", cmd));
2815 nb_send(cmd, "netbeans_startup_done");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816}
2817
Bram Moolenaar009b2592004-10-24 19:18:58 +00002818/*
2819 * Tell netbeans that we're exiting. This should be called right
2820 * before calling exit.
2821 */
2822 void
2823netbeans_send_disconnect()
2824{
2825 char buf[128];
2826
2827 if (haveConnection)
2828 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002829 sprintf(buf, "0:disconnect=%d\n", r_cmdno);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002830 nbdebug(("EVT: %s", buf));
2831 nb_send(buf, "netbeans_disconnect");
2832 }
2833}
2834
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_W32) || defined(PROTO)
2836/*
2837 * Tell netbeans that the window was moved or resized.
2838 */
2839 void
2840netbeans_frame_moved(int new_x, int new_y)
2841{
2842 char buf[128];
2843
2844 if (!haveConnection)
2845 return;
2846
2847 sprintf(buf, "0:geometry=%d %d %d %d %d\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00002848 r_cmdno, (int)Columns, (int)Rows, new_x, new_y);
Bram Moolenaar009b2592004-10-24 19:18:58 +00002849 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 nb_send(buf, "netbeans_frame_moved");
2851}
2852#endif
2853
2854/*
Bram Moolenaar009b2592004-10-24 19:18:58 +00002855 * Tell netbeans the user opened or activated a file.
2856 */
2857 void
2858netbeans_file_activated(buf_T *bufp)
2859{
2860 int bufno = nb_getbufno(bufp);
2861 nbbuf_T *bp = nb_get_buf(bufno);
2862 char buffer[2*MAXPATHL];
2863 char_u *q;
2864
2865 if (!haveConnection || dosetvisible)
2866 return;
2867
2868 q = nb_quote(bufp->b_ffname);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002869 if (q == NULL || bp == NULL)
Bram Moolenaar009b2592004-10-24 19:18:58 +00002870 return;
2871
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002872 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002873 bufno,
2874 bufno,
2875 (char *)q,
2876 "T", /* open in NetBeans */
2877 "F"); /* modified */
2878
2879 vim_free(q);
2880 nbdebug(("EVT: %s", buffer));
2881
2882 nb_send(buffer, "netbeans_file_opened");
2883}
2884
2885/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 * Tell netbeans the user opened a file.
2887 */
2888 void
Bram Moolenaar009b2592004-10-24 19:18:58 +00002889netbeans_file_opened(buf_T *bufp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890{
Bram Moolenaar009b2592004-10-24 19:18:58 +00002891 int bufno = nb_getbufno(bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 char buffer[2*MAXPATHL];
2893 char_u *q;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002894 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp));
2895 int bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896
2897 if (!haveConnection)
2898 return;
2899
Bram Moolenaar009b2592004-10-24 19:18:58 +00002900 q = nb_quote(bufp->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 if (q == NULL)
2902 return;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002903 if (bp != NULL)
2904 bnum = bufno;
2905 else
2906 bnum = 0;
2907
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002908 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n",
Bram Moolenaar009b2592004-10-24 19:18:58 +00002909 bnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 0,
2911 (char *)q,
2912 "T", /* open in NetBeans */
2913 "F"); /* modified */
2914
2915 vim_free(q);
2916 nbdebug(("EVT: %s", buffer));
2917
2918 nb_send(buffer, "netbeans_file_opened");
Bram Moolenaar009b2592004-10-24 19:18:58 +00002919 if (p_acd && vim_chdirfile(bufp->b_ffname) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 shorten_fnames(TRUE);
2921}
2922
2923/*
2924 * Tell netbeans a file was closed.
2925 */
2926 void
2927netbeans_file_closed(buf_T *bufp)
2928{
2929 int bufno = nb_getbufno(bufp);
2930 nbbuf_T *nbbuf = nb_get_buf(bufno);
2931 char buffer[2*MAXPATHL];
2932
2933 if (!haveConnection || bufno < 0)
2934 return;
2935
2936 if (!netbeansCloseFile)
2937 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00002938 nbdebug(("Ignoring file_closed for %s. File was closed from IDE\n",
2939 bufp->b_ffname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 return;
2941 }
2942
Bram Moolenaar009b2592004-10-24 19:18:58 +00002943 nbdebug(("netbeans_file_closed:\n"));
2944 nbdebug((" Closing bufno: %d", bufno));
2945 if (curbuf != NULL && curbuf != bufp)
2946 {
2947 nbdebug((" Curbuf bufno: %d\n", nb_getbufno(curbuf)));
2948 }
2949 else if (curbuf == bufp)
2950 {
2951 nbdebug((" curbuf == bufp\n"));
2952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953
2954 if (bufno <= 0)
2955 return;
2956
Bram Moolenaar89d40322006-08-29 15:30:07 +00002957 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958
2959 nbdebug(("EVT: %s", buffer));
2960
2961 nb_send(buffer, "netbeans_file_closed");
2962
2963 if (nbbuf != NULL)
2964 nbbuf->bufp = NULL;
2965}
2966
2967/*
2968 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
2969 * Return NULL if there is no such buffer or changes are not to be reported.
2970 * Otherwise store the buffer number in "*bufnop".
2971 */
2972 static nbbuf_T *
2973nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop)
2974{
2975 int bufno;
2976 nbbuf_T *nbbuf;
2977
2978 if (!haveConnection || !netbeansFireChanges)
2979 return NULL; /* changes are not reported at all */
2980
2981 bufno = nb_getbufno(bufp);
2982 if (bufno <= 0)
2983 return NULL; /* file is not known to NetBeans */
2984
2985 nbbuf = nb_get_buf(bufno);
2986 if (nbbuf != NULL && !nbbuf->fireChanges)
2987 return NULL; /* changes in this buffer are not reported */
2988
2989 *bufnop = bufno;
2990 return nbbuf;
2991}
2992
2993/*
2994 * Tell netbeans the user inserted some text.
2995 */
2996 void
2997netbeans_inserted(
2998 buf_T *bufp,
2999 linenr_T linenr,
3000 colnr_T col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 char_u *txt,
3002 int newlen)
3003{
3004 char_u *buf;
3005 int bufno;
3006 nbbuf_T *nbbuf;
3007 pos_T pos;
3008 long off;
3009 char_u *p;
3010 char_u *newtxt;
3011
3012 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3013 if (nbbuf == NULL)
3014 return;
3015
Bram Moolenaar009b2592004-10-24 19:18:58 +00003016 /* Don't mark as modified for initial read */
3017 if (nbbuf->insertDone)
3018 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019
3020 pos.lnum = linenr;
3021 pos.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 off = pos2off(bufp, &pos);
3023
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 /* send the "insert" EVT */
3025 newtxt = alloc(newlen + 1);
Bram Moolenaarb6356332005-07-18 21:40:44 +00003026 vim_strncpy(newtxt, txt, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 p = nb_quote(newtxt);
3028 if (p != NULL)
3029 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00003030 buf = alloc(128 + 2*newlen);
Bram Moolenaar89d40322006-08-29 15:30:07 +00003031 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n",
3032 bufno, r_cmdno, off, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 nbdebug(("EVT: %s", buf));
3034 nb_send((char *)buf, "netbeans_inserted");
Bram Moolenaar009b2592004-10-24 19:18:58 +00003035 vim_free(p);
3036 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 vim_free(newtxt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039}
3040
3041/*
3042 * Tell netbeans some bytes have been removed.
3043 */
3044 void
3045netbeans_removed(
3046 buf_T *bufp,
3047 linenr_T linenr,
3048 colnr_T col,
3049 long len)
3050{
3051 char_u buf[128];
3052 int bufno;
3053 nbbuf_T *nbbuf;
3054 pos_T pos;
3055 long off;
3056
3057 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3058 if (nbbuf == NULL)
3059 return;
3060
3061 if (len < 0)
3062 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00003063 nbdebug(("Negative len %ld in netbeans_removed()!\n", len));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 return;
3065 }
3066
3067 nbbuf->modified = 1;
3068
3069 pos.lnum = linenr;
3070 pos.col = col;
3071
3072 off = pos2off(bufp, &pos);
3073
Bram Moolenaar89d40322006-08-29 15:30:07 +00003074 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 nbdebug(("EVT: %s", buf));
3076 nb_send((char *)buf, "netbeans_removed");
3077}
3078
3079/*
3080 * Send netbeans an unmodufied command.
3081 */
3082/*ARGSUSED*/
3083 void
3084netbeans_unmodified(buf_T *bufp)
3085{
3086#if 0
3087 char_u buf[128];
3088 int bufno;
3089 nbbuf_T *nbbuf;
3090
3091 /* This has been disabled, because NetBeans considers a buffer modified
3092 * even when all changes have been undone. */
3093 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3094 if (nbbuf == NULL)
3095 return;
3096
3097 nbbuf->modified = 0;
3098
Bram Moolenaar89d40322006-08-29 15:30:07 +00003099 sprintf((char *)buf, "%d:unmodified=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 nbdebug(("EVT: %s", buf));
3101 nb_send((char *)buf, "netbeans_unmodified");
3102#endif
3103}
3104
3105/*
3106 * Send a button release event back to netbeans. Its up to netbeans
3107 * to decide what to do (if anything) with this event.
3108 */
3109 void
3110netbeans_button_release(int button)
3111{
3112 char buf[128];
3113 int bufno;
3114
3115 bufno = nb_getbufno(curbuf);
3116
3117 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf)
3118 {
Bram Moolenaarc92ad2e2005-01-19 22:08:28 +00003119 int col = mouse_col - W_WINCOL(curwin) - (curwin->w_p_nu ? 9 : 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 long off = pos2off(curbuf, &curwin->w_cursor);
3121
3122 /* sync the cursor position */
Bram Moolenaar89d40322006-08-29 15:30:07 +00003123 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 nbdebug(("EVT: %s", buf));
3125 nb_send(buf, "netbeans_button_release[newDotAndMark]");
3126
Bram Moolenaar89d40322006-08-29 15:30:07 +00003127 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 button, (long)curwin->w_cursor.lnum, col);
3129 nbdebug(("EVT: %s", buf));
3130 nb_send(buf, "netbeans_button_release");
3131 }
3132}
3133
3134
3135/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00003136 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00003137 * kind of function key press. This function operates on a key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 */
3139 void
3140netbeans_keycommand(int key)
3141{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 char keyName[60];
Bram Moolenaar009b2592004-10-24 19:18:58 +00003143
3144 netbeans_keyname(key, keyName);
3145 netbeans_keystring(key, keyName);
3146}
3147
3148
3149/*
Bram Moolenaar143c38c2007-05-10 16:41:10 +00003150 * Send a keypress event back to netbeans. This usually simulates some
Bram Moolenaar009b2592004-10-24 19:18:58 +00003151 * kind of function key press. This function operates on a key string.
3152 */
3153 static void
3154netbeans_keystring(int key, char *keyName)
3155{
3156 char buf[2*MAXPATHL];
3157 int bufno = nb_getbufno(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 long off;
3159 char_u *q;
3160
3161 if (!haveConnection)
3162 return;
3163
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164
3165 if (bufno == -1)
3166 {
3167 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
3168 q = curbuf->b_ffname == NULL ? (char_u *)""
3169 : nb_quote(curbuf->b_ffname);
3170 if (q == NULL)
3171 return;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003172 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 q,
3174 "T", /* open in NetBeans */
3175 "F"); /* modified */
3176 if (curbuf->b_ffname != NULL)
3177 vim_free(q);
3178 nbdebug(("EVT: %s", buf));
3179 nb_send(buf, "netbeans_keycommand");
3180
Bram Moolenaar5b625c52005-01-31 18:55:55 +00003181 if (key > 0)
3182 postpone_keycommand(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 return;
3184 }
3185
3186 /* sync the cursor position */
3187 off = pos2off(curbuf, &curwin->w_cursor);
Bram Moolenaar89d40322006-08-29 15:30:07 +00003188 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 nbdebug(("EVT: %s", buf));
3190 nb_send(buf, "netbeans_keycommand");
3191
3192 /* To work on Win32 you must apply patch to ExtEditor module
3193 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
3194 * more synchronous
3195 */
3196
3197 /* now send keyCommand event */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003198 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00003199 bufno, r_cmdno, keyName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 nbdebug(("EVT: %s", buf));
3201 nb_send(buf, "netbeans_keycommand");
3202
3203 /* New: do both at once and include the lnum/col. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003204 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
Bram Moolenaar89d40322006-08-29 15:30:07 +00003205 bufno, r_cmdno, keyName,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col);
3207 nbdebug(("EVT: %s", buf));
3208 nb_send(buf, "netbeans_keycommand");
3209}
3210
3211
3212/*
3213 * Send a save event to netbeans.
3214 */
3215 void
3216netbeans_save_buffer(buf_T *bufp)
3217{
3218 char_u buf[64];
3219 int bufno;
3220 nbbuf_T *nbbuf;
3221
3222 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3223 if (nbbuf == NULL)
3224 return;
3225
3226 nbbuf->modified = 0;
3227
Bram Moolenaar89d40322006-08-29 15:30:07 +00003228 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 nbdebug(("EVT: %s", buf));
3230 nb_send((char *)buf, "netbeans_save_buffer");
3231}
3232
3233
3234/*
3235 * Send remove command to netbeans (this command has been turned off).
3236 */
3237 void
3238netbeans_deleted_all_lines(buf_T *bufp)
3239{
3240 char_u buf[64];
3241 int bufno;
3242 nbbuf_T *nbbuf;
3243
3244 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno);
3245 if (nbbuf == NULL)
3246 return;
3247
Bram Moolenaar009b2592004-10-24 19:18:58 +00003248 /* Don't mark as modified for initial read */
3249 if (nbbuf->insertDone)
3250 nbbuf->modified = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251
Bram Moolenaar89d40322006-08-29 15:30:07 +00003252 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 nbdebug(("EVT(suppressed): %s", buf));
3254/* nb_send(buf, "netbeans_deleted_all_lines"); */
3255}
3256
3257
3258/*
3259 * See if the lines are guarded. The top and bot parameters are from
3260 * u_savecommon(), these are the line above the change and the line below the
3261 * change.
3262 */
3263 int
3264netbeans_is_guarded(linenr_T top, linenr_T bot)
3265{
3266 signlist_T *p;
3267 int lnum;
3268
3269 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3270 if (p->id >= GUARDEDOFFSET)
3271 for (lnum = top + 1; lnum < bot; lnum++)
3272 if (lnum == p->lnum)
3273 return TRUE;
3274
3275 return FALSE;
3276}
3277
3278#if defined(FEAT_GUI_MOTIF) || defined(PROTO)
3279/*
3280 * We have multiple signs to draw at the same location. Draw the
3281 * multi-sign indicator instead. This is the Motif version.
3282 */
3283 void
3284netbeans_draw_multisign_indicator(int row)
3285{
3286 int i;
3287 int y;
3288 int x;
3289
3290 x = 0;
3291 y = row * gui.char_height + 2;
3292
3293 for (i = 0; i < gui.char_height - 3; i++)
3294 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++);
3295
3296 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y);
3297 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3298 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++);
3299 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y);
3300 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3301 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++);
3302 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y);
3303}
3304#endif /* FEAT_GUI_MOTIF */
3305
3306#ifdef FEAT_GUI_GTK
3307/*
3308 * We have multiple signs to draw at the same location. Draw the
3309 * multi-sign indicator instead. This is the GTK/Gnome version.
3310 */
3311 void
3312netbeans_draw_multisign_indicator(int row)
3313{
3314 int i;
3315 int y;
3316 int x;
3317 GdkDrawable *drawable = gui.drawarea->window;
3318
3319 x = 0;
3320 y = row * gui.char_height + 2;
3321
3322 for (i = 0; i < gui.char_height - 3; i++)
3323 gdk_draw_point(drawable, gui.text_gc, x+2, y++);
3324
3325 gdk_draw_point(drawable, gui.text_gc, x+0, y);
3326 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3327 gdk_draw_point(drawable, gui.text_gc, x+4, y++);
3328 gdk_draw_point(drawable, gui.text_gc, x+1, y);
3329 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3330 gdk_draw_point(drawable, gui.text_gc, x+3, y++);
3331 gdk_draw_point(drawable, gui.text_gc, x+2, y);
3332}
3333#endif /* FEAT_GUI_GTK */
3334
3335/*
3336 * If the mouse is clicked in the gutter of a line with multiple
3337 * annotations, cycle through the set of signs.
3338 */
3339 void
3340netbeans_gutter_click(linenr_T lnum)
3341{
3342 signlist_T *p;
3343
3344 for (p = curbuf->b_signlist; p != NULL; p = p->next)
3345 {
3346 if (p->lnum == lnum && p->next && p->next->lnum == lnum)
3347 {
3348 signlist_T *tail;
3349
3350 /* remove "p" from list, reinsert it at the tail of the sublist */
3351 if (p->prev)
3352 p->prev->next = p->next;
3353 else
3354 curbuf->b_signlist = p->next;
3355 p->next->prev = p->prev;
3356 /* now find end of sublist and insert p */
3357 for (tail = p->next;
3358 tail->next && tail->next->lnum == lnum
3359 && tail->next->id < GUARDEDOFFSET;
3360 tail = tail->next)
3361 ;
3362 /* tail now points to last entry with same lnum (except
3363 * that "guarded" annotations are always last) */
3364 p->next = tail->next;
3365 if (tail->next)
3366 tail->next->prev = p;
3367 p->prev = tail;
3368 tail->next = p;
3369 update_debug_sign(curbuf, lnum);
3370 break;
3371 }
3372 }
3373}
3374
3375
3376/*
3377 * Add a sign of the reqested type at the requested location.
3378 *
3379 * Reverse engineering:
3380 * Apparently an annotation is defined the first time it is used in a buffer.
3381 * When the same annotation is used in two buffers, the second time we do not
3382 * need to define a new sign name but reuse the existing one. But since the
3383 * ID number used in the second buffer starts counting at one again, a mapping
3384 * is made from the ID specifically for the buffer to the global sign name
3385 * (which is a number).
3386 *
3387 * globalsignmap[] stores the signs that have been defined globally.
3388 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3389 * globalsignmap[].
3390 */
3391/*ARGSUSED*/
3392 static void
3393addsigntype(
3394 nbbuf_T *buf,
3395 int typeNum,
3396 char_u *typeName,
3397 char_u *tooltip,
3398 char_u *glyphFile,
3399 int use_fg,
3400 int fg,
3401 int use_bg,
3402 int bg)
3403{
3404 char fgbuf[32];
3405 char bgbuf[32];
3406 int i, j;
3407
3408 for (i = 0; i < globalsignmapused; i++)
3409 if (STRCMP(typeName, globalsignmap[i]) == 0)
3410 break;
3411
3412 if (i == globalsignmapused) /* not found; add it to global map */
3413 {
3414 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%d,%d)\n",
3415 typeNum, typeName, tooltip, glyphFile, fg, bg));
3416 if (use_fg || use_bg)
3417 {
3418 sprintf(fgbuf, "guifg=#%06x", fg & 0xFFFFFF);
3419 sprintf(bgbuf, "guibg=#%06x", bg & 0xFFFFFF);
3420
3421 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "",
3422 (use_bg) ? bgbuf : "");
3423 if (*glyphFile == NUL)
3424 /* no glyph, line highlighting only */
3425 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName);
3426 else if (vim_strsize(glyphFile) <= 2)
3427 /* one- or two-character glyph name, use as text glyph with
3428 * texthl */
3429 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1,
3430 glyphFile, typeName);
3431 else
3432 /* glyph, line highlighting */
3433 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1,
3434 glyphFile, typeName);
3435 }
3436 else
3437 /* glyph, no line highlighting */
3438 coloncmd(":sign define %d icon=%s", i + 1, glyphFile);
3439
3440 if (STRCMP(typeName,"CurrentPC") == 0)
3441 curPCtype = typeNum;
3442
3443 if (globalsignmapused == globalsignmaplen)
3444 {
3445 if (globalsignmaplen == 0) /* first allocation */
3446 {
3447 globalsignmaplen = 20;
3448 globalsignmap = (char **)alloc_clear(globalsignmaplen*sizeof(char *));
3449 }
3450 else /* grow it */
3451 {
3452 int incr;
3453 int oldlen = globalsignmaplen;
3454
3455 globalsignmaplen *= 2;
3456 incr = globalsignmaplen - oldlen;
3457 globalsignmap = (char **)vim_realloc(globalsignmap,
3458 globalsignmaplen * sizeof(char *));
3459 memset(globalsignmap + oldlen, 0, incr * sizeof(char *));
3460 }
3461 }
3462
3463 globalsignmap[i] = (char *)typeName;
3464 globalsignmapused = i + 1;
3465 }
3466
3467 /* check local map; should *not* be found! */
3468 for (j = 0; j < buf->signmapused; j++)
3469 if (buf->signmap[j] == i + 1)
3470 return;
3471
3472 /* add to local map */
3473 if (buf->signmapused == buf->signmaplen)
3474 {
3475 if (buf->signmaplen == 0) /* first allocation */
3476 {
3477 buf->signmaplen = 5;
3478 buf->signmap = (int *)alloc_clear(buf->signmaplen * sizeof(int *));
3479 }
3480 else /* grow it */
3481 {
3482 int incr;
3483 int oldlen = buf->signmaplen;
3484 buf->signmaplen *= 2;
3485 incr = buf->signmaplen - oldlen;
3486 buf->signmap = (int *)vim_realloc(buf->signmap,
3487 buf->signmaplen*sizeof(int *));
3488 memset(buf->signmap + oldlen, 0, incr * sizeof(int *));
3489 }
3490 }
3491
3492 buf->signmap[buf->signmapused++] = i + 1;
3493
3494}
3495
3496
3497/*
3498 * See if we have the requested sign type in the buffer.
3499 */
3500 static int
3501mapsigntype(nbbuf_T *buf, int localsigntype)
3502{
3503 if (--localsigntype >= 0 && localsigntype < buf->signmapused)
3504 return buf->signmap[localsigntype];
3505
3506 return 0;
3507}
3508
3509
3510/*
3511 * Compute length of buffer, don't print anything.
3512 */
3513 static long
3514get_buf_size(buf_T *bufp)
3515{
3516 linenr_T lnum;
3517 long char_count = 0;
3518 int eol_size;
3519 long last_check = 100000L;
3520
3521 if (bufp->b_ml.ml_flags & ML_EMPTY)
3522 return 0;
3523 else
3524 {
3525 if (get_fileformat(bufp) == EOL_DOS)
3526 eol_size = 2;
3527 else
3528 eol_size = 1;
3529 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum)
3530 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003531 char_count += (long)STRLEN(ml_get(lnum)) + eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 /* Check for a CTRL-C every 100000 characters */
3533 if (char_count > last_check)
3534 {
3535 ui_breakcheck();
3536 if (got_int)
3537 return char_count;
3538 last_check = char_count + 100000L;
3539 }
3540 }
3541 /* Correction for when last line doesn't have an EOL. */
3542 if (!bufp->b_p_eol && bufp->b_p_bin)
3543 char_count -= eol_size;
3544 }
3545
3546 return char_count;
3547}
3548
3549/*
3550 * Convert character offset to lnum,col
3551 */
3552 static pos_T *
3553off2pos(buf_T *buf, long offset)
3554{
3555 linenr_T lnum;
3556 static pos_T pos;
3557
3558 pos.lnum = 0;
3559 pos.col = 0;
3560#ifdef FEAT_VIRTUALEDIT
3561 pos.coladd = 0;
3562#endif
3563
3564 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3565 {
3566 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0)
3567 return NULL;
3568 pos.lnum = lnum;
3569 pos.col = offset;
3570 }
3571
3572 return &pos;
3573}
3574
3575/*
3576 * Convert an argument in the form "1234" to an offset and compute the
3577 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3578 * lnum/col.
3579 * "argp" is advanced to after the argument.
3580 * Return a pointer to the position, NULL if something is wrong.
3581 */
3582 static pos_T *
3583get_off_or_lnum(buf_T *buf, char_u **argp)
3584{
3585 static pos_T mypos;
3586 long off;
3587
3588 off = strtol((char *)*argp, (char **)argp, 10);
3589 if (**argp == '/')
3590 {
3591 mypos.lnum = (linenr_T)off;
3592 ++*argp;
3593 mypos.col = strtol((char *)*argp, (char **)argp, 10);
3594#ifdef FEAT_VIRTUALEDIT
3595 mypos.coladd = 0;
3596#endif
3597 return &mypos;
3598 }
3599 return off2pos(buf, off);
3600}
3601
3602
3603/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003604 * Convert (lnum,col) to byte offset in the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 */
3606 static long
3607pos2off(buf_T *buf, pos_T *pos)
3608{
3609 long offset = 0;
3610
3611 if (!(buf->b_ml.ml_flags & ML_EMPTY))
3612 {
3613 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0)
3614 return 0;
3615 offset += pos->col;
3616 }
3617
3618 return offset;
3619}
3620
3621
Bram Moolenaar009b2592004-10-24 19:18:58 +00003622/*
3623 * This message is printed after NetBeans opens a new file. Its
3624 * similar to the message readfile() uses, but since NetBeans
3625 * doesn't normally call readfile, we do our own.
3626 */
3627 static void
3628print_read_msg(buf)
3629 nbbuf_T *buf;
3630{
3631 int lnum = buf->bufp->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003632 long nchars = (long)buf->bufp->b_orig_size;
Bram Moolenaar009b2592004-10-24 19:18:58 +00003633 char_u c;
3634
3635 msg_add_fname(buf->bufp, buf->bufp->b_ffname);
3636 c = FALSE;
3637
3638 if (buf->bufp->b_p_ro)
3639 {
3640 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
3641 c = TRUE;
3642 }
3643 if (!buf->bufp->b_start_eol)
3644 {
3645 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") : _("[Incomplete last line]"));
3646 c = TRUE;
3647 }
3648 msg_add_lines(c, (long)lnum, nchars);
3649
3650 /* Now display it */
3651 vim_free(keep_msg);
3652 keep_msg = NULL;
3653 msg_scrolled_ign = TRUE;
3654 msg_trunc_attr(IObuff, FALSE, 0);
3655 msg_scrolled_ign = FALSE;
3656}
3657
3658
3659/*
3660 * Print a message after NetBeans writes the file. This message should be identical
3661 * to the standard message a non-netbeans user would see when writing a file.
3662 */
3663 static void
3664print_save_msg(buf, nchars)
3665 nbbuf_T *buf;
3666 long nchars;
3667{
3668 char_u c;
3669 char_u *p;
3670
3671 if (nchars >= 0)
3672 {
3673 msg_add_fname(buf->bufp, buf->bufp->b_ffname); /* fname in IObuff with quotes */
3674 c = FALSE;
3675
3676 msg_add_lines(c, buf->bufp->b_ml.ml_line_count,
3677 (long)buf->bufp->b_orig_size);
3678
3679 vim_free(keep_msg);
3680 keep_msg = NULL;
3681 msg_scrolled_ign = TRUE;
3682 p = msg_trunc_attr(IObuff, FALSE, 0);
3683 if ((msg_scrolled && !need_wait_return) || !buf->initDone)
3684 {
3685 /* Need to repeat the message after redrawing when:
3686 * - When reading from stdin (the screen will be cleared next).
3687 * - When restart_edit is set (otherwise there will be a delay
3688 * before redrawing).
3689 * - When the screen was scrolled but there is no wait-return
3690 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003691 set_keep_msg(p, 0);
Bram Moolenaar009b2592004-10-24 19:18:58 +00003692 }
3693 msg_scrolled_ign = FALSE;
3694 /* add_to_input_buf((char_u *)"\f", 1); */
3695 }
3696 else
3697 {
3698 char_u ebuf[BUFSIZ];
3699
3700 STRCPY(ebuf, (char_u *)_("E505: "));
3701 STRCAT(ebuf, IObuff);
3702 STRCAT(ebuf, (char_u *)_("is read-only (add ! to override)"));
3703 STRCPY(IObuff, ebuf);
Bram Moolenaarf2330482008-06-24 20:19:36 +00003704 nbdebug((" %s\n", ebuf ));
Bram Moolenaar009b2592004-10-24 19:18:58 +00003705 emsg(IObuff);
3706 }
3707}
3708
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709#endif /* defined(FEAT_NETBEANS_INTG) */