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