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.
703 #if defined(FEAT_GUI_W32) || defined(PROTO)
704 /* Use this one when generating prototypes, the others are static. */
706 messageFromNetbeansW32()
708 # ifdef FEAT_GUI_MOTIF
710 messageFromNetbeans(XtPointer clientData UNUSED
,
712 XtInputId
*unused2 UNUSED
)
716 messageFromNetbeans(gpointer clientData UNUSED
,
718 GdkInputCondition unused2 UNUSED
)
722 static char_u
*buf
= NULL
;
726 static int level
= 0;
731 nbdebug(("messageFromNetbeans() called without a socket\n"));
736 ++level
; /* recursion guard; this will be called from the X event loop */
739 /* Allocate a buffer to read into. */
742 buf
= alloc(MAXMSGSIZE
);
744 return; /* out of memory! */
747 /* Keep on reading for as long as there is something to read. */
750 len
= sock_read(sd
, buf
, MAXMSGSIZE
);
752 break; /* error or nothing more to read */
754 /* Store the read message in the queue. */
757 if (len
< MAXMSGSIZE
)
758 break; /* did read everything that's available */
763 /* read error or didn't read anything */
764 netbeans_disconnect();
765 nbdebug(("messageFromNetbeans: Error in read() from socket\n"));
768 nbdebug(("read from Netbeans socket\n"));
769 PERROR(_("read from Netbeans socket"));
771 return; /* don't try to parse it */
774 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
775 /* Let the main loop handle messages. */
777 if (gtk_main_level() > 0)
781 /* Parse the messages now, but avoid recursion. */
783 netbeans_parse_messages();
790 * Handle one NUL terminated command.
792 * format of a command from netbeans:
794 * 6:setTitle!84 "a.c"
803 * for function calls, the ! is replaced by a /
806 nb_parse_cmd(char_u
*cmd
)
813 if (STRCMP(cmd
, "DISCONNECT") == 0)
815 /* We assume the server knows that we can safely exit! */
818 /* Disconnect before exiting, Motif hangs in a Select error
819 * message otherwise. */
820 netbeans_disconnect();
825 if (STRCMP(cmd
, "DETACH") == 0)
827 /* The IDE is breaking the connection. */
830 netbeans_disconnect();
834 bufno
= strtol((char *)cmd
, &verb
, 10);
838 nbdebug((" missing colon: %s\n", cmd
));
839 EMSG2("E627: missing colon: %s", cmd
);
842 ++verb
; /* skip colon */
844 for (q
= verb
; *q
; q
++)
862 nbdebug((" missing ! or / in: %s\n", cmd
));
863 EMSG2("E628: missing ! or / in: %s", cmd
);
867 r_cmdno
= strtol(q
, &q
, 10);
869 q
= (char *)skipwhite((char_u
*)q
);
871 if (nb_do_cmd(bufno
, (char_u
*)verb
, isfunc
, r_cmdno
, (char_u
*)q
) == FAIL
)
875 * This happens because the ExtEd can send a cammand or 2 after
876 * doing a stopDocumentListen command. It doesn't harm anything
877 * so I'm disabling it except for debugging.
879 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd
));
880 EMSG("E629: bad return from nb_do_cmd");
888 unsigned int fireChanges
:1;
889 unsigned int initDone
:1;
890 unsigned int insertDone
:1;
891 unsigned int modified
:1;
899 typedef struct nbbuf_struct nbbuf_T
;
901 static nbbuf_T
*buf_list
= 0;
902 static int buf_list_size
= 0; /* size of buf_list */
903 static int buf_list_used
= 0; /* nr of entries in buf_list actually in use */
905 static char **globalsignmap
;
906 static int globalsignmaplen
;
907 static int globalsignmapused
;
909 static int mapsigntype
__ARGS((nbbuf_T
*, int localsigntype
));
910 static void addsigntype
__ARGS((nbbuf_T
*, int localsigntype
, char_u
*typeName
,
911 char_u
*tooltip
, char_u
*glyphfile
,
912 int usefg
, int fg
, int usebg
, int bg
));
913 static void print_read_msg
__ARGS((nbbuf_T
*buf
));
914 static void print_save_msg
__ARGS((nbbuf_T
*buf
, long nchars
));
916 static int curPCtype
= -1;
919 * Get the Netbeans buffer number for the specified buffer.
922 nb_getbufno(buf_T
*bufp
)
926 for (i
= 0; i
< buf_list_used
; i
++)
927 if (buf_list
[i
].bufp
== bufp
)
933 * Is this a NetBeans-owned buffer?
936 isNetbeansBuffer(buf_T
*bufp
)
938 return usingNetbeans
&& bufp
->b_netbeans_file
;
942 * NetBeans and Vim have different undo models. In Vim, the file isn't
943 * changed if changes are undone via the undo command. In NetBeans, once
944 * a change has been made the file is marked as modified until saved. It
945 * doesn't matter if the change was undone.
947 * So this function is for the corner case where Vim thinks a buffer is
948 * unmodified but NetBeans thinks it IS modified.
951 isNetbeansModified(buf_T
*bufp
)
953 if (usingNetbeans
&& bufp
->b_netbeans_file
)
955 int bufno
= nb_getbufno(bufp
);
958 return buf_list
[bufno
].modified
;
967 * Given a Netbeans buffer number, return the netbeans buffer.
968 * Returns NULL for 0 or a negative number. A 0 bufno means a
969 * non-buffer related command has been sent.
972 nb_get_buf(int bufno
)
974 /* find or create a buffer with the given number */
983 buf_list
= (nbbuf_T
*)alloc_clear(100 * sizeof(nbbuf_T
));
986 if (bufno
>= buf_list_used
) /* new */
988 if (bufno
>= buf_list_size
) /* grow list */
990 incr
= bufno
- buf_list_size
+ 90;
991 buf_list_size
+= incr
;
992 buf_list
= (nbbuf_T
*)vim_realloc(
993 buf_list
, buf_list_size
* sizeof(nbbuf_T
));
994 memset(buf_list
+ buf_list_size
- incr
, 0, incr
* sizeof(nbbuf_T
));
997 while (buf_list_used
<= bufno
)
999 /* Default is to fire text changes. */
1000 buf_list
[buf_list_used
].fireChanges
= 1;
1005 return buf_list
+ bufno
;
1009 * Return the number of buffers that are modified.
1012 count_changed_buffers(void)
1018 for (bufp
= firstbuf
; bufp
!= NULL
; bufp
= bufp
->b_next
)
1019 if (bufp
->b_changed
)
1025 * End the netbeans session.
1031 static char buf
[128];
1033 if (!haveConnection
)
1036 for (i
= 0; i
< buf_list_used
; i
++)
1038 if (!buf_list
[i
].bufp
)
1040 if (netbeansForcedQuit
)
1042 /* mark as unmodified so NetBeans won't put up dialog on "killed" */
1043 sprintf(buf
, "%d:unmodified=%d\n", i
, r_cmdno
);
1044 nbdebug(("EVT: %s", buf
));
1045 nb_send(buf
, "netbeans_end");
1047 sprintf(buf
, "%d:killed=%d\n", i
, r_cmdno
);
1048 nbdebug(("EVT: %s", buf
));
1049 /* nb_send(buf, "netbeans_end"); avoid "write failed" messages */
1051 ignored
= sock_write(sd
, buf
, (int)STRLEN(buf
));
1056 * Send a message to netbeans.
1059 nb_send(char *buf
, char *fun
)
1061 /* Avoid giving pages full of error messages when the other side has
1062 * exited, only mention the first error until the connection works again. */
1063 static int did_error
= FALSE
;
1069 nbdebug((" %s(): write while not connected\n", fun
));
1070 EMSG2("E630: %s(): write while not connected", fun
);
1074 else if (sock_write(sd
, buf
, (int)STRLEN(buf
)) != (int)STRLEN(buf
))
1078 nbdebug((" %s(): write failed\n", fun
));
1079 EMSG2("E631: %s(): write failed", fun
);
1088 * Some input received from netbeans requires a response. This function
1089 * handles a response with no information (except the command number).
1092 nb_reply_nil(int cmdno
)
1096 if (!haveConnection
)
1099 nbdebug(("REP %d: <none>\n", cmdno
));
1101 sprintf(reply
, "%d\n", cmdno
);
1102 nb_send(reply
, "nb_reply_nil");
1107 * Send a response with text.
1108 * "result" must have been quoted already (using nb_quote()).
1111 nb_reply_text(int cmdno
, char_u
*result
)
1115 if (!haveConnection
)
1118 nbdebug(("REP %d: %s\n", cmdno
, (char *)result
));
1120 reply
= alloc((unsigned)STRLEN(result
) + 32);
1121 sprintf((char *)reply
, "%d %s\n", cmdno
, (char *)result
);
1122 nb_send((char *)reply
, "nb_reply_text");
1129 * Send a response with a number result code.
1132 nb_reply_nr(int cmdno
, long result
)
1136 if (!haveConnection
)
1139 nbdebug(("REP %d: %ld\n", cmdno
, result
));
1141 sprintf(reply
, "%d %ld\n", cmdno
, result
);
1142 nb_send(reply
, "nb_reply_nr");
1147 * Encode newline, ret, backslash, double quote for transmission to NetBeans.
1150 nb_quote(char_u
*txt
)
1152 char_u
*buf
= alloc((unsigned)(2 * STRLEN(txt
) + 1));
1164 *q
++ = '\\'; *q
++ = *p
; break;
1166 /* *q++ = '\\'; *q++ = 't'; break; */
1168 *q
++ = '\\'; *q
++ = 'n'; break;
1170 *q
++ = '\\'; *q
++ = 'r'; break;
1183 * Remove top level double quotes; convert backslashed chars.
1184 * Returns an allocated string (NULL for failure).
1185 * If "endp" is not NULL it is set to the character after the terminating
1189 nb_unquote(char_u
*p
, char_u
**endp
)
1195 /* result is never longer than input */
1196 result
= (char *)alloc_clear((unsigned)STRLEN(p
) + 1);
1202 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n",
1208 for (q
= result
; !done
&& *p
!= NUL
;)
1214 * Unbackslashed dquote marks the end, if first char was dquote.
1223 case '\\': *q
++ = '\\'; break;
1224 case 'n': *q
++ = '\n'; break;
1225 case 't': *q
++ = '\t'; break;
1226 case 'r': *q
++ = '\r'; break;
1227 case '"': *q
++ = '"'; break;
1228 case NUL
: --p
; break;
1229 /* default: skip over illegal chars */
1246 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the
1247 * current buffer. Remove to end of line when "last" is MAXCOL.
1250 nb_partialremove(linenr_T lnum
, colnr_T first
, colnr_T last
)
1252 char_u
*oldtext
, *newtext
;
1254 int lastbyte
= last
;
1256 oldtext
= ml_get(lnum
);
1257 oldlen
= (int)STRLEN(oldtext
);
1258 if (first
>= (colnr_T
)oldlen
|| oldlen
== 0) /* just in case */
1260 if (lastbyte
>= oldlen
)
1261 lastbyte
= oldlen
- 1;
1262 newtext
= alloc(oldlen
- (int)(lastbyte
- first
));
1263 if (newtext
!= NULL
)
1265 mch_memmove(newtext
, oldtext
, first
);
1266 STRMOVE(newtext
+ first
, oldtext
+ lastbyte
+ 1);
1267 nbdebug((" NEW LINE %d: %s\n", lnum
, newtext
));
1268 ml_replace(lnum
, newtext
, FALSE
);
1273 * Replace the "first" line with the concatenation of the "first" and
1274 * the "other" line. The "other" line is not removed.
1277 nb_joinlines(linenr_T first
, linenr_T other
)
1279 int len_first
, len_other
;
1282 len_first
= (int)STRLEN(ml_get(first
));
1283 len_other
= (int)STRLEN(ml_get(other
));
1284 p
= alloc((unsigned)(len_first
+ len_other
+ 1));
1287 mch_memmove(p
, ml_get(first
), len_first
);
1288 mch_memmove(p
+ len_first
, ml_get(other
), len_other
+ 1);
1289 ml_replace(first
, p
, FALSE
);
1294 #define streq(a,b) (strcmp(a,b) == 0)
1295 static int needupdate
= 0;
1296 static int inAtomic
= 0;
1299 * Do the actual processing of a single netbeans command or function.
1300 * The difference between a command and function is that a function
1301 * gets a response (it's required) but a command does not.
1302 * For arguments see comment for nb_parse_cmd().
1310 char_u
*args
) /* points to space before arguments or NUL */
1314 nbbuf_T
*buf
= nb_get_buf(bufno
);
1315 static int skip
= 0;
1317 char *cp
; /* for when a char pointer is needed */
1319 nbdebug(("%s %d: (%d) %s %s\n", (func
) ? "FUN" : "CMD", cmdno
, bufno
, cmd
,
1320 STRCMP(cmd
, "insert") == 0 ? "<text>" : (char *)args
));
1324 /* =====================================================================*/
1325 if (streq((char *)cmd
, "getModified"))
1327 if (buf
== NULL
|| buf
->bufp
== NULL
)
1328 /* Return the number of buffers that are modified. */
1329 nb_reply_nr(cmdno
, (long)count_changed_buffers());
1331 /* Return whether the buffer is modified. */
1332 nb_reply_nr(cmdno
, (long)(buf
->bufp
->b_changed
1333 || isNetbeansModified(buf
->bufp
)));
1334 /* =====================================================================*/
1336 else if (streq((char *)cmd
, "saveAndExit"))
1338 /* Note: this will exit Vim if successful. */
1339 coloncmd(":confirm qall");
1341 /* We didn't exit: return the number of changed buffers. */
1342 nb_reply_nr(cmdno
, (long)count_changed_buffers());
1343 /* =====================================================================*/
1345 else if (streq((char *)cmd
, "getCursor"))
1349 /* Note: nb_getbufno() may return -1. This indicates the IDE
1350 * didn't assign a number to the current buffer in response to a
1351 * fileOpened event. */
1352 sprintf((char *)text
, "%d %ld %d %ld",
1353 nb_getbufno(curbuf
),
1354 (long)curwin
->w_cursor
.lnum
,
1355 (int)curwin
->w_cursor
.col
,
1356 pos2off(curbuf
, &curwin
->w_cursor
));
1357 nb_reply_text(cmdno
, text
);
1358 /* =====================================================================*/
1360 else if (streq((char *)cmd
, "getAnno"))
1364 if (buf
== NULL
|| buf
->bufp
== NULL
)
1366 nbdebug((" Invalid buffer identifier in getAnno\n"));
1367 EMSG("E652: Invalid buffer identifier in getAnno");
1375 serNum
= strtol(cp
, &cp
, 10);
1376 /* If the sign isn't found linenum will be zero. */
1377 linenum
= (long)buf_findsign(buf
->bufp
, serNum
);
1380 nb_reply_nr(cmdno
, linenum
);
1381 /* =====================================================================*/
1383 else if (streq((char *)cmd
, "getLength"))
1387 if (buf
== NULL
|| buf
->bufp
== NULL
)
1389 nbdebug((" invalid buffer identifier in getLength\n"));
1390 EMSG("E632: invalid buffer identifier in getLength");
1395 len
= get_buf_size(buf
->bufp
);
1397 nb_reply_nr(cmdno
, len
);
1398 /* =====================================================================*/
1400 else if (streq((char *)cmd
, "getText"))
1404 char_u
*text
= NULL
;
1409 if (buf
== NULL
|| buf
->bufp
== NULL
)
1411 nbdebug((" invalid buffer identifier in getText\n"));
1412 EMSG("E633: invalid buffer identifier in getText");
1417 len
= get_buf_size(buf
->bufp
);
1418 nlines
= buf
->bufp
->b_ml
.ml_line_count
;
1419 text
= alloc((unsigned)((len
> 0)
1420 ? ((len
+ nlines
) * 2) : 4));
1423 nbdebug((" nb_do_cmd: getText has null text field\n"));
1430 for (; lno
<= nlines
; lno
++)
1432 line
= nb_quote(ml_get_buf(buf
->bufp
, lno
, FALSE
));
1447 nb_reply_text(cmdno
, (char_u
*)"");
1450 nb_reply_text(cmdno
, text
);
1453 /* =====================================================================*/
1455 else if (streq((char *)cmd
, "remove"))
1461 linenr_T del_from_lnum
, del_to_lnum
; /* lines to be deleted as a whole */
1462 int oldFire
= netbeansFireChanges
;
1463 int oldSuppress
= netbeansSuppressNoLines
;
1466 if (skip
>= SKIP_STOP
)
1468 nbdebug((" Skipping %s command\n", (char *) cmd
));
1469 nb_reply_nil(cmdno
);
1473 if (buf
== NULL
|| buf
->bufp
== NULL
)
1475 nbdebug((" invalid buffer identifier in remove\n"));
1476 EMSG("E634: invalid buffer identifier in remove");
1481 netbeansFireChanges
= FALSE
;
1482 netbeansSuppressNoLines
= TRUE
;
1484 nb_set_curbuf(buf
->bufp
);
1485 wasChanged
= buf
->bufp
->b_changed
;
1487 off
= strtol(cp
, &cp
, 10);
1488 count
= strtol(cp
, &cp
, 10);
1489 args
= (char_u
*)cp
;
1490 /* delete "count" chars, starting at "off" */
1491 pos
= off2pos(buf
->bufp
, off
);
1494 nbdebug((" !bad position\n"));
1495 nb_reply_text(cmdno
, (char_u
*)"!bad position");
1496 netbeansFireChanges
= oldFire
;
1497 netbeansSuppressNoLines
= oldSuppress
;
1501 nbdebug((" FIRST POS: line %d, col %d\n", first
.lnum
, first
.col
));
1502 pos
= off2pos(buf
->bufp
, off
+count
-1);
1505 nbdebug((" !bad count\n"));
1506 nb_reply_text(cmdno
, (char_u
*)"!bad count");
1507 netbeansFireChanges
= oldFire
;
1508 netbeansSuppressNoLines
= oldSuppress
;
1512 nbdebug((" LAST POS: line %d, col %d\n", last
.lnum
, last
.col
));
1513 del_from_lnum
= first
.lnum
;
1514 del_to_lnum
= last
.lnum
;
1517 /* Get the position of the first byte after the deleted
1518 * section. "next" is NULL when deleting to the end of the
1520 next
= off2pos(buf
->bufp
, off
+ count
);
1522 /* Remove part of the first line. */
1523 if (first
.col
!= 0 || (next
!= NULL
&& first
.lnum
== next
->lnum
))
1525 if (first
.lnum
!= last
.lnum
1526 || (next
!= NULL
&& first
.lnum
!= next
->lnum
))
1528 /* remove to the end of the first line */
1529 nb_partialremove(first
.lnum
, first
.col
,
1531 if (first
.lnum
== last
.lnum
)
1533 /* Partial line to remove includes the end of
1534 * line. Join the line with the next one, have
1535 * the next line deleted below. */
1536 nb_joinlines(first
.lnum
, next
->lnum
);
1537 del_to_lnum
= next
->lnum
;
1542 /* remove within one line */
1543 nb_partialremove(first
.lnum
, first
.col
, last
.col
);
1545 ++del_from_lnum
; /* don't delete the first line */
1548 /* Remove part of the last line. */
1549 if (first
.lnum
!= last
.lnum
&& next
!= NULL
1550 && next
->col
!= 0 && last
.lnum
== next
->lnum
)
1552 nb_partialremove(last
.lnum
, 0, last
.col
);
1553 if (del_from_lnum
> first
.lnum
)
1555 /* Join end of last line to start of first line; last
1556 * line is deleted below. */
1557 nb_joinlines(first
.lnum
, last
.lnum
);
1560 /* First line is deleted as a whole, keep the last
1565 /* First is partial line; last line to remove includes
1566 * the end of line; join first line to line following last
1567 * line; line following last line is deleted below. */
1568 if (first
.lnum
!= last
.lnum
&& del_from_lnum
> first
.lnum
1569 && next
!= NULL
&& last
.lnum
!= next
->lnum
)
1571 nb_joinlines(first
.lnum
, next
->lnum
);
1572 del_to_lnum
= next
->lnum
;
1575 /* Delete whole lines if there are any. */
1576 if (del_to_lnum
>= del_from_lnum
)
1580 /* delete signs from the lines being deleted */
1581 for (i
= del_from_lnum
; i
<= del_to_lnum
; i
++)
1583 int id
= buf_findsign_id(buf
->bufp
, (linenr_T
)i
);
1586 nbdebug((" Deleting sign %d on line %d\n", id
, i
));
1587 buf_delsign(buf
->bufp
, id
);
1591 nbdebug((" No sign on line %d\n", i
));
1595 nbdebug((" Deleting lines %d through %d\n", del_from_lnum
, del_to_lnum
));
1596 curwin
->w_cursor
.lnum
= del_from_lnum
;
1597 curwin
->w_cursor
.col
= 0;
1598 del_lines(del_to_lnum
- del_from_lnum
+ 1, FALSE
);
1601 /* Leave cursor at first deleted byte. */
1602 curwin
->w_cursor
= first
;
1603 check_cursor_lnum();
1604 buf
->bufp
->b_changed
= wasChanged
; /* logically unchanged */
1605 netbeansFireChanges
= oldFire
;
1606 netbeansSuppressNoLines
= oldSuppress
;
1608 u_blockfree(buf
->bufp
);
1609 u_clearall(buf
->bufp
);
1611 nb_reply_nil(cmdno
);
1612 /* =====================================================================*/
1614 else if (streq((char *)cmd
, "insert"))
1618 if (skip
>= SKIP_STOP
)
1620 nbdebug((" Skipping %s command\n", (char *) cmd
));
1621 nb_reply_nil(cmdno
);
1627 off
= strtol(cp
, &cp
, 10);
1628 args
= (char_u
*)cp
;
1630 /* get text to be inserted */
1631 args
= skipwhite(args
);
1632 args
= to_free
= (char_u
*)nb_unquote(args
, NULL
);
1634 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n",
1635 buf->bufp->b_ml.ml_line_count, STRLEN(args), off));
1638 if (buf
== NULL
|| buf
->bufp
== NULL
)
1640 nbdebug((" invalid buffer identifier in insert\n"));
1641 EMSG("E635: invalid buffer identifier in insert");
1644 else if (args
!= NULL
)
1646 int ff_detected
= EOL_UNKNOWN
;
1647 int buf_was_empty
= (buf
->bufp
->b_ml
.ml_flags
& ML_EMPTY
);
1650 int oldFire
= netbeansFireChanges
;
1654 linenr_T lnum_start
;
1657 netbeansFireChanges
= 0;
1659 /* Jump to the buffer where we insert. After this "curbuf"
1661 nb_set_curbuf(buf
->bufp
);
1662 old_b_changed
= curbuf
->b_changed
;
1664 /* Convert the specified character offset into a lnum/col
1666 pos
= off2pos(curbuf
, off
);
1672 lnum_start
= pos
->lnum
;
1676 /* If the given position is not found, assume we want
1677 * the end of the file. See setLocAndSize HACK. */
1679 lnum_start
= 1; /* above empty line */
1681 lnum_start
= curbuf
->b_ml
.ml_line_count
+ 1;
1684 /* "lnum" is the line where we insert: either append to it or
1685 * insert a new line above it. */
1688 /* Loop over the "\n" separated lines of the argument. */
1690 while (*args
!= NUL
)
1692 nl
= vim_strchr(args
, '\n');
1695 /* Incomplete line, probably truncated. Next "insert"
1696 * command should append to this one. */
1704 * We need to detect EOL style, because the commands
1705 * use a character offset.
1707 if (nl
> args
&& nl
[-1] == '\r')
1709 ff_detected
= EOL_DOS
;
1713 ff_detected
= EOL_UNIX
;
1717 if (lnum
== lnum_start
1718 && ((pos
!= NULL
&& pos
->col
> 0)
1719 || (lnum
== 1 && buf_was_empty
)))
1721 char_u
*oldline
= ml_get(lnum
);
1724 /* Insert halfway a line. For simplicity we assume we
1725 * need to append to the line. */
1726 newline
= alloc_check((unsigned)(STRLEN(oldline
) + len
+ 1));
1727 if (newline
!= NULL
)
1729 STRCPY(newline
, oldline
);
1730 STRCAT(newline
, args
);
1731 ml_replace(lnum
, newline
, FALSE
);
1736 /* Append a new line. Not that we always do this,
1737 * also when the text doesn't end in a "\n". */
1738 ml_append((linenr_T
)(lnum
- 1), args
, (colnr_T
)(len
+ 1), FALSE
);
1748 /* Adjust the marks below the inserted lines. */
1749 appended_lines_mark(lnum_start
- 1, (long)added
);
1752 * When starting with an empty buffer set the fileformat.
1753 * This is just guessing...
1757 if (ff_detected
== EOL_UNKNOWN
)
1758 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1759 ff_detected
= EOL_DOS
;
1761 ff_detected
= EOL_UNIX
;
1763 set_fileformat(ff_detected
, OPT_LOCAL
);
1764 curbuf
->b_start_ffc
= *curbuf
->b_p_ff
;
1768 * XXX - GRP - Is the next line right? If I've inserted
1769 * text the buffer has been updated but not written. Will
1770 * netbeans guarantee to write it? Even if I do a :q! ?
1772 curbuf
->b_changed
= old_b_changed
; /* logically unchanged */
1773 netbeansFireChanges
= oldFire
;
1775 /* Undo info is invalid now... */
1776 u_blockfree(curbuf
);
1780 nb_reply_nil(cmdno
); /* or !error */
1784 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd
));
1785 nb_reply_nil(cmdno
);
1789 else /* Not a function; no reply required. */
1791 /* =====================================================================*/
1792 if (streq((char *)cmd
, "create"))
1794 /* Create a buffer without a name. */
1797 nbdebug((" invalid buffer identifier in create\n"));
1798 EMSG("E636: invalid buffer identifier in create");
1801 vim_free(buf
->displayname
);
1802 buf
->displayname
= NULL
;
1804 netbeansReadFile
= 0; /* don't try to open disk file */
1805 do_ecmd(0, NULL
, 0, 0, ECMD_ONE
, ECMD_HIDE
+ ECMD_OLDBUF
, curwin
);
1806 netbeansReadFile
= 1;
1809 buf
->insertDone
= FALSE
;
1810 gui_update_menus(0);
1811 /* =====================================================================*/
1813 else if (streq((char *)cmd
, "insertDone"))
1815 if (buf
== NULL
|| buf
->bufp
== NULL
)
1817 nbdebug((" invalid buffer identifier in insertDone\n"));
1821 buf
->bufp
->b_start_eol
= *args
== 'T';
1822 buf
->insertDone
= TRUE
;
1824 buf
->bufp
->b_p_ro
= *args
== 'T';
1825 print_read_msg(buf
);
1827 /* =====================================================================*/
1829 else if (streq((char *)cmd
, "saveDone"))
1831 long savedChars
= atol((char *)args
);
1833 if (buf
== NULL
|| buf
->bufp
== NULL
)
1835 nbdebug((" invalid buffer identifier in saveDone\n"));
1838 print_save_msg(buf
, savedChars
);
1839 /* =====================================================================*/
1841 else if (streq((char *)cmd
, "startDocumentListen"))
1845 nbdebug((" invalid buffer identifier in startDocumentListen\n"));
1846 EMSG("E637: invalid buffer identifier in startDocumentListen");
1849 buf
->fireChanges
= 1;
1850 /* =====================================================================*/
1852 else if (streq((char *)cmd
, "stopDocumentListen"))
1856 nbdebug((" invalid buffer identifier in stopDocumentListen\n"));
1857 EMSG("E638: invalid buffer identifier in stopDocumentListen");
1860 buf
->fireChanges
= 0;
1861 if (buf
->bufp
!= NULL
&& buf
->bufp
->b_was_netbeans_file
)
1863 if (!buf
->bufp
->b_netbeans_file
)
1865 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf
->bufp
->b_fnum
));
1866 EMSGN(_("E658: NetBeans connection lost for buffer %ld"),
1871 /* NetBeans uses stopDocumentListen when it stops editing
1872 * a file. It then expects the buffer in Vim to
1874 do_bufdel(DOBUF_DEL
, (char_u
*)"", 1,
1875 buf
->bufp
->b_fnum
, buf
->bufp
->b_fnum
, TRUE
);
1876 vim_memset(buf
, 0, sizeof(nbbuf_T
));
1879 /* =====================================================================*/
1881 else if (streq((char *)cmd
, "setTitle"))
1885 nbdebug((" invalid buffer identifier in setTitle\n"));
1886 EMSG("E639: invalid buffer identifier in setTitle");
1889 vim_free(buf
->displayname
);
1890 buf
->displayname
= nb_unquote(args
, NULL
);
1891 /* =====================================================================*/
1893 else if (streq((char *)cmd
, "initDone"))
1895 if (buf
== NULL
|| buf
->bufp
== NULL
)
1897 nbdebug((" invalid buffer identifier in initDone\n"));
1898 EMSG("E640: invalid buffer identifier in initDone");
1902 buf
->initDone
= TRUE
;
1903 nb_set_curbuf(buf
->bufp
);
1904 #if defined(FEAT_AUTOCMD)
1905 apply_autocmds(EVENT_BUFREADPOST
, 0, 0, FALSE
, buf
->bufp
);
1908 /* handle any postponed key commands */
1910 /* =====================================================================*/
1912 else if (streq((char *)cmd
, "setBufferNumber")
1913 || streq((char *)cmd
, "putBufferNumber"))
1920 nbdebug((" invalid buffer identifier in setBufferNumber\n"));
1921 EMSG("E641: invalid buffer identifier in setBufferNumber");
1924 path
= (char_u
*)nb_unquote(args
, NULL
);
1927 bufp
= buflist_findname(path
);
1931 nbdebug((" File %s not found in setBufferNumber\n", args
));
1932 EMSG2("E642: File %s not found in setBufferNumber", args
);
1936 buf
->nbbuf_number
= bufp
->b_fnum
;
1938 /* "setBufferNumber" has the side effect of jumping to the buffer
1939 * (don't know why!). Don't do that for "putBufferNumber". */
1941 coloncmd(":buffer %d", bufp
->b_fnum
);
1944 buf
->initDone
= TRUE
;
1946 /* handle any postponed key commands */
1950 #if 0 /* never used */
1951 buf
->internalname
= (char *)alloc_clear(8);
1952 sprintf(buf
->internalname
, "<%d>", bufno
);
1953 buf
->netbeansOwns
= 0;
1955 /* =====================================================================*/
1957 else if (streq((char *)cmd
, "setFullName"))
1961 nbdebug((" invalid buffer identifier in setFullName\n"));
1962 EMSG("E643: invalid buffer identifier in setFullName");
1965 vim_free(buf
->displayname
);
1966 buf
->displayname
= nb_unquote(args
, NULL
);
1968 netbeansReadFile
= 0; /* don't try to open disk file */
1969 do_ecmd(0, (char_u
*)buf
->displayname
, 0, 0, ECMD_ONE
,
1970 ECMD_HIDE
+ ECMD_OLDBUF
, curwin
);
1971 netbeansReadFile
= 1;
1974 gui_update_menus(0);
1975 /* =====================================================================*/
1977 else if (streq((char *)cmd
, "editFile"))
1981 nbdebug((" invalid buffer identifier in editFile\n"));
1982 EMSG("E644: invalid buffer identifier in editFile");
1985 /* Edit a file: like create + setFullName + read the file. */
1986 vim_free(buf
->displayname
);
1987 buf
->displayname
= nb_unquote(args
, NULL
);
1988 do_ecmd(0, (char_u
*)buf
->displayname
, NULL
, NULL
, ECMD_ONE
,
1989 ECMD_HIDE
+ ECMD_OLDBUF
, curwin
);
1991 buf
->initDone
= TRUE
;
1993 #if defined(FEAT_TITLE)
1996 gui_update_menus(0);
1997 /* =====================================================================*/
1999 else if (streq((char *)cmd
, "setVisible"))
2001 if (buf
== NULL
|| buf
->bufp
== NULL
)
2003 nbdebug((" invalid buffer identifier in setVisible\n"));
2004 /* This message was commented out, probably because it can
2005 * happen when shutting down. */
2007 EMSG("E645: invalid buffer identifier in setVisible");
2010 if (streq((char *)args
, "T") && buf
->bufp
!= curbuf
)
2013 exarg
.cmd
= (char_u
*)"goto";
2014 exarg
.forceit
= FALSE
;
2015 dosetvisible
= TRUE
;
2016 goto_buffer(&exarg
, DOBUF_FIRST
, FORWARD
, buf
->bufp
->b_fnum
);
2018 dosetvisible
= FALSE
;
2020 /* Side effect!!!. */
2022 gui_mch_set_foreground();
2024 /* =====================================================================*/
2026 else if (streq((char *)cmd
, "raise"))
2028 /* Bring gvim to the foreground. */
2030 gui_mch_set_foreground();
2031 /* =====================================================================*/
2033 else if (streq((char *)cmd
, "setModified"))
2037 if (buf
== NULL
|| buf
->bufp
== NULL
)
2039 nbdebug((" invalid buffer identifier in setModified\n"));
2040 /* This message was commented out, probably because it can
2041 * happen when shutting down. */
2043 EMSG("E646: invalid buffer identifier in setModified");
2046 prev_b_changed
= buf
->bufp
->b_changed
;
2047 if (streq((char *)args
, "T"))
2048 buf
->bufp
->b_changed
= TRUE
;
2053 /* Assume NetBeans stored the file. Reset the timestamp to
2054 * avoid "file changed" warnings. */
2055 if (buf
->bufp
->b_ffname
!= NULL
2056 && mch_stat((char *)buf
->bufp
->b_ffname
, &st
) >= 0)
2057 buf_store_time(buf
->bufp
, &st
, buf
->bufp
->b_ffname
);
2058 buf
->bufp
->b_changed
= FALSE
;
2060 buf
->modified
= buf
->bufp
->b_changed
;
2061 if (prev_b_changed
!= buf
->bufp
->b_changed
)
2064 check_status(buf
->bufp
);
2065 redraw_tabline
= TRUE
;
2072 /* =====================================================================*/
2074 else if (streq((char *)cmd
, "setModtime"))
2076 if (buf
== NULL
|| buf
->bufp
== NULL
)
2077 nbdebug((" invalid buffer identifier in setModtime\n"));
2079 buf
->bufp
->b_mtime
= atoi((char *)args
);
2080 /* =====================================================================*/
2082 else if (streq((char *)cmd
, "setReadOnly"))
2084 if (buf
== NULL
|| buf
->bufp
== NULL
)
2085 nbdebug((" invalid buffer identifier in setReadOnly\n"));
2086 else if (streq((char *)args
, "T"))
2087 buf
->bufp
->b_p_ro
= TRUE
;
2089 buf
->bufp
->b_p_ro
= FALSE
;
2090 /* =====================================================================*/
2092 else if (streq((char *)cmd
, "setMark"))
2095 /* =====================================================================*/
2097 else if (streq((char *)cmd
, "showBalloon"))
2099 #if defined(FEAT_BEVAL)
2100 static char *text
= NULL
;
2103 * Set up the Balloon Expression Evaluation area.
2104 * Ignore 'ballooneval' here.
2105 * The text pointer must remain valid for a while.
2107 if (balloonEval
!= NULL
)
2110 text
= nb_unquote(args
, NULL
);
2112 gui_mch_post_balloon(balloonEval
, (char_u
*)text
);
2115 /* =====================================================================*/
2117 else if (streq((char *)cmd
, "setDot"))
2124 if (buf
== NULL
|| buf
->bufp
== NULL
)
2126 nbdebug((" invalid buffer identifier in setDot\n"));
2127 EMSG("E647: invalid buffer identifier in setDot");
2131 nb_set_curbuf(buf
->bufp
);
2134 /* Don't want Visual mode now. */
2141 pos
= get_off_or_lnum(buf
->bufp
, &args
);
2144 curwin
->w_cursor
= *pos
;
2152 nbdebug((" BAD POSITION in setDot: %s\n", s
));
2155 /* gui_update_cursor(TRUE, FALSE); */
2156 /* update_curbuf(NOT_VALID); */
2157 update_topline(); /* scroll to show the line */
2158 update_screen(VALID
);
2161 gui_update_cursor(TRUE
, FALSE
);
2163 /* Quit a hit-return or more prompt. */
2164 if (State
== HITRETURN
|| State
== ASKMORE
)
2167 if (gtk_main_level() > 0)
2171 /* =====================================================================*/
2173 else if (streq((char *)cmd
, "close"))
2176 char *name
= "<NONE>";
2181 nbdebug((" invalid buffer identifier in close\n"));
2182 EMSG("E648: invalid buffer identifier in close");
2187 if (buf
->displayname
!= NULL
)
2188 name
= buf
->displayname
;
2190 if (buf
->bufp
== NULL
)
2192 nbdebug((" invalid buffer identifier in close\n"));
2193 /* This message was commented out, probably because it can
2194 * happen when shutting down. */
2196 EMSG("E649: invalid buffer identifier in close");
2198 nbdebug((" CLOSE %d: %s\n", bufno
, name
));
2199 need_mouse_correct
= TRUE
;
2200 if (buf
->bufp
!= NULL
)
2201 do_buffer(DOBUF_WIPE
, DOBUF_FIRST
, FORWARD
,
2202 buf
->bufp
->b_fnum
, TRUE
);
2204 buf
->initDone
= FALSE
;
2206 /* =====================================================================*/
2208 else if (streq((char *)cmd
, "setStyle")) /* obsolete... */
2210 nbdebug((" setStyle is obsolete!\n"));
2211 /* =====================================================================*/
2213 else if (streq((char *)cmd
, "setExitDelay"))
2215 /* Only used in version 2.1. */
2216 /* =====================================================================*/
2218 else if (streq((char *)cmd
, "defineAnnoType"))
2233 nbdebug((" invalid buffer identifier in defineAnnoType\n"));
2234 EMSG("E650: invalid buffer identifier in defineAnnoType");
2239 typeNum
= strtol(cp
, &cp
, 10);
2240 args
= (char_u
*)cp
;
2241 args
= skipwhite(args
);
2242 typeName
= (char_u
*)nb_unquote(args
, &args
);
2243 args
= skipwhite(args
+ 1);
2244 tooltip
= (char_u
*)nb_unquote(args
, &args
);
2245 args
= skipwhite(args
+ 1);
2247 p
= (char_u
*)nb_unquote(args
, &args
);
2248 glyphFile
= vim_strsave_escaped(p
, escape_chars
);
2251 args
= skipwhite(args
+ 1);
2252 if (STRNCMP(args
, "none", 4) == 0)
2258 fg
= strtol(cp
, &cp
, 10);
2259 args
= (char_u
*)cp
;
2261 if (STRNCMP(args
, "none", 4) == 0)
2267 bg
= strtol(cp
, &cp
, 10);
2268 args
= (char_u
*)cp
;
2270 if (typeName
!= NULL
&& tooltip
!= NULL
&& glyphFile
!= NULL
)
2271 addsigntype(buf
, typeNum
, typeName
, tooltip
, glyphFile
,
2272 use_fg
, fg
, use_bg
, bg
);
2276 /* don't free typeName; it's used directly in addsigntype() */
2278 vim_free(glyphFile
);
2281 /* =====================================================================*/
2283 else if (streq((char *)cmd
, "addAnno"))
2291 if (buf
== NULL
|| buf
->bufp
== NULL
)
2293 nbdebug((" invalid buffer identifier in addAnno\n"));
2294 EMSG("E651: invalid buffer identifier in addAnno");
2301 serNum
= strtol(cp
, &cp
, 10);
2303 /* Get the typenr specific for this buffer and convert it to
2304 * the global typenumber, as used for the sign name. */
2305 localTypeNum
= strtol(cp
, &cp
, 10);
2306 args
= (char_u
*)cp
;
2307 typeNum
= mapsigntype(buf
, localTypeNum
);
2309 pos
= get_off_or_lnum(buf
->bufp
, &args
);
2312 ignored
= (int)strtol(cp
, &cp
, 10);
2313 args
= (char_u
*)cp
;
2317 nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
2320 if (serNum
>= GUARDEDOFFSET
)
2322 nbdebug((" too many annotations! ignoring...\n"));
2327 coloncmd(":sign place %d line=%ld name=%d buffer=%d",
2328 serNum
, pos
->lnum
, typeNum
, buf
->bufp
->b_fnum
);
2329 if (typeNum
== curPCtype
)
2330 coloncmd(":sign jump %d buffer=%d", serNum
,
2334 /* =====================================================================*/
2336 else if (streq((char *)cmd
, "removeAnno"))
2341 if (buf
== NULL
|| buf
->bufp
== NULL
)
2343 nbdebug((" invalid buffer identifier in removeAnno\n"));
2348 serNum
= strtol(cp
, &cp
, 10);
2349 args
= (char_u
*)cp
;
2350 coloncmd(":sign unplace %d buffer=%d",
2351 serNum
, buf
->bufp
->b_fnum
);
2352 redraw_buf_later(buf
->bufp
, NOT_VALID
);
2354 /* =====================================================================*/
2356 else if (streq((char *)cmd
, "moveAnnoToFront"))
2359 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n"));
2361 /* =====================================================================*/
2363 else if (streq((char *)cmd
, "guard") || streq((char *)cmd
, "unguard"))
2369 int un
= (cmd
[0] == 'u');
2370 static int guardId
= GUARDEDOFFSET
;
2372 if (skip
>= SKIP_STOP
)
2374 nbdebug((" Skipping %s command\n", (char *) cmd
));
2380 if (buf
== NULL
|| buf
->bufp
== NULL
)
2382 nbdebug((" invalid buffer identifier in %s command\n", cmd
));
2385 nb_set_curbuf(buf
->bufp
);
2387 off
= strtol(cp
, &cp
, 10);
2388 len
= strtol(cp
, NULL
, 10);
2389 args
= (char_u
*)cp
;
2390 pos
= off2pos(buf
->bufp
, off
);
2393 nbdebug((" no such start pos in %s, %ld\n", cmd
, off
));
2397 pos
= off2pos(buf
->bufp
, off
+ len
- 1);
2398 if (pos
!= NULL
&& pos
->col
== 0)
2401 * In Java Swing the offset is a position between 2
2402 * characters. If col == 0 then we really want the
2403 * previous line as the end.
2405 pos
= off2pos(buf
->bufp
, off
+ len
- 2);
2408 nbdebug((" no such end pos in %s, %ld\n",
2409 cmd
, off
+ len
- 1));
2414 /* set highlight for region */
2415 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un
) ? "UN" : "",
2416 first
.lnum
, first
.col
,
2417 last
.lnum
, last
.col
));
2419 for (lnum
= first
.lnum
; lnum
<= last
.lnum
; lnum
++)
2427 if (buf_findsigntype_id(buf
->bufp
, lnum
,
2431 ":sign place %d line=%ld name=%d buffer=%d",
2432 guardId
++, lnum
, GUARDED
,
2438 redraw_buf_later(buf
->bufp
, NOT_VALID
);
2441 /* =====================================================================*/
2443 else if (streq((char *)cmd
, "startAtomic"))
2446 /* =====================================================================*/
2448 else if (streq((char *)cmd
, "endAtomic"))
2456 /* =====================================================================*/
2458 else if (streq((char *)cmd
, "save"))
2461 * NOTE - This command is obsolete wrt NetBeans. Its left in
2462 * only for historical reasons.
2464 if (buf
== NULL
|| buf
->bufp
== NULL
)
2466 nbdebug((" invalid buffer identifier in %s command\n", cmd
));
2470 /* the following is taken from ex_cmds.c (do_wqall function) */
2471 if (bufIsChanged(buf
->bufp
))
2473 /* Only write if the buffer can be written. */
2475 && !buf
->bufp
->b_p_ro
2476 && buf
->bufp
->b_ffname
!= NULL
2477 #ifdef FEAT_QUICKFIX
2478 && !bt_dontwrite(buf
->bufp
)
2482 buf_write_all(buf
->bufp
, FALSE
);
2484 /* an autocommand may have deleted the buffer */
2485 if (!buf_valid(buf
->bufp
))
2492 nbdebug((" Buffer has no changes!\n"));
2494 /* =====================================================================*/
2496 else if (streq((char *)cmd
, "netbeansBuffer"))
2498 if (buf
== NULL
|| buf
->bufp
== NULL
)
2500 nbdebug((" invalid buffer identifier in %s command\n", cmd
));
2505 buf
->bufp
->b_netbeans_file
= TRUE
;
2506 buf
->bufp
->b_was_netbeans_file
= TRUE
;
2509 buf
->bufp
->b_netbeans_file
= FALSE
;
2510 /* =====================================================================*/
2512 else if (streq((char *)cmd
, "specialKeys"))
2515 /* =====================================================================*/
2517 else if (streq((char *)cmd
, "actionMenuItem"))
2520 /* =====================================================================*/
2522 else if (streq((char *)cmd
, "version"))
2528 nbdebug(("Unrecognised command: %s\n", cmd
));
2531 * Unrecognized command is ignored.
2534 if (inAtomic
&& doupdate
)
2541 * Is this needed? I moved the netbeans_Xt_connect() later during startup
2542 * and it may no longer be necessary. If its not needed then needupdate
2543 * and doupdate can also be removed.
2545 if (buf
!= NULL
&& buf
->initDone
&& doupdate
)
2547 update_screen(NOT_VALID
);
2550 gui_update_cursor(TRUE
, FALSE
);
2552 /* Quit a hit-return or more prompt. */
2553 if (State
== HITRETURN
|| State
== ASKMORE
)
2556 if (gtk_main_level() > 0)
2567 * If "buf" is not the current buffer try changing to a window that edits this
2568 * buffer. If there is no such window then close the current buffer and set
2569 * the current buffer as "buf".
2572 nb_set_curbuf(buf_T
*buf
)
2574 if (curbuf
!= buf
&& buf_jump_open_win(buf
) == NULL
)
2575 set_curbuf(buf
, DOBUF_GOTO
);
2579 * Process a vim colon command.
2582 coloncmd(char *cmd
, ...)
2588 vsprintf(buf
, cmd
, ap
);
2591 nbdebug((" COLONCMD %s\n", buf
));
2593 /* ALT_INPUT_LOCK_ON; */
2594 do_cmdline((char_u
*)buf
, NULL
, NULL
, DOCMD_NOWAIT
| DOCMD_KEYTYPED
);
2595 /* ALT_INPUT_LOCK_OFF; */
2597 setcursor(); /* restore the cursor position */
2598 out_flush(); /* make sure output has been written */
2600 gui_update_cursor(TRUE
, FALSE
);
2606 * Parse the specialKeys argument and issue the appropriate map commands.
2609 special_keys(char_u
*args
)
2611 char *save_str
= nb_unquote(args
, NULL
);
2612 char *tok
= strtok(save_str
, " ");
2621 if ((sep
= strchr(tok
, '-')) != NULL
)
2641 strcpy(&keybuf
[i
], tok
);
2642 vim_snprintf(cmdbuf
, sizeof(cmdbuf
),
2643 "<silent><%s> :nbkey %s<CR>", keybuf
, keybuf
);
2644 do_map(0, (char_u
*)cmdbuf
, NORMAL
, FALSE
);
2645 tok
= strtok(NULL
, " ");
2655 netbeans_keystring(0, (char *)eap
->arg
);
2660 * Initialize highlights and signs for use by netbeans (mostly obsolete)
2663 nb_init_graphics(void)
2665 static int did_init
= FALSE
;
2669 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black");
2670 coloncmd(":sign define %d linehl=NBGuarded", GUARDED
);
2677 * Convert key to netbeans name.
2680 netbeans_keyname(int key
, char *buf
)
2688 if (mod_mask
& MOD_MASK_CTRL
)
2690 if (mod_mask
& MOD_MASK_SHIFT
)
2692 if (mod_mask
& MOD_MASK_ALT
)
2698 case K_F1
: name
= "F1"; break;
2699 case K_S_F1
: name
= "F1"; shift
= 1; break;
2700 case K_F2
: name
= "F2"; break;
2701 case K_S_F2
: name
= "F2"; shift
= 1; break;
2702 case K_F3
: name
= "F3"; break;
2703 case K_S_F3
: name
= "F3"; shift
= 1; break;
2704 case K_F4
: name
= "F4"; break;
2705 case K_S_F4
: name
= "F4"; shift
= 1; break;
2706 case K_F5
: name
= "F5"; break;
2707 case K_S_F5
: name
= "F5"; shift
= 1; break;
2708 case K_F6
: name
= "F6"; break;
2709 case K_S_F6
: name
= "F6"; shift
= 1; break;
2710 case K_F7
: name
= "F7"; break;
2711 case K_S_F7
: name
= "F7"; shift
= 1; break;
2712 case K_F8
: name
= "F8"; break;
2713 case K_S_F8
: name
= "F8"; shift
= 1; break;
2714 case K_F9
: name
= "F9"; break;
2715 case K_S_F9
: name
= "F9"; shift
= 1; break;
2716 case K_F10
: name
= "F10"; break;
2717 case K_S_F10
: name
= "F10"; shift
= 1; break;
2718 case K_F11
: name
= "F11"; break;
2719 case K_S_F11
: name
= "F11"; shift
= 1; break;
2720 case K_F12
: name
= "F12"; break;
2721 case K_S_F12
: name
= "F12"; shift
= 1; break;
2723 if (key
>= ' ' && key
<= '~')
2725 /* Allow ASCII characters. */
2741 strcat(buf
, "M"); /* META */
2742 if (ctrl
|| shift
|| alt
)
2749 * Function to be called for balloon evaluation. Grabs the text under the
2750 * cursor and sends it to the debugger for evaluation. The debugger should
2751 * respond with a showBalloon command when there is a useful result.
2762 char buf
[MAXPATHL
* 2 + 25];
2765 /* Don't do anything when 'ballooneval' is off, messages scrolled the
2766 * windows up or we have no connection. */
2767 if (!p_beval
|| msg_scrolled
> 0 || !haveConnection
)
2770 if (get_beval_info(beval
, TRUE
, &wp
, &lnum
, &text
, &col
) == OK
)
2772 /* Send debugger request. Only when the text is of reasonable
2774 if (text
!= NULL
&& text
[0] != NUL
&& STRLEN(text
) < MAXPATHL
)
2779 vim_snprintf(buf
, sizeof(buf
),
2780 "0:balloonText=%d \"%s\"\n", r_cmdno
, p
);
2783 nbdebug(("EVT: %s", buf
));
2784 nb_send(buf
, "netbeans_beval_cb");
2792 * Tell netbeans that the window was opened, ready for commands.
2795 netbeans_startup_done(void)
2797 char *cmd
= "0:startupDone=0\n";
2800 #ifdef FEAT_GUI_MOTIF
2801 netbeans_Xt_connect(app_context
);
2803 # ifdef FEAT_GUI_GTK
2804 netbeans_gtk_connect();
2806 # ifdef FEAT_GUI_W32
2807 netbeans_w32_connect();
2812 if (!haveConnection
)
2816 bevalServers
|= BEVAL_NETBEANS
;
2819 nbdebug(("EVT: %s", cmd
));
2820 nb_send(cmd
, "netbeans_startup_done");
2824 * Tell netbeans that we're exiting. This should be called right
2825 * before calling exit.
2828 netbeans_send_disconnect()
2834 sprintf(buf
, "0:disconnect=%d\n", r_cmdno
);
2835 nbdebug(("EVT: %s", buf
));
2836 nb_send(buf
, "netbeans_disconnect");
2840 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_W32) || defined(PROTO)
2842 * Tell netbeans that the window was moved or resized.
2845 netbeans_frame_moved(int new_x
, int new_y
)
2849 if (!haveConnection
)
2852 sprintf(buf
, "0:geometry=%d %d %d %d %d\n",
2853 r_cmdno
, (int)Columns
, (int)Rows
, new_x
, new_y
);
2854 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */
2855 nb_send(buf
, "netbeans_frame_moved");
2860 * Tell netbeans the user opened or activated a file.
2863 netbeans_file_activated(buf_T
*bufp
)
2865 int bufno
= nb_getbufno(bufp
);
2866 nbbuf_T
*bp
= nb_get_buf(bufno
);
2867 char buffer
[2*MAXPATHL
];
2870 if (!haveConnection
|| dosetvisible
)
2873 q
= nb_quote(bufp
->b_ffname
);
2874 if (q
== NULL
|| bp
== NULL
)
2877 vim_snprintf(buffer
, sizeof(buffer
), "%d:fileOpened=%d \"%s\" %s %s\n",
2881 "T", /* open in NetBeans */
2882 "F"); /* modified */
2885 nbdebug(("EVT: %s", buffer
));
2887 nb_send(buffer
, "netbeans_file_opened");
2891 * Tell netbeans the user opened a file.
2894 netbeans_file_opened(buf_T
*bufp
)
2896 int bufno
= nb_getbufno(bufp
);
2897 char buffer
[2*MAXPATHL
];
2899 nbbuf_T
*bp
= nb_get_buf(nb_getbufno(bufp
));
2902 if (!haveConnection
)
2905 q
= nb_quote(bufp
->b_ffname
);
2913 vim_snprintf(buffer
, sizeof(buffer
), "%d:fileOpened=%d \"%s\" %s %s\n",
2917 "T", /* open in NetBeans */
2918 "F"); /* modified */
2921 nbdebug(("EVT: %s", buffer
));
2923 nb_send(buffer
, "netbeans_file_opened");
2924 if (p_acd
&& vim_chdirfile(bufp
->b_ffname
) == OK
)
2925 shorten_fnames(TRUE
);
2929 * Tell netbeans that a file was deleted or wiped out.
2932 netbeans_file_killed(buf_T
*bufp
)
2934 int bufno
= nb_getbufno(bufp
);
2935 nbbuf_T
*nbbuf
= nb_get_buf(bufno
);
2936 char buffer
[2*MAXPATHL
];
2938 if (!haveConnection
|| bufno
== -1)
2941 nbdebug(("netbeans_file_killed:\n"));
2942 nbdebug((" Killing bufno: %d", bufno
));
2944 sprintf(buffer
, "%d:killed=%d\n", bufno
, r_cmdno
);
2946 nbdebug(("EVT: %s", buffer
));
2948 nb_send(buffer
, "netbeans_file_killed");
2955 * Get a pointer to the Netbeans buffer for Vim buffer "bufp".
2956 * Return NULL if there is no such buffer or changes are not to be reported.
2957 * Otherwise store the buffer number in "*bufnop".
2960 nb_bufp2nbbuf_fire(buf_T
*bufp
, int *bufnop
)
2965 if (!haveConnection
|| !netbeansFireChanges
)
2966 return NULL
; /* changes are not reported at all */
2968 bufno
= nb_getbufno(bufp
);
2970 return NULL
; /* file is not known to NetBeans */
2972 nbbuf
= nb_get_buf(bufno
);
2973 if (nbbuf
!= NULL
&& !nbbuf
->fireChanges
)
2974 return NULL
; /* changes in this buffer are not reported */
2981 * Tell netbeans the user inserted some text.
2999 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3003 /* Don't mark as modified for initial read */
3004 if (nbbuf
->insertDone
)
3005 nbbuf
->modified
= 1;
3009 off
= pos2off(bufp
, &pos
);
3011 /* send the "insert" EVT */
3012 newtxt
= alloc(newlen
+ 1);
3013 vim_strncpy(newtxt
, txt
, newlen
);
3014 p
= nb_quote(newtxt
);
3017 buf
= alloc(128 + 2*newlen
);
3018 sprintf((char *)buf
, "%d:insert=%d %ld \"%s\"\n",
3019 bufno
, r_cmdno
, off
, p
);
3020 nbdebug(("EVT: %s", buf
));
3021 nb_send((char *)buf
, "netbeans_inserted");
3029 * Tell netbeans some bytes have been removed.
3044 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3050 nbdebug(("Negative len %ld in netbeans_removed()!\n", len
));
3054 nbbuf
->modified
= 1;
3059 off
= pos2off(bufp
, &pos
);
3061 sprintf((char *)buf
, "%d:remove=%d %ld %ld\n", bufno
, r_cmdno
, off
, len
);
3062 nbdebug(("EVT: %s", buf
));
3063 nb_send((char *)buf
, "netbeans_removed");
3067 * Send netbeans an unmodufied command.
3070 netbeans_unmodified(buf_T
*bufp UNUSED
)
3077 /* This has been disabled, because NetBeans considers a buffer modified
3078 * even when all changes have been undone. */
3079 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3083 nbbuf
->modified
= 0;
3085 sprintf((char *)buf
, "%d:unmodified=%d\n", bufno
, r_cmdno
);
3086 nbdebug(("EVT: %s", buf
));
3087 nb_send((char *)buf
, "netbeans_unmodified");
3092 * Send a button release event back to netbeans. Its up to netbeans
3093 * to decide what to do (if anything) with this event.
3096 netbeans_button_release(int button
)
3101 bufno
= nb_getbufno(curbuf
);
3103 if (bufno
>= 0 && curwin
!= NULL
&& curwin
->w_buffer
== curbuf
)
3105 int col
= mouse_col
- W_WINCOL(curwin
) - (curwin
->w_p_nu
? 9 : 1);
3106 long off
= pos2off(curbuf
, &curwin
->w_cursor
);
3108 /* sync the cursor position */
3109 sprintf(buf
, "%d:newDotAndMark=%d %ld %ld\n", bufno
, r_cmdno
, off
, off
);
3110 nbdebug(("EVT: %s", buf
));
3111 nb_send(buf
, "netbeans_button_release[newDotAndMark]");
3113 sprintf(buf
, "%d:buttonRelease=%d %d %ld %d\n", bufno
, r_cmdno
,
3114 button
, (long)curwin
->w_cursor
.lnum
, col
);
3115 nbdebug(("EVT: %s", buf
));
3116 nb_send(buf
, "netbeans_button_release");
3122 * Send a keypress event back to netbeans. This usually simulates some
3123 * kind of function key press. This function operates on a key code.
3126 netbeans_keycommand(int key
)
3130 netbeans_keyname(key
, keyName
);
3131 netbeans_keystring(key
, keyName
);
3136 * Send a keypress event back to netbeans. This usually simulates some
3137 * kind of function key press. This function operates on a key string.
3140 netbeans_keystring(int key
, char *keyName
)
3142 char buf
[2*MAXPATHL
];
3143 int bufno
= nb_getbufno(curbuf
);
3147 if (!haveConnection
)
3153 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n"));
3154 q
= curbuf
->b_ffname
== NULL
? (char_u
*)""
3155 : nb_quote(curbuf
->b_ffname
);
3158 vim_snprintf(buf
, sizeof(buf
), "0:fileOpened=%d \"%s\" %s %s\n", 0,
3160 "T", /* open in NetBeans */
3161 "F"); /* modified */
3162 if (curbuf
->b_ffname
!= NULL
)
3164 nbdebug(("EVT: %s", buf
));
3165 nb_send(buf
, "netbeans_keycommand");
3168 postpone_keycommand(key
);
3172 /* sync the cursor position */
3173 off
= pos2off(curbuf
, &curwin
->w_cursor
);
3174 sprintf(buf
, "%d:newDotAndMark=%d %ld %ld\n", bufno
, r_cmdno
, off
, off
);
3175 nbdebug(("EVT: %s", buf
));
3176 nb_send(buf
, "netbeans_keycommand");
3178 /* To work on Win32 you must apply patch to ExtEditor module
3179 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler
3183 /* now send keyCommand event */
3184 vim_snprintf(buf
, sizeof(buf
), "%d:keyCommand=%d \"%s\"\n",
3185 bufno
, r_cmdno
, keyName
);
3186 nbdebug(("EVT: %s", buf
));
3187 nb_send(buf
, "netbeans_keycommand");
3189 /* New: do both at once and include the lnum/col. */
3190 vim_snprintf(buf
, sizeof(buf
), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n",
3191 bufno
, r_cmdno
, keyName
,
3192 off
, (long)curwin
->w_cursor
.lnum
, (long)curwin
->w_cursor
.col
);
3193 nbdebug(("EVT: %s", buf
));
3194 nb_send(buf
, "netbeans_keycommand");
3199 * Send a save event to netbeans.
3202 netbeans_save_buffer(buf_T
*bufp
)
3208 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3212 nbbuf
->modified
= 0;
3214 sprintf((char *)buf
, "%d:save=%d\n", bufno
, r_cmdno
);
3215 nbdebug(("EVT: %s", buf
));
3216 nb_send((char *)buf
, "netbeans_save_buffer");
3221 * Send remove command to netbeans (this command has been turned off).
3224 netbeans_deleted_all_lines(buf_T
*bufp
)
3230 nbbuf
= nb_bufp2nbbuf_fire(bufp
, &bufno
);
3234 /* Don't mark as modified for initial read */
3235 if (nbbuf
->insertDone
)
3236 nbbuf
->modified
= 1;
3238 sprintf((char *)buf
, "%d:remove=%d 0 -1\n", bufno
, r_cmdno
);
3239 nbdebug(("EVT(suppressed): %s", buf
));
3240 /* nb_send(buf, "netbeans_deleted_all_lines"); */
3245 * See if the lines are guarded. The top and bot parameters are from
3246 * u_savecommon(), these are the line above the change and the line below the
3250 netbeans_is_guarded(linenr_T top
, linenr_T bot
)
3255 for (p
= curbuf
->b_signlist
; p
!= NULL
; p
= p
->next
)
3256 if (p
->id
>= GUARDEDOFFSET
)
3257 for (lnum
= top
+ 1; lnum
< bot
; lnum
++)
3258 if (lnum
== p
->lnum
)
3264 #if defined(FEAT_GUI_MOTIF) || defined(PROTO)
3266 * We have multiple signs to draw at the same location. Draw the
3267 * multi-sign indicator instead. This is the Motif version.
3270 netbeans_draw_multisign_indicator(int row
)
3277 y
= row
* gui
.char_height
+ 2;
3279 for (i
= 0; i
< gui
.char_height
- 3; i
++)
3280 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+2, y
++);
3282 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+0, y
);
3283 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+2, y
);
3284 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+4, y
++);
3285 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+1, y
);
3286 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+2, y
);
3287 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+3, y
++);
3288 XDrawPoint(gui
.dpy
, gui
.wid
, gui
.text_gc
, x
+2, y
);
3290 #endif /* FEAT_GUI_MOTIF */
3294 * We have multiple signs to draw at the same location. Draw the
3295 * multi-sign indicator instead. This is the GTK/Gnome version.
3298 netbeans_draw_multisign_indicator(int row
)
3303 GdkDrawable
*drawable
= gui
.drawarea
->window
;
3306 y
= row
* gui
.char_height
+ 2;
3308 for (i
= 0; i
< gui
.char_height
- 3; i
++)
3309 gdk_draw_point(drawable
, gui
.text_gc
, x
+2, y
++);
3311 gdk_draw_point(drawable
, gui
.text_gc
, x
+0, y
);
3312 gdk_draw_point(drawable
, gui
.text_gc
, x
+2, y
);
3313 gdk_draw_point(drawable
, gui
.text_gc
, x
+4, y
++);
3314 gdk_draw_point(drawable
, gui
.text_gc
, x
+1, y
);
3315 gdk_draw_point(drawable
, gui
.text_gc
, x
+2, y
);
3316 gdk_draw_point(drawable
, gui
.text_gc
, x
+3, y
++);
3317 gdk_draw_point(drawable
, gui
.text_gc
, x
+2, y
);
3319 #endif /* FEAT_GUI_GTK */
3322 * If the mouse is clicked in the gutter of a line with multiple
3323 * annotations, cycle through the set of signs.
3326 netbeans_gutter_click(linenr_T lnum
)
3330 for (p
= curbuf
->b_signlist
; p
!= NULL
; p
= p
->next
)
3332 if (p
->lnum
== lnum
&& p
->next
&& p
->next
->lnum
== lnum
)
3336 /* remove "p" from list, reinsert it at the tail of the sublist */
3338 p
->prev
->next
= p
->next
;
3340 curbuf
->b_signlist
= p
->next
;
3341 p
->next
->prev
= p
->prev
;
3342 /* now find end of sublist and insert p */
3343 for (tail
= p
->next
;
3344 tail
->next
&& tail
->next
->lnum
== lnum
3345 && tail
->next
->id
< GUARDEDOFFSET
;
3348 /* tail now points to last entry with same lnum (except
3349 * that "guarded" annotations are always last) */
3350 p
->next
= tail
->next
;
3352 tail
->next
->prev
= p
;
3355 update_debug_sign(curbuf
, lnum
);
3363 * Add a sign of the reqested type at the requested location.
3365 * Reverse engineering:
3366 * Apparently an annotation is defined the first time it is used in a buffer.
3367 * When the same annotation is used in two buffers, the second time we do not
3368 * need to define a new sign name but reuse the existing one. But since the
3369 * ID number used in the second buffer starts counting at one again, a mapping
3370 * is made from the ID specifically for the buffer to the global sign name
3371 * (which is a number).
3373 * globalsignmap[] stores the signs that have been defined globally.
3374 * buf->signmapused[] maps buffer-local annotation IDs to an index in
3382 char_u
*tooltip UNUSED
,
3393 for (i
= 0; i
< globalsignmapused
; i
++)
3394 if (STRCMP(typeName
, globalsignmap
[i
]) == 0)
3397 if (i
== globalsignmapused
) /* not found; add it to global map */
3399 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%d,%d)\n",
3400 typeNum
, typeName
, tooltip
, glyphFile
, fg
, bg
));
3401 if (use_fg
|| use_bg
)
3403 sprintf(fgbuf
, "guifg=#%06x", fg
& 0xFFFFFF);
3404 sprintf(bgbuf
, "guibg=#%06x", bg
& 0xFFFFFF);
3406 coloncmd(":highlight NB_%s %s %s", typeName
, (use_fg
) ? fgbuf
: "",
3407 (use_bg
) ? bgbuf
: "");
3408 if (*glyphFile
== NUL
)
3409 /* no glyph, line highlighting only */
3410 coloncmd(":sign define %d linehl=NB_%s", i
+ 1, typeName
);
3411 else if (vim_strsize(glyphFile
) <= 2)
3412 /* one- or two-character glyph name, use as text glyph with
3414 coloncmd(":sign define %d text=%s texthl=NB_%s", i
+ 1,
3415 glyphFile
, typeName
);
3417 /* glyph, line highlighting */
3418 coloncmd(":sign define %d icon=%s linehl=NB_%s", i
+ 1,
3419 glyphFile
, typeName
);
3422 /* glyph, no line highlighting */
3423 coloncmd(":sign define %d icon=%s", i
+ 1, glyphFile
);
3425 if (STRCMP(typeName
,"CurrentPC") == 0)
3426 curPCtype
= typeNum
;
3428 if (globalsignmapused
== globalsignmaplen
)
3430 if (globalsignmaplen
== 0) /* first allocation */
3432 globalsignmaplen
= 20;
3433 globalsignmap
= (char **)alloc_clear(globalsignmaplen
*sizeof(char *));
3438 int oldlen
= globalsignmaplen
;
3440 globalsignmaplen
*= 2;
3441 incr
= globalsignmaplen
- oldlen
;
3442 globalsignmap
= (char **)vim_realloc(globalsignmap
,
3443 globalsignmaplen
* sizeof(char *));
3444 memset(globalsignmap
+ oldlen
, 0, incr
* sizeof(char *));
3448 globalsignmap
[i
] = (char *)typeName
;
3449 globalsignmapused
= i
+ 1;
3452 /* check local map; should *not* be found! */
3453 for (j
= 0; j
< buf
->signmapused
; j
++)
3454 if (buf
->signmap
[j
] == i
+ 1)
3457 /* add to local map */
3458 if (buf
->signmapused
== buf
->signmaplen
)
3460 if (buf
->signmaplen
== 0) /* first allocation */
3462 buf
->signmaplen
= 5;
3463 buf
->signmap
= (int *)alloc_clear(buf
->signmaplen
* sizeof(int *));
3468 int oldlen
= buf
->signmaplen
;
3469 buf
->signmaplen
*= 2;
3470 incr
= buf
->signmaplen
- oldlen
;
3471 buf
->signmap
= (int *)vim_realloc(buf
->signmap
,
3472 buf
->signmaplen
*sizeof(int *));
3473 memset(buf
->signmap
+ oldlen
, 0, incr
* sizeof(int *));
3477 buf
->signmap
[buf
->signmapused
++] = i
+ 1;
3483 * See if we have the requested sign type in the buffer.
3486 mapsigntype(nbbuf_T
*buf
, int localsigntype
)
3488 if (--localsigntype
>= 0 && localsigntype
< buf
->signmapused
)
3489 return buf
->signmap
[localsigntype
];
3496 * Compute length of buffer, don't print anything.
3499 get_buf_size(buf_T
*bufp
)
3502 long char_count
= 0;
3504 long last_check
= 100000L;
3506 if (bufp
->b_ml
.ml_flags
& ML_EMPTY
)
3510 if (get_fileformat(bufp
) == EOL_DOS
)
3514 for (lnum
= 1; lnum
<= bufp
->b_ml
.ml_line_count
; ++lnum
)
3516 char_count
+= (long)STRLEN(ml_get(lnum
)) + eol_size
;
3517 /* Check for a CTRL-C every 100000 characters */
3518 if (char_count
> last_check
)
3523 last_check
= char_count
+ 100000L;
3526 /* Correction for when last line doesn't have an EOL. */
3527 if (!bufp
->b_p_eol
&& bufp
->b_p_bin
)
3528 char_count
-= eol_size
;
3535 * Convert character offset to lnum,col
3538 off2pos(buf_T
*buf
, long offset
)
3545 #ifdef FEAT_VIRTUALEDIT
3549 if (!(buf
->b_ml
.ml_flags
& ML_EMPTY
))
3551 if ((lnum
= ml_find_line_or_offset(buf
, (linenr_T
)0, &offset
)) < 0)
3561 * Convert an argument in the form "1234" to an offset and compute the
3562 * lnum/col from it. Convert an argument in the form "123/12" directly to a
3564 * "argp" is advanced to after the argument.
3565 * Return a pointer to the position, NULL if something is wrong.
3568 get_off_or_lnum(buf_T
*buf
, char_u
**argp
)
3573 off
= strtol((char *)*argp
, (char **)argp
, 10);
3576 mypos
.lnum
= (linenr_T
)off
;
3578 mypos
.col
= strtol((char *)*argp
, (char **)argp
, 10);
3579 #ifdef FEAT_VIRTUALEDIT
3584 return off2pos(buf
, off
);
3589 * Convert (lnum,col) to byte offset in the file.
3592 pos2off(buf_T
*buf
, pos_T
*pos
)
3596 if (!(buf
->b_ml
.ml_flags
& ML_EMPTY
))
3598 if ((offset
= ml_find_line_or_offset(buf
, pos
->lnum
, 0)) < 0)
3608 * This message is printed after NetBeans opens a new file. Its
3609 * similar to the message readfile() uses, but since NetBeans
3610 * doesn't normally call readfile, we do our own.
3616 int lnum
= buf
->bufp
->b_ml
.ml_line_count
;
3617 long nchars
= (long)buf
->bufp
->b_orig_size
;
3620 msg_add_fname(buf
->bufp
, buf
->bufp
->b_ffname
);
3623 if (buf
->bufp
->b_p_ro
)
3625 STRCAT(IObuff
, shortmess(SHM_RO
) ? _("[RO]") : _("[readonly]"));
3628 if (!buf
->bufp
->b_start_eol
)
3630 STRCAT(IObuff
, shortmess(SHM_LAST
) ? _("[noeol]") : _("[Incomplete last line]"));
3633 msg_add_lines(c
, (long)lnum
, nchars
);
3635 /* Now display it */
3638 msg_scrolled_ign
= TRUE
;
3639 msg_trunc_attr(IObuff
, FALSE
, 0);
3640 msg_scrolled_ign
= FALSE
;
3645 * Print a message after NetBeans writes the file. This message should be identical
3646 * to the standard message a non-netbeans user would see when writing a file.
3649 print_save_msg(buf
, nchars
)
3658 msg_add_fname(buf
->bufp
, buf
->bufp
->b_ffname
); /* fname in IObuff with quotes */
3661 msg_add_lines(c
, buf
->bufp
->b_ml
.ml_line_count
,
3662 (long)buf
->bufp
->b_orig_size
);
3666 msg_scrolled_ign
= TRUE
;
3667 p
= msg_trunc_attr(IObuff
, FALSE
, 0);
3668 if ((msg_scrolled
&& !need_wait_return
) || !buf
->initDone
)
3670 /* Need to repeat the message after redrawing when:
3671 * - When reading from stdin (the screen will be cleared next).
3672 * - When restart_edit is set (otherwise there will be a delay
3673 * before redrawing).
3674 * - When the screen was scrolled but there is no wait-return
3678 msg_scrolled_ign
= FALSE
;
3679 /* add_to_input_buf((char_u *)"\f", 1); */
3683 char_u ebuf
[BUFSIZ
];
3685 STRCPY(ebuf
, (char_u
*)_("E505: "));
3686 STRCAT(ebuf
, IObuff
);
3687 STRCAT(ebuf
, (char_u
*)_("is read-only (add ! to override)"));
3688 STRCPY(IObuff
, ebuf
);
3689 nbdebug((" %s\n", ebuf
));
3694 #endif /* defined(FEAT_NETBEANS_INTG) */