Mercurial > vim
annotate src/netbeans.c @ 9249:1df574290be4
Added tag v7.4.1907 for changeset 9c751c33dc0f0f669a63e0348d3bd903f8cca281
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 07 Jun 2016 23:00:07 +0200 |
parents | 6ee88fa405b3 |
children | d82724272c61 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * Netbeans integration by David Weatherford | |
5 * Adopted for Win32 by Sergey Khorev | |
6 * | |
7 * Do ":help uganda" in Vim to read copying and usage conditions. | |
8 * Do ":help credits" in Vim to see a list of people who contributed. | |
9 */ | |
10 | |
11 /* | |
12 * Implements client side of org.netbeans.modules.emacs editor | |
13 * integration protocol. Be careful! The protocol uses offsets | |
14 * which are *between* characters, whereas vim uses line number | |
15 * and column number which are *on* characters. | |
16 * See ":help netbeans-protocol" for explanation. | |
3151 | 17 * |
18 * The Netbeans messages are received and queued in the gui event loop, or in | |
19 * the select loop when Vim runs in a terminal. These messages are processed | |
20 * by netbeans_parse_messages() which is invoked in the idle loop when Vim is | |
21 * waiting for user input. The function netbeans_parse_messages() is also | |
22 * called from the ":sleep" command, to allow the execution of test cases that | |
23 * may not invoke the idle loop. | |
7 | 24 */ |
25 | |
26 #include "vim.h" | |
27 | |
28 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO) | |
29 | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
30 #ifndef WIN32 |
7753
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
31 # include <netdb.h> |
7 | 32 # ifdef HAVE_LIBGEN_H |
33 # include <libgen.h> | |
34 # endif | |
35 #endif | |
36 | |
37 #include "version.h" | |
38 | |
39 #define GUARDED 10000 /* typenr for "guarded" annotation */ | |
40 #define GUARDEDOFFSET 1000000 /* base for "guarded" sign id's */ | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
41 #define MAX_COLOR_LENGTH 32 /* max length of color name in defineAnnoType */ |
7 | 42 |
43 /* The first implementation (working only with Netbeans) returned "1.1". The | |
44 * protocol implemented here also supports A-A-P. */ | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
45 static char *ExtEdProtocolVersion = "2.5"; |
7 | 46 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
47 static long pos2off(buf_T *, pos_T *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
48 static pos_T *off2pos(buf_T *, long); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
49 static pos_T *get_off_or_lnum(buf_T *buf, char_u **argp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
50 static long get_buf_size(buf_T *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
51 static int netbeans_keystring(char_u *keystr); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
52 static void postpone_keycommand(char_u *keystr); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
53 static void special_keys(char_u *args); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
54 |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
55 static int netbeans_connect(char *, int); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
56 static int getConnInfo(char *file, char **host, char **port, char **password); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
57 |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
58 static void nb_init_graphics(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
59 static void coloncmd(char *cmd, ...); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
60 static void nb_set_curbuf(buf_T *buf); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
61 static void nb_parse_cmd(char_u *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
62 static int nb_do_cmd(int, char_u *, int, int, char_u *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
63 static void nb_send(char *buf, char *fun); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
64 static void nb_free(void); |
7 | 65 |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
66 #define NETBEANS_OPEN (channel_can_write_to(nb_channel)) |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
67 static channel_T *nb_channel = NULL; |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
68 |
944 | 69 static int r_cmdno; /* current command number for reply */ |
33 | 70 static int dosetvisible = FALSE; |
71 | |
7 | 72 /* |
73 * Include the debugging code if wanted. | |
74 */ | |
75 #ifdef NBDEBUG | |
76 # include "nbdebug.c" | |
77 #endif | |
78 | |
2210 | 79 static int needupdate = 0; |
80 static int inAtomic = 0; | |
7 | 81 |
2639 | 82 /* |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
83 * Callback invoked when the channel is closed. |
2639 | 84 */ |
7 | 85 static void |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
86 nb_channel_closed(void) |
7 | 87 { |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
88 nb_channel = NULL; |
2639 | 89 } |
90 | |
91 /* | |
92 * Close the connection and cleanup. | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
93 * May be called when the socket was closed earlier. |
2639 | 94 */ |
95 static void | |
96 netbeans_close(void) | |
97 { | |
98 if (NETBEANS_OPEN) | |
99 { | |
100 netbeans_send_disconnect(); | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
101 if (nb_channel != NULL) |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
102 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
103 /* Close the socket and remove the input handlers. */ |
8240
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
104 channel_close(nb_channel, TRUE); |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
105 channel_clear(nb_channel); |
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
106 } |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
107 nb_channel = NULL; |
2639 | 108 } |
109 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
110 #ifdef FEAT_BEVAL |
183 | 111 bevalServers &= ~BEVAL_NETBEANS; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
112 #endif |
2210 | 113 |
114 needupdate = 0; | |
115 inAtomic = 0; | |
116 nb_free(); | |
117 | |
118 /* remove all signs and update the screen after gutter removal */ | |
119 coloncmd(":sign unplace *"); | |
120 changed_window_setting(); | |
121 update_screen(CLEAR); | |
122 setcursor(); | |
2745 | 123 cursor_on(); |
2210 | 124 out_flush(); |
125 #ifdef FEAT_GUI | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
126 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
127 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
128 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
129 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
130 } |
2210 | 131 #endif |
7 | 132 } |
133 | |
134 #define NB_DEF_HOST "localhost" | |
135 #define NB_DEF_ADDR "3219" | |
136 #define NB_DEF_PASS "changeme" | |
137 | |
2210 | 138 static int |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
139 netbeans_connect(char *params, int doabort) |
7 | 140 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
141 int port; |
7 | 142 char buf[32]; |
143 char *hostname = NULL; | |
144 char *address = NULL; | |
145 char *password = NULL; | |
146 char *fname; | |
147 char *arg = NULL; | |
148 | |
2210 | 149 if (*params == '=') |
7 | 150 { |
2210 | 151 /* "=fname": Read info from specified file. */ |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
152 if (getConnInfo(params + 1, &hostname, &address, &password) == FAIL) |
2210 | 153 return FAIL; |
7 | 154 } |
155 else | |
156 { | |
2210 | 157 if (*params == ':') |
158 /* ":<host>:<addr>:<password>": get info from argument */ | |
159 arg = params + 1; | |
7 | 160 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL) |
161 { | |
2210 | 162 /* "": get info from file specified in environment */ |
7 | 163 if (getConnInfo(fname, &hostname, &address, &password) == FAIL) |
2210 | 164 return FAIL; |
7 | 165 } |
166 else | |
167 { | |
168 if (arg != NULL) | |
169 { | |
2210 | 170 /* ":<host>:<addr>:<password>": get info from argument */ |
7 | 171 hostname = arg; |
172 address = strchr(hostname, ':'); | |
173 if (address != NULL) | |
174 { | |
175 *address++ = '\0'; | |
176 password = strchr(address, ':'); | |
177 if (password != NULL) | |
178 *password++ = '\0'; | |
179 } | |
180 } | |
181 | |
182 /* Get the missing values from the environment. */ | |
183 if (hostname == NULL || *hostname == '\0') | |
184 hostname = getenv("__NETBEANS_HOST"); | |
185 if (address == NULL) | |
186 address = getenv("__NETBEANS_SOCKET"); | |
187 if (password == NULL) | |
188 password = getenv("__NETBEANS_VIM_PASSWORD"); | |
189 | |
190 /* Move values to allocated memory. */ | |
191 if (hostname != NULL) | |
192 hostname = (char *)vim_strsave((char_u *)hostname); | |
193 if (address != NULL) | |
194 address = (char *)vim_strsave((char_u *)address); | |
195 if (password != NULL) | |
196 password = (char *)vim_strsave((char_u *)password); | |
197 } | |
198 } | |
199 | |
200 /* Use the default when a value is missing. */ | |
201 if (hostname == NULL || *hostname == '\0') | |
202 { | |
203 vim_free(hostname); | |
204 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST); | |
205 } | |
206 if (address == NULL || *address == '\0') | |
207 { | |
208 vim_free(address); | |
209 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR); | |
210 } | |
211 if (password == NULL || *password == '\0') | |
212 { | |
213 vim_free(password); | |
214 password = (char *)vim_strsave((char_u *)NB_DEF_PASS); | |
215 } | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
216 if (hostname != NULL && address != NULL && password != NULL) |
7 | 217 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
218 port = atoi(address); |
8114
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
219 nb_channel = channel_open(hostname, port, 3000, nb_channel_closed); |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
220 if (nb_channel != NULL) |
7 | 221 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
222 /* success */ |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
223 # ifdef FEAT_BEVAL |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
224 bevalServers |= BEVAL_NETBEANS; |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
225 # endif |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
226 |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
227 /* success, login */ |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
228 vim_snprintf(buf, sizeof(buf), "AUTH %s\n", password); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
229 nb_send(buf, "netbeans_connect"); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
230 |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
231 sprintf(buf, "0:version=0 \"%s\"\n", ExtEdProtocolVersion); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
232 nb_send(buf, "externaleditor_version"); |
7 | 233 } |
234 } | |
235 | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
236 if (nb_channel == NULL && doabort) |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
237 getout(1); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
238 |
7 | 239 vim_free(hostname); |
240 vim_free(address); | |
241 vim_free(password); | |
2210 | 242 return NETBEANS_OPEN ? OK : FAIL; |
7 | 243 } |
244 | |
245 /* | |
246 * Obtain the NetBeans hostname, port address and password from a file. | |
247 * Return the strings in allocated memory. | |
248 * Return FAIL if the file could not be read, OK otherwise (no matter what it | |
249 * contains). | |
250 */ | |
251 static int | |
252 getConnInfo(char *file, char **host, char **port, char **auth) | |
253 { | |
254 FILE *fp; | |
255 char_u buf[BUFSIZ]; | |
256 char_u *lp; | |
3265 | 257 char_u *nlp; |
7 | 258 #ifdef UNIX |
259 struct stat st; | |
260 | |
261 /* | |
262 * For Unix only accept the file when it's not accessible by others. | |
263 * The open will then fail if we don't own the file. | |
264 */ | |
265 if (mch_stat(file, &st) == 0 && (st.st_mode & 0077) != 0) | |
266 { | |
1618 | 267 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n", |
268 file)); | |
7 | 269 EMSG2(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""), |
270 file); | |
271 return FAIL; | |
272 } | |
273 #endif | |
274 | |
275 fp = mch_fopen(file, "r"); | |
276 if (fp == NULL) | |
277 { | |
1618 | 278 nbdebug(("Cannot open NetBeans connection info file\n")); |
7 | 279 PERROR("E660: Cannot open NetBeans connection info file"); |
280 return FAIL; | |
281 } | |
282 | |
283 /* Read the file. There should be one of each parameter */ | |
284 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL) | |
285 { | |
3265 | 286 if ((nlp = vim_strchr(lp, '\n')) != NULL) |
287 *nlp = 0; /* strip off the trailing newline */ | |
7 | 288 |
289 if (STRNCMP(lp, "host=", 5) == 0) | |
290 { | |
291 vim_free(*host); | |
292 *host = (char *)vim_strsave(&buf[5]); | |
293 } | |
294 else if (STRNCMP(lp, "port=", 5) == 0) | |
295 { | |
296 vim_free(*port); | |
297 *port = (char *)vim_strsave(&buf[5]); | |
298 } | |
299 else if (STRNCMP(lp, "auth=", 5) == 0) | |
300 { | |
301 vim_free(*auth); | |
302 *auth = (char *)vim_strsave(&buf[5]); | |
303 } | |
304 } | |
305 fclose(fp); | |
306 | |
307 return OK; | |
308 } | |
309 | |
310 | |
311 struct keyqueue | |
312 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
313 char_u *keystr; |
7 | 314 struct keyqueue *next; |
315 struct keyqueue *prev; | |
316 }; | |
317 | |
318 typedef struct keyqueue keyQ_T; | |
319 | |
320 static keyQ_T keyHead; /* dummy node, header for circular queue */ | |
321 | |
322 | |
323 /* | |
324 * Queue up key commands sent from netbeans. | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
325 * We store the string, because it may depend on the global mod_mask and |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
326 * :nbkey doesn't have a key number. |
7 | 327 */ |
328 static void | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
329 postpone_keycommand(char_u *keystr) |
7 | 330 { |
331 keyQ_T *node; | |
332 | |
333 node = (keyQ_T *)alloc(sizeof(keyQ_T)); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
334 if (node == NULL) |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
335 return; /* out of memory, drop the key */ |
7 | 336 |
337 if (keyHead.next == NULL) /* initialize circular queue */ | |
338 { | |
339 keyHead.next = &keyHead; | |
340 keyHead.prev = &keyHead; | |
341 } | |
342 | |
343 /* insert node at tail of queue */ | |
344 node->next = &keyHead; | |
345 node->prev = keyHead.prev; | |
346 keyHead.prev->next = node; | |
347 keyHead.prev = node; | |
348 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
349 node->keystr = vim_strsave(keystr); |
7 | 350 } |
351 | |
352 /* | |
353 * Handle any queued-up NetBeans keycommands to be send. | |
354 */ | |
355 static void | |
356 handle_key_queue(void) | |
357 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
358 int postponed = FALSE; |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
359 |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
360 while (!postponed && keyHead.next && keyHead.next != &keyHead) |
7 | 361 { |
362 /* first, unlink the node */ | |
363 keyQ_T *node = keyHead.next; | |
364 keyHead.next = node->next; | |
365 node->next->prev = node->prev; | |
366 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
367 /* Now, send the keycommand. This may cause it to be postponed again |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
368 * and change keyHead. */ |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
369 if (node->keystr != NULL) |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
370 postponed = !netbeans_keystring(node->keystr); |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
371 vim_free(node->keystr); |
7 | 372 |
373 /* Finally, dispose of the node */ | |
374 vim_free(node); | |
375 } | |
376 } | |
377 | |
378 | |
379 /* | |
380 * While there's still a command in the work queue, parse and execute it. | |
381 */ | |
1618 | 382 void |
383 netbeans_parse_messages(void) | |
7 | 384 { |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
385 readq_T *node; |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
386 char_u *buffer; |
7 | 387 char_u *p; |
2653 | 388 int own_node; |
7 | 389 |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
390 while (nb_channel != NULL) |
7 | 391 { |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
392 node = channel_peek(nb_channel, PART_SOCK); |
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
393 if (node == NULL) |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
394 break; /* nothing to read */ |
7 | 395 |
396 /* Locate the first line in the first buffer. */ | |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
397 p = channel_first_nl(node); |
7 | 398 if (p == NULL) |
399 { | |
400 /* Command isn't complete. If there is no following buffer, | |
401 * return (wait for more). If there is another buffer following, | |
402 * prepend the text to that buffer and delete this one. */ | |
9215
d2d44592467d
commit https://github.com/vim/vim/commit/9ed96efb3d47d46e9637da04656efff715102407
Christian Brabandt <cb@256bit.org>
parents:
9052
diff
changeset
|
403 if (channel_collapse(nb_channel, PART_SOCK, TRUE) == FAIL) |
7 | 404 return; |
405 } | |
406 else | |
407 { | |
408 /* There is a complete command at the start of the buffer. | |
409 * Terminate it with a NUL. When no more text is following unlink | |
410 * the buffer. Do this before executing, because new buffers can | |
411 * be added while busy handling the command. */ | |
412 *p++ = NUL; | |
413 if (*p == NUL) | |
414 { | |
2653 | 415 own_node = TRUE; |
8151
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
416 channel_get(nb_channel, PART_SOCK); |
7 | 417 } |
2653 | 418 else |
419 own_node = FALSE; | |
7 | 420 |
421 /* now, parse and execute the commands */ | |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
422 nb_parse_cmd(node->rq_buffer); |
7 | 423 |
2653 | 424 if (own_node) |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
425 /* buffer finished, dispose of it */ |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
426 vim_free(node->rq_buffer); |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
427 else |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
428 /* more follows, move it to the start */ |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
429 channel_consume(nb_channel, PART_SOCK, (int)(p - buffer)); |
7 | 430 } |
431 } | |
432 } | |
433 | |
434 /* | |
435 * Handle one NUL terminated command. | |
436 * | |
437 * format of a command from netbeans: | |
438 * | |
439 * 6:setTitle!84 "a.c" | |
440 * | |
441 * bufno | |
442 * colon | |
443 * cmd | |
444 * ! | |
445 * cmdno | |
446 * args | |
447 * | |
448 * for function calls, the ! is replaced by a / | |
449 */ | |
450 static void | |
451 nb_parse_cmd(char_u *cmd) | |
452 { | |
27 | 453 char *verb; |
454 char *q; | |
7 | 455 int bufno; |
456 int isfunc = -1; | |
457 | |
458 if (STRCMP(cmd, "DISCONNECT") == 0) | |
459 { | |
460 /* We assume the server knows that we can safely exit! */ | |
461 /* Disconnect before exiting, Motif hangs in a Select error | |
462 * message otherwise. */ | |
2210 | 463 netbeans_close(); |
7 | 464 getout(0); |
465 /* NOTREACHED */ | |
466 } | |
467 | |
8204
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
468 if (STRCMP(cmd, "DETACH") == 0) |
7 | 469 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
470 buf_T *buf; |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
471 |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
472 for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
473 buf->b_has_sign_column = FALSE; |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
474 |
7 | 475 /* The IDE is breaking the connection. */ |
2210 | 476 netbeans_close(); |
7 | 477 return; |
478 } | |
479 | |
27 | 480 bufno = strtol((char *)cmd, &verb, 10); |
7 | 481 |
482 if (*verb != ':') | |
483 { | |
1618 | 484 nbdebug((" missing colon: %s\n", cmd)); |
7 | 485 EMSG2("E627: missing colon: %s", cmd); |
486 return; | |
487 } | |
488 ++verb; /* skip colon */ | |
489 | |
490 for (q = verb; *q; q++) | |
491 { | |
492 if (*q == '!') | |
493 { | |
494 *q++ = NUL; | |
495 isfunc = 0; | |
496 break; | |
497 } | |
498 else if (*q == '/') | |
499 { | |
500 *q++ = NUL; | |
501 isfunc = 1; | |
502 break; | |
503 } | |
504 } | |
505 | |
506 if (isfunc < 0) | |
507 { | |
1618 | 508 nbdebug((" missing ! or / in: %s\n", cmd)); |
7 | 509 EMSG2("E628: missing ! or / in: %s", cmd); |
510 return; | |
511 } | |
512 | |
944 | 513 r_cmdno = strtol(q, &q, 10); |
27 | 514 |
515 q = (char *)skipwhite((char_u *)q); | |
516 | |
944 | 517 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL) |
7 | 518 { |
33 | 519 #ifdef NBDEBUG |
520 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
521 * This happens because the ExtEd can send a command or 2 after |
33 | 522 * doing a stopDocumentListen command. It doesn't harm anything |
523 * so I'm disabling it except for debugging. | |
524 */ | |
7 | 525 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd)); |
526 EMSG("E629: bad return from nb_do_cmd"); | |
33 | 527 #endif |
7 | 528 } |
529 } | |
530 | |
531 struct nbbuf_struct | |
532 { | |
533 buf_T *bufp; | |
534 unsigned int fireChanges:1; | |
535 unsigned int initDone:1; | |
33 | 536 unsigned int insertDone:1; |
7 | 537 unsigned int modified:1; |
33 | 538 int nbbuf_number; |
7 | 539 char *displayname; |
540 int *signmap; | |
541 short_u signmaplen; | |
542 short_u signmapused; | |
543 }; | |
544 | |
545 typedef struct nbbuf_struct nbbuf_T; | |
546 | |
2210 | 547 static nbbuf_T *buf_list = NULL; |
344 | 548 static int buf_list_size = 0; /* size of buf_list */ |
549 static int buf_list_used = 0; /* nr of entries in buf_list actually in use */ | |
7 | 550 |
2210 | 551 static char **globalsignmap = NULL; |
552 static int globalsignmaplen = 0; | |
553 static int globalsignmapused = 0; | |
7 | 554 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
555 static int mapsigntype(nbbuf_T *, int localsigntype); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
556 static void addsigntype(nbbuf_T *, int localsigntype, char_u *typeName, |
7 | 557 char_u *tooltip, char_u *glyphfile, |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
558 char_u *fg, char_u *bg); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
559 static void print_read_msg(nbbuf_T *buf); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
560 static void print_save_msg(nbbuf_T *buf, off_t nchars); |
7 | 561 |
562 static int curPCtype = -1; | |
563 | |
564 /* | |
2210 | 565 * Free netbeans resources. |
566 */ | |
567 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
568 nb_free(void) |
2210 | 569 { |
570 keyQ_T *key_node = keyHead.next; | |
571 nbbuf_T buf; | |
572 int i; | |
573 | |
574 /* free the netbeans buffer list */ | |
575 for (i = 0; i < buf_list_used; i++) | |
576 { | |
577 buf = buf_list[i]; | |
578 vim_free(buf.displayname); | |
579 vim_free(buf.signmap); | |
2656 | 580 if (buf.bufp != NULL) |
2210 | 581 { |
582 buf.bufp->b_netbeans_file = FALSE; | |
583 buf.bufp->b_was_netbeans_file = FALSE; | |
584 } | |
585 } | |
586 vim_free(buf_list); | |
587 buf_list = NULL; | |
588 buf_list_size = 0; | |
589 buf_list_used = 0; | |
590 | |
591 /* free the queued key commands */ | |
3935 | 592 while (key_node != NULL && key_node != &keyHead) |
2210 | 593 { |
594 keyQ_T *next = key_node->next; | |
595 vim_free(key_node->keystr); | |
596 vim_free(key_node); | |
597 if (next == &keyHead) | |
598 { | |
599 keyHead.next = &keyHead; | |
600 keyHead.prev = &keyHead; | |
601 break; | |
602 } | |
603 key_node = next; | |
604 } | |
605 | |
606 /* free the queued netbeans commands */ | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
607 if (nb_channel != NULL) |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
608 channel_clear(nb_channel); |
2210 | 609 } |
610 | |
611 /* | |
7 | 612 * Get the Netbeans buffer number for the specified buffer. |
613 */ | |
614 static int | |
615 nb_getbufno(buf_T *bufp) | |
616 { | |
617 int i; | |
618 | |
619 for (i = 0; i < buf_list_used; i++) | |
620 if (buf_list[i].bufp == bufp) | |
621 return i; | |
622 return -1; | |
623 } | |
624 | |
625 /* | |
626 * Is this a NetBeans-owned buffer? | |
627 */ | |
628 int | |
629 isNetbeansBuffer(buf_T *bufp) | |
630 { | |
2210 | 631 return NETBEANS_OPEN && bufp->b_netbeans_file; |
7 | 632 } |
633 | |
634 /* | |
635 * NetBeans and Vim have different undo models. In Vim, the file isn't | |
636 * changed if changes are undone via the undo command. In NetBeans, once | |
637 * a change has been made the file is marked as modified until saved. It | |
638 * doesn't matter if the change was undone. | |
639 * | |
640 * So this function is for the corner case where Vim thinks a buffer is | |
641 * unmodified but NetBeans thinks it IS modified. | |
642 */ | |
643 int | |
644 isNetbeansModified(buf_T *bufp) | |
645 { | |
2210 | 646 if (isNetbeansBuffer(bufp)) |
33 | 647 { |
648 int bufno = nb_getbufno(bufp); | |
649 | |
650 if (bufno > 0) | |
651 return buf_list[bufno].modified; | |
652 else | |
653 return FALSE; | |
654 } | |
7 | 655 else |
656 return FALSE; | |
657 } | |
658 | |
659 /* | |
660 * Given a Netbeans buffer number, return the netbeans buffer. | |
661 * Returns NULL for 0 or a negative number. A 0 bufno means a | |
662 * non-buffer related command has been sent. | |
663 */ | |
664 static nbbuf_T * | |
665 nb_get_buf(int bufno) | |
666 { | |
667 /* find or create a buffer with the given number */ | |
668 int incr; | |
669 | |
670 if (bufno <= 0) | |
671 return NULL; | |
672 | |
673 if (!buf_list) | |
674 { | |
675 /* initialize */ | |
676 buf_list = (nbbuf_T *)alloc_clear(100 * sizeof(nbbuf_T)); | |
677 buf_list_size = 100; | |
678 } | |
679 if (bufno >= buf_list_used) /* new */ | |
680 { | |
681 if (bufno >= buf_list_size) /* grow list */ | |
682 { | |
6596 | 683 nbbuf_T *t_buf_list = buf_list; |
684 | |
7 | 685 incr = bufno - buf_list_size + 90; |
686 buf_list_size += incr; | |
687 buf_list = (nbbuf_T *)vim_realloc( | |
688 buf_list, buf_list_size * sizeof(nbbuf_T)); | |
6596 | 689 if (buf_list == NULL) |
690 { | |
691 vim_free(t_buf_list); | |
692 buf_list_size = 0; | |
693 return NULL; | |
694 } | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
695 vim_memset(buf_list + buf_list_size - incr, 0, |
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
696 incr * sizeof(nbbuf_T)); |
7 | 697 } |
698 | |
699 while (buf_list_used <= bufno) | |
700 { | |
701 /* Default is to fire text changes. */ | |
702 buf_list[buf_list_used].fireChanges = 1; | |
703 ++buf_list_used; | |
704 } | |
705 } | |
706 | |
707 return buf_list + bufno; | |
708 } | |
709 | |
710 /* | |
711 * Return the number of buffers that are modified. | |
712 */ | |
713 static int | |
714 count_changed_buffers(void) | |
715 { | |
716 buf_T *bufp; | |
717 int n; | |
718 | |
719 n = 0; | |
720 for (bufp = firstbuf; bufp != NULL; bufp = bufp->b_next) | |
721 if (bufp->b_changed) | |
722 ++n; | |
723 return n; | |
724 } | |
725 | |
726 /* | |
727 * End the netbeans session. | |
728 */ | |
729 void | |
730 netbeans_end(void) | |
731 { | |
732 int i; | |
733 static char buf[128]; | |
734 | |
2210 | 735 if (!NETBEANS_OPEN) |
7 | 736 return; |
737 | |
738 for (i = 0; i < buf_list_used; i++) | |
739 { | |
740 if (!buf_list[i].bufp) | |
741 continue; | |
742 if (netbeansForcedQuit) | |
743 { | |
744 /* mark as unmodified so NetBeans won't put up dialog on "killed" */ | |
944 | 745 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno); |
7 | 746 nbdebug(("EVT: %s", buf)); |
747 nb_send(buf, "netbeans_end"); | |
748 } | |
944 | 749 sprintf(buf, "%d:killed=%d\n", i, r_cmdno); |
7 | 750 nbdebug(("EVT: %s", buf)); |
2210 | 751 /* nb_send(buf, "netbeans_end"); avoid "write failed" messages */ |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
752 nb_send(buf, NULL); |
7 | 753 } |
754 } | |
755 | |
756 /* | |
757 * Send a message to netbeans. | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
758 * When "fun" is NULL no error is given. |
7 | 759 */ |
760 static void | |
761 nb_send(char *buf, char *fun) | |
762 { | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
763 if (nb_channel != NULL) |
8151
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
764 channel_send(nb_channel, PART_SOCK, (char_u *)buf, fun); |
7 | 765 } |
766 | |
767 /* | |
768 * Some input received from netbeans requires a response. This function | |
769 * handles a response with no information (except the command number). | |
770 */ | |
771 static void | |
772 nb_reply_nil(int cmdno) | |
773 { | |
774 char reply[32]; | |
775 | |
33 | 776 nbdebug(("REP %d: <none>\n", cmdno)); |
777 | |
2639 | 778 /* Avoid printing an annoying error message. */ |
779 if (!NETBEANS_OPEN) | |
780 return; | |
781 | |
7 | 782 sprintf(reply, "%d\n", cmdno); |
783 nb_send(reply, "nb_reply_nil"); | |
784 } | |
785 | |
786 | |
787 /* | |
788 * Send a response with text. | |
789 * "result" must have been quoted already (using nb_quote()). | |
790 */ | |
791 static void | |
792 nb_reply_text(int cmdno, char_u *result) | |
793 { | |
794 char_u *reply; | |
795 | |
33 | 796 nbdebug(("REP %d: %s\n", cmdno, (char *)result)); |
797 | |
835 | 798 reply = alloc((unsigned)STRLEN(result) + 32); |
7 | 799 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result); |
800 nb_send((char *)reply, "nb_reply_text"); | |
801 | |
802 vim_free(reply); | |
803 } | |
804 | |
805 | |
806 /* | |
807 * Send a response with a number result code. | |
808 */ | |
809 static void | |
810 nb_reply_nr(int cmdno, long result) | |
811 { | |
812 char reply[32]; | |
813 | |
33 | 814 nbdebug(("REP %d: %ld\n", cmdno, result)); |
815 | |
7 | 816 sprintf(reply, "%d %ld\n", cmdno, result); |
817 nb_send(reply, "nb_reply_nr"); | |
818 } | |
819 | |
820 | |
821 /* | |
822 * Encode newline, ret, backslash, double quote for transmission to NetBeans. | |
823 */ | |
824 static char_u * | |
825 nb_quote(char_u *txt) | |
826 { | |
835 | 827 char_u *buf = alloc((unsigned)(2 * STRLEN(txt) + 1)); |
7 | 828 char_u *p = txt; |
829 char_u *q = buf; | |
830 | |
831 if (buf == NULL) | |
832 return NULL; | |
833 for (; *p; p++) | |
834 { | |
835 switch (*p) | |
836 { | |
837 case '\"': | |
838 case '\\': | |
839 *q++ = '\\'; *q++ = *p; break; | |
840 /* case '\t': */ | |
841 /* *q++ = '\\'; *q++ = 't'; break; */ | |
842 case '\n': | |
843 *q++ = '\\'; *q++ = 'n'; break; | |
844 case '\r': | |
845 *q++ = '\\'; *q++ = 'r'; break; | |
846 default: | |
847 *q++ = *p; | |
848 break; | |
849 } | |
850 } | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
851 *q = '\0'; |
7 | 852 |
853 return buf; | |
854 } | |
855 | |
856 | |
857 /* | |
858 * Remove top level double quotes; convert backslashed chars. | |
859 * Returns an allocated string (NULL for failure). | |
860 * If "endp" is not NULL it is set to the character after the terminating | |
861 * quote. | |
862 */ | |
863 static char * | |
864 nb_unquote(char_u *p, char_u **endp) | |
865 { | |
866 char *result = 0; | |
867 char *q; | |
868 int done = 0; | |
869 | |
870 /* result is never longer than input */ | |
835 | 871 result = (char *)alloc_clear((unsigned)STRLEN(p) + 1); |
7 | 872 if (result == NULL) |
873 return NULL; | |
874 | |
875 if (*p++ != '"') | |
876 { | |
877 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n", | |
878 p)); | |
879 result[0] = NUL; | |
880 return result; | |
881 } | |
882 | |
883 for (q = result; !done && *p != NUL;) | |
884 { | |
885 switch (*p) | |
886 { | |
887 case '"': | |
888 /* | |
889 * Unbackslashed dquote marks the end, if first char was dquote. | |
890 */ | |
891 done = 1; | |
892 break; | |
893 | |
894 case '\\': | |
895 ++p; | |
896 switch (*p) | |
897 { | |
898 case '\\': *q++ = '\\'; break; | |
899 case 'n': *q++ = '\n'; break; | |
900 case 't': *q++ = '\t'; break; | |
901 case 'r': *q++ = '\r'; break; | |
902 case '"': *q++ = '"'; break; | |
903 case NUL: --p; break; | |
904 /* default: skip over illegal chars */ | |
905 } | |
906 ++p; | |
907 break; | |
908 | |
909 default: | |
910 *q++ = *p++; | |
911 } | |
912 } | |
913 | |
914 if (endp != NULL) | |
915 *endp = p; | |
916 | |
917 return result; | |
918 } | |
919 | |
1492 | 920 /* |
921 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the | |
922 * current buffer. Remove to end of line when "last" is MAXCOL. | |
923 */ | |
924 static void | |
925 nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last) | |
926 { | |
927 char_u *oldtext, *newtext; | |
928 int oldlen; | |
929 int lastbyte = last; | |
930 | |
931 oldtext = ml_get(lnum); | |
1570 | 932 oldlen = (int)STRLEN(oldtext); |
1517 | 933 if (first >= (colnr_T)oldlen || oldlen == 0) /* just in case */ |
1492 | 934 return; |
935 if (lastbyte >= oldlen) | |
936 lastbyte = oldlen - 1; | |
937 newtext = alloc(oldlen - (int)(lastbyte - first)); | |
938 if (newtext != NULL) | |
939 { | |
940 mch_memmove(newtext, oldtext, first); | |
1618 | 941 STRMOVE(newtext + first, oldtext + lastbyte + 1); |
1492 | 942 nbdebug((" NEW LINE %d: %s\n", lnum, newtext)); |
943 ml_replace(lnum, newtext, FALSE); | |
944 } | |
945 } | |
946 | |
947 /* | |
948 * Replace the "first" line with the concatenation of the "first" and | |
949 * the "other" line. The "other" line is not removed. | |
950 */ | |
951 static void | |
952 nb_joinlines(linenr_T first, linenr_T other) | |
953 { | |
954 int len_first, len_other; | |
955 char_u *p; | |
956 | |
1570 | 957 len_first = (int)STRLEN(ml_get(first)); |
958 len_other = (int)STRLEN(ml_get(other)); | |
1492 | 959 p = alloc((unsigned)(len_first + len_other + 1)); |
960 if (p != NULL) | |
961 { | |
962 mch_memmove(p, ml_get(first), len_first); | |
963 mch_memmove(p + len_first, ml_get(other), len_other + 1); | |
964 ml_replace(first, p, FALSE); | |
965 } | |
966 } | |
967 | |
7 | 968 #define SKIP_STOP 2 |
969 #define streq(a,b) (strcmp(a,b) == 0) | |
970 | |
971 /* | |
972 * Do the actual processing of a single netbeans command or function. | |
1186 | 973 * The difference between a command and function is that a function |
974 * gets a response (it's required) but a command does not. | |
7 | 975 * For arguments see comment for nb_parse_cmd(). |
976 */ | |
977 static int | |
978 nb_do_cmd( | |
979 int bufno, | |
980 char_u *cmd, | |
981 int func, | |
982 int cmdno, | |
983 char_u *args) /* points to space before arguments or NUL */ | |
984 { | |
3263 | 985 int do_update = 0; |
7 | 986 long off = 0; |
987 nbbuf_T *buf = nb_get_buf(bufno); | |
988 static int skip = 0; | |
989 int retval = OK; | |
27 | 990 char *cp; /* for when a char pointer is needed */ |
7 | 991 |
992 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd, | |
993 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args)); | |
994 | |
995 if (func) | |
996 { | |
997 /* =====================================================================*/ | |
998 if (streq((char *)cmd, "getModified")) | |
999 { | |
1000 if (buf == NULL || buf->bufp == NULL) | |
1001 /* Return the number of buffers that are modified. */ | |
1002 nb_reply_nr(cmdno, (long)count_changed_buffers()); | |
1003 else | |
1004 /* Return whether the buffer is modified. */ | |
1005 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed | |
1006 || isNetbeansModified(buf->bufp))); | |
1007 /* =====================================================================*/ | |
1008 } | |
1009 else if (streq((char *)cmd, "saveAndExit")) | |
1010 { | |
1011 /* Note: this will exit Vim if successful. */ | |
1012 coloncmd(":confirm qall"); | |
1013 | |
1014 /* We didn't exit: return the number of changed buffers. */ | |
1015 nb_reply_nr(cmdno, (long)count_changed_buffers()); | |
1016 /* =====================================================================*/ | |
1017 } | |
1018 else if (streq((char *)cmd, "getCursor")) | |
1019 { | |
1020 char_u text[200]; | |
1021 | |
1022 /* Note: nb_getbufno() may return -1. This indicates the IDE | |
1023 * didn't assign a number to the current buffer in response to a | |
1024 * fileOpened event. */ | |
1025 sprintf((char *)text, "%d %ld %d %ld", | |
1026 nb_getbufno(curbuf), | |
1027 (long)curwin->w_cursor.lnum, | |
1028 (int)curwin->w_cursor.col, | |
1029 pos2off(curbuf, &curwin->w_cursor)); | |
1030 nb_reply_text(cmdno, text); | |
1031 /* =====================================================================*/ | |
1032 } | |
1037 | 1033 else if (streq((char *)cmd, "getAnno")) |
1034 { | |
1035 long linenum = 0; | |
1036 #ifdef FEAT_SIGNS | |
1037 if (buf == NULL || buf->bufp == NULL) | |
1038 { | |
1618 | 1039 nbdebug((" Invalid buffer identifier in getAnno\n")); |
1040 EMSG("E652: Invalid buffer identifier in getAnno"); | |
1037 | 1041 retval = FAIL; |
1042 } | |
1043 else | |
1044 { | |
1045 int serNum; | |
1046 | |
1047 cp = (char *)args; | |
1048 serNum = strtol(cp, &cp, 10); | |
1049 /* If the sign isn't found linenum will be zero. */ | |
1050 linenum = (long)buf_findsign(buf->bufp, serNum); | |
1051 } | |
1052 #endif | |
1053 nb_reply_nr(cmdno, linenum); | |
1054 /* =====================================================================*/ | |
1055 } | |
7 | 1056 else if (streq((char *)cmd, "getLength")) |
1057 { | |
1058 long len = 0; | |
1059 | |
1060 if (buf == NULL || buf->bufp == NULL) | |
1061 { | |
1618 | 1062 nbdebug((" invalid buffer identifier in getLength\n")); |
1063 EMSG("E632: invalid buffer identifier in getLength"); | |
7 | 1064 retval = FAIL; |
1065 } | |
1066 else | |
1067 { | |
1068 len = get_buf_size(buf->bufp); | |
1069 } | |
1070 nb_reply_nr(cmdno, len); | |
1071 /* =====================================================================*/ | |
1072 } | |
1073 else if (streq((char *)cmd, "getText")) | |
1074 { | |
1075 long len; | |
1076 linenr_T nlines; | |
1077 char_u *text = NULL; | |
1078 linenr_T lno = 1; | |
1079 char_u *p; | |
1080 char_u *line; | |
1081 | |
1082 if (buf == NULL || buf->bufp == NULL) | |
1083 { | |
1618 | 1084 nbdebug((" invalid buffer identifier in getText\n")); |
1085 EMSG("E633: invalid buffer identifier in getText"); | |
7 | 1086 retval = FAIL; |
1087 } | |
1088 else | |
1089 { | |
1090 len = get_buf_size(buf->bufp); | |
1091 nlines = buf->bufp->b_ml.ml_line_count; | |
1092 text = alloc((unsigned)((len > 0) | |
1093 ? ((len + nlines) * 2) : 4)); | |
1094 if (text == NULL) | |
1095 { | |
1096 nbdebug((" nb_do_cmd: getText has null text field\n")); | |
1097 retval = FAIL; | |
1098 } | |
1099 else | |
1100 { | |
1101 p = text; | |
1102 *p++ = '\"'; | |
1103 for (; lno <= nlines ; lno++) | |
1104 { | |
1105 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE)); | |
1106 if (line != NULL) | |
1107 { | |
1108 STRCPY(p, line); | |
1109 p += STRLEN(line); | |
1110 *p++ = '\\'; | |
1111 *p++ = 'n'; | |
33 | 1112 vim_free(line); |
7 | 1113 } |
1114 } | |
1115 *p++ = '\"'; | |
1116 *p = '\0'; | |
1117 } | |
1118 } | |
1119 if (text == NULL) | |
1120 nb_reply_text(cmdno, (char_u *)""); | |
1121 else | |
1122 { | |
1123 nb_reply_text(cmdno, text); | |
1124 vim_free(text); | |
1125 } | |
1126 /* =====================================================================*/ | |
1127 } | |
1128 else if (streq((char *)cmd, "remove")) | |
1129 { | |
1130 long count; | |
1131 pos_T first, last; | |
1132 pos_T *pos; | |
1492 | 1133 pos_T *next; |
1134 linenr_T del_from_lnum, del_to_lnum; /* lines to be deleted as a whole */ | |
7 | 1135 int oldFire = netbeansFireChanges; |
1136 int oldSuppress = netbeansSuppressNoLines; | |
1137 int wasChanged; | |
1138 | |
1139 if (skip >= SKIP_STOP) | |
1140 { | |
1141 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
1142 nb_reply_nil(cmdno); | |
1143 return OK; | |
1144 } | |
1145 | |
1146 if (buf == NULL || buf->bufp == NULL) | |
1147 { | |
1618 | 1148 nbdebug((" invalid buffer identifier in remove\n")); |
1149 EMSG("E634: invalid buffer identifier in remove"); | |
7 | 1150 retval = FAIL; |
1151 } | |
1152 else | |
1153 { | |
1154 netbeansFireChanges = FALSE; | |
1155 netbeansSuppressNoLines = TRUE; | |
1156 | |
659 | 1157 nb_set_curbuf(buf->bufp); |
7 | 1158 wasChanged = buf->bufp->b_changed; |
27 | 1159 cp = (char *)args; |
1160 off = strtol(cp, &cp, 10); | |
1161 count = strtol(cp, &cp, 10); | |
1162 args = (char_u *)cp; | |
7 | 1163 /* delete "count" chars, starting at "off" */ |
1164 pos = off2pos(buf->bufp, off); | |
1165 if (!pos) | |
1166 { | |
1618 | 1167 nbdebug((" !bad position\n")); |
7 | 1168 nb_reply_text(cmdno, (char_u *)"!bad position"); |
1169 netbeansFireChanges = oldFire; | |
1170 netbeansSuppressNoLines = oldSuppress; | |
1171 return FAIL; | |
1172 } | |
1173 first = *pos; | |
1956 | 1174 nbdebug((" FIRST POS: line %d, col %d\n", |
1175 first.lnum, first.col)); | |
7 | 1176 pos = off2pos(buf->bufp, off+count-1); |
1177 if (!pos) | |
1178 { | |
1618 | 1179 nbdebug((" !bad count\n")); |
7 | 1180 nb_reply_text(cmdno, (char_u *)"!bad count"); |
1181 netbeansFireChanges = oldFire; | |
1182 netbeansSuppressNoLines = oldSuppress; | |
1183 return FAIL; | |
1184 } | |
1185 last = *pos; | |
1956 | 1186 nbdebug((" LAST POS: line %d, col %d\n", |
1187 last.lnum, last.col)); | |
1492 | 1188 del_from_lnum = first.lnum; |
1189 del_to_lnum = last.lnum; | |
3263 | 1190 do_update = 1; |
7 | 1191 |
1492 | 1192 /* Get the position of the first byte after the deleted |
1193 * section. "next" is NULL when deleting to the end of the | |
1194 * file. */ | |
1195 next = off2pos(buf->bufp, off + count); | |
1196 | |
1197 /* Remove part of the first line. */ | |
1956 | 1198 if (first.col != 0 |
1199 || (next != NULL && first.lnum == next->lnum)) | |
7 | 1200 { |
1492 | 1201 if (first.lnum != last.lnum |
1202 || (next != NULL && first.lnum != next->lnum)) | |
1203 { | |
1204 /* remove to the end of the first line */ | |
1205 nb_partialremove(first.lnum, first.col, | |
1206 (colnr_T)MAXCOL); | |
1207 if (first.lnum == last.lnum) | |
1208 { | |
1209 /* Partial line to remove includes the end of | |
1210 * line. Join the line with the next one, have | |
1211 * the next line deleted below. */ | |
1212 nb_joinlines(first.lnum, next->lnum); | |
1213 del_to_lnum = next->lnum; | |
1214 } | |
1215 } | |
1216 else | |
1217 { | |
1218 /* remove within one line */ | |
1219 nb_partialremove(first.lnum, first.col, last.col); | |
1220 } | |
1221 ++del_from_lnum; /* don't delete the first line */ | |
7 | 1222 } |
1223 | |
1492 | 1224 /* Remove part of the last line. */ |
1225 if (first.lnum != last.lnum && next != NULL | |
1226 && next->col != 0 && last.lnum == next->lnum) | |
1227 { | |
1228 nb_partialremove(last.lnum, 0, last.col); | |
1229 if (del_from_lnum > first.lnum) | |
1230 { | |
1231 /* Join end of last line to start of first line; last | |
1232 * line is deleted below. */ | |
1233 nb_joinlines(first.lnum, last.lnum); | |
1234 } | |
1235 else | |
1236 /* First line is deleted as a whole, keep the last | |
1237 * line. */ | |
1238 --del_to_lnum; | |
1239 } | |
1240 | |
1241 /* First is partial line; last line to remove includes | |
1242 * the end of line; join first line to line following last | |
1243 * line; line following last line is deleted below. */ | |
1244 if (first.lnum != last.lnum && del_from_lnum > first.lnum | |
1245 && next != NULL && last.lnum != next->lnum) | |
1246 { | |
1247 nb_joinlines(first.lnum, next->lnum); | |
1248 del_to_lnum = next->lnum; | |
1249 } | |
1250 | |
1251 /* Delete whole lines if there are any. */ | |
1252 if (del_to_lnum >= del_from_lnum) | |
7 | 1253 { |
1254 int i; | |
1255 | |
1256 /* delete signs from the lines being deleted */ | |
1492 | 1257 for (i = del_from_lnum; i <= del_to_lnum; i++) |
7 | 1258 { |
1259 int id = buf_findsign_id(buf->bufp, (linenr_T)i); | |
1260 if (id > 0) | |
1261 { | |
1956 | 1262 nbdebug((" Deleting sign %d on line %d\n", |
1263 id, i)); | |
7 | 1264 buf_delsign(buf->bufp, id); |
1265 } | |
1266 else | |
1884 | 1267 { |
7 | 1268 nbdebug((" No sign on line %d\n", i)); |
1884 | 1269 } |
7 | 1270 } |
1271 | |
1956 | 1272 nbdebug((" Deleting lines %d through %d\n", |
1273 del_from_lnum, del_to_lnum)); | |
1492 | 1274 curwin->w_cursor.lnum = del_from_lnum; |
1275 curwin->w_cursor.col = 0; | |
1276 del_lines(del_to_lnum - del_from_lnum + 1, FALSE); | |
7 | 1277 } |
1492 | 1278 |
1279 /* Leave cursor at first deleted byte. */ | |
1280 curwin->w_cursor = first; | |
1281 check_cursor_lnum(); | |
7 | 1282 buf->bufp->b_changed = wasChanged; /* logically unchanged */ |
1283 netbeansFireChanges = oldFire; | |
1284 netbeansSuppressNoLines = oldSuppress; | |
1285 | |
1286 u_blockfree(buf->bufp); | |
1287 u_clearall(buf->bufp); | |
1288 } | |
1289 nb_reply_nil(cmdno); | |
1290 /* =====================================================================*/ | |
1291 } | |
1292 else if (streq((char *)cmd, "insert")) | |
1293 { | |
1294 char_u *to_free; | |
1295 | |
1296 if (skip >= SKIP_STOP) | |
1297 { | |
1298 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
1299 nb_reply_nil(cmdno); | |
1300 return OK; | |
1301 } | |
1302 | |
1303 /* get offset */ | |
27 | 1304 cp = (char *)args; |
1305 off = strtol(cp, &cp, 10); | |
1306 args = (char_u *)cp; | |
7 | 1307 |
1308 /* get text to be inserted */ | |
1309 args = skipwhite(args); | |
1310 args = to_free = (char_u *)nb_unquote(args, NULL); | |
33 | 1311 /* |
1312 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n", | |
1313 buf->bufp->b_ml.ml_line_count, STRLEN(args), off)); | |
1314 */ | |
7 | 1315 |
1316 if (buf == NULL || buf->bufp == NULL) | |
1317 { | |
1618 | 1318 nbdebug((" invalid buffer identifier in insert\n")); |
1319 EMSG("E635: invalid buffer identifier in insert"); | |
7 | 1320 retval = FAIL; |
1321 } | |
1322 else if (args != NULL) | |
1323 { | |
718 | 1324 int ff_detected = EOL_UNKNOWN; |
1325 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY); | |
1326 size_t len = 0; | |
1327 int added = 0; | |
1328 int oldFire = netbeansFireChanges; | |
1329 int old_b_changed; | |
3265 | 1330 char_u *nlp; |
718 | 1331 linenr_T lnum; |
1332 linenr_T lnum_start; | |
1333 pos_T *pos; | |
1334 | |
7 | 1335 netbeansFireChanges = 0; |
718 | 1336 |
1337 /* Jump to the buffer where we insert. After this "curbuf" | |
1338 * can be used. */ | |
659 | 1339 nb_set_curbuf(buf->bufp); |
717 | 1340 old_b_changed = curbuf->b_changed; |
1341 | |
718 | 1342 /* Convert the specified character offset into a lnum/col |
1343 * position. */ | |
717 | 1344 pos = off2pos(curbuf, off); |
1345 if (pos != NULL) | |
7 | 1346 { |
718 | 1347 if (pos->lnum <= 0) |
1348 lnum_start = 1; | |
1349 else | |
1350 lnum_start = pos->lnum; | |
7 | 1351 } |
1352 else | |
1353 { | |
718 | 1354 /* If the given position is not found, assume we want |
7 | 1355 * the end of the file. See setLocAndSize HACK. */ |
718 | 1356 if (buf_was_empty) |
1357 lnum_start = 1; /* above empty line */ | |
1358 else | |
1359 lnum_start = curbuf->b_ml.ml_line_count + 1; | |
7 | 1360 } |
718 | 1361 |
1362 /* "lnum" is the line where we insert: either append to it or | |
1363 * insert a new line above it. */ | |
1364 lnum = lnum_start; | |
1365 | |
1366 /* Loop over the "\n" separated lines of the argument. */ | |
3263 | 1367 do_update = 1; |
718 | 1368 while (*args != NUL) |
33 | 1369 { |
3265 | 1370 nlp = vim_strchr(args, '\n'); |
1371 if (nlp == NULL) | |
7 | 1372 { |
718 | 1373 /* Incomplete line, probably truncated. Next "insert" |
1374 * command should append to this one. */ | |
1375 len = STRLEN(args); | |
7 | 1376 } |
33 | 1377 else |
1378 { | |
3265 | 1379 len = nlp - args; |
718 | 1380 |
1381 /* | |
1382 * We need to detect EOL style, because the commands | |
1383 * use a character offset. | |
1384 */ | |
3265 | 1385 if (nlp > args && nlp[-1] == '\r') |
718 | 1386 { |
1387 ff_detected = EOL_DOS; | |
1388 --len; | |
1389 } | |
1390 else | |
1391 ff_detected = EOL_UNIX; | |
33 | 1392 } |
718 | 1393 args[len] = NUL; |
1394 | |
1395 if (lnum == lnum_start | |
1396 && ((pos != NULL && pos->col > 0) | |
1397 || (lnum == 1 && buf_was_empty))) | |
1398 { | |
1399 char_u *oldline = ml_get(lnum); | |
1400 char_u *newline; | |
1401 | |
3476 | 1402 /* Insert halfway a line. */ |
3265 | 1403 newline = alloc_check( |
1404 (unsigned)(STRLEN(oldline) + len + 1)); | |
718 | 1405 if (newline != NULL) |
1406 { | |
3476 | 1407 mch_memmove(newline, oldline, (size_t)pos->col); |
1408 newline[pos->col] = NUL; | |
718 | 1409 STRCAT(newline, args); |
3476 | 1410 STRCAT(newline, oldline + pos->col); |
718 | 1411 ml_replace(lnum, newline, FALSE); |
1412 } | |
1413 } | |
1414 else | |
1415 { | |
1416 /* Append a new line. Not that we always do this, | |
1417 * also when the text doesn't end in a "\n". */ | |
3265 | 1418 ml_append((linenr_T)(lnum - 1), args, |
1419 (colnr_T)(len + 1), FALSE); | |
718 | 1420 ++added; |
1421 } | |
1422 | |
3265 | 1423 if (nlp == NULL) |
718 | 1424 break; |
1425 ++lnum; | |
3265 | 1426 args = nlp + 1; |
33 | 1427 } |
1428 | |
718 | 1429 /* Adjust the marks below the inserted lines. */ |
1430 appended_lines_mark(lnum_start - 1, (long)added); | |
1431 | |
1432 /* | |
1433 * When starting with an empty buffer set the fileformat. | |
1434 * This is just guessing... | |
7 | 1435 */ |
1436 if (buf_was_empty) | |
1437 { | |
1438 if (ff_detected == EOL_UNKNOWN) | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
1439 #if defined(MSWIN) |
7 | 1440 ff_detected = EOL_DOS; |
718 | 1441 #else |
1442 ff_detected = EOL_UNIX; | |
1443 #endif | |
7 | 1444 set_fileformat(ff_detected, OPT_LOCAL); |
717 | 1445 curbuf->b_start_ffc = *curbuf->b_p_ff; |
7 | 1446 } |
1447 | |
1448 /* | |
1449 * XXX - GRP - Is the next line right? If I've inserted | |
1450 * text the buffer has been updated but not written. Will | |
1451 * netbeans guarantee to write it? Even if I do a :q! ? | |
1452 */ | |
717 | 1453 curbuf->b_changed = old_b_changed; /* logically unchanged */ |
7 | 1454 netbeansFireChanges = oldFire; |
1455 | |
718 | 1456 /* Undo info is invalid now... */ |
717 | 1457 u_blockfree(curbuf); |
1458 u_clearall(curbuf); | |
7 | 1459 } |
1460 vim_free(to_free); | |
1461 nb_reply_nil(cmdno); /* or !error */ | |
1462 } | |
1463 else | |
1464 { | |
1465 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd)); | |
1466 nb_reply_nil(cmdno); | |
1467 retval = FAIL; | |
1468 } | |
1469 } | |
1470 else /* Not a function; no reply required. */ | |
1471 { | |
1472 /* =====================================================================*/ | |
1473 if (streq((char *)cmd, "create")) | |
1474 { | |
1475 /* Create a buffer without a name. */ | |
1476 if (buf == NULL) | |
1477 { | |
1618 | 1478 nbdebug((" invalid buffer identifier in create\n")); |
1479 EMSG("E636: invalid buffer identifier in create"); | |
7 | 1480 return FAIL; |
1481 } | |
1482 vim_free(buf->displayname); | |
1483 buf->displayname = NULL; | |
1484 | |
1485 netbeansReadFile = 0; /* don't try to open disk file */ | |
1743 | 1486 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1487 netbeansReadFile = 1; |
1488 buf->bufp = curbuf; | |
1489 maketitle(); | |
33 | 1490 buf->insertDone = FALSE; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1491 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1492 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1493 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1494 #endif |
7 | 1495 /* =====================================================================*/ |
1496 } | |
33 | 1497 else if (streq((char *)cmd, "insertDone")) |
1498 { | |
840 | 1499 if (buf == NULL || buf->bufp == NULL) |
1500 { | |
1618 | 1501 nbdebug((" invalid buffer identifier in insertDone\n")); |
840 | 1502 } |
1503 else | |
1504 { | |
1505 buf->bufp->b_start_eol = *args == 'T'; | |
1506 buf->insertDone = TRUE; | |
1507 args += 2; | |
1508 buf->bufp->b_p_ro = *args == 'T'; | |
1509 print_read_msg(buf); | |
1510 } | |
33 | 1511 /* =====================================================================*/ |
1512 } | |
1513 else if (streq((char *)cmd, "saveDone")) | |
1514 { | |
840 | 1515 long savedChars = atol((char *)args); |
1516 | |
1517 if (buf == NULL || buf->bufp == NULL) | |
1518 { | |
1618 | 1519 nbdebug((" invalid buffer identifier in saveDone\n")); |
840 | 1520 } |
1521 else | |
1522 print_save_msg(buf, savedChars); | |
33 | 1523 /* =====================================================================*/ |
1524 } | |
7 | 1525 else if (streq((char *)cmd, "startDocumentListen")) |
1526 { | |
1527 if (buf == NULL) | |
1528 { | |
1618 | 1529 nbdebug((" invalid buffer identifier in startDocumentListen\n")); |
1530 EMSG("E637: invalid buffer identifier in startDocumentListen"); | |
7 | 1531 return FAIL; |
1532 } | |
1533 buf->fireChanges = 1; | |
1534 /* =====================================================================*/ | |
1535 } | |
1536 else if (streq((char *)cmd, "stopDocumentListen")) | |
1537 { | |
1538 if (buf == NULL) | |
1539 { | |
1618 | 1540 nbdebug((" invalid buffer identifier in stopDocumentListen\n")); |
1541 EMSG("E638: invalid buffer identifier in stopDocumentListen"); | |
7 | 1542 return FAIL; |
1543 } | |
1544 buf->fireChanges = 0; | |
152 | 1545 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file) |
33 | 1546 { |
152 | 1547 if (!buf->bufp->b_netbeans_file) |
1618 | 1548 { |
1549 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf->bufp->b_fnum)); | |
33 | 1550 EMSGN(_("E658: NetBeans connection lost for buffer %ld"), |
7 | 1551 buf->bufp->b_fnum); |
1618 | 1552 } |
33 | 1553 else |
1554 { | |
152 | 1555 /* NetBeans uses stopDocumentListen when it stops editing |
1556 * a file. It then expects the buffer in Vim to | |
1557 * disappear. */ | |
1558 do_bufdel(DOBUF_DEL, (char_u *)"", 1, | |
1559 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE); | |
33 | 1560 vim_memset(buf, 0, sizeof(nbbuf_T)); |
1561 } | |
1562 } | |
7 | 1563 /* =====================================================================*/ |
1564 } | |
1565 else if (streq((char *)cmd, "setTitle")) | |
1566 { | |
1567 if (buf == NULL) | |
1568 { | |
1618 | 1569 nbdebug((" invalid buffer identifier in setTitle\n")); |
1570 EMSG("E639: invalid buffer identifier in setTitle"); | |
7 | 1571 return FAIL; |
1572 } | |
1573 vim_free(buf->displayname); | |
1574 buf->displayname = nb_unquote(args, NULL); | |
1575 /* =====================================================================*/ | |
1576 } | |
1577 else if (streq((char *)cmd, "initDone")) | |
1578 { | |
1579 if (buf == NULL || buf->bufp == NULL) | |
1580 { | |
1618 | 1581 nbdebug((" invalid buffer identifier in initDone\n")); |
1582 EMSG("E640: invalid buffer identifier in initDone"); | |
7 | 1583 return FAIL; |
1584 } | |
3263 | 1585 do_update = 1; |
33 | 1586 buf->initDone = TRUE; |
659 | 1587 nb_set_curbuf(buf->bufp); |
7 | 1588 #if defined(FEAT_AUTOCMD) |
1589 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp); | |
1590 #endif | |
1591 | |
1592 /* handle any postponed key commands */ | |
1593 handle_key_queue(); | |
1594 /* =====================================================================*/ | |
1595 } | |
1596 else if (streq((char *)cmd, "setBufferNumber") | |
1597 || streq((char *)cmd, "putBufferNumber")) | |
1598 { | |
33 | 1599 char_u *path; |
7 | 1600 buf_T *bufp; |
1601 | |
1602 if (buf == NULL) | |
1603 { | |
1618 | 1604 nbdebug((" invalid buffer identifier in setBufferNumber\n")); |
1605 EMSG("E641: invalid buffer identifier in setBufferNumber"); | |
7 | 1606 return FAIL; |
1607 } | |
33 | 1608 path = (char_u *)nb_unquote(args, NULL); |
1609 if (path == NULL) | |
7 | 1610 return FAIL; |
33 | 1611 bufp = buflist_findname(path); |
1612 vim_free(path); | |
7 | 1613 if (bufp == NULL) |
1614 { | |
1816 | 1615 nbdebug((" File %s not found in setBufferNumber\n", args)); |
7 | 1616 EMSG2("E642: File %s not found in setBufferNumber", args); |
1617 return FAIL; | |
1618 } | |
1619 buf->bufp = bufp; | |
33 | 1620 buf->nbbuf_number = bufp->b_fnum; |
7 | 1621 |
1622 /* "setBufferNumber" has the side effect of jumping to the buffer | |
1623 * (don't know why!). Don't do that for "putBufferNumber". */ | |
1624 if (*cmd != 'p') | |
1625 coloncmd(":buffer %d", bufp->b_fnum); | |
1626 else | |
1627 { | |
33 | 1628 buf->initDone = TRUE; |
7 | 1629 |
1630 /* handle any postponed key commands */ | |
1631 handle_key_queue(); | |
1632 } | |
1633 | |
1634 /* =====================================================================*/ | |
1635 } | |
1636 else if (streq((char *)cmd, "setFullName")) | |
1637 { | |
1638 if (buf == NULL) | |
1639 { | |
1618 | 1640 nbdebug((" invalid buffer identifier in setFullName\n")); |
1641 EMSG("E643: invalid buffer identifier in setFullName"); | |
7 | 1642 return FAIL; |
1643 } | |
1644 vim_free(buf->displayname); | |
1645 buf->displayname = nb_unquote(args, NULL); | |
1646 | |
1647 netbeansReadFile = 0; /* don't try to open disk file */ | |
1648 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE, | |
1743 | 1649 ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1650 netbeansReadFile = 1; |
1651 buf->bufp = curbuf; | |
1652 maketitle(); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1653 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1654 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1655 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1656 #endif |
7 | 1657 /* =====================================================================*/ |
1658 } | |
1659 else if (streq((char *)cmd, "editFile")) | |
1660 { | |
1661 if (buf == NULL) | |
1662 { | |
1618 | 1663 nbdebug((" invalid buffer identifier in editFile\n")); |
1664 EMSG("E644: invalid buffer identifier in editFile"); | |
7 | 1665 return FAIL; |
1666 } | |
1667 /* Edit a file: like create + setFullName + read the file. */ | |
1668 vim_free(buf->displayname); | |
1669 buf->displayname = nb_unquote(args, NULL); | |
1670 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE, | |
1743 | 1671 ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1672 buf->bufp = curbuf; |
33 | 1673 buf->initDone = TRUE; |
3263 | 1674 do_update = 1; |
7 | 1675 #if defined(FEAT_TITLE) |
1676 maketitle(); | |
1677 #endif | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1678 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1679 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1680 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1681 #endif |
7 | 1682 /* =====================================================================*/ |
1683 } | |
1684 else if (streq((char *)cmd, "setVisible")) | |
1685 { | |
1686 if (buf == NULL || buf->bufp == NULL) | |
1687 { | |
1618 | 1688 nbdebug((" invalid buffer identifier in setVisible\n")); |
1689 /* This message was commented out, probably because it can | |
1690 * happen when shutting down. */ | |
1691 if (p_verbose > 0) | |
1692 EMSG("E645: invalid buffer identifier in setVisible"); | |
7 | 1693 return FAIL; |
1694 } | |
33 | 1695 if (streq((char *)args, "T") && buf->bufp != curbuf) |
7 | 1696 { |
1697 exarg_T exarg; | |
1698 exarg.cmd = (char_u *)"goto"; | |
1699 exarg.forceit = FALSE; | |
33 | 1700 dosetvisible = TRUE; |
7 | 1701 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum); |
3263 | 1702 do_update = 1; |
33 | 1703 dosetvisible = FALSE; |
7 | 1704 |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1705 #ifdef FEAT_GUI |
7 | 1706 /* Side effect!!!. */ |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1707 if (gui.in_use) |
7 | 1708 gui_mch_set_foreground(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1709 #endif |
7 | 1710 } |
1711 /* =====================================================================*/ | |
1712 } | |
1713 else if (streq((char *)cmd, "raise")) | |
1714 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1715 #ifdef FEAT_GUI |
7 | 1716 /* Bring gvim to the foreground. */ |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1717 if (gui.in_use) |
7 | 1718 gui_mch_set_foreground(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1719 #endif |
7 | 1720 /* =====================================================================*/ |
1721 } | |
1722 else if (streq((char *)cmd, "setModified")) | |
1723 { | |
1600 | 1724 int prev_b_changed; |
1725 | |
7 | 1726 if (buf == NULL || buf->bufp == NULL) |
1727 { | |
1618 | 1728 nbdebug((" invalid buffer identifier in setModified\n")); |
1729 /* This message was commented out, probably because it can | |
1730 * happen when shutting down. */ | |
1731 if (p_verbose > 0) | |
1732 EMSG("E646: invalid buffer identifier in setModified"); | |
7 | 1733 return FAIL; |
1734 } | |
1600 | 1735 prev_b_changed = buf->bufp->b_changed; |
7 | 1736 if (streq((char *)args, "T")) |
1600 | 1737 buf->bufp->b_changed = TRUE; |
7 | 1738 else |
1739 { | |
1740 struct stat st; | |
1741 | |
1742 /* Assume NetBeans stored the file. Reset the timestamp to | |
1743 * avoid "file changed" warnings. */ | |
1744 if (buf->bufp->b_ffname != NULL | |
1745 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0) | |
1746 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname); | |
1600 | 1747 buf->bufp->b_changed = FALSE; |
7 | 1748 } |
1749 buf->modified = buf->bufp->b_changed; | |
1600 | 1750 if (prev_b_changed != buf->bufp->b_changed) |
1751 { | |
1752 #ifdef FEAT_WINDOWS | |
1753 check_status(buf->bufp); | |
1754 redraw_tabline = TRUE; | |
1755 #endif | |
1756 #ifdef FEAT_TITLE | |
1757 maketitle(); | |
1758 #endif | |
1759 update_screen(0); | |
1760 } | |
7 | 1761 /* =====================================================================*/ |
1762 } | |
33 | 1763 else if (streq((char *)cmd, "setModtime")) |
1764 { | |
840 | 1765 if (buf == NULL || buf->bufp == NULL) |
1618 | 1766 nbdebug((" invalid buffer identifier in setModtime\n")); |
840 | 1767 else |
1768 buf->bufp->b_mtime = atoi((char *)args); | |
33 | 1769 /* =====================================================================*/ |
1770 } | |
1771 else if (streq((char *)cmd, "setReadOnly")) | |
1772 { | |
840 | 1773 if (buf == NULL || buf->bufp == NULL) |
1618 | 1774 nbdebug((" invalid buffer identifier in setReadOnly\n")); |
840 | 1775 else if (streq((char *)args, "T")) |
33 | 1776 buf->bufp->b_p_ro = TRUE; |
1777 else | |
1778 buf->bufp->b_p_ro = FALSE; | |
1779 /* =====================================================================*/ | |
1780 } | |
7 | 1781 else if (streq((char *)cmd, "setMark")) |
1782 { | |
1783 /* not yet */ | |
1784 /* =====================================================================*/ | |
1785 } | |
1786 else if (streq((char *)cmd, "showBalloon")) | |
1787 { | |
1788 #if defined(FEAT_BEVAL) | |
1789 static char *text = NULL; | |
1790 | |
1791 /* | |
1792 * Set up the Balloon Expression Evaluation area. | |
1793 * Ignore 'ballooneval' here. | |
1794 * The text pointer must remain valid for a while. | |
1795 */ | |
1796 if (balloonEval != NULL) | |
1797 { | |
1798 vim_free(text); | |
1799 text = nb_unquote(args, NULL); | |
1800 if (text != NULL) | |
1801 gui_mch_post_balloon(balloonEval, (char_u *)text); | |
1802 } | |
1803 #endif | |
1804 /* =====================================================================*/ | |
1805 } | |
1806 else if (streq((char *)cmd, "setDot")) | |
1807 { | |
1808 pos_T *pos; | |
1809 #ifdef NBDEBUG | |
1810 char_u *s; | |
1811 #endif | |
1812 | |
1813 if (buf == NULL || buf->bufp == NULL) | |
1814 { | |
1618 | 1815 nbdebug((" invalid buffer identifier in setDot\n")); |
1816 EMSG("E647: invalid buffer identifier in setDot"); | |
7 | 1817 return FAIL; |
1818 } | |
1819 | |
659 | 1820 nb_set_curbuf(buf->bufp); |
1821 | |
7 | 1822 /* Don't want Visual mode now. */ |
1823 if (VIsual_active) | |
1824 end_visual_mode(); | |
1825 #ifdef NBDEBUG | |
1826 s = args; | |
1827 #endif | |
1828 pos = get_off_or_lnum(buf->bufp, &args); | |
1829 if (pos) | |
1830 { | |
1831 curwin->w_cursor = *pos; | |
1832 check_cursor(); | |
1833 #ifdef FEAT_FOLDING | |
1834 foldOpenCursor(); | |
1835 #endif | |
1836 } | |
1837 else | |
1884 | 1838 { |
7 | 1839 nbdebug((" BAD POSITION in setDot: %s\n", s)); |
1884 | 1840 } |
7 | 1841 |
1842 /* gui_update_cursor(TRUE, FALSE); */ | |
1843 /* update_curbuf(NOT_VALID); */ | |
1844 update_topline(); /* scroll to show the line */ | |
1845 update_screen(VALID); | |
1846 setcursor(); | |
2745 | 1847 cursor_on(); |
7 | 1848 out_flush(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1849 #ifdef FEAT_GUI |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1850 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1851 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1852 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1853 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1854 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1855 #endif |
7 | 1856 /* Quit a hit-return or more prompt. */ |
1857 if (State == HITRETURN || State == ASKMORE) | |
1858 { | |
1859 #ifdef FEAT_GUI_GTK | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1860 if (gui.in_use && gtk_main_level() > 0) |
7 | 1861 gtk_main_quit(); |
1862 #endif | |
1863 } | |
1864 /* =====================================================================*/ | |
1865 } | |
1866 else if (streq((char *)cmd, "close")) | |
1867 { | |
1868 #ifdef NBDEBUG | |
1869 char *name = "<NONE>"; | |
1870 #endif | |
1871 | |
1872 if (buf == NULL) | |
1873 { | |
1618 | 1874 nbdebug((" invalid buffer identifier in close\n")); |
1875 EMSG("E648: invalid buffer identifier in close"); | |
7 | 1876 return FAIL; |
1877 } | |
1878 | |
1879 #ifdef NBDEBUG | |
1880 if (buf->displayname != NULL) | |
1881 name = buf->displayname; | |
1882 #endif | |
1618 | 1883 if (buf->bufp == NULL) |
1884 { | |
1885 nbdebug((" invalid buffer identifier in close\n")); | |
1886 /* This message was commented out, probably because it can | |
1887 * happen when shutting down. */ | |
1888 if (p_verbose > 0) | |
1889 EMSG("E649: invalid buffer identifier in close"); | |
1890 } | |
7 | 1891 nbdebug((" CLOSE %d: %s\n", bufno, name)); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1892 #ifdef FEAT_GUI |
7 | 1893 need_mouse_correct = TRUE; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1894 #endif |
7 | 1895 if (buf->bufp != NULL) |
1896 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, | |
1897 buf->bufp->b_fnum, TRUE); | |
924 | 1898 buf->bufp = NULL; |
1899 buf->initDone = FALSE; | |
3263 | 1900 do_update = 1; |
7 | 1901 /* =====================================================================*/ |
1902 } | |
1903 else if (streq((char *)cmd, "setStyle")) /* obsolete... */ | |
1904 { | |
1618 | 1905 nbdebug((" setStyle is obsolete!\n")); |
7 | 1906 /* =====================================================================*/ |
1907 } | |
1908 else if (streq((char *)cmd, "setExitDelay")) | |
1909 { | |
33 | 1910 /* Only used in version 2.1. */ |
7 | 1911 /* =====================================================================*/ |
1912 } | |
1913 else if (streq((char *)cmd, "defineAnnoType")) | |
1914 { | |
1915 #ifdef FEAT_SIGNS | |
1916 int typeNum; | |
1917 char_u *typeName; | |
1918 char_u *tooltip; | |
1919 char_u *p; | |
1920 char_u *glyphFile; | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1921 int parse_error = FALSE; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1922 char_u *fg; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1923 char_u *bg; |
7 | 1924 |
1925 if (buf == NULL) | |
1926 { | |
1618 | 1927 nbdebug((" invalid buffer identifier in defineAnnoType\n")); |
1928 EMSG("E650: invalid buffer identifier in defineAnnoType"); | |
7 | 1929 return FAIL; |
1930 } | |
1931 | |
27 | 1932 cp = (char *)args; |
1933 typeNum = strtol(cp, &cp, 10); | |
1934 args = (char_u *)cp; | |
7 | 1935 args = skipwhite(args); |
1936 typeName = (char_u *)nb_unquote(args, &args); | |
1937 args = skipwhite(args + 1); | |
1938 tooltip = (char_u *)nb_unquote(args, &args); | |
1939 args = skipwhite(args + 1); | |
1940 | |
1941 p = (char_u *)nb_unquote(args, &args); | |
1942 glyphFile = vim_strsave_escaped(p, escape_chars); | |
1943 vim_free(p); | |
1944 | |
1945 args = skipwhite(args + 1); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1946 p = skiptowhite(args); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1947 if (*p != NUL) |
7 | 1948 { |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1949 *p = NUL; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1950 p = skipwhite(p + 1); |
7 | 1951 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1952 fg = vim_strsave(args); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1953 bg = vim_strsave(p); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1954 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH) |
7 | 1955 { |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1956 EMSG("E532: highlighting color name too long in defineAnnoType"); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1957 vim_free(typeName); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1958 parse_error = TRUE; |
7 | 1959 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1960 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1961 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg); |
7 | 1962 else |
1963 vim_free(typeName); | |
1964 | |
1965 /* don't free typeName; it's used directly in addsigntype() */ | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1966 vim_free(fg); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1967 vim_free(bg); |
7 | 1968 vim_free(tooltip); |
1969 vim_free(glyphFile); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1970 if (parse_error) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1971 return FAIL; |
7 | 1972 |
1973 #endif | |
1974 /* =====================================================================*/ | |
1975 } | |
1976 else if (streq((char *)cmd, "addAnno")) | |
1977 { | |
1978 #ifdef FEAT_SIGNS | |
1979 int serNum; | |
1980 int localTypeNum; | |
1981 int typeNum; | |
1982 pos_T *pos; | |
1983 | |
1984 if (buf == NULL || buf->bufp == NULL) | |
1985 { | |
1618 | 1986 nbdebug((" invalid buffer identifier in addAnno\n")); |
1987 EMSG("E651: invalid buffer identifier in addAnno"); | |
7 | 1988 return FAIL; |
1989 } | |
1990 | |
3263 | 1991 do_update = 1; |
7 | 1992 |
27 | 1993 cp = (char *)args; |
1994 serNum = strtol(cp, &cp, 10); | |
7 | 1995 |
1996 /* Get the typenr specific for this buffer and convert it to | |
1997 * the global typenumber, as used for the sign name. */ | |
27 | 1998 localTypeNum = strtol(cp, &cp, 10); |
1999 args = (char_u *)cp; | |
7 | 2000 typeNum = mapsigntype(buf, localTypeNum); |
2001 | |
2002 pos = get_off_or_lnum(buf->bufp, &args); | |
2003 | |
27 | 2004 cp = (char *)args; |
1757 | 2005 ignored = (int)strtol(cp, &cp, 10); |
27 | 2006 args = (char_u *)cp; |
7 | 2007 # ifdef NBDEBUG |
1757 | 2008 if (ignored != -1) |
7 | 2009 { |
1618 | 2010 nbdebug((" partial line annotation -- Not Yet Implemented!\n")); |
7 | 2011 } |
2012 # endif | |
2013 if (serNum >= GUARDEDOFFSET) | |
2014 { | |
1618 | 2015 nbdebug((" too many annotations! ignoring...\n")); |
7 | 2016 return FAIL; |
2017 } | |
2018 if (pos) | |
2019 { | |
1816 | 2020 coloncmd(":sign place %d line=%ld name=%d buffer=%d", |
7 | 2021 serNum, pos->lnum, typeNum, buf->bufp->b_fnum); |
2022 if (typeNum == curPCtype) | |
2023 coloncmd(":sign jump %d buffer=%d", serNum, | |
2024 buf->bufp->b_fnum); | |
2025 } | |
2026 #endif | |
2027 /* =====================================================================*/ | |
2028 } | |
2029 else if (streq((char *)cmd, "removeAnno")) | |
2030 { | |
2031 #ifdef FEAT_SIGNS | |
2032 int serNum; | |
2033 | |
2034 if (buf == NULL || buf->bufp == NULL) | |
2035 { | |
1618 | 2036 nbdebug((" invalid buffer identifier in removeAnno\n")); |
7 | 2037 return FAIL; |
2038 } | |
3263 | 2039 do_update = 1; |
27 | 2040 cp = (char *)args; |
2041 serNum = strtol(cp, &cp, 10); | |
2042 args = (char_u *)cp; | |
7 | 2043 coloncmd(":sign unplace %d buffer=%d", |
2044 serNum, buf->bufp->b_fnum); | |
2045 redraw_buf_later(buf->bufp, NOT_VALID); | |
2046 #endif | |
2047 /* =====================================================================*/ | |
2048 } | |
2049 else if (streq((char *)cmd, "moveAnnoToFront")) | |
2050 { | |
2051 #ifdef FEAT_SIGNS | |
1618 | 2052 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n")); |
7 | 2053 #endif |
2054 /* =====================================================================*/ | |
2055 } | |
2056 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard")) | |
2057 { | |
2058 int len; | |
2059 pos_T first; | |
2060 pos_T last; | |
2061 pos_T *pos; | |
2062 int un = (cmd[0] == 'u'); | |
2063 static int guardId = GUARDEDOFFSET; | |
2064 | |
2065 if (skip >= SKIP_STOP) | |
2066 { | |
2067 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
2068 return OK; | |
2069 } | |
2070 | |
2071 nb_init_graphics(); | |
2072 | |
2073 if (buf == NULL || buf->bufp == NULL) | |
2074 { | |
1618 | 2075 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2076 return FAIL; |
2077 } | |
659 | 2078 nb_set_curbuf(buf->bufp); |
27 | 2079 cp = (char *)args; |
2080 off = strtol(cp, &cp, 10); | |
2081 len = strtol(cp, NULL, 10); | |
2082 args = (char_u *)cp; | |
7 | 2083 pos = off2pos(buf->bufp, off); |
3263 | 2084 do_update = 1; |
7 | 2085 if (!pos) |
2086 nbdebug((" no such start pos in %s, %ld\n", cmd, off)); | |
2087 else | |
2088 { | |
2089 first = *pos; | |
2090 pos = off2pos(buf->bufp, off + len - 1); | |
33 | 2091 if (pos != NULL && pos->col == 0) |
2092 { | |
7 | 2093 /* |
2094 * In Java Swing the offset is a position between 2 | |
2095 * characters. If col == 0 then we really want the | |
2096 * previous line as the end. | |
2097 */ | |
2098 pos = off2pos(buf->bufp, off + len - 2); | |
2099 } | |
2100 if (!pos) | |
2101 nbdebug((" no such end pos in %s, %ld\n", | |
2102 cmd, off + len - 1)); | |
2103 else | |
2104 { | |
2105 long lnum; | |
2106 last = *pos; | |
2107 /* set highlight for region */ | |
2108 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "", | |
2109 first.lnum, first.col, | |
2110 last.lnum, last.col)); | |
2111 #ifdef FEAT_SIGNS | |
2112 for (lnum = first.lnum; lnum <= last.lnum; lnum++) | |
2113 { | |
2114 if (un) | |
2115 { | |
2116 /* never used */ | |
2117 } | |
2118 else | |
2119 { | |
2120 if (buf_findsigntype_id(buf->bufp, lnum, | |
2121 GUARDED) == 0) | |
2122 { | |
2123 coloncmd( | |
1816 | 2124 ":sign place %d line=%ld name=%d buffer=%d", |
7 | 2125 guardId++, lnum, GUARDED, |
2126 buf->bufp->b_fnum); | |
2127 } | |
2128 } | |
2129 } | |
2130 #endif | |
2131 redraw_buf_later(buf->bufp, NOT_VALID); | |
2132 } | |
2133 } | |
2134 /* =====================================================================*/ | |
2135 } | |
2136 else if (streq((char *)cmd, "startAtomic")) | |
2137 { | |
2138 inAtomic = 1; | |
2139 /* =====================================================================*/ | |
2140 } | |
2141 else if (streq((char *)cmd, "endAtomic")) | |
2142 { | |
2143 inAtomic = 0; | |
2144 if (needupdate) | |
2145 { | |
3263 | 2146 do_update = 1; |
7 | 2147 needupdate = 0; |
2148 } | |
2149 /* =====================================================================*/ | |
2150 } | |
2151 else if (streq((char *)cmd, "save")) | |
2152 { | |
33 | 2153 /* |
2154 * NOTE - This command is obsolete wrt NetBeans. Its left in | |
2155 * only for historical reasons. | |
2156 */ | |
7 | 2157 if (buf == NULL || buf->bufp == NULL) |
2158 { | |
1618 | 2159 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2160 return FAIL; |
2161 } | |
2162 | |
2163 /* the following is taken from ex_cmds.c (do_wqall function) */ | |
2164 if (bufIsChanged(buf->bufp)) | |
2165 { | |
2166 /* Only write if the buffer can be written. */ | |
2167 if (p_write | |
2168 && !buf->bufp->b_p_ro | |
2169 && buf->bufp->b_ffname != NULL | |
2170 #ifdef FEAT_QUICKFIX | |
2171 && !bt_dontwrite(buf->bufp) | |
2172 #endif | |
2173 ) | |
2174 { | |
2175 buf_write_all(buf->bufp, FALSE); | |
2176 #ifdef FEAT_AUTOCMD | |
2177 /* an autocommand may have deleted the buffer */ | |
2178 if (!buf_valid(buf->bufp)) | |
2179 buf->bufp = NULL; | |
2180 #endif | |
2181 } | |
2182 } | |
1618 | 2183 else |
2184 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2185 nbdebug((" Buffer has no changes!\n")); |
1618 | 2186 } |
7 | 2187 /* =====================================================================*/ |
2188 } | |
2189 else if (streq((char *)cmd, "netbeansBuffer")) | |
2190 { | |
2191 if (buf == NULL || buf->bufp == NULL) | |
2192 { | |
1618 | 2193 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2194 return FAIL; |
2195 } | |
2196 if (*args == 'T') | |
2197 { | |
2198 buf->bufp->b_netbeans_file = TRUE; | |
2199 buf->bufp->b_was_netbeans_file = TRUE; | |
2200 } | |
2201 else | |
2202 buf->bufp->b_netbeans_file = FALSE; | |
2203 /* =====================================================================*/ | |
2204 } | |
33 | 2205 else if (streq((char *)cmd, "specialKeys")) |
2206 { | |
2207 special_keys(args); | |
2208 /* =====================================================================*/ | |
2209 } | |
2210 else if (streq((char *)cmd, "actionMenuItem")) | |
2211 { | |
2212 /* not used yet */ | |
2213 /* =====================================================================*/ | |
2214 } | |
7 | 2215 else if (streq((char *)cmd, "version")) |
2216 { | |
33 | 2217 /* not used yet */ |
7 | 2218 } |
1618 | 2219 else |
2220 { | |
2221 nbdebug(("Unrecognised command: %s\n", cmd)); | |
2222 } | |
7 | 2223 /* |
2224 * Unrecognized command is ignored. | |
2225 */ | |
2226 } | |
3263 | 2227 if (inAtomic && do_update) |
7 | 2228 { |
2229 needupdate = 1; | |
3263 | 2230 do_update = 0; |
7 | 2231 } |
2232 | |
33 | 2233 /* |
2234 * Is this needed? I moved the netbeans_Xt_connect() later during startup | |
2235 * and it may no longer be necessary. If its not needed then needupdate | |
3263 | 2236 * and do_update can also be removed. |
33 | 2237 */ |
3263 | 2238 if (buf != NULL && buf->initDone && do_update) |
7 | 2239 { |
2240 update_screen(NOT_VALID); | |
2241 setcursor(); | |
2745 | 2242 cursor_on(); |
7 | 2243 out_flush(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2244 #ifdef FEAT_GUI |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2245 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2246 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2247 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2248 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2249 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2250 #endif |
7 | 2251 /* Quit a hit-return or more prompt. */ |
2252 if (State == HITRETURN || State == ASKMORE) | |
2253 { | |
2254 #ifdef FEAT_GUI_GTK | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2255 if (gui.in_use && gtk_main_level() > 0) |
7 | 2256 gtk_main_quit(); |
2257 #endif | |
2258 } | |
2259 } | |
2260 | |
2261 return retval; | |
2262 } | |
2263 | |
2264 | |
2265 /* | |
659 | 2266 * If "buf" is not the current buffer try changing to a window that edits this |
2267 * buffer. If there is no such window then close the current buffer and set | |
2268 * the current buffer as "buf". | |
2269 */ | |
2270 static void | |
1492 | 2271 nb_set_curbuf(buf_T *buf) |
659 | 2272 { |
6677 | 2273 if (curbuf != buf) { |
2274 if (buf_jump_open_win(buf) != NULL) | |
2275 return; | |
2276 # ifdef FEAT_WINDOWS | |
2277 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf) != NULL) | |
2278 return; | |
2279 # endif | |
659 | 2280 set_curbuf(buf, DOBUF_GOTO); |
6677 | 2281 } |
659 | 2282 } |
2283 | |
2284 /* | |
7 | 2285 * Process a vim colon command. |
2286 */ | |
2287 static void | |
2288 coloncmd(char *cmd, ...) | |
2289 { | |
2290 char buf[1024]; | |
2291 va_list ap; | |
2292 | |
2293 va_start(ap, cmd); | |
1916 | 2294 vim_vsnprintf(buf, sizeof(buf), cmd, ap, NULL); |
7 | 2295 va_end(ap); |
2296 | |
2297 nbdebug((" COLONCMD %s\n", buf)); | |
2298 | |
2299 /* ALT_INPUT_LOCK_ON; */ | |
2300 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED); | |
2301 /* ALT_INPUT_LOCK_OFF; */ | |
2302 | |
2303 setcursor(); /* restore the cursor position */ | |
2304 out_flush(); /* make sure output has been written */ | |
2305 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2306 #ifdef FEAT_GUI |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2307 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2308 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2309 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2310 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2311 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2312 #endif |
7 | 2313 } |
2314 | |
2315 | |
2316 /* | |
33 | 2317 * Parse the specialKeys argument and issue the appropriate map commands. |
2318 */ | |
2319 static void | |
2320 special_keys(char_u *args) | |
2321 { | |
2322 char *save_str = nb_unquote(args, NULL); | |
2323 char *tok = strtok(save_str, " "); | |
2324 char *sep; | |
2325 char keybuf[64]; | |
2326 char cmdbuf[256]; | |
2327 | |
2328 while (tok != NULL) | |
2329 { | |
2330 int i = 0; | |
2331 | |
2332 if ((sep = strchr(tok, '-')) != NULL) | |
2333 { | |
36 | 2334 *sep = NUL; |
33 | 2335 while (*tok) |
2336 { | |
2337 switch (*tok) | |
2338 { | |
2339 case 'A': | |
2340 case 'M': | |
2341 case 'C': | |
2342 case 'S': | |
2343 keybuf[i++] = *tok; | |
2344 keybuf[i++] = '-'; | |
2345 break; | |
2346 } | |
2347 tok++; | |
2348 } | |
2349 tok++; | |
2350 } | |
2351 | |
2352 strcpy(&keybuf[i], tok); | |
272 | 2353 vim_snprintf(cmdbuf, sizeof(cmdbuf), |
2354 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf); | |
33 | 2355 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE); |
2356 tok = strtok(NULL, " "); | |
2357 } | |
2358 vim_free(save_str); | |
2359 } | |
2360 | |
2210 | 2361 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2362 ex_nbclose(exarg_T *eap UNUSED) |
2210 | 2363 { |
2364 netbeans_close(); | |
2365 } | |
33 | 2366 |
2367 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2368 ex_nbkey(exarg_T *eap) |
33 | 2369 { |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2370 (void)netbeans_keystring(eap->arg); |
33 | 2371 } |
2372 | |
2210 | 2373 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2374 ex_nbstart( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2375 exarg_T *eap) |
2210 | 2376 { |
2595 | 2377 #ifdef FEAT_GUI |
2378 # if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \ | |
2639 | 2379 && !defined(FEAT_GUI_W32) |
2595 | 2380 if (gui.in_use) |
2381 { | |
2639 | 2382 EMSG(_("E838: netbeans is not supported with this GUI")); |
2383 return; | |
2595 | 2384 } |
2385 # endif | |
2386 #endif | |
2210 | 2387 netbeans_open((char *)eap->arg, FALSE); |
2388 } | |
33 | 2389 |
2390 /* | |
7 | 2391 * Initialize highlights and signs for use by netbeans (mostly obsolete) |
2392 */ | |
2393 static void | |
2394 nb_init_graphics(void) | |
2395 { | |
2396 static int did_init = FALSE; | |
2397 | |
2398 if (!did_init) | |
2399 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2400 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black" |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2401 " ctermbg=LightCyan ctermfg=Black"); |
7 | 2402 coloncmd(":sign define %d linehl=NBGuarded", GUARDED); |
2403 | |
2404 did_init = TRUE; | |
2405 } | |
2406 } | |
2407 | |
2408 /* | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2409 * Convert key to netbeans name. This uses the global "mod_mask". |
7 | 2410 */ |
2411 static void | |
2412 netbeans_keyname(int key, char *buf) | |
2413 { | |
2414 char *name = 0; | |
2415 char namebuf[2]; | |
2416 int ctrl = 0; | |
2417 int shift = 0; | |
2418 int alt = 0; | |
2419 | |
2420 if (mod_mask & MOD_MASK_CTRL) | |
2421 ctrl = 1; | |
2422 if (mod_mask & MOD_MASK_SHIFT) | |
2423 shift = 1; | |
2424 if (mod_mask & MOD_MASK_ALT) | |
2425 alt = 1; | |
2426 | |
2427 | |
2428 switch (key) | |
2429 { | |
2430 case K_F1: name = "F1"; break; | |
2431 case K_S_F1: name = "F1"; shift = 1; break; | |
2432 case K_F2: name = "F2"; break; | |
2433 case K_S_F2: name = "F2"; shift = 1; break; | |
2434 case K_F3: name = "F3"; break; | |
2435 case K_S_F3: name = "F3"; shift = 1; break; | |
2436 case K_F4: name = "F4"; break; | |
2437 case K_S_F4: name = "F4"; shift = 1; break; | |
2438 case K_F5: name = "F5"; break; | |
2439 case K_S_F5: name = "F5"; shift = 1; break; | |
2440 case K_F6: name = "F6"; break; | |
2441 case K_S_F6: name = "F6"; shift = 1; break; | |
2442 case K_F7: name = "F7"; break; | |
2443 case K_S_F7: name = "F7"; shift = 1; break; | |
2444 case K_F8: name = "F8"; break; | |
2445 case K_S_F8: name = "F8"; shift = 1; break; | |
2446 case K_F9: name = "F9"; break; | |
2447 case K_S_F9: name = "F9"; shift = 1; break; | |
2448 case K_F10: name = "F10"; break; | |
2449 case K_S_F10: name = "F10"; shift = 1; break; | |
2450 case K_F11: name = "F11"; break; | |
2451 case K_S_F11: name = "F11"; shift = 1; break; | |
2452 case K_F12: name = "F12"; break; | |
2453 case K_S_F12: name = "F12"; shift = 1; break; | |
2454 default: | |
2455 if (key >= ' ' && key <= '~') | |
2456 { | |
2457 /* Allow ASCII characters. */ | |
2458 name = namebuf; | |
2459 namebuf[0] = key; | |
2460 namebuf[1] = NUL; | |
2461 } | |
2462 else | |
2463 name = "X"; | |
2464 break; | |
2465 } | |
2466 | |
2467 buf[0] = '\0'; | |
2468 if (ctrl) | |
2469 strcat(buf, "C"); | |
2470 if (shift) | |
2471 strcat(buf, "S"); | |
2472 if (alt) | |
2473 strcat(buf, "M"); /* META */ | |
2474 if (ctrl || shift || alt) | |
2475 strcat(buf, "-"); | |
2476 strcat(buf, name); | |
2477 } | |
2478 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2479 #if defined(FEAT_BEVAL) || defined(PROTO) |
7 | 2480 /* |
2481 * Function to be called for balloon evaluation. Grabs the text under the | |
2482 * cursor and sends it to the debugger for evaluation. The debugger should | |
2483 * respond with a showBalloon command when there is a useful result. | |
2484 */ | |
183 | 2485 void |
7 | 2486 netbeans_beval_cb( |
2487 BalloonEval *beval, | |
1884 | 2488 int state UNUSED) |
7 | 2489 { |
183 | 2490 win_T *wp; |
7 | 2491 char_u *text; |
183 | 2492 linenr_T lnum; |
7 | 2493 int col; |
2770 | 2494 char *buf; |
7 | 2495 char_u *p; |
2496 | |
2497 /* Don't do anything when 'ballooneval' is off, messages scrolled the | |
2498 * windows up or we have no connection. */ | |
2210 | 2499 if (!p_beval || msg_scrolled > 0 || !NETBEANS_OPEN) |
7 | 2500 return; |
2501 | |
183 | 2502 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK) |
7 | 2503 { |
2504 /* Send debugger request. Only when the text is of reasonable | |
2505 * length. */ | |
2506 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL) | |
2507 { | |
2770 | 2508 buf = (char *)alloc(MAXPATHL * 2 + 25); |
2509 if (buf != NULL) | |
33 | 2510 { |
2770 | 2511 p = nb_quote(text); |
2512 if (p != NULL) | |
2513 { | |
2514 vim_snprintf(buf, MAXPATHL * 2 + 25, | |
2515 "0:balloonText=%d \"%s\"\n", r_cmdno, p); | |
2516 vim_free(p); | |
2517 } | |
2518 nbdebug(("EVT: %s", buf)); | |
2519 nb_send(buf, "netbeans_beval_cb"); | |
2520 vim_free(buf); | |
33 | 2521 } |
7 | 2522 } |
2523 vim_free(text); | |
2524 } | |
2525 } | |
2526 #endif | |
2527 | |
2528 /* | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2529 * Return TRUE when the netbeans connection is active. |
2210 | 2530 */ |
2531 int | |
2532 netbeans_active(void) | |
2533 { | |
2534 return NETBEANS_OPEN; | |
2535 } | |
2536 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2537 /* |
7 | 2538 * Tell netbeans that the window was opened, ready for commands. |
2539 */ | |
2540 void | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
2541 netbeans_open(char *params, int doabort) |
7 | 2542 { |
2543 char *cmd = "0:startupDone=0\n"; | |
2544 | |
2210 | 2545 if (NETBEANS_OPEN) |
2546 { | |
2547 EMSG(_("E511: netbeans already connected")); | |
7 | 2548 return; |
2210 | 2549 } |
2550 | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
2551 if (netbeans_connect(params, doabort) != OK) |
7 | 2552 return; |
183 | 2553 |
7 | 2554 nbdebug(("EVT: %s", cmd)); |
2555 nb_send(cmd, "netbeans_startup_done"); | |
2210 | 2556 |
2557 /* update the screen after having added the gutter */ | |
2558 changed_window_setting(); | |
2559 update_screen(CLEAR); | |
2560 setcursor(); | |
2745 | 2561 cursor_on(); |
2210 | 2562 out_flush(); |
2563 #ifdef FEAT_GUI | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2564 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2565 { |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2566 gui_update_cursor(TRUE, FALSE); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2567 gui_mch_flush(); |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2568 } |
2210 | 2569 #endif |
7 | 2570 } |
2571 | |
33 | 2572 /* |
2573 * Tell netbeans that we're exiting. This should be called right | |
2574 * before calling exit. | |
2575 */ | |
2576 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2577 netbeans_send_disconnect(void) |
33 | 2578 { |
2579 char buf[128]; | |
2580 | |
2210 | 2581 if (NETBEANS_OPEN) |
33 | 2582 { |
944 | 2583 sprintf(buf, "0:disconnect=%d\n", r_cmdno); |
33 | 2584 nbdebug(("EVT: %s", buf)); |
2585 nb_send(buf, "netbeans_disconnect"); | |
2586 } | |
2587 } | |
2588 | |
9052
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2589 #if defined(FEAT_EVAL) || defined(PROTO) |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2590 int |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2591 set_ref_in_nb_channel(int copyID) |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2592 { |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2593 int abort = FALSE; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2594 typval_T tv; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2595 |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2596 if (nb_channel != NULL) |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2597 { |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2598 tv.v_type = VAR_CHANNEL; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2599 tv.vval.v_channel = nb_channel; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2600 abort = set_ref_in_item(&tv, copyID, NULL, NULL); |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2601 } |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2602 return abort; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2603 } |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2604 #endif |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2605 |
2592 | 2606 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_W32) || defined(PROTO) |
7 | 2607 /* |
2608 * Tell netbeans that the window was moved or resized. | |
2609 */ | |
2610 void | |
2611 netbeans_frame_moved(int new_x, int new_y) | |
2612 { | |
2613 char buf[128]; | |
2614 | |
2210 | 2615 if (!NETBEANS_OPEN) |
7 | 2616 return; |
2617 | |
2618 sprintf(buf, "0:geometry=%d %d %d %d %d\n", | |
944 | 2619 r_cmdno, (int)Columns, (int)Rows, new_x, new_y); |
33 | 2620 /*nbdebug(("EVT: %s", buf)); happens too many times during a move */ |
7 | 2621 nb_send(buf, "netbeans_frame_moved"); |
2622 } | |
2623 #endif | |
2624 | |
2625 /* | |
33 | 2626 * Tell netbeans the user opened or activated a file. |
2627 */ | |
2628 void | |
2629 netbeans_file_activated(buf_T *bufp) | |
2630 { | |
2631 int bufno = nb_getbufno(bufp); | |
2632 nbbuf_T *bp = nb_get_buf(bufno); | |
2633 char buffer[2*MAXPATHL]; | |
2634 char_u *q; | |
2635 | |
2210 | 2636 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible) |
33 | 2637 return; |
2638 | |
2639 q = nb_quote(bufp->b_ffname); | |
840 | 2640 if (q == NULL || bp == NULL) |
33 | 2641 return; |
2642 | |
272 | 2643 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n", |
33 | 2644 bufno, |
2645 bufno, | |
2646 (char *)q, | |
2647 "T", /* open in NetBeans */ | |
2648 "F"); /* modified */ | |
2649 | |
2650 vim_free(q); | |
2651 nbdebug(("EVT: %s", buffer)); | |
2652 | |
2653 nb_send(buffer, "netbeans_file_opened"); | |
2654 } | |
2655 | |
2656 /* | |
7 | 2657 * Tell netbeans the user opened a file. |
2658 */ | |
2659 void | |
33 | 2660 netbeans_file_opened(buf_T *bufp) |
7 | 2661 { |
33 | 2662 int bufno = nb_getbufno(bufp); |
7 | 2663 char buffer[2*MAXPATHL]; |
2664 char_u *q; | |
33 | 2665 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp)); |
2666 int bnum; | |
7 | 2667 |
2210 | 2668 if (!NETBEANS_OPEN) |
7 | 2669 return; |
2670 | |
33 | 2671 q = nb_quote(bufp->b_ffname); |
7 | 2672 if (q == NULL) |
2673 return; | |
33 | 2674 if (bp != NULL) |
2675 bnum = bufno; | |
2676 else | |
2677 bnum = 0; | |
2678 | |
272 | 2679 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n", |
33 | 2680 bnum, |
7 | 2681 0, |
2682 (char *)q, | |
2683 "T", /* open in NetBeans */ | |
2684 "F"); /* modified */ | |
2685 | |
2686 vim_free(q); | |
2687 nbdebug(("EVT: %s", buffer)); | |
2688 | |
2689 nb_send(buffer, "netbeans_file_opened"); | |
33 | 2690 if (p_acd && vim_chdirfile(bufp->b_ffname) == OK) |
7 | 2691 shorten_fnames(TRUE); |
2692 } | |
2693 | |
2694 /* | |
1781 | 2695 * Tell netbeans that a file was deleted or wiped out. |
7 | 2696 */ |
2697 void | |
1781 | 2698 netbeans_file_killed(buf_T *bufp) |
7 | 2699 { |
2700 int bufno = nb_getbufno(bufp); | |
2701 nbbuf_T *nbbuf = nb_get_buf(bufno); | |
2702 char buffer[2*MAXPATHL]; | |
2703 | |
2210 | 2704 if (!NETBEANS_OPEN || bufno == -1) |
7 | 2705 return; |
1781 | 2706 |
2707 nbdebug(("netbeans_file_killed:\n")); | |
2708 nbdebug((" Killing bufno: %d", bufno)); | |
7 | 2709 |
944 | 2710 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno); |
7 | 2711 |
2712 nbdebug(("EVT: %s", buffer)); | |
2713 | |
1781 | 2714 nb_send(buffer, "netbeans_file_killed"); |
7 | 2715 |
2716 if (nbbuf != NULL) | |
2717 nbbuf->bufp = NULL; | |
2718 } | |
2719 | |
2720 /* | |
2721 * Get a pointer to the Netbeans buffer for Vim buffer "bufp". | |
2722 * Return NULL if there is no such buffer or changes are not to be reported. | |
2723 * Otherwise store the buffer number in "*bufnop". | |
2724 */ | |
2725 static nbbuf_T * | |
2726 nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop) | |
2727 { | |
2728 int bufno; | |
2729 nbbuf_T *nbbuf; | |
2730 | |
2210 | 2731 if (!NETBEANS_OPEN || !netbeansFireChanges) |
7 | 2732 return NULL; /* changes are not reported at all */ |
2733 | |
2734 bufno = nb_getbufno(bufp); | |
2735 if (bufno <= 0) | |
2736 return NULL; /* file is not known to NetBeans */ | |
2737 | |
2738 nbbuf = nb_get_buf(bufno); | |
2739 if (nbbuf != NULL && !nbbuf->fireChanges) | |
2740 return NULL; /* changes in this buffer are not reported */ | |
2741 | |
2742 *bufnop = bufno; | |
2743 return nbbuf; | |
2744 } | |
2745 | |
2746 /* | |
2747 * Tell netbeans the user inserted some text. | |
2748 */ | |
2749 void | |
2750 netbeans_inserted( | |
2751 buf_T *bufp, | |
2752 linenr_T linenr, | |
2753 colnr_T col, | |
2754 char_u *txt, | |
2755 int newlen) | |
2756 { | |
2757 char_u *buf; | |
2758 int bufno; | |
2759 nbbuf_T *nbbuf; | |
2760 pos_T pos; | |
2761 long off; | |
2762 char_u *p; | |
2763 char_u *newtxt; | |
2764 | |
2210 | 2765 if (!NETBEANS_OPEN) |
2766 return; | |
2767 | |
7 | 2768 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2769 if (nbbuf == NULL) | |
2770 return; | |
2771 | |
33 | 2772 /* Don't mark as modified for initial read */ |
2773 if (nbbuf->insertDone) | |
2774 nbbuf->modified = 1; | |
7 | 2775 |
2776 pos.lnum = linenr; | |
2777 pos.col = col; | |
2778 off = pos2off(bufp, &pos); | |
2779 | |
2780 /* send the "insert" EVT */ | |
2781 newtxt = alloc(newlen + 1); | |
416 | 2782 vim_strncpy(newtxt, txt, newlen); |
7 | 2783 p = nb_quote(newtxt); |
2784 if (p != NULL) | |
2785 { | |
33 | 2786 buf = alloc(128 + 2*newlen); |
944 | 2787 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n", |
2788 bufno, r_cmdno, off, p); | |
7 | 2789 nbdebug(("EVT: %s", buf)); |
2790 nb_send((char *)buf, "netbeans_inserted"); | |
33 | 2791 vim_free(p); |
2792 vim_free(buf); | |
7 | 2793 } |
2794 vim_free(newtxt); | |
2795 } | |
2796 | |
2797 /* | |
2798 * Tell netbeans some bytes have been removed. | |
2799 */ | |
2800 void | |
2801 netbeans_removed( | |
2802 buf_T *bufp, | |
2803 linenr_T linenr, | |
2804 colnr_T col, | |
2805 long len) | |
2806 { | |
2807 char_u buf[128]; | |
2808 int bufno; | |
2809 nbbuf_T *nbbuf; | |
2810 pos_T pos; | |
2811 long off; | |
2812 | |
2210 | 2813 if (!NETBEANS_OPEN) |
2814 return; | |
2815 | |
7 | 2816 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2817 if (nbbuf == NULL) | |
2818 return; | |
2819 | |
2820 if (len < 0) | |
2821 { | |
1618 | 2822 nbdebug(("Negative len %ld in netbeans_removed()!\n", len)); |
7 | 2823 return; |
2824 } | |
2825 | |
2826 nbbuf->modified = 1; | |
2827 | |
2828 pos.lnum = linenr; | |
2829 pos.col = col; | |
2830 | |
2831 off = pos2off(bufp, &pos); | |
2832 | |
944 | 2833 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len); |
7 | 2834 nbdebug(("EVT: %s", buf)); |
2835 nb_send((char *)buf, "netbeans_removed"); | |
2836 } | |
2837 | |
2838 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
2839 * Send netbeans an unmodified command. |
7 | 2840 */ |
2841 void | |
1884 | 2842 netbeans_unmodified(buf_T *bufp UNUSED) |
7 | 2843 { |
2520 | 2844 /* This is a no-op, because NetBeans considers a buffer modified |
7 | 2845 * even when all changes have been undone. */ |
2846 } | |
2847 | |
2848 /* | |
2849 * Send a button release event back to netbeans. Its up to netbeans | |
2850 * to decide what to do (if anything) with this event. | |
2851 */ | |
2852 void | |
2853 netbeans_button_release(int button) | |
2854 { | |
2855 char buf[128]; | |
2856 int bufno; | |
2857 | |
2210 | 2858 if (!NETBEANS_OPEN) |
2859 return; | |
2860 | |
7 | 2861 bufno = nb_getbufno(curbuf); |
2862 | |
2863 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf) | |
2864 { | |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2156
diff
changeset
|
2865 int col = mouse_col - W_WINCOL(curwin) |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2866 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1); |
7 | 2867 long off = pos2off(curbuf, &curwin->w_cursor); |
2868 | |
2869 /* sync the cursor position */ | |
944 | 2870 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off); |
7 | 2871 nbdebug(("EVT: %s", buf)); |
2872 nb_send(buf, "netbeans_button_release[newDotAndMark]"); | |
2873 | |
944 | 2874 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno, |
7 | 2875 button, (long)curwin->w_cursor.lnum, col); |
2876 nbdebug(("EVT: %s", buf)); | |
2877 nb_send(buf, "netbeans_button_release"); | |
2878 } | |
2879 } | |
2880 | |
2881 | |
2882 /* | |
1186 | 2883 * Send a keypress event back to netbeans. This usually simulates some |
33 | 2884 * kind of function key press. This function operates on a key code. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2885 * Return TRUE when the key was sent, FALSE when the command has been |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2886 * postponed. |
7 | 2887 */ |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2888 int |
7 | 2889 netbeans_keycommand(int key) |
2890 { | |
33 | 2891 char keyName[60]; |
2892 | |
2893 netbeans_keyname(key, keyName); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2894 return netbeans_keystring((char_u *)keyName); |
33 | 2895 } |
2896 | |
2897 | |
2898 /* | |
1186 | 2899 * Send a keypress event back to netbeans. This usually simulates some |
33 | 2900 * kind of function key press. This function operates on a key string. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2901 * Return TRUE when the key was sent, FALSE when the command has been |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2902 * postponed. |
33 | 2903 */ |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2904 static int |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2905 netbeans_keystring(char_u *keyName) |
33 | 2906 { |
7 | 2907 char buf[2*MAXPATHL]; |
33 | 2908 int bufno = nb_getbufno(curbuf); |
7 | 2909 long off; |
2910 char_u *q; | |
2911 | |
2210 | 2912 if (!NETBEANS_OPEN) |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2913 return TRUE; |
7 | 2914 |
2915 if (bufno == -1) | |
2916 { | |
2917 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n")); | |
2918 q = curbuf->b_ffname == NULL ? (char_u *)"" | |
2919 : nb_quote(curbuf->b_ffname); | |
2920 if (q == NULL) | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2921 return TRUE; |
272 | 2922 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0, |
7 | 2923 q, |
2924 "T", /* open in NetBeans */ | |
2925 "F"); /* modified */ | |
2926 if (curbuf->b_ffname != NULL) | |
2927 vim_free(q); | |
2928 nbdebug(("EVT: %s", buf)); | |
2929 nb_send(buf, "netbeans_keycommand"); | |
2930 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2931 postpone_keycommand(keyName); |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2932 return FALSE; |
7 | 2933 } |
2934 | |
2935 /* sync the cursor position */ | |
2936 off = pos2off(curbuf, &curwin->w_cursor); | |
944 | 2937 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off); |
7 | 2938 nbdebug(("EVT: %s", buf)); |
2939 nb_send(buf, "netbeans_keycommand"); | |
2940 | |
2941 /* To work on Win32 you must apply patch to ExtEditor module | |
2942 * from ExtEdCaret.java.diff - make EVT_newDotAndMark handler | |
2943 * more synchronous | |
2944 */ | |
2945 | |
2946 /* now send keyCommand event */ | |
272 | 2947 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n", |
944 | 2948 bufno, r_cmdno, keyName); |
7 | 2949 nbdebug(("EVT: %s", buf)); |
2950 nb_send(buf, "netbeans_keycommand"); | |
2951 | |
2952 /* New: do both at once and include the lnum/col. */ | |
272 | 2953 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n", |
944 | 2954 bufno, r_cmdno, keyName, |
7 | 2955 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col); |
2956 nbdebug(("EVT: %s", buf)); | |
2957 nb_send(buf, "netbeans_keycommand"); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2958 return TRUE; |
7 | 2959 } |
2960 | |
2961 | |
2962 /* | |
2963 * Send a save event to netbeans. | |
2964 */ | |
2965 void | |
2966 netbeans_save_buffer(buf_T *bufp) | |
2967 { | |
2968 char_u buf[64]; | |
2969 int bufno; | |
2970 nbbuf_T *nbbuf; | |
2971 | |
2210 | 2972 if (!NETBEANS_OPEN) |
2973 return; | |
2974 | |
7 | 2975 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2976 if (nbbuf == NULL) | |
2977 return; | |
2978 | |
2979 nbbuf->modified = 0; | |
2980 | |
944 | 2981 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno); |
7 | 2982 nbdebug(("EVT: %s", buf)); |
2983 nb_send((char *)buf, "netbeans_save_buffer"); | |
2984 } | |
2985 | |
2986 | |
2987 /* | |
2988 * Send remove command to netbeans (this command has been turned off). | |
2989 */ | |
2990 void | |
2991 netbeans_deleted_all_lines(buf_T *bufp) | |
2992 { | |
2993 char_u buf[64]; | |
2994 int bufno; | |
2995 nbbuf_T *nbbuf; | |
2996 | |
2210 | 2997 if (!NETBEANS_OPEN) |
2998 return; | |
2999 | |
7 | 3000 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
3001 if (nbbuf == NULL) | |
3002 return; | |
3003 | |
33 | 3004 /* Don't mark as modified for initial read */ |
3005 if (nbbuf->insertDone) | |
3006 nbbuf->modified = 1; | |
7 | 3007 |
944 | 3008 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno); |
7 | 3009 nbdebug(("EVT(suppressed): %s", buf)); |
3010 /* nb_send(buf, "netbeans_deleted_all_lines"); */ | |
3011 } | |
3012 | |
3013 | |
3014 /* | |
3015 * See if the lines are guarded. The top and bot parameters are from | |
3016 * u_savecommon(), these are the line above the change and the line below the | |
3017 * change. | |
3018 */ | |
3019 int | |
3020 netbeans_is_guarded(linenr_T top, linenr_T bot) | |
3021 { | |
3022 signlist_T *p; | |
3023 int lnum; | |
3024 | |
2210 | 3025 if (!NETBEANS_OPEN) |
3026 return FALSE; | |
3027 | |
7 | 3028 for (p = curbuf->b_signlist; p != NULL; p = p->next) |
3029 if (p->id >= GUARDEDOFFSET) | |
3030 for (lnum = top + 1; lnum < bot; lnum++) | |
3031 if (lnum == p->lnum) | |
3032 return TRUE; | |
3033 | |
3034 return FALSE; | |
3035 } | |
3036 | |
2592 | 3037 #if defined(FEAT_GUI_X11) || defined(PROTO) |
7 | 3038 /* |
3039 * We have multiple signs to draw at the same location. Draw the | |
3040 * multi-sign indicator instead. This is the Motif version. | |
3041 */ | |
3042 void | |
3043 netbeans_draw_multisign_indicator(int row) | |
3044 { | |
3045 int i; | |
3046 int y; | |
3047 int x; | |
3048 | |
2210 | 3049 if (!NETBEANS_OPEN) |
3050 return; | |
3051 | |
7 | 3052 x = 0; |
3053 y = row * gui.char_height + 2; | |
3054 | |
3055 for (i = 0; i < gui.char_height - 3; i++) | |
3056 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++); | |
3057 | |
3058 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y); | |
3059 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3060 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++); | |
3061 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y); | |
3062 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3063 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++); | |
3064 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3065 } | |
2592 | 3066 #endif /* FEAT_GUI_X11 */ |
7 | 3067 |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2271
diff
changeset
|
3068 #if defined(FEAT_GUI_GTK) && !defined(PROTO) |
7 | 3069 /* |
3070 * We have multiple signs to draw at the same location. Draw the | |
3071 * multi-sign indicator instead. This is the GTK/Gnome version. | |
3072 */ | |
3073 void | |
3074 netbeans_draw_multisign_indicator(int row) | |
3075 { | |
3076 int i; | |
3077 int y; | |
3078 int x; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3079 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3080 cairo_t *cr = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3081 #else |
7 | 3082 GdkDrawable *drawable = gui.drawarea->window; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3083 #endif |
7 | 3084 |
2210 | 3085 if (!NETBEANS_OPEN) |
3086 return; | |
3087 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3088 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3089 cr = cairo_create(gui.surface); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3090 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3091 GdkVisual *visual = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3092 guint32 r_mask, g_mask, b_mask; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3093 gint r_shift, g_shift, b_shift; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3094 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3095 visual = gdk_window_get_visual(gtk_widget_get_window(gui.drawarea)); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3096 if (visual != NULL) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3097 { |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3098 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3099 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3100 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3101 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3102 cairo_set_source_rgb(cr, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3103 ((gui.fgcolor->red & r_mask) >> r_shift) / 255.0, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3104 ((gui.fgcolor->green & g_mask) >> g_shift) / 255.0, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3105 ((gui.fgcolor->blue & b_mask) >> b_shift) / 255.0); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3106 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3107 } |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3108 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3109 |
7 | 3110 x = 0; |
3111 y = row * gui.char_height + 2; | |
3112 | |
3113 for (i = 0; i < gui.char_height - 3; i++) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3114 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3115 cairo_rectangle(cr, x+2, y++, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3116 #else |
7 | 3117 gdk_draw_point(drawable, gui.text_gc, x+2, y++); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3118 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3119 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3120 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3121 cairo_rectangle(cr, x+0, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3122 cairo_rectangle(cr, x+2, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3123 cairo_rectangle(cr, x+4, y++, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3124 cairo_rectangle(cr, x+1, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3125 cairo_rectangle(cr, x+2, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3126 cairo_rectangle(cr, x+3, y++, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3127 cairo_rectangle(cr, x+2, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3128 #else |
7 | 3129 gdk_draw_point(drawable, gui.text_gc, x+0, y); |
3130 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
3131 gdk_draw_point(drawable, gui.text_gc, x+4, y++); | |
3132 gdk_draw_point(drawable, gui.text_gc, x+1, y); | |
3133 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
3134 gdk_draw_point(drawable, gui.text_gc, x+3, y++); | |
3135 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3136 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3137 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3138 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3139 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3140 #endif |
7 | 3141 } |
3142 #endif /* FEAT_GUI_GTK */ | |
3143 | |
3144 /* | |
3145 * If the mouse is clicked in the gutter of a line with multiple | |
3146 * annotations, cycle through the set of signs. | |
3147 */ | |
3148 void | |
3149 netbeans_gutter_click(linenr_T lnum) | |
3150 { | |
3151 signlist_T *p; | |
3152 | |
2210 | 3153 if (!NETBEANS_OPEN) |
3154 return; | |
3155 | |
7 | 3156 for (p = curbuf->b_signlist; p != NULL; p = p->next) |
3157 { | |
3158 if (p->lnum == lnum && p->next && p->next->lnum == lnum) | |
3159 { | |
3160 signlist_T *tail; | |
3161 | |
3162 /* remove "p" from list, reinsert it at the tail of the sublist */ | |
3163 if (p->prev) | |
3164 p->prev->next = p->next; | |
3165 else | |
3166 curbuf->b_signlist = p->next; | |
3167 p->next->prev = p->prev; | |
3168 /* now find end of sublist and insert p */ | |
3169 for (tail = p->next; | |
3170 tail->next && tail->next->lnum == lnum | |
3171 && tail->next->id < GUARDEDOFFSET; | |
3172 tail = tail->next) | |
3173 ; | |
3174 /* tail now points to last entry with same lnum (except | |
3175 * that "guarded" annotations are always last) */ | |
3176 p->next = tail->next; | |
3177 if (tail->next) | |
3178 tail->next->prev = p; | |
3179 p->prev = tail; | |
3180 tail->next = p; | |
3181 update_debug_sign(curbuf, lnum); | |
3182 break; | |
3183 } | |
3184 } | |
3185 } | |
3186 | |
3187 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
3188 * Add a sign of the requested type at the requested location. |
7 | 3189 * |
3190 * Reverse engineering: | |
3191 * Apparently an annotation is defined the first time it is used in a buffer. | |
3192 * When the same annotation is used in two buffers, the second time we do not | |
3193 * need to define a new sign name but reuse the existing one. But since the | |
3194 * ID number used in the second buffer starts counting at one again, a mapping | |
3195 * is made from the ID specifically for the buffer to the global sign name | |
3196 * (which is a number). | |
3197 * | |
3198 * globalsignmap[] stores the signs that have been defined globally. | |
3199 * buf->signmapused[] maps buffer-local annotation IDs to an index in | |
3200 * globalsignmap[]. | |
3201 */ | |
3202 static void | |
3203 addsigntype( | |
3204 nbbuf_T *buf, | |
3205 int typeNum, | |
3206 char_u *typeName, | |
1884 | 3207 char_u *tooltip UNUSED, |
7 | 3208 char_u *glyphFile, |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3209 char_u *fg, |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3210 char_u *bg) |
7 | 3211 { |
3212 int i, j; | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3213 int use_fg = (*fg && STRCMP(fg, "none") != 0); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3214 int use_bg = (*bg && STRCMP(bg, "none") != 0); |
7 | 3215 |
3216 for (i = 0; i < globalsignmapused; i++) | |
3217 if (STRCMP(typeName, globalsignmap[i]) == 0) | |
3218 break; | |
3219 | |
3220 if (i == globalsignmapused) /* not found; add it to global map */ | |
3221 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3222 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n", |
7 | 3223 typeNum, typeName, tooltip, glyphFile, fg, bg)); |
3224 if (use_fg || use_bg) | |
3225 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3226 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1]; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3227 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1]; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3228 char *ptr; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3229 int value; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3230 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3231 value = strtol((char *)fg, &ptr, 10); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3232 if (ptr != (char *)fg) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3233 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3234 else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3235 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3236 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3237 value = strtol((char *)bg, &ptr, 10); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3238 if (ptr != (char *)bg) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3239 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3240 else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3241 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg); |
7 | 3242 |
3243 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "", | |
3244 (use_bg) ? bgbuf : ""); | |
3245 if (*glyphFile == NUL) | |
3246 /* no glyph, line highlighting only */ | |
3247 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName); | |
3248 else if (vim_strsize(glyphFile) <= 2) | |
3249 /* one- or two-character glyph name, use as text glyph with | |
3250 * texthl */ | |
3251 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1, | |
3252 glyphFile, typeName); | |
3253 else | |
3254 /* glyph, line highlighting */ | |
3255 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1, | |
3256 glyphFile, typeName); | |
3257 } | |
3258 else | |
3259 /* glyph, no line highlighting */ | |
3260 coloncmd(":sign define %d icon=%s", i + 1, glyphFile); | |
3261 | |
3262 if (STRCMP(typeName,"CurrentPC") == 0) | |
3263 curPCtype = typeNum; | |
3264 | |
3265 if (globalsignmapused == globalsignmaplen) | |
3266 { | |
3267 if (globalsignmaplen == 0) /* first allocation */ | |
3268 { | |
3269 globalsignmaplen = 20; | |
3270 globalsignmap = (char **)alloc_clear(globalsignmaplen*sizeof(char *)); | |
3271 } | |
3272 else /* grow it */ | |
3273 { | |
3274 int incr; | |
3275 int oldlen = globalsignmaplen; | |
6596 | 3276 char **t_globalsignmap = globalsignmap; |
7 | 3277 |
3278 globalsignmaplen *= 2; | |
3279 incr = globalsignmaplen - oldlen; | |
3280 globalsignmap = (char **)vim_realloc(globalsignmap, | |
3281 globalsignmaplen * sizeof(char *)); | |
6596 | 3282 if (globalsignmap == NULL) |
3283 { | |
3284 vim_free(t_globalsignmap); | |
3285 globalsignmaplen = 0; | |
3286 return; | |
3287 } | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
3288 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *)); |
7 | 3289 } |
3290 } | |
3291 | |
3292 globalsignmap[i] = (char *)typeName; | |
3293 globalsignmapused = i + 1; | |
3294 } | |
3295 | |
3296 /* check local map; should *not* be found! */ | |
3297 for (j = 0; j < buf->signmapused; j++) | |
3298 if (buf->signmap[j] == i + 1) | |
3299 return; | |
3300 | |
3301 /* add to local map */ | |
3302 if (buf->signmapused == buf->signmaplen) | |
3303 { | |
3304 if (buf->signmaplen == 0) /* first allocation */ | |
3305 { | |
3306 buf->signmaplen = 5; | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3307 buf->signmap = (int *)alloc_clear(buf->signmaplen * sizeof(int)); |
7 | 3308 } |
3309 else /* grow it */ | |
3310 { | |
3311 int incr; | |
3312 int oldlen = buf->signmaplen; | |
6596 | 3313 int *t_signmap = buf->signmap; |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3314 |
7 | 3315 buf->signmaplen *= 2; |
3316 incr = buf->signmaplen - oldlen; | |
3317 buf->signmap = (int *)vim_realloc(buf->signmap, | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3318 buf->signmaplen * sizeof(int)); |
6596 | 3319 if (buf->signmap == NULL) |
3320 { | |
3321 vim_free(t_signmap); | |
3322 buf->signmaplen = 0; | |
3323 return; | |
3324 } | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3325 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int)); |
7 | 3326 } |
3327 } | |
3328 | |
3329 buf->signmap[buf->signmapused++] = i + 1; | |
3330 | |
3331 } | |
3332 | |
3333 | |
3334 /* | |
3335 * See if we have the requested sign type in the buffer. | |
3336 */ | |
3337 static int | |
3338 mapsigntype(nbbuf_T *buf, int localsigntype) | |
3339 { | |
3340 if (--localsigntype >= 0 && localsigntype < buf->signmapused) | |
3341 return buf->signmap[localsigntype]; | |
3342 | |
3343 return 0; | |
3344 } | |
3345 | |
3346 | |
3347 /* | |
3348 * Compute length of buffer, don't print anything. | |
3349 */ | |
3350 static long | |
3351 get_buf_size(buf_T *bufp) | |
3352 { | |
3353 linenr_T lnum; | |
3354 long char_count = 0; | |
3355 int eol_size; | |
3356 long last_check = 100000L; | |
3357 | |
3358 if (bufp->b_ml.ml_flags & ML_EMPTY) | |
3359 return 0; | |
3360 else | |
3361 { | |
3362 if (get_fileformat(bufp) == EOL_DOS) | |
3363 eol_size = 2; | |
3364 else | |
3365 eol_size = 1; | |
3366 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum) | |
3367 { | |
1956 | 3368 char_count += (long)STRLEN(ml_get_buf(bufp, lnum, FALSE)) |
3369 + eol_size; | |
7 | 3370 /* Check for a CTRL-C every 100000 characters */ |
3371 if (char_count > last_check) | |
3372 { | |
3373 ui_breakcheck(); | |
3374 if (got_int) | |
3375 return char_count; | |
3376 last_check = char_count + 100000L; | |
3377 } | |
3378 } | |
3379 /* Correction for when last line doesn't have an EOL. */ | |
6933 | 3380 if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol)) |
7 | 3381 char_count -= eol_size; |
3382 } | |
3383 | |
3384 return char_count; | |
3385 } | |
3386 | |
3387 /* | |
3388 * Convert character offset to lnum,col | |
3389 */ | |
3390 static pos_T * | |
3391 off2pos(buf_T *buf, long offset) | |
3392 { | |
3393 linenr_T lnum; | |
3394 static pos_T pos; | |
3395 | |
3396 pos.lnum = 0; | |
3397 pos.col = 0; | |
3398 #ifdef FEAT_VIRTUALEDIT | |
3399 pos.coladd = 0; | |
3400 #endif | |
3401 | |
3402 if (!(buf->b_ml.ml_flags & ML_EMPTY)) | |
3403 { | |
3404 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0) | |
3405 return NULL; | |
3406 pos.lnum = lnum; | |
3407 pos.col = offset; | |
3408 } | |
3409 | |
3410 return &pos; | |
3411 } | |
3412 | |
3413 /* | |
3414 * Convert an argument in the form "1234" to an offset and compute the | |
3415 * lnum/col from it. Convert an argument in the form "123/12" directly to a | |
3416 * lnum/col. | |
3417 * "argp" is advanced to after the argument. | |
3418 * Return a pointer to the position, NULL if something is wrong. | |
3419 */ | |
3420 static pos_T * | |
3421 get_off_or_lnum(buf_T *buf, char_u **argp) | |
3422 { | |
3423 static pos_T mypos; | |
3424 long off; | |
3425 | |
3426 off = strtol((char *)*argp, (char **)argp, 10); | |
3427 if (**argp == '/') | |
3428 { | |
3429 mypos.lnum = (linenr_T)off; | |
3430 ++*argp; | |
3431 mypos.col = strtol((char *)*argp, (char **)argp, 10); | |
3432 #ifdef FEAT_VIRTUALEDIT | |
3433 mypos.coladd = 0; | |
3434 #endif | |
3435 return &mypos; | |
3436 } | |
3437 return off2pos(buf, off); | |
3438 } | |
3439 | |
3440 | |
3441 /* | |
667 | 3442 * Convert (lnum,col) to byte offset in the file. |
7 | 3443 */ |
3444 static long | |
3445 pos2off(buf_T *buf, pos_T *pos) | |
3446 { | |
3447 long offset = 0; | |
3448 | |
3449 if (!(buf->b_ml.ml_flags & ML_EMPTY)) | |
3450 { | |
3451 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0) | |
3452 return 0; | |
3453 offset += pos->col; | |
3454 } | |
3455 | |
3456 return offset; | |
3457 } | |
3458 | |
3459 | |
33 | 3460 /* |
3461 * This message is printed after NetBeans opens a new file. Its | |
3462 * similar to the message readfile() uses, but since NetBeans | |
3463 * doesn't normally call readfile, we do our own. | |
3464 */ | |
3465 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3466 print_read_msg(nbbuf_T *buf) |
33 | 3467 { |
3468 int lnum = buf->bufp->b_ml.ml_line_count; | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3469 off_t nchars = buf->bufp->b_orig_size; |
33 | 3470 char_u c; |
3471 | |
3472 msg_add_fname(buf->bufp, buf->bufp->b_ffname); | |
3473 c = FALSE; | |
3474 | |
3475 if (buf->bufp->b_p_ro) | |
3476 { | |
3477 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]")); | |
3478 c = TRUE; | |
3479 } | |
3480 if (!buf->bufp->b_start_eol) | |
3481 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3482 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3483 : _("[Incomplete last line]")); |
33 | 3484 c = TRUE; |
3485 } | |
3486 msg_add_lines(c, (long)lnum, nchars); | |
3487 | |
3488 /* Now display it */ | |
3489 vim_free(keep_msg); | |
3490 keep_msg = NULL; | |
3491 msg_scrolled_ign = TRUE; | |
3492 msg_trunc_attr(IObuff, FALSE, 0); | |
3493 msg_scrolled_ign = FALSE; | |
3494 } | |
3495 | |
3496 | |
3497 /* | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3498 * Print a message after NetBeans writes the file. This message should be |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3499 * identical to the standard message a non-netbeans user would see when |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3500 * writing a file. |
33 | 3501 */ |
3502 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3503 print_save_msg(nbbuf_T *buf, off_t nchars) |
33 | 3504 { |
3505 char_u c; | |
3506 char_u *p; | |
3507 | |
3508 if (nchars >= 0) | |
3509 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3510 /* put fname in IObuff with quotes */ |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3511 msg_add_fname(buf->bufp, buf->bufp->b_ffname); |
33 | 3512 c = FALSE; |
3513 | |
3514 msg_add_lines(c, buf->bufp->b_ml.ml_line_count, | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3515 buf->bufp->b_orig_size); |
33 | 3516 |
3517 vim_free(keep_msg); | |
3518 keep_msg = NULL; | |
3519 msg_scrolled_ign = TRUE; | |
3520 p = msg_trunc_attr(IObuff, FALSE, 0); | |
3521 if ((msg_scrolled && !need_wait_return) || !buf->initDone) | |
3522 { | |
3523 /* Need to repeat the message after redrawing when: | |
3524 * - When reading from stdin (the screen will be cleared next). | |
3525 * - When restart_edit is set (otherwise there will be a delay | |
3526 * before redrawing). | |
3527 * - When the screen was scrolled but there is no wait-return | |
3528 * prompt. */ | |
678 | 3529 set_keep_msg(p, 0); |
33 | 3530 } |
3531 msg_scrolled_ign = FALSE; | |
3532 /* add_to_input_buf((char_u *)"\f", 1); */ | |
3533 } | |
3534 else | |
3535 { | |
2768 | 3536 char_u msgbuf[IOSIZE]; |
3537 | |
3538 vim_snprintf((char *)msgbuf, IOSIZE, | |
3539 _("E505: %s is read-only (add ! to override)"), IObuff); | |
3540 nbdebug((" %s\n", msgbuf)); | |
3541 emsg(msgbuf); | |
33 | 3542 } |
3543 } | |
3544 | |
7 | 3545 #endif /* defined(FEAT_NETBEANS_INTG) */ |