Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* 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 | * misc2.c: Various functions. |
| 12 | */ |
| 13 | #include "vim.h" |
| 14 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 15 | static char_u *username = NULL; /* cached result of mch_get_user_name() */ |
| 16 | |
| 17 | static char_u *ff_expand_buffer = NULL; /* used for expanding filenames */ |
| 18 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 19 | #if defined(FEAT_VIRTUALEDIT) || defined(PROTO) |
| 20 | static int coladvance2 __ARGS((pos_T *pos, int addspaces, int finetune, colnr_T wcol)); |
| 21 | |
| 22 | /* |
| 23 | * Return TRUE if in the current mode we need to use virtual. |
| 24 | */ |
| 25 | int |
| 26 | virtual_active() |
| 27 | { |
| 28 | /* While an operator is being executed we return "virtual_op", because |
| 29 | * VIsual_active has already been reset, thus we can't check for "block" |
| 30 | * being used. */ |
| 31 | if (virtual_op != MAYBE) |
| 32 | return virtual_op; |
| 33 | return (ve_flags == VE_ALL |
| 34 | # ifdef FEAT_VISUAL |
| 35 | || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V) |
| 36 | # endif |
| 37 | || ((ve_flags & VE_INSERT) && (State & INSERT))); |
| 38 | } |
| 39 | |
| 40 | /* |
| 41 | * Get the screen position of the cursor. |
| 42 | */ |
| 43 | int |
| 44 | getviscol() |
| 45 | { |
| 46 | colnr_T x; |
| 47 | |
| 48 | getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL); |
| 49 | return (int)x; |
| 50 | } |
| 51 | |
| 52 | /* |
| 53 | * Get the screen position of character col with a coladd in the cursor line. |
| 54 | */ |
| 55 | int |
| 56 | getviscol2(col, coladd) |
| 57 | colnr_T col; |
| 58 | colnr_T coladd; |
| 59 | { |
| 60 | colnr_T x; |
| 61 | pos_T pos; |
| 62 | |
| 63 | pos.lnum = curwin->w_cursor.lnum; |
| 64 | pos.col = col; |
| 65 | pos.coladd = coladd; |
| 66 | getvvcol(curwin, &pos, &x, NULL, NULL); |
| 67 | return (int)x; |
| 68 | } |
| 69 | |
| 70 | /* |
Bram Moolenaar | 7aa9f6a | 2007-05-10 18:00:30 +0000 | [diff] [blame] | 71 | * Go to column "wcol", and add/insert white space as necessary to get the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 72 | * cursor in that column. |
| 73 | * The caller must have saved the cursor line for undo! |
| 74 | */ |
| 75 | int |
| 76 | coladvance_force(wcol) |
| 77 | colnr_T wcol; |
| 78 | { |
| 79 | int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol); |
| 80 | |
| 81 | if (wcol == MAXCOL) |
| 82 | curwin->w_valid &= ~VALID_VIRTCOL; |
| 83 | else |
| 84 | { |
| 85 | /* Virtcol is valid */ |
| 86 | curwin->w_valid |= VALID_VIRTCOL; |
| 87 | curwin->w_virtcol = wcol; |
| 88 | } |
| 89 | return rc; |
| 90 | } |
| 91 | #endif |
| 92 | |
| 93 | /* |
| 94 | * Try to advance the Cursor to the specified screen column. |
| 95 | * If virtual editing: fine tune the cursor position. |
| 96 | * Note that all virtual positions off the end of a line should share |
| 97 | * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)), |
| 98 | * beginning at coladd 0. |
| 99 | * |
| 100 | * return OK if desired column is reached, FAIL if not |
| 101 | */ |
| 102 | int |
| 103 | coladvance(wcol) |
| 104 | colnr_T wcol; |
| 105 | { |
| 106 | int rc = getvpos(&curwin->w_cursor, wcol); |
| 107 | |
| 108 | if (wcol == MAXCOL || rc == FAIL) |
| 109 | curwin->w_valid &= ~VALID_VIRTCOL; |
Bram Moolenaar | dfccaf0 | 2004-12-31 20:56:11 +0000 | [diff] [blame] | 110 | else if (*ml_get_cursor() != TAB) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 111 | { |
Bram Moolenaar | dfccaf0 | 2004-12-31 20:56:11 +0000 | [diff] [blame] | 112 | /* Virtcol is valid when not on a TAB */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 113 | curwin->w_valid |= VALID_VIRTCOL; |
| 114 | curwin->w_virtcol = wcol; |
| 115 | } |
| 116 | return rc; |
| 117 | } |
| 118 | |
| 119 | /* |
| 120 | * Return in "pos" the position of the cursor advanced to screen column "wcol". |
| 121 | * return OK if desired column is reached, FAIL if not |
| 122 | */ |
| 123 | int |
| 124 | getvpos(pos, wcol) |
| 125 | pos_T *pos; |
| 126 | colnr_T wcol; |
| 127 | { |
| 128 | #ifdef FEAT_VIRTUALEDIT |
| 129 | return coladvance2(pos, FALSE, virtual_active(), wcol); |
| 130 | } |
| 131 | |
| 132 | static int |
| 133 | coladvance2(pos, addspaces, finetune, wcol) |
| 134 | pos_T *pos; |
| 135 | int addspaces; /* change the text to achieve our goal? */ |
Bram Moolenaar | 7aa9f6a | 2007-05-10 18:00:30 +0000 | [diff] [blame] | 136 | int finetune; /* change char offset for the exact column */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 137 | colnr_T wcol; /* column to move to */ |
| 138 | { |
| 139 | #endif |
| 140 | int idx; |
| 141 | char_u *ptr; |
| 142 | char_u *line; |
| 143 | colnr_T col = 0; |
| 144 | int csize = 0; |
| 145 | int one_more; |
| 146 | #ifdef FEAT_LINEBREAK |
| 147 | int head = 0; |
| 148 | #endif |
| 149 | |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 150 | one_more = (State & INSERT) |
| 151 | || restart_edit != NUL |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 152 | #ifdef FEAT_VISUAL |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 153 | || (VIsual_active && *p_sel != 'o') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 154 | #endif |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 155 | #ifdef FEAT_VIRTUALEDIT |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 156 | || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL) |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 157 | #endif |
| 158 | ; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 159 | line = ml_get_curline(); |
| 160 | |
| 161 | if (wcol >= MAXCOL) |
| 162 | { |
| 163 | idx = (int)STRLEN(line) - 1 + one_more; |
| 164 | col = wcol; |
| 165 | |
| 166 | #ifdef FEAT_VIRTUALEDIT |
| 167 | if ((addspaces || finetune) && !VIsual_active) |
| 168 | { |
| 169 | curwin->w_curswant = linetabsize(line) + one_more; |
| 170 | if (curwin->w_curswant > 0) |
| 171 | --curwin->w_curswant; |
| 172 | } |
| 173 | #endif |
| 174 | } |
| 175 | else |
| 176 | { |
| 177 | #ifdef FEAT_VIRTUALEDIT |
| 178 | int width = W_WIDTH(curwin) - win_col_off(curwin); |
| 179 | |
Bram Moolenaar | ebefac6 | 2005-12-28 22:39:57 +0000 | [diff] [blame] | 180 | if (finetune |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 181 | && curwin->w_p_wrap |
| 182 | # ifdef FEAT_VERTSPLIT |
| 183 | && curwin->w_width != 0 |
| 184 | # endif |
| 185 | && wcol >= (colnr_T)width) |
| 186 | { |
| 187 | csize = linetabsize(line); |
| 188 | if (csize > 0) |
| 189 | csize--; |
| 190 | |
Bram Moolenaar | ebefac6 | 2005-12-28 22:39:57 +0000 | [diff] [blame] | 191 | if (wcol / width > (colnr_T)csize / width |
| 192 | && ((State & INSERT) == 0 || (int)wcol > csize + 1)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 193 | { |
| 194 | /* In case of line wrapping don't move the cursor beyond the |
Bram Moolenaar | ebefac6 | 2005-12-28 22:39:57 +0000 | [diff] [blame] | 195 | * right screen edge. In Insert mode allow going just beyond |
| 196 | * the last character (like what happens when typing and |
| 197 | * reaching the right window edge). */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 198 | wcol = (csize / width + 1) * width - 1; |
| 199 | } |
| 200 | } |
| 201 | #endif |
| 202 | |
| 203 | idx = -1; |
| 204 | ptr = line; |
| 205 | while (col <= wcol && *ptr != NUL) |
| 206 | { |
| 207 | /* Count a tab for what it's worth (if list mode not on) */ |
| 208 | #ifdef FEAT_LINEBREAK |
| 209 | csize = win_lbr_chartabsize(curwin, ptr, col, &head); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 210 | mb_ptr_adv(ptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 211 | #else |
| 212 | csize = lbr_chartabsize_adv(&ptr, col); |
| 213 | #endif |
| 214 | col += csize; |
| 215 | } |
| 216 | idx = (int)(ptr - line); |
| 217 | /* |
| 218 | * Handle all the special cases. The virtual_active() check |
| 219 | * is needed to ensure that a virtual position off the end of |
| 220 | * a line has the correct indexing. The one_more comparison |
| 221 | * replaces an explicit add of one_more later on. |
| 222 | */ |
| 223 | if (col > wcol || (!virtual_active() && one_more == 0)) |
| 224 | { |
| 225 | idx -= 1; |
| 226 | # ifdef FEAT_LINEBREAK |
| 227 | /* Don't count the chars from 'showbreak'. */ |
| 228 | csize -= head; |
| 229 | # endif |
| 230 | col -= csize; |
| 231 | } |
| 232 | |
| 233 | #ifdef FEAT_VIRTUALEDIT |
| 234 | if (virtual_active() |
| 235 | && addspaces |
| 236 | && ((col != wcol && col != wcol + 1) || csize > 1)) |
| 237 | { |
| 238 | /* 'virtualedit' is set: The difference between wcol and col is |
| 239 | * filled with spaces. */ |
| 240 | |
| 241 | if (line[idx] == NUL) |
| 242 | { |
| 243 | /* Append spaces */ |
| 244 | int correct = wcol - col; |
| 245 | char_u *newline = alloc(idx + correct + 1); |
| 246 | int t; |
| 247 | |
| 248 | if (newline == NULL) |
| 249 | return FAIL; |
| 250 | |
| 251 | for (t = 0; t < idx; ++t) |
| 252 | newline[t] = line[t]; |
| 253 | |
| 254 | for (t = 0; t < correct; ++t) |
| 255 | newline[t + idx] = ' '; |
| 256 | |
| 257 | newline[idx + correct] = NUL; |
| 258 | |
| 259 | ml_replace(pos->lnum, newline, FALSE); |
| 260 | changed_bytes(pos->lnum, (colnr_T)idx); |
| 261 | idx += correct; |
| 262 | col = wcol; |
| 263 | } |
| 264 | else |
| 265 | { |
| 266 | /* Break a tab */ |
| 267 | int linelen = (int)STRLEN(line); |
| 268 | int correct = wcol - col - csize + 1; /* negative!! */ |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 269 | char_u *newline; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 270 | int t, s = 0; |
| 271 | int v; |
| 272 | |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 273 | if (-correct > csize) |
| 274 | return FAIL; |
| 275 | |
| 276 | newline = alloc(linelen + csize); |
| 277 | if (newline == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 278 | return FAIL; |
| 279 | |
| 280 | for (t = 0; t < linelen; t++) |
| 281 | { |
| 282 | if (t != idx) |
| 283 | newline[s++] = line[t]; |
| 284 | else |
| 285 | for (v = 0; v < csize; v++) |
| 286 | newline[s++] = ' '; |
| 287 | } |
| 288 | |
| 289 | newline[linelen + csize - 1] = NUL; |
| 290 | |
| 291 | ml_replace(pos->lnum, newline, FALSE); |
| 292 | changed_bytes(pos->lnum, idx); |
| 293 | idx += (csize - 1 + correct); |
| 294 | col += correct; |
| 295 | } |
| 296 | } |
| 297 | #endif |
| 298 | } |
| 299 | |
| 300 | if (idx < 0) |
| 301 | pos->col = 0; |
| 302 | else |
| 303 | pos->col = idx; |
| 304 | |
| 305 | #ifdef FEAT_VIRTUALEDIT |
| 306 | pos->coladd = 0; |
| 307 | |
| 308 | if (finetune) |
| 309 | { |
| 310 | if (wcol == MAXCOL) |
| 311 | { |
| 312 | /* The width of the last character is used to set coladd. */ |
| 313 | if (!one_more) |
| 314 | { |
| 315 | colnr_T scol, ecol; |
| 316 | |
| 317 | getvcol(curwin, pos, &scol, NULL, &ecol); |
| 318 | pos->coladd = ecol - scol; |
| 319 | } |
| 320 | } |
| 321 | else |
| 322 | { |
| 323 | int b = (int)wcol - (int)col; |
| 324 | |
| 325 | /* The difference between wcol and col is used to set coladd. */ |
| 326 | if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin))) |
| 327 | pos->coladd = b; |
| 328 | |
| 329 | col += b; |
| 330 | } |
| 331 | } |
| 332 | #endif |
| 333 | |
| 334 | #ifdef FEAT_MBYTE |
| 335 | /* prevent cursor from moving on the trail byte */ |
| 336 | if (has_mbyte) |
| 337 | mb_adjust_cursor(); |
| 338 | #endif |
| 339 | |
| 340 | if (col < wcol) |
| 341 | return FAIL; |
| 342 | return OK; |
| 343 | } |
| 344 | |
| 345 | /* |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 346 | * Increment the cursor position. See inc() for return values. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 347 | */ |
| 348 | int |
| 349 | inc_cursor() |
| 350 | { |
| 351 | return inc(&curwin->w_cursor); |
| 352 | } |
| 353 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 354 | /* |
| 355 | * Increment the line pointer "lp" crossing line boundaries as necessary. |
| 356 | * Return 1 when going to the next line. |
| 357 | * Return 2 when moving forward onto a NUL at the end of the line). |
| 358 | * Return -1 when at the end of file. |
| 359 | * Return 0 otherwise. |
| 360 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 361 | int |
| 362 | inc(lp) |
| 363 | pos_T *lp; |
| 364 | { |
| 365 | char_u *p = ml_get_pos(lp); |
| 366 | |
| 367 | if (*p != NUL) /* still within line, move to next char (may be NUL) */ |
| 368 | { |
| 369 | #ifdef FEAT_MBYTE |
| 370 | if (has_mbyte) |
| 371 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 372 | int l = (*mb_ptr2len)(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 373 | |
| 374 | lp->col += l; |
| 375 | return ((p[l] != NUL) ? 0 : 2); |
| 376 | } |
| 377 | #endif |
| 378 | lp->col++; |
| 379 | #ifdef FEAT_VIRTUALEDIT |
| 380 | lp->coladd = 0; |
| 381 | #endif |
| 382 | return ((p[1] != NUL) ? 0 : 2); |
| 383 | } |
| 384 | if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */ |
| 385 | { |
| 386 | lp->col = 0; |
| 387 | lp->lnum++; |
| 388 | #ifdef FEAT_VIRTUALEDIT |
| 389 | lp->coladd = 0; |
| 390 | #endif |
| 391 | return 1; |
| 392 | } |
| 393 | return -1; |
| 394 | } |
| 395 | |
| 396 | /* |
| 397 | * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines |
| 398 | */ |
| 399 | int |
| 400 | incl(lp) |
| 401 | pos_T *lp; |
| 402 | { |
| 403 | int r; |
| 404 | |
| 405 | if ((r = inc(lp)) >= 1 && lp->col) |
| 406 | r = inc(lp); |
| 407 | return r; |
| 408 | } |
| 409 | |
| 410 | /* |
| 411 | * dec(p) |
| 412 | * |
| 413 | * Decrement the line pointer 'p' crossing line boundaries as necessary. |
| 414 | * Return 1 when crossing a line, -1 when at start of file, 0 otherwise. |
| 415 | */ |
| 416 | int |
| 417 | dec_cursor() |
| 418 | { |
| 419 | return dec(&curwin->w_cursor); |
| 420 | } |
| 421 | |
| 422 | int |
| 423 | dec(lp) |
| 424 | pos_T *lp; |
| 425 | { |
| 426 | char_u *p; |
| 427 | |
| 428 | #ifdef FEAT_VIRTUALEDIT |
| 429 | lp->coladd = 0; |
| 430 | #endif |
| 431 | if (lp->col > 0) /* still within line */ |
| 432 | { |
| 433 | lp->col--; |
| 434 | #ifdef FEAT_MBYTE |
| 435 | if (has_mbyte) |
| 436 | { |
| 437 | p = ml_get(lp->lnum); |
| 438 | lp->col -= (*mb_head_off)(p, p + lp->col); |
| 439 | } |
| 440 | #endif |
| 441 | return 0; |
| 442 | } |
| 443 | if (lp->lnum > 1) /* there is a prior line */ |
| 444 | { |
| 445 | lp->lnum--; |
| 446 | p = ml_get(lp->lnum); |
| 447 | lp->col = (colnr_T)STRLEN(p); |
| 448 | #ifdef FEAT_MBYTE |
| 449 | if (has_mbyte) |
| 450 | lp->col -= (*mb_head_off)(p, p + lp->col); |
| 451 | #endif |
| 452 | return 1; |
| 453 | } |
| 454 | return -1; /* at start of file */ |
| 455 | } |
| 456 | |
| 457 | /* |
| 458 | * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines |
| 459 | */ |
| 460 | int |
| 461 | decl(lp) |
| 462 | pos_T *lp; |
| 463 | { |
| 464 | int r; |
| 465 | |
| 466 | if ((r = dec(lp)) == 1 && lp->col) |
| 467 | r = dec(lp); |
| 468 | return r; |
| 469 | } |
| 470 | |
| 471 | /* |
| 472 | * Make sure curwin->w_cursor.lnum is valid. |
| 473 | */ |
| 474 | void |
| 475 | check_cursor_lnum() |
| 476 | { |
| 477 | if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
| 478 | { |
| 479 | #ifdef FEAT_FOLDING |
| 480 | /* If there is a closed fold at the end of the file, put the cursor in |
| 481 | * its first line. Otherwise in the last line. */ |
| 482 | if (!hasFolding(curbuf->b_ml.ml_line_count, |
| 483 | &curwin->w_cursor.lnum, NULL)) |
| 484 | #endif |
| 485 | curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
| 486 | } |
| 487 | if (curwin->w_cursor.lnum <= 0) |
| 488 | curwin->w_cursor.lnum = 1; |
| 489 | } |
| 490 | |
| 491 | /* |
| 492 | * Make sure curwin->w_cursor.col is valid. |
| 493 | */ |
| 494 | void |
| 495 | check_cursor_col() |
| 496 | { |
| 497 | colnr_T len; |
| 498 | #ifdef FEAT_VIRTUALEDIT |
| 499 | colnr_T oldcol = curwin->w_cursor.col + curwin->w_cursor.coladd; |
| 500 | #endif |
| 501 | |
| 502 | len = (colnr_T)STRLEN(ml_get_curline()); |
| 503 | if (len == 0) |
| 504 | curwin->w_cursor.col = 0; |
| 505 | else if (curwin->w_cursor.col >= len) |
| 506 | { |
Bram Moolenaar | 33f5443 | 2008-01-04 20:25:44 +0000 | [diff] [blame] | 507 | /* Allow cursor past end-of-line when: |
| 508 | * - in Insert mode or restarting Insert mode |
| 509 | * - in Visual mode and 'selection' isn't "old" |
| 510 | * - 'virtualedit' is set */ |
Bram Moolenaar | ebefac6 | 2005-12-28 22:39:57 +0000 | [diff] [blame] | 511 | if ((State & INSERT) || restart_edit |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 512 | #ifdef FEAT_VISUAL |
| 513 | || (VIsual_active && *p_sel != 'o') |
| 514 | #endif |
Bram Moolenaar | 33f5443 | 2008-01-04 20:25:44 +0000 | [diff] [blame] | 515 | #ifdef FEAT_VIRTUALEDIT |
| 516 | || (ve_flags & VE_ONEMORE) |
| 517 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 518 | || virtual_active()) |
| 519 | curwin->w_cursor.col = len; |
| 520 | else |
Bram Moolenaar | 87c1996 | 2007-04-26 08:54:21 +0000 | [diff] [blame] | 521 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 522 | curwin->w_cursor.col = len - 1; |
Bram Moolenaar | 87c1996 | 2007-04-26 08:54:21 +0000 | [diff] [blame] | 523 | #ifdef FEAT_MBYTE |
| 524 | /* prevent cursor from moving on the trail byte */ |
| 525 | if (has_mbyte) |
| 526 | mb_adjust_cursor(); |
| 527 | #endif |
| 528 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | #ifdef FEAT_VIRTUALEDIT |
| 532 | /* If virtual editing is on, we can leave the cursor on the old position, |
| 533 | * only we must set it to virtual. But don't do it when at the end of the |
| 534 | * line. */ |
| 535 | if (oldcol == MAXCOL) |
| 536 | curwin->w_cursor.coladd = 0; |
| 537 | else if (ve_flags == VE_ALL) |
| 538 | curwin->w_cursor.coladd = oldcol - curwin->w_cursor.col; |
| 539 | #endif |
| 540 | } |
| 541 | |
| 542 | /* |
| 543 | * make sure curwin->w_cursor in on a valid character |
| 544 | */ |
| 545 | void |
| 546 | check_cursor() |
| 547 | { |
| 548 | check_cursor_lnum(); |
| 549 | check_cursor_col(); |
| 550 | } |
| 551 | |
| 552 | #if defined(FEAT_TEXTOBJ) || defined(PROTO) |
| 553 | /* |
| 554 | * Make sure curwin->w_cursor is not on the NUL at the end of the line. |
| 555 | * Allow it when in Visual mode and 'selection' is not "old". |
| 556 | */ |
| 557 | void |
| 558 | adjust_cursor_col() |
| 559 | { |
| 560 | if (curwin->w_cursor.col > 0 |
| 561 | # ifdef FEAT_VISUAL |
| 562 | && (!VIsual_active || *p_sel == 'o') |
| 563 | # endif |
| 564 | && gchar_cursor() == NUL) |
| 565 | --curwin->w_cursor.col; |
| 566 | } |
| 567 | #endif |
| 568 | |
| 569 | /* |
| 570 | * When curwin->w_leftcol has changed, adjust the cursor position. |
| 571 | * Return TRUE if the cursor was moved. |
| 572 | */ |
| 573 | int |
| 574 | leftcol_changed() |
| 575 | { |
| 576 | long lastcol; |
| 577 | colnr_T s, e; |
| 578 | int retval = FALSE; |
| 579 | |
| 580 | changed_cline_bef_curs(); |
| 581 | lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1; |
| 582 | validate_virtcol(); |
| 583 | |
| 584 | /* |
| 585 | * If the cursor is right or left of the screen, move it to last or first |
| 586 | * character. |
| 587 | */ |
| 588 | if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso)) |
| 589 | { |
| 590 | retval = TRUE; |
| 591 | coladvance((colnr_T)(lastcol - p_siso)); |
| 592 | } |
| 593 | else if (curwin->w_virtcol < curwin->w_leftcol + p_siso) |
| 594 | { |
| 595 | retval = TRUE; |
| 596 | (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso)); |
| 597 | } |
| 598 | |
| 599 | /* |
| 600 | * If the start of the character under the cursor is not on the screen, |
| 601 | * advance the cursor one more char. If this fails (last char of the |
| 602 | * line) adjust the scrolling. |
| 603 | */ |
| 604 | getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e); |
| 605 | if (e > (colnr_T)lastcol) |
| 606 | { |
| 607 | retval = TRUE; |
| 608 | coladvance(s - 1); |
| 609 | } |
| 610 | else if (s < curwin->w_leftcol) |
| 611 | { |
| 612 | retval = TRUE; |
| 613 | if (coladvance(e + 1) == FAIL) /* there isn't another character */ |
| 614 | { |
| 615 | curwin->w_leftcol = s; /* adjust w_leftcol instead */ |
| 616 | changed_cline_bef_curs(); |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | if (retval) |
| 621 | curwin->w_set_curswant = TRUE; |
| 622 | redraw_later(NOT_VALID); |
| 623 | return retval; |
| 624 | } |
| 625 | |
| 626 | /********************************************************************** |
| 627 | * Various routines dealing with allocation and deallocation of memory. |
| 628 | */ |
| 629 | |
| 630 | #if defined(MEM_PROFILE) || defined(PROTO) |
| 631 | |
| 632 | # define MEM_SIZES 8200 |
| 633 | static long_u mem_allocs[MEM_SIZES]; |
| 634 | static long_u mem_frees[MEM_SIZES]; |
| 635 | static long_u mem_allocated; |
| 636 | static long_u mem_freed; |
| 637 | static long_u mem_peak; |
| 638 | static long_u num_alloc; |
| 639 | static long_u num_freed; |
| 640 | |
| 641 | static void mem_pre_alloc_s __ARGS((size_t *sizep)); |
| 642 | static void mem_pre_alloc_l __ARGS((long_u *sizep)); |
| 643 | static void mem_post_alloc __ARGS((void **pp, size_t size)); |
| 644 | static void mem_pre_free __ARGS((void **pp)); |
| 645 | |
| 646 | static void |
| 647 | mem_pre_alloc_s(sizep) |
| 648 | size_t *sizep; |
| 649 | { |
| 650 | *sizep += sizeof(size_t); |
| 651 | } |
| 652 | |
| 653 | static void |
| 654 | mem_pre_alloc_l(sizep) |
| 655 | long_u *sizep; |
| 656 | { |
| 657 | *sizep += sizeof(size_t); |
| 658 | } |
| 659 | |
| 660 | static void |
| 661 | mem_post_alloc(pp, size) |
| 662 | void **pp; |
| 663 | size_t size; |
| 664 | { |
| 665 | if (*pp == NULL) |
| 666 | return; |
| 667 | size -= sizeof(size_t); |
| 668 | *(long_u *)*pp = size; |
| 669 | if (size <= MEM_SIZES-1) |
| 670 | mem_allocs[size-1]++; |
| 671 | else |
| 672 | mem_allocs[MEM_SIZES-1]++; |
| 673 | mem_allocated += size; |
| 674 | if (mem_allocated - mem_freed > mem_peak) |
| 675 | mem_peak = mem_allocated - mem_freed; |
| 676 | num_alloc++; |
| 677 | *pp = (void *)((char *)*pp + sizeof(size_t)); |
| 678 | } |
| 679 | |
| 680 | static void |
| 681 | mem_pre_free(pp) |
| 682 | void **pp; |
| 683 | { |
| 684 | long_u size; |
| 685 | |
| 686 | *pp = (void *)((char *)*pp - sizeof(size_t)); |
| 687 | size = *(size_t *)*pp; |
| 688 | if (size <= MEM_SIZES-1) |
| 689 | mem_frees[size-1]++; |
| 690 | else |
| 691 | mem_frees[MEM_SIZES-1]++; |
| 692 | mem_freed += size; |
| 693 | num_freed++; |
| 694 | } |
| 695 | |
| 696 | /* |
| 697 | * called on exit via atexit() |
| 698 | */ |
| 699 | void |
| 700 | vim_mem_profile_dump() |
| 701 | { |
| 702 | int i, j; |
| 703 | |
| 704 | printf("\r\n"); |
| 705 | j = 0; |
| 706 | for (i = 0; i < MEM_SIZES - 1; i++) |
| 707 | { |
| 708 | if (mem_allocs[i] || mem_frees[i]) |
| 709 | { |
| 710 | if (mem_frees[i] > mem_allocs[i]) |
| 711 | printf("\r\n%s", _("ERROR: ")); |
| 712 | printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]); |
| 713 | j++; |
| 714 | if (j > 3) |
| 715 | { |
| 716 | j = 0; |
| 717 | printf("\r\n"); |
| 718 | } |
| 719 | } |
| 720 | } |
| 721 | |
| 722 | i = MEM_SIZES - 1; |
| 723 | if (mem_allocs[i]) |
| 724 | { |
| 725 | printf("\r\n"); |
| 726 | if (mem_frees[i] > mem_allocs[i]) |
| 727 | printf(_("ERROR: ")); |
| 728 | printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]); |
| 729 | } |
| 730 | |
| 731 | printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"), |
| 732 | mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak); |
| 733 | printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"), |
| 734 | num_alloc, num_freed); |
| 735 | } |
| 736 | |
| 737 | #endif /* MEM_PROFILE */ |
| 738 | |
| 739 | /* |
| 740 | * Some memory is reserved for error messages and for being able to |
| 741 | * call mf_release_all(), which needs some memory for mf_trans_add(). |
| 742 | */ |
| 743 | #if defined(MSDOS) && !defined(DJGPP) |
| 744 | # define SMALL_MEM |
| 745 | # define KEEP_ROOM 8192L |
| 746 | #else |
| 747 | # define KEEP_ROOM (2 * 8192L) |
| 748 | #endif |
| 749 | |
| 750 | /* |
Bram Moolenaar | 2a32974 | 2008-04-01 12:53:43 +0000 | [diff] [blame] | 751 | * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 752 | * Use lalloc for larger blocks. |
| 753 | */ |
| 754 | char_u * |
| 755 | alloc(size) |
| 756 | unsigned size; |
| 757 | { |
| 758 | return (lalloc((long_u)size, TRUE)); |
| 759 | } |
| 760 | |
| 761 | /* |
| 762 | * Allocate memory and set all bytes to zero. |
| 763 | */ |
| 764 | char_u * |
| 765 | alloc_clear(size) |
| 766 | unsigned size; |
| 767 | { |
| 768 | char_u *p; |
| 769 | |
| 770 | p = (lalloc((long_u)size, TRUE)); |
| 771 | if (p != NULL) |
| 772 | (void)vim_memset(p, 0, (size_t)size); |
| 773 | return p; |
| 774 | } |
| 775 | |
| 776 | /* |
| 777 | * alloc() with check for maximum line length |
| 778 | */ |
| 779 | char_u * |
| 780 | alloc_check(size) |
| 781 | unsigned size; |
| 782 | { |
| 783 | #if !defined(UNIX) && !defined(__EMX__) |
| 784 | if (sizeof(int) == 2 && size > 0x7fff) |
| 785 | { |
| 786 | /* Don't hide this message */ |
| 787 | emsg_silent = 0; |
| 788 | EMSG(_("E340: Line is becoming too long")); |
| 789 | return NULL; |
| 790 | } |
| 791 | #endif |
| 792 | return (lalloc((long_u)size, TRUE)); |
| 793 | } |
| 794 | |
| 795 | /* |
| 796 | * Allocate memory like lalloc() and set all bytes to zero. |
| 797 | */ |
| 798 | char_u * |
| 799 | lalloc_clear(size, message) |
| 800 | long_u size; |
| 801 | int message; |
| 802 | { |
| 803 | char_u *p; |
| 804 | |
| 805 | p = (lalloc(size, message)); |
| 806 | if (p != NULL) |
| 807 | (void)vim_memset(p, 0, (size_t)size); |
| 808 | return p; |
| 809 | } |
| 810 | |
| 811 | /* |
| 812 | * Low level memory allocation function. |
| 813 | * This is used often, KEEP IT FAST! |
| 814 | */ |
| 815 | char_u * |
| 816 | lalloc(size, message) |
| 817 | long_u size; |
| 818 | int message; |
| 819 | { |
| 820 | char_u *p; /* pointer to new storage space */ |
| 821 | static int releasing = FALSE; /* don't do mf_release_all() recursive */ |
| 822 | int try_again; |
| 823 | #if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM) |
| 824 | static long_u allocated = 0; /* allocated since last avail check */ |
| 825 | #endif |
| 826 | |
| 827 | /* Safety check for allocating zero bytes */ |
| 828 | if (size == 0) |
| 829 | { |
| 830 | /* Don't hide this message */ |
| 831 | emsg_silent = 0; |
| 832 | EMSGN(_("E341: Internal error: lalloc(%ld, )"), size); |
| 833 | return NULL; |
| 834 | } |
| 835 | |
| 836 | #ifdef MEM_PROFILE |
| 837 | mem_pre_alloc_l(&size); |
| 838 | #endif |
| 839 | |
| 840 | #if defined(MSDOS) && !defined(DJGPP) |
| 841 | if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */ |
| 842 | p = NULL; |
| 843 | else |
| 844 | #endif |
| 845 | |
| 846 | /* |
| 847 | * Loop when out of memory: Try to release some memfile blocks and |
| 848 | * if some blocks are released call malloc again. |
| 849 | */ |
| 850 | for (;;) |
| 851 | { |
| 852 | /* |
| 853 | * Handle three kind of systems: |
| 854 | * 1. No check for available memory: Just return. |
| 855 | * 2. Slow check for available memory: call mch_avail_mem() after |
| 856 | * allocating KEEP_ROOM amount of memory. |
| 857 | * 3. Strict check for available memory: call mch_avail_mem() |
| 858 | */ |
| 859 | if ((p = (char_u *)malloc((size_t)size)) != NULL) |
| 860 | { |
| 861 | #ifndef HAVE_AVAIL_MEM |
| 862 | /* 1. No check for available memory: Just return. */ |
| 863 | goto theend; |
| 864 | #else |
| 865 | # ifndef SMALL_MEM |
| 866 | /* 2. Slow check for available memory: call mch_avail_mem() after |
| 867 | * allocating (KEEP_ROOM / 2) amount of memory. */ |
| 868 | allocated += size; |
| 869 | if (allocated < KEEP_ROOM / 2) |
| 870 | goto theend; |
| 871 | allocated = 0; |
| 872 | # endif |
| 873 | /* 3. check for available memory: call mch_avail_mem() */ |
| 874 | if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing) |
| 875 | { |
Bram Moolenaar | 5a22181 | 2008-11-12 12:08:45 +0000 | [diff] [blame] | 876 | free((char *)p); /* System is low... no go! */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 877 | p = NULL; |
| 878 | } |
| 879 | else |
| 880 | goto theend; |
| 881 | #endif |
| 882 | } |
| 883 | /* |
| 884 | * Remember that mf_release_all() is being called to avoid an endless |
| 885 | * loop, because mf_release_all() may call alloc() recursively. |
| 886 | */ |
| 887 | if (releasing) |
| 888 | break; |
| 889 | releasing = TRUE; |
Bram Moolenaar | 661b182 | 2005-07-28 22:36:45 +0000 | [diff] [blame] | 890 | |
| 891 | clear_sb_text(); /* free any scrollback text */ |
| 892 | try_again = mf_release_all(); /* release as many blocks as possible */ |
Bram Moolenaar | 39a58ca | 2005-06-27 22:42:44 +0000 | [diff] [blame] | 893 | #ifdef FEAT_EVAL |
Bram Moolenaar | 661b182 | 2005-07-28 22:36:45 +0000 | [diff] [blame] | 894 | try_again |= garbage_collect(); /* cleanup recursive lists/dicts */ |
Bram Moolenaar | 39a58ca | 2005-06-27 22:42:44 +0000 | [diff] [blame] | 895 | #endif |
Bram Moolenaar | 661b182 | 2005-07-28 22:36:45 +0000 | [diff] [blame] | 896 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 897 | releasing = FALSE; |
| 898 | if (!try_again) |
| 899 | break; |
| 900 | } |
| 901 | |
| 902 | if (message && p == NULL) |
| 903 | do_outofmem_msg(size); |
| 904 | |
| 905 | theend: |
| 906 | #ifdef MEM_PROFILE |
| 907 | mem_post_alloc((void **)&p, (size_t)size); |
| 908 | #endif |
| 909 | return p; |
| 910 | } |
| 911 | |
| 912 | #if defined(MEM_PROFILE) || defined(PROTO) |
| 913 | /* |
| 914 | * realloc() with memory profiling. |
| 915 | */ |
| 916 | void * |
| 917 | mem_realloc(ptr, size) |
| 918 | void *ptr; |
| 919 | size_t size; |
| 920 | { |
| 921 | void *p; |
| 922 | |
| 923 | mem_pre_free(&ptr); |
| 924 | mem_pre_alloc_s(&size); |
| 925 | |
| 926 | p = realloc(ptr, size); |
| 927 | |
| 928 | mem_post_alloc(&p, size); |
| 929 | |
| 930 | return p; |
| 931 | } |
| 932 | #endif |
| 933 | |
| 934 | /* |
| 935 | * Avoid repeating the error message many times (they take 1 second each). |
| 936 | * Did_outofmem_msg is reset when a character is read. |
| 937 | */ |
| 938 | void |
| 939 | do_outofmem_msg(size) |
| 940 | long_u size; |
| 941 | { |
| 942 | if (!did_outofmem_msg) |
| 943 | { |
| 944 | /* Don't hide this message */ |
| 945 | emsg_silent = 0; |
| 946 | EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size); |
| 947 | did_outofmem_msg = TRUE; |
| 948 | } |
| 949 | } |
| 950 | |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 951 | #if defined(EXITFREE) || defined(PROTO) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 952 | |
| 953 | # if defined(FEAT_SEARCHPATH) |
| 954 | static void free_findfile __ARGS((void)); |
| 955 | # endif |
| 956 | |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 957 | /* |
| 958 | * Free everything that we allocated. |
| 959 | * Can be used to detect memory leaks, e.g., with ccmalloc. |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 960 | * NOTE: This is tricky! Things are freed that functions depend on. Don't be |
| 961 | * surprised if Vim crashes... |
| 962 | * Some things can't be freed, esp. things local to a library function. |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 963 | */ |
| 964 | void |
| 965 | free_all_mem() |
| 966 | { |
| 967 | buf_T *buf, *nextbuf; |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 968 | static int entered = FALSE; |
| 969 | |
| 970 | /* When we cause a crash here it is caught and Vim tries to exit cleanly. |
| 971 | * Don't try freeing everything again. */ |
| 972 | if (entered) |
| 973 | return; |
| 974 | entered = TRUE; |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 975 | |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 976 | # ifdef FEAT_AUTOCMD |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 977 | block_autocmds(); /* don't want to trigger autocommands here */ |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 978 | # endif |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 979 | |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 980 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 981 | /* close all tabs and windows */ |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 982 | if (first_tabpage->tp_next != NULL) |
| 983 | do_cmdline_cmd((char_u *)"tabonly!"); |
| 984 | if (firstwin != lastwin) |
| 985 | do_cmdline_cmd((char_u *)"only!"); |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 986 | # endif |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 987 | |
Bram Moolenaar | c4956c8 | 2006-03-12 21:58:43 +0000 | [diff] [blame] | 988 | # if defined(FEAT_SPELL) |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 989 | /* Free all spell info. */ |
| 990 | spell_free_all(); |
| 991 | # endif |
| 992 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 993 | # if defined(FEAT_USR_CMDS) |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 994 | /* Clear user commands (before deleting buffers). */ |
| 995 | ex_comclear(NULL); |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 996 | # endif |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 997 | |
| 998 | # ifdef FEAT_MENU |
| 999 | /* Clear menus. */ |
| 1000 | do_cmdline_cmd((char_u *)"aunmenu *"); |
| 1001 | # endif |
| 1002 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1003 | /* Clear mappings, abbreviations, breakpoints. */ |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1004 | do_cmdline_cmd((char_u *)"mapclear"); |
| 1005 | do_cmdline_cmd((char_u *)"mapclear!"); |
| 1006 | do_cmdline_cmd((char_u *)"abclear"); |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1007 | # if defined(FEAT_EVAL) |
| 1008 | do_cmdline_cmd((char_u *)"breakdel *"); |
| 1009 | # endif |
Bram Moolenaar | 1e498f5 | 2005-06-26 22:29:44 +0000 | [diff] [blame] | 1010 | # if defined(FEAT_PROFILE) |
| 1011 | do_cmdline_cmd((char_u *)"profdel *"); |
| 1012 | # endif |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1013 | |
| 1014 | # ifdef FEAT_TITLE |
| 1015 | free_titles(); |
| 1016 | # endif |
| 1017 | # if defined(FEAT_SEARCHPATH) |
| 1018 | free_findfile(); |
| 1019 | # endif |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1020 | |
| 1021 | /* Obviously named calls. */ |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1022 | # if defined(FEAT_AUTOCMD) |
| 1023 | free_all_autocmds(); |
| 1024 | # endif |
| 1025 | clear_termcodes(); |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1026 | free_all_options(); |
| 1027 | free_all_marks(); |
| 1028 | alist_clear(&global_alist); |
| 1029 | free_homedir(); |
| 1030 | free_search_patterns(); |
| 1031 | free_old_sub(); |
| 1032 | free_last_insert(); |
| 1033 | free_prev_shellcmd(); |
| 1034 | free_regexp_stuff(); |
| 1035 | free_tag_stuff(); |
| 1036 | free_cd_dir(); |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 1037 | # ifdef FEAT_EVAL |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1038 | set_expr_line(NULL); |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 1039 | # endif |
| 1040 | # ifdef FEAT_DIFF |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1041 | diff_clear(curtab); |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 1042 | # endif |
Bram Moolenaar | a40ceaf | 2006-01-13 22:35:40 +0000 | [diff] [blame] | 1043 | clear_sb_text(); /* free any scrollback text */ |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1044 | |
| 1045 | /* Free some global vars. */ |
| 1046 | vim_free(username); |
Bram Moolenaar | af92ee8 | 2007-10-07 13:45:08 +0000 | [diff] [blame] | 1047 | # ifdef FEAT_CLIPBOARD |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1048 | vim_free(clip_exclude_prog); |
Bram Moolenaar | af92ee8 | 2007-10-07 13:45:08 +0000 | [diff] [blame] | 1049 | # endif |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1050 | vim_free(last_cmdline); |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 1051 | # ifdef FEAT_CMDHIST |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1052 | vim_free(new_last_cmdline); |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 1053 | # endif |
Bram Moolenaar | 238a564 | 2006-02-21 22:12:05 +0000 | [diff] [blame] | 1054 | set_keep_msg(NULL, 0); |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1055 | vim_free(ff_expand_buffer); |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1056 | |
| 1057 | /* Clear cmdline history. */ |
| 1058 | p_hi = 0; |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 1059 | # ifdef FEAT_CMDHIST |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1060 | init_history(); |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 1061 | # endif |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1062 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1063 | #ifdef FEAT_QUICKFIX |
Bram Moolenaar | e0ca7b2 | 2007-11-24 20:28:24 +0000 | [diff] [blame] | 1064 | { |
| 1065 | win_T *win; |
| 1066 | |
| 1067 | qf_free_all(NULL); |
| 1068 | /* Free all location lists */ |
| 1069 | FOR_ALL_WINDOWS(win) |
| 1070 | qf_free_all(win); |
| 1071 | } |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1072 | #endif |
| 1073 | |
| 1074 | /* Close all script inputs. */ |
| 1075 | close_all_scripts(); |
| 1076 | |
| 1077 | #if defined(FEAT_WINDOWS) |
| 1078 | /* Destroy all windows. Must come before freeing buffers. */ |
| 1079 | win_free_all(); |
| 1080 | #endif |
| 1081 | |
Bram Moolenaar | 2a32974 | 2008-04-01 12:53:43 +0000 | [diff] [blame] | 1082 | /* Free all buffers. Reset 'autochdir' to avoid accessing things that |
| 1083 | * were freed already. */ |
| 1084 | #ifdef FEAT_AUTOCHDIR |
| 1085 | p_acd = FALSE; |
| 1086 | #endif |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1087 | for (buf = firstbuf; buf != NULL; ) |
| 1088 | { |
| 1089 | nextbuf = buf->b_next; |
| 1090 | close_buffer(NULL, buf, DOBUF_WIPE); |
| 1091 | if (buf_valid(buf)) |
| 1092 | buf = nextbuf; /* didn't work, try next one */ |
| 1093 | else |
| 1094 | buf = firstbuf; |
| 1095 | } |
| 1096 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1097 | #ifdef FEAT_ARABIC |
| 1098 | free_cmdline_buf(); |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1099 | #endif |
| 1100 | |
| 1101 | /* Clear registers. */ |
| 1102 | clear_registers(); |
| 1103 | ResetRedobuff(); |
| 1104 | ResetRedobuff(); |
| 1105 | |
Bram Moolenaar | 85c79d3 | 2007-02-20 01:59:20 +0000 | [diff] [blame] | 1106 | #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1107 | vim_free(serverDelayedStartName); |
| 1108 | #endif |
| 1109 | |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1110 | /* highlight info */ |
| 1111 | free_highlight(); |
| 1112 | |
Bram Moolenaar | 1e498f5 | 2005-06-26 22:29:44 +0000 | [diff] [blame] | 1113 | reset_last_sourcing(); |
| 1114 | |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 1115 | #ifdef FEAT_WINDOWS |
Bram Moolenaar | 06a89a5 | 2006-04-29 22:01:03 +0000 | [diff] [blame] | 1116 | free_tabpage(first_tabpage); |
| 1117 | first_tabpage = NULL; |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 1118 | #endif |
| 1119 | |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1120 | # ifdef UNIX |
| 1121 | /* Machine-specific free. */ |
| 1122 | mch_free_mem(); |
| 1123 | # endif |
| 1124 | |
| 1125 | /* message history */ |
| 1126 | for (;;) |
| 1127 | if (delete_first_msg() == FAIL) |
| 1128 | break; |
| 1129 | |
| 1130 | # ifdef FEAT_EVAL |
| 1131 | eval_clear(); |
| 1132 | # endif |
| 1133 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1134 | free_termoptions(); |
| 1135 | |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1136 | /* screenlines (can't display anything now!) */ |
| 1137 | free_screenlines(); |
| 1138 | |
| 1139 | #if defined(USE_XSMP) |
| 1140 | xsmp_close(); |
| 1141 | #endif |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1142 | #ifdef FEAT_GUI_GTK |
| 1143 | gui_mch_free_all(); |
| 1144 | #endif |
| 1145 | clear_hl_tables(); |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 1146 | |
| 1147 | vim_free(IObuff); |
| 1148 | vim_free(NameBuff); |
| 1149 | } |
| 1150 | #endif |
| 1151 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1152 | /* |
| 1153 | * copy a string into newly allocated memory |
| 1154 | */ |
| 1155 | char_u * |
| 1156 | vim_strsave(string) |
| 1157 | char_u *string; |
| 1158 | { |
| 1159 | char_u *p; |
| 1160 | unsigned len; |
| 1161 | |
| 1162 | len = (unsigned)STRLEN(string) + 1; |
| 1163 | p = alloc(len); |
| 1164 | if (p != NULL) |
| 1165 | mch_memmove(p, string, (size_t)len); |
| 1166 | return p; |
| 1167 | } |
| 1168 | |
| 1169 | char_u * |
| 1170 | vim_strnsave(string, len) |
| 1171 | char_u *string; |
| 1172 | int len; |
| 1173 | { |
| 1174 | char_u *p; |
| 1175 | |
| 1176 | p = alloc((unsigned)(len + 1)); |
| 1177 | if (p != NULL) |
| 1178 | { |
| 1179 | STRNCPY(p, string, len); |
| 1180 | p[len] = NUL; |
| 1181 | } |
| 1182 | return p; |
| 1183 | } |
| 1184 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1185 | /* |
| 1186 | * Same as vim_strsave(), but any characters found in esc_chars are preceded |
| 1187 | * by a backslash. |
| 1188 | */ |
| 1189 | char_u * |
| 1190 | vim_strsave_escaped(string, esc_chars) |
| 1191 | char_u *string; |
| 1192 | char_u *esc_chars; |
| 1193 | { |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1194 | return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1195 | } |
| 1196 | |
| 1197 | /* |
| 1198 | * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape |
| 1199 | * characters where rem_backslash() would remove the backslash. |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1200 | * Escape the characters with "cc". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1201 | */ |
| 1202 | char_u * |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1203 | vim_strsave_escaped_ext(string, esc_chars, cc, bsl) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1204 | char_u *string; |
| 1205 | char_u *esc_chars; |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1206 | int cc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1207 | int bsl; |
| 1208 | { |
| 1209 | char_u *p; |
| 1210 | char_u *p2; |
| 1211 | char_u *escaped_string; |
| 1212 | unsigned length; |
| 1213 | #ifdef FEAT_MBYTE |
| 1214 | int l; |
| 1215 | #endif |
| 1216 | |
| 1217 | /* |
| 1218 | * First count the number of backslashes required. |
| 1219 | * Then allocate the memory and insert them. |
| 1220 | */ |
| 1221 | length = 1; /* count the trailing NUL */ |
| 1222 | for (p = string; *p; p++) |
| 1223 | { |
| 1224 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1225 | if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1226 | { |
| 1227 | length += l; /* count a multibyte char */ |
| 1228 | p += l - 1; |
| 1229 | continue; |
| 1230 | } |
| 1231 | #endif |
| 1232 | if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p))) |
| 1233 | ++length; /* count a backslash */ |
| 1234 | ++length; /* count an ordinary char */ |
| 1235 | } |
| 1236 | escaped_string = alloc(length); |
| 1237 | if (escaped_string != NULL) |
| 1238 | { |
| 1239 | p2 = escaped_string; |
| 1240 | for (p = string; *p; p++) |
| 1241 | { |
| 1242 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1243 | if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1244 | { |
| 1245 | mch_memmove(p2, p, (size_t)l); |
| 1246 | p2 += l; |
| 1247 | p += l - 1; /* skip multibyte char */ |
| 1248 | continue; |
| 1249 | } |
| 1250 | #endif |
| 1251 | if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p))) |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1252 | *p2++ = cc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1253 | *p2++ = *p; |
| 1254 | } |
| 1255 | *p2 = NUL; |
| 1256 | } |
| 1257 | return escaped_string; |
| 1258 | } |
| 1259 | |
Bram Moolenaar | 7693ec6 | 2008-07-24 18:29:37 +0000 | [diff] [blame] | 1260 | /* |
| 1261 | * Return TRUE when 'shell' has "csh" in the tail. |
| 1262 | */ |
| 1263 | int |
| 1264 | csh_like_shell() |
| 1265 | { |
| 1266 | return (strstr((char *)gettail(p_sh), "csh") != NULL); |
| 1267 | } |
Bram Moolenaar | 7693ec6 | 2008-07-24 18:29:37 +0000 | [diff] [blame] | 1268 | |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1269 | /* |
| 1270 | * Escape "string" for use as a shell argument with system(). |
| 1271 | * This uses single quotes, except when we know we need to use double qoutes |
| 1272 | * (MS-DOS and MS-Windows without 'shellslash' set). |
Bram Moolenaar | ffd66c4 | 2008-07-16 20:43:37 +0000 | [diff] [blame] | 1273 | * Escape a newline, depending on the 'shell' option. |
| 1274 | * When "do_special" is TRUE also replace "!", "%", "#" and things starting |
| 1275 | * with "<" like "<cfile>". |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1276 | * Returns the result in allocated memory, NULL if we have run out. |
| 1277 | */ |
| 1278 | char_u * |
Bram Moolenaar | 05bb953 | 2008-07-04 09:44:11 +0000 | [diff] [blame] | 1279 | vim_strsave_shellescape(string, do_special) |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1280 | char_u *string; |
Bram Moolenaar | 05bb953 | 2008-07-04 09:44:11 +0000 | [diff] [blame] | 1281 | int do_special; |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1282 | { |
| 1283 | unsigned length; |
| 1284 | char_u *p; |
| 1285 | char_u *d; |
| 1286 | char_u *escaped_string; |
Bram Moolenaar | 05bb953 | 2008-07-04 09:44:11 +0000 | [diff] [blame] | 1287 | int l; |
Bram Moolenaar | ffd66c4 | 2008-07-16 20:43:37 +0000 | [diff] [blame] | 1288 | int csh_like; |
| 1289 | |
| 1290 | /* Only csh and similar shells expand '!' within single quotes. For sh and |
| 1291 | * the like we must not put a backslash before it, it will be taken |
| 1292 | * literally. If do_special is set the '!' will be escaped twice. |
| 1293 | * Csh also needs to have "\n" escaped twice when do_special is set. */ |
Bram Moolenaar | 7693ec6 | 2008-07-24 18:29:37 +0000 | [diff] [blame] | 1294 | csh_like = csh_like_shell(); |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1295 | |
| 1296 | /* First count the number of extra bytes required. */ |
Bram Moolenaar | 77f66d6 | 2007-02-20 02:16:18 +0000 | [diff] [blame] | 1297 | length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */ |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1298 | for (p = string; *p != NUL; mb_ptr_adv(p)) |
| 1299 | { |
| 1300 | # if defined(WIN32) || defined(WIN16) || defined(DOS) |
| 1301 | if (!p_ssl) |
| 1302 | { |
| 1303 | if (*p == '"') |
| 1304 | ++length; /* " -> "" */ |
| 1305 | } |
| 1306 | else |
| 1307 | # endif |
| 1308 | if (*p == '\'') |
| 1309 | length += 3; /* ' => '\'' */ |
Bram Moolenaar | ffd66c4 | 2008-07-16 20:43:37 +0000 | [diff] [blame] | 1310 | if (*p == '\n' || (*p == '!' && (csh_like || do_special))) |
| 1311 | { |
| 1312 | ++length; /* insert backslash */ |
| 1313 | if (csh_like && do_special) |
| 1314 | ++length; /* insert backslash */ |
| 1315 | } |
Bram Moolenaar | 05bb953 | 2008-07-04 09:44:11 +0000 | [diff] [blame] | 1316 | if (do_special && find_cmdline_var(p, &l) >= 0) |
| 1317 | { |
| 1318 | ++length; /* insert backslash */ |
| 1319 | p += l - 1; |
| 1320 | } |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1321 | } |
| 1322 | |
| 1323 | /* Allocate memory for the result and fill it. */ |
| 1324 | escaped_string = alloc(length); |
| 1325 | if (escaped_string != NULL) |
| 1326 | { |
| 1327 | d = escaped_string; |
| 1328 | |
| 1329 | /* add opening quote */ |
| 1330 | # if defined(WIN32) || defined(WIN16) || defined(DOS) |
| 1331 | if (!p_ssl) |
| 1332 | *d++ = '"'; |
| 1333 | else |
| 1334 | # endif |
| 1335 | *d++ = '\''; |
| 1336 | |
| 1337 | for (p = string; *p != NUL; ) |
| 1338 | { |
| 1339 | # if defined(WIN32) || defined(WIN16) || defined(DOS) |
| 1340 | if (!p_ssl) |
| 1341 | { |
| 1342 | if (*p == '"') |
| 1343 | { |
| 1344 | *d++ = '"'; |
| 1345 | *d++ = '"'; |
| 1346 | ++p; |
| 1347 | continue; |
| 1348 | } |
| 1349 | } |
| 1350 | else |
| 1351 | # endif |
| 1352 | if (*p == '\'') |
| 1353 | { |
Bram Moolenaar | 05bb953 | 2008-07-04 09:44:11 +0000 | [diff] [blame] | 1354 | *d++ = '\''; |
| 1355 | *d++ = '\\'; |
| 1356 | *d++ = '\''; |
| 1357 | *d++ = '\''; |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1358 | ++p; |
| 1359 | continue; |
| 1360 | } |
Bram Moolenaar | ffd66c4 | 2008-07-16 20:43:37 +0000 | [diff] [blame] | 1361 | if (*p == '\n' || (*p == '!' && (csh_like || do_special))) |
| 1362 | { |
| 1363 | *d++ = '\\'; |
| 1364 | if (csh_like && do_special) |
| 1365 | *d++ = '\\'; |
| 1366 | *d++ = *p++; |
| 1367 | continue; |
| 1368 | } |
Bram Moolenaar | 05bb953 | 2008-07-04 09:44:11 +0000 | [diff] [blame] | 1369 | if (do_special && find_cmdline_var(p, &l) >= 0) |
| 1370 | { |
| 1371 | *d++ = '\\'; /* insert backslash */ |
| 1372 | while (--l >= 0) /* copy the var */ |
| 1373 | *d++ = *p++; |
| 1374 | } |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1375 | |
| 1376 | MB_COPY_CHAR(p, d); |
| 1377 | } |
| 1378 | |
| 1379 | /* add terminating quote and finish with a NUL */ |
| 1380 | # if defined(WIN32) || defined(WIN16) || defined(DOS) |
| 1381 | if (!p_ssl) |
| 1382 | *d++ = '"'; |
| 1383 | else |
| 1384 | # endif |
| 1385 | *d++ = '\''; |
| 1386 | *d = NUL; |
| 1387 | } |
| 1388 | |
| 1389 | return escaped_string; |
| 1390 | } |
Bram Moolenaar | 60a495f | 2006-10-03 12:44:42 +0000 | [diff] [blame] | 1391 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1392 | /* |
| 1393 | * Like vim_strsave(), but make all characters uppercase. |
| 1394 | * This uses ASCII lower-to-upper case translation, language independent. |
| 1395 | */ |
| 1396 | char_u * |
| 1397 | vim_strsave_up(string) |
| 1398 | char_u *string; |
| 1399 | { |
| 1400 | char_u *p1; |
| 1401 | |
| 1402 | p1 = vim_strsave(string); |
| 1403 | vim_strup(p1); |
| 1404 | return p1; |
| 1405 | } |
| 1406 | |
| 1407 | /* |
| 1408 | * Like vim_strnsave(), but make all characters uppercase. |
| 1409 | * This uses ASCII lower-to-upper case translation, language independent. |
| 1410 | */ |
| 1411 | char_u * |
| 1412 | vim_strnsave_up(string, len) |
| 1413 | char_u *string; |
| 1414 | int len; |
| 1415 | { |
| 1416 | char_u *p1; |
| 1417 | |
| 1418 | p1 = vim_strnsave(string, len); |
| 1419 | vim_strup(p1); |
| 1420 | return p1; |
| 1421 | } |
| 1422 | |
| 1423 | /* |
| 1424 | * ASCII lower-to-upper case translation, language independent. |
| 1425 | */ |
| 1426 | void |
| 1427 | vim_strup(p) |
| 1428 | char_u *p; |
| 1429 | { |
| 1430 | char_u *p2; |
| 1431 | int c; |
| 1432 | |
| 1433 | if (p != NULL) |
| 1434 | { |
| 1435 | p2 = p; |
| 1436 | while ((c = *p2) != NUL) |
| 1437 | #ifdef EBCDIC |
| 1438 | *p2++ = isalpha(c) ? toupper(c) : c; |
| 1439 | #else |
| 1440 | *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20); |
| 1441 | #endif |
| 1442 | } |
| 1443 | } |
| 1444 | |
Bram Moolenaar | c4956c8 | 2006-03-12 21:58:43 +0000 | [diff] [blame] | 1445 | #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO) |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 1446 | /* |
| 1447 | * Make string "s" all upper-case and return it in allocated memory. |
| 1448 | * Handles multi-byte characters as well as possible. |
| 1449 | * Returns NULL when out of memory. |
| 1450 | */ |
| 1451 | char_u * |
| 1452 | strup_save(orig) |
| 1453 | char_u *orig; |
| 1454 | { |
| 1455 | char_u *p; |
| 1456 | char_u *res; |
| 1457 | |
| 1458 | res = p = vim_strsave(orig); |
| 1459 | |
| 1460 | if (res != NULL) |
| 1461 | while (*p != NUL) |
| 1462 | { |
| 1463 | # ifdef FEAT_MBYTE |
| 1464 | int l; |
| 1465 | |
| 1466 | if (enc_utf8) |
| 1467 | { |
| 1468 | int c, uc; |
| 1469 | int nl; |
| 1470 | char_u *s; |
| 1471 | |
| 1472 | c = utf_ptr2char(p); |
| 1473 | uc = utf_toupper(c); |
| 1474 | |
| 1475 | /* Reallocate string when byte count changes. This is rare, |
| 1476 | * thus it's OK to do another malloc()/free(). */ |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1477 | l = utf_ptr2len(p); |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 1478 | nl = utf_char2len(uc); |
| 1479 | if (nl != l) |
| 1480 | { |
| 1481 | s = alloc((unsigned)STRLEN(res) + 1 + nl - l); |
| 1482 | if (s == NULL) |
| 1483 | break; |
| 1484 | mch_memmove(s, res, p - res); |
| 1485 | STRCPY(s + (p - res) + nl, p + l); |
| 1486 | p = s + (p - res); |
| 1487 | vim_free(res); |
| 1488 | res = s; |
| 1489 | } |
| 1490 | |
| 1491 | utf_char2bytes(uc, p); |
| 1492 | p += nl; |
| 1493 | } |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1494 | else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 1495 | p += l; /* skip multi-byte character */ |
| 1496 | else |
| 1497 | # endif |
| 1498 | { |
| 1499 | *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */ |
| 1500 | p++; |
| 1501 | } |
| 1502 | } |
| 1503 | |
| 1504 | return res; |
| 1505 | } |
| 1506 | #endif |
| 1507 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1508 | /* |
| 1509 | * copy a space a number of times |
| 1510 | */ |
| 1511 | void |
| 1512 | copy_spaces(ptr, count) |
| 1513 | char_u *ptr; |
| 1514 | size_t count; |
| 1515 | { |
| 1516 | size_t i = count; |
| 1517 | char_u *p = ptr; |
| 1518 | |
| 1519 | while (i--) |
| 1520 | *p++ = ' '; |
| 1521 | } |
| 1522 | |
| 1523 | #if defined(FEAT_VISUALEXTRA) || defined(PROTO) |
| 1524 | /* |
| 1525 | * Copy a character a number of times. |
| 1526 | * Does not work for multi-byte charactes! |
| 1527 | */ |
| 1528 | void |
| 1529 | copy_chars(ptr, count, c) |
| 1530 | char_u *ptr; |
| 1531 | size_t count; |
| 1532 | int c; |
| 1533 | { |
| 1534 | size_t i = count; |
| 1535 | char_u *p = ptr; |
| 1536 | |
| 1537 | while (i--) |
| 1538 | *p++ = c; |
| 1539 | } |
| 1540 | #endif |
| 1541 | |
| 1542 | /* |
| 1543 | * delete spaces at the end of a string |
| 1544 | */ |
| 1545 | void |
| 1546 | del_trailing_spaces(ptr) |
| 1547 | char_u *ptr; |
| 1548 | { |
| 1549 | char_u *q; |
| 1550 | |
| 1551 | q = ptr + STRLEN(ptr); |
| 1552 | while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V) |
| 1553 | *q = NUL; |
| 1554 | } |
| 1555 | |
| 1556 | /* |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 1557 | * Like strncpy(), but always terminate the result with one NUL. |
Bram Moolenaar | d042c56 | 2005-06-30 22:04:15 +0000 | [diff] [blame] | 1558 | * "to" must be "len + 1" long! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1559 | */ |
| 1560 | void |
| 1561 | vim_strncpy(to, from, len) |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 1562 | char_u *to; |
| 1563 | char_u *from; |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 1564 | size_t len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1565 | { |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 1566 | STRNCPY(to, from, len); |
| 1567 | to[len] = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1568 | } |
| 1569 | |
| 1570 | /* |
| 1571 | * Isolate one part of a string option where parts are separated with |
| 1572 | * "sep_chars". |
Bram Moolenaar | 83bab71 | 2005-08-01 21:58:57 +0000 | [diff] [blame] | 1573 | * The part is copied into "buf[maxlen]". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1574 | * "*option" is advanced to the next part. |
| 1575 | * The length is returned. |
| 1576 | */ |
| 1577 | int |
| 1578 | copy_option_part(option, buf, maxlen, sep_chars) |
| 1579 | char_u **option; |
| 1580 | char_u *buf; |
| 1581 | int maxlen; |
| 1582 | char *sep_chars; |
| 1583 | { |
| 1584 | int len = 0; |
| 1585 | char_u *p = *option; |
| 1586 | |
| 1587 | /* skip '.' at start of option part, for 'suffixes' */ |
| 1588 | if (*p == '.') |
| 1589 | buf[len++] = *p++; |
| 1590 | while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL) |
| 1591 | { |
| 1592 | /* |
| 1593 | * Skip backslash before a separator character and space. |
| 1594 | */ |
| 1595 | if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL) |
| 1596 | ++p; |
| 1597 | if (len < maxlen - 1) |
| 1598 | buf[len++] = *p; |
| 1599 | ++p; |
| 1600 | } |
| 1601 | buf[len] = NUL; |
| 1602 | |
| 1603 | if (*p != NUL && *p != ',') /* skip non-standard separator */ |
| 1604 | ++p; |
| 1605 | p = skip_to_option_part(p); /* p points to next file name */ |
| 1606 | |
| 1607 | *option = p; |
| 1608 | return len; |
| 1609 | } |
| 1610 | |
| 1611 | /* |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 1612 | * Replacement for free() that ignores NULL pointers. |
| 1613 | * Also skip free() when exiting for sure, this helps when we caught a deadly |
| 1614 | * signal that was caused by a crash in free(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1615 | */ |
| 1616 | void |
| 1617 | vim_free(x) |
| 1618 | void *x; |
| 1619 | { |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 1620 | if (x != NULL && !really_exiting) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1621 | { |
| 1622 | #ifdef MEM_PROFILE |
| 1623 | mem_pre_free(&x); |
| 1624 | #endif |
| 1625 | free(x); |
| 1626 | } |
| 1627 | } |
| 1628 | |
| 1629 | #ifndef HAVE_MEMSET |
| 1630 | void * |
| 1631 | vim_memset(ptr, c, size) |
| 1632 | void *ptr; |
| 1633 | int c; |
| 1634 | size_t size; |
| 1635 | { |
| 1636 | char *p = ptr; |
| 1637 | |
| 1638 | while (size-- > 0) |
| 1639 | *p++ = c; |
| 1640 | return ptr; |
| 1641 | } |
| 1642 | #endif |
| 1643 | |
| 1644 | #ifdef VIM_MEMCMP |
| 1645 | /* |
| 1646 | * Return zero when "b1" and "b2" are the same for "len" bytes. |
| 1647 | * Return non-zero otherwise. |
| 1648 | */ |
| 1649 | int |
| 1650 | vim_memcmp(b1, b2, len) |
| 1651 | void *b1; |
| 1652 | void *b2; |
| 1653 | size_t len; |
| 1654 | { |
| 1655 | char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2; |
| 1656 | |
| 1657 | for ( ; len > 0; --len) |
| 1658 | { |
| 1659 | if (*p1 != *p2) |
| 1660 | return 1; |
| 1661 | ++p1; |
| 1662 | ++p2; |
| 1663 | } |
| 1664 | return 0; |
| 1665 | } |
| 1666 | #endif |
| 1667 | |
| 1668 | #ifdef VIM_MEMMOVE |
| 1669 | /* |
| 1670 | * Version of memmove() that handles overlapping source and destination. |
| 1671 | * For systems that don't have a function that is guaranteed to do that (SYSV). |
| 1672 | */ |
| 1673 | void |
| 1674 | mch_memmove(dst_arg, src_arg, len) |
| 1675 | void *src_arg, *dst_arg; |
| 1676 | size_t len; |
| 1677 | { |
| 1678 | /* |
| 1679 | * A void doesn't have a size, we use char pointers. |
| 1680 | */ |
| 1681 | char *dst = dst_arg, *src = src_arg; |
| 1682 | |
| 1683 | /* overlap, copy backwards */ |
| 1684 | if (dst > src && dst < src + len) |
| 1685 | { |
| 1686 | src += len; |
| 1687 | dst += len; |
| 1688 | while (len-- > 0) |
| 1689 | *--dst = *--src; |
| 1690 | } |
| 1691 | else /* copy forwards */ |
| 1692 | while (len-- > 0) |
| 1693 | *dst++ = *src++; |
| 1694 | } |
| 1695 | #endif |
| 1696 | |
| 1697 | #if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO) |
| 1698 | /* |
| 1699 | * Compare two strings, ignoring case, using current locale. |
| 1700 | * Doesn't work for multi-byte characters. |
| 1701 | * return 0 for match, < 0 for smaller, > 0 for bigger |
| 1702 | */ |
| 1703 | int |
| 1704 | vim_stricmp(s1, s2) |
| 1705 | char *s1; |
| 1706 | char *s2; |
| 1707 | { |
| 1708 | int i; |
| 1709 | |
| 1710 | for (;;) |
| 1711 | { |
| 1712 | i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2); |
| 1713 | if (i != 0) |
| 1714 | return i; /* this character different */ |
| 1715 | if (*s1 == NUL) |
| 1716 | break; /* strings match until NUL */ |
| 1717 | ++s1; |
| 1718 | ++s2; |
| 1719 | } |
| 1720 | return 0; /* strings match */ |
| 1721 | } |
| 1722 | #endif |
| 1723 | |
| 1724 | #if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO) |
| 1725 | /* |
| 1726 | * Compare two strings, for length "len", ignoring case, using current locale. |
| 1727 | * Doesn't work for multi-byte characters. |
| 1728 | * return 0 for match, < 0 for smaller, > 0 for bigger |
| 1729 | */ |
| 1730 | int |
| 1731 | vim_strnicmp(s1, s2, len) |
| 1732 | char *s1; |
| 1733 | char *s2; |
| 1734 | size_t len; |
| 1735 | { |
| 1736 | int i; |
| 1737 | |
| 1738 | while (len > 0) |
| 1739 | { |
| 1740 | i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2); |
| 1741 | if (i != 0) |
| 1742 | return i; /* this character different */ |
| 1743 | if (*s1 == NUL) |
| 1744 | break; /* strings match until NUL */ |
| 1745 | ++s1; |
| 1746 | ++s2; |
| 1747 | --len; |
| 1748 | } |
| 1749 | return 0; /* strings match */ |
| 1750 | } |
| 1751 | #endif |
| 1752 | |
| 1753 | #if 0 /* currently not used */ |
| 1754 | /* |
| 1755 | * Check if string "s2" appears somewhere in "s1" while ignoring case. |
| 1756 | * Return NULL if not, a pointer to the first occurrence if it does. |
| 1757 | */ |
| 1758 | char_u * |
| 1759 | vim_stristr(s1, s2) |
| 1760 | char_u *s1; |
| 1761 | char_u *s2; |
| 1762 | { |
| 1763 | char_u *p; |
| 1764 | int len = STRLEN(s2); |
| 1765 | char_u *end = s1 + STRLEN(s1) - len; |
| 1766 | |
| 1767 | for (p = s1; p <= end; ++p) |
| 1768 | if (STRNICMP(p, s2, len) == 0) |
| 1769 | return p; |
| 1770 | return NULL; |
| 1771 | } |
| 1772 | #endif |
| 1773 | |
| 1774 | /* |
| 1775 | * Version of strchr() and strrchr() that handle unsigned char strings |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1776 | * with characters from 128 to 255 correctly. It also doesn't return a |
| 1777 | * pointer to the NUL at the end of the string. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1778 | */ |
| 1779 | char_u * |
| 1780 | vim_strchr(string, c) |
| 1781 | char_u *string; |
| 1782 | int c; |
| 1783 | { |
| 1784 | char_u *p; |
| 1785 | int b; |
| 1786 | |
| 1787 | p = string; |
| 1788 | #ifdef FEAT_MBYTE |
| 1789 | if (enc_utf8 && c >= 0x80) |
| 1790 | { |
| 1791 | while (*p != NUL) |
| 1792 | { |
| 1793 | if (utf_ptr2char(p) == c) |
| 1794 | return p; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1795 | p += (*mb_ptr2len)(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1796 | } |
| 1797 | return NULL; |
| 1798 | } |
| 1799 | if (enc_dbcs != 0 && c > 255) |
| 1800 | { |
| 1801 | int n2 = c & 0xff; |
| 1802 | |
| 1803 | c = ((unsigned)c >> 8) & 0xff; |
| 1804 | while ((b = *p) != NUL) |
| 1805 | { |
| 1806 | if (b == c && p[1] == n2) |
| 1807 | return p; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1808 | p += (*mb_ptr2len)(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1809 | } |
| 1810 | return NULL; |
| 1811 | } |
| 1812 | if (has_mbyte) |
| 1813 | { |
| 1814 | while ((b = *p) != NUL) |
| 1815 | { |
| 1816 | if (b == c) |
| 1817 | return p; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1818 | p += (*mb_ptr2len)(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1819 | } |
| 1820 | return NULL; |
| 1821 | } |
| 1822 | #endif |
| 1823 | while ((b = *p) != NUL) |
| 1824 | { |
| 1825 | if (b == c) |
| 1826 | return p; |
| 1827 | ++p; |
| 1828 | } |
| 1829 | return NULL; |
| 1830 | } |
| 1831 | |
| 1832 | /* |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1833 | * Version of strchr() that only works for bytes and handles unsigned char |
| 1834 | * strings with characters above 128 correctly. It also doesn't return a |
| 1835 | * pointer to the NUL at the end of the string. |
| 1836 | */ |
| 1837 | char_u * |
| 1838 | vim_strbyte(string, c) |
| 1839 | char_u *string; |
| 1840 | int c; |
| 1841 | { |
| 1842 | char_u *p = string; |
| 1843 | |
| 1844 | while (*p != NUL) |
| 1845 | { |
| 1846 | if (*p == c) |
| 1847 | return p; |
| 1848 | ++p; |
| 1849 | } |
| 1850 | return NULL; |
| 1851 | } |
| 1852 | |
| 1853 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1854 | * Search for last occurrence of "c" in "string". |
Bram Moolenaar | ac6e65f | 2005-08-29 22:25:38 +0000 | [diff] [blame] | 1855 | * Return NULL if not found. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1856 | * Does not handle multi-byte char for "c"! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1857 | */ |
| 1858 | char_u * |
| 1859 | vim_strrchr(string, c) |
| 1860 | char_u *string; |
| 1861 | int c; |
| 1862 | { |
| 1863 | char_u *retval = NULL; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1864 | char_u *p = string; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1865 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1866 | while (*p) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1867 | { |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1868 | if (*p == c) |
| 1869 | retval = p; |
| 1870 | mb_ptr_adv(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1871 | } |
| 1872 | return retval; |
| 1873 | } |
| 1874 | |
| 1875 | /* |
| 1876 | * Vim's version of strpbrk(), in case it's missing. |
| 1877 | * Don't generate a prototype for this, causes problems when it's not used. |
| 1878 | */ |
| 1879 | #ifndef PROTO |
| 1880 | # ifndef HAVE_STRPBRK |
| 1881 | # ifdef vim_strpbrk |
| 1882 | # undef vim_strpbrk |
| 1883 | # endif |
| 1884 | char_u * |
| 1885 | vim_strpbrk(s, charset) |
| 1886 | char_u *s; |
| 1887 | char_u *charset; |
| 1888 | { |
| 1889 | while (*s) |
| 1890 | { |
| 1891 | if (vim_strchr(charset, *s) != NULL) |
| 1892 | return s; |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1893 | mb_ptr_adv(s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1894 | } |
| 1895 | return NULL; |
| 1896 | } |
| 1897 | # endif |
| 1898 | #endif |
| 1899 | |
| 1900 | /* |
| 1901 | * Vim has its own isspace() function, because on some machines isspace() |
| 1902 | * can't handle characters above 128. |
| 1903 | */ |
| 1904 | int |
| 1905 | vim_isspace(x) |
| 1906 | int x; |
| 1907 | { |
| 1908 | return ((x >= 9 && x <= 13) || x == ' '); |
| 1909 | } |
| 1910 | |
| 1911 | /************************************************************************ |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 1912 | * Functions for handling growing arrays. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1913 | */ |
| 1914 | |
| 1915 | /* |
| 1916 | * Clear an allocated growing array. |
| 1917 | */ |
| 1918 | void |
| 1919 | ga_clear(gap) |
| 1920 | garray_T *gap; |
| 1921 | { |
| 1922 | vim_free(gap->ga_data); |
| 1923 | ga_init(gap); |
| 1924 | } |
| 1925 | |
| 1926 | /* |
| 1927 | * Clear a growing array that contains a list of strings. |
| 1928 | */ |
| 1929 | void |
| 1930 | ga_clear_strings(gap) |
| 1931 | garray_T *gap; |
| 1932 | { |
| 1933 | int i; |
| 1934 | |
| 1935 | for (i = 0; i < gap->ga_len; ++i) |
| 1936 | vim_free(((char_u **)(gap->ga_data))[i]); |
| 1937 | ga_clear(gap); |
| 1938 | } |
| 1939 | |
| 1940 | /* |
| 1941 | * Initialize a growing array. Don't forget to set ga_itemsize and |
| 1942 | * ga_growsize! Or use ga_init2(). |
| 1943 | */ |
| 1944 | void |
| 1945 | ga_init(gap) |
| 1946 | garray_T *gap; |
| 1947 | { |
| 1948 | gap->ga_data = NULL; |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1949 | gap->ga_maxlen = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1950 | gap->ga_len = 0; |
| 1951 | } |
| 1952 | |
| 1953 | void |
| 1954 | ga_init2(gap, itemsize, growsize) |
| 1955 | garray_T *gap; |
| 1956 | int itemsize; |
| 1957 | int growsize; |
| 1958 | { |
| 1959 | ga_init(gap); |
| 1960 | gap->ga_itemsize = itemsize; |
| 1961 | gap->ga_growsize = growsize; |
| 1962 | } |
| 1963 | |
| 1964 | /* |
| 1965 | * Make room in growing array "gap" for at least "n" items. |
| 1966 | * Return FAIL for failure, OK otherwise. |
| 1967 | */ |
| 1968 | int |
| 1969 | ga_grow(gap, n) |
| 1970 | garray_T *gap; |
| 1971 | int n; |
| 1972 | { |
| 1973 | size_t len; |
| 1974 | char_u *pp; |
| 1975 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1976 | if (gap->ga_maxlen - gap->ga_len < n) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1977 | { |
| 1978 | if (n < gap->ga_growsize) |
| 1979 | n = gap->ga_growsize; |
| 1980 | len = gap->ga_itemsize * (gap->ga_len + n); |
| 1981 | pp = alloc_clear((unsigned)len); |
| 1982 | if (pp == NULL) |
| 1983 | return FAIL; |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1984 | gap->ga_maxlen = gap->ga_len + n; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1985 | if (gap->ga_data != NULL) |
| 1986 | { |
| 1987 | mch_memmove(pp, gap->ga_data, |
| 1988 | (size_t)(gap->ga_itemsize * gap->ga_len)); |
| 1989 | vim_free(gap->ga_data); |
| 1990 | } |
| 1991 | gap->ga_data = pp; |
| 1992 | } |
| 1993 | return OK; |
| 1994 | } |
| 1995 | |
| 1996 | /* |
| 1997 | * Concatenate a string to a growarray which contains characters. |
| 1998 | * Note: Does NOT copy the NUL at the end! |
| 1999 | */ |
| 2000 | void |
| 2001 | ga_concat(gap, s) |
| 2002 | garray_T *gap; |
| 2003 | char_u *s; |
| 2004 | { |
| 2005 | int len = (int)STRLEN(s); |
| 2006 | |
| 2007 | if (ga_grow(gap, len) == OK) |
| 2008 | { |
| 2009 | mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len); |
| 2010 | gap->ga_len += len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2011 | } |
| 2012 | } |
| 2013 | |
| 2014 | /* |
| 2015 | * Append one byte to a growarray which contains bytes. |
| 2016 | */ |
| 2017 | void |
| 2018 | ga_append(gap, c) |
| 2019 | garray_T *gap; |
| 2020 | int c; |
| 2021 | { |
| 2022 | if (ga_grow(gap, 1) == OK) |
| 2023 | { |
| 2024 | *((char *)gap->ga_data + gap->ga_len) = c; |
| 2025 | ++gap->ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2026 | } |
| 2027 | } |
| 2028 | |
| 2029 | /************************************************************************ |
| 2030 | * functions that use lookup tables for various things, generally to do with |
| 2031 | * special key codes. |
| 2032 | */ |
| 2033 | |
| 2034 | /* |
| 2035 | * Some useful tables. |
| 2036 | */ |
| 2037 | |
| 2038 | static struct modmasktable |
| 2039 | { |
| 2040 | short mod_mask; /* Bit-mask for particular key modifier */ |
| 2041 | short mod_flag; /* Bit(s) for particular key modifier */ |
| 2042 | char_u name; /* Single letter name of modifier */ |
| 2043 | } mod_mask_table[] = |
| 2044 | { |
| 2045 | {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'}, |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2046 | {MOD_MASK_META, MOD_MASK_META, (char_u)'T'}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2047 | {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'}, |
| 2048 | {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'}, |
| 2049 | {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'}, |
| 2050 | {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'}, |
| 2051 | {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'}, |
| 2052 | #ifdef MACOS |
| 2053 | {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'}, |
| 2054 | #endif |
| 2055 | /* 'A' must be the last one */ |
| 2056 | {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'}, |
| 2057 | {0, 0, NUL} |
| 2058 | }; |
| 2059 | |
| 2060 | /* |
| 2061 | * Shifted key terminal codes and their unshifted equivalent. |
Bram Moolenaar | 7aa9f6a | 2007-05-10 18:00:30 +0000 | [diff] [blame] | 2062 | * Don't add mouse codes here, they are handled separately! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2063 | */ |
| 2064 | #define MOD_KEYS_ENTRY_SIZE 5 |
| 2065 | |
| 2066 | static char_u modifier_keys_table[] = |
| 2067 | { |
| 2068 | /* mod mask with modifier without modifier */ |
| 2069 | MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */ |
| 2070 | MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */ |
| 2071 | MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */ |
| 2072 | MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */ |
| 2073 | MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */ |
| 2074 | MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */ |
| 2075 | MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */ |
| 2076 | MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */ |
| 2077 | MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */ |
| 2078 | MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */ |
| 2079 | MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */ |
| 2080 | MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */ |
| 2081 | MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */ |
| 2082 | MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */ |
| 2083 | MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */ |
| 2084 | MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */ |
| 2085 | MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */ |
| 2086 | MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */ |
| 2087 | MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */ |
| 2088 | MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */ |
| 2089 | MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */ |
| 2090 | MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */ |
| 2091 | MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */ |
| 2092 | MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */ |
| 2093 | MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */ |
| 2094 | MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */ |
| 2095 | MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */ |
| 2096 | MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */ |
| 2097 | MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */ |
| 2098 | MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */ |
| 2099 | MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */ |
| 2100 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */ |
| 2101 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */ |
| 2102 | |
| 2103 | /* vt100 F1 */ |
| 2104 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1, |
| 2105 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2, |
| 2106 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3, |
| 2107 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4, |
| 2108 | |
| 2109 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */ |
| 2110 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2', |
| 2111 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3', |
| 2112 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4', |
| 2113 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5', |
| 2114 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6', |
| 2115 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7', |
| 2116 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8', |
| 2117 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9', |
| 2118 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */ |
| 2119 | |
| 2120 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1', |
| 2121 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2', |
| 2122 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3', |
| 2123 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4', |
| 2124 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5', |
| 2125 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6', |
| 2126 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7', |
| 2127 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8', |
| 2128 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9', |
| 2129 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A', |
| 2130 | |
| 2131 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B', |
| 2132 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C', |
| 2133 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D', |
| 2134 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E', |
| 2135 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F', |
| 2136 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G', |
| 2137 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H', |
| 2138 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I', |
| 2139 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J', |
| 2140 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K', |
| 2141 | |
| 2142 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L', |
| 2143 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M', |
| 2144 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N', |
| 2145 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O', |
| 2146 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P', |
| 2147 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q', |
| 2148 | MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R', |
| 2149 | |
| 2150 | /* TAB pseudo code*/ |
| 2151 | MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB, |
| 2152 | |
| 2153 | NUL |
| 2154 | }; |
| 2155 | |
| 2156 | static struct key_name_entry |
| 2157 | { |
| 2158 | int key; /* Special key code or ascii value */ |
| 2159 | char_u *name; /* Name of key */ |
| 2160 | } key_names_table[] = |
| 2161 | { |
| 2162 | {' ', (char_u *)"Space"}, |
| 2163 | {TAB, (char_u *)"Tab"}, |
| 2164 | {K_TAB, (char_u *)"Tab"}, |
| 2165 | {NL, (char_u *)"NL"}, |
| 2166 | {NL, (char_u *)"NewLine"}, /* Alternative name */ |
| 2167 | {NL, (char_u *)"LineFeed"}, /* Alternative name */ |
| 2168 | {NL, (char_u *)"LF"}, /* Alternative name */ |
| 2169 | {CAR, (char_u *)"CR"}, |
| 2170 | {CAR, (char_u *)"Return"}, /* Alternative name */ |
| 2171 | {CAR, (char_u *)"Enter"}, /* Alternative name */ |
| 2172 | {K_BS, (char_u *)"BS"}, |
| 2173 | {K_BS, (char_u *)"BackSpace"}, /* Alternative name */ |
| 2174 | {ESC, (char_u *)"Esc"}, |
| 2175 | {CSI, (char_u *)"CSI"}, |
| 2176 | {K_CSI, (char_u *)"xCSI"}, |
| 2177 | {'|', (char_u *)"Bar"}, |
| 2178 | {'\\', (char_u *)"Bslash"}, |
| 2179 | {K_DEL, (char_u *)"Del"}, |
| 2180 | {K_DEL, (char_u *)"Delete"}, /* Alternative name */ |
| 2181 | {K_KDEL, (char_u *)"kDel"}, |
| 2182 | {K_UP, (char_u *)"Up"}, |
| 2183 | {K_DOWN, (char_u *)"Down"}, |
| 2184 | {K_LEFT, (char_u *)"Left"}, |
| 2185 | {K_RIGHT, (char_u *)"Right"}, |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 2186 | {K_XUP, (char_u *)"xUp"}, |
| 2187 | {K_XDOWN, (char_u *)"xDown"}, |
| 2188 | {K_XLEFT, (char_u *)"xLeft"}, |
| 2189 | {K_XRIGHT, (char_u *)"xRight"}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2190 | |
| 2191 | {K_F1, (char_u *)"F1"}, |
| 2192 | {K_F2, (char_u *)"F2"}, |
| 2193 | {K_F3, (char_u *)"F3"}, |
| 2194 | {K_F4, (char_u *)"F4"}, |
| 2195 | {K_F5, (char_u *)"F5"}, |
| 2196 | {K_F6, (char_u *)"F6"}, |
| 2197 | {K_F7, (char_u *)"F7"}, |
| 2198 | {K_F8, (char_u *)"F8"}, |
| 2199 | {K_F9, (char_u *)"F9"}, |
| 2200 | {K_F10, (char_u *)"F10"}, |
| 2201 | |
| 2202 | {K_F11, (char_u *)"F11"}, |
| 2203 | {K_F12, (char_u *)"F12"}, |
| 2204 | {K_F13, (char_u *)"F13"}, |
| 2205 | {K_F14, (char_u *)"F14"}, |
| 2206 | {K_F15, (char_u *)"F15"}, |
| 2207 | {K_F16, (char_u *)"F16"}, |
| 2208 | {K_F17, (char_u *)"F17"}, |
| 2209 | {K_F18, (char_u *)"F18"}, |
| 2210 | {K_F19, (char_u *)"F19"}, |
| 2211 | {K_F20, (char_u *)"F20"}, |
| 2212 | |
| 2213 | {K_F21, (char_u *)"F21"}, |
| 2214 | {K_F22, (char_u *)"F22"}, |
| 2215 | {K_F23, (char_u *)"F23"}, |
| 2216 | {K_F24, (char_u *)"F24"}, |
| 2217 | {K_F25, (char_u *)"F25"}, |
| 2218 | {K_F26, (char_u *)"F26"}, |
| 2219 | {K_F27, (char_u *)"F27"}, |
| 2220 | {K_F28, (char_u *)"F28"}, |
| 2221 | {K_F29, (char_u *)"F29"}, |
| 2222 | {K_F30, (char_u *)"F30"}, |
| 2223 | |
| 2224 | {K_F31, (char_u *)"F31"}, |
| 2225 | {K_F32, (char_u *)"F32"}, |
| 2226 | {K_F33, (char_u *)"F33"}, |
| 2227 | {K_F34, (char_u *)"F34"}, |
| 2228 | {K_F35, (char_u *)"F35"}, |
| 2229 | {K_F36, (char_u *)"F36"}, |
| 2230 | {K_F37, (char_u *)"F37"}, |
| 2231 | |
| 2232 | {K_XF1, (char_u *)"xF1"}, |
| 2233 | {K_XF2, (char_u *)"xF2"}, |
| 2234 | {K_XF3, (char_u *)"xF3"}, |
| 2235 | {K_XF4, (char_u *)"xF4"}, |
| 2236 | |
| 2237 | {K_HELP, (char_u *)"Help"}, |
| 2238 | {K_UNDO, (char_u *)"Undo"}, |
| 2239 | {K_INS, (char_u *)"Insert"}, |
| 2240 | {K_INS, (char_u *)"Ins"}, /* Alternative name */ |
| 2241 | {K_KINS, (char_u *)"kInsert"}, |
| 2242 | {K_HOME, (char_u *)"Home"}, |
| 2243 | {K_KHOME, (char_u *)"kHome"}, |
| 2244 | {K_XHOME, (char_u *)"xHome"}, |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 2245 | {K_ZHOME, (char_u *)"zHome"}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2246 | {K_END, (char_u *)"End"}, |
| 2247 | {K_KEND, (char_u *)"kEnd"}, |
| 2248 | {K_XEND, (char_u *)"xEnd"}, |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 2249 | {K_ZEND, (char_u *)"zEnd"}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2250 | {K_PAGEUP, (char_u *)"PageUp"}, |
| 2251 | {K_PAGEDOWN, (char_u *)"PageDown"}, |
| 2252 | {K_KPAGEUP, (char_u *)"kPageUp"}, |
| 2253 | {K_KPAGEDOWN, (char_u *)"kPageDown"}, |
| 2254 | |
| 2255 | {K_KPLUS, (char_u *)"kPlus"}, |
| 2256 | {K_KMINUS, (char_u *)"kMinus"}, |
| 2257 | {K_KDIVIDE, (char_u *)"kDivide"}, |
| 2258 | {K_KMULTIPLY, (char_u *)"kMultiply"}, |
| 2259 | {K_KENTER, (char_u *)"kEnter"}, |
| 2260 | {K_KPOINT, (char_u *)"kPoint"}, |
| 2261 | |
| 2262 | {K_K0, (char_u *)"k0"}, |
| 2263 | {K_K1, (char_u *)"k1"}, |
| 2264 | {K_K2, (char_u *)"k2"}, |
| 2265 | {K_K3, (char_u *)"k3"}, |
| 2266 | {K_K4, (char_u *)"k4"}, |
| 2267 | {K_K5, (char_u *)"k5"}, |
| 2268 | {K_K6, (char_u *)"k6"}, |
| 2269 | {K_K7, (char_u *)"k7"}, |
| 2270 | {K_K8, (char_u *)"k8"}, |
| 2271 | {K_K9, (char_u *)"k9"}, |
| 2272 | |
| 2273 | {'<', (char_u *)"lt"}, |
| 2274 | |
| 2275 | {K_MOUSE, (char_u *)"Mouse"}, |
| 2276 | {K_NETTERM_MOUSE, (char_u *)"NetMouse"}, |
| 2277 | {K_DEC_MOUSE, (char_u *)"DecMouse"}, |
| 2278 | {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"}, |
| 2279 | {K_PTERM_MOUSE, (char_u *)"PtermMouse"}, |
| 2280 | {K_LEFTMOUSE, (char_u *)"LeftMouse"}, |
| 2281 | {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"}, |
| 2282 | {K_LEFTDRAG, (char_u *)"LeftDrag"}, |
| 2283 | {K_LEFTRELEASE, (char_u *)"LeftRelease"}, |
| 2284 | {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"}, |
| 2285 | {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"}, |
| 2286 | {K_MIDDLEDRAG, (char_u *)"MiddleDrag"}, |
| 2287 | {K_MIDDLERELEASE, (char_u *)"MiddleRelease"}, |
| 2288 | {K_RIGHTMOUSE, (char_u *)"RightMouse"}, |
| 2289 | {K_RIGHTDRAG, (char_u *)"RightDrag"}, |
| 2290 | {K_RIGHTRELEASE, (char_u *)"RightRelease"}, |
| 2291 | {K_MOUSEDOWN, (char_u *)"MouseDown"}, |
| 2292 | {K_MOUSEUP, (char_u *)"MouseUp"}, |
| 2293 | {K_X1MOUSE, (char_u *)"X1Mouse"}, |
| 2294 | {K_X1DRAG, (char_u *)"X1Drag"}, |
| 2295 | {K_X1RELEASE, (char_u *)"X1Release"}, |
| 2296 | {K_X2MOUSE, (char_u *)"X2Mouse"}, |
| 2297 | {K_X2DRAG, (char_u *)"X2Drag"}, |
| 2298 | {K_X2RELEASE, (char_u *)"X2Release"}, |
| 2299 | {K_DROP, (char_u *)"Drop"}, |
| 2300 | {K_ZERO, (char_u *)"Nul"}, |
| 2301 | #ifdef FEAT_EVAL |
| 2302 | {K_SNR, (char_u *)"SNR"}, |
| 2303 | #endif |
| 2304 | {K_PLUG, (char_u *)"Plug"}, |
| 2305 | {0, NULL} |
| 2306 | }; |
| 2307 | |
| 2308 | #define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry)) |
| 2309 | |
| 2310 | #ifdef FEAT_MOUSE |
| 2311 | static struct mousetable |
| 2312 | { |
| 2313 | int pseudo_code; /* Code for pseudo mouse event */ |
| 2314 | int button; /* Which mouse button is it? */ |
| 2315 | int is_click; /* Is it a mouse button click event? */ |
| 2316 | int is_drag; /* Is it a mouse drag event? */ |
| 2317 | } mouse_table[] = |
| 2318 | { |
| 2319 | {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE}, |
| 2320 | #ifdef FEAT_GUI |
| 2321 | {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE}, |
| 2322 | #endif |
| 2323 | {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE}, |
| 2324 | {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE}, |
| 2325 | #ifdef FEAT_GUI |
| 2326 | {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE}, |
| 2327 | #endif |
| 2328 | {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE}, |
| 2329 | {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE}, |
| 2330 | {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE}, |
| 2331 | {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE}, |
| 2332 | {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE}, |
| 2333 | {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE}, |
| 2334 | {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE}, |
| 2335 | {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE}, |
| 2336 | {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE}, |
| 2337 | {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE}, |
| 2338 | {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE}, |
| 2339 | {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE}, |
| 2340 | /* DRAG without CLICK */ |
| 2341 | {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE}, |
| 2342 | /* RELEASE without CLICK */ |
| 2343 | {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE}, |
| 2344 | {0, 0, 0, 0}, |
| 2345 | }; |
| 2346 | #endif /* FEAT_MOUSE */ |
| 2347 | |
| 2348 | /* |
| 2349 | * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given |
| 2350 | * modifier name ('S' for Shift, 'C' for Ctrl etc). |
| 2351 | */ |
| 2352 | int |
| 2353 | name_to_mod_mask(c) |
| 2354 | int c; |
| 2355 | { |
| 2356 | int i; |
| 2357 | |
| 2358 | c = TOUPPER_ASC(c); |
| 2359 | for (i = 0; mod_mask_table[i].mod_mask != 0; i++) |
| 2360 | if (c == mod_mask_table[i].name) |
| 2361 | return mod_mask_table[i].mod_flag; |
| 2362 | return 0; |
| 2363 | } |
| 2364 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2365 | /* |
| 2366 | * Check if if there is a special key code for "key" that includes the |
| 2367 | * modifiers specified. |
| 2368 | */ |
| 2369 | int |
| 2370 | simplify_key(key, modifiers) |
| 2371 | int key; |
| 2372 | int *modifiers; |
| 2373 | { |
| 2374 | int i; |
| 2375 | int key0; |
| 2376 | int key1; |
| 2377 | |
| 2378 | if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT)) |
| 2379 | { |
| 2380 | /* TAB is a special case */ |
| 2381 | if (key == TAB && (*modifiers & MOD_MASK_SHIFT)) |
| 2382 | { |
| 2383 | *modifiers &= ~MOD_MASK_SHIFT; |
| 2384 | return K_S_TAB; |
| 2385 | } |
| 2386 | key0 = KEY2TERMCAP0(key); |
| 2387 | key1 = KEY2TERMCAP1(key); |
| 2388 | for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE) |
| 2389 | if (key0 == modifier_keys_table[i + 3] |
| 2390 | && key1 == modifier_keys_table[i + 4] |
| 2391 | && (*modifiers & modifier_keys_table[i])) |
| 2392 | { |
| 2393 | *modifiers &= ~modifier_keys_table[i]; |
| 2394 | return TERMCAP2KEY(modifier_keys_table[i + 1], |
| 2395 | modifier_keys_table[i + 2]); |
| 2396 | } |
| 2397 | } |
| 2398 | return key; |
| 2399 | } |
| 2400 | |
| 2401 | /* |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 2402 | * Change <xHome> to <Home>, <xUp> to <Up>, etc. |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 2403 | */ |
| 2404 | int |
| 2405 | handle_x_keys(key) |
| 2406 | int key; |
| 2407 | { |
| 2408 | switch (key) |
| 2409 | { |
| 2410 | case K_XUP: return K_UP; |
| 2411 | case K_XDOWN: return K_DOWN; |
| 2412 | case K_XLEFT: return K_LEFT; |
| 2413 | case K_XRIGHT: return K_RIGHT; |
| 2414 | case K_XHOME: return K_HOME; |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 2415 | case K_ZHOME: return K_HOME; |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 2416 | case K_XEND: return K_END; |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 2417 | case K_ZEND: return K_END; |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 2418 | case K_XF1: return K_F1; |
| 2419 | case K_XF2: return K_F2; |
| 2420 | case K_XF3: return K_F3; |
| 2421 | case K_XF4: return K_F4; |
| 2422 | case K_S_XF1: return K_S_F1; |
| 2423 | case K_S_XF2: return K_S_F2; |
| 2424 | case K_S_XF3: return K_S_F3; |
| 2425 | case K_S_XF4: return K_S_F4; |
| 2426 | } |
| 2427 | return key; |
| 2428 | } |
| 2429 | |
| 2430 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2431 | * Return a string which contains the name of the given key when the given |
| 2432 | * modifiers are down. |
| 2433 | */ |
| 2434 | char_u * |
| 2435 | get_special_key_name(c, modifiers) |
| 2436 | int c; |
| 2437 | int modifiers; |
| 2438 | { |
| 2439 | static char_u string[MAX_KEY_NAME_LEN + 1]; |
| 2440 | |
| 2441 | int i, idx; |
| 2442 | int table_idx; |
| 2443 | char_u *s; |
| 2444 | |
| 2445 | string[0] = '<'; |
| 2446 | idx = 1; |
| 2447 | |
| 2448 | /* Key that stands for a normal character. */ |
| 2449 | if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY) |
| 2450 | c = KEY2TERMCAP1(c); |
| 2451 | |
| 2452 | /* |
| 2453 | * Translate shifted special keys into unshifted keys and set modifier. |
| 2454 | * Same for CTRL and ALT modifiers. |
| 2455 | */ |
| 2456 | if (IS_SPECIAL(c)) |
| 2457 | { |
| 2458 | for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE) |
| 2459 | if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1] |
| 2460 | && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2]) |
| 2461 | { |
| 2462 | modifiers |= modifier_keys_table[i]; |
| 2463 | c = TERMCAP2KEY(modifier_keys_table[i + 3], |
| 2464 | modifier_keys_table[i + 4]); |
| 2465 | break; |
| 2466 | } |
| 2467 | } |
| 2468 | |
| 2469 | /* try to find the key in the special key table */ |
| 2470 | table_idx = find_special_key_in_table(c); |
| 2471 | |
| 2472 | /* |
| 2473 | * When not a known special key, and not a printable character, try to |
| 2474 | * extract modifiers. |
| 2475 | */ |
| 2476 | if (c > 0 |
| 2477 | #ifdef FEAT_MBYTE |
| 2478 | && (*mb_char2len)(c) == 1 |
| 2479 | #endif |
| 2480 | ) |
| 2481 | { |
| 2482 | if (table_idx < 0 |
| 2483 | && (!vim_isprintc(c) || (c & 0x7f) == ' ') |
| 2484 | && (c & 0x80)) |
| 2485 | { |
| 2486 | c &= 0x7f; |
| 2487 | modifiers |= MOD_MASK_ALT; |
| 2488 | /* try again, to find the un-alted key in the special key table */ |
| 2489 | table_idx = find_special_key_in_table(c); |
| 2490 | } |
| 2491 | if (table_idx < 0 && !vim_isprintc(c) && c < ' ') |
| 2492 | { |
| 2493 | #ifdef EBCDIC |
| 2494 | c = CtrlChar(c); |
| 2495 | #else |
| 2496 | c += '@'; |
| 2497 | #endif |
| 2498 | modifiers |= MOD_MASK_CTRL; |
| 2499 | } |
| 2500 | } |
| 2501 | |
| 2502 | /* translate the modifier into a string */ |
| 2503 | for (i = 0; mod_mask_table[i].name != 'A'; i++) |
| 2504 | if ((modifiers & mod_mask_table[i].mod_mask) |
| 2505 | == mod_mask_table[i].mod_flag) |
| 2506 | { |
| 2507 | string[idx++] = mod_mask_table[i].name; |
| 2508 | string[idx++] = (char_u)'-'; |
| 2509 | } |
| 2510 | |
| 2511 | if (table_idx < 0) /* unknown special key, may output t_xx */ |
| 2512 | { |
| 2513 | if (IS_SPECIAL(c)) |
| 2514 | { |
| 2515 | string[idx++] = 't'; |
| 2516 | string[idx++] = '_'; |
| 2517 | string[idx++] = KEY2TERMCAP0(c); |
| 2518 | string[idx++] = KEY2TERMCAP1(c); |
| 2519 | } |
| 2520 | /* Not a special key, only modifiers, output directly */ |
| 2521 | else |
| 2522 | { |
| 2523 | #ifdef FEAT_MBYTE |
| 2524 | if (has_mbyte && (*mb_char2len)(c) > 1) |
| 2525 | idx += (*mb_char2bytes)(c, string + idx); |
| 2526 | else |
| 2527 | #endif |
| 2528 | if (vim_isprintc(c)) |
| 2529 | string[idx++] = c; |
| 2530 | else |
| 2531 | { |
| 2532 | s = transchar(c); |
| 2533 | while (*s) |
| 2534 | string[idx++] = *s++; |
| 2535 | } |
| 2536 | } |
| 2537 | } |
| 2538 | else /* use name of special key */ |
| 2539 | { |
| 2540 | STRCPY(string + idx, key_names_table[table_idx].name); |
| 2541 | idx = (int)STRLEN(string); |
| 2542 | } |
| 2543 | string[idx++] = '>'; |
| 2544 | string[idx] = NUL; |
| 2545 | return string; |
| 2546 | } |
| 2547 | |
| 2548 | /* |
| 2549 | * Try translating a <> name at (*srcp)[] to dst[]. |
| 2550 | * Return the number of characters added to dst[], zero for no match. |
| 2551 | * If there is a match, srcp is advanced to after the <> name. |
| 2552 | * dst[] must be big enough to hold the result (up to six characters)! |
| 2553 | */ |
| 2554 | int |
| 2555 | trans_special(srcp, dst, keycode) |
| 2556 | char_u **srcp; |
| 2557 | char_u *dst; |
| 2558 | int keycode; /* prefer key code, e.g. K_DEL instead of DEL */ |
| 2559 | { |
| 2560 | int modifiers = 0; |
| 2561 | int key; |
| 2562 | int dlen = 0; |
| 2563 | |
Bram Moolenaar | 2a8ced0 | 2008-12-24 11:54:31 +0000 | [diff] [blame] | 2564 | key = find_special_key(srcp, &modifiers, keycode, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2565 | if (key == 0) |
| 2566 | return 0; |
| 2567 | |
| 2568 | /* Put the appropriate modifier in a string */ |
| 2569 | if (modifiers != 0) |
| 2570 | { |
| 2571 | dst[dlen++] = K_SPECIAL; |
| 2572 | dst[dlen++] = KS_MODIFIER; |
| 2573 | dst[dlen++] = modifiers; |
| 2574 | } |
| 2575 | |
| 2576 | if (IS_SPECIAL(key)) |
| 2577 | { |
| 2578 | dst[dlen++] = K_SPECIAL; |
| 2579 | dst[dlen++] = KEY2TERMCAP0(key); |
| 2580 | dst[dlen++] = KEY2TERMCAP1(key); |
| 2581 | } |
| 2582 | #ifdef FEAT_MBYTE |
| 2583 | else if (has_mbyte && !keycode) |
| 2584 | dlen += (*mb_char2bytes)(key, dst + dlen); |
| 2585 | #endif |
| 2586 | else if (keycode) |
| 2587 | dlen = (int)(add_char2buf(key, dst + dlen) - dst); |
| 2588 | else |
| 2589 | dst[dlen++] = key; |
| 2590 | |
| 2591 | return dlen; |
| 2592 | } |
| 2593 | |
| 2594 | /* |
| 2595 | * Try translating a <> name at (*srcp)[], return the key and modifiers. |
| 2596 | * srcp is advanced to after the <> name. |
| 2597 | * returns 0 if there is no match. |
| 2598 | */ |
| 2599 | int |
Bram Moolenaar | 2a8ced0 | 2008-12-24 11:54:31 +0000 | [diff] [blame] | 2600 | find_special_key(srcp, modp, keycode, keep_x_key) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2601 | char_u **srcp; |
| 2602 | int *modp; |
Bram Moolenaar | 2a8ced0 | 2008-12-24 11:54:31 +0000 | [diff] [blame] | 2603 | int keycode; /* prefer key code, e.g. K_DEL instead of DEL */ |
| 2604 | int keep_x_key; /* don't translate xHome to Home key */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2605 | { |
| 2606 | char_u *last_dash; |
| 2607 | char_u *end_of_name; |
| 2608 | char_u *src; |
| 2609 | char_u *bp; |
| 2610 | int modifiers; |
| 2611 | int bit; |
| 2612 | int key; |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 2613 | unsigned long n; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2614 | |
| 2615 | src = *srcp; |
| 2616 | if (src[0] != '<') |
| 2617 | return 0; |
| 2618 | |
| 2619 | /* Find end of modifier list */ |
| 2620 | last_dash = src; |
| 2621 | for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++) |
| 2622 | { |
| 2623 | if (*bp == '-') |
| 2624 | { |
| 2625 | last_dash = bp; |
| 2626 | if (bp[1] != NUL && bp[2] == '>') |
| 2627 | ++bp; /* anything accepted, like <C-?> */ |
| 2628 | } |
| 2629 | if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3]) |
| 2630 | bp += 3; /* skip t_xx, xx may be '-' or '>' */ |
| 2631 | } |
| 2632 | |
| 2633 | if (*bp == '>') /* found matching '>' */ |
| 2634 | { |
| 2635 | end_of_name = bp + 1; |
| 2636 | |
| 2637 | if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6])) |
| 2638 | { |
| 2639 | /* <Char-123> or <Char-033> or <Char-0x33> */ |
| 2640 | vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n); |
| 2641 | *modp = 0; |
| 2642 | *srcp = end_of_name; |
| 2643 | return (int)n; |
| 2644 | } |
| 2645 | |
| 2646 | /* Which modifiers are given? */ |
| 2647 | modifiers = 0x0; |
| 2648 | for (bp = src + 1; bp < last_dash; bp++) |
| 2649 | { |
| 2650 | if (*bp != '-') |
| 2651 | { |
| 2652 | bit = name_to_mod_mask(*bp); |
| 2653 | if (bit == 0x0) |
| 2654 | break; /* Illegal modifier name */ |
| 2655 | modifiers |= bit; |
| 2656 | } |
| 2657 | } |
| 2658 | |
| 2659 | /* |
| 2660 | * Legal modifier name. |
| 2661 | */ |
| 2662 | if (bp >= last_dash) |
| 2663 | { |
| 2664 | /* |
| 2665 | * Modifier with single letter, or special key name. |
| 2666 | */ |
| 2667 | if (modifiers != 0 && last_dash[2] == '>') |
| 2668 | key = last_dash[1]; |
| 2669 | else |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 2670 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2671 | key = get_special_key_code(last_dash + 1); |
Bram Moolenaar | 2a8ced0 | 2008-12-24 11:54:31 +0000 | [diff] [blame] | 2672 | if (!keep_x_key) |
| 2673 | key = handle_x_keys(key); |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 2674 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2675 | |
| 2676 | /* |
| 2677 | * get_special_key_code() may return NUL for invalid |
| 2678 | * special key name. |
| 2679 | */ |
| 2680 | if (key != NUL) |
| 2681 | { |
| 2682 | /* |
| 2683 | * Only use a modifier when there is no special key code that |
| 2684 | * includes the modifier. |
| 2685 | */ |
| 2686 | key = simplify_key(key, &modifiers); |
| 2687 | |
| 2688 | if (!keycode) |
| 2689 | { |
| 2690 | /* don't want keycode, use single byte code */ |
| 2691 | if (key == K_BS) |
| 2692 | key = BS; |
| 2693 | else if (key == K_DEL || key == K_KDEL) |
| 2694 | key = DEL; |
| 2695 | } |
| 2696 | |
| 2697 | /* |
| 2698 | * Normal Key with modifier: Try to make a single byte code. |
| 2699 | */ |
| 2700 | if (!IS_SPECIAL(key)) |
| 2701 | key = extract_modifiers(key, &modifiers); |
| 2702 | |
| 2703 | *modp = modifiers; |
| 2704 | *srcp = end_of_name; |
| 2705 | return key; |
| 2706 | } |
| 2707 | } |
| 2708 | } |
| 2709 | return 0; |
| 2710 | } |
| 2711 | |
| 2712 | /* |
| 2713 | * Try to include modifiers in the key. |
| 2714 | * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc. |
| 2715 | */ |
| 2716 | int |
| 2717 | extract_modifiers(key, modp) |
| 2718 | int key; |
| 2719 | int *modp; |
| 2720 | { |
| 2721 | int modifiers = *modp; |
| 2722 | |
| 2723 | #ifdef MACOS |
| 2724 | /* Command-key really special, No fancynest */ |
| 2725 | if (!(modifiers & MOD_MASK_CMD)) |
| 2726 | #endif |
| 2727 | if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key)) |
| 2728 | { |
| 2729 | key = TOUPPER_ASC(key); |
| 2730 | modifiers &= ~MOD_MASK_SHIFT; |
| 2731 | } |
| 2732 | if ((modifiers & MOD_MASK_CTRL) |
| 2733 | #ifdef EBCDIC |
| 2734 | /* * TODO: EBCDIC Better use: |
| 2735 | * && (Ctrl_chr(key) || key == '?') |
| 2736 | * ??? */ |
| 2737 | && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key) |
| 2738 | != NULL |
| 2739 | #else |
| 2740 | && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key)) |
| 2741 | #endif |
| 2742 | ) |
| 2743 | { |
| 2744 | key = Ctrl_chr(key); |
| 2745 | modifiers &= ~MOD_MASK_CTRL; |
| 2746 | /* <C-@> is <Nul> */ |
| 2747 | if (key == 0) |
| 2748 | key = K_ZERO; |
| 2749 | } |
| 2750 | #ifdef MACOS |
| 2751 | /* Command-key really special, No fancynest */ |
| 2752 | if (!(modifiers & MOD_MASK_CMD)) |
| 2753 | #endif |
| 2754 | if ((modifiers & MOD_MASK_ALT) && key < 0x80 |
| 2755 | #ifdef FEAT_MBYTE |
| 2756 | && !enc_dbcs /* avoid creating a lead byte */ |
| 2757 | #endif |
| 2758 | ) |
| 2759 | { |
| 2760 | key |= 0x80; |
| 2761 | modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */ |
| 2762 | } |
| 2763 | |
| 2764 | *modp = modifiers; |
| 2765 | return key; |
| 2766 | } |
| 2767 | |
| 2768 | /* |
| 2769 | * Try to find key "c" in the special key table. |
| 2770 | * Return the index when found, -1 when not found. |
| 2771 | */ |
| 2772 | int |
| 2773 | find_special_key_in_table(c) |
| 2774 | int c; |
| 2775 | { |
| 2776 | int i; |
| 2777 | |
| 2778 | for (i = 0; key_names_table[i].name != NULL; i++) |
| 2779 | if (c == key_names_table[i].key) |
| 2780 | break; |
| 2781 | if (key_names_table[i].name == NULL) |
| 2782 | i = -1; |
| 2783 | return i; |
| 2784 | } |
| 2785 | |
| 2786 | /* |
| 2787 | * Find the special key with the given name (the given string does not have to |
| 2788 | * end with NUL, the name is assumed to end before the first non-idchar). |
| 2789 | * If the name starts with "t_" the next two characters are interpreted as a |
| 2790 | * termcap name. |
| 2791 | * Return the key code, or 0 if not found. |
| 2792 | */ |
| 2793 | int |
| 2794 | get_special_key_code(name) |
| 2795 | char_u *name; |
| 2796 | { |
| 2797 | char_u *table_name; |
| 2798 | char_u string[3]; |
| 2799 | int i, j; |
| 2800 | |
| 2801 | /* |
| 2802 | * If it's <t_xx> we get the code for xx from the termcap |
| 2803 | */ |
| 2804 | if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL) |
| 2805 | { |
| 2806 | string[0] = name[2]; |
| 2807 | string[1] = name[3]; |
| 2808 | string[2] = NUL; |
| 2809 | if (add_termcap_entry(string, FALSE) == OK) |
| 2810 | return TERMCAP2KEY(name[2], name[3]); |
| 2811 | } |
| 2812 | else |
| 2813 | for (i = 0; key_names_table[i].name != NULL; i++) |
| 2814 | { |
| 2815 | table_name = key_names_table[i].name; |
| 2816 | for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++) |
| 2817 | if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j])) |
| 2818 | break; |
| 2819 | if (!vim_isIDc(name[j]) && table_name[j] == NUL) |
| 2820 | return key_names_table[i].key; |
| 2821 | } |
| 2822 | return 0; |
| 2823 | } |
| 2824 | |
Bram Moolenaar | 05bb953 | 2008-07-04 09:44:11 +0000 | [diff] [blame] | 2825 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2826 | char_u * |
| 2827 | get_key_name(i) |
| 2828 | int i; |
| 2829 | { |
| 2830 | if (i >= KEY_NAMES_TABLE_LEN) |
| 2831 | return NULL; |
| 2832 | return key_names_table[i].name; |
| 2833 | } |
| 2834 | #endif |
| 2835 | |
Bram Moolenaar | 05bb953 | 2008-07-04 09:44:11 +0000 | [diff] [blame] | 2836 | #if defined(FEAT_MOUSE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2837 | /* |
| 2838 | * Look up the given mouse code to return the relevant information in the other |
| 2839 | * arguments. Return which button is down or was released. |
| 2840 | */ |
| 2841 | int |
| 2842 | get_mouse_button(code, is_click, is_drag) |
| 2843 | int code; |
| 2844 | int *is_click; |
| 2845 | int *is_drag; |
| 2846 | { |
| 2847 | int i; |
| 2848 | |
| 2849 | for (i = 0; mouse_table[i].pseudo_code; i++) |
| 2850 | if (code == mouse_table[i].pseudo_code) |
| 2851 | { |
| 2852 | *is_click = mouse_table[i].is_click; |
| 2853 | *is_drag = mouse_table[i].is_drag; |
| 2854 | return mouse_table[i].button; |
| 2855 | } |
| 2856 | return 0; /* Shouldn't get here */ |
| 2857 | } |
| 2858 | |
| 2859 | /* |
| 2860 | * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on |
| 2861 | * the given information about which mouse button is down, and whether the |
| 2862 | * mouse was clicked, dragged or released. |
| 2863 | */ |
| 2864 | int |
| 2865 | get_pseudo_mouse_code(button, is_click, is_drag) |
| 2866 | int button; /* eg MOUSE_LEFT */ |
| 2867 | int is_click; |
| 2868 | int is_drag; |
| 2869 | { |
| 2870 | int i; |
| 2871 | |
| 2872 | for (i = 0; mouse_table[i].pseudo_code; i++) |
| 2873 | if (button == mouse_table[i].button |
| 2874 | && is_click == mouse_table[i].is_click |
| 2875 | && is_drag == mouse_table[i].is_drag) |
| 2876 | { |
| 2877 | #ifdef FEAT_GUI |
Bram Moolenaar | c91506a | 2005-04-24 22:04:21 +0000 | [diff] [blame] | 2878 | /* Trick: a non mappable left click and release has mouse_col -1 |
| 2879 | * or added MOUSE_COLOFF. Used for 'mousefocus' in |
| 2880 | * gui_mouse_moved() */ |
| 2881 | if (mouse_col < 0 || mouse_col > MOUSE_COLOFF) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2882 | { |
Bram Moolenaar | c91506a | 2005-04-24 22:04:21 +0000 | [diff] [blame] | 2883 | if (mouse_col < 0) |
| 2884 | mouse_col = 0; |
| 2885 | else |
| 2886 | mouse_col -= MOUSE_COLOFF; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2887 | if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE) |
| 2888 | return (int)KE_LEFTMOUSE_NM; |
| 2889 | if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE) |
| 2890 | return (int)KE_LEFTRELEASE_NM; |
| 2891 | } |
| 2892 | #endif |
| 2893 | return mouse_table[i].pseudo_code; |
| 2894 | } |
Bram Moolenaar | 7aa9f6a | 2007-05-10 18:00:30 +0000 | [diff] [blame] | 2895 | return (int)KE_IGNORE; /* not recognized, ignore it */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2896 | } |
| 2897 | #endif /* FEAT_MOUSE */ |
| 2898 | |
| 2899 | /* |
| 2900 | * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC. |
| 2901 | */ |
| 2902 | int |
| 2903 | get_fileformat(buf) |
| 2904 | buf_T *buf; |
| 2905 | { |
| 2906 | int c = *buf->b_p_ff; |
| 2907 | |
| 2908 | if (buf->b_p_bin || c == 'u') |
| 2909 | return EOL_UNIX; |
| 2910 | if (c == 'm') |
| 2911 | return EOL_MAC; |
| 2912 | return EOL_DOS; |
| 2913 | } |
| 2914 | |
| 2915 | /* |
| 2916 | * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val" |
| 2917 | * argument. |
| 2918 | */ |
| 2919 | int |
| 2920 | get_fileformat_force(buf, eap) |
| 2921 | buf_T *buf; |
| 2922 | exarg_T *eap; /* can be NULL! */ |
| 2923 | { |
| 2924 | int c; |
| 2925 | |
| 2926 | if (eap != NULL && eap->force_ff != 0) |
| 2927 | c = eap->cmd[eap->force_ff]; |
| 2928 | else |
| 2929 | { |
| 2930 | if ((eap != NULL && eap->force_bin != 0) |
| 2931 | ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin) |
| 2932 | return EOL_UNIX; |
| 2933 | c = *buf->b_p_ff; |
| 2934 | } |
| 2935 | if (c == 'u') |
| 2936 | return EOL_UNIX; |
| 2937 | if (c == 'm') |
| 2938 | return EOL_MAC; |
| 2939 | return EOL_DOS; |
| 2940 | } |
| 2941 | |
| 2942 | /* |
| 2943 | * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC. |
| 2944 | * Sets both 'textmode' and 'fileformat'. |
| 2945 | * Note: Does _not_ set global value of 'textmode'! |
| 2946 | */ |
| 2947 | void |
| 2948 | set_fileformat(t, opt_flags) |
| 2949 | int t; |
| 2950 | int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */ |
| 2951 | { |
| 2952 | char *p = NULL; |
| 2953 | |
| 2954 | switch (t) |
| 2955 | { |
| 2956 | case EOL_DOS: |
| 2957 | p = FF_DOS; |
| 2958 | curbuf->b_p_tx = TRUE; |
| 2959 | break; |
| 2960 | case EOL_UNIX: |
| 2961 | p = FF_UNIX; |
| 2962 | curbuf->b_p_tx = FALSE; |
| 2963 | break; |
| 2964 | case EOL_MAC: |
| 2965 | p = FF_MAC; |
| 2966 | curbuf->b_p_tx = FALSE; |
| 2967 | break; |
| 2968 | } |
| 2969 | if (p != NULL) |
| 2970 | set_string_option_direct((char_u *)"ff", -1, (char_u *)p, |
Bram Moolenaar | 5e3cb7e | 2006-02-27 23:58:35 +0000 | [diff] [blame] | 2971 | OPT_FREE | opt_flags, 0); |
| 2972 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2973 | #ifdef FEAT_WINDOWS |
Bram Moolenaar | f740b29 | 2006-02-16 22:11:02 +0000 | [diff] [blame] | 2974 | /* This may cause the buffer to become (un)modified. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2975 | check_status(curbuf); |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 2976 | redraw_tabline = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2977 | #endif |
| 2978 | #ifdef FEAT_TITLE |
| 2979 | need_maketitle = TRUE; /* set window title later */ |
| 2980 | #endif |
| 2981 | } |
| 2982 | |
| 2983 | /* |
| 2984 | * Return the default fileformat from 'fileformats'. |
| 2985 | */ |
| 2986 | int |
| 2987 | default_fileformat() |
| 2988 | { |
| 2989 | switch (*p_ffs) |
| 2990 | { |
| 2991 | case 'm': return EOL_MAC; |
| 2992 | case 'd': return EOL_DOS; |
| 2993 | } |
| 2994 | return EOL_UNIX; |
| 2995 | } |
| 2996 | |
| 2997 | /* |
| 2998 | * Call shell. Calls mch_call_shell, with 'shellxquote' added. |
| 2999 | */ |
| 3000 | int |
| 3001 | call_shell(cmd, opt) |
| 3002 | char_u *cmd; |
| 3003 | int opt; |
| 3004 | { |
| 3005 | char_u *ncmd; |
| 3006 | int retval; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 3007 | #ifdef FEAT_PROFILE |
| 3008 | proftime_T wait_time; |
| 3009 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3010 | |
| 3011 | if (p_verbose > 3) |
| 3012 | { |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 3013 | verbose_enter(); |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 3014 | smsg((char_u *)_("Calling shell to execute: \"%s\""), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3015 | cmd == NULL ? p_sh : cmd); |
| 3016 | out_char('\n'); |
| 3017 | cursor_on(); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 3018 | verbose_leave(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3019 | } |
| 3020 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 3021 | #ifdef FEAT_PROFILE |
Bram Moolenaar | 0126585 | 2006-03-20 21:50:15 +0000 | [diff] [blame] | 3022 | if (do_profiling == PROF_YES) |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 3023 | prof_child_enter(&wait_time); |
| 3024 | #endif |
| 3025 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3026 | if (*p_sh == NUL) |
| 3027 | { |
| 3028 | EMSG(_(e_shellempty)); |
| 3029 | retval = -1; |
| 3030 | } |
| 3031 | else |
| 3032 | { |
| 3033 | #ifdef FEAT_GUI_MSWIN |
| 3034 | /* Don't hide the pointer while executing a shell command. */ |
| 3035 | gui_mch_mousehide(FALSE); |
| 3036 | #endif |
| 3037 | #ifdef FEAT_GUI |
| 3038 | ++hold_gui_events; |
| 3039 | #endif |
| 3040 | /* The external command may update a tags file, clear cached tags. */ |
| 3041 | tag_freematch(); |
| 3042 | |
| 3043 | if (cmd == NULL || *p_sxq == NUL) |
| 3044 | retval = mch_call_shell(cmd, opt); |
| 3045 | else |
| 3046 | { |
| 3047 | ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1)); |
| 3048 | if (ncmd != NULL) |
| 3049 | { |
| 3050 | STRCPY(ncmd, p_sxq); |
| 3051 | STRCAT(ncmd, cmd); |
| 3052 | STRCAT(ncmd, p_sxq); |
| 3053 | retval = mch_call_shell(ncmd, opt); |
| 3054 | vim_free(ncmd); |
| 3055 | } |
| 3056 | else |
| 3057 | retval = -1; |
| 3058 | } |
| 3059 | #ifdef FEAT_GUI |
| 3060 | --hold_gui_events; |
| 3061 | #endif |
| 3062 | /* |
| 3063 | * Check the window size, in case it changed while executing the |
| 3064 | * external command. |
| 3065 | */ |
| 3066 | shell_resized_check(); |
| 3067 | } |
| 3068 | |
| 3069 | #ifdef FEAT_EVAL |
| 3070 | set_vim_var_nr(VV_SHELL_ERROR, (long)retval); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 3071 | # ifdef FEAT_PROFILE |
Bram Moolenaar | 0126585 | 2006-03-20 21:50:15 +0000 | [diff] [blame] | 3072 | if (do_profiling == PROF_YES) |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 3073 | prof_child_exit(&wait_time); |
| 3074 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3075 | #endif |
| 3076 | |
| 3077 | return retval; |
| 3078 | } |
| 3079 | |
| 3080 | /* |
Bram Moolenaar | 0126585 | 2006-03-20 21:50:15 +0000 | [diff] [blame] | 3081 | * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to |
| 3082 | * NORMAL State with a condition. This function returns the real State. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3083 | */ |
| 3084 | int |
| 3085 | get_real_state() |
| 3086 | { |
| 3087 | if (State & NORMAL) |
| 3088 | { |
| 3089 | #ifdef FEAT_VISUAL |
| 3090 | if (VIsual_active) |
Bram Moolenaar | 0126585 | 2006-03-20 21:50:15 +0000 | [diff] [blame] | 3091 | { |
| 3092 | if (VIsual_select) |
| 3093 | return SELECTMODE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3094 | return VISUAL; |
Bram Moolenaar | 0126585 | 2006-03-20 21:50:15 +0000 | [diff] [blame] | 3095 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3096 | else |
| 3097 | #endif |
| 3098 | if (finish_op) |
Bram Moolenaar | 0126585 | 2006-03-20 21:50:15 +0000 | [diff] [blame] | 3099 | return OP_PENDING; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3100 | } |
| 3101 | return State; |
| 3102 | } |
| 3103 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 3104 | #if defined(FEAT_MBYTE) || defined(PROTO) |
| 3105 | /* |
| 3106 | * Return TRUE if "p" points to just after a path separator. |
| 3107 | * Take care of multi-byte characters. |
| 3108 | * "b" must point to the start of the file name |
| 3109 | */ |
| 3110 | int |
| 3111 | after_pathsep(b, p) |
| 3112 | char_u *b; |
| 3113 | char_u *p; |
| 3114 | { |
| 3115 | return vim_ispathsep(p[-1]) |
| 3116 | && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0); |
| 3117 | } |
| 3118 | #endif |
| 3119 | |
| 3120 | /* |
| 3121 | * Return TRUE if file names "f1" and "f2" are in the same directory. |
| 3122 | * "f1" may be a short name, "f2" must be a full path. |
| 3123 | */ |
| 3124 | int |
| 3125 | same_directory(f1, f2) |
| 3126 | char_u *f1; |
| 3127 | char_u *f2; |
| 3128 | { |
| 3129 | char_u ffname[MAXPATHL]; |
| 3130 | char_u *t1; |
| 3131 | char_u *t2; |
| 3132 | |
| 3133 | /* safety check */ |
| 3134 | if (f1 == NULL || f2 == NULL) |
| 3135 | return FALSE; |
| 3136 | |
| 3137 | (void)vim_FullName(f1, ffname, MAXPATHL, FALSE); |
| 3138 | t1 = gettail_sep(ffname); |
| 3139 | t2 = gettail_sep(f2); |
| 3140 | return (t1 - ffname == t2 - f2 |
| 3141 | && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0); |
| 3142 | } |
| 3143 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3144 | #if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \ |
Bram Moolenaar | 9372a11 | 2005-12-06 19:59:18 +0000 | [diff] [blame] | 3145 | || ((defined(FEAT_GUI_GTK)) \ |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 3146 | && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3147 | || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \ |
| 3148 | || defined(PROTO) |
| 3149 | /* |
| 3150 | * Change to a file's directory. |
| 3151 | * Caller must call shorten_fnames()! |
| 3152 | * Return OK or FAIL. |
| 3153 | */ |
| 3154 | int |
| 3155 | vim_chdirfile(fname) |
| 3156 | char_u *fname; |
| 3157 | { |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 3158 | char_u dir[MAXPATHL]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3159 | |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 3160 | vim_strncpy(dir, fname, MAXPATHL - 1); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 3161 | *gettail_sep(dir) = NUL; |
| 3162 | return mch_chdir((char *)dir) == 0 ? OK : FAIL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3163 | } |
| 3164 | #endif |
| 3165 | |
| 3166 | #if defined(STAT_IGNORES_SLASH) || defined(PROTO) |
| 3167 | /* |
| 3168 | * Check if "name" ends in a slash and is not a directory. |
| 3169 | * Used for systems where stat() ignores a trailing slash on a file name. |
| 3170 | * The Vim code assumes a trailing slash is only ignored for a directory. |
| 3171 | */ |
| 3172 | int |
| 3173 | illegal_slash(name) |
| 3174 | char *name; |
| 3175 | { |
| 3176 | if (name[0] == NUL) |
| 3177 | return FALSE; /* no file name is not illegal */ |
| 3178 | if (name[strlen(name) - 1] != '/') |
| 3179 | return FALSE; /* no trailing slash */ |
| 3180 | if (mch_isdir((char_u *)name)) |
| 3181 | return FALSE; /* trailing slash for a directory */ |
| 3182 | return TRUE; |
| 3183 | } |
| 3184 | #endif |
| 3185 | |
| 3186 | #if defined(CURSOR_SHAPE) || defined(PROTO) |
| 3187 | |
| 3188 | /* |
| 3189 | * Handling of cursor and mouse pointer shapes in various modes. |
| 3190 | */ |
| 3191 | |
| 3192 | cursorentry_T shape_table[SHAPE_IDX_COUNT] = |
| 3193 | { |
| 3194 | /* The values will be filled in from the 'guicursor' and 'mouseshape' |
| 3195 | * defaults when Vim starts. |
| 3196 | * Adjust the SHAPE_IDX_ defines when making changes! */ |
| 3197 | {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE}, |
| 3198 | {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE}, |
| 3199 | {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE}, |
| 3200 | {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE}, |
| 3201 | {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE}, |
| 3202 | {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE}, |
| 3203 | {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE}, |
| 3204 | {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE}, |
| 3205 | {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE}, |
| 3206 | {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE}, |
| 3207 | {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE}, |
| 3208 | {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE}, |
| 3209 | {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE}, |
| 3210 | {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE}, |
| 3211 | {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE}, |
| 3212 | {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE}, |
| 3213 | {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR}, |
| 3214 | }; |
| 3215 | |
| 3216 | #ifdef FEAT_MOUSESHAPE |
| 3217 | /* |
| 3218 | * Table with names for mouse shapes. Keep in sync with all the tables for |
| 3219 | * mch_set_mouse_shape()!. |
| 3220 | */ |
| 3221 | static char * mshape_names[] = |
| 3222 | { |
| 3223 | "arrow", /* default, must be the first one */ |
| 3224 | "blank", /* hidden */ |
| 3225 | "beam", |
| 3226 | "updown", |
| 3227 | "udsizing", |
| 3228 | "leftright", |
| 3229 | "lrsizing", |
| 3230 | "busy", |
| 3231 | "no", |
| 3232 | "crosshair", |
| 3233 | "hand1", |
| 3234 | "hand2", |
| 3235 | "pencil", |
| 3236 | "question", |
| 3237 | "rightup-arrow", |
| 3238 | "up-arrow", |
| 3239 | NULL |
| 3240 | }; |
| 3241 | #endif |
| 3242 | |
| 3243 | /* |
| 3244 | * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape' |
| 3245 | * ("what" is SHAPE_MOUSE). |
| 3246 | * Returns error message for an illegal option, NULL otherwise. |
| 3247 | */ |
| 3248 | char_u * |
| 3249 | parse_shape_opt(what) |
| 3250 | int what; |
| 3251 | { |
| 3252 | char_u *modep; |
| 3253 | char_u *colonp; |
| 3254 | char_u *commap; |
| 3255 | char_u *slashp; |
| 3256 | char_u *p, *endp; |
| 3257 | int idx = 0; /* init for GCC */ |
| 3258 | int all_idx; |
| 3259 | int len; |
| 3260 | int i; |
| 3261 | long n; |
| 3262 | int found_ve = FALSE; /* found "ve" flag */ |
| 3263 | int round; |
| 3264 | |
| 3265 | /* |
| 3266 | * First round: check for errors; second round: do it for real. |
| 3267 | */ |
| 3268 | for (round = 1; round <= 2; ++round) |
| 3269 | { |
| 3270 | /* |
| 3271 | * Repeat for all comma separated parts. |
| 3272 | */ |
| 3273 | #ifdef FEAT_MOUSESHAPE |
| 3274 | if (what == SHAPE_MOUSE) |
| 3275 | modep = p_mouseshape; |
| 3276 | else |
| 3277 | #endif |
| 3278 | modep = p_guicursor; |
| 3279 | while (*modep != NUL) |
| 3280 | { |
| 3281 | colonp = vim_strchr(modep, ':'); |
| 3282 | if (colonp == NULL) |
| 3283 | return (char_u *)N_("E545: Missing colon"); |
| 3284 | if (colonp == modep) |
| 3285 | return (char_u *)N_("E546: Illegal mode"); |
| 3286 | commap = vim_strchr(modep, ','); |
| 3287 | |
| 3288 | /* |
| 3289 | * Repeat for all mode's before the colon. |
| 3290 | * For the 'a' mode, we loop to handle all the modes. |
| 3291 | */ |
| 3292 | all_idx = -1; |
| 3293 | while (modep < colonp || all_idx >= 0) |
| 3294 | { |
| 3295 | if (all_idx < 0) |
| 3296 | { |
| 3297 | /* Find the mode. */ |
| 3298 | if (modep[1] == '-' || modep[1] == ':') |
| 3299 | len = 1; |
| 3300 | else |
| 3301 | len = 2; |
| 3302 | if (len == 1 && TOLOWER_ASC(modep[0]) == 'a') |
| 3303 | all_idx = SHAPE_IDX_COUNT - 1; |
| 3304 | else |
| 3305 | { |
| 3306 | for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx) |
| 3307 | if (STRNICMP(modep, shape_table[idx].name, len) |
| 3308 | == 0) |
| 3309 | break; |
| 3310 | if (idx == SHAPE_IDX_COUNT |
| 3311 | || (shape_table[idx].used_for & what) == 0) |
| 3312 | return (char_u *)N_("E546: Illegal mode"); |
| 3313 | if (len == 2 && modep[0] == 'v' && modep[1] == 'e') |
| 3314 | found_ve = TRUE; |
| 3315 | } |
| 3316 | modep += len + 1; |
| 3317 | } |
| 3318 | |
| 3319 | if (all_idx >= 0) |
| 3320 | idx = all_idx--; |
| 3321 | else if (round == 2) |
| 3322 | { |
| 3323 | #ifdef FEAT_MOUSESHAPE |
| 3324 | if (what == SHAPE_MOUSE) |
| 3325 | { |
| 3326 | /* Set the default, for the missing parts */ |
| 3327 | shape_table[idx].mshape = 0; |
| 3328 | } |
| 3329 | else |
| 3330 | #endif |
| 3331 | { |
| 3332 | /* Set the defaults, for the missing parts */ |
| 3333 | shape_table[idx].shape = SHAPE_BLOCK; |
| 3334 | shape_table[idx].blinkwait = 700L; |
| 3335 | shape_table[idx].blinkon = 400L; |
| 3336 | shape_table[idx].blinkoff = 250L; |
| 3337 | } |
| 3338 | } |
| 3339 | |
| 3340 | /* Parse the part after the colon */ |
| 3341 | for (p = colonp + 1; *p && *p != ','; ) |
| 3342 | { |
| 3343 | #ifdef FEAT_MOUSESHAPE |
| 3344 | if (what == SHAPE_MOUSE) |
| 3345 | { |
| 3346 | for (i = 0; ; ++i) |
| 3347 | { |
| 3348 | if (mshape_names[i] == NULL) |
| 3349 | { |
| 3350 | if (!VIM_ISDIGIT(*p)) |
| 3351 | return (char_u *)N_("E547: Illegal mouseshape"); |
| 3352 | if (round == 2) |
| 3353 | shape_table[idx].mshape = |
| 3354 | getdigits(&p) + MSHAPE_NUMBERED; |
| 3355 | else |
| 3356 | (void)getdigits(&p); |
| 3357 | break; |
| 3358 | } |
| 3359 | len = (int)STRLEN(mshape_names[i]); |
| 3360 | if (STRNICMP(p, mshape_names[i], len) == 0) |
| 3361 | { |
| 3362 | if (round == 2) |
| 3363 | shape_table[idx].mshape = i; |
| 3364 | p += len; |
| 3365 | break; |
| 3366 | } |
| 3367 | } |
| 3368 | } |
| 3369 | else /* if (what == SHAPE_MOUSE) */ |
| 3370 | #endif |
| 3371 | { |
| 3372 | /* |
| 3373 | * First handle the ones with a number argument. |
| 3374 | */ |
| 3375 | i = *p; |
| 3376 | len = 0; |
| 3377 | if (STRNICMP(p, "ver", 3) == 0) |
| 3378 | len = 3; |
| 3379 | else if (STRNICMP(p, "hor", 3) == 0) |
| 3380 | len = 3; |
| 3381 | else if (STRNICMP(p, "blinkwait", 9) == 0) |
| 3382 | len = 9; |
| 3383 | else if (STRNICMP(p, "blinkon", 7) == 0) |
| 3384 | len = 7; |
| 3385 | else if (STRNICMP(p, "blinkoff", 8) == 0) |
| 3386 | len = 8; |
| 3387 | if (len != 0) |
| 3388 | { |
| 3389 | p += len; |
| 3390 | if (!VIM_ISDIGIT(*p)) |
| 3391 | return (char_u *)N_("E548: digit expected"); |
| 3392 | n = getdigits(&p); |
| 3393 | if (len == 3) /* "ver" or "hor" */ |
| 3394 | { |
| 3395 | if (n == 0) |
| 3396 | return (char_u *)N_("E549: Illegal percentage"); |
| 3397 | if (round == 2) |
| 3398 | { |
| 3399 | if (TOLOWER_ASC(i) == 'v') |
| 3400 | shape_table[idx].shape = SHAPE_VER; |
| 3401 | else |
| 3402 | shape_table[idx].shape = SHAPE_HOR; |
| 3403 | shape_table[idx].percentage = n; |
| 3404 | } |
| 3405 | } |
| 3406 | else if (round == 2) |
| 3407 | { |
| 3408 | if (len == 9) |
| 3409 | shape_table[idx].blinkwait = n; |
| 3410 | else if (len == 7) |
| 3411 | shape_table[idx].blinkon = n; |
| 3412 | else |
| 3413 | shape_table[idx].blinkoff = n; |
| 3414 | } |
| 3415 | } |
| 3416 | else if (STRNICMP(p, "block", 5) == 0) |
| 3417 | { |
| 3418 | if (round == 2) |
| 3419 | shape_table[idx].shape = SHAPE_BLOCK; |
| 3420 | p += 5; |
| 3421 | } |
| 3422 | else /* must be a highlight group name then */ |
| 3423 | { |
| 3424 | endp = vim_strchr(p, '-'); |
| 3425 | if (commap == NULL) /* last part */ |
| 3426 | { |
| 3427 | if (endp == NULL) |
| 3428 | endp = p + STRLEN(p); /* find end of part */ |
| 3429 | } |
| 3430 | else if (endp > commap || endp == NULL) |
| 3431 | endp = commap; |
| 3432 | slashp = vim_strchr(p, '/'); |
| 3433 | if (slashp != NULL && slashp < endp) |
| 3434 | { |
| 3435 | /* "group/langmap_group" */ |
| 3436 | i = syn_check_group(p, (int)(slashp - p)); |
| 3437 | p = slashp + 1; |
| 3438 | } |
| 3439 | if (round == 2) |
| 3440 | { |
| 3441 | shape_table[idx].id = syn_check_group(p, |
| 3442 | (int)(endp - p)); |
| 3443 | shape_table[idx].id_lm = shape_table[idx].id; |
| 3444 | if (slashp != NULL && slashp < endp) |
| 3445 | shape_table[idx].id = i; |
| 3446 | } |
| 3447 | p = endp; |
| 3448 | } |
| 3449 | } /* if (what != SHAPE_MOUSE) */ |
| 3450 | |
| 3451 | if (*p == '-') |
| 3452 | ++p; |
| 3453 | } |
| 3454 | } |
| 3455 | modep = p; |
| 3456 | if (*modep == ',') |
| 3457 | ++modep; |
| 3458 | } |
| 3459 | } |
| 3460 | |
| 3461 | /* If the 's' flag is not given, use the 'v' cursor for 's' */ |
| 3462 | if (!found_ve) |
| 3463 | { |
| 3464 | #ifdef FEAT_MOUSESHAPE |
| 3465 | if (what == SHAPE_MOUSE) |
| 3466 | { |
| 3467 | shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape; |
| 3468 | } |
| 3469 | else |
| 3470 | #endif |
| 3471 | { |
| 3472 | shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape; |
| 3473 | shape_table[SHAPE_IDX_VE].percentage = |
| 3474 | shape_table[SHAPE_IDX_V].percentage; |
| 3475 | shape_table[SHAPE_IDX_VE].blinkwait = |
| 3476 | shape_table[SHAPE_IDX_V].blinkwait; |
| 3477 | shape_table[SHAPE_IDX_VE].blinkon = |
| 3478 | shape_table[SHAPE_IDX_V].blinkon; |
| 3479 | shape_table[SHAPE_IDX_VE].blinkoff = |
| 3480 | shape_table[SHAPE_IDX_V].blinkoff; |
| 3481 | shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id; |
| 3482 | shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm; |
| 3483 | } |
| 3484 | } |
| 3485 | |
| 3486 | return NULL; |
| 3487 | } |
| 3488 | |
Bram Moolenaar | ac6e65f | 2005-08-29 22:25:38 +0000 | [diff] [blame] | 3489 | # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \ |
| 3490 | || defined(FEAT_MOUSESHAPE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3491 | /* |
| 3492 | * Return the index into shape_table[] for the current mode. |
| 3493 | * When "mouse" is TRUE, consider indexes valid for the mouse pointer. |
| 3494 | */ |
| 3495 | int |
| 3496 | get_shape_idx(mouse) |
| 3497 | int mouse; |
| 3498 | { |
| 3499 | #ifdef FEAT_MOUSESHAPE |
| 3500 | if (mouse && (State == HITRETURN || State == ASKMORE)) |
| 3501 | { |
| 3502 | # ifdef FEAT_GUI |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 3503 | int x, y; |
| 3504 | gui_mch_getmouse(&x, &y); |
| 3505 | if (Y_2_ROW(y) == Rows - 1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3506 | return SHAPE_IDX_MOREL; |
| 3507 | # endif |
| 3508 | return SHAPE_IDX_MORE; |
| 3509 | } |
| 3510 | if (mouse && drag_status_line) |
| 3511 | return SHAPE_IDX_SDRAG; |
| 3512 | # ifdef FEAT_VERTSPLIT |
| 3513 | if (mouse && drag_sep_line) |
| 3514 | return SHAPE_IDX_VDRAG; |
| 3515 | # endif |
| 3516 | #endif |
| 3517 | if (!mouse && State == SHOWMATCH) |
| 3518 | return SHAPE_IDX_SM; |
| 3519 | #ifdef FEAT_VREPLACE |
| 3520 | if (State & VREPLACE_FLAG) |
| 3521 | return SHAPE_IDX_R; |
| 3522 | #endif |
| 3523 | if (State & REPLACE_FLAG) |
| 3524 | return SHAPE_IDX_R; |
| 3525 | if (State & INSERT) |
| 3526 | return SHAPE_IDX_I; |
| 3527 | if (State & CMDLINE) |
| 3528 | { |
| 3529 | if (cmdline_at_end()) |
| 3530 | return SHAPE_IDX_C; |
| 3531 | if (cmdline_overstrike()) |
| 3532 | return SHAPE_IDX_CR; |
| 3533 | return SHAPE_IDX_CI; |
| 3534 | } |
| 3535 | if (finish_op) |
| 3536 | return SHAPE_IDX_O; |
| 3537 | #ifdef FEAT_VISUAL |
| 3538 | if (VIsual_active) |
| 3539 | { |
| 3540 | if (*p_sel == 'e') |
| 3541 | return SHAPE_IDX_VE; |
| 3542 | else |
| 3543 | return SHAPE_IDX_V; |
| 3544 | } |
| 3545 | #endif |
| 3546 | return SHAPE_IDX_N; |
| 3547 | } |
Bram Moolenaar | ac6e65f | 2005-08-29 22:25:38 +0000 | [diff] [blame] | 3548 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3549 | |
| 3550 | # if defined(FEAT_MOUSESHAPE) || defined(PROTO) |
| 3551 | static int old_mouse_shape = 0; |
| 3552 | |
| 3553 | /* |
| 3554 | * Set the mouse shape: |
| 3555 | * If "shape" is -1, use shape depending on the current mode, |
| 3556 | * depending on the current state. |
| 3557 | * If "shape" is -2, only update the shape when it's CLINE or STATUS (used |
| 3558 | * when the mouse moves off the status or command line). |
| 3559 | */ |
| 3560 | void |
| 3561 | update_mouseshape(shape_idx) |
| 3562 | int shape_idx; |
| 3563 | { |
| 3564 | int new_mouse_shape; |
| 3565 | |
| 3566 | /* Only works in GUI mode. */ |
Bram Moolenaar | 6bb6836 | 2005-03-22 23:03:44 +0000 | [diff] [blame] | 3567 | if (!gui.in_use || gui.starting) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3568 | return; |
| 3569 | |
| 3570 | /* Postpone the updating when more is to come. Speeds up executing of |
| 3571 | * mappings. */ |
| 3572 | if (shape_idx == -1 && char_avail()) |
| 3573 | { |
| 3574 | postponed_mouseshape = TRUE; |
| 3575 | return; |
| 3576 | } |
| 3577 | |
Bram Moolenaar | 1471681 | 2006-05-04 21:54:08 +0000 | [diff] [blame] | 3578 | /* When ignoring the mouse don't change shape on the statusline. */ |
| 3579 | if (*p_mouse == NUL |
| 3580 | && (shape_idx == SHAPE_IDX_CLINE |
| 3581 | || shape_idx == SHAPE_IDX_STATUS |
| 3582 | || shape_idx == SHAPE_IDX_VSEP)) |
| 3583 | shape_idx = -2; |
| 3584 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3585 | if (shape_idx == -2 |
| 3586 | && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape |
| 3587 | && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape |
| 3588 | && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape) |
| 3589 | return; |
| 3590 | if (shape_idx < 0) |
| 3591 | new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape; |
| 3592 | else |
| 3593 | new_mouse_shape = shape_table[shape_idx].mshape; |
| 3594 | if (new_mouse_shape != old_mouse_shape) |
| 3595 | { |
| 3596 | mch_set_mouse_shape(new_mouse_shape); |
| 3597 | old_mouse_shape = new_mouse_shape; |
| 3598 | } |
| 3599 | postponed_mouseshape = FALSE; |
| 3600 | } |
| 3601 | # endif |
| 3602 | |
| 3603 | #endif /* CURSOR_SHAPE */ |
| 3604 | |
| 3605 | |
| 3606 | #ifdef FEAT_CRYPT |
| 3607 | /* |
Bram Moolenaar | 7aa9f6a | 2007-05-10 18:00:30 +0000 | [diff] [blame] | 3608 | * Optional encryption support. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3609 | * Mohsin Ahmed, mosh@sasi.com, 98-09-24 |
| 3610 | * Based on zip/crypt sources. |
| 3611 | * |
| 3612 | * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to |
| 3613 | * most countries. There are a few exceptions, but that still should not be a |
| 3614 | * problem since this code was originally created in Europe and India. |
| 3615 | */ |
| 3616 | |
| 3617 | /* from zip.h */ |
| 3618 | |
| 3619 | typedef unsigned short ush; /* unsigned 16-bit value */ |
| 3620 | typedef unsigned long ulg; /* unsigned 32-bit value */ |
| 3621 | |
| 3622 | static void make_crc_tab __ARGS((void)); |
| 3623 | |
Bram Moolenaar | d6f676d | 2005-06-01 21:51:55 +0000 | [diff] [blame] | 3624 | static ulg crc_32_tab[256]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3625 | |
| 3626 | /* |
| 3627 | * Fill the CRC table. |
| 3628 | */ |
| 3629 | static void |
| 3630 | make_crc_tab() |
| 3631 | { |
| 3632 | ulg s,t,v; |
| 3633 | static int done = FALSE; |
| 3634 | |
| 3635 | if (done) |
| 3636 | return; |
| 3637 | for (t = 0; t < 256; t++) |
| 3638 | { |
| 3639 | v = t; |
| 3640 | for (s = 0; s < 8; s++) |
| 3641 | v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L); |
| 3642 | crc_32_tab[t] = v; |
| 3643 | } |
| 3644 | done = TRUE; |
| 3645 | } |
| 3646 | |
| 3647 | #define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8)) |
| 3648 | |
| 3649 | |
| 3650 | static ulg keys[3]; /* keys defining the pseudo-random sequence */ |
| 3651 | |
| 3652 | /* |
| 3653 | * Return the next byte in the pseudo-random sequence |
| 3654 | */ |
| 3655 | int |
| 3656 | decrypt_byte() |
| 3657 | { |
| 3658 | ush temp; |
| 3659 | |
| 3660 | temp = (ush)keys[2] | 2; |
| 3661 | return (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff); |
| 3662 | } |
| 3663 | |
| 3664 | /* |
| 3665 | * Update the encryption keys with the next byte of plain text |
| 3666 | */ |
| 3667 | int |
| 3668 | update_keys(c) |
| 3669 | int c; /* byte of plain text */ |
| 3670 | { |
| 3671 | keys[0] = CRC32(keys[0], c); |
| 3672 | keys[1] += keys[0] & 0xff; |
| 3673 | keys[1] = keys[1] * 134775813L + 1; |
| 3674 | keys[2] = CRC32(keys[2], (int)(keys[1] >> 24)); |
| 3675 | return c; |
| 3676 | } |
| 3677 | |
| 3678 | /* |
| 3679 | * Initialize the encryption keys and the random header according to |
| 3680 | * the given password. |
| 3681 | * If "passwd" is NULL or empty, don't do anything. |
| 3682 | */ |
| 3683 | void |
| 3684 | crypt_init_keys(passwd) |
| 3685 | char_u *passwd; /* password string with which to modify keys */ |
| 3686 | { |
| 3687 | if (passwd != NULL && *passwd != NUL) |
| 3688 | { |
| 3689 | make_crc_tab(); |
| 3690 | keys[0] = 305419896L; |
| 3691 | keys[1] = 591751049L; |
| 3692 | keys[2] = 878082192L; |
| 3693 | while (*passwd != '\0') |
| 3694 | update_keys((int)*passwd++); |
| 3695 | } |
| 3696 | } |
| 3697 | |
| 3698 | /* |
| 3699 | * Ask the user for a crypt key. |
| 3700 | * When "store" is TRUE, the new key in stored in the 'key' option, and the |
| 3701 | * 'key' option value is returned: Don't free it. |
| 3702 | * When "store" is FALSE, the typed key is returned in allocated memory. |
| 3703 | * Returns NULL on failure. |
| 3704 | */ |
| 3705 | char_u * |
| 3706 | get_crypt_key(store, twice) |
| 3707 | int store; |
| 3708 | int twice; /* Ask for the key twice. */ |
| 3709 | { |
| 3710 | char_u *p1, *p2 = NULL; |
| 3711 | int round; |
| 3712 | |
| 3713 | for (round = 0; ; ++round) |
| 3714 | { |
| 3715 | cmdline_star = TRUE; |
| 3716 | cmdline_row = msg_row; |
| 3717 | p1 = getcmdline_prompt(NUL, round == 0 |
| 3718 | ? (char_u *)_("Enter encryption key: ") |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 3719 | : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING, |
| 3720 | NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3721 | cmdline_star = FALSE; |
| 3722 | |
| 3723 | if (p1 == NULL) |
| 3724 | break; |
| 3725 | |
| 3726 | if (round == twice) |
| 3727 | { |
| 3728 | if (p2 != NULL && STRCMP(p1, p2) != 0) |
| 3729 | { |
| 3730 | MSG(_("Keys don't match!")); |
| 3731 | vim_free(p1); |
| 3732 | vim_free(p2); |
| 3733 | p2 = NULL; |
| 3734 | round = -1; /* do it again */ |
| 3735 | continue; |
| 3736 | } |
| 3737 | if (store) |
| 3738 | { |
| 3739 | set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL); |
| 3740 | vim_free(p1); |
| 3741 | p1 = curbuf->b_p_key; |
| 3742 | } |
| 3743 | break; |
| 3744 | } |
| 3745 | p2 = p1; |
| 3746 | } |
| 3747 | |
| 3748 | /* since the user typed this, no need to wait for return */ |
| 3749 | need_wait_return = FALSE; |
| 3750 | msg_didout = FALSE; |
| 3751 | |
| 3752 | vim_free(p2); |
| 3753 | return p1; |
| 3754 | } |
| 3755 | |
| 3756 | #endif /* FEAT_CRYPT */ |
| 3757 | |
| 3758 | /* TODO: make some #ifdef for this */ |
| 3759 | /*--------[ file searching ]-------------------------------------------------*/ |
| 3760 | /* |
| 3761 | * File searching functions for 'path', 'tags' and 'cdpath' options. |
| 3762 | * External visible functions: |
| 3763 | * vim_findfile_init() creates/initialises the search context |
| 3764 | * vim_findfile_free_visited() free list of visited files/dirs of search |
| 3765 | * context |
| 3766 | * vim_findfile() find a file in the search context |
| 3767 | * vim_findfile_cleanup() cleanup/free search context created by |
| 3768 | * vim_findfile_init() |
| 3769 | * |
| 3770 | * All static functions and variables start with 'ff_' |
| 3771 | * |
| 3772 | * In general it works like this: |
| 3773 | * First you create yourself a search context by calling vim_findfile_init(). |
| 3774 | * It is possible to give a search context from a previous call to |
| 3775 | * vim_findfile_init(), so it can be reused. After this you call vim_findfile() |
| 3776 | * until you are satisfied with the result or it returns NULL. On every call it |
| 3777 | * returns the next file which matches the conditions given to |
| 3778 | * vim_findfile_init(). If it doesn't find a next file it returns NULL. |
| 3779 | * |
| 3780 | * It is possible to call vim_findfile_init() again to reinitialise your search |
| 3781 | * with some new parameters. Don't forget to pass your old search context to |
| 3782 | * it, so it can reuse it and especially reuse the list of already visited |
| 3783 | * directories. If you want to delete the list of already visited directories |
| 3784 | * simply call vim_findfile_free_visited(). |
| 3785 | * |
| 3786 | * When you are done call vim_findfile_cleanup() to free the search context. |
| 3787 | * |
| 3788 | * The function vim_findfile_init() has a long comment, which describes the |
| 3789 | * needed parameters. |
| 3790 | * |
| 3791 | * |
| 3792 | * |
| 3793 | * ATTENTION: |
| 3794 | * ========== |
Bram Moolenaar | 77f66d6 | 2007-02-20 02:16:18 +0000 | [diff] [blame] | 3795 | * Also we use an allocated search context here, this functions are NOT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3796 | * thread-safe!!!!! |
| 3797 | * |
| 3798 | * To minimize parameter passing (or because I'm to lazy), only the |
| 3799 | * external visible functions get a search context as a parameter. This is |
| 3800 | * then assigned to a static global, which is used throughout the local |
| 3801 | * functions. |
| 3802 | */ |
| 3803 | |
| 3804 | /* |
| 3805 | * type for the directory search stack |
| 3806 | */ |
| 3807 | typedef struct ff_stack |
| 3808 | { |
| 3809 | struct ff_stack *ffs_prev; |
| 3810 | |
| 3811 | /* the fix part (no wildcards) and the part containing the wildcards |
| 3812 | * of the search path |
| 3813 | */ |
| 3814 | char_u *ffs_fix_path; |
| 3815 | #ifdef FEAT_PATH_EXTRA |
| 3816 | char_u *ffs_wc_path; |
| 3817 | #endif |
| 3818 | |
| 3819 | /* files/dirs found in the above directory, matched by the first wildcard |
| 3820 | * of wc_part |
| 3821 | */ |
| 3822 | char_u **ffs_filearray; |
| 3823 | int ffs_filearray_size; |
| 3824 | char_u ffs_filearray_cur; /* needed for partly handled dirs */ |
| 3825 | |
| 3826 | /* to store status of partly handled directories |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 3827 | * 0: we work on this directory for the first time |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3828 | * 1: this directory was partly searched in an earlier step |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 3829 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3830 | int ffs_stage; |
| 3831 | |
| 3832 | /* How deep are we in the directory tree? |
| 3833 | * Counts backward from value of level parameter to vim_findfile_init |
| 3834 | */ |
| 3835 | int ffs_level; |
| 3836 | |
| 3837 | /* Did we already expand '**' to an empty string? */ |
| 3838 | int ffs_star_star_empty; |
| 3839 | } ff_stack_T; |
| 3840 | |
| 3841 | /* |
| 3842 | * type for already visited directories or files. |
| 3843 | */ |
| 3844 | typedef struct ff_visited |
| 3845 | { |
| 3846 | struct ff_visited *ffv_next; |
| 3847 | |
| 3848 | #ifdef FEAT_PATH_EXTRA |
| 3849 | /* Visited directories are different if the wildcard string are |
| 3850 | * different. So we have to save it. |
| 3851 | */ |
| 3852 | char_u *ffv_wc_path; |
| 3853 | #endif |
| 3854 | /* for unix use inode etc for comparison (needed because of links), else |
| 3855 | * use filename. |
| 3856 | */ |
| 3857 | #ifdef UNIX |
| 3858 | int ffv_dev; /* device number (-1 if not set) */ |
| 3859 | ino_t ffv_ino; /* inode number */ |
| 3860 | #endif |
| 3861 | /* The memory for this struct is allocated according to the length of |
| 3862 | * ffv_fname. |
| 3863 | */ |
| 3864 | char_u ffv_fname[1]; /* actually longer */ |
| 3865 | } ff_visited_T; |
| 3866 | |
| 3867 | /* |
| 3868 | * We might have to manage several visited lists during a search. |
Bram Moolenaar | 7aa9f6a | 2007-05-10 18:00:30 +0000 | [diff] [blame] | 3869 | * This is especially needed for the tags option. If tags is set to: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3870 | * "./++/tags,./++/TAGS,++/tags" (replace + with *) |
| 3871 | * So we have to do 3 searches: |
| 3872 | * 1) search from the current files directory downward for the file "tags" |
| 3873 | * 2) search from the current files directory downward for the file "TAGS" |
| 3874 | * 3) search from Vims current directory downwards for the file "tags" |
| 3875 | * As you can see, the first and the third search are for the same file, so for |
| 3876 | * the third search we can use the visited list of the first search. For the |
| 3877 | * second search we must start from a empty visited list. |
| 3878 | * The struct ff_visited_list_hdr is used to manage a linked list of already |
| 3879 | * visited lists. |
| 3880 | */ |
| 3881 | typedef struct ff_visited_list_hdr |
| 3882 | { |
| 3883 | struct ff_visited_list_hdr *ffvl_next; |
| 3884 | |
| 3885 | /* the filename the attached visited list is for */ |
| 3886 | char_u *ffvl_filename; |
| 3887 | |
| 3888 | ff_visited_T *ffvl_visited_list; |
| 3889 | |
| 3890 | } ff_visited_list_hdr_T; |
| 3891 | |
| 3892 | |
| 3893 | /* |
| 3894 | * '**' can be expanded to several directory levels. |
Bram Moolenaar | 7aa9f6a | 2007-05-10 18:00:30 +0000 | [diff] [blame] | 3895 | * Set the default maximum depth. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3896 | */ |
| 3897 | #define FF_MAX_STAR_STAR_EXPAND ((char_u)30) |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 3898 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3899 | /* |
| 3900 | * The search context: |
| 3901 | * ffsc_stack_ptr: the stack for the dirs to search |
| 3902 | * ffsc_visited_list: the currently active visited list |
| 3903 | * ffsc_dir_visited_list: the currently active visited list for search dirs |
| 3904 | * ffsc_visited_lists_list: the list of all visited lists |
| 3905 | * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs |
| 3906 | * ffsc_file_to_search: the file to search for |
| 3907 | * ffsc_start_dir: the starting directory, if search path was relative |
| 3908 | * ffsc_fix_path: the fix part of the given path (without wildcards) |
| 3909 | * Needed for upward search. |
| 3910 | * ffsc_wc_path: the part of the given path containing wildcards |
| 3911 | * ffsc_level: how many levels of dirs to search downwards |
| 3912 | * ffsc_stopdirs_v: array of stop directories for upward search |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 3913 | * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3914 | */ |
| 3915 | typedef struct ff_search_ctx_T |
| 3916 | { |
| 3917 | ff_stack_T *ffsc_stack_ptr; |
| 3918 | ff_visited_list_hdr_T *ffsc_visited_list; |
| 3919 | ff_visited_list_hdr_T *ffsc_dir_visited_list; |
| 3920 | ff_visited_list_hdr_T *ffsc_visited_lists_list; |
| 3921 | ff_visited_list_hdr_T *ffsc_dir_visited_lists_list; |
| 3922 | char_u *ffsc_file_to_search; |
| 3923 | char_u *ffsc_start_dir; |
| 3924 | char_u *ffsc_fix_path; |
| 3925 | #ifdef FEAT_PATH_EXTRA |
| 3926 | char_u *ffsc_wc_path; |
| 3927 | int ffsc_level; |
| 3928 | char_u **ffsc_stopdirs_v; |
| 3929 | #endif |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 3930 | int ffsc_find_what; |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 3931 | } ff_search_ctx_T; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3932 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3933 | /* locally needed functions */ |
| 3934 | #ifdef FEAT_PATH_EXTRA |
| 3935 | static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *)); |
| 3936 | #else |
| 3937 | static int ff_check_visited __ARGS((ff_visited_T **, char_u *)); |
| 3938 | #endif |
| 3939 | static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp)); |
| 3940 | static void ff_free_visited_list __ARGS((ff_visited_T *vl)); |
| 3941 | static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp)); |
| 3942 | #ifdef FEAT_PATH_EXTRA |
| 3943 | static int ff_wc_equal __ARGS((char_u *s1, char_u *s2)); |
| 3944 | #endif |
| 3945 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 3946 | static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr)); |
| 3947 | static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx)); |
| 3948 | static void ff_clear __ARGS((ff_search_ctx_T *search_ctx)); |
| 3949 | static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3950 | #ifdef FEAT_PATH_EXTRA |
| 3951 | static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int)); |
| 3952 | #else |
| 3953 | static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int)); |
| 3954 | #endif |
| 3955 | #ifdef FEAT_PATH_EXTRA |
| 3956 | static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **)); |
| 3957 | #endif |
| 3958 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3959 | #if 0 |
| 3960 | /* |
| 3961 | * if someone likes findfirst/findnext, here are the functions |
| 3962 | * NOT TESTED!! |
| 3963 | */ |
| 3964 | |
| 3965 | static void *ff_fn_search_context = NULL; |
| 3966 | |
| 3967 | char_u * |
| 3968 | vim_findfirst(path, filename, level) |
| 3969 | char_u *path; |
| 3970 | char_u *filename; |
| 3971 | int level; |
| 3972 | { |
| 3973 | ff_fn_search_context = |
| 3974 | vim_findfile_init(path, filename, NULL, level, TRUE, FALSE, |
| 3975 | ff_fn_search_context, rel_fname); |
| 3976 | if (NULL == ff_fn_search_context) |
| 3977 | return NULL; |
| 3978 | else |
| 3979 | return vim_findnext() |
| 3980 | } |
| 3981 | |
| 3982 | char_u * |
| 3983 | vim_findnext() |
| 3984 | { |
| 3985 | char_u *ret = vim_findfile(ff_fn_search_context); |
| 3986 | |
| 3987 | if (NULL == ret) |
| 3988 | { |
| 3989 | vim_findfile_cleanup(ff_fn_search_context); |
| 3990 | ff_fn_search_context = NULL; |
| 3991 | } |
| 3992 | return ret; |
| 3993 | } |
| 3994 | #endif |
| 3995 | |
| 3996 | /* |
| 3997 | * Initialization routine for vim_findfile. |
| 3998 | * |
| 3999 | * Returns the newly allocated search context or NULL if an error occured. |
| 4000 | * |
| 4001 | * Don't forget to clean up by calling vim_findfile_cleanup() if you are done |
| 4002 | * with the search context. |
| 4003 | * |
| 4004 | * Find the file 'filename' in the directory 'path'. |
| 4005 | * The parameter 'path' may contain wildcards. If so only search 'level' |
| 4006 | * directories deep. The parameter 'level' is the absolute maximum and is |
| 4007 | * not related to restricts given to the '**' wildcard. If 'level' is 100 |
| 4008 | * and you use '**200' vim_findfile() will stop after 100 levels. |
| 4009 | * |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4010 | * 'filename' cannot contain wildcards! It is used as-is, no backslashes to |
| 4011 | * escape special characters. |
| 4012 | * |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4013 | * If 'stopdirs' is not NULL and nothing is found downward, the search is |
| 4014 | * restarted on the next higher directory level. This is repeated until the |
| 4015 | * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the |
| 4016 | * format ";*<dirname>*\(;<dirname>\)*;\=$". |
| 4017 | * |
| 4018 | * If the 'path' is relative, the starting dir for the search is either VIM's |
| 4019 | * current dir or if the path starts with "./" the current files dir. |
| 4020 | * If the 'path' is absolut, the starting dir is that part of the path before |
| 4021 | * the first wildcard. |
| 4022 | * |
| 4023 | * Upward search is only done on the starting dir. |
| 4024 | * |
| 4025 | * If 'free_visited' is TRUE the list of already visited files/directories is |
| 4026 | * cleared. Set this to FALSE if you just want to search from another |
| 4027 | * directory, but want to be sure that no directory from a previous search is |
| 4028 | * searched again. This is useful if you search for a file at different places. |
| 4029 | * The list of visited files/dirs can also be cleared with the function |
| 4030 | * vim_findfile_free_visited(). |
| 4031 | * |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4032 | * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for |
| 4033 | * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4034 | * |
| 4035 | * A search context returned by a previous call to vim_findfile_init() can be |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4036 | * passed in the parameter "search_ctx_arg". This context is reused and |
| 4037 | * reinitialized with the new parameters. The list of already visited |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4038 | * directories from this context is only deleted if the parameter |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4039 | * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed |
| 4040 | * if the reinitialization fails. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4041 | * |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4042 | * If you don't have a search context from a previous call "search_ctx_arg" |
| 4043 | * must be NULL. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4044 | * |
| 4045 | * This function silently ignores a few errors, vim_findfile() will have |
| 4046 | * limited functionality then. |
| 4047 | */ |
| 4048 | /*ARGSUSED*/ |
| 4049 | void * |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4050 | vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what, |
| 4051 | search_ctx_arg, tagfile, rel_fname) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4052 | char_u *path; |
| 4053 | char_u *filename; |
| 4054 | char_u *stopdirs; |
| 4055 | int level; |
| 4056 | int free_visited; |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4057 | int find_what; |
| 4058 | void *search_ctx_arg; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4059 | int tagfile; |
| 4060 | char_u *rel_fname; /* file name to use for "." */ |
| 4061 | { |
| 4062 | #ifdef FEAT_PATH_EXTRA |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4063 | char_u *wc_part; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4064 | #endif |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4065 | ff_stack_T *sptr; |
| 4066 | ff_search_ctx_T *search_ctx; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4067 | |
| 4068 | /* If a search context is given by the caller, reuse it, else allocate a |
| 4069 | * new one. |
| 4070 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4071 | if (search_ctx_arg != NULL) |
| 4072 | search_ctx = search_ctx_arg; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4073 | else |
| 4074 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4075 | search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T)); |
| 4076 | if (search_ctx == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4077 | goto error_return; |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4078 | memset(search_ctx, 0, sizeof(ff_search_ctx_T)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4079 | } |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4080 | search_ctx->ffsc_find_what = find_what; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4081 | |
| 4082 | /* clear the search context, but NOT the visited lists */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4083 | ff_clear(search_ctx); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4084 | |
| 4085 | /* clear visited list if wanted */ |
| 4086 | if (free_visited == TRUE) |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4087 | vim_findfile_free_visited(search_ctx); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4088 | else |
| 4089 | { |
| 4090 | /* Reuse old visited lists. Get the visited list for the given |
| 4091 | * filename. If no list for the current filename exists, creates a new |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4092 | * one. */ |
| 4093 | search_ctx->ffsc_visited_list = ff_get_visited_list(filename, |
| 4094 | &search_ctx->ffsc_visited_lists_list); |
| 4095 | if (search_ctx->ffsc_visited_list == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4096 | goto error_return; |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4097 | search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename, |
| 4098 | &search_ctx->ffsc_dir_visited_lists_list); |
| 4099 | if (search_ctx->ffsc_dir_visited_list == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4100 | goto error_return; |
| 4101 | } |
| 4102 | |
| 4103 | if (ff_expand_buffer == NULL) |
| 4104 | { |
| 4105 | ff_expand_buffer = (char_u*)alloc(MAXPATHL); |
| 4106 | if (ff_expand_buffer == NULL) |
| 4107 | goto error_return; |
| 4108 | } |
| 4109 | |
| 4110 | /* Store information on starting dir now if path is relative. |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 4111 | * If path is absolute, we do that later. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4112 | if (path[0] == '.' |
| 4113 | && (vim_ispathsep(path[1]) || path[1] == NUL) |
| 4114 | && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL) |
| 4115 | && rel_fname != NULL) |
| 4116 | { |
| 4117 | int len = (int)(gettail(rel_fname) - rel_fname); |
| 4118 | |
| 4119 | if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL) |
| 4120 | { |
| 4121 | /* Make the start dir an absolute path name. */ |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 4122 | vim_strncpy(ff_expand_buffer, rel_fname, len); |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4123 | search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4124 | } |
| 4125 | else |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4126 | search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len); |
| 4127 | if (search_ctx->ffsc_start_dir == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4128 | goto error_return; |
| 4129 | if (*++path != NUL) |
| 4130 | ++path; |
| 4131 | } |
| 4132 | else if (*path == NUL || !vim_isAbsName(path)) |
| 4133 | { |
| 4134 | #ifdef BACKSLASH_IN_FILENAME |
| 4135 | /* "c:dir" needs "c:" to be expanded, otherwise use current dir */ |
| 4136 | if (*path != NUL && path[1] == ':') |
| 4137 | { |
| 4138 | char_u drive[3]; |
| 4139 | |
| 4140 | drive[0] = path[0]; |
| 4141 | drive[1] = ':'; |
| 4142 | drive[2] = NUL; |
| 4143 | if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL) |
| 4144 | goto error_return; |
| 4145 | path += 2; |
| 4146 | } |
| 4147 | else |
| 4148 | #endif |
| 4149 | if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL) |
| 4150 | goto error_return; |
| 4151 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4152 | search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer); |
| 4153 | if (search_ctx->ffsc_start_dir == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4154 | goto error_return; |
| 4155 | |
| 4156 | #ifdef BACKSLASH_IN_FILENAME |
| 4157 | /* A path that starts with "/dir" is relative to the drive, not to the |
| 4158 | * directory (but not for "//machine/dir"). Only use the drive name. */ |
| 4159 | if ((*path == '/' || *path == '\\') |
| 4160 | && path[1] != path[0] |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4161 | && search_ctx->ffsc_start_dir[1] == ':') |
| 4162 | search_ctx->ffsc_start_dir[2] = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4163 | #endif |
| 4164 | } |
| 4165 | |
| 4166 | #ifdef FEAT_PATH_EXTRA |
| 4167 | /* |
| 4168 | * If stopdirs are given, split them into an array of pointers. |
| 4169 | * If this fails (mem allocation), there is no upward search at all or a |
| 4170 | * stop directory is not recognized -> continue silently. |
| 4171 | * If stopdirs just contains a ";" or is empty, |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4172 | * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4173 | * is handled as unlimited upward search. See function |
| 4174 | * ff_path_in_stoplist() for details. |
| 4175 | */ |
| 4176 | if (stopdirs != NULL) |
| 4177 | { |
| 4178 | char_u *walker = stopdirs; |
| 4179 | int dircount; |
| 4180 | |
| 4181 | while (*walker == ';') |
| 4182 | walker++; |
| 4183 | |
| 4184 | dircount = 1; |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4185 | search_ctx->ffsc_stopdirs_v = |
| 4186 | (char_u **)alloc((unsigned)sizeof(char_u *)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4187 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4188 | if (search_ctx->ffsc_stopdirs_v != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4189 | { |
| 4190 | do |
| 4191 | { |
| 4192 | char_u *helper; |
| 4193 | void *ptr; |
| 4194 | |
| 4195 | helper = walker; |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4196 | ptr = vim_realloc(search_ctx->ffsc_stopdirs_v, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4197 | (dircount + 1) * sizeof(char_u *)); |
| 4198 | if (ptr) |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4199 | search_ctx->ffsc_stopdirs_v = ptr; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4200 | else |
| 4201 | /* ignore, keep what we have and continue */ |
| 4202 | break; |
| 4203 | walker = vim_strchr(walker, ';'); |
| 4204 | if (walker) |
| 4205 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4206 | search_ctx->ffsc_stopdirs_v[dircount-1] = |
| 4207 | vim_strnsave(helper, (int)(walker - helper)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4208 | walker++; |
| 4209 | } |
| 4210 | else |
| 4211 | /* this might be "", which means ascent till top |
| 4212 | * of directory tree. |
| 4213 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4214 | search_ctx->ffsc_stopdirs_v[dircount-1] = |
| 4215 | vim_strsave(helper); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4216 | |
| 4217 | dircount++; |
| 4218 | |
| 4219 | } while (walker != NULL); |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4220 | search_ctx->ffsc_stopdirs_v[dircount-1] = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4221 | } |
| 4222 | } |
| 4223 | #endif |
| 4224 | |
| 4225 | #ifdef FEAT_PATH_EXTRA |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4226 | search_ctx->ffsc_level = level; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4227 | |
| 4228 | /* split into: |
| 4229 | * -fix path |
| 4230 | * -wildcard_stuff (might be NULL) |
| 4231 | */ |
| 4232 | wc_part = vim_strchr(path, '*'); |
| 4233 | if (wc_part != NULL) |
| 4234 | { |
| 4235 | int llevel; |
| 4236 | int len; |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 4237 | char *errpt; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4238 | |
| 4239 | /* save the fix part of the path */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4240 | search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4241 | |
| 4242 | /* |
| 4243 | * copy wc_path and add restricts to the '**' wildcard. |
Bram Moolenaar | 7aa9f6a | 2007-05-10 18:00:30 +0000 | [diff] [blame] | 4244 | * The octet after a '**' is used as a (binary) counter. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4245 | * So '**3' is transposed to '**^C' ('^C' is ASCII value 3) |
| 4246 | * or '**76' is transposed to '**N'( 'N' is ASCII value 76). |
| 4247 | * For EBCDIC you get different character values. |
| 4248 | * If no restrict is given after '**' the default is used. |
| 4249 | * Due to this technic the path looks awful if you print it as a |
| 4250 | * string. |
| 4251 | */ |
| 4252 | len = 0; |
| 4253 | while (*wc_part != NUL) |
| 4254 | { |
| 4255 | if (STRNCMP(wc_part, "**", 2) == 0) |
| 4256 | { |
| 4257 | ff_expand_buffer[len++] = *wc_part++; |
| 4258 | ff_expand_buffer[len++] = *wc_part++; |
| 4259 | |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 4260 | llevel = strtol((char *)wc_part, &errpt, 10); |
| 4261 | if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4262 | ff_expand_buffer[len++] = llevel; |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 4263 | else if ((char_u *)errpt != wc_part && llevel == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4264 | /* restrict is 0 -> remove already added '**' */ |
| 4265 | len -= 2; |
| 4266 | else |
| 4267 | ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND; |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 4268 | wc_part = (char_u *)errpt; |
Bram Moolenaar | 1d94f9b | 2005-08-04 21:29:45 +0000 | [diff] [blame] | 4269 | if (*wc_part != NUL && !vim_ispathsep(*wc_part)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4270 | { |
| 4271 | EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR); |
| 4272 | goto error_return; |
| 4273 | } |
| 4274 | } |
| 4275 | else |
| 4276 | ff_expand_buffer[len++] = *wc_part++; |
| 4277 | } |
| 4278 | ff_expand_buffer[len] = NUL; |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4279 | search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4280 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4281 | if (search_ctx->ffsc_wc_path == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4282 | goto error_return; |
| 4283 | } |
| 4284 | else |
| 4285 | #endif |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4286 | search_ctx->ffsc_fix_path = vim_strsave(path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4287 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4288 | if (search_ctx->ffsc_start_dir == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4289 | { |
| 4290 | /* store the fix part as startdir. |
| 4291 | * This is needed if the parameter path is fully qualified. |
| 4292 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4293 | search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path); |
| 4294 | if (search_ctx->ffsc_start_dir) |
| 4295 | search_ctx->ffsc_fix_path[0] = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4296 | } |
| 4297 | |
| 4298 | /* create an absolute path */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4299 | STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4300 | add_pathsep(ff_expand_buffer); |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4301 | STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4302 | add_pathsep(ff_expand_buffer); |
| 4303 | |
| 4304 | sptr = ff_create_stack_element(ff_expand_buffer, |
| 4305 | #ifdef FEAT_PATH_EXTRA |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4306 | search_ctx->ffsc_wc_path, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4307 | #endif |
| 4308 | level, 0); |
| 4309 | |
| 4310 | if (sptr == NULL) |
| 4311 | goto error_return; |
| 4312 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4313 | ff_push(search_ctx, sptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4314 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4315 | search_ctx->ffsc_file_to_search = vim_strsave(filename); |
| 4316 | if (search_ctx->ffsc_file_to_search == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4317 | goto error_return; |
| 4318 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4319 | return search_ctx; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4320 | |
| 4321 | error_return: |
| 4322 | /* |
| 4323 | * We clear the search context now! |
| 4324 | * Even when the caller gave us a (perhaps valid) context we free it here, |
| 4325 | * as we might have already destroyed it. |
| 4326 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4327 | vim_findfile_cleanup(search_ctx); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4328 | return NULL; |
| 4329 | } |
| 4330 | |
| 4331 | #if defined(FEAT_PATH_EXTRA) || defined(PROTO) |
| 4332 | /* |
| 4333 | * Get the stopdir string. Check that ';' is not escaped. |
| 4334 | */ |
| 4335 | char_u * |
| 4336 | vim_findfile_stopdir(buf) |
| 4337 | char_u *buf; |
| 4338 | { |
| 4339 | char_u *r_ptr = buf; |
| 4340 | |
| 4341 | while (*r_ptr != NUL && *r_ptr != ';') |
| 4342 | { |
| 4343 | if (r_ptr[0] == '\\' && r_ptr[1] == ';') |
| 4344 | { |
| 4345 | /* overwrite the escape char, |
| 4346 | * use STRLEN(r_ptr) to move the trailing '\0' |
| 4347 | */ |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 4348 | STRMOVE(r_ptr, r_ptr + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4349 | r_ptr++; |
| 4350 | } |
| 4351 | r_ptr++; |
| 4352 | } |
| 4353 | if (*r_ptr == ';') |
| 4354 | { |
| 4355 | *r_ptr = 0; |
| 4356 | r_ptr++; |
| 4357 | } |
| 4358 | else if (*r_ptr == NUL) |
| 4359 | r_ptr = NULL; |
| 4360 | return r_ptr; |
| 4361 | } |
| 4362 | #endif |
| 4363 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4364 | /* |
| 4365 | * Clean up the given search context. Can handle a NULL pointer. |
| 4366 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4367 | void |
| 4368 | vim_findfile_cleanup(ctx) |
| 4369 | void *ctx; |
| 4370 | { |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 4371 | if (ctx == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4372 | return; |
| 4373 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4374 | vim_findfile_free_visited(ctx); |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4375 | ff_clear(ctx); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4376 | vim_free(ctx); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4377 | } |
| 4378 | |
| 4379 | /* |
| 4380 | * Find a file in a search context. |
| 4381 | * The search context was created with vim_findfile_init() above. |
| 4382 | * Return a pointer to an allocated file name or NULL if nothing found. |
| 4383 | * To get all matching files call this function until you get NULL. |
| 4384 | * |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 4385 | * If the passed search_context is NULL, NULL is returned. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4386 | * |
| 4387 | * The search algorithm is depth first. To change this replace the |
| 4388 | * stack with a list (don't forget to leave partly searched directories on the |
| 4389 | * top of the list). |
| 4390 | */ |
| 4391 | char_u * |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4392 | vim_findfile(search_ctx_arg) |
| 4393 | void *search_ctx_arg; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4394 | { |
| 4395 | char_u *file_path; |
| 4396 | #ifdef FEAT_PATH_EXTRA |
| 4397 | char_u *rest_of_wildcards; |
| 4398 | char_u *path_end = NULL; |
| 4399 | #endif |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4400 | ff_stack_T *stackp; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4401 | #if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA) |
| 4402 | int len; |
| 4403 | #endif |
| 4404 | int i; |
| 4405 | char_u *p; |
| 4406 | #ifdef FEAT_SEARCHPATH |
| 4407 | char_u *suf; |
| 4408 | #endif |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4409 | ff_search_ctx_T *search_ctx; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4410 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4411 | if (search_ctx_arg == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4412 | return NULL; |
| 4413 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4414 | search_ctx = (ff_search_ctx_T *)search_ctx_arg; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4415 | |
| 4416 | /* |
| 4417 | * filepath is used as buffer for various actions and as the storage to |
| 4418 | * return a found filename. |
| 4419 | */ |
| 4420 | if ((file_path = alloc((int)MAXPATHL)) == NULL) |
| 4421 | return NULL; |
| 4422 | |
| 4423 | #ifdef FEAT_PATH_EXTRA |
| 4424 | /* store the end of the start dir -- needed for upward search */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4425 | if (search_ctx->ffsc_start_dir != NULL) |
| 4426 | path_end = &search_ctx->ffsc_start_dir[ |
| 4427 | STRLEN(search_ctx->ffsc_start_dir)]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4428 | #endif |
| 4429 | |
| 4430 | #ifdef FEAT_PATH_EXTRA |
| 4431 | /* upward search loop */ |
| 4432 | for (;;) |
| 4433 | { |
| 4434 | #endif |
| 4435 | /* downward search loop */ |
| 4436 | for (;;) |
| 4437 | { |
| 4438 | /* check if user user wants to stop the search*/ |
| 4439 | ui_breakcheck(); |
| 4440 | if (got_int) |
| 4441 | break; |
| 4442 | |
| 4443 | /* get directory to work on from stack */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4444 | stackp = ff_pop(search_ctx); |
| 4445 | if (stackp == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4446 | break; |
| 4447 | |
| 4448 | /* |
| 4449 | * TODO: decide if we leave this test in |
| 4450 | * |
| 4451 | * GOOD: don't search a directory(-tree) twice. |
| 4452 | * BAD: - check linked list for every new directory entered. |
| 4453 | * - check for double files also done below |
| 4454 | * |
| 4455 | * Here we check if we already searched this directory. |
| 4456 | * We already searched a directory if: |
| 4457 | * 1) The directory is the same. |
| 4458 | * 2) We would use the same wildcard string. |
| 4459 | * |
| 4460 | * Good if you have links on same directory via several ways |
| 4461 | * or you have selfreferences in directories (e.g. SuSE Linux 6.3: |
| 4462 | * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop) |
| 4463 | * |
| 4464 | * This check is only needed for directories we work on for the |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4465 | * first time (hence stackp->ff_filearray == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4466 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4467 | if (stackp->ffs_filearray == NULL |
| 4468 | && ff_check_visited(&search_ctx->ffsc_dir_visited_list |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4469 | ->ffvl_visited_list, |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4470 | stackp->ffs_fix_path |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4471 | #ifdef FEAT_PATH_EXTRA |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4472 | , stackp->ffs_wc_path |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4473 | #endif |
| 4474 | ) == FAIL) |
| 4475 | { |
| 4476 | #ifdef FF_VERBOSE |
| 4477 | if (p_verbose >= 5) |
| 4478 | { |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4479 | verbose_enter_scroll(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4480 | smsg((char_u *)"Already Searched: %s (%s)", |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4481 | stackp->ffs_fix_path, stackp->ffs_wc_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4482 | /* don't overwrite this either */ |
| 4483 | msg_puts((char_u *)"\n"); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4484 | verbose_leave_scroll(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4485 | } |
| 4486 | #endif |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4487 | ff_free_stack_element(stackp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4488 | continue; |
| 4489 | } |
| 4490 | #ifdef FF_VERBOSE |
| 4491 | else if (p_verbose >= 5) |
| 4492 | { |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4493 | verbose_enter_scroll(); |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 4494 | smsg((char_u *)"Searching: %s (%s)", |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4495 | stackp->ffs_fix_path, stackp->ffs_wc_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4496 | /* don't overwrite this either */ |
| 4497 | msg_puts((char_u *)"\n"); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4498 | verbose_leave_scroll(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4499 | } |
| 4500 | #endif |
| 4501 | |
| 4502 | /* check depth */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4503 | if (stackp->ffs_level <= 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4504 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4505 | ff_free_stack_element(stackp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4506 | continue; |
| 4507 | } |
| 4508 | |
| 4509 | file_path[0] = NUL; |
| 4510 | |
| 4511 | /* |
| 4512 | * If no filearray till now expand wildcards |
| 4513 | * The function expand_wildcards() can handle an array of paths |
| 4514 | * and all possible expands are returned in one array. We use this |
| 4515 | * to handle the expansion of '**' into an empty string. |
| 4516 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4517 | if (stackp->ffs_filearray == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4518 | { |
| 4519 | char_u *dirptrs[2]; |
| 4520 | |
| 4521 | /* we use filepath to build the path expand_wildcards() should |
| 4522 | * expand. |
| 4523 | */ |
| 4524 | dirptrs[0] = file_path; |
| 4525 | dirptrs[1] = NULL; |
| 4526 | |
| 4527 | /* if we have a start dir copy it in */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4528 | if (!vim_isAbsName(stackp->ffs_fix_path) |
| 4529 | && search_ctx->ffsc_start_dir) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4530 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4531 | STRCPY(file_path, search_ctx->ffsc_start_dir); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4532 | add_pathsep(file_path); |
| 4533 | } |
| 4534 | |
| 4535 | /* append the fix part of the search path */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4536 | STRCAT(file_path, stackp->ffs_fix_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4537 | add_pathsep(file_path); |
| 4538 | |
| 4539 | #ifdef FEAT_PATH_EXTRA |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4540 | rest_of_wildcards = stackp->ffs_wc_path; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4541 | if (*rest_of_wildcards != NUL) |
| 4542 | { |
| 4543 | len = (int)STRLEN(file_path); |
| 4544 | if (STRNCMP(rest_of_wildcards, "**", 2) == 0) |
| 4545 | { |
| 4546 | /* pointer to the restrict byte |
| 4547 | * The restrict byte is not a character! |
| 4548 | */ |
| 4549 | p = rest_of_wildcards + 2; |
| 4550 | |
| 4551 | if (*p > 0) |
| 4552 | { |
| 4553 | (*p)--; |
| 4554 | file_path[len++] = '*'; |
| 4555 | } |
| 4556 | |
| 4557 | if (*p == 0) |
| 4558 | { |
| 4559 | /* remove '**<numb> from wildcards */ |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 4560 | STRMOVE(rest_of_wildcards, rest_of_wildcards + 3); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4561 | } |
| 4562 | else |
| 4563 | rest_of_wildcards += 3; |
| 4564 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4565 | if (stackp->ffs_star_star_empty == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4566 | { |
| 4567 | /* if not done before, expand '**' to empty */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4568 | stackp->ffs_star_star_empty = 1; |
| 4569 | dirptrs[1] = stackp->ffs_fix_path; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4570 | } |
| 4571 | } |
| 4572 | |
| 4573 | /* |
| 4574 | * Here we copy until the next path separator or the end of |
| 4575 | * the path. If we stop at a path separator, there is |
Bram Moolenaar | 7aa9f6a | 2007-05-10 18:00:30 +0000 | [diff] [blame] | 4576 | * still something else left. This is handled below by |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4577 | * pushing every directory returned from expand_wildcards() |
| 4578 | * on the stack again for further search. |
| 4579 | */ |
| 4580 | while (*rest_of_wildcards |
| 4581 | && !vim_ispathsep(*rest_of_wildcards)) |
| 4582 | file_path[len++] = *rest_of_wildcards++; |
| 4583 | |
| 4584 | file_path[len] = NUL; |
| 4585 | if (vim_ispathsep(*rest_of_wildcards)) |
| 4586 | rest_of_wildcards++; |
| 4587 | } |
| 4588 | #endif |
| 4589 | |
| 4590 | /* |
| 4591 | * Expand wildcards like "*" and "$VAR". |
| 4592 | * If the path is a URL don't try this. |
| 4593 | */ |
| 4594 | if (path_with_url(dirptrs[0])) |
| 4595 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4596 | stackp->ffs_filearray = (char_u **) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4597 | alloc((unsigned)sizeof(char *)); |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4598 | if (stackp->ffs_filearray != NULL |
| 4599 | && (stackp->ffs_filearray[0] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4600 | = vim_strsave(dirptrs[0])) != NULL) |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4601 | stackp->ffs_filearray_size = 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4602 | else |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4603 | stackp->ffs_filearray_size = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4604 | } |
| 4605 | else |
| 4606 | expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs, |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4607 | &stackp->ffs_filearray_size, |
| 4608 | &stackp->ffs_filearray, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4609 | EW_DIR|EW_ADDSLASH|EW_SILENT); |
| 4610 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4611 | stackp->ffs_filearray_cur = 0; |
| 4612 | stackp->ffs_stage = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4613 | } |
| 4614 | #ifdef FEAT_PATH_EXTRA |
| 4615 | else |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4616 | rest_of_wildcards = &stackp->ffs_wc_path[ |
| 4617 | STRLEN(stackp->ffs_wc_path)]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4618 | #endif |
| 4619 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4620 | if (stackp->ffs_stage == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4621 | { |
| 4622 | /* this is the first time we work on this directory */ |
| 4623 | #ifdef FEAT_PATH_EXTRA |
| 4624 | if (*rest_of_wildcards == NUL) |
| 4625 | #endif |
| 4626 | { |
| 4627 | /* |
| 4628 | * we don't have further wildcards to expand, so we have to |
| 4629 | * check for the final file now |
| 4630 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4631 | for (i = stackp->ffs_filearray_cur; |
| 4632 | i < stackp->ffs_filearray_size; ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4633 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4634 | if (!path_with_url(stackp->ffs_filearray[i]) |
| 4635 | && !mch_isdir(stackp->ffs_filearray[i])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4636 | continue; /* not a directory */ |
| 4637 | |
| 4638 | /* prepare the filename to be checked for existance |
| 4639 | * below */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4640 | STRCPY(file_path, stackp->ffs_filearray[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4641 | add_pathsep(file_path); |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4642 | STRCAT(file_path, search_ctx->ffsc_file_to_search); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4643 | |
| 4644 | /* |
| 4645 | * Try without extra suffix and then with suffixes |
| 4646 | * from 'suffixesadd'. |
| 4647 | */ |
| 4648 | #ifdef FEAT_SEARCHPATH |
| 4649 | len = (int)STRLEN(file_path); |
| 4650 | suf = curbuf->b_p_sua; |
| 4651 | for (;;) |
| 4652 | #endif |
| 4653 | { |
| 4654 | /* if file exists and we didn't already find it */ |
| 4655 | if ((path_with_url(file_path) |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4656 | || (mch_getperm(file_path) >= 0 |
| 4657 | && (search_ctx->ffsc_find_what |
| 4658 | == FINDFILE_BOTH |
| 4659 | || ((search_ctx->ffsc_find_what |
| 4660 | == FINDFILE_DIR) |
| 4661 | == mch_isdir(file_path))))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4662 | #ifndef FF_VERBOSE |
| 4663 | && (ff_check_visited( |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4664 | &search_ctx->ffsc_visited_list->ffvl_visited_list, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4665 | file_path |
| 4666 | #ifdef FEAT_PATH_EXTRA |
| 4667 | , (char_u *)"" |
| 4668 | #endif |
| 4669 | ) == OK) |
| 4670 | #endif |
| 4671 | ) |
| 4672 | { |
| 4673 | #ifdef FF_VERBOSE |
| 4674 | if (ff_check_visited( |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4675 | &search_ctx->ffsc_visited_list->ffvl_visited_list, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4676 | file_path |
| 4677 | #ifdef FEAT_PATH_EXTRA |
| 4678 | , (char_u *)"" |
| 4679 | #endif |
| 4680 | ) == FAIL) |
| 4681 | { |
| 4682 | if (p_verbose >= 5) |
| 4683 | { |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4684 | verbose_enter_scroll(); |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 4685 | smsg((char_u *)"Already: %s", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4686 | file_path); |
| 4687 | /* don't overwrite this either */ |
| 4688 | msg_puts((char_u *)"\n"); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4689 | verbose_leave_scroll(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4690 | } |
| 4691 | continue; |
| 4692 | } |
| 4693 | #endif |
| 4694 | |
| 4695 | /* push dir to examine rest of subdirs later */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4696 | stackp->ffs_filearray_cur = i + 1; |
| 4697 | ff_push(search_ctx, stackp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4698 | |
Bram Moolenaar | 6bab9fa | 2009-01-22 20:32:12 +0000 | [diff] [blame] | 4699 | if (!path_with_url(file_path)) |
| 4700 | simplify_filename(file_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4701 | if (mch_dirname(ff_expand_buffer, MAXPATHL) |
| 4702 | == OK) |
| 4703 | { |
| 4704 | p = shorten_fname(file_path, |
| 4705 | ff_expand_buffer); |
| 4706 | if (p != NULL) |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 4707 | STRMOVE(file_path, p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4708 | } |
| 4709 | #ifdef FF_VERBOSE |
| 4710 | if (p_verbose >= 5) |
| 4711 | { |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4712 | verbose_enter_scroll(); |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 4713 | smsg((char_u *)"HIT: %s", file_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4714 | /* don't overwrite this either */ |
| 4715 | msg_puts((char_u *)"\n"); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4716 | verbose_leave_scroll(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4717 | } |
| 4718 | #endif |
| 4719 | return file_path; |
| 4720 | } |
| 4721 | |
| 4722 | #ifdef FEAT_SEARCHPATH |
| 4723 | /* Not found or found already, try next suffix. */ |
| 4724 | if (*suf == NUL) |
| 4725 | break; |
| 4726 | copy_option_part(&suf, file_path + len, |
| 4727 | MAXPATHL - len, ","); |
| 4728 | #endif |
| 4729 | } |
| 4730 | } |
| 4731 | } |
| 4732 | #ifdef FEAT_PATH_EXTRA |
| 4733 | else |
| 4734 | { |
| 4735 | /* |
| 4736 | * still wildcards left, push the directories for further |
| 4737 | * search |
| 4738 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4739 | for (i = stackp->ffs_filearray_cur; |
| 4740 | i < stackp->ffs_filearray_size; ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4741 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4742 | if (!mch_isdir(stackp->ffs_filearray[i])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4743 | continue; /* not a directory */ |
| 4744 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4745 | ff_push(search_ctx, |
| 4746 | ff_create_stack_element( |
| 4747 | stackp->ffs_filearray[i], |
| 4748 | rest_of_wildcards, |
| 4749 | stackp->ffs_level - 1, 0)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4750 | } |
| 4751 | } |
| 4752 | #endif |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4753 | stackp->ffs_filearray_cur = 0; |
| 4754 | stackp->ffs_stage = 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4755 | } |
| 4756 | |
| 4757 | #ifdef FEAT_PATH_EXTRA |
| 4758 | /* |
| 4759 | * if wildcards contains '**' we have to descent till we reach the |
| 4760 | * leaves of the directory tree. |
| 4761 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4762 | if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4763 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4764 | for (i = stackp->ffs_filearray_cur; |
| 4765 | i < stackp->ffs_filearray_size; ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4766 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4767 | if (fnamecmp(stackp->ffs_filearray[i], |
| 4768 | stackp->ffs_fix_path) == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4769 | continue; /* don't repush same directory */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4770 | if (!mch_isdir(stackp->ffs_filearray[i])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4771 | continue; /* not a directory */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4772 | ff_push(search_ctx, |
| 4773 | ff_create_stack_element(stackp->ffs_filearray[i], |
| 4774 | stackp->ffs_wc_path, stackp->ffs_level - 1, 1)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4775 | } |
| 4776 | } |
| 4777 | #endif |
| 4778 | |
| 4779 | /* we are done with the current directory */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4780 | ff_free_stack_element(stackp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4781 | |
| 4782 | } |
| 4783 | |
| 4784 | #ifdef FEAT_PATH_EXTRA |
| 4785 | /* If we reached this, we didn't find anything downwards. |
| 4786 | * Let's check if we should do an upward search. |
| 4787 | */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4788 | if (search_ctx->ffsc_start_dir |
| 4789 | && search_ctx->ffsc_stopdirs_v != NULL && !got_int) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4790 | { |
| 4791 | ff_stack_T *sptr; |
| 4792 | |
| 4793 | /* is the last starting directory in the stop list? */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4794 | if (ff_path_in_stoplist(search_ctx->ffsc_start_dir, |
| 4795 | (int)(path_end - search_ctx->ffsc_start_dir), |
| 4796 | search_ctx->ffsc_stopdirs_v) == TRUE) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4797 | break; |
| 4798 | |
| 4799 | /* cut of last dir */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4800 | while (path_end > search_ctx->ffsc_start_dir |
| 4801 | && vim_ispathsep(*path_end)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4802 | path_end--; |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4803 | while (path_end > search_ctx->ffsc_start_dir |
| 4804 | && !vim_ispathsep(path_end[-1])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4805 | path_end--; |
| 4806 | *path_end = 0; |
| 4807 | path_end--; |
| 4808 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4809 | if (*search_ctx->ffsc_start_dir == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4810 | break; |
| 4811 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4812 | STRCPY(file_path, search_ctx->ffsc_start_dir); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4813 | add_pathsep(file_path); |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4814 | STRCAT(file_path, search_ctx->ffsc_fix_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4815 | |
| 4816 | /* create a new stack entry */ |
| 4817 | sptr = ff_create_stack_element(file_path, |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4818 | search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4819 | if (sptr == NULL) |
| 4820 | break; |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4821 | ff_push(search_ctx, sptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4822 | } |
| 4823 | else |
| 4824 | break; |
| 4825 | } |
| 4826 | #endif |
| 4827 | |
| 4828 | vim_free(file_path); |
| 4829 | return NULL; |
| 4830 | } |
| 4831 | |
| 4832 | /* |
| 4833 | * Free the list of lists of visited files and directories |
| 4834 | * Can handle it if the passed search_context is NULL; |
| 4835 | */ |
| 4836 | void |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4837 | vim_findfile_free_visited(search_ctx_arg) |
| 4838 | void *search_ctx_arg; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4839 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4840 | ff_search_ctx_T *search_ctx; |
| 4841 | |
| 4842 | if (search_ctx_arg == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4843 | return; |
| 4844 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 4845 | search_ctx = (ff_search_ctx_T *)search_ctx_arg; |
| 4846 | vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list); |
| 4847 | vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4848 | } |
| 4849 | |
| 4850 | static void |
| 4851 | vim_findfile_free_visited_list(list_headp) |
| 4852 | ff_visited_list_hdr_T **list_headp; |
| 4853 | { |
| 4854 | ff_visited_list_hdr_T *vp; |
| 4855 | |
| 4856 | while (*list_headp != NULL) |
| 4857 | { |
| 4858 | vp = (*list_headp)->ffvl_next; |
| 4859 | ff_free_visited_list((*list_headp)->ffvl_visited_list); |
| 4860 | |
| 4861 | vim_free((*list_headp)->ffvl_filename); |
| 4862 | vim_free(*list_headp); |
| 4863 | *list_headp = vp; |
| 4864 | } |
| 4865 | *list_headp = NULL; |
| 4866 | } |
| 4867 | |
| 4868 | static void |
| 4869 | ff_free_visited_list(vl) |
| 4870 | ff_visited_T *vl; |
| 4871 | { |
| 4872 | ff_visited_T *vp; |
| 4873 | |
| 4874 | while (vl != NULL) |
| 4875 | { |
| 4876 | vp = vl->ffv_next; |
| 4877 | #ifdef FEAT_PATH_EXTRA |
| 4878 | vim_free(vl->ffv_wc_path); |
| 4879 | #endif |
| 4880 | vim_free(vl); |
| 4881 | vl = vp; |
| 4882 | } |
| 4883 | vl = NULL; |
| 4884 | } |
| 4885 | |
| 4886 | /* |
| 4887 | * Returns the already visited list for the given filename. If none is found it |
| 4888 | * allocates a new one. |
| 4889 | */ |
| 4890 | static ff_visited_list_hdr_T* |
| 4891 | ff_get_visited_list(filename, list_headp) |
| 4892 | char_u *filename; |
| 4893 | ff_visited_list_hdr_T **list_headp; |
| 4894 | { |
| 4895 | ff_visited_list_hdr_T *retptr = NULL; |
| 4896 | |
| 4897 | /* check if a visited list for the given filename exists */ |
| 4898 | if (*list_headp != NULL) |
| 4899 | { |
| 4900 | retptr = *list_headp; |
| 4901 | while (retptr != NULL) |
| 4902 | { |
| 4903 | if (fnamecmp(filename, retptr->ffvl_filename) == 0) |
| 4904 | { |
| 4905 | #ifdef FF_VERBOSE |
| 4906 | if (p_verbose >= 5) |
| 4907 | { |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4908 | verbose_enter_scroll(); |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 4909 | smsg((char_u *)"ff_get_visited_list: FOUND list for %s", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4910 | filename); |
| 4911 | /* don't overwrite this either */ |
| 4912 | msg_puts((char_u *)"\n"); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4913 | verbose_leave_scroll(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4914 | } |
| 4915 | #endif |
| 4916 | return retptr; |
| 4917 | } |
| 4918 | retptr = retptr->ffvl_next; |
| 4919 | } |
| 4920 | } |
| 4921 | |
| 4922 | #ifdef FF_VERBOSE |
| 4923 | if (p_verbose >= 5) |
| 4924 | { |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4925 | verbose_enter_scroll(); |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 4926 | smsg((char_u *)"ff_get_visited_list: new list for %s", filename); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4927 | /* don't overwrite this either */ |
| 4928 | msg_puts((char_u *)"\n"); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 4929 | verbose_leave_scroll(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4930 | } |
| 4931 | #endif |
| 4932 | |
| 4933 | /* |
| 4934 | * if we reach this we didn't find a list and we have to allocate new list |
| 4935 | */ |
| 4936 | retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr)); |
| 4937 | if (retptr == NULL) |
| 4938 | return NULL; |
| 4939 | |
| 4940 | retptr->ffvl_visited_list = NULL; |
| 4941 | retptr->ffvl_filename = vim_strsave(filename); |
| 4942 | if (retptr->ffvl_filename == NULL) |
| 4943 | { |
| 4944 | vim_free(retptr); |
| 4945 | return NULL; |
| 4946 | } |
| 4947 | retptr->ffvl_next = *list_headp; |
| 4948 | *list_headp = retptr; |
| 4949 | |
| 4950 | return retptr; |
| 4951 | } |
| 4952 | |
| 4953 | #ifdef FEAT_PATH_EXTRA |
| 4954 | /* |
| 4955 | * check if two wildcard paths are equal. Returns TRUE or FALSE. |
| 4956 | * They are equal if: |
| 4957 | * - both paths are NULL |
| 4958 | * - they have the same length |
| 4959 | * - char by char comparison is OK |
| 4960 | * - the only differences are in the counters behind a '**', so |
| 4961 | * '**\20' is equal to '**\24' |
| 4962 | */ |
| 4963 | static int |
| 4964 | ff_wc_equal(s1, s2) |
| 4965 | char_u *s1; |
| 4966 | char_u *s2; |
| 4967 | { |
| 4968 | int i; |
| 4969 | |
| 4970 | if (s1 == s2) |
| 4971 | return TRUE; |
| 4972 | |
| 4973 | if (s1 == NULL || s2 == NULL) |
| 4974 | return FALSE; |
| 4975 | |
| 4976 | if (STRLEN(s1) != STRLEN(s2)) |
| 4977 | return FAIL; |
| 4978 | |
| 4979 | for (i = 0; s1[i] != NUL && s2[i] != NUL; i++) |
| 4980 | { |
| 4981 | if (s1[i] != s2[i] |
| 4982 | #ifdef CASE_INSENSITIVE_FILENAME |
| 4983 | && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i]) |
| 4984 | #endif |
| 4985 | ) |
| 4986 | { |
| 4987 | if (i >= 2) |
| 4988 | if (s1[i-1] == '*' && s1[i-2] == '*') |
| 4989 | continue; |
| 4990 | else |
| 4991 | return FAIL; |
| 4992 | else |
| 4993 | return FAIL; |
| 4994 | } |
| 4995 | } |
| 4996 | return TRUE; |
| 4997 | } |
| 4998 | #endif |
| 4999 | |
| 5000 | /* |
| 5001 | * maintains the list of already visited files and dirs |
| 5002 | * returns FAIL if the given file/dir is already in the list |
| 5003 | * returns OK if it is newly added |
| 5004 | * |
| 5005 | * TODO: What to do on memory allocation problems? |
| 5006 | * -> return TRUE - Better the file is found several times instead of |
| 5007 | * never. |
| 5008 | */ |
| 5009 | static int |
| 5010 | ff_check_visited(visited_list, fname |
| 5011 | #ifdef FEAT_PATH_EXTRA |
| 5012 | , wc_path |
| 5013 | #endif |
| 5014 | ) |
| 5015 | ff_visited_T **visited_list; |
| 5016 | char_u *fname; |
| 5017 | #ifdef FEAT_PATH_EXTRA |
| 5018 | char_u *wc_path; |
| 5019 | #endif |
| 5020 | { |
| 5021 | ff_visited_T *vp; |
| 5022 | #ifdef UNIX |
| 5023 | struct stat st; |
| 5024 | int url = FALSE; |
| 5025 | #endif |
| 5026 | |
| 5027 | /* For an URL we only compare the name, otherwise we compare the |
| 5028 | * device/inode (unix) or the full path name (not Unix). */ |
| 5029 | if (path_with_url(fname)) |
| 5030 | { |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 5031 | vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5032 | #ifdef UNIX |
| 5033 | url = TRUE; |
| 5034 | #endif |
| 5035 | } |
| 5036 | else |
| 5037 | { |
| 5038 | ff_expand_buffer[0] = NUL; |
| 5039 | #ifdef UNIX |
| 5040 | if (mch_stat((char *)fname, &st) < 0) |
| 5041 | #else |
| 5042 | if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL) |
| 5043 | #endif |
| 5044 | return FAIL; |
| 5045 | } |
| 5046 | |
| 5047 | /* check against list of already visited files */ |
| 5048 | for (vp = *visited_list; vp != NULL; vp = vp->ffv_next) |
| 5049 | { |
| 5050 | if ( |
| 5051 | #ifdef UNIX |
| 5052 | !url |
| 5053 | ? (vp->ffv_dev == st.st_dev |
| 5054 | && vp->ffv_ino == st.st_ino) |
| 5055 | : |
| 5056 | #endif |
| 5057 | fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0 |
| 5058 | ) |
| 5059 | { |
| 5060 | #ifdef FEAT_PATH_EXTRA |
| 5061 | /* are the wildcard parts equal */ |
| 5062 | if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE) |
| 5063 | #endif |
| 5064 | /* already visited */ |
| 5065 | return FAIL; |
| 5066 | } |
| 5067 | } |
| 5068 | |
| 5069 | /* |
| 5070 | * New file/dir. Add it to the list of visited files/dirs. |
| 5071 | */ |
| 5072 | vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T) |
| 5073 | + STRLEN(ff_expand_buffer))); |
| 5074 | |
| 5075 | if (vp != NULL) |
| 5076 | { |
| 5077 | #ifdef UNIX |
| 5078 | if (!url) |
| 5079 | { |
| 5080 | vp->ffv_ino = st.st_ino; |
| 5081 | vp->ffv_dev = st.st_dev; |
| 5082 | vp->ffv_fname[0] = NUL; |
| 5083 | } |
| 5084 | else |
| 5085 | { |
| 5086 | vp->ffv_ino = 0; |
| 5087 | vp->ffv_dev = -1; |
| 5088 | #endif |
| 5089 | STRCPY(vp->ffv_fname, ff_expand_buffer); |
| 5090 | #ifdef UNIX |
| 5091 | } |
| 5092 | #endif |
| 5093 | #ifdef FEAT_PATH_EXTRA |
| 5094 | if (wc_path != NULL) |
| 5095 | vp->ffv_wc_path = vim_strsave(wc_path); |
| 5096 | else |
| 5097 | vp->ffv_wc_path = NULL; |
| 5098 | #endif |
| 5099 | |
| 5100 | vp->ffv_next = *visited_list; |
| 5101 | *visited_list = vp; |
| 5102 | } |
| 5103 | |
| 5104 | return OK; |
| 5105 | } |
| 5106 | |
| 5107 | /* |
| 5108 | * create stack element from given path pieces |
| 5109 | */ |
| 5110 | static ff_stack_T * |
| 5111 | ff_create_stack_element(fix_part, |
| 5112 | #ifdef FEAT_PATH_EXTRA |
| 5113 | wc_part, |
| 5114 | #endif |
| 5115 | level, star_star_empty) |
| 5116 | char_u *fix_part; |
| 5117 | #ifdef FEAT_PATH_EXTRA |
| 5118 | char_u *wc_part; |
| 5119 | #endif |
| 5120 | int level; |
| 5121 | int star_star_empty; |
| 5122 | { |
| 5123 | ff_stack_T *new; |
| 5124 | |
| 5125 | new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T)); |
| 5126 | if (new == NULL) |
| 5127 | return NULL; |
| 5128 | |
| 5129 | new->ffs_prev = NULL; |
| 5130 | new->ffs_filearray = NULL; |
| 5131 | new->ffs_filearray_size = 0; |
| 5132 | new->ffs_filearray_cur = 0; |
| 5133 | new->ffs_stage = 0; |
| 5134 | new->ffs_level = level; |
| 5135 | new->ffs_star_star_empty = star_star_empty;; |
| 5136 | |
| 5137 | /* the following saves NULL pointer checks in vim_findfile */ |
| 5138 | if (fix_part == NULL) |
| 5139 | fix_part = (char_u *)""; |
| 5140 | new->ffs_fix_path = vim_strsave(fix_part); |
| 5141 | |
| 5142 | #ifdef FEAT_PATH_EXTRA |
| 5143 | if (wc_part == NULL) |
| 5144 | wc_part = (char_u *)""; |
| 5145 | new->ffs_wc_path = vim_strsave(wc_part); |
| 5146 | #endif |
| 5147 | |
| 5148 | if (new->ffs_fix_path == NULL |
| 5149 | #ifdef FEAT_PATH_EXTRA |
| 5150 | || new->ffs_wc_path == NULL |
| 5151 | #endif |
| 5152 | ) |
| 5153 | { |
| 5154 | ff_free_stack_element(new); |
| 5155 | new = NULL; |
| 5156 | } |
| 5157 | |
| 5158 | return new; |
| 5159 | } |
| 5160 | |
| 5161 | /* |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5162 | * Push a dir on the directory stack. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5163 | */ |
| 5164 | static void |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5165 | ff_push(search_ctx, stack_ptr) |
| 5166 | ff_search_ctx_T *search_ctx; |
| 5167 | ff_stack_T *stack_ptr; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5168 | { |
| 5169 | /* check for NULL pointer, not to return an error to the user, but |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5170 | * to prevent a crash */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5171 | if (stack_ptr != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5172 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5173 | stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr; |
| 5174 | search_ctx->ffsc_stack_ptr = stack_ptr; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5175 | } |
| 5176 | } |
| 5177 | |
| 5178 | /* |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5179 | * Pop a dir from the directory stack. |
| 5180 | * Returns NULL if stack is empty. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5181 | */ |
| 5182 | static ff_stack_T * |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5183 | ff_pop(search_ctx) |
| 5184 | ff_search_ctx_T *search_ctx; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5185 | { |
| 5186 | ff_stack_T *sptr; |
| 5187 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5188 | sptr = search_ctx->ffsc_stack_ptr; |
| 5189 | if (search_ctx->ffsc_stack_ptr != NULL) |
| 5190 | search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5191 | |
| 5192 | return sptr; |
| 5193 | } |
| 5194 | |
| 5195 | /* |
| 5196 | * free the given stack element |
| 5197 | */ |
| 5198 | static void |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5199 | ff_free_stack_element(stack_ptr) |
| 5200 | ff_stack_T *stack_ptr; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5201 | { |
| 5202 | /* vim_free handles possible NULL pointers */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5203 | vim_free(stack_ptr->ffs_fix_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5204 | #ifdef FEAT_PATH_EXTRA |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5205 | vim_free(stack_ptr->ffs_wc_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5206 | #endif |
| 5207 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5208 | if (stack_ptr->ffs_filearray != NULL) |
| 5209 | FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5210 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5211 | vim_free(stack_ptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5212 | } |
| 5213 | |
| 5214 | /* |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5215 | * Clear the search context, but NOT the visited list. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5216 | */ |
| 5217 | static void |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5218 | ff_clear(search_ctx) |
| 5219 | ff_search_ctx_T *search_ctx; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5220 | { |
| 5221 | ff_stack_T *sptr; |
| 5222 | |
| 5223 | /* clear up stack */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5224 | while ((sptr = ff_pop(search_ctx)) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5225 | ff_free_stack_element(sptr); |
| 5226 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5227 | vim_free(search_ctx->ffsc_file_to_search); |
| 5228 | vim_free(search_ctx->ffsc_start_dir); |
| 5229 | vim_free(search_ctx->ffsc_fix_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5230 | #ifdef FEAT_PATH_EXTRA |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5231 | vim_free(search_ctx->ffsc_wc_path); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5232 | #endif |
| 5233 | |
| 5234 | #ifdef FEAT_PATH_EXTRA |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5235 | if (search_ctx->ffsc_stopdirs_v != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5236 | { |
| 5237 | int i = 0; |
| 5238 | |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5239 | while (search_ctx->ffsc_stopdirs_v[i] != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5240 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5241 | vim_free(search_ctx->ffsc_stopdirs_v[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5242 | i++; |
| 5243 | } |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5244 | vim_free(search_ctx->ffsc_stopdirs_v); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5245 | } |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5246 | search_ctx->ffsc_stopdirs_v = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5247 | #endif |
| 5248 | |
| 5249 | /* reset everything */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5250 | search_ctx->ffsc_file_to_search = NULL; |
| 5251 | search_ctx->ffsc_start_dir = NULL; |
| 5252 | search_ctx->ffsc_fix_path = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5253 | #ifdef FEAT_PATH_EXTRA |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5254 | search_ctx->ffsc_wc_path = NULL; |
| 5255 | search_ctx->ffsc_level = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5256 | #endif |
| 5257 | } |
| 5258 | |
| 5259 | #ifdef FEAT_PATH_EXTRA |
| 5260 | /* |
| 5261 | * check if the given path is in the stopdirs |
| 5262 | * returns TRUE if yes else FALSE |
| 5263 | */ |
| 5264 | static int |
| 5265 | ff_path_in_stoplist(path, path_len, stopdirs_v) |
| 5266 | char_u *path; |
| 5267 | int path_len; |
| 5268 | char_u **stopdirs_v; |
| 5269 | { |
| 5270 | int i = 0; |
| 5271 | |
| 5272 | /* eat up trailing path separators, except the first */ |
Bram Moolenaar | 1d94f9b | 2005-08-04 21:29:45 +0000 | [diff] [blame] | 5273 | while (path_len > 1 && vim_ispathsep(path[path_len - 1])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5274 | path_len--; |
| 5275 | |
| 5276 | /* if no path consider it as match */ |
| 5277 | if (path_len == 0) |
| 5278 | return TRUE; |
| 5279 | |
| 5280 | for (i = 0; stopdirs_v[i] != NULL; i++) |
| 5281 | { |
| 5282 | if ((int)STRLEN(stopdirs_v[i]) > path_len) |
| 5283 | { |
| 5284 | /* match for parent directory. So '/home' also matches |
| 5285 | * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else |
| 5286 | * '/home/r' would also match '/home/rks' |
| 5287 | */ |
| 5288 | if (fnamencmp(stopdirs_v[i], path, path_len) == 0 |
Bram Moolenaar | 1d94f9b | 2005-08-04 21:29:45 +0000 | [diff] [blame] | 5289 | && vim_ispathsep(stopdirs_v[i][path_len])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5290 | return TRUE; |
| 5291 | } |
| 5292 | else |
| 5293 | { |
| 5294 | if (fnamecmp(stopdirs_v[i], path) == 0) |
| 5295 | return TRUE; |
| 5296 | } |
| 5297 | } |
| 5298 | return FALSE; |
| 5299 | } |
| 5300 | #endif |
| 5301 | |
| 5302 | #if defined(FEAT_SEARCHPATH) || defined(PROTO) |
| 5303 | /* |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5304 | * Find the file name "ptr[len]" in the path. Also finds directory names. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5305 | * |
| 5306 | * On the first call set the parameter 'first' to TRUE to initialize |
| 5307 | * the search. For repeating calls to FALSE. |
| 5308 | * |
| 5309 | * Repeating calls will return other files called 'ptr[len]' from the path. |
| 5310 | * |
| 5311 | * Only on the first call 'ptr' and 'len' are used. For repeating calls they |
| 5312 | * don't need valid values. |
| 5313 | * |
| 5314 | * If nothing found on the first call the option FNAME_MESS will issue the |
| 5315 | * message: |
| 5316 | * 'Can't find file "<file>" in path' |
| 5317 | * On repeating calls: |
| 5318 | * 'No more file "<file>" found in path' |
| 5319 | * |
| 5320 | * options: |
| 5321 | * FNAME_MESS give error message when not found |
| 5322 | * |
| 5323 | * Uses NameBuff[]! |
| 5324 | * |
| 5325 | * Returns an allocated string for the file name. NULL for error. |
| 5326 | * |
| 5327 | */ |
| 5328 | char_u * |
| 5329 | find_file_in_path(ptr, len, options, first, rel_fname) |
| 5330 | char_u *ptr; /* file name */ |
| 5331 | int len; /* length of file name */ |
| 5332 | int options; |
| 5333 | int first; /* use count'th matching file name */ |
| 5334 | char_u *rel_fname; /* file name searching relative to */ |
| 5335 | { |
| 5336 | return find_file_in_path_option(ptr, len, options, first, |
| 5337 | *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path, |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5338 | FINDFILE_BOTH, rel_fname, curbuf->b_p_sua); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5339 | } |
| 5340 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5341 | static char_u *ff_file_to_find = NULL; |
| 5342 | static void *fdip_search_ctx = NULL; |
| 5343 | |
| 5344 | #if defined(EXITFREE) |
| 5345 | static void |
| 5346 | free_findfile() |
| 5347 | { |
| 5348 | vim_free(ff_file_to_find); |
| 5349 | vim_findfile_cleanup(fdip_search_ctx); |
| 5350 | } |
| 5351 | #endif |
| 5352 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5353 | /* |
| 5354 | * Find the directory name "ptr[len]" in the path. |
| 5355 | * |
| 5356 | * options: |
| 5357 | * FNAME_MESS give error message when not found |
| 5358 | * |
| 5359 | * Uses NameBuff[]! |
| 5360 | * |
| 5361 | * Returns an allocated string for the file name. NULL for error. |
| 5362 | */ |
| 5363 | char_u * |
| 5364 | find_directory_in_path(ptr, len, options, rel_fname) |
| 5365 | char_u *ptr; /* file name */ |
| 5366 | int len; /* length of file name */ |
| 5367 | int options; |
| 5368 | char_u *rel_fname; /* file name searching relative to */ |
| 5369 | { |
| 5370 | return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath, |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5371 | FINDFILE_DIR, rel_fname, (char_u *)""); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5372 | } |
| 5373 | |
Bram Moolenaar | 89cb5e0 | 2004-07-19 20:55:54 +0000 | [diff] [blame] | 5374 | char_u * |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5375 | find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5376 | char_u *ptr; /* file name */ |
| 5377 | int len; /* length of file name */ |
| 5378 | int options; |
| 5379 | int first; /* use count'th matching file name */ |
| 5380 | char_u *path_option; /* p_path or p_cdpath */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5381 | int find_what; /* FINDFILE_FILE, _DIR or _BOTH */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5382 | char_u *rel_fname; /* file name we are looking relative to. */ |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 5383 | char_u *suffixes; /* list of suffixes, 'suffixesadd' option */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5384 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5385 | static char_u *dir; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5386 | static int did_findfile_init = FALSE; |
| 5387 | char_u save_char; |
| 5388 | char_u *file_name = NULL; |
| 5389 | char_u *buf = NULL; |
| 5390 | int rel_to_curdir; |
| 5391 | #ifdef AMIGA |
| 5392 | struct Process *proc = (struct Process *)FindTask(0L); |
| 5393 | APTR save_winptr = proc->pr_WindowPtr; |
| 5394 | |
| 5395 | /* Avoid a requester here for a volume that doesn't exist. */ |
| 5396 | proc->pr_WindowPtr = (APTR)-1L; |
| 5397 | #endif |
| 5398 | |
| 5399 | if (first == TRUE) |
| 5400 | { |
| 5401 | /* copy file name into NameBuff, expanding environment variables */ |
| 5402 | save_char = ptr[len]; |
| 5403 | ptr[len] = NUL; |
| 5404 | expand_env(ptr, NameBuff, MAXPATHL); |
| 5405 | ptr[len] = save_char; |
| 5406 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5407 | vim_free(ff_file_to_find); |
| 5408 | ff_file_to_find = vim_strsave(NameBuff); |
| 5409 | if (ff_file_to_find == NULL) /* out of memory */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5410 | { |
| 5411 | file_name = NULL; |
| 5412 | goto theend; |
| 5413 | } |
| 5414 | } |
| 5415 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5416 | rel_to_curdir = (ff_file_to_find[0] == '.' |
| 5417 | && (ff_file_to_find[1] == NUL |
| 5418 | || vim_ispathsep(ff_file_to_find[1]) |
| 5419 | || (ff_file_to_find[1] == '.' |
| 5420 | && (ff_file_to_find[2] == NUL |
| 5421 | || vim_ispathsep(ff_file_to_find[2]))))); |
| 5422 | if (vim_isAbsName(ff_file_to_find) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5423 | /* "..", "../path", "." and "./path": don't use the path_option */ |
| 5424 | || rel_to_curdir |
| 5425 | #if defined(MSWIN) || defined(MSDOS) || defined(OS2) |
| 5426 | /* handle "\tmp" as absolute path */ |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5427 | || vim_ispathsep(ff_file_to_find[0]) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5428 | /* handle "c:name" as absulute path */ |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5429 | || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5430 | #endif |
| 5431 | #ifdef AMIGA |
| 5432 | /* handle ":tmp" as absolute path */ |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5433 | || ff_file_to_find[0] == ':' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5434 | #endif |
| 5435 | ) |
| 5436 | { |
| 5437 | /* |
| 5438 | * Absolute path, no need to use "path_option". |
| 5439 | * If this is not a first call, return NULL. We already returned a |
| 5440 | * filename on the first call. |
| 5441 | */ |
| 5442 | if (first == TRUE) |
| 5443 | { |
| 5444 | int l; |
| 5445 | int run; |
| 5446 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5447 | if (path_with_url(ff_file_to_find)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5448 | { |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5449 | file_name = vim_strsave(ff_file_to_find); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5450 | goto theend; |
| 5451 | } |
| 5452 | |
| 5453 | /* When FNAME_REL flag given first use the directory of the file. |
| 5454 | * Otherwise or when this fails use the current directory. */ |
| 5455 | for (run = 1; run <= 2; ++run) |
| 5456 | { |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5457 | l = (int)STRLEN(ff_file_to_find); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5458 | if (run == 1 |
| 5459 | && rel_to_curdir |
| 5460 | && (options & FNAME_REL) |
| 5461 | && rel_fname != NULL |
| 5462 | && STRLEN(rel_fname) + l < MAXPATHL) |
| 5463 | { |
| 5464 | STRCPY(NameBuff, rel_fname); |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5465 | STRCPY(gettail(NameBuff), ff_file_to_find); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5466 | l = (int)STRLEN(NameBuff); |
| 5467 | } |
| 5468 | else |
| 5469 | { |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5470 | STRCPY(NameBuff, ff_file_to_find); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5471 | run = 2; |
| 5472 | } |
| 5473 | |
| 5474 | /* When the file doesn't exist, try adding parts of |
| 5475 | * 'suffixesadd'. */ |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 5476 | buf = suffixes; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5477 | for (;;) |
| 5478 | { |
| 5479 | if ( |
| 5480 | #ifdef DJGPP |
| 5481 | /* "C:" by itself will fail for mch_getperm(), |
| 5482 | * assume it's always valid. */ |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5483 | (find_what != FINDFILE_FILE && NameBuff[0] != NUL |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5484 | && NameBuff[1] == ':' |
| 5485 | && NameBuff[2] == NUL) || |
| 5486 | #endif |
| 5487 | (mch_getperm(NameBuff) >= 0 |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5488 | && (find_what == FINDFILE_BOTH |
| 5489 | || ((find_what == FINDFILE_DIR) |
| 5490 | == mch_isdir(NameBuff))))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5491 | { |
| 5492 | file_name = vim_strsave(NameBuff); |
| 5493 | goto theend; |
| 5494 | } |
| 5495 | if (*buf == NUL) |
| 5496 | break; |
| 5497 | copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ","); |
| 5498 | } |
| 5499 | } |
| 5500 | } |
| 5501 | } |
| 5502 | else |
| 5503 | { |
| 5504 | /* |
| 5505 | * Loop over all paths in the 'path' or 'cdpath' option. |
| 5506 | * When "first" is set, first setup to the start of the option. |
| 5507 | * Otherwise continue to find the next match. |
| 5508 | */ |
| 5509 | if (first == TRUE) |
| 5510 | { |
| 5511 | /* vim_findfile_free_visited can handle a possible NULL pointer */ |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5512 | vim_findfile_free_visited(fdip_search_ctx); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5513 | dir = path_option; |
| 5514 | did_findfile_init = FALSE; |
| 5515 | } |
| 5516 | |
| 5517 | for (;;) |
| 5518 | { |
| 5519 | if (did_findfile_init) |
| 5520 | { |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5521 | file_name = vim_findfile(fdip_search_ctx); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5522 | if (file_name != NULL) |
| 5523 | break; |
| 5524 | |
| 5525 | did_findfile_init = FALSE; |
| 5526 | } |
| 5527 | else |
| 5528 | { |
| 5529 | char_u *r_ptr; |
| 5530 | |
| 5531 | if (dir == NULL || *dir == NUL) |
| 5532 | { |
| 5533 | /* We searched all paths of the option, now we can |
| 5534 | * free the search context. */ |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5535 | vim_findfile_cleanup(fdip_search_ctx); |
| 5536 | fdip_search_ctx = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5537 | break; |
| 5538 | } |
| 5539 | |
| 5540 | if ((buf = alloc((int)(MAXPATHL))) == NULL) |
| 5541 | break; |
| 5542 | |
| 5543 | /* copy next path */ |
| 5544 | buf[0] = 0; |
| 5545 | copy_option_part(&dir, buf, MAXPATHL, " ,"); |
| 5546 | |
| 5547 | #ifdef FEAT_PATH_EXTRA |
| 5548 | /* get the stopdir string */ |
| 5549 | r_ptr = vim_findfile_stopdir(buf); |
| 5550 | #else |
| 5551 | r_ptr = NULL; |
| 5552 | #endif |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5553 | fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find, |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5554 | r_ptr, 100, FALSE, find_what, |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5555 | fdip_search_ctx, FALSE, rel_fname); |
| 5556 | if (fdip_search_ctx != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5557 | did_findfile_init = TRUE; |
| 5558 | vim_free(buf); |
| 5559 | } |
| 5560 | } |
| 5561 | } |
| 5562 | if (file_name == NULL && (options & FNAME_MESS)) |
| 5563 | { |
| 5564 | if (first == TRUE) |
| 5565 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5566 | if (find_what == FINDFILE_DIR) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5567 | EMSG2(_("E344: Can't find directory \"%s\" in cdpath"), |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5568 | ff_file_to_find); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5569 | else |
| 5570 | EMSG2(_("E345: Can't find file \"%s\" in path"), |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5571 | ff_file_to_find); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5572 | } |
| 5573 | else |
| 5574 | { |
Bram Moolenaar | 4d0ec16 | 2008-02-20 11:24:52 +0000 | [diff] [blame] | 5575 | if (find_what == FINDFILE_DIR) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5576 | EMSG2(_("E346: No more directory \"%s\" found in cdpath"), |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5577 | ff_file_to_find); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5578 | else |
| 5579 | EMSG2(_("E347: No more file \"%s\" found in path"), |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5580 | ff_file_to_find); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5581 | } |
| 5582 | } |
| 5583 | |
| 5584 | theend: |
| 5585 | #ifdef AMIGA |
| 5586 | proc->pr_WindowPtr = save_winptr; |
| 5587 | #endif |
| 5588 | return file_name; |
| 5589 | } |
| 5590 | |
| 5591 | #endif /* FEAT_SEARCHPATH */ |
| 5592 | |
| 5593 | /* |
| 5594 | * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search |
| 5595 | * 'cdpath' for relative directory names, otherwise just mch_chdir(). |
| 5596 | */ |
| 5597 | int |
| 5598 | vim_chdir(new_dir) |
| 5599 | char_u *new_dir; |
| 5600 | { |
| 5601 | #ifndef FEAT_SEARCHPATH |
| 5602 | return mch_chdir((char *)new_dir); |
| 5603 | #else |
| 5604 | char_u *dir_name; |
| 5605 | int r; |
| 5606 | |
| 5607 | dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir), |
| 5608 | FNAME_MESS, curbuf->b_ffname); |
| 5609 | if (dir_name == NULL) |
| 5610 | return -1; |
| 5611 | r = mch_chdir((char *)dir_name); |
| 5612 | vim_free(dir_name); |
| 5613 | return r; |
| 5614 | #endif |
| 5615 | } |
| 5616 | |
| 5617 | /* |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 5618 | * Get user name from machine-specific function. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5619 | * Returns the user name in "buf[len]". |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 5620 | * Some systems are quite slow in obtaining the user name (Windows NT), thus |
| 5621 | * cache the result. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5622 | * Returns OK or FAIL. |
| 5623 | */ |
| 5624 | int |
| 5625 | get_user_name(buf, len) |
| 5626 | char_u *buf; |
| 5627 | int len; |
| 5628 | { |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5629 | if (username == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5630 | { |
| 5631 | if (mch_get_user_name(buf, len) == FAIL) |
| 5632 | return FAIL; |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5633 | username = vim_strsave(buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5634 | } |
| 5635 | else |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 5636 | vim_strncpy(buf, username, len - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5637 | return OK; |
| 5638 | } |
| 5639 | |
| 5640 | #ifndef HAVE_QSORT |
| 5641 | /* |
| 5642 | * Our own qsort(), for systems that don't have it. |
| 5643 | * It's simple and slow. From the K&R C book. |
| 5644 | */ |
| 5645 | void |
| 5646 | qsort(base, elm_count, elm_size, cmp) |
| 5647 | void *base; |
| 5648 | size_t elm_count; |
| 5649 | size_t elm_size; |
| 5650 | int (*cmp) __ARGS((const void *, const void *)); |
| 5651 | { |
| 5652 | char_u *buf; |
| 5653 | char_u *p1; |
| 5654 | char_u *p2; |
| 5655 | int i, j; |
| 5656 | int gap; |
| 5657 | |
| 5658 | buf = alloc((unsigned)elm_size); |
| 5659 | if (buf == NULL) |
| 5660 | return; |
| 5661 | |
| 5662 | for (gap = elm_count / 2; gap > 0; gap /= 2) |
| 5663 | for (i = gap; i < elm_count; ++i) |
| 5664 | for (j = i - gap; j >= 0; j -= gap) |
| 5665 | { |
| 5666 | /* Compare the elements. */ |
| 5667 | p1 = (char_u *)base + j * elm_size; |
| 5668 | p2 = (char_u *)base + (j + gap) * elm_size; |
| 5669 | if ((*cmp)((void *)p1, (void *)p2) <= 0) |
| 5670 | break; |
| 5671 | /* Exchange the elemets. */ |
| 5672 | mch_memmove(buf, p1, elm_size); |
| 5673 | mch_memmove(p1, p2, elm_size); |
| 5674 | mch_memmove(p2, buf, elm_size); |
| 5675 | } |
| 5676 | |
| 5677 | vim_free(buf); |
| 5678 | } |
| 5679 | #endif |
| 5680 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5681 | /* |
| 5682 | * Sort an array of strings. |
| 5683 | */ |
| 5684 | static int |
| 5685 | #ifdef __BORLANDC__ |
| 5686 | _RTLENTRYF |
| 5687 | #endif |
| 5688 | sort_compare __ARGS((const void *s1, const void *s2)); |
| 5689 | |
| 5690 | static int |
| 5691 | #ifdef __BORLANDC__ |
| 5692 | _RTLENTRYF |
| 5693 | #endif |
| 5694 | sort_compare(s1, s2) |
| 5695 | const void *s1; |
| 5696 | const void *s2; |
| 5697 | { |
| 5698 | return STRCMP(*(char **)s1, *(char **)s2); |
| 5699 | } |
| 5700 | |
| 5701 | void |
| 5702 | sort_strings(files, count) |
| 5703 | char_u **files; |
| 5704 | int count; |
| 5705 | { |
| 5706 | qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare); |
| 5707 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5708 | |
| 5709 | #if !defined(NO_EXPANDPATH) || defined(PROTO) |
| 5710 | /* |
| 5711 | * Compare path "p[]" to "q[]". |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5712 | * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5713 | * Return value like strcmp(p, q), but consider path separators. |
| 5714 | */ |
| 5715 | int |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5716 | pathcmp(p, q, maxlen) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5717 | const char *p, *q; |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5718 | int maxlen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5719 | { |
| 5720 | int i; |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 5721 | const char *s = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5722 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5723 | for (i = 0; maxlen < 0 || i < maxlen; ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5724 | { |
| 5725 | /* End of "p": check if "q" also ends or just has a slash. */ |
| 5726 | if (p[i] == NUL) |
| 5727 | { |
| 5728 | if (q[i] == NUL) /* full match */ |
| 5729 | return 0; |
| 5730 | s = q; |
| 5731 | break; |
| 5732 | } |
| 5733 | |
| 5734 | /* End of "q": check if "p" just has a slash. */ |
| 5735 | if (q[i] == NUL) |
| 5736 | { |
| 5737 | s = p; |
| 5738 | break; |
| 5739 | } |
| 5740 | |
| 5741 | if ( |
| 5742 | #ifdef CASE_INSENSITIVE_FILENAME |
| 5743 | TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i]) |
| 5744 | #else |
| 5745 | p[i] != q[i] |
| 5746 | #endif |
| 5747 | #ifdef BACKSLASH_IN_FILENAME |
| 5748 | /* consider '/' and '\\' to be equal */ |
| 5749 | && !((p[i] == '/' && q[i] == '\\') |
| 5750 | || (p[i] == '\\' && q[i] == '/')) |
| 5751 | #endif |
| 5752 | ) |
| 5753 | { |
| 5754 | if (vim_ispathsep(p[i])) |
| 5755 | return -1; |
| 5756 | if (vim_ispathsep(q[i])) |
| 5757 | return 1; |
| 5758 | return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */ |
| 5759 | } |
| 5760 | } |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 5761 | if (s == NULL) /* "i" ran into "maxlen" */ |
| 5762 | return 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5763 | |
| 5764 | /* ignore a trailing slash, but not "//" or ":/" */ |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 5765 | if (s[i + 1] == NUL |
| 5766 | && i > 0 |
| 5767 | && !after_pathsep((char_u *)s, (char_u *)s + i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5768 | #ifdef BACKSLASH_IN_FILENAME |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 5769 | && (s[i] == '/' || s[i] == '\\') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5770 | #else |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 5771 | && s[i] == '/' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5772 | #endif |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 5773 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5774 | return 0; /* match with trailing slash */ |
| 5775 | if (s == q) |
| 5776 | return -1; /* no match */ |
| 5777 | return 1; |
| 5778 | } |
| 5779 | #endif |
| 5780 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5781 | /* |
| 5782 | * The putenv() implementation below comes from the "screen" program. |
| 5783 | * Included with permission from Juergen Weigert. |
| 5784 | * See pty.c for the copyright notice. |
| 5785 | */ |
| 5786 | |
| 5787 | /* |
| 5788 | * putenv -- put value into environment |
| 5789 | * |
| 5790 | * Usage: i = putenv (string) |
| 5791 | * int i; |
| 5792 | * char *string; |
| 5793 | * |
| 5794 | * where string is of the form <name>=<value>. |
| 5795 | * Putenv returns 0 normally, -1 on error (not enough core for malloc). |
| 5796 | * |
| 5797 | * Putenv may need to add a new name into the environment, or to |
| 5798 | * associate a value longer than the current value with a particular |
| 5799 | * name. So, to make life simpler, putenv() copies your entire |
| 5800 | * environment into the heap (i.e. malloc()) from the stack |
| 5801 | * (i.e. where it resides when your process is initiated) the first |
| 5802 | * time you call it. |
| 5803 | * |
| 5804 | * (history removed, not very interesting. See the "screen" sources.) |
| 5805 | */ |
| 5806 | |
| 5807 | #if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) |
| 5808 | |
| 5809 | #define EXTRASIZE 5 /* increment to add to env. size */ |
| 5810 | |
| 5811 | static int envsize = -1; /* current size of environment */ |
| 5812 | #ifndef MACOS_CLASSIC |
| 5813 | extern |
| 5814 | #endif |
| 5815 | char **environ; /* the global which is your env. */ |
| 5816 | |
| 5817 | static int findenv __ARGS((char *name)); /* look for a name in the env. */ |
| 5818 | static int newenv __ARGS((void)); /* copy env. from stack to heap */ |
| 5819 | static int moreenv __ARGS((void)); /* incr. size of env. */ |
| 5820 | |
| 5821 | int |
| 5822 | putenv(string) |
| 5823 | const char *string; |
| 5824 | { |
| 5825 | int i; |
| 5826 | char *p; |
| 5827 | |
| 5828 | if (envsize < 0) |
| 5829 | { /* first time putenv called */ |
| 5830 | if (newenv() < 0) /* copy env. to heap */ |
| 5831 | return -1; |
| 5832 | } |
| 5833 | |
| 5834 | i = findenv((char *)string); /* look for name in environment */ |
| 5835 | |
| 5836 | if (i < 0) |
| 5837 | { /* name must be added */ |
| 5838 | for (i = 0; environ[i]; i++); |
| 5839 | if (i >= (envsize - 1)) |
| 5840 | { /* need new slot */ |
| 5841 | if (moreenv() < 0) |
| 5842 | return -1; |
| 5843 | } |
| 5844 | p = (char *)alloc((unsigned)(strlen(string) + 1)); |
| 5845 | if (p == NULL) /* not enough core */ |
| 5846 | return -1; |
| 5847 | environ[i + 1] = 0; /* new end of env. */ |
| 5848 | } |
| 5849 | else |
| 5850 | { /* name already in env. */ |
| 5851 | p = vim_realloc(environ[i], strlen(string) + 1); |
| 5852 | if (p == NULL) |
| 5853 | return -1; |
| 5854 | } |
| 5855 | sprintf(p, "%s", string); /* copy into env. */ |
| 5856 | environ[i] = p; |
| 5857 | |
| 5858 | return 0; |
| 5859 | } |
| 5860 | |
| 5861 | static int |
| 5862 | findenv(name) |
| 5863 | char *name; |
| 5864 | { |
| 5865 | char *namechar, *envchar; |
| 5866 | int i, found; |
| 5867 | |
| 5868 | found = 0; |
| 5869 | for (i = 0; environ[i] && !found; i++) |
| 5870 | { |
| 5871 | envchar = environ[i]; |
| 5872 | namechar = name; |
| 5873 | while (*namechar && *namechar != '=' && (*namechar == *envchar)) |
| 5874 | { |
| 5875 | namechar++; |
| 5876 | envchar++; |
| 5877 | } |
| 5878 | found = ((*namechar == '\0' || *namechar == '=') && *envchar == '='); |
| 5879 | } |
| 5880 | return found ? i - 1 : -1; |
| 5881 | } |
| 5882 | |
| 5883 | static int |
| 5884 | newenv() |
| 5885 | { |
| 5886 | char **env, *elem; |
| 5887 | int i, esize; |
| 5888 | |
| 5889 | #ifdef MACOS |
| 5890 | /* for Mac a new, empty environment is created */ |
| 5891 | i = 0; |
| 5892 | #else |
| 5893 | for (i = 0; environ[i]; i++) |
| 5894 | ; |
| 5895 | #endif |
| 5896 | esize = i + EXTRASIZE + 1; |
| 5897 | env = (char **)alloc((unsigned)(esize * sizeof (elem))); |
| 5898 | if (env == NULL) |
| 5899 | return -1; |
| 5900 | |
| 5901 | #ifndef MACOS |
| 5902 | for (i = 0; environ[i]; i++) |
| 5903 | { |
| 5904 | elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1)); |
| 5905 | if (elem == NULL) |
| 5906 | return -1; |
| 5907 | env[i] = elem; |
| 5908 | strcpy(elem, environ[i]); |
| 5909 | } |
| 5910 | #endif |
| 5911 | |
| 5912 | env[i] = 0; |
| 5913 | environ = env; |
| 5914 | envsize = esize; |
| 5915 | return 0; |
| 5916 | } |
| 5917 | |
| 5918 | static int |
| 5919 | moreenv() |
| 5920 | { |
| 5921 | int esize; |
| 5922 | char **env; |
| 5923 | |
| 5924 | esize = envsize + EXTRASIZE; |
| 5925 | env = (char **)vim_realloc((char *)environ, esize * sizeof (*env)); |
| 5926 | if (env == 0) |
| 5927 | return -1; |
| 5928 | environ = env; |
| 5929 | envsize = esize; |
| 5930 | return 0; |
| 5931 | } |
| 5932 | |
| 5933 | # ifdef USE_VIMPTY_GETENV |
| 5934 | char_u * |
| 5935 | vimpty_getenv(string) |
| 5936 | const char_u *string; |
| 5937 | { |
| 5938 | int i; |
| 5939 | char_u *p; |
| 5940 | |
| 5941 | if (envsize < 0) |
| 5942 | return NULL; |
| 5943 | |
| 5944 | i = findenv((char *)string); |
| 5945 | |
| 5946 | if (i < 0) |
| 5947 | return NULL; |
| 5948 | |
| 5949 | p = vim_strchr((char_u *)environ[i], '='); |
| 5950 | return (p + 1); |
| 5951 | } |
| 5952 | # endif |
| 5953 | |
| 5954 | #endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */ |
Bram Moolenaar | c4a06d3 | 2005-06-07 21:04:49 +0000 | [diff] [blame] | 5955 | |
Bram Moolenaar | c4956c8 | 2006-03-12 21:58:43 +0000 | [diff] [blame] | 5956 | #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO) |
Bram Moolenaar | c4a06d3 | 2005-06-07 21:04:49 +0000 | [diff] [blame] | 5957 | /* |
| 5958 | * Return 0 for not writable, 1 for writable file, 2 for a dir which we have |
| 5959 | * rights to write into. |
| 5960 | */ |
| 5961 | int |
| 5962 | filewritable(fname) |
| 5963 | char_u *fname; |
| 5964 | { |
| 5965 | int retval = 0; |
| 5966 | #if defined(UNIX) || defined(VMS) |
| 5967 | int perm = 0; |
| 5968 | #endif |
| 5969 | |
| 5970 | #if defined(UNIX) || defined(VMS) |
| 5971 | perm = mch_getperm(fname); |
| 5972 | #endif |
| 5973 | #ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */ |
| 5974 | if ( |
| 5975 | # ifdef WIN3264 |
| 5976 | mch_writable(fname) && |
| 5977 | # else |
| 5978 | # if defined(UNIX) || defined(VMS) |
| 5979 | (perm & 0222) && |
| 5980 | # endif |
| 5981 | # endif |
| 5982 | mch_access((char *)fname, W_OK) == 0 |
| 5983 | ) |
| 5984 | #endif |
| 5985 | { |
| 5986 | ++retval; |
| 5987 | if (mch_isdir(fname)) |
| 5988 | ++retval; |
| 5989 | } |
| 5990 | return retval; |
| 5991 | } |
| 5992 | #endif |
Bram Moolenaar | 6bab4d1 | 2005-06-16 21:53:56 +0000 | [diff] [blame] | 5993 | |
| 5994 | /* |
| 5995 | * Print an error message with one or two "%s" and one or two string arguments. |
| 5996 | * This is not in message.c to avoid a warning for prototypes. |
| 5997 | */ |
| 5998 | int |
| 5999 | emsg3(s, a1, a2) |
| 6000 | char_u *s, *a1, *a2; |
| 6001 | { |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 6002 | if (emsg_not_now()) |
Bram Moolenaar | 6bab4d1 | 2005-06-16 21:53:56 +0000 | [diff] [blame] | 6003 | return TRUE; /* no error messages at the moment */ |
Bram Moolenaar | 6f19245 | 2007-11-08 19:49:02 +0000 | [diff] [blame] | 6004 | #ifdef HAVE_STDARG_H |
| 6005 | vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2); |
| 6006 | #else |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 6007 | vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2); |
Bram Moolenaar | 6f19245 | 2007-11-08 19:49:02 +0000 | [diff] [blame] | 6008 | #endif |
Bram Moolenaar | 6bab4d1 | 2005-06-16 21:53:56 +0000 | [diff] [blame] | 6009 | return emsg(IObuff); |
| 6010 | } |
| 6011 | |
| 6012 | /* |
| 6013 | * Print an error message with one "%ld" and one long int argument. |
| 6014 | * This is not in message.c to avoid a warning for prototypes. |
| 6015 | */ |
| 6016 | int |
| 6017 | emsgn(s, n) |
| 6018 | char_u *s; |
| 6019 | long n; |
| 6020 | { |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 6021 | if (emsg_not_now()) |
Bram Moolenaar | 6bab4d1 | 2005-06-16 21:53:56 +0000 | [diff] [blame] | 6022 | return TRUE; /* no error messages at the moment */ |
| 6023 | vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n); |
| 6024 | return emsg(IObuff); |
| 6025 | } |