1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * Netbeans integration by David Weatherford
5 * Adopted for Win32 by Sergey Khorev
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.
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.
19 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
20 # include "vimio.h" /* for mch_open(), must be before vim.h */
25 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
27 /* Note: when making changes here also adjust configure.in. */
30 # include <tchar.h> /* for _T definition for TRACEn macros */
32 /* WinSock API is separated from C API, thus we can't use read(), write(),
34 # define sock_errno WSAGetLastError()
35 # define ECONNREFUSED WSAECONNREFUSED
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 */
46 # include <netinet/in.h>
47 # include <sys/socket.h>
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)
61 #define GUARDED 10000 /* typenr for "guarded" annotation */
62 #define GUARDEDOFFSET 1000000 /* base for "guarded" sign id's */
64 /* The first implementation (working only with Netbeans) returned "1.1". The
65 * protocol implemented here also supports A-A-P. */
66 static char *ExtEdProtocolVersion
= "2.4";
68 static long pos2off
__ARGS((buf_T
*, pos_T
*));
69 static pos_T
*off2pos
__ARGS((buf_T
*, long));
70 static pos_T
*get_off_or_lnum
__ARGS((buf_T
*buf
, char_u
**argp
));
71 static long get_buf_size
__ARGS((buf_T
*));
72 static void netbeans_keystring
__ARGS((int key
, char *keystr
));
73 static void special_keys
__ARGS((char_u
*args
));
75 static void netbeans_connect
__ARGS((void));
76 static int getConnInfo
__ARGS((char *file
, char **host
, char **port
, char **password
));
78 static void nb_init_graphics
__ARGS((void));
79 static void coloncmd
__ARGS((char *cmd
, ...));
80 static void nb_set_curbuf
__ARGS((buf_T
*buf
));
82 static void messageFromNetbeans
__ARGS((XtPointer
, int *, XtInputId
*));
85 static void messageFromNetbeans
__ARGS((gpointer
, gint
, GdkInputCondition
));
87 static void nb_parse_cmd
__ARGS((char_u
*));
88 static int nb_do_cmd
__ARGS((int, char_u
*, int, int, char_u
*));
89 static void nb_send
__ARGS((char *buf
, char *fun
));
92 typedef __int64 NBSOCK
;
97 static NBSOCK sd
= -1; /* socket fd for Netbeans connection */
99 static XtInputId inputHandler
; /* Cookie for input */
102 static gint inputHandler
; /* Cookie for input */
105 static int inputHandler
= -1; /* simply ret.value of WSAAsyncSelect() */
106 extern HWND s_hwnd
; /* Gvim's Window handle */
108 static int r_cmdno
; /* current command number for reply */
109 static int haveConnection
= FALSE
; /* socket is connected and
110 initialization is done */
111 #ifdef FEAT_GUI_MOTIF
112 static void netbeans_Xt_connect
__ARGS((void *context
));
115 static void netbeans_gtk_connect
__ARGS((void));
118 static void netbeans_w32_connect
__ARGS((void));
121 static int dosetvisible
= FALSE
;
124 * Include the debugging code if wanted.
127 # include "nbdebug.c"
130 /* Connect back to Netbeans process */
131 #ifdef FEAT_GUI_MOTIF
133 netbeans_Xt_connect(void *context
)
138 /* tell notifier we are interested in being called
139 * when there is input on the editor connection socket
141 inputHandler
= XtAppAddInput((XtAppContext
)context
, sd
,
142 (XtPointer
)(XtInputReadMask
+ XtInputExceptMask
),
143 messageFromNetbeans
, NULL
);
148 netbeans_disconnect(void)
150 if (inputHandler
!= (XtInputId
)NULL
)
152 XtRemoveInput(inputHandler
);
153 inputHandler
= (XtInputId
)NULL
;
156 haveConnection
= FALSE
;
158 bevalServers
&= ~BEVAL_NETBEANS
;
161 #endif /* FEAT_MOTIF_GUI */
165 netbeans_gtk_connect(void)
171 * Tell gdk we are interested in being called when there
172 * is input on the editor connection socket
174 inputHandler
= gdk_input_add((gint
)sd
, (GdkInputCondition
)
175 ((int)GDK_INPUT_READ
+ (int)GDK_INPUT_EXCEPTION
),
176 messageFromNetbeans
, NULL
);
181 netbeans_disconnect(void)
183 if (inputHandler
!= 0)
185 gdk_input_remove(inputHandler
);
189 haveConnection
= FALSE
;
191 bevalServers
&= ~BEVAL_NETBEANS
;
194 #endif /* FEAT_GUI_GTK */
196 #if defined(FEAT_GUI_W32) || defined(PROTO)
198 netbeans_w32_connect(void)
204 * Tell Windows we are interested in receiving message when there
205 * is input on the editor connection socket
207 inputHandler
= WSAAsyncSelect(sd
, s_hwnd
, WM_NETBEANS
, FD_READ
);
212 netbeans_disconnect(void)
214 if (inputHandler
== 0)
216 WSAAsyncSelect(sd
, s_hwnd
, 0, 0);
220 haveConnection
= FALSE
;
222 bevalServers
&= ~BEVAL_NETBEANS
;
225 #endif /* FEAT_GUI_W32 */
227 #define NB_DEF_HOST "localhost"
228 #define NB_DEF_ADDR "3219"
229 #define NB_DEF_PASS "changeme"
232 netbeans_connect(void)
235 struct sockaddr_in server
;
236 struct hostent
* host
;
243 struct sockaddr_un server
;
246 char *hostname
= NULL
;
247 char *address
= NULL
;
248 char *password
= NULL
;
252 if (netbeansArg
[3] == '=')
254 /* "-nb=fname": Read info from specified file. */
255 if (getConnInfo(netbeansArg
+ 4, &hostname
, &address
, &password
)
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
)
266 /* "-nb": get info from file specified in environment */
267 if (getConnInfo(fname
, &hostname
, &address
, &password
) == FAIL
)
274 /* "-nb:<host>:<addr>:<password>": get info from argument */
276 address
= strchr(hostname
, ':');
280 password
= strchr(address
, ':');
281 if (password
!= NULL
)
286 /* Get the missing values from the environment. */
287 if (hostname
== NULL
|| *hostname
== '\0')
288 hostname
= getenv("__NETBEANS_HOST");
290 address
= getenv("__NETBEANS_SOCKET");
291 if (password
== NULL
)
292 password
= getenv("__NETBEANS_VIM_PASSWORD");
294 /* Move values to allocated memory. */
295 if (hostname
!= NULL
)
296 hostname
= (char *)vim_strsave((char_u
*)hostname
);
298 address
= (char *)vim_strsave((char_u
*)address
);
299 if (password
!= NULL
)
300 password
= (char *)vim_strsave((char_u
*)password
);
304 /* Use the default when a value is missing. */
305 if (hostname
== NULL
|| *hostname
== '\0')
308 hostname
= (char *)vim_strsave((char_u
*)NB_DEF_HOST
);
310 if (address
== NULL
|| *address
== '\0')
313 address
= (char *)vim_strsave((char_u
*)NB_DEF_ADDR
);
315 if (password
== NULL
|| *password
== '\0')
318 password
= (char *)vim_strsave((char_u
*)NB_DEF_PASS
);
320 if (hostname
== NULL
|| address
== NULL
|| password
== NULL
)
321 goto theend
; /* out of memory */
324 port
= atoi(address
);
326 if ((sd
= (NBSOCK
)socket(AF_INET
, SOCK_STREAM
, 0)) == (NBSOCK
)-1)
328 nbdebug(("error in socket() in netbeans_connect()\n"));
329 PERROR("socket() in netbeans_connect()");
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
)
340 if (mch_access(hostname
, R_OK
) >= 0)
342 /* DEBUG: input file */
343 sd
= mch_open(hostname
, O_RDONLY
, 0);
346 nbdebug(("error in gethostbyname() in netbeans_connect()\n"));
347 PERROR("gethostbyname() in netbeans_connect()");
351 memcpy((char *)&server
.sin_addr
, host
->h_addr
, host
->h_length
);
353 if ((sd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) == -1)
355 nbdebug(("error in socket() in netbeans_connect()\n"));
356 PERROR("socket() in netbeans_connect()");
360 server
.sun_family
= AF_UNIX
;
361 strcpy(server
.sun_path
, address
);
363 /* Connect to server */
364 if (connect(sd
, (struct sockaddr
*)&server
, sizeof(server
)))
366 nbdebug(("netbeans_connect: Connect failed with errno %d\n", sock_errno
));
367 if (sock_errno
== ECONNREFUSED
)
371 if ((sd
= (NBSOCK
)socket(AF_INET
, SOCK_STREAM
, 0)) == (NBSOCK
)-1)
373 nbdebug(("socket()#2 in netbeans_connect()\n"));
374 PERROR("socket()#2 in netbeans_connect()");
378 if ((sd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) == -1)
380 nbdebug(("socket()#2 in netbeans_connect()\n"));
381 PERROR("socket()#2 in netbeans_connect()");
385 if (connect(sd
, (struct sockaddr
*)&server
, sizeof(server
)))
390 && ((sock_errno
== ECONNREFUSED
) || (sock_errno
== EINTR
)))
392 nbdebug(("retrying...\n"));
394 if (connect(sd
, (struct sockaddr
*)&server
,
395 sizeof(server
)) == 0)
403 /* Get here when the server can't be found. */
404 nbdebug(("Cannot connect to Netbeans #2\n"));
405 PERROR(_("Cannot connect to Netbeans #2"));
413 nbdebug(("Cannot connect to Netbeans\n"));
414 PERROR(_("Cannot connect to Netbeans"));
419 vim_snprintf(buf
, sizeof(buf
), "AUTH %s\n", password
);
420 nb_send(buf
, "netbeans_connect");
422 sprintf(buf
, "0:version=0 \"%s\"\n", ExtEdProtocolVersion
);
423 nb_send(buf
, "externaleditor_version");
425 /* nb_init_graphics(); delay until needed */
427 haveConnection
= TRUE
;
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
443 getConnInfo(char *file
, char **host
, char **port
, char **auth
)
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.
456 if (mch_stat(file
, &st
) == 0 && (st
.st_mode
& 0077) != 0)
458 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n",
460 EMSG2(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""),
466 fp
= mch_fopen(file
, "r");
469 nbdebug(("Cannot open NetBeans connection info file\n"));
470 PERROR("E660: Cannot open NetBeans connection info file");
474 /* Read the file. There should be one of each parameter */
475 while ((lp
= (char_u
*)fgets((char *)buf
, BUFSIZ
, fp
)) != NULL
)
477 if ((nl
= vim_strchr(lp
, '\n')) != NULL
)
478 *nl
= 0; /* strip off the trailing newline */
480 if (STRNCMP(lp
, "host=", 5) == 0)
483 *host
= (char *)vim_strsave(&buf
[5]);
485 else if (STRNCMP(lp
, "port=", 5) == 0)
488 *port
= (char *)vim_strsave(&buf
[5]);
490 else if (STRNCMP(lp
, "auth=", 5) == 0)
493 *auth
= (char *)vim_strsave(&buf
[5]);
505 struct keyqueue
*next
;
506 struct keyqueue
*prev
;
509 typedef struct keyqueue keyQ_T
;
511 static keyQ_T keyHead
; /* dummy node, header for circular queue */
515 * Queue up key commands sent from netbeans.
518 postpone_keycommand(int key
)
522 node
= (keyQ_T
*)alloc(sizeof(keyQ_T
));
524 if (keyHead
.next
== NULL
) /* initialize circular queue */
526 keyHead
.next
= &keyHead
;
527 keyHead
.prev
= &keyHead
;
530 /* insert node at tail of queue */
531 node
->next
= &keyHead
;
532 node
->prev
= keyHead
.prev
;
533 keyHead
.prev
->next
= node
;
540 * Handle any queued-up NetBeans keycommands to be send.
543 handle_key_queue(void)
545 while (keyHead
.next
&& keyHead
.next
!= &keyHead
)
547 /* first, unlink the node */
548 keyQ_T
*node
= keyHead
.next
;
549 keyHead
.next
= node
->next
;
550 node
->next
->prev
= node
->prev
;
552 /* now, send the keycommand */
553 netbeans_keycommand(node
->key
);
555 /* Finally, dispose of the node */
564 struct cmdqueue
*next
;
565 struct cmdqueue
*prev
;
568 typedef struct cmdqueue queue_T
;
570 static queue_T head
; /* dummy node, header for circular queue */
574 * Put the buffer on the work queue; possibly save it to a file as well.
577 save(char_u
*buf
, int len
)
581 node
= (queue_T
*)alloc(sizeof(queue_T
));
583 return; /* out of memory */
584 node
->buffer
= alloc(len
+ 1);
585 if (node
->buffer
== NULL
)
588 return; /* out of memory */
590 mch_memmove(node
->buffer
, buf
, (size_t)len
);
591 node
->buffer
[len
] = NUL
;
593 if (head
.next
== NULL
) /* initialize circular queue */
599 /* insert node at tail of queue */
601 node
->prev
= head
.prev
;
602 head
.prev
->next
= node
;
607 static int outfd
= -2;
609 /* possibly write buffer out to a file */
615 char *file
= getenv("__NETBEANS_SAVE");
619 outfd
= mch_open(file
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0666);
623 write(outfd
, buf
, len
);
630 * While there's still a command in the work queue, parse and execute it.
633 netbeans_parse_messages(void)
638 while (head
.next
!= NULL
&& head
.next
!= &head
)
642 /* Locate the first line in the first buffer. */
643 p
= vim_strchr(node
->buffer
, '\n');
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
)
651 p
= alloc((unsigned)(STRLEN(node
->buffer
)
652 + STRLEN(node
->next
->buffer
) + 1));
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
;
660 /* dispose of the node and buffer */
661 head
.next
= node
->next
;
662 node
->next
->prev
= node
->prev
;
663 vim_free(node
->buffer
);
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. */
675 head
.next
= node
->next
;
676 node
->next
->prev
= node
->prev
;
679 /* now, parse and execute the commands */
680 nb_parse_cmd(node
->buffer
);
684 /* buffer finished, dispose of the node and buffer */
685 vim_free(node
->buffer
);
690 /* more follows, move to the start */
691 STRMOVE(node
->buffer
, p
);
697 /* Buffer size for reading incoming messages. */
698 #define MAXMSGSIZE 4096
701 * Read and process a command from netbeans.
704 #if defined(FEAT_GUI_W32) || defined(PROTO)
705 /* Use this one when generating prototypes, the others are static. */
707 messageFromNetbeansW32()
709 # ifdef FEAT_GUI_MOTIF
711 messageFromNetbeans(XtPointer clientData
, int *unused1
, XtInputId
*unused2
)
715 messageFromNetbeans(gpointer clientData
, gint unused1
,
716 GdkInputCondition unused2
)
720 static char_u
*buf
= NULL
;
724 static int level
= 0;
729 nbdebug(("messageFromNetbeans() called without a socket\n"));
734 ++level
; /* recursion guard; this will be called from the X event loop */
737 /* Allocate a buffer to read into. */
740 buf
= alloc(MAXMSGSIZE
);
742 return; /* out of memory! */
745 /* Keep on reading for as long as there is something to read. */
748 len
= sock_read(sd
, buf
, MAXMSGSIZE
);
750 break; /* error or nothing more to read */
752 /* Store the read message in the queue. */
755 if (len
< MAXMSGSIZE
)
756 break; /* did read everything that's available */
761 /* read error or didn't read anything */
762 netbeans_disconnect();
763 nbdebug(("messageFromNetbeans: Error in read() from socket\n"));
766 nbdebug(("read from Netbeans socket\n"));
767 PERROR(_("read from Netbeans socket"));
769 return; /* don't try to parse it */
773 if (gtk_main_level() > 0)
776 /* Parse the messages, but avoid recursion. */
778 netbeans_parse_messages();
785 * Handle one NUL terminated command.
787 * format of a command from netbeans:
789 * 6:setTitle!84 "a.c"
798 * for function calls, the ! is replaced by a /
801 nb_parse_cmd(char_u
*cmd
)
808 if (STRCMP(cmd
, "DISCONNECT") == 0)
810 /* We assume the server knows that we can safely exit! */
813 /* Disconnect before exiting, Motif hangs in a Select error
814 * message otherwise. */
815 netbeans_disconnect();
820 if (STRCMP(cmd
, "DETACH") == 0)
822 /* The IDE is breaking the connection. */
825 netbeans_disconnect();
829 bufno
= strtol((char *)cmd
, &verb
, 10);
833 nbdebug((" missing colon: %s\n", cmd
));
834 EMSG2("E627: missing colon: %s", cmd
);
837 ++verb
; /* skip colon */
839 for (q
= verb
; *q
; q
++)
857 nbdebug((" missing ! or / in: %s\n", cmd
));
858 EMSG2("E628: missing ! or / in: %s", cmd
);
862 r_cmdno
= strtol(q
, &q
, 10);
864 q
= (char *)skipwhite((char_u
*)q
);
866 if (nb_do_cmd(bufno
, (char_u
*)verb
, isfunc
, r_cmdno
, (char_u
*)q
) == FAIL
)
870 * This happens because the ExtEd can send a cammand or 2 after
871 * doing a stopDocumentListen command. It doesn't harm anything
872 * so I'm disabling it except for debugging.
874 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd
));
875 EMSG("E629: bad return from nb_do_cmd");
883 unsigned int fireChanges
:1;
884 unsigned int initDone
:1;
885 unsigned int insertDone
:1;
886 unsigned int modified
:1;
894 typedef struct nbbuf_struct nbbuf_T
;
896 static nbbuf_T
*buf_list
= 0;
897 static int buf_list_size
= 0; /* size of buf_list */
898 static int buf_list_used
= 0; /* nr of entries in buf_list actually in use */
900 static char **globalsignmap
;
901 static int globalsignmaplen
;
902 static int globalsignmapused
;
904 static int mapsigntype
__ARGS((nbbuf_T
*, int localsigntype
));
905 static void addsigntype
__ARGS((nbbuf_T
*, int localsigntype
, char_u
*typeName
,
906 char_u
*tooltip
, char_u
*glyphfile
,
907 int usefg
, int fg
, int usebg
, int bg
));
908 static void print_read_msg
__ARGS((nbbuf_T
*buf
));
909 static void print_save_msg
__ARGS((nbbuf_T
*buf
, long nchars
));
911 static int curPCtype
= -1;
914 * Get the Netbeans buffer number for the specified buffer.
917 nb_getbufno(buf_T
*bufp
)
921 for (i
= 0; i
< buf_list_used
; i
++)
922 if (buf_list
[i
].bufp
== bufp
)
928 * Is this a NetBeans-owned buffer?
931 isNetbeansBuffer(buf_T
*bufp
)
933 return usingNetbeans
&& bufp
->b_netbeans_file
;
937 * NetBeans and Vim have different undo models. In Vim, the file isn't
938 * changed if changes are undone via the undo command. In NetBeans, once
939 * a change has been made the file is marked as modified until saved. It
940 * doesn't matter if the change was undone.
942 * So this function is for the corner case where Vim thinks a buffer is
943 * unmodified but NetBeans thinks it IS modified.
946 isNetbeansModified(buf_T
*bufp
)
948 if (usingNetbeans
&& bufp
->b_netbeans_file
)
950 int bufno
= nb_getbufno(bufp
);
953 return buf_list
[bufno
].modified
;
962 * Given a Netbeans buffer number, return the netbeans buffer.
963 * Returns NULL for 0 or a negative number. A 0 bufno means a
964 * non-buffer related command has been sent.
967 nb_get_buf(int bufno
)
969 /* find or create a buffer with the given number */
978 buf_list
= (nbbuf_T
*)alloc_clear(100 * sizeof(nbbuf_T
));
981 if (bufno
>= buf_list_used
) /* new */
983 if (bufno
>= buf_list_size
) /* grow list */
985 incr
= bufno
- buf_list_size
+ 90;
986 buf_list_size
+= incr
;
987 buf_list
= (nbbuf_T
*)vim_realloc(
988 buf_list
, buf_list_size
* sizeof(nbbuf_T
));
989 memset(buf_list
+ buf_list_size
- incr
, 0, incr
* sizeof(nbbuf_T
));
992 while (buf_list_used
<= bufno
)
994 /* Default is to fire text changes. */
995 buf_list
[buf_list_used
].fireChanges
= 1;
1000 return buf_list
+ bufno
;
1004 * Return the number of buffers that are modified.
1007 count_changed_buffers(void)
1013 for (bufp
= firstbuf
; bufp
!= NULL
; bufp
= bufp
->b_next
)
1014 if (bufp
->b_changed
)
1020 * End the netbeans session.
1026 static char buf
[128];
1028 if (!haveConnection
)
1031 for (i
= 0; i
< buf_list_used
; i
++)
1033 if (!buf_list
[i
].bufp
)
1035 if (netbeansForcedQuit
)
1037 /* mark as unmodified so NetBeans won't put up dialog on "killed" */
1038 sprintf(buf
, "%d:unmodified=%d\n", i
, r_cmdno
);
1039 nbdebug(("EVT: %s", buf
));
1040 nb_send(buf
, "netbeans_end");
1042 sprintf(buf
, "%d:killed=%d\n", i
, r_cmdno
);
1043 nbdebug(("EVT: %s", buf
));
1044 /* nb_send(buf, "netbeans_end"); avoid "write failed" messages */
1046 sock_write(sd
, buf
, (int)STRLEN(buf
)); /* ignore errors */
1051 * Send a message to netbeans.
1054 nb_send(char *buf
, char *fun
)
1056 /* Avoid giving pages full of error messages when the other side has
1057 * exited, only mention the first error until the connection works again. */
1058 static int did_error
= FALSE
;
1064 nbdebug((" %s(): write while not connected\n", fun
));
1065 EMSG2("E630: %s(): write while not connected", fun
);
1069 else if (sock_write(sd
, buf
, (int)STRLEN(buf
)) != (int)STRLEN(buf
))
1073 nbdebug((" %s(): write failed\n", fun
));
1074 EMSG2("E631: %s(): write failed", fun
);
1083 * Some input received from netbeans requires a response. This function
1084 * handles a response with no information (except the command number).
1087 nb_reply_nil(int cmdno
)
1091 if (!haveConnection
)
1094 nbdebug(("REP %d: <none>\n", cmdno
));
1096 sprintf(reply
, "%d\n", cmdno
);
1097 nb_send(reply
, "nb_reply_nil");
1102 * Send a response with text.
1103 * "result" must have been quoted already (using nb_quote()).
1106 nb_reply_text(int cmdno
, char_u
*result
)
1110 if (!haveConnection
)
1113 nbdebug(("REP %d: %s\n", cmdno
, (char *)result
));
1115 reply
= alloc((unsigned)STRLEN(result
) + 32);
1116 sprintf((char *)reply
, "%d %s\n", cmdno
, (char *)result
);
1117 nb_send((char *)reply
, "nb_reply_text");
1124 * Send a response with a number result code.
1127 nb_reply_nr(int cmdno
, long result
)
1131 if (!haveConnection
)
1134 nbdebug(("REP %d: %ld\n", cmdno
, result
));
1136 sprintf(reply
, "%d %ld\n", cmdno
, result
);
1137 nb_send(reply
, "nb_reply_nr");
1142 * Encode newline, ret, backslash, double quote for transmission to NetBeans.
1145 nb_quote(char_u
*txt
)
1147 char_u
*buf
= alloc((unsigned)(2 * STRLEN(txt
) + 1));
1159 *q
++ = '\\'; *q
++ = *p
; break;
1161 /* *q++ = '\\'; *q++ = 't'; break; */
1163 *q
++ = '\\'; *q
++ = 'n'; break;
1165 *q
++ = '\\'; *q
++ = 'r'; break;
1178 * Remove top level double quotes; convert backslashed chars.
1179 * Returns an allocated string (NULL for failure).
1180 * If "endp" is not NULL it is set to the character after the terminating
1184 nb_unquote(char_u
*p
, char_u
**endp
)
1190 /* result is never longer than input */
1191 result
= (char *)alloc_clear((unsigned)STRLEN(p
) + 1);
1197 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n",
1203 for (q
= result
; !done
&& *p
!= NUL
;)
1209 * Unbackslashed dquote marks the end, if first char was dquote.
1218 case '\\': *q
++ = '\\'; break;
1219 case 'n': *q
++ = '\n'; break;
1220 case 't': *q
++ = '\t'; break;
1221 case 'r': *q
++ = '\r'; break;
1222 case '"': *q
++ = '"'; break;
1223 case NUL
: --p
; break;
1224 /* default: skip over illegal chars */
1241 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the
1242 * current buffer. Remove to end of line when "last" is MAXCOL.
1245 nb_partialremove(linenr_T lnum
, colnr_T first
, colnr_T last
)
1247 char_u
*oldtext
, *newtext
;
1249 int lastbyte
= last
;
1251 oldtext
= ml_get(lnum
);
1252 oldlen
= (int)STRLEN(oldtext
);
1253 if (first
>= (colnr_T
)oldlen
|| oldlen
== 0) /* just in case */
1255 if (lastbyte
>= oldlen
)
1256 lastbyte
= oldlen
- 1;
1257 newtext
= alloc(oldlen
- (int)(lastbyte
- first
));
1258 if (newtext
!= NULL
)
1260 mch_memmove(newtext
, oldtext
, first
);
1261 STRMOVE(newtext
+ first
, oldtext
+ lastbyte
+ 1);
1262 nbdebug((" NEW LINE %d: %s\n", lnum
, newtext
));
1263 ml_replace(lnum
, newtext
, FALSE
);
1268 * Replace the "first" line with the concatenation of the "first" and
1269 * the "other" line. The "other" line is not removed.
1272 nb_joinlines(linenr_T first
, linenr_T other
)
1274 int len_first
, len_other
;
1277 len_first
= (int)STRLEN(ml_get(first
));
1278 len_other
= (int)STRLEN(ml_get(other
));
1279 p
= alloc((unsigned)(len_first
+ len_other
+ 1));
1282 mch_memmove(p
, ml_get(first
), len_first
);
1283 mch_memmove(p
+ len_first
, ml_get(other
), len_other
+ 1);
1284 ml_replace(first
, p
, FALSE
);
1289 #define streq(a,b) (strcmp(a,b) == 0)
1290 static int needupdate
= 0;
1291 static int inAtomic
= 0;
1294 * Do the actual processing of a single netbeans command or function.
1295 * The difference between a command and function is that a function
1296 * gets a response (it's required) but a command does not.
1297 * For arguments see comment for nb_parse_cmd().
1305 char_u
*args
) /* points to space before arguments or NUL */
1309 nbbuf_T
*buf
= nb_get_buf(bufno
);
1310 static int skip
= 0;
1312 char *cp
; /* for when a char pointer is needed */
1314 nbdebug(("%s %d: (%d) %s %s\n", (func
) ? "FUN" : "CMD", cmdno
, bufno
, cmd
,
1315 STRCMP(cmd
, "insert") == 0 ? "<text>" : (char *)args
));
1319 /* =====================================================================*/
1320 if (streq((char *)cmd
, "getModified"))
1322 if (buf
== NULL
|| buf
->bufp
== NULL
)
1323 /* Return the number of buffers that are modified. */
1324 nb_reply_nr(cmdno
, (long)count_changed_buffers());
1326 /* Return whether the buffer is modified. */
1327 nb_reply_nr(cmdno
, (long)(buf
->bufp
->b_changed
1328 || isNetbeansModified(buf
->bufp
)));
1329 /* =====================================================================*/
1331 else if (streq((char *)cmd
, "saveAndExit"))
1333 /* Note: this will exit Vim if successful. */
1334 coloncmd(":confirm qall");
1336 /* We didn't exit: return the number of changed buffers. */
1337 nb_reply_nr(cmdno
, (long)count_changed_buffers());
1338 /* =====================================================================*/
1340 else if (streq((char *)cmd
, "getCursor"))
1344 /* Note: nb_getbufno() may return -1. This indicates the IDE
1345 * didn't assign a number to the current buffer in response to a
1346 * fileOpened event. */
1347 sprintf((char *)text
, "%d %ld %d %ld",
1348 nb_getbufno(curbuf
),
1349 (long)curwin
->w_cursor
.lnum
,
1350 (int)curwin
->w_cursor
.col
,
1351 pos2off(curbuf
, &curwin
->w_cursor
));
1352 nb_reply_text(cmdno
, text
);
1353 /* =====================================================================*/
1355 else if (streq((char *)cmd
, "getAnno"))
1359 if (buf
== NULL
|| buf
->bufp
== NULL
)
1361 nbdebug((" Invalid buffer identifier in getAnno\n"));
1362 EMSG("E652: Invalid buffer identifier in getAnno");
1370 serNum
= strtol(cp
, &cp
, 10);
1371 /* If the sign isn't found linenum will be zero. */
1372 linenum
= (long)buf_findsign(buf
->bufp
, serNum
);
1375 nb_reply_nr(cmdno
, linenum
);
1376 /* =====================================================================*/
1378 else if (streq((char *)cmd
, "getLength"))
1382 if (buf
== NULL
|| buf
->bufp
== NULL
)
1384 nbdebug((" invalid buffer identifier in getLength\n"));
1385 EMSG("E632: invalid buffer identifier in getLength");
1390 len
= get_buf_size(buf
->bufp
);
1392 nb_reply_nr(cmdno
, len
);
1393 /* =====================================================================*/
1395 else if (streq((char *)cmd
, "getText"))
1399 char_u
*text
= NULL
;
1404 if (buf
== NULL
|| buf
->bufp
== NULL
)
1406 nbdebug((" invalid buffer identifier in getText\n"));
1407 EMSG("E633: invalid buffer identifier in getText");
1412 len
= get_buf_size(buf
->bufp
);
1413 nlines
= buf
->bufp
->b_ml
.ml_line_count
;
1414 text
= alloc((unsigned)((len
> 0)
1415 ? ((len
+ nlines
) * 2) : 4));
1418 nbdebug((" nb_do_cmd: getText has null text field\n"));
1425 for (; lno
<= nlines
; lno
++)
1427 line
= nb_quote(ml_get_buf(buf
->bufp
, lno
, FALSE
));
1442 nb_reply_text(cmdno
, (char_u
*)"");
1445 nb_reply_text(cmdno
, text
);
1448 /* =====================================================================*/
1450 else if (streq((char *)cmd
, "remove"))
1456 linenr_T del_from_lnum
, del_to_lnum
; /* lines to be deleted as a whole */
1457 int oldFire
= netbeansFireChanges
;
1458 int oldSuppress
= netbeansSuppressNoLines
;
1461 if (skip
>= SKIP_STOP
)
1463 nbdebug((" Skipping %s command\n", (char *) cmd
));
1464 nb_reply_nil(cmdno
);
1468 if (buf
== NULL
|| buf
->bufp
== NULL
)
1470 nbdebug((" invalid buffer identifier in remove\n"));
1471 EMSG("E634: invalid buffer identifier in remove");
1476 netbeansFireChanges
= FALSE
;
1477 netbeansSuppressNoLines
= TRUE
;
1479 nb_set_curbuf(buf
->bufp
);
1480 wasChanged
= buf
->bufp
->b_changed
;
1482 off
= strtol(cp
, &cp
, 10);
1483 count
= strtol(cp
, &cp
, 10);
1484 args
= (char_u
*)cp
;
1485 /* delete "count" chars, starting at "off" */
1486 pos
= off2pos(buf
->bufp
, off
);
1489 nbdebug((" !bad position\n"));
1490 nb_reply_text(cmdno
, (char_u
*)"!bad position");
1491 netbeansFireChanges
= oldFire
;
1492 netbeansSuppressNoLines
= oldSuppress
;
1496 nbdebug((" FIRST POS: line %d, col %d\n", first
.lnum
, first
.col
));
1497 pos
= off2pos(buf
->bufp
, off
+count
-1);
1500 nbdebug((" !bad count\n"));
1501 nb_reply_text(cmdno
, (char_u
*)"!bad count");
1502 netbeansFireChanges
= oldFire
;
1503 netbeansSuppressNoLines
= oldSuppress
;
1507 nbdebug((" LAST POS: line %d, col %d\n", last
.lnum
, last
.col
));
1508 del_from_lnum
= first
.lnum
;
1509 del_to_lnum
= last
.lnum
;
1512 /* Get the position of the first byte after the deleted
1513 * section. "next" is NULL when deleting to the end of the
1515 next
= off2pos(buf
->bufp
, off
+ count
);
1517 /* Remove part of the first line. */
1518 if (first
.col
!= 0 || (next
!= NULL
&& first
.lnum
== next
->lnum
))
1520 if (first
.lnum
!= last
.lnum
1521 || (next
!= NULL
&& first
.lnum
!= next
->lnum
))
1523 /* remove to the end of the first line */
1524 nb_partialremove(first
.lnum
, first
.col
,
1526 if (first
.lnum
== last
.lnum
)
1528 /* Partial line to remove includes the end of
1529 * line. Join the line with the next one, have
1530 * the next line deleted below. */
1531 nb_joinlines(first
.lnum
, next
->lnum
);
1532 del_to_lnum
= next
->lnum
;
1537 /* remove within one line */
1538 nb_partialremove(first
.lnum
, first
.col
, last
.col
);
1540 ++del_from_lnum
; /* don't delete the first line */
1543 /* Remove part of the last line. */
1544 if (first
.lnum
!= last
.lnum
&& next
!= NULL
1545 && next
->col
!= 0 && last
.lnum
== next
->lnum
)
1547 nb_partialremove(last
.lnum
, 0, last
.col
);
1548 if (del_from_lnum
> first
.lnum
)
1550 /* Join end of last line to start of first line; last
1551 * line is deleted below. */
1552 nb_joinlines(first
.lnum
, last
.lnum
);
1555 /* First line is deleted as a whole, keep the last
1560 /* First is partial line; last line to remove includes
1561 * the end of line; join first line to line following last
1562 * line; line following last line is deleted below. */
1563 if (first
.lnum
!= last
.lnum
&& del_from_lnum
> first
.lnum
1564 && next
!= NULL
&& last
.lnum
!= next
->lnum
)
1566 nb_joinlines(first
.lnum
, next
->lnum
);
1567 del_to_lnum
= next
->lnum
;
1570 /* Delete whole lines if there are any. */
1571 if (del_to_lnum
>= del_from_lnum
)
1575 /* delete signs from the lines being deleted */
1576 for (i
= del_from_lnum
; i
<= del_to_lnum
; i
++)
1578 int id
= buf_findsign_id(buf
->bufp
, (linenr_T
)i
);
1581 nbdebug((" Deleting sign %d on line %d\n", id
, i
));
1582 buf_delsign(buf
->bufp
, id
);
1585 nbdebug((" No sign on line %d\n", i
));
1588 nbdebug((" Deleting lines %d through %d\n", del_from_lnum
, del_to_lnum
));
1589 curwin
->w_cursor
.lnum
= del_from_lnum
;
1590 curwin
->w_cursor
.col
= 0;
1591 del_lines(del_to_lnum
- del_from_lnum
+ 1, FALSE
);
1594 /* Leave cursor at first deleted byte. */
1595 curwin
->w_cursor
= first
;
1596 check_cursor_lnum();
1597 buf
->bufp
->b_changed
= wasChanged
; /* logically unchanged */
1598 netbeansFireChanges
= oldFire
;
1599 netbeansSuppressNoLines
= oldSuppress
;
1601 u_blockfree(buf
->bufp
);
1602 u_clearall(buf
->bufp
);
1604 nb_reply_nil(cmdno
);
1605 /* =====================================================================*/
1607 else if (streq((char *)cmd
, "insert"))
1611 if (skip
>= SKIP_STOP
)
1613 nbdebug((" Skipping %s command\n", (char *) cmd
));
1614 nb_reply_nil(cmdno
);
1620 off
= strtol(cp
, &cp
, 10);
1621 args
= (char_u
*)cp
;
1623 /* get text to be inserted */
1624 args
= skipwhite(args
);
1625 args
= to_free
= (char_u
*)nb_unquote(args
, NULL
);
1627 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1628 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1631 if (buf
== NULL
|| buf
->bufp
== NULL
)
1633 nbdebug((" invalid buffer identifier in insert\n"));
1634 EMSG("E635: invalid buffer identifier in insert");
1637 else if (args
!= NULL
)
1639 int ff_detected
= EOL_UNKNOWN
;
1640 int buf_was_empty
= (buf
->bufp
->b_ml
.ml_flags
& ML_EMPTY
);
1643 int oldFire
= netbeansFireChanges
;
1647 linenr_T lnum_start
;
1650 netbeansFireChanges
= 0;
1652 /* Jump to the buffer where we insert. After this "curbuf"
1654 nb_set_curbuf(buf
->bufp
);
1655 old_b_changed
= curbuf
->b_changed
;
1657 /* Convert the specified character offset into a lnum/col
1659 pos
= off2pos(curbuf
, off
);
1665 lnum_start
= pos
->lnum
;
1669 /* If the given position is not found, assume we want
1670 * the end of the file. See setLocAndSize HACK. */
1672 lnum_start
= 1; /* above empty line */
1674 lnum_start
= curbuf
->b_ml
.ml_line_count
+ 1;
1677 /* "lnum" is the line where we insert: either append to it or
1678 * insert a new line above it. */
1681 /* Loop over the "\n" separated lines of the argument. */
1683 while (*args
!= NUL
)
1685 nl
= vim_strchr(args
, '\n');
1688 /* Incomplete line, probably truncated. Next "insert"
1689 * command should append to this one. */
1697 * We need to detect EOL style, because the commands
1698 * use a character offset.
1700 if (nl
> args
&& nl
[-1] == '\r')
1702 ff_detected
= EOL_DOS
;
1706 ff_detected
= EOL_UNIX
;
1710 if (lnum
== lnum_start
1711 && ((pos
!= NULL
&& pos
->col
> 0)
1712 || (lnum
== 1 && buf_was_empty
)))
1714 char_u
*oldline
= ml_get(lnum
);
1717 /* Insert halfway a line. For simplicity we assume we
1718 * need to append to the line. */
1719 newline
= alloc_check((unsigned)(STRLEN(oldline
) + len
+ 1));
1720 if (newline
!= NULL
)
1722 STRCPY(newline
, oldline
);
1723 STRCAT(newline
, args
);
1724 ml_replace(lnum
, newline
, FALSE
);
1729 /* Append a new line. Not that we always do this,
1730 * also when the text doesn't end in a "\n". */
1731 ml_append((linenr_T
)(lnum
- 1), args
, (colnr_T
)(len
+ 1), FALSE
);
1741 /* Adjust the marks below the inserted lines. */
1742 appended_lines_mark(lnum_start
- 1, (long)added
);
1745 * When starting with an empty buffer set the fileformat.
1746 * This is just guessing...
1750 if (ff_detected
== EOL_UNKNOWN
)
1751 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1752 ff_detected
= EOL_DOS
;
1754 ff_detected
= EOL_UNIX
;
1756 set_fileformat(ff_detected
, OPT_LOCAL
);
1757 curbuf
->b_start_ffc
= *curbuf
->b_p_ff
;
1761 * XXX - GRP - Is the next line right? If I've inserted
1762 * text the buffer has been updated but not written. Will
1763 * netbeans guarantee to write it? Even if I do a :q! ?
1765 curbuf
->b_changed
= old_b_changed
; /* logically unchanged */
1766 netbeansFireChanges
= oldFire
;
1768 /* Undo info is invalid now... */
1769 u_blockfree(curbuf
);
1773 nb_reply_nil(cmdno
); /* or !error */
1777 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd
));
1778 nb_reply_nil(cmdno
);
1782 else /* Not a function; no reply required. */
1784 /* =====================================================================*/
1785 if (streq((char *)cmd
, "create"))
1787 /* Create a buffer without a name. */
1790 nbdebug((" invalid buffer identifier in create\n"));
1791 EMSG("E636: invalid buffer identifier in create");
1794 vim_free(buf
->displayname
);
1795 buf
->displayname
= NULL
;
1797 netbeansReadFile
= 0; /* don't try to open disk file */
1798 do_ecmd(0, NULL
, 0, 0, ECMD_ONE
, ECMD_HIDE
+ ECMD_OLDBUF
, curwin
);
1799 netbeansReadFile
= 1;
1802 buf
->insertDone
= FALSE
;
1803 gui_update_menus(0);
1804 /* =====================================================================*/
1806 else if (streq((char *)cmd
, "insertDone"))
1808 if (buf
== NULL
|| buf
->bufp
== NULL
)
1810 nbdebug((" invalid buffer identifier in insertDone\n"));
1814 buf
->bufp
->b_start_eol
= *args
== 'T';
1815 buf
->insertDone
= TRUE
;
1817 buf
->bufp
->b_p_ro
= *args
== 'T';
1818 print_read_msg(buf
);
1820 /* =====================================================================*/
1822 else if (streq((char *)cmd
, "saveDone"))
1824 long savedChars
= atol((char *)args
);
1826 if (buf
== NULL
|| buf
->bufp
== NULL
)
1828 nbdebug((" invalid buffer identifier in saveDone\n"));
1831 print_save_msg(buf
, savedChars
);
1832 /* =====================================================================*/
1834 else if (streq((char *)cmd
, "startDocumentListen"))
1838 nbdebug((" invalid buffer identifier in startDocumentListen\n"));
1839 EMSG("E637: invalid buffer identifier in startDocumentListen");
1842 buf
->fireChanges
= 1;
1843 /* =====================================================================*/
1845 else if (streq((char *)cmd
, "stopDocumentListen"))
1849 nbdebug((" invalid buffer identifier in stopDocumentListen\n"));
1850 EMSG("E638: invalid buffer identifier in stopDocumentListen");
1853 buf
->fireChanges
= 0;
1854 if (buf
->bufp
!= NULL
&& buf
->bufp
->b_was_netbeans_file
)
1856 if (!buf
->bufp
->b_netbeans_file
)
1858 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf
->bufp
->b_fnum
));
1859 EMSGN(_("E658: NetBeans connection lost for buffer %ld"),
1864 /* NetBeans uses stopDocumentListen when it stops editing
1865 * a file. It then expects the buffer in Vim to
1867 do_bufdel(DOBUF_DEL
, (char_u
*)"", 1,
1868 buf
->bufp
->b_fnum
, buf
->bufp
->b_fnum
, TRUE
);
1869 vim_memset(buf
, 0, sizeof(nbbuf_T
));
1872 /* =====================================================================*/
1874 else if (streq((char *)cmd
, "setTitle"))
1878 nbdebug((" invalid buffer identifier in setTitle\n"));
1879 EMSG("E639: invalid buffer identifier in setTitle");
1882 vim_free(buf
->displayname
);
1883 buf
->displayname
= nb_unquote(args
, NULL
);
1884 /* =====================================================================*/
1886 else if (streq((char *)cmd
, "initDone"))
1888 if (buf
== NULL
|| buf
->bufp
== NULL
)
1890 nbdebug((" invalid buffer identifier in initDone\n"));
1891 EMSG("E640: invalid buffer identifier in initDone");
1895 buf
->initDone
= TRUE
;
1896 nb_set_curbuf(buf
->bufp
);
1897 #if defined(FEAT_AUTOCMD)
1898 apply_autocmds(EVENT_BUFREADPOST
, 0, 0, FALSE
, buf
->bufp
);
1901 /* handle any postponed key commands */
1903 /* =====================================================================*/
1905 else if (streq((char *)cmd
, "setBufferNumber")
1906 || streq((char *)cmd
, "putBufferNumber"))
1913 nbdebug((" invalid buffer identifier in setBufferNumber\n"));
1914 EMSG("E641: invalid buffer identifier in setBufferNumber");
1917 path
= (char_u
*)nb_unquote(args
, NULL
);
1920 bufp
= buflist_findname(path
);
1924 nbdebug((" File %s not found in setBufferNumber\n", args
));
1925 EMSG2("E642: File %s not found in setBufferNumber", args
);
1929 buf
->nbbuf_number
= bufp
->b_fnum
;
1931 /* "setBufferNumber" has the side effect of jumping to the buffer
1932 * (don't know why!). Don't do that for "putBufferNumber". */
1934 coloncmd(":buffer %d", bufp
->b_fnum
);
1937 buf
->initDone
= TRUE
;
1939 /* handle any postponed key commands */
1943 #if 0 /* never used */
1944 buf
->internalname
= (char *)alloc_clear(8);
1945 sprintf(buf
->internalname
, "<%d>", bufno
);
1946 buf
->netbeansOwns
= 0;
1948 /* =====================================================================*/
1950 else if (streq((char *)cmd
, "setFullName"))
1954 nbdebug((" invalid buffer identifier in setFullName\n"));
1955 EMSG("E643: invalid buffer identifier in setFullName");
1958 vim_free(buf
->displayname
);
1959 buf
->displayname
= nb_unquote(args
, NULL
);
1961 netbeansReadFile
= 0; /* don't try to open disk file */
1962 do_ecmd(0, (char_u
*)buf
->displayname
, 0, 0, ECMD_ONE
,
1963 ECMD_HIDE
+ ECMD_OLDBUF
, curwin
);
1964 netbeansReadFile
= 1;
1967 gui_update_menus(0);
1968 /* =====================================================================*/
1970 else if (streq((char *)cmd
, "editFile"))
1974 nbdebug((" invalid buffer identifier in editFile\n"));
1975 EMSG("E644: invalid buffer identifier in editFile");
1978 /* Edit a file: like create + setFullName + read the file. */
1979 vim_free(buf
->displayname
);
1980 buf
->displayname
= nb_unquote(args
, NULL
);
1981 do_ecmd(0, (char_u
*)buf
->displayname
, NULL
, NULL
, ECMD_ONE
,
1982 ECMD_HIDE
+ ECMD_OLDBUF
, curwin
);
1984 buf
->initDone
= TRUE
;
1986 #if defined(FEAT_TITLE)
1989 gui_update_menus(0);
1990 /* =====================================================================*/
1992 else if (streq((char *)cmd
, "setVisible"))
1994 if (buf
== NULL
|| buf
->bufp
== NULL
)
1996 nbdebug((" invalid buffer identifier in setVisible\n"));
1997 /* This message was commented out, probably because it can
1998 * happen when shutting down. */
2000 EMSG("E645: invalid buffer identifier in setVisible");
2003 if (streq((char *)args
, "T") && buf
->bufp
!= curbuf
)
2006 exarg
.cmd
= (char_u
*)"goto";
2007 exarg
.forceit
= FALSE
;
2008 dosetvisible
= TRUE
;
2009 goto_buffer(&exarg
, DOBUF_FIRST
, FORWARD
, buf
->bufp
->b_fnum
);
2011 dosetvisible
= FALSE
;
2013 /* Side effect!!!. */
2015 gui_mch_set_foreground();
2017 /* =====================================================================*/
2019 else if (streq((char *)cmd
, "raise"))
2021 /* Bring gvim to the foreground. */
2023 gui_mch_set_foreground();
2024 /* =====================================================================*/
2026 else if (streq((char *)cmd
, "setModified"))
2030 if (buf
== NULL
|| buf
->bufp
== NULL
)
2032 nbdebug((" invalid buffer identifier in setModified\n"));
2033 /* This message was commented out, probably because it can
2034 * happen when shutting down. */
2036 EMSG("E646: invalid buffer identifier in setModified");
2039 prev_b_changed
= buf
->bufp
->b_changed
;
2040 if (streq((char *)args
, "T"))
2041 buf
->bufp
->b_changed
= TRUE
;
2046 /* Assume NetBeans stored the file. Reset the timestamp to
2047 * avoid "file changed" warnings. */
2048 if (buf
->bufp
->b_ffname
!= NULL
2049 && mch_stat((char *)buf
->bufp
->b_ffname
, &st
) >= 0)
2050 buf_store_time(buf
->bufp
, &st
, buf
->bufp
->b_ffname
);
2051 buf
->bufp
->b_changed
= FALSE
;
2053 buf
->modified
= buf
->bufp
->b_changed
;
2054 if (prev_b_changed
!= buf
->bufp
->b_changed
)
2057 check_status(buf
->bufp
);
2058 redraw_tabline
= TRUE
;
2065 /* =====================================================================*/
2067 else if (streq((char *)cmd
, "setModtime"))
2069 if (buf
== NULL
|| buf
->bufp
== NULL
)
2070 nbdebug((" invalid buffer identifier in setModtime\n"));
2072 buf
->bufp
->b_mtime
= atoi((char *)args
);
2073 /* =====================================================================*/
2075 else if (streq((char *)cmd
, "setReadOnly"))
2077 if (buf
== NULL
|| buf
->bufp
== NULL
)
2078 nbdebug((" invalid buffer identifier in setReadOnly\n"));
2079 else if (streq((char *)args
, "T"))
2080 buf
->bufp
->b_p_ro
= TRUE
;
2082 buf
->bufp
->b_p_ro
= FALSE
;
2083 /* =====================================================================*/
2085 else if (streq((char *)cmd
, "setMark"))
2088 /* =====================================================================*/
2090 else if (streq((char *)cmd
, "showBalloon"))
2092 #if defined(FEAT_BEVAL)
2093 static char *text
= NULL
;
2096 * Set up the Balloon Expression Evaluation area.
2097 * Ignore 'ballooneval' here.
2098 * The text pointer must remain valid for a while.
2100 if (balloonEval
!= NULL
)
2103 text
= nb_unquote(args
, NULL
);
2105 gui_mch_post_balloon(balloonEval
, (char_u
*)text
);
2108 /* =====================================================================*/
2110 else if (streq((char *)cmd
, "setDot"))
2117 if (buf
== NULL
|| buf
->bufp
== NULL
)
2119 nbdebug((" invalid buffer identifier in setDot\n"));
2120 EMSG("E647: invalid buffer identifier in setDot");
2124 nb_set_curbuf(buf
->bufp
);
2127 /* Don't want Visual mode now. */
2134 pos
= get_off_or_lnum(buf
->bufp
, &args
);
2137 curwin
->w_cursor
= *pos
;
2144 nbdebug((" BAD POSITION in setDot: %s\n", s
));
2146 /* gui_update_cursor(TRUE, FALSE); */
2147 /* update_curbuf(NOT_VALID); */
2148 update_topline(); /* scroll to show the line */
2149 update_screen(VALID
);
2152 gui_update_cursor(TRUE
, FALSE
);
2154 /* Quit a hit-return or more prompt. */
2155 if (State
== HITRETURN
|| State
== ASKMORE
)
2158 if (gtk_main_level() > 0)
2162 /* =====================================================================*/
2164 else if (streq((char *)cmd
, "close"))
2167 char *name
= "<NONE>";
2172 nbdebug((" invalid buffer identifier in close\n"));
2173 EMSG("E648: invalid buffer identifier in close");
2178 if (buf
->displayname
!= NULL
)
2179 name
= buf
->displayname
;
2181 if (buf
->bufp
== NULL
)
2183 nbdebug((" invalid buffer identifier in close\n"));
2184 /* This message was commented out, probably because it can
2185 * happen when shutting down. */
2187 EMSG("E649: invalid buffer identifier in close");
2189 nbdebug((" CLOSE %d: %s\n", bufno
, name
));
2190 need_mouse_correct
= TRUE
;
2191 if (buf
->bufp
!= NULL
)
2192 do_buffer(DOBUF_WIPE
, DOBUF_FIRST
, FORWARD
,
2193 buf
->bufp
->b_fnum
, TRUE
);
2195 buf
->initDone
= FALSE
;
2197 /* =====================================================================*/
2199 else if (streq((char *)cmd
, "setStyle")) /* obsolete... */
2201 nbdebug((" setStyle is obsolete!\n"));
2202 /* =====================================================================*/
2204 else if (streq((char *)cmd
, "setExitDelay"))
2206 /* Only used in version 2.1. */
2207 /* =====================================================================*/
2209 else if (streq((char *)cmd
, "defineAnnoType"))
2224 nbdebug((" invalid buffer identifier in defineAnnoType\n"));
2225 EMSG("E650: invalid buffer identifier in defineAnnoType");
2230 typeNum
= strtol(cp
, &cp
, 10);
2231 args
= (char_u
*)cp
;
2232 args
= skipwhite(args
);
2233 typeName
= (char_u
*)nb_unquote(args
, &args
);
2234 args
= skipwhite(args
+ 1);
2235 tooltip
= (char_u
*)nb_unquote(args
, &args
);
2236 args
= skipwhite(args
+ 1);
2238 p
= (char_u
*)nb_unquote(args
, &args
);
2239 glyphFile
= vim_strsave_escaped(p
, escape_chars
);
2242 args
= skipwhite(args
+ 1);
2243 if (STRNCMP(args
, "none", 4) == 0)
2249 fg
= strtol(cp
, &cp
, 10);
2250 args
= (char_u
*)cp
;
2252 if (STRNCMP(args
, "none", 4) == 0)
2258 bg
= strtol(cp
, &cp
, 10);
2259 args
= (char_u
*)cp
;
2261 if (typeName
!= NULL
&& tooltip
!= NULL
&& glyphFile
!= NULL
)
2262 addsigntype(buf
, typeNum
, typeName
, tooltip
, glyphFile
,
2263 use_fg
, fg
, use_bg
, bg
);
2267 /* don't free typeName; it's used directly in addsigntype() */
2269 vim_free(glyphFile
);
2272 /* =====================================================================*/
2274 else if (streq((char *)cmd
, "addAnno"))
2285 if (buf
== NULL
|| buf
->bufp
== NULL
)
2287 nbdebug((" invalid buffer identifier in addAnno\n"));
2288 EMSG("E651: invalid buffer identifier in addAnno");
2295 serNum
= strtol(cp
, &cp
, 10);
2297 /* Get the typenr specific for this buffer and convert it to
2298 * the global typenumber, as used for the sign name. */
2299 localTypeNum
= strtol(cp
, &cp
, 10);
2300 args
= (char_u
*)cp
;
2301 typeNum
= mapsigntype(buf
, localTypeNum
);
2303 pos
= get_off_or_lnum(buf
->bufp
, &args
);
2309 strtol(cp
, &cp
, 10);
2310 args
= (char_u
*)cp
;
2314 nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
2317 if (serNum
>= GUARDEDOFFSET
)
2319 nbdebug((" too many annotations! ignoring...\n"));
2324 coloncmd(":sign place %d line=%d name=%d buffer=%d",
2325 serNum
, pos
->lnum
, typeNum
, buf
->bufp
->b_fnum
);
2326 if (typeNum
== curPCtype
)
2327 coloncmd(":sign jump %d buffer=%d", serNum
,
2331 /* =====================================================================*/
2333 else if (streq((char *)cmd
, "removeAnno"))
2338 if (buf
== NULL
|| buf
->bufp
== NULL
)
2340 nbdebug((" invalid buffer identifier in removeAnno\n"));
2345 serNum
= strtol(cp
, &cp
, 10);
2346 args
= (char_u
*)cp
;
2347 coloncmd(":sign unplace %d buffer=%d",
2348 serNum
, buf
->bufp
->b_fnum
);
2349 redraw_buf_later(buf
->bufp
, NOT_VALID
);
2351 /* =====================================================================*/
2353 else if (streq((char *)cmd
, "moveAnnoToFront"))
2356 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n"));
2358 /* =====================================================================*/
2360 else if (streq((char *)cmd
, "guard") || streq((char *)cmd
, "unguard"))
2366 int un
= (cmd
[0] == 'u');
2367 static int guardId
= GUARDEDOFFSET
;
2369 if (skip
>= SKIP_STOP
)
2371 nbdebug((" Skipping %s command\n", (char *) cmd
));
2377 if (buf
== NULL
|| buf
->bufp
== NULL
)
2379 nbdebug((" invalid buffer identifier in %s command\n", cmd
));
2382 nb_set_curbuf(buf
->bufp
);
2384 off
= strtol(cp
, &cp
, 10);
2385 len
= strtol(cp
, NULL
, 10);
2386 args
= (char_u
*)cp
;
2387 pos
= off2pos(buf
->bufp
, off
);
2390 nbdebug((" no such start pos in %s, %ld\n", cmd
, off
));
2394 pos
= off2pos(buf
->bufp
, off
+ len
- 1);
2395 if (pos
!= NULL
&& pos
->col
== 0)
2398 * In Java Swing the offset is a position between 2
2399 * characters. If col == 0 then we really want the
2400 * previous line as the end.
2402 pos
= off2pos(buf
->bufp
, off
+ len
- 2);
2405 nbdebug((" no such end pos in %s, %ld\n",
2406 cmd
, off
+ len
- 1));
2411 /* set highlight for region */
2412 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un
) ? "UN" : "",
2413 first
.lnum
, first
.col
,
2414 last
.lnum
, last
.col
));
2416 for (lnum
= first
.lnum
; lnum
<= last
.lnum
; lnum
++)
2424 if (buf_findsigntype_id(buf
->bufp
, lnum
,
2428 ":sign place %d line=%d name=%d buffer=%d",
2429 guardId
++, lnum
, GUARDED
,
2435 redraw_buf_later(buf
->bufp
, NOT_VALID
);
2438 /* =====================================================================*/
2440 else if (streq((char *)cmd
, "startAtomic"))
2443 /* =====================================================================*/
2445 else if (streq((char *)cmd
, "endAtomic"))
2453 /* =====================================================================*/
2455 else if (streq((char *)cmd
, "save"))
2458 * NOTE - This command is obsolete wrt NetBeans. Its left in
2459 * only for historical reasons.
2461 if (buf
== NULL
|| buf
->bufp
== NULL
)
2463 nbdebug((" invalid buffer identifier in %s command\n", cmd
));
2467 /* the following is taken from ex_cmds.c (do_wqall function) */
2468 if (bufIsChanged(buf
->bufp
))
2470 /* Only write if the buffer can be written. */
2472 && !buf
->bufp
->b_p_ro
2473 && buf
->bufp
->b_ffname
!= NULL
2474 #ifdef FEAT_QUICKFIX
2475 && !bt_dontwrite(buf
->bufp
)
2479 buf_write_all(buf
->bufp
, FALSE
);
2481 /* an autocommand may have deleted the buffer */
2482 if (!buf_valid(buf
->bufp
))
2489 nbdebug((" Buffer has no changes!\n"));
2491 /* =====================================================================*/
2493 else if (streq((char *)cmd
, "netbeansBuffer"))
2495 if (buf
== NULL
|| buf
->bufp
== NULL
)
2497 nbdebug((" invalid buffer identifier in %s command\n", cmd
));
2502 buf
->bufp
->b_netbeans_file
= TRUE
;
2503 buf
->bufp
->b_was_netbeans_file
= TRUE
;
2506 buf
->bufp
->b_netbeans_file
= FALSE
;
2507 /* =====================================================================*/
2509 else if (streq((char *)cmd
, "specialKeys"))
2512 /* =====================================================================*/
2514 else if (streq((char *)cmd
, "actionMenuItem"))
2517 /* =====================================================================*/
2519 else if (streq((char *)cmd
, "version"))
2525 nbdebug(("Unrecognised command: %s\n", cmd
));
2528 * Unrecognized command is ignored.
2531 if (inAtomic
&& doupdate
)
2538 * Is this needed? I moved the netbeans_Xt_connect() later during startup
2539 * and it may no longer be necessary. If its not needed then needupdate
2540 * and doupdate can also be removed.
2542 if (buf
!= NULL
&& buf
->initDone
&& doupdate
)
2544 update_screen(NOT_VALID
);
2547 gui_update_cursor(TRUE
, FALSE
);
2549 /* Quit a hit-return or more prompt. */
2550 if (State
== HITRETURN
|| State
== ASKMORE
)
2553 if (gtk_main_level() > 0)
2564 * If "buf" is not the current buffer try changing to a window that edits this
2565 * buffer. If there is no such window then close the current buffer and set
2566 * the current buffer as "buf".
2569 nb_set_curbuf(buf_T
*buf
)
2571 if (curbuf
!= buf
&& buf_jump_open_win(buf
) == NULL
)
2572 set_curbuf(buf
, DOBUF_GOTO
);
2576 * Process a vim colon command.
2579 coloncmd(char *cmd
, ...)
2585 vsprintf(buf
, cmd
, ap
);
2588 nbdebug((" COLONCMD %s\n", buf
));
2590 /* ALT_INPUT_LOCK_ON; */
2591 do_cmdline((char_u
*)buf
, NULL
, NULL
, DOCMD_NOWAIT
| DOCMD_KEYTYPED
);
2592 /* ALT_INPUT_LOCK_OFF; */
2594 setcursor(); /* restore the cursor position */
2595 out_flush(); /* make sure output has been written */
2597 gui_update_cursor(TRUE
, FALSE
);
2603 * Parse the specialKeys argument and issue the appropriate map commands.
2606 special_keys(char_u
*args
)
2608 char *save_str
= nb_unquote(args
, NULL
);
2609 char *tok
= strtok(save_str
, " ");
2618 if ((sep
= strchr(tok
, '-')) != NULL
)
2638 strcpy(&keybuf
[i
], tok
);
2639 vim_snprintf(cmdbuf
, sizeof(cmdbuf
),
2640 "<silent><%s> :nbkey %s<CR>", keybuf
, keybuf
);
2641 do_map(0, (char_u
*)cmdbuf
, NORMAL
, FALSE
);
2642 tok
= strtok(NULL
, " ");
2652 netbeans_keystring(0, (char *)eap
->arg
);
2657 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2660 nb_init_graphics(void)
2662 static int did_init
= FALSE
;
2666 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black");
2667 coloncmd(":sign define %d linehl=NBGuarded", GUARDED
);
2674 * Convert key to netbeans name.
2677 netbeans_keyname(int key
, char *buf
)
2685 if (mod_mask
& MOD_MASK_CTRL
)
2687 if (mod_mask
& MOD_MASK_SHIFT
)
2689 if (mod_mask
& MOD_MASK_ALT
)
2695 case K_F1
: name
= "F1"; break;
2696 case K_S_F1
: name
= "F1"; shift
= 1; break;
2697 case K_F2
: name
= "F2"; break;
2698 case K_S_F2
: name
= "F2"; shift
= 1; break;
2699 case K_F3
: name
= "F3"; break;
2700 case K_S_F3
: name
= "F3"; shift
= 1; break;
2701 case K_F4
: name
= "F4"; break;
2702 case K_S_F4
: name
= "F4"; shift
= 1; break;
2703 case K_F5
: name
= "F5"; break;
2704 case K_S_F5
: name
= "F5"; shift
= 1; break;
2705 case K_F6
: name
= "F6"; break;
2706 case K_S_F6
: name
= "F6"; shift
= 1; break;
2707 case K_F7
: name
= "F7"; break;
2708 case K_S_F7
: name
= "F7"; shift
= 1; break;
2709 case K_F8
: name
= "F8"; break;
2710 case K_S_F8
: name
= "F8"; shift
= 1; break;
2711 case K_F9
: name
= "F9"; break;
2712 case K_S_F9
: name
= "F9"; shift
= 1; break;
2713 case K_F10
: name
= "F10"; break;
2714 case K_S_F10
: name
= "F10"; shift
= 1; break;
2715 case K_F11
: name
= "F11"; break;
2716 case K_S_F11
: name
= "F11"; shift
= 1; break;
2717 case K_F12
: name
= "F12"; break;
2718 case K_S_F12
: name
= "F12"; shift
= 1; break;
2720 if (key
>= ' ' && key
<= '~')
2722 /* Allow ASCII characters. */
2738 strcat(buf
, "M"); /* META */
2739 if (ctrl
|| shift
|| alt
)
2746 * Function to be called for balloon evaluation. Grabs the text under the
2747 * cursor and sends it to the debugger for evaluation. The debugger should
2748 * respond with a showBalloon command when there is a useful result.
2760 char buf
[MAXPATHL
* 2 + 25];
2763 /* Don't do anything when 'ballooneval' is off, messages scrolled the
2764 * windows up or we have no connection. */
2765 if (!p_beval
|| msg_scrolled
> 0 || !haveConnection
)
2768 if (get_beval_info(beval
, TRUE
, &wp
, &lnum
, &text
, &col
) == OK
)
2770 /* Send debugger request. Only when the text is of reasonable
2772 if (text
!= NULL
&& text
[0] != NUL
&& STRLEN(text
) < MAXPATHL
)
2777 vim_snprintf(buf
, sizeof(buf
),
2778 "0:balloonText=%d \"%s\"\n", r_cmdno
, p
);
2781 nbdebug(("EVT: %s", buf
));
2782 nb_send(buf
, "netbeans_beval_cb");
2790 * Tell netbeans that the window was opened, ready for commands.
2793 netbeans_startup_done(void)
2795 char *cmd
= "0:startupDone=0\n";
2798 #ifdef FEAT_GUI_MOTIF
2799 netbeans_Xt_connect(app_context
);
2801 # ifdef FEAT_GUI_GTK
2802 netbeans_gtk_connect();
2804 # ifdef FEAT_GUI_W32
2805 netbeans_w32_connect();
2810 if (!haveConnection
)
2814 bevalServers
|= BEVAL_NETBEANS
;
2817 nbdebug(("EVT: %s", cmd
));
2818 nb_send(cmd
, "netbeans_startup_done");
2822 * Tell netbeans that we're exiting. This should be called right
2823 * before calling exit.
2826 netbeans_send_disconnect()
2832 sprintf(buf
, "0:disconnect=%d\n", r_cmdno
);
2833 nbdebug(("EVT: %s", buf
));
2834 nb_send(buf
, "netbeans_disconnect");
2838 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_W32) || defined(PROTO)
2840 * Tell netbeans that the window was moved or resized.
2843 netbeans_frame_moved(int new_x
, int new_y
)
2847 if (!haveConnection
)
2850 sprintf(buf
, "0:geometry=%d %d %d %d %d\n",
2851 r_cmdno
, (int)Columns
, (int)Rows
, new_x
, new_y
);
2852 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */
2853 nb_send(buf
, "netbeans_frame_moved");
2858 * Tell netbeans the user opened or activated a file.
2861 netbeans_file_activated(buf_T
*bufp
)
2863 int bufno
= nb_getbufno(bufp
);
2864 nbbuf_T
*bp
= nb_get_buf(bufno
);
2865 char buffer
[2*MAXPATHL
];
2868 if (!haveConnection
|| dosetvisible
)
2871 q
= nb_quote(bufp
->b_ffname
);
2872 if (q
== NULL
|| bp
== NULL
)
2875 vim_snprintf(buffer
, sizeof(buffer
), "%d:fileOpened=%d \"%s\" %s %s\n",
2879 "T", /* open in NetBeans */
2880 "F"); /* modified */
2883 nbdebug(("EVT: %s", buffer
));
2885 nb_send(buffer
, "netbeans_file_opened");
2889 * Tell netbeans the user opened a file.
2892 netbeans_file_opened(buf_T
*bufp
)
2894 int bufno
= nb_getbufno(bufp
);
2895 char buffer
[2*MAXPATHL
];
2897 nbbuf_T
*bp
= nb_get_buf(nb_getbufno(bufp
));
2900 if (!haveConnection
)
2903 q
= nb_quote(bufp
->b_ffname
);
2911 vim_snprintf(buffer
, sizeof(buffer
), "%d:fileOpened=%d \"%s\" %s %s\n",
2915 "T", /* open in NetBeans */
2916 "F"); /* modified */
2919 nbdebug(("EVT: %s", buffer
));
2921 nb_send(buffer
, "netbeans_file_opened");
2922 if (p_acd
&& vim_chdirfile(bufp
->b_ffname
) == OK
)
2923 shorten_fnames(TRUE
);
2927 * Tell netbeans a file was closed.
2930 netbeans_file_closed(buf_T
*bufp
)
2932 int bufno
= nb_getbufno(bufp
);
2933 nbbuf_T
*nbbuf
= nb_get_buf(bufno
);
2934 char buffer
[2*MAXPATHL
];
2936 if (!haveConnection
|| bufno
< 0)
2939 if (!netbeansCloseFile
)
2941 nbdebug(("Ignoring file_closed for %s. File was closed from IDE\n",
2946 nbdebug(("netbeans_file_closed:\n"));
2947 nbdebug((" Closing bufno: %d", bufno
));
2948 if (curbuf
!= NULL
&& curbuf
!= bufp
)
2950 nbdebug((" Curbuf bufno: %d\n", nb_getbufno(curbuf
)));
2952 else if (curbuf
== bufp
)
2954 nbdebug((" curbuf == bufp\n"));
2960 sprintf(buffer
, "%d:killed=%d\n", bufno
, r_cmdno
);
2962 nbdebug(("EVT: %s", buffer
));
2964 nb_send(buffer
, "netbeans_file_closed");
2971 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
2972 * Return NULL if there is no such buffer or changes are not to be reported.
2973 * Otherwise store the buffer number in "*bufnop".
2976 nb_bufp2nbbuf_fire(buf_T
*bufp
, int *bufnop
)
2981 if (!haveConnection
|| !netbeansFireChanges
)
2982 return NULL
; /* changes are not reported at all */
2984 bufno
= nb_getbufno(bufp
);
2986 return NULL
; /* file is not known to NetBeans */
2988 nbbuf
= nb_get_buf(bufno
);
2989 if (nbbuf
!= NULL
&& !nbbuf
->fireChanges
)
2990 return NULL
; /* changes in this buffer are not reported */
2997 * Tell netbeans the user inserted some text.
3015 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3019 /* Don't mark as modified for initial read */
3020 if (nbbuf
->insertDone
)
3021 nbbuf
->modified
= 1;
3025 off
= pos2off(bufp
, &pos
);
3027 /* send the "insert" EVT */
3028 newtxt
= alloc(newlen
+ 1);
3029 vim_strncpy(newtxt
, txt
, newlen
);
3030 p
= nb_quote(newtxt
);
3033 buf
= alloc(128 + 2*newlen
);
3034 sprintf((char *)buf
, "%d:insert=%d %ld \"%s\"\n",
3035 bufno
, r_cmdno
, off
, p
);
3036 nbdebug(("EVT: %s", buf
));
3037 nb_send((char *)buf
, "netbeans_inserted");
3045 * Tell netbeans some bytes have been removed.
3060 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3066 nbdebug(("Negative len %ld in netbeans_removed()!\n", len
));
3070 nbbuf
->modified
= 1;
3075 off
= pos2off(bufp
, &pos
);
3077 sprintf((char *)buf
, "%d:remove=%d %ld %ld\n", bufno
, r_cmdno
, off
, len
);
3078 nbdebug(("EVT: %s", buf
));
3079 nb_send((char *)buf
, "netbeans_removed");
3083 * Send netbeans an unmodufied command.
3087 netbeans_unmodified(buf_T
*bufp
)
3094 /* This has been disabled, because NetBeans considers a buffer modified
3095 * even when all changes have been undone. */
3096 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3100 nbbuf
->modified
= 0;
3102 sprintf((char *)buf
, "%d:unmodified=%d\n", bufno
, r_cmdno
);
3103 nbdebug(("EVT: %s", buf
));
3104 nb_send((char *)buf
, "netbeans_unmodified");
3109 * Send a button release event back to netbeans. Its up to netbeans
3110 * to decide what to do (if anything) with this event.
3113 netbeans_button_release(int button
)
3118 bufno
= nb_getbufno(curbuf
);
3120 if (bufno
>= 0 && curwin
!= NULL
&& curwin
->w_buffer
== curbuf
)
3122 int col
= mouse_col
- W_WINCOL(curwin
) - (curwin
->w_p_nu
? 9 : 1);
3123 long off
= pos2off(curbuf
, &curwin
->w_cursor
);
3125 /* sync the cursor position */
3126 sprintf(buf
, "%d:newDotAndMark=%d %ld %ld\n", bufno
, r_cmdno
, off
, off
);
3127 nbdebug(("EVT: %s", buf
));
3128 nb_send(buf
, "netbeans_button_release[newDotAndMark]");
3130 sprintf(buf
, "%d:buttonRelease=%d %d %ld %d\n", bufno
, r_cmdno
,
3131 button
, (long)curwin
->w_cursor
.lnum
, col
);
3132 nbdebug(("EVT: %s", buf
));
3133 nb_send(buf
, "netbeans_button_release");
3139 * Send a keypress event back to netbeans. This usually simulates some
3140 * kind of function key press. This function operates on a key code.
3143 netbeans_keycommand(int key
)
3147 netbeans_keyname(key
, keyName
);
3148 netbeans_keystring(key
, keyName
);
3153 * Send a keypress event back to netbeans. This usually simulates some
3154 * kind of function key press. This function operates on a key string.
3157 netbeans_keystring(int key
, char *keyName
)
3159 char buf
[2*MAXPATHL
];
3160 int bufno
= nb_getbufno(curbuf
);
3164 if (!haveConnection
)
3170 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
3171 q
= curbuf
->b_ffname
== NULL
? (char_u
*)""
3172 : nb_quote(curbuf
->b_ffname
);
3175 vim_snprintf(buf
, sizeof(buf
), "0:fileOpened=%d \"%s\" %s %s\n", 0,
3177 "T", /* open in NetBeans */
3178 "F"); /* modified */
3179 if (curbuf
->b_ffname
!= NULL
)
3181 nbdebug(("EVT: %s", buf
));
3182 nb_send(buf
, "netbeans_keycommand");
3185 postpone_keycommand(key
);
3189 /* sync the cursor position */
3190 off
= pos2off(curbuf
, &curwin
->w_cursor
);
3191 sprintf(buf
, "%d:newDotAndMark=%d %ld %ld\n", bufno
, r_cmdno
, off
, off
);
3192 nbdebug(("EVT: %s", buf
));
3193 nb_send(buf
, "netbeans_keycommand");
3195 /* To work on Win32 you must apply patch to ExtEditor module
3196 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
3200 /* now send keyCommand event */
3201 vim_snprintf(buf
, sizeof(buf
), "%d:keyCommand=%d \"%s\"\n",
3202 bufno
, r_cmdno
, keyName
);
3203 nbdebug(("EVT: %s", buf
));
3204 nb_send(buf
, "netbeans_keycommand");
3206 /* New: do both at once and include the lnum/col. */
3207 vim_snprintf(buf
, sizeof(buf
), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
3208 bufno
, r_cmdno
, keyName
,
3209 off
, (long)curwin
->w_cursor
.lnum
, (long)curwin
->w_cursor
.col
);
3210 nbdebug(("EVT: %s", buf
));
3211 nb_send(buf
, "netbeans_keycommand");
3216 * Send a save event to netbeans.
3219 netbeans_save_buffer(buf_T
*bufp
)
3225 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3229 nbbuf
->modified
= 0;
3231 sprintf((char *)buf
, "%d:save=%d\n", bufno
, r_cmdno
);
3232 nbdebug(("EVT: %s", buf
));
3233 nb_send((char *)buf
, "netbeans_save_buffer");
3238 * Send remove command to netbeans (this command has been turned off).
3241 netbeans_deleted_all_lines(buf_T
*bufp
)
3247 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3251 /* Don't mark as modified for initial read */
3252 if (nbbuf
->insertDone
)
3253 nbbuf
->modified
= 1;
3255 sprintf((char *)buf
, "%d:remove=%d 0 -1\n", bufno
, r_cmdno
);
3256 nbdebug(("EVT(suppressed): %s", buf
));
3257 /* nb_send(buf, "netbeans_deleted_all_lines"); */
3262 * See if the lines are guarded. The top and bot parameters are from
3263 * u_savecommon(), these are the line above the change and the line below the
3267 netbeans_is_guarded(linenr_T top
, linenr_T bot
)
3272 for (p
= curbuf
->b_signlist
; p
!= NULL
; p
= p
->next
)
3273 if (p
->id
>= GUARDEDOFFSET
)
3274 for (lnum
= top
+ 1; lnum
< bot
; lnum
++)
3275 if (lnum
== p
->lnum
)
3281 #if defined(FEAT_GUI_MOTIF) || defined(PROTO)
3283 * We have multiple signs to draw at the same location. Draw the
3284 * multi-sign indicator instead. This is the Motif version.
3287 netbeans_draw_multisign_indicator(int row
)
3294 y
= row
* gui
.char_height
+ 2;
3296 for (i
= 0; i
< gui
.char_height
- 3; i
++)
3297 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+2, y
++);
3299 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+0, y
);
3300 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+2, y
);
3301 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+4, y
++);
3302 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+1, y
);
3303 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+2, y
);
3304 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+3, y
++);
3305 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+2, y
);
3307 #endif /* FEAT_GUI_MOTIF */
3311 * We have multiple signs to draw at the same location. Draw the
3312 * multi-sign indicator instead. This is the GTK/Gnome version.
3315 netbeans_draw_multisign_indicator(int row
)
3320 GdkDrawable
*drawable
= gui
.drawarea
->window
;
3323 y
= row
* gui
.char_height
+ 2;
3325 for (i
= 0; i
< gui
.char_height
- 3; i
++)
3326 gdk_draw_point(drawable
, gui
.text_gc
, x
+2, y
++);
3328 gdk_draw_point(drawable
, gui
.text_gc
, x
+0, y
);
3329 gdk_draw_point(drawable
, gui
.text_gc
, x
+2, y
);
3330 gdk_draw_point(drawable
, gui
.text_gc
, x
+4, y
++);
3331 gdk_draw_point(drawable
, gui
.text_gc
, x
+1, y
);
3332 gdk_draw_point(drawable
, gui
.text_gc
, x
+2, y
);
3333 gdk_draw_point(drawable
, gui
.text_gc
, x
+3, y
++);
3334 gdk_draw_point(drawable
, gui
.text_gc
, x
+2, y
);
3336 #endif /* FEAT_GUI_GTK */
3339 * If the mouse is clicked in the gutter of a line with multiple
3340 * annotations, cycle through the set of signs.
3343 netbeans_gutter_click(linenr_T lnum
)
3347 for (p
= curbuf
->b_signlist
; p
!= NULL
; p
= p
->next
)
3349 if (p
->lnum
== lnum
&& p
->next
&& p
->next
->lnum
== lnum
)
3353 /* remove "p" from list, reinsert it at the tail of the sublist */
3355 p
->prev
->next
= p
->next
;
3357 curbuf
->b_signlist
= p
->next
;
3358 p
->next
->prev
= p
->prev
;
3359 /* now find end of sublist and insert p */
3360 for (tail
= p
->next
;
3361 tail
->next
&& tail
->next
->lnum
== lnum
3362 && tail
->next
->id
< GUARDEDOFFSET
;
3365 /* tail now points to last entry with same lnum (except
3366 * that "guarded" annotations are always last) */
3367 p
->next
= tail
->next
;
3369 tail
->next
->prev
= p
;
3372 update_debug_sign(curbuf
, lnum
);
3380 * Add a sign of the reqested type at the requested location.
3382 * Reverse engineering:
3383 * Apparently an annotation is defined the first time it is used in a buffer.
3384 * When the same annotation is used in two buffers, the second time we do not
3385 * need to define a new sign name but reuse the existing one. But since the
3386 * ID number used in the second buffer starts counting at one again, a mapping
3387 * is made from the ID specifically for the buffer to the global sign name
3388 * (which is a number).
3390 * globalsignmap[] stores the signs that have been defined globally.
3391 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3411 for (i
= 0; i
< globalsignmapused
; i
++)
3412 if (STRCMP(typeName
, globalsignmap
[i
]) == 0)
3415 if (i
== globalsignmapused
) /* not found; add it to global map */
3417 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%d,%d)\n",
3418 typeNum
, typeName
, tooltip
, glyphFile
, fg
, bg
));
3419 if (use_fg
|| use_bg
)
3421 sprintf(fgbuf
, "guifg=#%06x", fg
& 0xFFFFFF);
3422 sprintf(bgbuf
, "guibg=#%06x", bg
& 0xFFFFFF);
3424 coloncmd(":highlight NB_%s %s %s", typeName
, (use_fg
) ? fgbuf
: "",
3425 (use_bg
) ? bgbuf
: "");
3426 if (*glyphFile
== NUL
)
3427 /* no glyph, line highlighting only */
3428 coloncmd(":sign define %d linehl=NB_%s", i
+ 1, typeName
);
3429 else if (vim_strsize(glyphFile
) <= 2)
3430 /* one- or two-character glyph name, use as text glyph with
3432 coloncmd(":sign define %d text=%s texthl=NB_%s", i
+ 1,
3433 glyphFile
, typeName
);
3435 /* glyph, line highlighting */
3436 coloncmd(":sign define %d icon=%s linehl=NB_%s", i
+ 1,
3437 glyphFile
, typeName
);
3440 /* glyph, no line highlighting */
3441 coloncmd(":sign define %d icon=%s", i
+ 1, glyphFile
);
3443 if (STRCMP(typeName
,"CurrentPC") == 0)
3444 curPCtype
= typeNum
;
3446 if (globalsignmapused
== globalsignmaplen
)
3448 if (globalsignmaplen
== 0) /* first allocation */
3450 globalsignmaplen
= 20;
3451 globalsignmap
= (char **)alloc_clear(globalsignmaplen
*sizeof(char *));
3456 int oldlen
= globalsignmaplen
;
3458 globalsignmaplen
*= 2;
3459 incr
= globalsignmaplen
- oldlen
;
3460 globalsignmap
= (char **)vim_realloc(globalsignmap
,
3461 globalsignmaplen
* sizeof(char *));
3462 memset(globalsignmap
+ oldlen
, 0, incr
* sizeof(char *));
3466 globalsignmap
[i
] = (char *)typeName
;
3467 globalsignmapused
= i
+ 1;
3470 /* check local map; should *not* be found! */
3471 for (j
= 0; j
< buf
->signmapused
; j
++)
3472 if (buf
->signmap
[j
] == i
+ 1)
3475 /* add to local map */
3476 if (buf
->signmapused
== buf
->signmaplen
)
3478 if (buf
->signmaplen
== 0) /* first allocation */
3480 buf
->signmaplen
= 5;
3481 buf
->signmap
= (int *)alloc_clear(buf
->signmaplen
* sizeof(int *));
3486 int oldlen
= buf
->signmaplen
;
3487 buf
->signmaplen
*= 2;
3488 incr
= buf
->signmaplen
- oldlen
;
3489 buf
->signmap
= (int *)vim_realloc(buf
->signmap
,
3490 buf
->signmaplen
*sizeof(int *));
3491 memset(buf
->signmap
+ oldlen
, 0, incr
* sizeof(int *));
3495 buf
->signmap
[buf
->signmapused
++] = i
+ 1;
3501 * See if we have the requested sign type in the buffer.
3504 mapsigntype(nbbuf_T
*buf
, int localsigntype
)
3506 if (--localsigntype
>= 0 && localsigntype
< buf
->signmapused
)
3507 return buf
->signmap
[localsigntype
];
3514 * Compute length of buffer, don't print anything.
3517 get_buf_size(buf_T
*bufp
)
3520 long char_count
= 0;
3522 long last_check
= 100000L;
3524 if (bufp
->b_ml
.ml_flags
& ML_EMPTY
)
3528 if (get_fileformat(bufp
) == EOL_DOS
)
3532 for (lnum
= 1; lnum
<= bufp
->b_ml
.ml_line_count
; ++lnum
)
3534 char_count
+= (long)STRLEN(ml_get(lnum
)) + eol_size
;
3535 /* Check for a CTRL-C every 100000 characters */
3536 if (char_count
> last_check
)
3541 last_check
= char_count
+ 100000L;
3544 /* Correction for when last line doesn't have an EOL. */
3545 if (!bufp
->b_p_eol
&& bufp
->b_p_bin
)
3546 char_count
-= eol_size
;
3553 * Convert character offset to lnum,col
3556 off2pos(buf_T
*buf
, long offset
)
3563 #ifdef FEAT_VIRTUALEDIT
3567 if (!(buf
->b_ml
.ml_flags
& ML_EMPTY
))
3569 if ((lnum
= ml_find_line_or_offset(buf
, (linenr_T
)0, &offset
)) < 0)
3579 * Convert an argument in the form "1234" to an offset and compute the
3580 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3582 * "argp" is advanced to after the argument.
3583 * Return a pointer to the position, NULL if something is wrong.
3586 get_off_or_lnum(buf_T
*buf
, char_u
**argp
)
3591 off
= strtol((char *)*argp
, (char **)argp
, 10);
3594 mypos
.lnum
= (linenr_T
)off
;
3596 mypos
.col
= strtol((char *)*argp
, (char **)argp
, 10);
3597 #ifdef FEAT_VIRTUALEDIT
3602 return off2pos(buf
, off
);
3607 * Convert (lnum,col) to byte offset in the file.
3610 pos2off(buf_T
*buf
, pos_T
*pos
)
3614 if (!(buf
->b_ml
.ml_flags
& ML_EMPTY
))
3616 if ((offset
= ml_find_line_or_offset(buf
, pos
->lnum
, 0)) < 0)
3626 * This message is printed after NetBeans opens a new file. Its
3627 * similar to the message readfile() uses, but since NetBeans
3628 * doesn't normally call readfile, we do our own.
3634 int lnum
= buf
->bufp
->b_ml
.ml_line_count
;
3635 long nchars
= (long)buf
->bufp
->b_orig_size
;
3638 msg_add_fname(buf
->bufp
, buf
->bufp
->b_ffname
);
3641 if (buf
->bufp
->b_p_ro
)
3643 STRCAT(IObuff
, shortmess(SHM_RO
) ? _("[RO]") : _("[readonly]"));
3646 if (!buf
->bufp
->b_start_eol
)
3648 STRCAT(IObuff
, shortmess(SHM_LAST
) ? _("[noeol]") : _("[Incomplete last line]"));
3651 msg_add_lines(c
, (long)lnum
, nchars
);
3653 /* Now display it */
3656 msg_scrolled_ign
= TRUE
;
3657 msg_trunc_attr(IObuff
, FALSE
, 0);
3658 msg_scrolled_ign
= FALSE
;
3663 * Print a message after NetBeans writes the file. This message should be identical
3664 * to the standard message a non-netbeans user would see when writing a file.
3667 print_save_msg(buf
, nchars
)
3676 msg_add_fname(buf
->bufp
, buf
->bufp
->b_ffname
); /* fname in IObuff with quotes */
3679 msg_add_lines(c
, buf
->bufp
->b_ml
.ml_line_count
,
3680 (long)buf
->bufp
->b_orig_size
);
3684 msg_scrolled_ign
= TRUE
;
3685 p
= msg_trunc_attr(IObuff
, FALSE
, 0);
3686 if ((msg_scrolled
&& !need_wait_return
) || !buf
->initDone
)
3688 /* Need to repeat the message after redrawing when:
3689 * - When reading from stdin (the screen will be cleared next).
3690 * - When restart_edit is set (otherwise there will be a delay
3691 * before redrawing).
3692 * - When the screen was scrolled but there is no wait-return
3696 msg_scrolled_ign
= FALSE
;
3697 /* add_to_input_buf((char_u *)"\f", 1); */
3701 char_u ebuf
[BUFSIZ
];
3703 STRCPY(ebuf
, (char_u
*)_("E505: "));
3704 STRCAT(ebuf
, IObuff
);
3705 STRCAT(ebuf
, (char_u
*)_("is read-only (add ! to override)"));
3706 STRCPY(IObuff
, ebuf
);
3707 nbdebug((" %s\n", ebuf
));
3712 #endif /* defined(FEAT_NETBEANS_INTG) */