blob: 2e87373436f220fd4444f70d88fbc49119393a1e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * quickfix.c: functions for quickfix mode, using a file with error messages
12 */
13
14#include "vim.h"
15
16#if defined(FEAT_QUICKFIX) || defined(PROTO)
17
18struct dir_stack_T
19{
20 struct dir_stack_T *next;
21 char_u *dirname;
22};
23
24static struct dir_stack_T *dir_stack = NULL;
25
26/*
Bram Moolenaar68b76a62005-03-25 21:53:48 +000027 * For each error the next struct is allocated and linked in a list.
Bram Moolenaar071d4272004-06-13 20:20:40 +000028 */
Bram Moolenaar68b76a62005-03-25 21:53:48 +000029typedef struct qfline_S qfline_T;
30struct qfline_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000031{
Bram Moolenaar68b76a62005-03-25 21:53:48 +000032 qfline_T *qf_next; /* pointer to next error in the list */
33 qfline_T *qf_prev; /* pointer to previous error in the list */
34 linenr_T qf_lnum; /* line number where the error occurred */
35 int qf_fnum; /* file number for the line */
36 int qf_col; /* column where the error occurred */
37 int qf_nr; /* error number */
38 char_u *qf_pattern; /* search pattern for the error */
39 char_u *qf_text; /* description of the error */
40 char_u qf_viscol; /* set to TRUE if qf_col is screen column */
41 char_u qf_cleared; /* set to TRUE if line has been deleted */
42 char_u qf_type; /* type of the error (mostly 'E'); 1 for
Bram Moolenaar071d4272004-06-13 20:20:40 +000043 :helpgrep */
Bram Moolenaar68b76a62005-03-25 21:53:48 +000044 char_u qf_valid; /* valid error message detected */
Bram Moolenaar071d4272004-06-13 20:20:40 +000045};
46
47/*
48 * There is a stack of error lists.
49 */
50#define LISTCOUNT 10
51
Bram Moolenaard12f5c12006-01-25 22:10:52 +000052typedef struct qf_list_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000053{
Bram Moolenaar68b76a62005-03-25 21:53:48 +000054 qfline_T *qf_start; /* pointer to the first error */
55 qfline_T *qf_ptr; /* pointer to the current error */
56 int qf_count; /* number of errors (0 means no error list) */
57 int qf_index; /* current index in the error list */
58 int qf_nonevalid; /* TRUE if not a single valid entry found */
Bram Moolenaard12f5c12006-01-25 22:10:52 +000059} qf_list_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +000060
Bram Moolenaard12f5c12006-01-25 22:10:52 +000061struct qf_info_S
62{
63 /*
64 * Count of references to this list. Used only for location lists.
65 * When a location list window reference this list, qf_refcount
66 * will be 2. Otherwise, qf_refcount will be 1. When qf_refcount
67 * reaches 0, the list is freed.
68 */
69 int qf_refcount;
70 int qf_listcount; /* current number of lists */
71 int qf_curlist; /* current error list */
72 qf_list_T qf_lists[LISTCOUNT];
73};
74
75static qf_info_T ql_info; /* global quickfix list */
Bram Moolenaar071d4272004-06-13 20:20:40 +000076
Bram Moolenaar68b76a62005-03-25 21:53:48 +000077#define FMT_PATTERNS 10 /* maximum number of % recognized */
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
79/*
80 * Structure used to hold the info of one part of 'errorformat'
81 */
Bram Moolenaar01265852006-03-20 21:50:15 +000082typedef struct efm_S efm_T;
83struct efm_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000084{
85 regprog_T *prog; /* pre-formatted part of 'errorformat' */
Bram Moolenaar01265852006-03-20 21:50:15 +000086 efm_T *next; /* pointer to next (NULL if last) */
Bram Moolenaar071d4272004-06-13 20:20:40 +000087 char_u addr[FMT_PATTERNS]; /* indices of used % patterns */
88 char_u prefix; /* prefix of this format line: */
89 /* 'D' enter directory */
90 /* 'X' leave directory */
91 /* 'A' start of multi-line message */
92 /* 'E' error message */
93 /* 'W' warning message */
94 /* 'I' informational message */
95 /* 'C' continuation line */
96 /* 'Z' end of multi-line message */
97 /* 'G' general, unspecific message */
98 /* 'P' push file (partial) message */
99 /* 'Q' pop/quit file (partial) message */
100 /* 'O' overread (partial) message */
101 char_u flags; /* additional flags given in prefix */
102 /* '-' do not include this line */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000103 /* '+' include whole line in message */
Bram Moolenaar01265852006-03-20 21:50:15 +0000104 int conthere; /* %> used */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105};
106
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000107static int qf_init_ext __ARGS((qf_info_T *qi, char_u *efile, buf_T *buf, typval_T *tv, char_u *errorformat, int newlist, linenr_T lnumfirst, linenr_T lnumlast));
108static void qf_new_list __ARGS((qf_info_T *qi));
109static int qf_add_entry __ARGS((qf_info_T *qi, qfline_T **prevp, char_u *dir, char_u *fname, char_u *mesg, long lnum, int col, int vis_col, char_u *pattern, int nr, int type, int valid));
110static void qf_msg __ARGS((qf_info_T *qi));
111static void qf_free __ARGS((qf_info_T *qi, int idx));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112static char_u *qf_types __ARGS((int, int));
113static int qf_get_fnum __ARGS((char_u *, char_u *));
114static char_u *qf_push_dir __ARGS((char_u *, struct dir_stack_T **));
115static char_u *qf_pop_dir __ARGS((struct dir_stack_T **));
116static char_u *qf_guess_filepath __ARGS((char_u *));
117static void qf_fmt_text __ARGS((char_u *text, char_u *buf, int bufsize));
118static void qf_clean_dir_stack __ARGS((struct dir_stack_T **));
119#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000120static int qf_win_pos_update __ARGS((qf_info_T *qi, int old_qf_index));
Bram Moolenaar9c102382006-05-03 21:26:49 +0000121static int is_qf_win __ARGS((win_T *win, qf_info_T *qi));
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000122static win_T *qf_find_win __ARGS((qf_info_T *qi));
123static buf_T *qf_find_buf __ARGS((qf_info_T *qi));
124static void qf_update_buffer __ARGS((qf_info_T *qi));
125static void qf_fill_buffer __ARGS((qf_info_T *qi));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126#endif
127static char_u *get_mef_name __ARGS((void));
Bram Moolenaar81695252004-12-29 20:58:21 +0000128static buf_T *load_dummy_buffer __ARGS((char_u *fname));
129static void wipe_dummy_buffer __ARGS((buf_T *buf));
130static void unload_dummy_buffer __ARGS((buf_T *buf));
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000131static qf_info_T *ll_get_or_alloc_list __ARGS((win_T *));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000133/* Quickfix window check helper macro */
134#define IS_QF_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref == NULL)
135/* Location list window check helper macro */
136#define IS_LL_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref != NULL)
137/*
138 * Return location list for window 'wp'
139 * For location list window, return the referenced location list
140 */
141#define GET_LOC_LIST(wp) (IS_LL_WINDOW(wp) ? wp->w_llist_ref : wp->w_llist)
142
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143/*
Bram Moolenaar86b68352004-12-27 21:59:20 +0000144 * Read the errorfile "efile" into memory, line by line, building the error
145 * list.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146 * Return -1 for error, number of errors for success.
147 */
148 int
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000149qf_init(wp, efile, errorformat, newlist)
150 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151 char_u *efile;
152 char_u *errorformat;
153 int newlist; /* TRUE: start a new error list */
154{
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000155 qf_info_T *qi = &ql_info;
156
Bram Moolenaar86b68352004-12-27 21:59:20 +0000157 if (efile == NULL)
158 return FAIL;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000159
160 if (wp != NULL)
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000161 {
162 qi = ll_get_or_alloc_list(wp);
163 if (qi == NULL)
164 return FAIL;
165 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000166
167 return qf_init_ext(qi, efile, curbuf, NULL, errorformat, newlist,
Bram Moolenaar86b68352004-12-27 21:59:20 +0000168 (linenr_T)0, (linenr_T)0);
169}
170
171/*
172 * Read the errorfile "efile" into memory, line by line, building the error
173 * list.
174 * Alternative: when "efile" is null read errors from buffer "buf".
175 * Always use 'errorformat' from "buf" if there is a local value.
176 * Then lnumfirst and lnumlast specify the range of lines to use.
177 * Return -1 for error, number of errors for success.
178 */
179 static int
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000180qf_init_ext(qi, efile, buf, tv, errorformat, newlist, lnumfirst, lnumlast)
181 qf_info_T *qi;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000182 char_u *efile;
183 buf_T *buf;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000184 typval_T *tv;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000185 char_u *errorformat;
186 int newlist; /* TRUE: start a new error list */
187 linenr_T lnumfirst; /* first line number to use */
188 linenr_T lnumlast; /* last line number to use */
189{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 char_u *namebuf;
191 char_u *errmsg;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000192 char_u *pattern;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 char_u *fmtstr = NULL;
194 int col = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000195 char_u use_viscol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 int type = 0;
197 int valid;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000198 linenr_T buflnum = lnumfirst;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 long lnum = 0L;
200 int enr = 0;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000201 FILE *fd = NULL;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000202 qfline_T *qfprev = NULL; /* init to make SASC shut up */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 char_u *efmp;
Bram Moolenaar01265852006-03-20 21:50:15 +0000204 efm_T *fmt_first = NULL;
205 efm_T *fmt_last = NULL;
206 efm_T *fmt_ptr;
207 efm_T *fmt_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 char_u *efm;
209 char_u *ptr;
210 char_u *srcptr;
211 int len;
212 int i;
213 int round;
214 int idx = 0;
215 int multiline = FALSE;
216 int multiignore = FALSE;
217 int multiscan = FALSE;
218 int retval = -1; /* default: return error flag */
219 char_u *directory = NULL;
220 char_u *currfile = NULL;
221 char_u *tail = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000222 char_u *p_str = NULL;
223 listitem_T *p_li = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 struct dir_stack_T *file_stack = NULL;
225 regmatch_T regmatch;
226 static struct fmtpattern
227 {
228 char_u convchar;
229 char *pattern;
230 } fmt_pat[FMT_PATTERNS] =
231 {
Bram Moolenaare344bea2005-09-01 20:46:49 +0000232 {'f', ".\\+"}, /* only used when at end */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 {'n', "\\d\\+"},
234 {'l', "\\d\\+"},
235 {'c', "\\d\\+"},
236 {'t', "."},
237 {'m', ".\\+"},
238 {'r', ".*"},
239 {'p', "[- .]*"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000240 {'v', "\\d\\+"},
241 {'s', ".\\+"}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 };
243
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244 namebuf = alloc(CMDBUFFSIZE + 1);
245 errmsg = alloc(CMDBUFFSIZE + 1);
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000246 pattern = alloc(CMDBUFFSIZE + 1);
247 if (namebuf == NULL || errmsg == NULL || pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248 goto qf_init_end;
249
Bram Moolenaar86b68352004-12-27 21:59:20 +0000250 if (efile != NULL && (fd = mch_fopen((char *)efile, "r")) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 {
252 EMSG2(_(e_openerrf), efile);
253 goto qf_init_end;
254 }
255
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000256 if (newlist || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 /* make place for a new list */
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000258 qf_new_list(qi);
259 else if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 /* Adding to existing list, find last entry. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000261 for (qfprev = qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 qfprev->qf_next != qfprev; qfprev = qfprev->qf_next)
263 ;
264
265/*
266 * Each part of the format string is copied and modified from errorformat to
267 * regex prog. Only a few % characters are allowed.
268 */
269 /* Use the local value of 'errorformat' if it's set. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000270 if (errorformat == p_efm && tv == NULL && *buf->b_p_efm != NUL)
Bram Moolenaar86b68352004-12-27 21:59:20 +0000271 efm = buf->b_p_efm;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 else
273 efm = errorformat;
274 /*
275 * Get some space to modify the format string into.
276 */
277 i = (FMT_PATTERNS * 3) + ((int)STRLEN(efm) << 2);
278 for (round = FMT_PATTERNS; round > 0; )
279 i += (int)STRLEN(fmt_pat[--round].pattern);
280#ifdef COLON_IN_FILENAME
281 i += 12; /* "%f" can become twelve chars longer */
282#else
283 i += 2; /* "%f" can become two chars longer */
284#endif
285 if ((fmtstr = alloc(i)) == NULL)
286 goto error2;
287
Bram Moolenaar01265852006-03-20 21:50:15 +0000288 while (efm[0] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 {
290 /*
291 * Allocate a new eformat structure and put it at the end of the list
292 */
Bram Moolenaar01265852006-03-20 21:50:15 +0000293 fmt_ptr = (efm_T *)alloc_clear((unsigned)sizeof(efm_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 if (fmt_ptr == NULL)
295 goto error2;
296 if (fmt_first == NULL) /* first one */
297 fmt_first = fmt_ptr;
298 else
299 fmt_last->next = fmt_ptr;
300 fmt_last = fmt_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301
302 /*
303 * Isolate one part in the 'errorformat' option
304 */
305 for (len = 0; efm[len] != NUL && efm[len] != ','; ++len)
306 if (efm[len] == '\\' && efm[len + 1] != NUL)
307 ++len;
308
309 /*
310 * Build regexp pattern from current 'errorformat' option
311 */
312 ptr = fmtstr;
313 *ptr++ = '^';
Bram Moolenaar01265852006-03-20 21:50:15 +0000314 round = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 for (efmp = efm; efmp < efm + len; ++efmp)
316 {
317 if (*efmp == '%')
318 {
319 ++efmp;
320 for (idx = 0; idx < FMT_PATTERNS; ++idx)
321 if (fmt_pat[idx].convchar == *efmp)
322 break;
323 if (idx < FMT_PATTERNS)
324 {
325 if (fmt_ptr->addr[idx])
326 {
327 sprintf((char *)errmsg,
328 _("E372: Too many %%%c in format string"), *efmp);
329 EMSG(errmsg);
330 goto error2;
331 }
332 if ((idx
333 && idx < 6
334 && vim_strchr((char_u *)"DXOPQ",
335 fmt_ptr->prefix) != NULL)
336 || (idx == 6
337 && vim_strchr((char_u *)"OPQ",
338 fmt_ptr->prefix) == NULL))
339 {
340 sprintf((char *)errmsg,
341 _("E373: Unexpected %%%c in format string"), *efmp);
342 EMSG(errmsg);
343 goto error2;
344 }
345 fmt_ptr->addr[idx] = (char_u)++round;
346 *ptr++ = '\\';
347 *ptr++ = '(';
348#ifdef BACKSLASH_IN_FILENAME
349 if (*efmp == 'f')
350 {
351 /* Also match "c:" in the file name, even when
352 * checking for a colon next: "%f:".
353 * "\%(\a:\)\=" */
354 STRCPY(ptr, "\\%(\\a:\\)\\=");
355 ptr += 10;
356 }
357#endif
Bram Moolenaare344bea2005-09-01 20:46:49 +0000358 if (*efmp == 'f' && efmp[1] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 {
Bram Moolenaare344bea2005-09-01 20:46:49 +0000360 if (efmp[1] != '\\' && efmp[1] != '%')
361 {
362 /* A file name may contain spaces, but this isn't
363 * in "\f". For "%f:%l:%m" there may be a ":" in
364 * the file name. Use ".\{-1,}x" instead (x is
365 * the next character), the requirement that :999:
366 * follows should work. */
367 STRCPY(ptr, ".\\{-1,}");
368 ptr += 7;
369 }
370 else
371 {
372 /* File name followed by '\\' or '%': include as
373 * many file name chars as possible. */
374 STRCPY(ptr, "\\f\\+");
375 ptr += 4;
376 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 }
378 else
379 {
380 srcptr = (char_u *)fmt_pat[idx].pattern;
381 while ((*ptr = *srcptr++) != NUL)
382 ++ptr;
383 }
384 *ptr++ = '\\';
385 *ptr++ = ')';
386 }
387 else if (*efmp == '*')
388 {
389 if (*++efmp == '[' || *efmp == '\\')
390 {
391 if ((*ptr++ = *efmp) == '[') /* %*[^a-z0-9] etc. */
392 {
393 if (efmp[1] == '^')
394 *ptr++ = *++efmp;
395 if (efmp < efm + len)
396 {
397 *ptr++ = *++efmp; /* could be ']' */
398 while (efmp < efm + len
399 && (*ptr++ = *++efmp) != ']')
400 /* skip */;
401 if (efmp == efm + len)
402 {
403 EMSG(_("E374: Missing ] in format string"));
404 goto error2;
405 }
406 }
407 }
408 else if (efmp < efm + len) /* %*\D, %*\s etc. */
409 *ptr++ = *++efmp;
410 *ptr++ = '\\';
411 *ptr++ = '+';
412 }
413 else
414 {
415 /* TODO: scanf()-like: %*ud, %*3c, %*f, ... ? */
416 sprintf((char *)errmsg,
417 _("E375: Unsupported %%%c in format string"), *efmp);
418 EMSG(errmsg);
419 goto error2;
420 }
421 }
422 else if (vim_strchr((char_u *)"%\\.^$~[", *efmp) != NULL)
423 *ptr++ = *efmp; /* regexp magic characters */
424 else if (*efmp == '#')
425 *ptr++ = '*';
Bram Moolenaar01265852006-03-20 21:50:15 +0000426 else if (*efmp == '>')
427 fmt_ptr->conthere = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 else if (efmp == efm + 1) /* analyse prefix */
429 {
430 if (vim_strchr((char_u *)"+-", *efmp) != NULL)
431 fmt_ptr->flags = *efmp++;
432 if (vim_strchr((char_u *)"DXAEWICZGOPQ", *efmp) != NULL)
433 fmt_ptr->prefix = *efmp;
434 else
435 {
436 sprintf((char *)errmsg,
437 _("E376: Invalid %%%c in format string prefix"), *efmp);
438 EMSG(errmsg);
439 goto error2;
440 }
441 }
442 else
443 {
444 sprintf((char *)errmsg,
445 _("E377: Invalid %%%c in format string"), *efmp);
446 EMSG(errmsg);
447 goto error2;
448 }
449 }
450 else /* copy normal character */
451 {
452 if (*efmp == '\\' && efmp + 1 < efm + len)
453 ++efmp;
454 else if (vim_strchr((char_u *)".*^$~[", *efmp) != NULL)
455 *ptr++ = '\\'; /* escape regexp atoms */
456 if (*efmp)
457 *ptr++ = *efmp;
458 }
459 }
460 *ptr++ = '$';
461 *ptr = NUL;
462 if ((fmt_ptr->prog = vim_regcomp(fmtstr, RE_MAGIC + RE_STRING)) == NULL)
463 goto error2;
464 /*
465 * Advance to next part
466 */
467 efm = skip_to_option_part(efm + len); /* skip comma and spaces */
468 }
469 if (fmt_first == NULL) /* nothing found */
470 {
471 EMSG(_("E378: 'errorformat' contains no pattern"));
472 goto error2;
473 }
474
475 /*
476 * got_int is reset here, because it was probably set when killing the
477 * ":make" command, but we still want to read the errorfile then.
478 */
479 got_int = FALSE;
480
481 /* Always ignore case when looking for a matching error. */
482 regmatch.rm_ic = TRUE;
483
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000484 if (tv != NULL)
485 {
486 if (tv->v_type == VAR_STRING)
487 p_str = tv->vval.v_string;
488 else if (tv->v_type == VAR_LIST)
489 p_li = tv->vval.v_list->lv_first;
490 }
491
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 /*
493 * Read the lines in the error file one by one.
494 * Try to recognize one of the error formats in each line.
495 */
Bram Moolenaar86b68352004-12-27 21:59:20 +0000496 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 {
Bram Moolenaar86b68352004-12-27 21:59:20 +0000498 /* Get the next line. */
499 if (fd == NULL)
500 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000501 if (tv != NULL)
502 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000503 if (tv->v_type == VAR_STRING)
504 {
505 /* Get the next line from the supplied string */
506 char_u *p;
507
508 if (!*p_str) /* Reached the end of the string */
509 break;
510
511 p = vim_strchr(p_str, '\n');
512 if (p)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000513 len = (int)(p - p_str + 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000514 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000515 len = (int)STRLEN(p_str);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000516
517 if (len > CMDBUFFSIZE - 2)
518 vim_strncpy(IObuff, p_str, CMDBUFFSIZE - 2);
519 else
520 vim_strncpy(IObuff, p_str, len);
521
522 p_str += len;
523 }
524 else if (tv->v_type == VAR_LIST)
525 {
526 /* Get the next line from the supplied list */
527 while (p_li && p_li->li_tv.v_type != VAR_STRING)
528 p_li = p_li->li_next; /* Skip non-string items */
529
530 if (!p_li) /* End of the list */
531 break;
532
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000533 len = (int)STRLEN(p_li->li_tv.vval.v_string);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000534 if (len > CMDBUFFSIZE - 2)
535 len = CMDBUFFSIZE - 2;
536
537 vim_strncpy(IObuff, p_li->li_tv.vval.v_string, len);
538
539 p_li = p_li->li_next; /* next item */
540 }
541 }
542 else
543 {
544 /* Get the next line from the supplied buffer */
545 if (buflnum > lnumlast)
546 break;
547 vim_strncpy(IObuff, ml_get_buf(buf, buflnum++, FALSE),
548 CMDBUFFSIZE - 2);
549 }
Bram Moolenaar86b68352004-12-27 21:59:20 +0000550 }
551 else if (fgets((char *)IObuff, CMDBUFFSIZE - 2, fd) == NULL)
552 break;
553
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 IObuff[CMDBUFFSIZE - 2] = NUL; /* for very long lines */
555 if ((efmp = vim_strrchr(IObuff, '\n')) != NULL)
556 *efmp = NUL;
557#ifdef USE_CRNL
558 if ((efmp = vim_strrchr(IObuff, '\r')) != NULL)
559 *efmp = NUL;
560#endif
561
Bram Moolenaar01265852006-03-20 21:50:15 +0000562 /* If there was no %> item start at the first pattern */
563 if (fmt_start == NULL)
564 fmt_ptr = fmt_first;
565 else
566 {
567 fmt_ptr = fmt_start;
568 fmt_start = NULL;
569 }
570
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 /*
572 * Try to match each part of 'errorformat' until we find a complete
573 * match or no match.
574 */
575 valid = TRUE;
576restofline:
Bram Moolenaar01265852006-03-20 21:50:15 +0000577 for ( ; fmt_ptr != NULL; fmt_ptr = fmt_ptr->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 {
579 idx = fmt_ptr->prefix;
580 if (multiscan && vim_strchr((char_u *)"OPQ", idx) == NULL)
581 continue;
582 namebuf[0] = NUL;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000583 pattern[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 if (!multiscan)
585 errmsg[0] = NUL;
586 lnum = 0;
587 col = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000588 use_viscol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 enr = -1;
590 type = 0;
591 tail = NULL;
592
593 regmatch.regprog = fmt_ptr->prog;
594 if (vim_regexec(&regmatch, IObuff, (colnr_T)0))
595 {
596 if ((idx == 'C' || idx == 'Z') && !multiline)
597 continue;
598 if (vim_strchr((char_u *)"EWI", idx) != NULL)
599 type = idx;
600 else
601 type = 0;
602 /*
Bram Moolenaar4169da72006-06-20 18:49:32 +0000603 * Extract error message data from matched line.
604 * We check for an actual submatch, because "\[" and "\]" in
605 * the 'errorformat' may cause the wrong submatch to be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 */
607 if ((i = (int)fmt_ptr->addr[0]) > 0) /* %f */
608 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000609 int c;
610
611 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
612 continue;
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000613
614 /* Expand ~/file and $HOME/file to full path. */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000615 c = *regmatch.endp[i];
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000616 *regmatch.endp[i] = NUL;
617 expand_env(regmatch.startp[i], namebuf, CMDBUFFSIZE);
618 *regmatch.endp[i] = c;
619
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 if (vim_strchr((char_u *)"OPQ", idx) != NULL
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000621 && mch_getperm(namebuf) == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 continue;
623 }
624 if ((i = (int)fmt_ptr->addr[1]) > 0) /* %n */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000625 {
626 if (regmatch.startp[i] == NULL)
627 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 enr = (int)atol((char *)regmatch.startp[i]);
Bram Moolenaar4169da72006-06-20 18:49:32 +0000629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 if ((i = (int)fmt_ptr->addr[2]) > 0) /* %l */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000631 {
632 if (regmatch.startp[i] == NULL)
633 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 lnum = atol((char *)regmatch.startp[i]);
Bram Moolenaar4169da72006-06-20 18:49:32 +0000635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 if ((i = (int)fmt_ptr->addr[3]) > 0) /* %c */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000637 {
638 if (regmatch.startp[i] == NULL)
639 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 col = (int)atol((char *)regmatch.startp[i]);
Bram Moolenaar4169da72006-06-20 18:49:32 +0000641 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 if ((i = (int)fmt_ptr->addr[4]) > 0) /* %t */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000643 {
644 if (regmatch.startp[i] == NULL)
645 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 type = *regmatch.startp[i];
Bram Moolenaar4169da72006-06-20 18:49:32 +0000647 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000648 if (fmt_ptr->flags == '+' && !multiscan) /* %+ */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 STRCPY(errmsg, IObuff);
650 else if ((i = (int)fmt_ptr->addr[5]) > 0) /* %m */
651 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000652 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
653 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 len = (int)(regmatch.endp[i] - regmatch.startp[i]);
Bram Moolenaarbbebc852005-07-18 21:47:53 +0000655 vim_strncpy(errmsg, regmatch.startp[i], len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 }
657 if ((i = (int)fmt_ptr->addr[6]) > 0) /* %r */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000658 {
659 if (regmatch.startp[i] == NULL)
660 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 tail = regmatch.startp[i];
Bram Moolenaar4169da72006-06-20 18:49:32 +0000662 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 if ((i = (int)fmt_ptr->addr[7]) > 0) /* %p */
664 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000665 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
666 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 col = (int)(regmatch.endp[i] - regmatch.startp[i] + 1);
668 if (*((char_u *)regmatch.startp[i]) != TAB)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000669 use_viscol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 }
671 if ((i = (int)fmt_ptr->addr[8]) > 0) /* %v */
672 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000673 if (regmatch.startp[i] == NULL)
674 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 col = (int)atol((char *)regmatch.startp[i]);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000676 use_viscol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000678 if ((i = (int)fmt_ptr->addr[9]) > 0) /* %s */
679 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000680 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
681 continue;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000682 len = (int)(regmatch.endp[i] - regmatch.startp[i]);
683 if (len > CMDBUFFSIZE - 5)
684 len = CMDBUFFSIZE - 5;
685 STRCPY(pattern, "^\\V");
686 STRNCAT(pattern, regmatch.startp[i], len);
687 pattern[len + 3] = '\\';
688 pattern[len + 4] = '$';
689 pattern[len + 5] = NUL;
690 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 break;
692 }
693 }
694 multiscan = FALSE;
Bram Moolenaar01265852006-03-20 21:50:15 +0000695
Bram Moolenaar4770d092006-01-12 23:22:24 +0000696 if (fmt_ptr == NULL || idx == 'D' || idx == 'X')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 {
Bram Moolenaar4770d092006-01-12 23:22:24 +0000698 if (fmt_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 {
700 if (idx == 'D') /* enter directory */
701 {
702 if (*namebuf == NUL)
703 {
704 EMSG(_("E379: Missing or empty directory name"));
705 goto error2;
706 }
707 if ((directory = qf_push_dir(namebuf, &dir_stack)) == NULL)
708 goto error2;
709 }
710 else if (idx == 'X') /* leave directory */
711 directory = qf_pop_dir(&dir_stack);
712 }
713 namebuf[0] = NUL; /* no match found, remove file name */
714 lnum = 0; /* don't jump to this line */
715 valid = FALSE;
716 STRCPY(errmsg, IObuff); /* copy whole line to error message */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000717 if (fmt_ptr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 multiline = multiignore = FALSE;
719 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000720 else if (fmt_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 {
Bram Moolenaar01265852006-03-20 21:50:15 +0000722 /* honor %> item */
723 if (fmt_ptr->conthere)
724 fmt_start = fmt_ptr;
725
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 if (vim_strchr((char_u *)"AEWI", idx) != NULL)
727 multiline = TRUE; /* start of a multi-line message */
728 else if (vim_strchr((char_u *)"CZ", idx) != NULL)
729 { /* continuation of multi-line msg */
730 if (qfprev == NULL)
731 goto error2;
732 if (*errmsg && !multiignore)
733 {
734 len = (int)STRLEN(qfprev->qf_text);
735 if ((ptr = alloc((unsigned)(len + STRLEN(errmsg) + 2)))
736 == NULL)
737 goto error2;
738 STRCPY(ptr, qfprev->qf_text);
739 vim_free(qfprev->qf_text);
740 qfprev->qf_text = ptr;
741 *(ptr += len) = '\n';
742 STRCPY(++ptr, errmsg);
743 }
744 if (qfprev->qf_nr == -1)
745 qfprev->qf_nr = enr;
746 if (vim_isprintc(type) && !qfprev->qf_type)
747 qfprev->qf_type = type; /* only printable chars allowed */
748 if (!qfprev->qf_lnum)
749 qfprev->qf_lnum = lnum;
750 if (!qfprev->qf_col)
751 qfprev->qf_col = col;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000752 qfprev->qf_viscol = use_viscol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 if (!qfprev->qf_fnum)
754 qfprev->qf_fnum = qf_get_fnum(directory,
755 *namebuf || directory ? namebuf
756 : currfile && valid ? currfile : 0);
757 if (idx == 'Z')
758 multiline = multiignore = FALSE;
759 line_breakcheck();
760 continue;
761 }
762 else if (vim_strchr((char_u *)"OPQ", idx) != NULL)
763 {
764 /* global file names */
765 valid = FALSE;
766 if (*namebuf == NUL || mch_getperm(namebuf) >= 0)
767 {
768 if (*namebuf && idx == 'P')
769 currfile = qf_push_dir(namebuf, &file_stack);
770 else if (idx == 'Q')
771 currfile = qf_pop_dir(&file_stack);
772 *namebuf = NUL;
773 if (tail && *tail)
774 {
775 STRCPY(IObuff, skipwhite(tail));
776 multiscan = TRUE;
777 goto restofline;
778 }
779 }
780 }
781 if (fmt_ptr->flags == '-') /* generally exclude this line */
782 {
783 if (multiline)
784 multiignore = TRUE; /* also exclude continuation lines */
785 continue;
786 }
787 }
788
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000789 if (qf_add_entry(qi, &qfprev,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 directory,
Bram Moolenaar9d75c832005-01-25 21:57:23 +0000791 (*namebuf || directory)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 ? namebuf
Bram Moolenaar9d75c832005-01-25 21:57:23 +0000793 : ((currfile && valid) ? currfile : (char_u *)NULL),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 errmsg,
795 lnum,
796 col,
Bram Moolenaar05159a02005-02-26 23:04:13 +0000797 use_viscol,
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000798 pattern,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 enr,
800 type,
801 valid) == FAIL)
802 goto error2;
803 line_breakcheck();
804 }
Bram Moolenaar86b68352004-12-27 21:59:20 +0000805 if (fd == NULL || !ferror(fd))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000807 if (qi->qf_lists[qi->qf_curlist].qf_index == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000809 /* no valid entry found */
810 qi->qf_lists[qi->qf_curlist].qf_ptr =
811 qi->qf_lists[qi->qf_curlist].qf_start;
812 qi->qf_lists[qi->qf_curlist].qf_index = 1;
813 qi->qf_lists[qi->qf_curlist].qf_nonevalid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 }
815 else
816 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000817 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
818 if (qi->qf_lists[qi->qf_curlist].qf_ptr == NULL)
819 qi->qf_lists[qi->qf_curlist].qf_ptr =
820 qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000822 /* return number of matches */
823 retval = qi->qf_lists[qi->qf_curlist].qf_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 goto qf_init_ok;
825 }
826 EMSG(_(e_readerrf));
827error2:
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000828 qf_free(qi, qi->qf_curlist);
829 qi->qf_listcount--;
830 if (qi->qf_curlist > 0)
831 --qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832qf_init_ok:
Bram Moolenaar86b68352004-12-27 21:59:20 +0000833 if (fd != NULL)
834 fclose(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 for (fmt_ptr = fmt_first; fmt_ptr != NULL; fmt_ptr = fmt_first)
836 {
837 fmt_first = fmt_ptr->next;
838 vim_free(fmt_ptr->prog);
839 vim_free(fmt_ptr);
840 }
841 qf_clean_dir_stack(&dir_stack);
842 qf_clean_dir_stack(&file_stack);
843qf_init_end:
844 vim_free(namebuf);
845 vim_free(errmsg);
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000846 vim_free(pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 vim_free(fmtstr);
848
849#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000850 qf_update_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851#endif
852
853 return retval;
854}
855
856/*
857 * Prepare for adding a new quickfix list.
858 */
859 static void
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000860qf_new_list(qi)
861 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862{
863 int i;
864
865 /*
866 * If the current entry is not the last entry, delete entries below
867 * the current entry. This makes it possible to browse in a tree-like
868 * way with ":grep'.
869 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000870 while (qi->qf_listcount > qi->qf_curlist + 1)
871 qf_free(qi, --qi->qf_listcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872
873 /*
874 * When the stack is full, remove to oldest entry
875 * Otherwise, add a new entry.
876 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000877 if (qi->qf_listcount == LISTCOUNT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000879 qf_free(qi, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 for (i = 1; i < LISTCOUNT; ++i)
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000881 qi->qf_lists[i - 1] = qi->qf_lists[i];
882 qi->qf_curlist = LISTCOUNT - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 }
884 else
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000885 qi->qf_curlist = qi->qf_listcount++;
886 qi->qf_lists[qi->qf_curlist].qf_index = 0;
887 qi->qf_lists[qi->qf_curlist].qf_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888}
889
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000890/*
891 * Free a location list
892 */
893 static void
894ll_free_all(pqi)
895 qf_info_T **pqi;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000896{
897 int i;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000898 qf_info_T *qi;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000899
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000900 qi = *pqi;
901 if (qi == NULL)
902 return;
903 *pqi = NULL; /* Remove reference to this list */
904
905 qi->qf_refcount--;
906 if (qi->qf_refcount < 1)
907 {
908 /* No references to this location list */
909 for (i = 0; i < qi->qf_listcount; ++i)
910 qf_free(qi, i);
911 vim_free(qi);
912 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000913}
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000914
915 void
916qf_free_all(wp)
917 win_T *wp;
918{
919 int i;
920 qf_info_T *qi = &ql_info;
921
922 if (wp != NULL)
923 {
924 /* location list */
925 ll_free_all(&wp->w_llist);
926 ll_free_all(&wp->w_llist_ref);
927 }
928 else
929 /* quickfix list */
930 for (i = 0; i < qi->qf_listcount; ++i)
931 qf_free(qi, i);
932}
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000933
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934/*
935 * Add an entry to the end of the list of errors.
936 * Returns OK or FAIL.
937 */
938 static int
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000939qf_add_entry(qi, prevp, dir, fname, mesg, lnum, col, vis_col, pattern, nr, type,
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000940 valid)
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000941 qf_info_T *qi; /* quickfix list */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000942 qfline_T **prevp; /* pointer to previously added entry or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 char_u *dir; /* optional directory name */
944 char_u *fname; /* file name or NULL */
945 char_u *mesg; /* message */
946 long lnum; /* line number */
947 int col; /* column */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000948 int vis_col; /* using visual column */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000949 char_u *pattern; /* search pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 int nr; /* error number */
951 int type; /* type character */
952 int valid; /* valid entry */
953{
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000954 qfline_T *qfp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000956 if ((qfp = (qfline_T *)alloc((unsigned)sizeof(qfline_T))) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 return FAIL;
958 qfp->qf_fnum = qf_get_fnum(dir, fname);
959 if ((qfp->qf_text = vim_strsave(mesg)) == NULL)
960 {
961 vim_free(qfp);
962 return FAIL;
963 }
964 qfp->qf_lnum = lnum;
965 qfp->qf_col = col;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000966 qfp->qf_viscol = vis_col;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000967 if (pattern == NULL || *pattern == NUL)
968 qfp->qf_pattern = NULL;
969 else if ((qfp->qf_pattern = vim_strsave(pattern)) == NULL)
970 {
971 vim_free(qfp->qf_text);
972 vim_free(qfp);
973 return FAIL;
974 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 qfp->qf_nr = nr;
976 if (type != 1 && !vim_isprintc(type)) /* only printable chars allowed */
977 type = 0;
978 qfp->qf_type = type;
979 qfp->qf_valid = valid;
980
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000981 if (qi->qf_lists[qi->qf_curlist].qf_count == 0)
982 /* first element in the list */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000984 qi->qf_lists[qi->qf_curlist].qf_start = qfp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 qfp->qf_prev = qfp; /* first element points to itself */
986 }
987 else
988 {
989 qfp->qf_prev = *prevp;
990 (*prevp)->qf_next = qfp;
991 }
992 qfp->qf_next = qfp; /* last element points to itself */
993 qfp->qf_cleared = FALSE;
994 *prevp = qfp;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000995 ++qi->qf_lists[qi->qf_curlist].qf_count;
996 if (qi->qf_lists[qi->qf_curlist].qf_index == 0 && qfp->qf_valid)
997 /* first valid entry */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000999 qi->qf_lists[qi->qf_curlist].qf_index =
1000 qi->qf_lists[qi->qf_curlist].qf_count;
1001 qi->qf_lists[qi->qf_curlist].qf_ptr = qfp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 }
1003
1004 return OK;
1005}
1006
1007/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001008 * Allocate a new location list
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001009 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001010 static qf_info_T *
1011ll_new_list()
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001012{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001013 qf_info_T *qi;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001014
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001015 qi = (qf_info_T *)alloc((unsigned)sizeof(qf_info_T));
1016 if (qi != NULL)
1017 {
1018 vim_memset(qi, 0, (size_t)(sizeof(qf_info_T)));
1019 qi->qf_refcount++;
1020 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001021
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001022 return qi;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001023}
1024
1025/*
1026 * Return the location list for window 'wp'.
1027 * If not present, allocate a location list
1028 */
1029 static qf_info_T *
1030ll_get_or_alloc_list(wp)
1031 win_T *wp;
1032{
1033 if (IS_LL_WINDOW(wp))
1034 /* For a location list window, use the referenced location list */
1035 return wp->w_llist_ref;
1036
1037 /*
1038 * For a non-location list window, w_llist_ref should not point to a
1039 * location list.
1040 */
1041 ll_free_all(&wp->w_llist_ref);
1042
1043 if (wp->w_llist == NULL)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001044 wp->w_llist = ll_new_list(); /* new location list */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001045 return wp->w_llist;
1046}
1047
1048/*
1049 * Copy the location list from window "from" to window "to".
1050 */
1051 void
1052copy_loclist(from, to)
1053 win_T *from;
1054 win_T *to;
1055{
1056 qf_info_T *qi;
1057 int idx;
1058 int i;
1059
1060 /*
1061 * When copying from a location list window, copy the referenced
1062 * location list. For other windows, copy the location list for
1063 * that window.
1064 */
1065 if (IS_LL_WINDOW(from))
1066 qi = from->w_llist_ref;
1067 else
1068 qi = from->w_llist;
1069
1070 if (qi == NULL) /* no location list to copy */
1071 return;
1072
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001073 /* allocate a new location list */
1074 if ((to->w_llist = ll_new_list()) == NULL)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001075 return;
1076
1077 to->w_llist->qf_listcount = qi->qf_listcount;
1078
1079 /* Copy the location lists one at a time */
1080 for (idx = 0; idx < qi->qf_listcount; idx++)
1081 {
1082 qf_list_T *from_qfl;
1083 qf_list_T *to_qfl;
1084
1085 to->w_llist->qf_curlist = idx;
1086
1087 from_qfl = &qi->qf_lists[idx];
1088 to_qfl = &to->w_llist->qf_lists[idx];
1089
1090 /* Some of the fields are populated by qf_add_entry() */
1091 to_qfl->qf_nonevalid = from_qfl->qf_nonevalid;
1092 to_qfl->qf_count = 0;
1093 to_qfl->qf_index = 0;
1094 to_qfl->qf_start = NULL;
1095 to_qfl->qf_ptr = NULL;
1096
1097 if (from_qfl->qf_count)
1098 {
1099 qfline_T *from_qfp;
1100 qfline_T *prevp = NULL;
1101
1102 /* copy all the location entries in this list */
1103 for (i = 0, from_qfp = from_qfl->qf_start; i < from_qfl->qf_count;
1104 ++i, from_qfp = from_qfp->qf_next)
1105 {
1106 if (qf_add_entry(to->w_llist, &prevp,
1107 NULL,
1108 NULL,
1109 from_qfp->qf_text,
1110 from_qfp->qf_lnum,
1111 from_qfp->qf_col,
1112 from_qfp->qf_viscol,
1113 from_qfp->qf_pattern,
1114 from_qfp->qf_nr,
1115 0,
1116 from_qfp->qf_valid) == FAIL)
1117 {
1118 qf_free_all(to);
1119 return;
1120 }
1121 /*
1122 * qf_add_entry() will not set the qf_num field, as the
1123 * directory and file names are not supplied. So the qf_fnum
1124 * field is copied here.
1125 */
1126 prevp->qf_fnum = from_qfp->qf_fnum; /* file number */
1127 prevp->qf_type = from_qfp->qf_type; /* error type */
1128 if (from_qfl->qf_ptr == from_qfp)
1129 to_qfl->qf_ptr = prevp; /* current location */
1130 }
1131 }
1132
1133 to_qfl->qf_index = from_qfl->qf_index; /* current index in the list */
1134
1135 /* When no valid entries are present in the list, qf_ptr points to
1136 * the first item in the list */
1137 if (to_qfl->qf_nonevalid == TRUE)
1138 to_qfl->qf_ptr = to_qfl->qf_start;
1139 }
1140
1141 to->w_llist->qf_curlist = qi->qf_curlist; /* current list */
1142}
1143
1144/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 * get buffer number for file "dir.name"
1146 */
1147 static int
1148qf_get_fnum(directory, fname)
1149 char_u *directory;
1150 char_u *fname;
1151{
1152 if (fname == NULL || *fname == NUL) /* no file name */
1153 return 0;
1154 {
1155#ifdef RISCOS
1156 /* Name is reported as `main.c', but file is `c.main' */
1157 return ro_buflist_add(fname);
1158#else
1159 char_u *ptr;
1160 int fnum;
1161
1162# ifdef VMS
1163 vms_remove_version(fname);
1164# endif
1165# ifdef BACKSLASH_IN_FILENAME
1166 if (directory != NULL)
1167 slash_adjust(directory);
1168 slash_adjust(fname);
1169# endif
1170 if (directory != NULL && !vim_isAbsName(fname)
1171 && (ptr = concat_fnames(directory, fname, TRUE)) != NULL)
1172 {
1173 /*
1174 * Here we check if the file really exists.
1175 * This should normally be true, but if make works without
1176 * "leaving directory"-messages we might have missed a
1177 * directory change.
1178 */
1179 if (mch_getperm(ptr) < 0)
1180 {
1181 vim_free(ptr);
1182 directory = qf_guess_filepath(fname);
1183 if (directory)
1184 ptr = concat_fnames(directory, fname, TRUE);
1185 else
1186 ptr = vim_strsave(fname);
1187 }
1188 /* Use concatenated directory name and file name */
1189 fnum = buflist_add(ptr, 0);
1190 vim_free(ptr);
1191 return fnum;
1192 }
1193 return buflist_add(fname, 0);
1194#endif
1195 }
1196}
1197
1198/*
1199 * push dirbuf onto the directory stack and return pointer to actual dir or
1200 * NULL on error
1201 */
1202 static char_u *
1203qf_push_dir(dirbuf, stackptr)
1204 char_u *dirbuf;
1205 struct dir_stack_T **stackptr;
1206{
1207 struct dir_stack_T *ds_new;
1208 struct dir_stack_T *ds_ptr;
1209
1210 /* allocate new stack element and hook it in */
1211 ds_new = (struct dir_stack_T *)alloc((unsigned)sizeof(struct dir_stack_T));
1212 if (ds_new == NULL)
1213 return NULL;
1214
1215 ds_new->next = *stackptr;
1216 *stackptr = ds_new;
1217
1218 /* store directory on the stack */
1219 if (vim_isAbsName(dirbuf)
1220 || (*stackptr)->next == NULL
1221 || (*stackptr && dir_stack != *stackptr))
1222 (*stackptr)->dirname = vim_strsave(dirbuf);
1223 else
1224 {
1225 /* Okay we don't have an absolute path.
1226 * dirbuf must be a subdir of one of the directories on the stack.
1227 * Let's search...
1228 */
1229 ds_new = (*stackptr)->next;
1230 (*stackptr)->dirname = NULL;
1231 while (ds_new)
1232 {
1233 vim_free((*stackptr)->dirname);
1234 (*stackptr)->dirname = concat_fnames(ds_new->dirname, dirbuf,
1235 TRUE);
1236 if (mch_isdir((*stackptr)->dirname) == TRUE)
1237 break;
1238
1239 ds_new = ds_new->next;
1240 }
1241
1242 /* clean up all dirs we already left */
1243 while ((*stackptr)->next != ds_new)
1244 {
1245 ds_ptr = (*stackptr)->next;
1246 (*stackptr)->next = (*stackptr)->next->next;
1247 vim_free(ds_ptr->dirname);
1248 vim_free(ds_ptr);
1249 }
1250
1251 /* Nothing found -> it must be on top level */
1252 if (ds_new == NULL)
1253 {
1254 vim_free((*stackptr)->dirname);
1255 (*stackptr)->dirname = vim_strsave(dirbuf);
1256 }
1257 }
1258
1259 if ((*stackptr)->dirname != NULL)
1260 return (*stackptr)->dirname;
1261 else
1262 {
1263 ds_ptr = *stackptr;
1264 *stackptr = (*stackptr)->next;
1265 vim_free(ds_ptr);
1266 return NULL;
1267 }
1268}
1269
1270
1271/*
1272 * pop dirbuf from the directory stack and return previous directory or NULL if
1273 * stack is empty
1274 */
1275 static char_u *
1276qf_pop_dir(stackptr)
1277 struct dir_stack_T **stackptr;
1278{
1279 struct dir_stack_T *ds_ptr;
1280
1281 /* TODO: Should we check if dirbuf is the directory on top of the stack?
1282 * What to do if it isn't? */
1283
1284 /* pop top element and free it */
1285 if (*stackptr != NULL)
1286 {
1287 ds_ptr = *stackptr;
1288 *stackptr = (*stackptr)->next;
1289 vim_free(ds_ptr->dirname);
1290 vim_free(ds_ptr);
1291 }
1292
1293 /* return NEW top element as current dir or NULL if stack is empty*/
1294 return *stackptr ? (*stackptr)->dirname : NULL;
1295}
1296
1297/*
1298 * clean up directory stack
1299 */
1300 static void
1301qf_clean_dir_stack(stackptr)
1302 struct dir_stack_T **stackptr;
1303{
1304 struct dir_stack_T *ds_ptr;
1305
1306 while ((ds_ptr = *stackptr) != NULL)
1307 {
1308 *stackptr = (*stackptr)->next;
1309 vim_free(ds_ptr->dirname);
1310 vim_free(ds_ptr);
1311 }
1312}
1313
1314/*
1315 * Check in which directory of the directory stack the given file can be
1316 * found.
1317 * Returns a pointer to the directory name or NULL if not found
1318 * Cleans up intermediate directory entries.
1319 *
1320 * TODO: How to solve the following problem?
1321 * If we have the this directory tree:
1322 * ./
1323 * ./aa
1324 * ./aa/bb
1325 * ./bb
1326 * ./bb/x.c
1327 * and make says:
1328 * making all in aa
1329 * making all in bb
1330 * x.c:9: Error
1331 * Then qf_push_dir thinks we are in ./aa/bb, but we are in ./bb.
1332 * qf_guess_filepath will return NULL.
1333 */
1334 static char_u *
1335qf_guess_filepath(filename)
1336 char_u *filename;
1337{
1338 struct dir_stack_T *ds_ptr;
1339 struct dir_stack_T *ds_tmp;
1340 char_u *fullname;
1341
1342 /* no dirs on the stack - there's nothing we can do */
1343 if (dir_stack == NULL)
1344 return NULL;
1345
1346 ds_ptr = dir_stack->next;
1347 fullname = NULL;
1348 while (ds_ptr)
1349 {
1350 vim_free(fullname);
1351 fullname = concat_fnames(ds_ptr->dirname, filename, TRUE);
1352
1353 /* If concat_fnames failed, just go on. The worst thing that can happen
1354 * is that we delete the entire stack.
1355 */
1356 if ((fullname != NULL) && (mch_getperm(fullname) >= 0))
1357 break;
1358
1359 ds_ptr = ds_ptr->next;
1360 }
1361
1362 vim_free(fullname);
1363
1364 /* clean up all dirs we already left */
1365 while (dir_stack->next != ds_ptr)
1366 {
1367 ds_tmp = dir_stack->next;
1368 dir_stack->next = dir_stack->next->next;
1369 vim_free(ds_tmp->dirname);
1370 vim_free(ds_tmp);
1371 }
1372
1373 return ds_ptr==NULL? NULL: ds_ptr->dirname;
1374
1375}
1376
1377/*
1378 * jump to a quickfix line
1379 * if dir == FORWARD go "errornr" valid entries forward
1380 * if dir == BACKWARD go "errornr" valid entries backward
1381 * if dir == FORWARD_FILE go "errornr" valid entries files backward
1382 * if dir == BACKWARD_FILE go "errornr" valid entries files backward
1383 * else if "errornr" is zero, redisplay the same line
1384 * else go to entry "errornr"
1385 */
1386 void
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001387qf_jump(qi, dir, errornr, forceit)
1388 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 int dir;
1390 int errornr;
1391 int forceit;
1392{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001393 qf_info_T *ll_ref;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001394 qfline_T *qf_ptr;
1395 qfline_T *old_qf_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 int qf_index;
1397 int old_qf_fnum;
1398 int old_qf_index;
1399 int prev_index;
1400 static char_u *e_no_more_items = (char_u *)N_("E553: No more items");
1401 char_u *err = e_no_more_items;
1402 linenr_T i;
1403 buf_T *old_curbuf;
1404 linenr_T old_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 colnr_T screen_col;
1406 colnr_T char_col;
1407 char_u *line;
1408#ifdef FEAT_WINDOWS
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00001409 char_u *old_swb = p_swb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 int opened_window = FALSE;
1411 win_T *win;
1412 win_T *altwin;
1413#endif
1414 int print_message = TRUE;
1415 int len;
1416#ifdef FEAT_FOLDING
1417 int old_KeyTyped = KeyTyped; /* getting file may reset it */
1418#endif
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001419 int ok = OK;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001420 int usable_win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001422 if (qi == NULL)
1423 qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001424
1425 if (qi->qf_curlist >= qi->qf_listcount
1426 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 {
1428 EMSG(_(e_quickfix));
1429 return;
1430 }
1431
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001432 qf_ptr = qi->qf_lists[qi->qf_curlist].qf_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 old_qf_ptr = qf_ptr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001434 qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 old_qf_index = qf_index;
1436 if (dir == FORWARD || dir == FORWARD_FILE) /* next valid entry */
1437 {
1438 while (errornr--)
1439 {
1440 old_qf_ptr = qf_ptr;
1441 prev_index = qf_index;
1442 old_qf_fnum = qf_ptr->qf_fnum;
1443 do
1444 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001445 if (qf_index == qi->qf_lists[qi->qf_curlist].qf_count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 || qf_ptr->qf_next == NULL)
1447 {
1448 qf_ptr = old_qf_ptr;
1449 qf_index = prev_index;
1450 if (err != NULL)
1451 {
1452 EMSG(_(err));
1453 goto theend;
1454 }
1455 errornr = 0;
1456 break;
1457 }
1458 ++qf_index;
1459 qf_ptr = qf_ptr->qf_next;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001460 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid
1461 && !qf_ptr->qf_valid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 || (dir == FORWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum));
1463 err = NULL;
1464 }
1465 }
1466 else if (dir == BACKWARD || dir == BACKWARD_FILE) /* prev. valid entry */
1467 {
1468 while (errornr--)
1469 {
1470 old_qf_ptr = qf_ptr;
1471 prev_index = qf_index;
1472 old_qf_fnum = qf_ptr->qf_fnum;
1473 do
1474 {
1475 if (qf_index == 1 || qf_ptr->qf_prev == NULL)
1476 {
1477 qf_ptr = old_qf_ptr;
1478 qf_index = prev_index;
1479 if (err != NULL)
1480 {
1481 EMSG(_(err));
1482 goto theend;
1483 }
1484 errornr = 0;
1485 break;
1486 }
1487 --qf_index;
1488 qf_ptr = qf_ptr->qf_prev;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001489 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid
1490 && !qf_ptr->qf_valid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 || (dir == BACKWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum));
1492 err = NULL;
1493 }
1494 }
1495 else if (errornr != 0) /* go to specified number */
1496 {
1497 while (errornr < qf_index && qf_index > 1 && qf_ptr->qf_prev != NULL)
1498 {
1499 --qf_index;
1500 qf_ptr = qf_ptr->qf_prev;
1501 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001502 while (errornr > qf_index && qf_index <
1503 qi->qf_lists[qi->qf_curlist].qf_count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 && qf_ptr->qf_next != NULL)
1505 {
1506 ++qf_index;
1507 qf_ptr = qf_ptr->qf_next;
1508 }
1509 }
1510
1511#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001512 qi->qf_lists[qi->qf_curlist].qf_index = qf_index;
1513 if (qf_win_pos_update(qi, old_qf_index))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 /* No need to print the error message if it's visible in the error
1515 * window */
1516 print_message = FALSE;
1517
1518 /*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001519 * For ":helpgrep" find a help window or open one.
1520 */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001521 if (qf_ptr->qf_type == 1 && (!curwin->w_buffer->b_help || cmdmod.tab != 0))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001522 {
1523 win_T *wp;
1524 int n;
1525
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001526 if (cmdmod.tab != 0)
1527 wp = NULL;
1528 else
1529 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1530 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
1531 break;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001532 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
1533 win_enter(wp, TRUE);
1534 else
1535 {
1536 /*
1537 * Split off help window; put it at far top if no position
1538 * specified, the current window is vertically split and narrow.
1539 */
1540 n = WSP_HELP;
1541# ifdef FEAT_VERTSPLIT
1542 if (cmdmod.split == 0 && curwin->w_width != Columns
1543 && curwin->w_width < 80)
1544 n |= WSP_TOP;
1545# endif
1546 if (win_split(0, n) == FAIL)
1547 goto theend;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001548 opened_window = TRUE; /* close it when fail */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001549
1550 if (curwin->w_height < p_hh)
1551 win_setheight((int)p_hh);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001552
1553 if (qi != &ql_info) /* not a quickfix list */
1554 {
1555 /* The new window should use the supplied location list */
1556 qf_free_all(curwin);
1557 curwin->w_llist = qi;
1558 qi->qf_refcount++;
1559 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001560 }
1561
1562 if (!p_im)
1563 restart_edit = 0; /* don't want insert mode in help file */
1564 }
1565
1566 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 * If currently in the quickfix window, find another window to show the
1568 * file in.
1569 */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001570 if (bt_quickfix(curbuf) && !opened_window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 {
1572 /*
1573 * If there is no file specified, we don't know where to go.
1574 * But do advance, otherwise ":cn" gets stuck.
1575 */
1576 if (qf_ptr->qf_fnum == 0)
1577 goto theend;
1578
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001579 /* Locate a window showing a normal buffer */
1580 usable_win = 0;
1581 FOR_ALL_WINDOWS(win)
1582 if (win->w_buffer->b_p_bt[0] == NUL)
1583 {
1584 usable_win = 1;
1585 break;
1586 }
1587
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 /*
1589 * If there is only one window, create a new one above the quickfix
1590 * window.
1591 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001592 if (firstwin == lastwin || !usable_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001594 ll_ref = curwin->w_llist_ref;
1595
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 if (win_split(0, WSP_ABOVE) == FAIL)
1597 goto failed; /* not enough room for window */
1598 opened_window = TRUE; /* close it when fail */
1599 p_swb = empty_option; /* don't split again */
1600# ifdef FEAT_SCROLLBIND
1601 curwin->w_p_scb = FALSE;
1602# endif
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001603 if (ll_ref != NULL)
1604 {
1605 /* The new window should use the location list from the
1606 * location list window */
1607 qf_free_all(curwin);
1608 curwin->w_llist = ll_ref;
1609 ll_ref->qf_refcount++;
1610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 }
1612 else
1613 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001614 if (curwin->w_llist_ref != NULL)
1615 {
1616 /* In a location window */
1617 ll_ref = curwin->w_llist_ref;
1618
1619 /* Find the window with the same location list */
1620 FOR_ALL_WINDOWS(win)
1621 if (win->w_llist == ll_ref)
1622 break;
1623 if (win == NULL)
1624 {
1625 /* Find the window showing the selected file */
1626 FOR_ALL_WINDOWS(win)
1627 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum)
1628 break;
1629 if (win == NULL)
1630 {
1631 /* Find a previous usable window */
1632 win = curwin;
1633 do
1634 {
1635 if (win->w_buffer->b_p_bt[0] == NUL)
1636 break;
1637 if (win->w_prev == NULL)
1638 win = lastwin; /* wrap around the top */
1639 else
1640 win = win->w_prev; /* go to previous window */
1641 } while (win != curwin);
1642 }
1643 }
1644 win_goto(win);
1645
1646 /* If the location list for the window is not set, then set it
1647 * to the location list from the location window */
1648 if (win->w_llist == NULL)
1649 {
1650 win->w_llist = ll_ref;
1651 ll_ref->qf_refcount++;
1652 }
1653 }
1654 else
1655 {
1656
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 /*
1658 * Try to find a window that shows the right buffer.
1659 * Default to the window just above the quickfix buffer.
1660 */
1661 win = curwin;
1662 altwin = NULL;
1663 for (;;)
1664 {
1665 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum)
1666 break;
1667 if (win->w_prev == NULL)
1668 win = lastwin; /* wrap around the top */
1669 else
1670 win = win->w_prev; /* go to previous window */
1671
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001672 if (IS_QF_WINDOW(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 {
1674 /* Didn't find it, go to the window before the quickfix
1675 * window. */
1676 if (altwin != NULL)
1677 win = altwin;
1678 else if (curwin->w_prev != NULL)
1679 win = curwin->w_prev;
1680 else
1681 win = curwin->w_next;
1682 break;
1683 }
1684
1685 /* Remember a usable window. */
1686 if (altwin == NULL && !win->w_p_pvw
1687 && win->w_buffer->b_p_bt[0] == NUL)
1688 altwin = win;
1689 }
1690
1691 win_goto(win);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001692 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 }
1694 }
1695#endif
1696
1697 /*
1698 * If there is a file name,
1699 * read the wanted file if needed, and check autowrite etc.
1700 */
1701 old_curbuf = curbuf;
1702 old_lnum = curwin->w_cursor.lnum;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001703
1704 if (qf_ptr->qf_fnum != 0)
1705 {
1706 if (qf_ptr->qf_type == 1)
1707 {
1708 /* Open help file (do_ecmd() will set b_help flag, readfile() will
1709 * set b_p_ro flag). */
1710 if (!can_abandon(curbuf, forceit))
1711 {
1712 EMSG(_(e_nowrtmsg));
1713 ok = FALSE;
1714 }
1715 else
1716 ok = do_ecmd(qf_ptr->qf_fnum, NULL, NULL, NULL, (linenr_T)1,
1717 ECMD_HIDE + ECMD_SET_HELP);
1718 }
1719 else
1720 ok = buflist_getfile(qf_ptr->qf_fnum,
1721 (linenr_T)1, GETF_SETMARK | GETF_SWITCH, forceit);
1722 }
1723
1724 if (ok == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 {
1726 /* When not switched to another buffer, still need to set pc mark */
1727 if (curbuf == old_curbuf)
1728 setpcmark();
1729
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001730 if (qf_ptr->qf_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001732 /*
1733 * Go to line with error, unless qf_lnum is 0.
1734 */
1735 i = qf_ptr->qf_lnum;
1736 if (i > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001738 if (i > curbuf->b_ml.ml_line_count)
1739 i = curbuf->b_ml.ml_line_count;
1740 curwin->w_cursor.lnum = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001742 if (qf_ptr->qf_col > 0)
1743 {
1744 curwin->w_cursor.col = qf_ptr->qf_col - 1;
1745 if (qf_ptr->qf_viscol == TRUE)
1746 {
1747 /*
1748 * Check each character from the beginning of the error
1749 * line up to the error column. For each tab character
1750 * found, reduce the error column value by the length of
1751 * a tab character.
1752 */
1753 line = ml_get_curline();
1754 screen_col = 0;
1755 for (char_col = 0; char_col < curwin->w_cursor.col; ++char_col)
1756 {
1757 if (*line == NUL)
1758 break;
1759 if (*line++ == '\t')
1760 {
1761 curwin->w_cursor.col -= 7 - (screen_col % 8);
1762 screen_col += 8 - (screen_col % 8);
1763 }
1764 else
1765 ++screen_col;
1766 }
1767 }
1768 check_cursor();
1769 }
1770 else
1771 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 }
1773 else
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001774 {
1775 pos_T save_cursor;
1776
1777 /* Move the cursor to the first line in the buffer */
1778 save_cursor = curwin->w_cursor;
1779 curwin->w_cursor.lnum = 0;
1780 if (!do_search(NULL, '/', qf_ptr->qf_pattern, (long)1, SEARCH_KEEP))
1781 curwin->w_cursor = save_cursor;
1782 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783
1784#ifdef FEAT_FOLDING
1785 if ((fdo_flags & FDO_QUICKFIX) && old_KeyTyped)
1786 foldOpenCursor();
1787#endif
1788 if (print_message)
1789 {
1790 /* Update the screen before showing the message */
1791 update_topline_redraw();
1792 sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index,
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001793 qi->qf_lists[qi->qf_curlist].qf_count,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 qf_ptr->qf_cleared ? _(" (line deleted)") : "",
1795 (char *)qf_types(qf_ptr->qf_type, qf_ptr->qf_nr));
1796 /* Add the message, skipping leading whitespace and newlines. */
1797 len = (int)STRLEN(IObuff);
1798 qf_fmt_text(skipwhite(qf_ptr->qf_text), IObuff + len, IOSIZE - len);
1799
1800 /* Output the message. Overwrite to avoid scrolling when the 'O'
1801 * flag is present in 'shortmess'; But when not jumping, print the
1802 * whole message. */
1803 i = msg_scroll;
1804 if (curbuf == old_curbuf && curwin->w_cursor.lnum == old_lnum)
1805 msg_scroll = TRUE;
1806 else if (!msg_scrolled && shortmess(SHM_OVERALL))
1807 msg_scroll = FALSE;
1808 msg_attr_keep(IObuff, 0, TRUE);
1809 msg_scroll = i;
1810 }
1811 }
1812 else
1813 {
1814#ifdef FEAT_WINDOWS
1815 if (opened_window)
1816 win_close(curwin, TRUE); /* Close opened window */
1817#endif
1818 if (qf_ptr->qf_fnum != 0)
1819 {
1820 /*
1821 * Couldn't open file, so put index back where it was. This could
1822 * happen if the file was readonly and we changed something.
1823 */
1824#ifdef FEAT_WINDOWS
1825failed:
1826#endif
1827 qf_ptr = old_qf_ptr;
1828 qf_index = old_qf_index;
1829 }
1830 }
1831theend:
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001832 qi->qf_lists[qi->qf_curlist].qf_ptr = qf_ptr;
1833 qi->qf_lists[qi->qf_curlist].qf_index = qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834#ifdef FEAT_WINDOWS
1835 if (p_swb != old_swb && opened_window)
1836 {
1837 /* Restore old 'switchbuf' value, but not when an autocommand or
1838 * modeline has changed the value. */
1839 if (p_swb == empty_option)
1840 p_swb = old_swb;
1841 else
1842 free_string_option(old_swb);
1843 }
1844#endif
1845}
1846
1847/*
1848 * ":clist": list all errors
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001849 * ":llist": list all locations
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 */
1851 void
1852qf_list(eap)
1853 exarg_T *eap;
1854{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001855 buf_T *buf;
1856 char_u *fname;
1857 qfline_T *qfp;
1858 int i;
1859 int idx1 = 1;
1860 int idx2 = -1;
1861 int need_return = TRUE;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001862 char_u *arg = eap->arg;
1863 int all = eap->forceit; /* if not :cl!, only show
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 recognised errors */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001865 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001867 if (eap->cmdidx == CMD_llist)
1868 {
1869 qi = GET_LOC_LIST(curwin);
1870 if (qi == NULL)
1871 {
1872 EMSG(_(e_loclist));
1873 return;
1874 }
1875 }
1876
1877 if (qi->qf_curlist >= qi->qf_listcount
1878 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 {
1880 EMSG(_(e_quickfix));
1881 return;
1882 }
1883 if (!get_list_range(&arg, &idx1, &idx2) || *arg != NUL)
1884 {
1885 EMSG(_(e_trailing));
1886 return;
1887 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001888 i = qi->qf_lists[qi->qf_curlist].qf_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 if (idx1 < 0)
1890 idx1 = (-idx1 > i) ? 0 : idx1 + i + 1;
1891 if (idx2 < 0)
1892 idx2 = (-idx2 > i) ? 0 : idx2 + i + 1;
1893
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001894 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 all = TRUE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001896 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
1897 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 {
1899 if ((qfp->qf_valid || all) && idx1 <= i && i <= idx2)
1900 {
1901 if (need_return)
1902 {
1903 msg_putchar('\n');
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001904 if (got_int)
1905 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 need_return = FALSE;
1907 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001908
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001909 fname = NULL;
1910 if (qfp->qf_fnum != 0
1911 && (buf = buflist_findnr(qfp->qf_fnum)) != NULL)
1912 {
1913 fname = buf->b_fname;
1914 if (qfp->qf_type == 1) /* :helpgrep */
1915 fname = gettail(fname);
1916 }
1917 if (fname == NULL)
1918 sprintf((char *)IObuff, "%2d", i);
1919 else
1920 vim_snprintf((char *)IObuff, IOSIZE, "%2d %s",
1921 i, (char *)fname);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001922 msg_outtrans_attr(IObuff, i == qi->qf_lists[qi->qf_curlist].qf_index
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001923 ? hl_attr(HLF_L) : hl_attr(HLF_D));
1924 if (qfp->qf_lnum == 0)
1925 IObuff[0] = NUL;
1926 else if (qfp->qf_col == 0)
1927 sprintf((char *)IObuff, ":%ld", qfp->qf_lnum);
1928 else
1929 sprintf((char *)IObuff, ":%ld col %d",
1930 qfp->qf_lnum, qfp->qf_col);
1931 sprintf((char *)IObuff + STRLEN(IObuff), "%s:",
1932 (char *)qf_types(qfp->qf_type, qfp->qf_nr));
1933 msg_puts_attr(IObuff, hl_attr(HLF_N));
1934 if (qfp->qf_pattern != NULL)
1935 {
1936 qf_fmt_text(qfp->qf_pattern, IObuff, IOSIZE);
1937 STRCAT(IObuff, ":");
1938 msg_puts(IObuff);
1939 }
1940 msg_puts((char_u *)" ");
1941
1942 /* Remove newlines and leading whitespace from the text. For an
1943 * unrecognized line keep the indent, the compiler may mark a word
1944 * with ^^^^. */
1945 qf_fmt_text((fname != NULL || qfp->qf_lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 ? skipwhite(qfp->qf_text) : qfp->qf_text,
1947 IObuff, IOSIZE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001948 msg_prt_line(IObuff, FALSE);
1949 out_flush(); /* show one line at a time */
1950 need_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001952
1953 qfp = qfp->qf_next;
1954 ++i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 ui_breakcheck();
1956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957}
1958
1959/*
1960 * Remove newlines and leading whitespace from an error message.
1961 * Put the result in "buf[bufsize]".
1962 */
1963 static void
1964qf_fmt_text(text, buf, bufsize)
1965 char_u *text;
1966 char_u *buf;
1967 int bufsize;
1968{
1969 int i;
1970 char_u *p = text;
1971
1972 for (i = 0; *p != NUL && i < bufsize - 1; ++i)
1973 {
1974 if (*p == '\n')
1975 {
1976 buf[i] = ' ';
1977 while (*++p != NUL)
1978 if (!vim_iswhite(*p) && *p != '\n')
1979 break;
1980 }
1981 else
1982 buf[i] = *p++;
1983 }
1984 buf[i] = NUL;
1985}
1986
1987/*
1988 * ":colder [count]": Up in the quickfix stack.
1989 * ":cnewer [count]": Down in the quickfix stack.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001990 * ":lolder [count]": Up in the location list stack.
1991 * ":lnewer [count]": Down in the location list stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 */
1993 void
1994qf_age(eap)
1995 exarg_T *eap;
1996{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001997 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 int count;
1999
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002000 if (eap->cmdidx == CMD_lolder || eap->cmdidx == CMD_lnewer)
2001 {
2002 qi = GET_LOC_LIST(curwin);
2003 if (qi == NULL)
2004 {
2005 EMSG(_(e_loclist));
2006 return;
2007 }
2008 }
2009
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 if (eap->addr_count != 0)
2011 count = eap->line2;
2012 else
2013 count = 1;
2014 while (count--)
2015 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002016 if (eap->cmdidx == CMD_colder || eap->cmdidx == CMD_lolder)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002018 if (qi->qf_curlist == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 {
2020 EMSG(_("E380: At bottom of quickfix stack"));
2021 return;
2022 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002023 --qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 }
2025 else
2026 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002027 if (qi->qf_curlist >= qi->qf_listcount - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 {
2029 EMSG(_("E381: At top of quickfix stack"));
2030 return;
2031 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002032 ++qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 }
2034 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002035 qf_msg(qi);
2036
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037}
2038
2039 static void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002040qf_msg(qi)
2041 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042{
2043 smsg((char_u *)_("error list %d of %d; %d errors"),
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002044 qi->qf_curlist + 1, qi->qf_listcount,
2045 qi->qf_lists[qi->qf_curlist].qf_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002047 qf_update_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048#endif
2049}
2050
2051/*
Bram Moolenaar77197e42005-12-08 22:00:22 +00002052 * Free error list "idx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 */
2054 static void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002055qf_free(qi, idx)
2056 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 int idx;
2058{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002059 qfline_T *qfp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002061 while (qi->qf_lists[idx].qf_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002063 qfp = qi->qf_lists[idx].qf_start->qf_next;
2064 vim_free(qi->qf_lists[idx].qf_start->qf_text);
2065 vim_free(qi->qf_lists[idx].qf_start->qf_pattern);
2066 vim_free(qi->qf_lists[idx].qf_start);
2067 qi->qf_lists[idx].qf_start = qfp;
2068 --qi->qf_lists[idx].qf_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 }
2070}
2071
2072/*
2073 * qf_mark_adjust: adjust marks
2074 */
2075 void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002076qf_mark_adjust(wp, line1, line2, amount, amount_after)
2077 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 linenr_T line1;
2079 linenr_T line2;
2080 long amount;
2081 long amount_after;
2082{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002083 int i;
2084 qfline_T *qfp;
2085 int idx;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002086 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002088 if (wp != NULL)
2089 {
2090 if (wp->w_llist == NULL)
2091 return;
2092 qi = wp->w_llist;
2093 }
2094
2095 for (idx = 0; idx < qi->qf_listcount; ++idx)
2096 if (qi->qf_lists[idx].qf_count)
2097 for (i = 0, qfp = qi->qf_lists[idx].qf_start;
2098 i < qi->qf_lists[idx].qf_count; ++i, qfp = qfp->qf_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 if (qfp->qf_fnum == curbuf->b_fnum)
2100 {
2101 if (qfp->qf_lnum >= line1 && qfp->qf_lnum <= line2)
2102 {
2103 if (amount == MAXLNUM)
2104 qfp->qf_cleared = TRUE;
2105 else
2106 qfp->qf_lnum += amount;
2107 }
2108 else if (amount_after && qfp->qf_lnum > line2)
2109 qfp->qf_lnum += amount_after;
2110 }
2111}
2112
2113/*
2114 * Make a nice message out of the error character and the error number:
2115 * char number message
2116 * e or E 0 " error"
2117 * w or W 0 " warning"
2118 * i or I 0 " info"
2119 * 0 0 ""
2120 * other 0 " c"
2121 * e or E n " error n"
2122 * w or W n " warning n"
2123 * i or I n " info n"
2124 * 0 n " error n"
2125 * other n " c n"
2126 * 1 x "" :helpgrep
2127 */
2128 static char_u *
2129qf_types(c, nr)
2130 int c, nr;
2131{
2132 static char_u buf[20];
2133 static char_u cc[3];
2134 char_u *p;
2135
2136 if (c == 'W' || c == 'w')
2137 p = (char_u *)" warning";
2138 else if (c == 'I' || c == 'i')
2139 p = (char_u *)" info";
2140 else if (c == 'E' || c == 'e' || (c == 0 && nr > 0))
2141 p = (char_u *)" error";
2142 else if (c == 0 || c == 1)
2143 p = (char_u *)"";
2144 else
2145 {
2146 cc[0] = ' ';
2147 cc[1] = c;
2148 cc[2] = NUL;
2149 p = cc;
2150 }
2151
2152 if (nr <= 0)
2153 return p;
2154
2155 sprintf((char *)buf, "%s %3d", (char *)p, nr);
2156 return buf;
2157}
2158
2159#if defined(FEAT_WINDOWS) || defined(PROTO)
2160/*
2161 * ":cwindow": open the quickfix window if we have errors to display,
2162 * close it if not.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002163 * ":lwindow": open the location list window if we have locations to display,
2164 * close it if not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 */
2166 void
2167ex_cwindow(eap)
2168 exarg_T *eap;
2169{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002170 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 win_T *win;
2172
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002173 if (eap->cmdidx == CMD_lwindow)
2174 {
2175 qi = GET_LOC_LIST(curwin);
2176 if (qi == NULL)
2177 return;
2178 }
2179
2180 /* Look for an existing quickfix window. */
2181 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182
2183 /*
2184 * If a quickfix window is open but we have no errors to display,
2185 * close the window. If a quickfix window is not open, then open
2186 * it if we have errors; otherwise, leave it closed.
2187 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002188 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid
Bram Moolenaard68071d2006-05-02 22:08:30 +00002189 || qi->qf_curlist >= qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 {
2191 if (win != NULL)
2192 ex_cclose(eap);
2193 }
2194 else if (win == NULL)
2195 ex_copen(eap);
2196}
2197
2198/*
2199 * ":cclose": close the window showing the list of errors.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002200 * ":lclose": close the window showing the location list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 */
2202/*ARGSUSED*/
2203 void
2204ex_cclose(eap)
2205 exarg_T *eap;
2206{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002207 win_T *win = NULL;
2208 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002210 if (eap->cmdidx == CMD_lclose || eap->cmdidx == CMD_lwindow)
2211 {
2212 qi = GET_LOC_LIST(curwin);
2213 if (qi == NULL)
2214 return;
2215 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002217 /* Find existing quickfix window and close it. */
2218 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 if (win != NULL)
2220 win_close(win, FALSE);
2221}
2222
2223/*
2224 * ":copen": open a window that shows the list of errors.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002225 * ":lopen": open a window that shows the location list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 */
2227 void
2228ex_copen(eap)
2229 exarg_T *eap;
2230{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002231 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 int height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 win_T *win;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002234 tabpage_T *prevtab = curtab;
Bram Moolenaar9c102382006-05-03 21:26:49 +00002235 buf_T *qf_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002237 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow)
2238 {
2239 qi = GET_LOC_LIST(curwin);
2240 if (qi == NULL)
2241 {
2242 EMSG(_(e_loclist));
2243 return;
2244 }
2245 }
2246
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 if (eap->addr_count != 0)
2248 height = eap->line2;
2249 else
2250 height = QF_WINHEIGHT;
2251
2252#ifdef FEAT_VISUAL
2253 reset_VIsual_and_resel(); /* stop Visual mode */
2254#endif
2255#ifdef FEAT_GUI
2256 need_mouse_correct = TRUE;
2257#endif
2258
2259 /*
2260 * Find existing quickfix window, or open a new one.
2261 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002262 win = qf_find_win(qi);
2263
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002264 if (win != NULL && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 win_goto(win);
2266 else
2267 {
Bram Moolenaar9c102382006-05-03 21:26:49 +00002268 qf_buf = qf_find_buf(qi);
2269
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 /* The current window becomes the previous window afterwards. */
2271 win = curwin;
2272
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002273 if (eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow)
2274 /* Create the new window at the very bottom. */
2275 win_goto(lastwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 if (win_split(height, WSP_BELOW) == FAIL)
2277 return; /* not enough room for window */
2278#ifdef FEAT_SCROLLBIND
2279 curwin->w_p_scb = FALSE;
2280#endif
2281
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002282 /* Remove the location list for the quickfix window */
2283 qf_free_all(curwin);
2284
2285 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002287 /*
2288 * For the location list window, create a reference to the
2289 * location list from the window 'win'.
2290 */
2291 curwin->w_llist_ref = win->w_llist;
2292 win->w_llist->qf_refcount++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002294
Bram Moolenaar9c102382006-05-03 21:26:49 +00002295 if (qf_buf != NULL)
2296 /* Use the existing quickfix buffer */
2297 (void)do_ecmd(qf_buf->b_fnum, NULL, NULL, NULL, ECMD_ONE,
2298 ECMD_HIDE + ECMD_OLDBUF);
2299 else
2300 {
2301 /* Create a new quickfix buffer */
2302 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE);
2303 /* switch off 'swapfile' */
2304 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
2305 set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix",
Bram Moolenaar838bb712006-03-11 21:24:08 +00002306 OPT_LOCAL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002307 set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL);
2308 set_option_value((char_u *)"diff", 0L, (char_u *)"", OPT_LOCAL);
2309 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002311 /* Only set the height when still in the same tab page and there is no
2312 * window to the side. */
2313 if (curtab == prevtab
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002314#ifdef FEAT_VERTSPLIT
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002315 && curwin->w_width == Columns
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002316#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002317 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 win_setheight(height);
2319 curwin->w_p_wfh = TRUE; /* set 'winfixheight' */
2320 if (win_valid(win))
2321 prevwin = win;
2322 }
2323
2324 /*
2325 * Fill the buffer with the quickfix list.
2326 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002327 qf_fill_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002329 curwin->w_cursor.lnum = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 curwin->w_cursor.col = 0;
2331 check_cursor();
2332 update_topline(); /* scroll to show the line */
2333}
2334
2335/*
2336 * Return the number of the current entry (line number in the quickfix
2337 * window).
2338 */
2339 linenr_T
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002340qf_current_entry(wp)
2341 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002343 qf_info_T *qi = &ql_info;
2344
2345 if (IS_LL_WINDOW(wp))
2346 /* In the location list window, use the referenced location list */
2347 qi = wp->w_llist_ref;
2348
2349 return qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350}
2351
2352/*
2353 * Update the cursor position in the quickfix window to the current error.
2354 * Return TRUE if there is a quickfix window.
2355 */
2356 static int
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002357qf_win_pos_update(qi, old_qf_index)
2358 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 int old_qf_index; /* previous qf_index or zero */
2360{
2361 win_T *win;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002362 int qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363
2364 /*
2365 * Put the cursor on the current error in the quickfix window, so that
2366 * it's viewable.
2367 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002368 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 if (win != NULL
2370 && qf_index <= win->w_buffer->b_ml.ml_line_count
2371 && old_qf_index != qf_index)
2372 {
2373 win_T *old_curwin = curwin;
2374
2375 curwin = win;
2376 curbuf = win->w_buffer;
2377 if (qf_index > old_qf_index)
2378 {
2379 curwin->w_redraw_top = old_qf_index;
2380 curwin->w_redraw_bot = qf_index;
2381 }
2382 else
2383 {
2384 curwin->w_redraw_top = qf_index;
2385 curwin->w_redraw_bot = old_qf_index;
2386 }
2387 curwin->w_cursor.lnum = qf_index;
2388 curwin->w_cursor.col = 0;
2389 update_topline(); /* scroll to show the line */
2390 redraw_later(VALID);
2391 curwin->w_redr_status = TRUE; /* update ruler */
2392 curwin = old_curwin;
2393 curbuf = curwin->w_buffer;
2394 }
2395 return win != NULL;
2396}
2397
2398/*
Bram Moolenaar9c102382006-05-03 21:26:49 +00002399 * Check whether the given window is displaying the specified quickfix/location
2400 * list buffer
2401 */
2402 static int
2403is_qf_win(win, qi)
2404 win_T *win;
2405 qf_info_T *qi;
2406{
2407 /*
2408 * A window displaying the quickfix buffer will have the w_llist_ref field
2409 * set to NULL.
2410 * A window displaying a location list buffer will have the w_llist_ref
2411 * pointing to the location list.
2412 */
2413 if (bt_quickfix(win->w_buffer))
2414 if ((qi == &ql_info && win->w_llist_ref == NULL)
2415 || (qi != &ql_info && win->w_llist_ref == qi))
2416 return TRUE;
2417
2418 return FALSE;
2419}
2420
2421/*
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002422 * Find a window displaying the quickfix/location list 'qi'
Bram Moolenaar9c102382006-05-03 21:26:49 +00002423 * Searches in only the windows opened in the current tab.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002424 */
2425 static win_T *
2426qf_find_win(qi)
2427 qf_info_T *qi;
2428{
2429 win_T *win;
2430
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002431 FOR_ALL_WINDOWS(win)
Bram Moolenaar9c102382006-05-03 21:26:49 +00002432 if (is_qf_win(win, qi))
2433 break;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002434
2435 return win;
2436}
2437
2438/*
Bram Moolenaar9c102382006-05-03 21:26:49 +00002439 * Find a quickfix buffer.
2440 * Searches in windows opened in all the tabs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 */
2442 static buf_T *
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002443qf_find_buf(qi)
2444 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445{
Bram Moolenaar9c102382006-05-03 21:26:49 +00002446 tabpage_T *tp;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002447 win_T *win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448
Bram Moolenaar9c102382006-05-03 21:26:49 +00002449 FOR_ALL_TAB_WINDOWS(tp, win)
2450 if (is_qf_win(win, qi))
2451 return win->w_buffer;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002452
Bram Moolenaar9c102382006-05-03 21:26:49 +00002453 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454}
2455
2456/*
2457 * Find the quickfix buffer. If it exists, update the contents.
2458 */
2459 static void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002460qf_update_buffer(qi)
2461 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462{
2463 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465
2466 /* Check if a buffer for the quickfix list exists. Update it. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002467 buf = qf_find_buf(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 if (buf != NULL)
2469 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 /* set curwin/curbuf to buf and save a few things */
2471 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002473 qf_fill_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 /* restore curwin/curbuf and a few other things */
2476 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002478 (void)qf_win_pos_update(qi, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 }
2480}
2481
2482/*
2483 * Fill current buffer with quickfix errors, replacing any previous contents.
2484 * curbuf must be the quickfix buffer!
2485 */
2486 static void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002487qf_fill_buffer(qi)
2488 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002490 linenr_T lnum;
2491 qfline_T *qfp;
2492 buf_T *errbuf;
2493 int len;
2494 int old_KeyTyped = KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495
2496 /* delete all existing lines */
2497 while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0)
2498 (void)ml_delete((linenr_T)1, FALSE);
2499
2500 /* Check if there is anything to display */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002501 if (qi->qf_curlist < qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 {
2503 /* Add one line for each error */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002504 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
2505 for (lnum = 0; lnum < qi->qf_lists[qi->qf_curlist].qf_count; ++lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 {
2507 if (qfp->qf_fnum != 0
2508 && (errbuf = buflist_findnr(qfp->qf_fnum)) != NULL
2509 && errbuf->b_fname != NULL)
2510 {
2511 if (qfp->qf_type == 1) /* :helpgrep */
2512 STRCPY(IObuff, gettail(errbuf->b_fname));
2513 else
2514 STRCPY(IObuff, errbuf->b_fname);
2515 len = (int)STRLEN(IObuff);
2516 }
2517 else
2518 len = 0;
2519 IObuff[len++] = '|';
2520
2521 if (qfp->qf_lnum > 0)
2522 {
2523 sprintf((char *)IObuff + len, "%ld", qfp->qf_lnum);
2524 len += (int)STRLEN(IObuff + len);
2525
2526 if (qfp->qf_col > 0)
2527 {
2528 sprintf((char *)IObuff + len, " col %d", qfp->qf_col);
2529 len += (int)STRLEN(IObuff + len);
2530 }
2531
2532 sprintf((char *)IObuff + len, "%s",
2533 (char *)qf_types(qfp->qf_type, qfp->qf_nr));
2534 len += (int)STRLEN(IObuff + len);
2535 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002536 else if (qfp->qf_pattern != NULL)
2537 {
2538 qf_fmt_text(qfp->qf_pattern, IObuff + len, IOSIZE - len);
2539 len += (int)STRLEN(IObuff + len);
2540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 IObuff[len++] = '|';
2542 IObuff[len++] = ' ';
2543
2544 /* Remove newlines and leading whitespace from the text.
2545 * For an unrecognized line keep the indent, the compiler may
2546 * mark a word with ^^^^. */
2547 qf_fmt_text(len > 3 ? skipwhite(qfp->qf_text) : qfp->qf_text,
2548 IObuff + len, IOSIZE - len);
2549
2550 if (ml_append(lnum, IObuff, (colnr_T)STRLEN(IObuff) + 1, FALSE)
2551 == FAIL)
2552 break;
2553 qfp = qfp->qf_next;
2554 }
2555 /* Delete the empty line which is now at the end */
2556 (void)ml_delete(lnum + 1, FALSE);
2557 }
2558
2559 /* correct cursor position */
2560 check_lnums(TRUE);
2561
2562 /* Set the 'filetype' to "qf" each time after filling the buffer. This
2563 * resembles reading a file into a buffer, it's more logical when using
2564 * autocommands. */
2565 set_option_value((char_u *)"ft", 0L, (char_u *)"qf", OPT_LOCAL);
2566 curbuf->b_p_ma = FALSE;
2567
2568#ifdef FEAT_AUTOCMD
2569 apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL,
2570 FALSE, curbuf);
2571 apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL,
2572 FALSE, curbuf);
2573#endif
2574
2575 /* make sure it will be redrawn */
2576 redraw_curbuf_later(NOT_VALID);
2577
2578 /* Restore KeyTyped, setting 'filetype' may reset it. */
2579 KeyTyped = old_KeyTyped;
2580}
2581
2582#endif /* FEAT_WINDOWS */
2583
2584/*
2585 * Return TRUE if "buf" is the quickfix buffer.
2586 */
2587 int
2588bt_quickfix(buf)
2589 buf_T *buf;
2590{
2591 return (buf->b_p_bt[0] == 'q');
2592}
2593
2594/*
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002595 * Return TRUE if "buf" is a "nofile" or "acwrite" buffer.
2596 * This means the buffer name is not a file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 */
2598 int
2599bt_nofile(buf)
2600 buf_T *buf;
2601{
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002602 return (buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
2603 || buf->b_p_bt[0] == 'a';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604}
2605
2606/*
2607 * Return TRUE if "buf" is a "nowrite" or "nofile" buffer.
2608 */
2609 int
2610bt_dontwrite(buf)
2611 buf_T *buf;
2612{
2613 return (buf->b_p_bt[0] == 'n');
2614}
2615
2616 int
2617bt_dontwrite_msg(buf)
2618 buf_T *buf;
2619{
2620 if (bt_dontwrite(buf))
2621 {
2622 EMSG(_("E382: Cannot write, 'buftype' option is set"));
2623 return TRUE;
2624 }
2625 return FALSE;
2626}
2627
2628/*
2629 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
2630 * and 'bufhidden'.
2631 */
2632 int
2633buf_hide(buf)
2634 buf_T *buf;
2635{
2636 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
2637 switch (buf->b_p_bh[0])
2638 {
2639 case 'u': /* "unload" */
2640 case 'w': /* "wipe" */
2641 case 'd': return FALSE; /* "delete" */
2642 case 'h': return TRUE; /* "hide" */
2643 }
2644 return (p_hid || cmdmod.hide);
2645}
2646
2647/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002648 * Return TRUE when using ":vimgrep" for ":grep".
2649 */
2650 int
Bram Moolenaar81695252004-12-29 20:58:21 +00002651grep_internal(cmdidx)
2652 cmdidx_T cmdidx;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002653{
Bram Moolenaar754b5602006-02-09 23:53:20 +00002654 return ((cmdidx == CMD_grep
2655 || cmdidx == CMD_lgrep
2656 || cmdidx == CMD_grepadd
2657 || cmdidx == CMD_lgrepadd)
Bram Moolenaar86b68352004-12-27 21:59:20 +00002658 && STRCMP("internal",
2659 *curbuf->b_p_gp == NUL ? p_gp : curbuf->b_p_gp) == 0);
2660}
2661
2662/*
Bram Moolenaara6557602006-02-04 22:43:20 +00002663 * Used for ":make", ":lmake", ":grep", ":lgrep", ":grepadd", and ":lgrepadd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 */
2665 void
2666ex_make(eap)
2667 exarg_T *eap;
2668{
Bram Moolenaar7c626922005-02-07 22:01:03 +00002669 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 char_u *cmd;
2671 unsigned len;
Bram Moolenaara6557602006-02-04 22:43:20 +00002672 win_T *wp = NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002673 qf_info_T *qi = &ql_info;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002674 int res;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002675#ifdef FEAT_AUTOCMD
2676 char_u *au_name = NULL;
2677
2678 switch (eap->cmdidx)
2679 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00002680 case CMD_make: au_name = (char_u *)"make"; break;
2681 case CMD_lmake: au_name = (char_u *)"lmake"; break;
2682 case CMD_grep: au_name = (char_u *)"grep"; break;
2683 case CMD_lgrep: au_name = (char_u *)"lgrep"; break;
2684 case CMD_grepadd: au_name = (char_u *)"grepadd"; break;
2685 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002686 default: break;
2687 }
2688 if (au_name != NULL)
2689 {
2690 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
2691 curbuf->b_fname, TRUE, curbuf);
Bram Moolenaar1e015462005-09-25 22:16:38 +00002692# ifdef FEAT_EVAL
Bram Moolenaar7c626922005-02-07 22:01:03 +00002693 if (did_throw || force_abort)
2694 return;
Bram Moolenaar1e015462005-09-25 22:16:38 +00002695# endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00002696 }
2697#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698
Bram Moolenaar86b68352004-12-27 21:59:20 +00002699 /* Redirect ":grep" to ":vimgrep" if 'grepprg' is "internal". */
Bram Moolenaar81695252004-12-29 20:58:21 +00002700 if (grep_internal(eap->cmdidx))
Bram Moolenaar86b68352004-12-27 21:59:20 +00002701 {
2702 ex_vimgrep(eap);
2703 return;
2704 }
2705
Bram Moolenaara6557602006-02-04 22:43:20 +00002706 if (eap->cmdidx == CMD_lmake || eap->cmdidx == CMD_lgrep
2707 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaara6557602006-02-04 22:43:20 +00002708 wp = curwin;
Bram Moolenaara6557602006-02-04 22:43:20 +00002709
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 autowrite_all();
Bram Moolenaar7c626922005-02-07 22:01:03 +00002711 fname = get_mef_name();
2712 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002714 mch_remove(fname); /* in case it's not unique */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715
2716 /*
2717 * If 'shellpipe' empty: don't redirect to 'errorfile'.
2718 */
2719 len = (unsigned)STRLEN(p_shq) * 2 + (unsigned)STRLEN(eap->arg) + 1;
2720 if (*p_sp != NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00002721 len += (unsigned)STRLEN(p_sp) + (unsigned)STRLEN(fname) + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 cmd = alloc(len);
2723 if (cmd == NULL)
2724 return;
2725 sprintf((char *)cmd, "%s%s%s", (char *)p_shq, (char *)eap->arg,
2726 (char *)p_shq);
2727 if (*p_sp != NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00002728 append_redir(cmd, p_sp, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 /*
2730 * Output a newline if there's something else than the :make command that
2731 * was typed (in which case the cursor is in column 0).
2732 */
2733 if (msg_col == 0)
2734 msg_didout = FALSE;
2735 msg_start();
2736 MSG_PUTS(":!");
2737 msg_outtrans(cmd); /* show what we are doing */
2738
2739 /* let the shell know if we are redirecting output or not */
2740 do_shell(cmd, *p_sp != NUL ? SHELL_DOOUT : 0);
2741
2742#ifdef AMIGA
2743 out_flush();
2744 /* read window status report and redraw before message */
2745 (void)char_avail();
2746#endif
2747
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002748 res = qf_init(wp, fname, (eap->cmdidx != CMD_make
Bram Moolenaara6557602006-02-04 22:43:20 +00002749 && eap->cmdidx != CMD_lmake) ? p_gefm : p_efm,
2750 (eap->cmdidx != CMD_grepadd
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002751 && eap->cmdidx != CMD_lgrepadd));
2752#ifdef FEAT_AUTOCMD
2753 if (au_name != NULL)
2754 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
2755 curbuf->b_fname, TRUE, curbuf);
2756#endif
2757 if (res > 0 && !eap->forceit)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002758 {
2759 if (wp != NULL)
2760 qi = GET_LOC_LIST(wp);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002761 qf_jump(qi, 0, 0, FALSE); /* display first error */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763
Bram Moolenaar7c626922005-02-07 22:01:03 +00002764 mch_remove(fname);
2765 vim_free(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 vim_free(cmd);
2767}
2768
2769/*
2770 * Return the name for the errorfile, in allocated memory.
2771 * Find a new unique name when 'makeef' contains "##".
2772 * Returns NULL for error.
2773 */
2774 static char_u *
2775get_mef_name()
2776{
2777 char_u *p;
2778 char_u *name;
2779 static int start = -1;
2780 static int off = 0;
2781#ifdef HAVE_LSTAT
2782 struct stat sb;
2783#endif
2784
2785 if (*p_mef == NUL)
2786 {
2787 name = vim_tempname('e');
2788 if (name == NULL)
2789 EMSG(_(e_notmp));
2790 return name;
2791 }
2792
2793 for (p = p_mef; *p; ++p)
2794 if (p[0] == '#' && p[1] == '#')
2795 break;
2796
2797 if (*p == NUL)
2798 return vim_strsave(p_mef);
2799
2800 /* Keep trying until the name doesn't exist yet. */
2801 for (;;)
2802 {
2803 if (start == -1)
2804 start = mch_get_pid();
2805 else
2806 off += 19;
2807
2808 name = alloc((unsigned)STRLEN(p_mef) + 30);
2809 if (name == NULL)
2810 break;
2811 STRCPY(name, p_mef);
2812 sprintf((char *)name + (p - p_mef), "%d%d", start, off);
2813 STRCAT(name, p + 2);
2814 if (mch_getperm(name) < 0
2815#ifdef HAVE_LSTAT
2816 /* Don't accept a symbolic link, its a security risk. */
2817 && mch_lstat((char *)name, &sb) < 0
2818#endif
2819 )
2820 break;
2821 vim_free(name);
2822 }
2823 return name;
2824}
2825
2826/*
2827 * ":cc", ":crewind", ":cfirst" and ":clast".
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002828 * ":ll", ":lrewind", ":lfirst" and ":llast".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 */
2830 void
2831ex_cc(eap)
2832 exarg_T *eap;
2833{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002834 qf_info_T *qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002835
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002836 if (eap->cmdidx == CMD_ll
2837 || eap->cmdidx == CMD_lrewind
2838 || eap->cmdidx == CMD_lfirst
2839 || eap->cmdidx == CMD_llast)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002840 {
2841 qi = GET_LOC_LIST(curwin);
2842 if (qi == NULL)
2843 {
2844 EMSG(_(e_loclist));
2845 return;
2846 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002847 }
2848
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002849 qf_jump(qi, 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 eap->addr_count > 0
2851 ? (int)eap->line2
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002852 : (eap->cmdidx == CMD_cc || eap->cmdidx == CMD_ll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 ? 0
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002854 : (eap->cmdidx == CMD_crewind || eap->cmdidx == CMD_lrewind
2855 || eap->cmdidx == CMD_cfirst || eap->cmdidx == CMD_lfirst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 ? 1
2857 : 32767,
2858 eap->forceit);
2859}
2860
2861/*
2862 * ":cnext", ":cnfile", ":cNext" and ":cprevious".
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002863 * ":lnext", ":lNext", ":lprevious", ":lnfile", ":lNfile" and ":lpfile".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 */
2865 void
2866ex_cnext(eap)
2867 exarg_T *eap;
2868{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002869 qf_info_T *qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002870
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002871 if (eap->cmdidx == CMD_lnext
2872 || eap->cmdidx == CMD_lNext
2873 || eap->cmdidx == CMD_lprevious
2874 || eap->cmdidx == CMD_lnfile
2875 || eap->cmdidx == CMD_lNfile
2876 || eap->cmdidx == CMD_lpfile)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002877 {
2878 qi = GET_LOC_LIST(curwin);
2879 if (qi == NULL)
2880 {
2881 EMSG(_(e_loclist));
2882 return;
2883 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002884 }
2885
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002886 qf_jump(qi, (eap->cmdidx == CMD_cnext || eap->cmdidx == CMD_lnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 ? FORWARD
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002888 : (eap->cmdidx == CMD_cnfile || eap->cmdidx == CMD_lnfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 ? FORWARD_FILE
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002890 : (eap->cmdidx == CMD_cpfile || eap->cmdidx == CMD_lpfile
2891 || eap->cmdidx == CMD_cNfile || eap->cmdidx == CMD_lNfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 ? BACKWARD_FILE
2893 : BACKWARD,
2894 eap->addr_count > 0 ? (int)eap->line2 : 1, eap->forceit);
2895}
2896
2897/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002898 * ":cfile"/":cgetfile"/":caddfile" commands.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002899 * ":lfile"/":lgetfile"/":laddfile" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 */
2901 void
2902ex_cfile(eap)
2903 exarg_T *eap;
2904{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002905 win_T *wp = NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002906 qf_info_T *qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002907
2908 if (eap->cmdidx == CMD_lfile || eap->cmdidx == CMD_lgetfile
2909 || eap->cmdidx == CMD_laddfile)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002910 wp = curwin;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002911
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 if (*eap->arg != NUL)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002913 set_string_option_direct((char_u *)"ef", -1, eap->arg, OPT_FREE, 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002914
2915 /*
2916 * This function is used by the :cfile, :cgetfile and :caddfile
2917 * commands.
2918 * :cfile always creates a new quickfix list and jumps to the
2919 * first error.
2920 * :cgetfile creates a new quickfix list but doesn't jump to the
2921 * first error.
2922 * :caddfile adds to an existing quickfix list. If there is no
2923 * quickfix list then a new list is created.
2924 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002925 if (qf_init(wp, p_ef, p_efm, (eap->cmdidx != CMD_caddfile
2926 && eap->cmdidx != CMD_laddfile)) > 0
2927 && (eap->cmdidx == CMD_cfile
2928 || eap->cmdidx == CMD_lfile))
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002929 {
2930 if (wp != NULL)
2931 qi = GET_LOC_LIST(wp);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002932 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934}
2935
2936/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002937 * ":vimgrep {pattern} file(s)"
Bram Moolenaara6557602006-02-04 22:43:20 +00002938 * ":vimgrepadd {pattern} file(s)"
2939 * ":lvimgrep {pattern} file(s)"
2940 * ":lvimgrepadd {pattern} file(s)"
Bram Moolenaar86b68352004-12-27 21:59:20 +00002941 */
2942 void
2943ex_vimgrep(eap)
2944 exarg_T *eap;
2945{
Bram Moolenaar81695252004-12-29 20:58:21 +00002946 regmmatch_T regmatch;
Bram Moolenaar748bf032005-02-02 23:04:36 +00002947 int fcount;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002948 char_u **fnames;
Bram Moolenaar748bf032005-02-02 23:04:36 +00002949 char_u *s;
2950 char_u *p;
Bram Moolenaar748bf032005-02-02 23:04:36 +00002951 int fi;
Bram Moolenaara6557602006-02-04 22:43:20 +00002952 qf_info_T *qi = &ql_info;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002953 qfline_T *prevp = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002954 long lnum;
Bram Moolenaar81695252004-12-29 20:58:21 +00002955 buf_T *buf;
2956 int duplicate_name = FALSE;
2957 int using_dummy;
2958 int found_match;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00002959 buf_T *first_match_buf = NULL;
2960 time_t seconds = 0;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00002961 int save_mls;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00002962#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
2963 char_u *save_ei = NULL;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00002964#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00002965 aco_save_T aco;
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00002966#ifdef FEAT_AUTOCMD
Bram Moolenaar7c626922005-02-07 22:01:03 +00002967 char_u *au_name = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002968 int flags = 0;
2969 colnr_T col;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002970 long tomatch;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002971
2972 switch (eap->cmdidx)
2973 {
2974 case CMD_vimgrep: au_name = (char_u *)"vimgrep"; break;
Bram Moolenaara6557602006-02-04 22:43:20 +00002975 case CMD_lvimgrep: au_name = (char_u *)"lvimgrep"; break;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002976 case CMD_vimgrepadd: au_name = (char_u *)"vimgrepadd"; break;
Bram Moolenaara6557602006-02-04 22:43:20 +00002977 case CMD_lvimgrepadd: au_name = (char_u *)"lvimgrepadd"; break;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002978 default: break;
2979 }
2980 if (au_name != NULL)
2981 {
2982 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
2983 curbuf->b_fname, TRUE, curbuf);
2984 if (did_throw || force_abort)
2985 return;
2986 }
2987#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00002988
Bram Moolenaar754b5602006-02-09 23:53:20 +00002989 if (eap->cmdidx == CMD_lgrep
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002990 || eap->cmdidx == CMD_lvimgrep
2991 || eap->cmdidx == CMD_lgrepadd
2992 || eap->cmdidx == CMD_lvimgrepadd)
Bram Moolenaara6557602006-02-04 22:43:20 +00002993 {
2994 qi = ll_get_or_alloc_list(curwin);
2995 if (qi == NULL)
2996 return;
Bram Moolenaara6557602006-02-04 22:43:20 +00002997 }
2998
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002999 if (eap->addr_count > 0)
3000 tomatch = eap->line2;
3001 else
3002 tomatch = MAXLNUM;
3003
Bram Moolenaar81695252004-12-29 20:58:21 +00003004 /* Get the search pattern: either white-separated or enclosed in // */
Bram Moolenaar86b68352004-12-27 21:59:20 +00003005 regmatch.regprog = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003006 p = skip_vimgrep_pat(eap->arg, &s, &flags);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003007 if (p == NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003008 {
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00003009 EMSG(_(e_invalpat));
Bram Moolenaar748bf032005-02-02 23:04:36 +00003010 goto theend;
Bram Moolenaar81695252004-12-29 20:58:21 +00003011 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003012 regmatch.regprog = vim_regcomp(s, RE_MAGIC);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003013 if (regmatch.regprog == NULL)
3014 goto theend;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003015 regmatch.rmm_ic = p_ic;
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003016 regmatch.rmm_maxcol = 0;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003017
3018 p = skipwhite(p);
3019 if (*p == NUL)
3020 {
3021 EMSG(_("E683: File name missing or invalid pattern"));
3022 goto theend;
3023 }
3024
Bram Moolenaar754b5602006-02-09 23:53:20 +00003025 if ((eap->cmdidx != CMD_grepadd && eap->cmdidx != CMD_lgrepadd &&
Bram Moolenaara6557602006-02-04 22:43:20 +00003026 eap->cmdidx != CMD_vimgrepadd && eap->cmdidx != CMD_lvimgrepadd)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003027 || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003028 /* make place for a new list */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003029 qf_new_list(qi);
3030 else if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003031 /* Adding to existing list, find last entry. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003032 for (prevp = qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003033 prevp->qf_next != prevp; prevp = prevp->qf_next)
3034 ;
3035
3036 /* parse the list of arguments */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003037 if (get_arglist_exp(p, &fcount, &fnames) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003038 goto theend;
3039 if (fcount == 0)
3040 {
3041 EMSG(_(e_nomatch));
3042 goto theend;
3043 }
3044
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003045 seconds = (time_t)0;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003046 for (fi = 0; fi < fcount && !got_int && tomatch > 0; ++fi)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003047 {
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003048 if (time(NULL) > seconds)
3049 {
3050 /* Display the file name every second or so. */
3051 seconds = time(NULL);
3052 msg_start();
Bram Moolenaara5373fa2005-09-09 19:47:12 +00003053 p = msg_strtrunc(fnames[fi], TRUE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003054 if (p == NULL)
3055 msg_outtrans(fnames[fi]);
3056 else
3057 {
3058 msg_outtrans(p);
3059 vim_free(p);
3060 }
3061 msg_clr_eos();
3062 msg_didout = FALSE; /* overwrite this message */
3063 msg_nowait = TRUE; /* don't wait for this message */
3064 msg_col = 0;
3065 out_flush();
3066 }
3067
Bram Moolenaar81695252004-12-29 20:58:21 +00003068 buf = buflist_findname_exp(fnames[fi]);
3069 if (buf == NULL || buf->b_ml.ml_mfp == NULL)
3070 {
3071 /* Remember that a buffer with this name already exists. */
3072 duplicate_name = (buf != NULL);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003073 using_dummy = TRUE;
3074
3075#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3076 /* Don't do Filetype autocommands to avoid loading syntax and
3077 * indent scripts, a great speed improvement. */
3078 save_ei = au_event_disable(",Filetype");
3079#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003080 /* Don't use modelines here, it's useless. */
3081 save_mls = p_mls;
3082 p_mls = 0;
Bram Moolenaar81695252004-12-29 20:58:21 +00003083
3084 /* Load file into a buffer, so that 'fileencoding' is detected,
3085 * autocommands applied, etc. */
3086 buf = load_dummy_buffer(fnames[fi]);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003087
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003088 p_mls = save_mls;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003089#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3090 au_event_restore(save_ei);
3091#endif
Bram Moolenaar81695252004-12-29 20:58:21 +00003092 }
3093 else
3094 /* Use existing, loaded buffer. */
3095 using_dummy = FALSE;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003096
Bram Moolenaar81695252004-12-29 20:58:21 +00003097 if (buf == NULL)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003098 {
3099 if (!got_int)
3100 smsg((char_u *)_("Cannot open file \"%s\""), fnames[fi]);
3101 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003102 else
3103 {
Bram Moolenaara3227e22006-03-08 21:32:40 +00003104 /* Try for a match in all lines of the buffer.
3105 * For ":1vimgrep" look for first match only. */
Bram Moolenaar81695252004-12-29 20:58:21 +00003106 found_match = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003107 for (lnum = 1; lnum <= buf->b_ml.ml_line_count && tomatch > 0;
3108 ++lnum)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003109 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003110 col = 0;
3111 while (vim_regexec_multi(&regmatch, curwin, buf, lnum,
3112 col) > 0)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003113 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003114 if (qf_add_entry(qi, &prevp,
Bram Moolenaar86b68352004-12-27 21:59:20 +00003115 NULL, /* dir */
3116 fnames[fi],
Bram Moolenaar81695252004-12-29 20:58:21 +00003117 ml_get_buf(buf,
3118 regmatch.startpos[0].lnum + lnum, FALSE),
3119 regmatch.startpos[0].lnum + lnum,
3120 regmatch.startpos[0].col + 1,
Bram Moolenaar05159a02005-02-26 23:04:13 +00003121 FALSE, /* vis_col */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003122 NULL, /* search pattern */
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003123 0, /* nr */
3124 0, /* type */
3125 TRUE /* valid */
Bram Moolenaar86b68352004-12-27 21:59:20 +00003126 ) == FAIL)
3127 {
3128 got_int = TRUE;
3129 break;
3130 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003131 found_match = TRUE;
3132 if (--tomatch == 0)
3133 break;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003134 if ((flags & VGR_GLOBAL) == 0
3135 || regmatch.endpos[0].lnum > 0)
3136 break;
3137 col = regmatch.endpos[0].col
3138 + (col == regmatch.endpos[0].col);
3139 if (col > STRLEN(ml_get_buf(buf, lnum, FALSE)))
3140 break;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003141 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003142 line_breakcheck();
Bram Moolenaar81695252004-12-29 20:58:21 +00003143 if (got_int)
3144 break;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003145 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003146
3147 if (using_dummy)
3148 {
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003149 if (found_match && first_match_buf == NULL)
3150 first_match_buf = buf;
Bram Moolenaar81695252004-12-29 20:58:21 +00003151 if (duplicate_name)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003152 {
Bram Moolenaar81695252004-12-29 20:58:21 +00003153 /* Never keep a dummy buffer if there is another buffer
3154 * with the same name. */
3155 wipe_dummy_buffer(buf);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003156 buf = NULL;
3157 }
Bram Moolenaara3227e22006-03-08 21:32:40 +00003158 else if (!cmdmod.hide
3159 || buf->b_p_bh[0] == 'u' /* "unload" */
3160 || buf->b_p_bh[0] == 'w' /* "wipe" */
3161 || buf->b_p_bh[0] == 'd') /* "delete" */
Bram Moolenaar81695252004-12-29 20:58:21 +00003162 {
Bram Moolenaara3227e22006-03-08 21:32:40 +00003163 /* When no match was found we don't need to remember the
3164 * buffer, wipe it out. If there was a match and it
3165 * wasn't the first one or we won't jump there: only
3166 * unload the buffer.
3167 * Ignore 'hidden' here, because it may lead to having too
3168 * many swap files. */
Bram Moolenaar81695252004-12-29 20:58:21 +00003169 if (!found_match)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003170 {
Bram Moolenaar81695252004-12-29 20:58:21 +00003171 wipe_dummy_buffer(buf);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003172 buf = NULL;
3173 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003174 else if (buf != first_match_buf || (flags & VGR_NOJUMP))
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003175 {
Bram Moolenaar81695252004-12-29 20:58:21 +00003176 unload_dummy_buffer(buf);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003177 buf = NULL;
3178 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003179 }
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003180
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003181 if (buf != NULL)
3182 {
3183 /* The buffer is still loaded, the Filetype autocommands
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003184 * need to be done now, in that buffer. And the modelines
Bram Moolenaara3227e22006-03-08 21:32:40 +00003185 * need to be done (again). But not the window-local
3186 * options! */
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003187 aucmd_prepbuf(&aco, buf);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003188#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003189 apply_autocmds(EVENT_FILETYPE, buf->b_p_ft,
3190 buf->b_fname, TRUE, buf);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003191#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00003192 do_modelines(OPT_NOWIN);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003193 aucmd_restbuf(&aco);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003194 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003195 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003196 }
3197 }
3198
3199 FreeWild(fcount, fnames);
3200
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003201 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
3202 qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start;
3203 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003204
3205#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003206 qf_update_buffer(qi);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003207#endif
3208
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003209#ifdef FEAT_AUTOCMD
3210 if (au_name != NULL)
3211 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
3212 curbuf->b_fname, TRUE, curbuf);
3213#endif
3214
Bram Moolenaar86b68352004-12-27 21:59:20 +00003215 /* Jump to first match. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003216 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003217 {
3218 if ((flags & VGR_NOJUMP) == 0)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003219 qf_jump(qi, 0, 0, eap->forceit);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003220 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003221 else
3222 EMSG2(_(e_nomatch2), s);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003223
3224theend:
3225 vim_free(regmatch.regprog);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003226}
3227
3228/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00003229 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
Bram Moolenaar748bf032005-02-02 23:04:36 +00003230 * Put the start of the pattern in "*s", unless "s" is NULL.
Bram Moolenaar05159a02005-02-26 23:04:13 +00003231 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
3232 * If "s" is not NULL terminate the pattern with a NUL.
3233 * Return a pointer to the char just past the pattern plus flags.
Bram Moolenaar748bf032005-02-02 23:04:36 +00003234 */
3235 char_u *
Bram Moolenaar05159a02005-02-26 23:04:13 +00003236skip_vimgrep_pat(p, s, flags)
3237 char_u *p;
3238 char_u **s;
3239 int *flags;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003240{
3241 int c;
3242
3243 if (vim_isIDc(*p))
3244 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003245 /* ":vimgrep pattern fname" */
Bram Moolenaar748bf032005-02-02 23:04:36 +00003246 if (s != NULL)
3247 *s = p;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003248 p = skiptowhite(p);
3249 if (s != NULL && *p != NUL)
3250 *p++ = NUL;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003251 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003252 else
3253 {
3254 /* ":vimgrep /pattern/[g][j] fname" */
3255 if (s != NULL)
3256 *s = p + 1;
3257 c = *p;
3258 p = skip_regexp(p + 1, c, TRUE, NULL);
3259 if (*p != c)
3260 return NULL;
3261
3262 /* Truncate the pattern. */
3263 if (s != NULL)
3264 *p = NUL;
3265 ++p;
3266
3267 /* Find the flags */
3268 while (*p == 'g' || *p == 'j')
3269 {
3270 if (flags != NULL)
3271 {
3272 if (*p == 'g')
3273 *flags |= VGR_GLOBAL;
3274 else
3275 *flags |= VGR_NOJUMP;
3276 }
3277 ++p;
3278 }
3279 }
Bram Moolenaar748bf032005-02-02 23:04:36 +00003280 return p;
3281}
3282
3283/*
Bram Moolenaar81695252004-12-29 20:58:21 +00003284 * Load file "fname" into a dummy buffer and return the buffer pointer.
3285 * Returns NULL if it fails.
3286 * Must call unload_dummy_buffer() or wipe_dummy_buffer() later!
3287 */
3288 static buf_T *
3289load_dummy_buffer(fname)
3290 char_u *fname;
3291{
3292 buf_T *newbuf;
3293 int failed = TRUE;
Bram Moolenaar81695252004-12-29 20:58:21 +00003294 aco_save_T aco;
Bram Moolenaar81695252004-12-29 20:58:21 +00003295
3296 /* Allocate a buffer without putting it in the buffer list. */
3297 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
3298 if (newbuf == NULL)
3299 return NULL;
3300
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00003301 /* Init the options. */
3302 buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP);
3303
Bram Moolenaar81695252004-12-29 20:58:21 +00003304 /* set curwin/curbuf to buf and save a few things */
3305 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar81695252004-12-29 20:58:21 +00003306
3307 /* Need to set the filename for autocommands. */
3308 (void)setfname(curbuf, fname, NULL, FALSE);
3309
Bram Moolenaar4770d092006-01-12 23:22:24 +00003310 if (ml_open(curbuf) == OK)
Bram Moolenaar81695252004-12-29 20:58:21 +00003311 {
3312 /* Create swap file now to avoid the ATTENTION message. */
3313 check_need_swap(TRUE);
3314
3315 /* Remove the "dummy" flag, otherwise autocommands may not
3316 * work. */
3317 curbuf->b_flags &= ~BF_DUMMY;
3318
3319 if (readfile(fname, NULL,
3320 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
3321 NULL, READ_NEW | READ_DUMMY) == OK
Bram Moolenaard68071d2006-05-02 22:08:30 +00003322 && !got_int
Bram Moolenaar81695252004-12-29 20:58:21 +00003323 && !(curbuf->b_flags & BF_NEW))
3324 {
3325 failed = FALSE;
3326 if (curbuf != newbuf)
3327 {
3328 /* Bloody autocommands changed the buffer! */
3329 if (buf_valid(newbuf))
3330 wipe_buffer(newbuf, FALSE);
3331 newbuf = curbuf;
3332 }
3333 }
3334 }
3335
Bram Moolenaar81695252004-12-29 20:58:21 +00003336 /* restore curwin/curbuf and a few other things */
3337 aucmd_restbuf(&aco);
Bram Moolenaar81695252004-12-29 20:58:21 +00003338
3339 if (!buf_valid(newbuf))
3340 return NULL;
3341 if (failed)
3342 {
3343 wipe_dummy_buffer(newbuf);
3344 return NULL;
3345 }
3346 return newbuf;
3347}
3348
3349/*
3350 * Wipe out the dummy buffer that load_dummy_buffer() created.
3351 */
3352 static void
3353wipe_dummy_buffer(buf)
3354 buf_T *buf;
3355{
3356 if (curbuf != buf) /* safety check */
Bram Moolenaard68071d2006-05-02 22:08:30 +00003357 {
3358#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
3359 cleanup_T cs;
3360
3361 /* Reset the error/interrupt/exception state here so that aborting()
3362 * returns FALSE when wiping out the buffer. Otherwise it doesn't
3363 * work when got_int is set. */
3364 enter_cleanup(&cs);
3365#endif
3366
Bram Moolenaar81695252004-12-29 20:58:21 +00003367 wipe_buffer(buf, FALSE);
Bram Moolenaard68071d2006-05-02 22:08:30 +00003368
3369#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
3370 /* Restore the error/interrupt/exception state if not discarded by a
3371 * new aborting error, interrupt, or uncaught exception. */
3372 leave_cleanup(&cs);
3373#endif
3374 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003375}
3376
3377/*
3378 * Unload the dummy buffer that load_dummy_buffer() created.
3379 */
3380 static void
3381unload_dummy_buffer(buf)
3382 buf_T *buf;
3383{
3384 if (curbuf != buf) /* safety check */
3385 close_buffer(NULL, buf, DOBUF_UNLOAD);
3386}
3387
Bram Moolenaar05159a02005-02-26 23:04:13 +00003388#if defined(FEAT_EVAL) || defined(PROTO)
3389/*
3390 * Add each quickfix error to list "list" as a dictionary.
3391 */
3392 int
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003393get_errorlist(wp, list)
3394 win_T *wp;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003395 list_T *list;
3396{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003397 qf_info_T *qi = &ql_info;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003398 dict_T *dict;
3399 char_u buf[2];
3400 qfline_T *qfp;
3401 int i;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003402
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003403 if (wp != NULL)
3404 {
3405 qi = GET_LOC_LIST(wp);
3406 if (qi == NULL)
3407 return FAIL;
3408 }
3409
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003410 if (qi->qf_curlist >= qi->qf_listcount
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003411 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003412 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003413
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003414 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
3415 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; ++i)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003416 {
3417 if ((dict = dict_alloc()) == NULL)
3418 return FAIL;
3419 if (list_append_dict(list, dict) == FAIL)
3420 return FAIL;
3421
3422 buf[0] = qfp->qf_type;
3423 buf[1] = NUL;
3424 if ( dict_add_nr_str(dict, "bufnr", (long)qfp->qf_fnum, NULL) == FAIL
3425 || dict_add_nr_str(dict, "lnum", (long)qfp->qf_lnum, NULL) == FAIL
3426 || dict_add_nr_str(dict, "col", (long)qfp->qf_col, NULL) == FAIL
3427 || dict_add_nr_str(dict, "vcol", (long)qfp->qf_viscol, NULL) == FAIL
3428 || dict_add_nr_str(dict, "nr", (long)qfp->qf_nr, NULL) == FAIL
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003429 || dict_add_nr_str(dict, "pattern", 0L, qfp->qf_pattern) == FAIL
Bram Moolenaar05159a02005-02-26 23:04:13 +00003430 || dict_add_nr_str(dict, "text", 0L, qfp->qf_text) == FAIL
3431 || dict_add_nr_str(dict, "type", 0L, buf) == FAIL
3432 || dict_add_nr_str(dict, "valid", (long)qfp->qf_valid, NULL) == FAIL)
3433 return FAIL;
3434
3435 qfp = qfp->qf_next;
3436 }
3437 return OK;
3438}
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003439
3440/*
3441 * Populate the quickfix list with the items supplied in the list
3442 * of dictionaries.
3443 */
3444 int
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003445set_errorlist(wp, list, action)
3446 win_T *wp;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003447 list_T *list;
Bram Moolenaar35c54e52005-05-20 21:25:31 +00003448 int action;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003449{
3450 listitem_T *li;
3451 dict_T *d;
3452 char_u *filename, *pattern, *text, *type;
3453 long lnum;
3454 int col, nr;
3455 int vcol;
3456 qfline_T *prevp = NULL;
3457 int valid, status;
3458 int retval = OK;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003459 qf_info_T *qi = &ql_info;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003460
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003461 if (wp != NULL)
3462 {
Bram Moolenaar280f1262006-01-30 00:14:18 +00003463 qi = ll_get_or_alloc_list(wp);
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003464 if (qi == NULL)
3465 return FAIL;
3466 }
3467
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003468 if (action == ' ' || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar35c54e52005-05-20 21:25:31 +00003469 /* make place for a new list */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003470 qf_new_list(qi);
3471 else if (action == 'a' && qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar35c54e52005-05-20 21:25:31 +00003472 /* Adding to existing list, find last entry. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003473 for (prevp = qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar35c54e52005-05-20 21:25:31 +00003474 prevp->qf_next != prevp; prevp = prevp->qf_next)
3475 ;
3476 else if (action == 'r')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003477 qf_free(qi, qi->qf_curlist);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003478
3479 for (li = list->lv_first; li != NULL; li = li->li_next)
3480 {
3481 if (li->li_tv.v_type != VAR_DICT)
3482 continue; /* Skip non-dict items */
3483
3484 d = li->li_tv.vval.v_dict;
3485 if (d == NULL)
3486 continue;
3487
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003488 filename = get_dict_string(d, (char_u *)"filename", TRUE);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003489 lnum = get_dict_number(d, (char_u *)"lnum");
3490 col = get_dict_number(d, (char_u *)"col");
3491 vcol = get_dict_number(d, (char_u *)"vcol");
3492 nr = get_dict_number(d, (char_u *)"nr");
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003493 type = get_dict_string(d, (char_u *)"type", TRUE);
3494 pattern = get_dict_string(d, (char_u *)"pattern", TRUE);
3495 text = get_dict_string(d, (char_u *)"text", TRUE);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003496 if (text == NULL)
3497 text = vim_strsave((char_u *)"");
3498
3499 valid = TRUE;
3500 if (filename == NULL || (lnum == 0 && pattern == NULL))
3501 valid = FALSE;
3502
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003503 status = qf_add_entry(qi, &prevp,
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003504 NULL, /* dir */
3505 filename,
3506 text,
3507 lnum,
3508 col,
3509 vcol, /* vis_col */
3510 pattern, /* search pattern */
3511 nr,
3512 type == NULL ? NUL : *type,
3513 valid);
3514
3515 vim_free(filename);
3516 vim_free(pattern);
3517 vim_free(text);
3518 vim_free(type);
3519
3520 if (status == FAIL)
3521 {
3522 retval = FAIL;
3523 break;
3524 }
3525 }
3526
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003527 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
3528 qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start;
3529 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003530
3531#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003532 qf_update_buffer(qi);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003533#endif
3534
3535 return retval;
3536}
Bram Moolenaar05159a02005-02-26 23:04:13 +00003537#endif
3538
Bram Moolenaar81695252004-12-29 20:58:21 +00003539/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003540 * ":[range]cbuffer [bufnr]" command.
Bram Moolenaara6557602006-02-04 22:43:20 +00003541 * ":[range]caddbuffer [bufnr]" command.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003542 * ":[range]cgetbuffer [bufnr]" command.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003543 * ":[range]lbuffer [bufnr]" command.
Bram Moolenaara6557602006-02-04 22:43:20 +00003544 * ":[range]laddbuffer [bufnr]" command.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003545 * ":[range]lgetbuffer [bufnr]" command.
Bram Moolenaar86b68352004-12-27 21:59:20 +00003546 */
3547 void
3548ex_cbuffer(eap)
3549 exarg_T *eap;
3550{
3551 buf_T *buf = NULL;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003552 qf_info_T *qi = &ql_info;
3553
Bram Moolenaardb552d602006-03-23 22:59:57 +00003554 if (eap->cmdidx == CMD_lbuffer || eap->cmdidx == CMD_lgetbuffer
3555 || eap->cmdidx == CMD_laddbuffer)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003556 {
3557 qi = ll_get_or_alloc_list(curwin);
3558 if (qi == NULL)
3559 return;
3560 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003561
3562 if (*eap->arg == NUL)
3563 buf = curbuf;
3564 else if (*skipwhite(skipdigits(eap->arg)) == NUL)
3565 buf = buflist_findnr(atoi((char *)eap->arg));
3566 if (buf == NULL)
3567 EMSG(_(e_invarg));
3568 else if (buf->b_ml.ml_mfp == NULL)
3569 EMSG(_("E681: Buffer is not loaded"));
3570 else
3571 {
3572 if (eap->addr_count == 0)
3573 {
3574 eap->line1 = 1;
3575 eap->line2 = buf->b_ml.ml_line_count;
3576 }
3577 if (eap->line1 < 1 || eap->line1 > buf->b_ml.ml_line_count
3578 || eap->line2 < 1 || eap->line2 > buf->b_ml.ml_line_count)
3579 EMSG(_(e_invrange));
3580 else
Bram Moolenaar754b5602006-02-09 23:53:20 +00003581 {
Bram Moolenaardb552d602006-03-23 22:59:57 +00003582 if (qf_init_ext(qi, NULL, buf, NULL, p_efm,
3583 (eap->cmdidx != CMD_caddbuffer
3584 && eap->cmdidx != CMD_laddbuffer),
Bram Moolenaar754b5602006-02-09 23:53:20 +00003585 eap->line1, eap->line2) > 0
Bram Moolenaardb552d602006-03-23 22:59:57 +00003586 && (eap->cmdidx == CMD_cbuffer
3587 || eap->cmdidx == CMD_lbuffer))
Bram Moolenaar754b5602006-02-09 23:53:20 +00003588 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
3589 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003590 }
3591}
3592
Bram Moolenaar1e015462005-09-25 22:16:38 +00003593#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003594/*
Bram Moolenaardb552d602006-03-23 22:59:57 +00003595 * ":cexpr {expr}", ":cgetexpr {expr}", ":caddexpr {expr}" command.
3596 * ":lexpr {expr}", ":lgetexpr {expr}", ":laddexpr {expr}" command.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003597 */
3598 void
3599ex_cexpr(eap)
3600 exarg_T *eap;
3601{
3602 typval_T *tv;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003603 qf_info_T *qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003604
Bram Moolenaardb552d602006-03-23 22:59:57 +00003605 if (eap->cmdidx == CMD_lexpr || eap->cmdidx == CMD_lgetexpr
3606 || eap->cmdidx == CMD_laddexpr)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003607 {
3608 qi = ll_get_or_alloc_list(curwin);
3609 if (qi == NULL)
3610 return;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003611 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003612
Bram Moolenaar4770d092006-01-12 23:22:24 +00003613 /* Evaluate the expression. When the result is a string or a list we can
3614 * use it to fill the errorlist. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003615 tv = eval_expr(eap->arg, NULL);
Bram Moolenaar4770d092006-01-12 23:22:24 +00003616 if (tv != NULL)
3617 {
3618 if ((tv->v_type == VAR_STRING && tv->vval.v_string != NULL)
3619 || (tv->v_type == VAR_LIST && tv->vval.v_list != NULL))
3620 {
Bram Moolenaardb552d602006-03-23 22:59:57 +00003621 if (qf_init_ext(qi, NULL, NULL, tv, p_efm,
3622 (eap->cmdidx != CMD_caddexpr
3623 && eap->cmdidx != CMD_laddexpr),
Bram Moolenaar4770d092006-01-12 23:22:24 +00003624 (linenr_T)0, (linenr_T)0) > 0
Bram Moolenaardb552d602006-03-23 22:59:57 +00003625 && (eap->cmdidx == CMD_cexpr
3626 || eap->cmdidx == CMD_lexpr))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003627 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
Bram Moolenaar4770d092006-01-12 23:22:24 +00003628 }
3629 else
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003630 EMSG(_("E777: String or List expected"));
Bram Moolenaar4770d092006-01-12 23:22:24 +00003631 free_tv(tv);
3632 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003633}
Bram Moolenaar1e015462005-09-25 22:16:38 +00003634#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003635
3636/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 * ":helpgrep {pattern}"
3638 */
3639 void
3640ex_helpgrep(eap)
3641 exarg_T *eap;
3642{
3643 regmatch_T regmatch;
3644 char_u *save_cpo;
3645 char_u *p;
3646 int fcount;
3647 char_u **fnames;
3648 FILE *fd;
3649 int fi;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003650 qfline_T *prevp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 long lnum;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003652#ifdef FEAT_MULTI_LANG
3653 char_u *lang;
3654#endif
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003655 qf_info_T *qi = &ql_info;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003656 int new_qi = FALSE;
3657 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658
3659 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
3660 save_cpo = p_cpo;
3661 p_cpo = (char_u *)"";
3662
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003663#ifdef FEAT_MULTI_LANG
3664 /* Check for a specified language */
3665 lang = check_help_lang(eap->arg);
3666#endif
3667
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003668 if (eap->cmdidx == CMD_lhelpgrep)
3669 {
3670 /* Find an existing help window */
3671 FOR_ALL_WINDOWS(wp)
3672 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
3673 break;
3674
3675 if (wp == NULL) /* Help window not found */
3676 qi = NULL;
3677 else
3678 qi = wp->w_llist;
3679
3680 if (qi == NULL)
3681 {
3682 /* Allocate a new location list for help text matches */
3683 if ((qi = ll_new_list()) == NULL)
3684 return;
3685 new_qi = TRUE;
3686 }
3687 }
3688
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 regmatch.regprog = vim_regcomp(eap->arg, RE_MAGIC + RE_STRING);
3690 regmatch.rm_ic = FALSE;
3691 if (regmatch.regprog != NULL)
3692 {
3693 /* create a new quickfix list */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003694 qf_new_list(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695
3696 /* Go through all directories in 'runtimepath' */
3697 p = p_rtp;
3698 while (*p != NUL && !got_int)
3699 {
3700 copy_option_part(&p, NameBuff, MAXPATHL, ",");
3701
3702 /* Find all "*.txt" and "*.??x" files in the "doc" directory. */
3703 add_pathsep(NameBuff);
3704 STRCAT(NameBuff, "doc/*.\\(txt\\|??x\\)");
3705 if (gen_expand_wildcards(1, &NameBuff, &fcount,
3706 &fnames, EW_FILE|EW_SILENT) == OK
3707 && fcount > 0)
3708 {
3709 for (fi = 0; fi < fcount && !got_int; ++fi)
3710 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003711#ifdef FEAT_MULTI_LANG
3712 /* Skip files for a different language. */
3713 if (lang != NULL
3714 && STRNICMP(lang, fnames[fi]
3715 + STRLEN(fnames[fi]) - 3, 2) != 0
3716 && !(STRNICMP(lang, "en", 2) == 0
3717 && STRNICMP("txt", fnames[fi]
3718 + STRLEN(fnames[fi]) - 3, 3) == 0))
3719 continue;
3720#endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003721 fd = mch_fopen((char *)fnames[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 if (fd != NULL)
3723 {
3724 lnum = 1;
3725 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
3726 {
3727 if (vim_regexec(&regmatch, IObuff, (colnr_T)0))
3728 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003729 int l = (int)STRLEN(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730
3731 /* remove trailing CR, LF, spaces, etc. */
3732 while (l > 0 && IObuff[l - 1] <= ' ')
3733 IObuff[--l] = NUL;
3734
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003735 if (qf_add_entry(qi, &prevp,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736 NULL, /* dir */
3737 fnames[fi],
3738 IObuff,
3739 lnum,
Bram Moolenaar81695252004-12-29 20:58:21 +00003740 (int)(regmatch.startp[0] - IObuff)
3741 + 1, /* col */
Bram Moolenaar05159a02005-02-26 23:04:13 +00003742 FALSE, /* vis_col */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003743 NULL, /* search pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 0, /* nr */
3745 1, /* type */
3746 TRUE /* valid */
3747 ) == FAIL)
3748 {
3749 got_int = TRUE;
3750 break;
3751 }
3752 }
3753 ++lnum;
3754 line_breakcheck();
3755 }
3756 fclose(fd);
3757 }
3758 }
3759 FreeWild(fcount, fnames);
3760 }
3761 }
3762 vim_free(regmatch.regprog);
3763
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003764 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
3765 qi->qf_lists[qi->qf_curlist].qf_ptr =
3766 qi->qf_lists[qi->qf_curlist].qf_start;
3767 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 }
3769
3770 p_cpo = save_cpo;
3771
3772#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003773 qf_update_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774#endif
3775
3776 /* Jump to first match. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003777 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003778 qf_jump(qi, 0, 0, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003779 else
3780 EMSG2(_(e_nomatch2), eap->arg);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003781
3782 if (eap->cmdidx == CMD_lhelpgrep)
3783 {
3784 /* If the help window is not opened or if it already points to the
Bram Moolenaar754b5602006-02-09 23:53:20 +00003785 * correct location list, then free the new location list. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003786 if (!curwin->w_buffer->b_help || curwin->w_llist == qi)
3787 {
3788 if (new_qi)
3789 ll_free_all(&qi);
3790 }
3791 else if (curwin->w_llist == NULL)
3792 curwin->w_llist = qi;
3793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794}
3795
3796#endif /* FEAT_QUICKFIX */