blob: 6d1ccb57e2019a4f6403e5d2f3770550cbe98a9c [file] [log] [blame]
Bram Moolenaar84538072019-07-28 14:15:42 +02001/* vi:set ts=8 sts=4 sw=4 noet:
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 * session.c: session related functions
12 */
13
14#include "vim.h"
15
16#if defined(FEAT_SESSION) || defined(PROTO)
17
18static int did_lcd; // whether ":lcd" was produced for a session
19
20/*
21 * Write a file name to the session file.
22 * Takes care of the "slash" option in 'sessionoptions' and escapes special
23 * characters.
24 * Returns FAIL if writing fails or out of memory.
25 */
26 static int
27ses_put_fname(FILE *fd, char_u *name, unsigned *flagp)
28{
29 char_u *sname;
30 char_u *p;
31 int retval = OK;
32
33 sname = home_replace_save(NULL, name);
34 if (sname == NULL)
35 return FAIL;
36
37 if (*flagp & SSOP_SLASH)
38 {
39 // change all backslashes to forward slashes
40 for (p = sname; *p != NUL; MB_PTR_ADV(p))
41 if (*p == '\\')
42 *p = '/';
43 }
44
45 // escape special characters
46 p = vim_strsave_fnameescape(sname, FALSE);
47 vim_free(sname);
48 if (p == NULL)
49 return FAIL;
50
51 // write the result
52 if (fputs((char *)p, fd) < 0)
53 retval = FAIL;
54
55 vim_free(p);
56 return retval;
57}
58
59/*
60 * Write a buffer name to the session file.
61 * Also ends the line, if "add_eol" is TRUE.
62 * Returns FAIL if writing fails.
63 */
64 static int
65ses_fname(FILE *fd, buf_T *buf, unsigned *flagp, int add_eol)
66{
67 char_u *name;
68
69 // Use the short file name if the current directory is known at the time
70 // the session file will be sourced.
71 // Don't do this for ":mkview", we don't know the current directory.
72 // Don't do this after ":lcd", we don't keep track of what the current
73 // directory is.
74 if (buf->b_sfname != NULL
75 && flagp == &ssop_flags
76 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
77#ifdef FEAT_AUTOCHDIR
78 && !p_acd
79#endif
80 && !did_lcd)
81 name = buf->b_sfname;
82 else
83 name = buf->b_ffname;
84 if (ses_put_fname(fd, name, flagp) == FAIL
85 || (add_eol && put_eol(fd) == FAIL))
86 return FAIL;
87 return OK;
88}
89
90/*
91 * Write an argument list to the session file.
92 * Returns FAIL if writing fails.
93 */
94 static int
95ses_arglist(
96 FILE *fd,
97 char *cmd,
98 garray_T *gap,
99 int fullname, // TRUE: use full path name
100 unsigned *flagp)
101{
102 int i;
103 char_u *buf = NULL;
104 char_u *s;
105
106 if (fputs(cmd, fd) < 0 || put_eol(fd) == FAIL)
107 return FAIL;
108 if (put_line(fd, "%argdel") == FAIL)
109 return FAIL;
110 for (i = 0; i < gap->ga_len; ++i)
111 {
112 // NULL file names are skipped (only happens when out of memory).
113 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
114 if (s != NULL)
115 {
116 if (fullname)
117 {
118 buf = alloc(MAXPATHL);
119 if (buf != NULL)
120 {
121 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
122 s = buf;
123 }
124 }
125 if (fputs("$argadd ", fd) < 0
126 || ses_put_fname(fd, s, flagp) == FAIL
127 || put_eol(fd) == FAIL)
128 {
129 vim_free(buf);
130 return FAIL;
131 }
132 vim_free(buf);
133 }
134 }
135 return OK;
136}
137
138/*
139 * Return non-zero if window "wp" is to be stored in the Session.
140 */
141 static int
142ses_do_win(win_T *wp)
143{
144#ifdef FEAT_TERMINAL
145 if (bt_terminal(wp->w_buffer))
146 return !term_is_finished(wp->w_buffer)
147 && (ssop_flags & SSOP_TERMINAL)
148 && term_should_restore(wp->w_buffer);
149#endif
150 if (wp->w_buffer->b_fname == NULL
151#ifdef FEAT_QUICKFIX
152 // When 'buftype' is "nofile" can't restore the window contents.
153 || bt_nofilename(wp->w_buffer)
154#endif
155 )
156 return (ssop_flags & SSOP_BLANK);
157 if (bt_help(wp->w_buffer))
158 return (ssop_flags & SSOP_HELP);
159 return TRUE;
160}
161
162/*
163 * Return TRUE if frame "fr" has a window somewhere that we want to save in
164 * the Session.
165 */
166 static int
167ses_do_frame(frame_T *fr)
168{
169 frame_T *frc;
170
171 if (fr->fr_layout == FR_LEAF)
172 return ses_do_win(fr->fr_win);
173 FOR_ALL_FRAMES(frc, fr->fr_child)
174 if (ses_do_frame(frc))
175 return TRUE;
176 return FALSE;
177}
178
179/*
180 * Skip frames that don't contain windows we want to save in the Session.
181 * Returns NULL when there none.
182 */
183 static frame_T *
184ses_skipframe(frame_T *fr)
185{
186 frame_T *frc;
187
188 FOR_ALL_FRAMES(frc, fr)
189 if (ses_do_frame(frc))
190 break;
191 return frc;
192}
193
194/*
195 * Write commands to "fd" to recursively create windows for frame "fr",
196 * horizontally and vertically split.
197 * After the commands the last window in the frame is the current window.
198 * Returns FAIL when writing the commands to "fd" fails.
199 */
200 static int
201ses_win_rec(FILE *fd, frame_T *fr)
202{
203 frame_T *frc;
204 int count = 0;
205
206 if (fr->fr_layout != FR_LEAF)
207 {
208 // Find first frame that's not skipped and then create a window for
209 // each following one (first frame is already there).
210 frc = ses_skipframe(fr->fr_child);
211 if (frc != NULL)
212 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
213 {
214 // Make window as big as possible so that we have lots of room
215 // to split.
216 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
217 || put_line(fd, fr->fr_layout == FR_COL
218 ? "split" : "vsplit") == FAIL)
219 return FAIL;
220 ++count;
221 }
222
223 // Go back to the first window.
224 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
225 ? "%dwincmd k" : "%dwincmd h", count) < 0
226 || put_eol(fd) == FAIL))
227 return FAIL;
228
229 // Recursively create frames/windows in each window of this column or
230 // row.
231 frc = ses_skipframe(fr->fr_child);
232 while (frc != NULL)
233 {
234 ses_win_rec(fd, frc);
235 frc = ses_skipframe(frc->fr_next);
236 // Go to next window.
237 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
238 return FAIL;
239 }
240 }
241 return OK;
242}
243
244 static int
245ses_winsizes(
246 FILE *fd,
247 int restore_size,
248 win_T *tab_firstwin)
249{
250 int n = 0;
251 win_T *wp;
252
253 if (restore_size && (ssop_flags & SSOP_WINSIZE))
254 {
255 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
256 {
257 if (!ses_do_win(wp))
258 continue;
259 ++n;
260
261 // restore height when not full height
262 if (wp->w_height + wp->w_status_height < topframe->fr_height
263 && (fprintf(fd,
264 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
265 n, (long)wp->w_height, Rows / 2, Rows) < 0
266 || put_eol(fd) == FAIL))
267 return FAIL;
268
269 // restore width when not full width
270 if (wp->w_width < Columns && (fprintf(fd,
271 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
272 n, (long)wp->w_width, Columns / 2, Columns) < 0
273 || put_eol(fd) == FAIL))
274 return FAIL;
275 }
276 }
277 else
278 {
279 // Just equalise window sizes
280 if (put_line(fd, "wincmd =") == FAIL)
281 return FAIL;
282 }
283 return OK;
284}
285
286 static int
287put_view_curpos(FILE *fd, win_T *wp, char *spaces)
288{
289 int r;
290
291 if (wp->w_curswant == MAXCOL)
292 r = fprintf(fd, "%snormal! $", spaces);
293 else
294 r = fprintf(fd, "%snormal! 0%d|", spaces, wp->w_virtcol + 1);
295 return r < 0 || put_eol(fd) == FAIL ? FALSE : OK;
296}
297
298/*
299 * Write commands to "fd" to restore the view of a window.
300 * Caller must make sure 'scrolloff' is zero.
301 */
302 static int
303put_view(
304 FILE *fd,
305 win_T *wp,
Bram Moolenaarc2c82052020-09-11 22:10:22 +0200306 int add_edit, // add ":edit" command to view
307 unsigned *flagp, // vop_flags or ssop_flags
308 int current_arg_idx, // current argument index of the window,
309 // use -1 if unknown
310 hashtab_T *terminal_bufs UNUSED) // already encountered terminal buffers,
311 // can be NULL
Bram Moolenaar84538072019-07-28 14:15:42 +0200312{
313 win_T *save_curwin;
314 int f;
315 int do_cursor;
316 int did_next = FALSE;
317
318 // Always restore cursor position for ":mksession". For ":mkview" only
319 // when 'viewoptions' contains "cursor".
320 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
321
322 // Local argument list.
323 if (wp->w_alist == &global_alist)
324 {
325 if (put_line(fd, "argglobal") == FAIL)
326 return FAIL;
327 }
328 else
329 {
330 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
331 flagp == &vop_flags
332 || !(*flagp & SSOP_CURDIR)
333 || wp->w_localdir != NULL, flagp) == FAIL)
334 return FAIL;
335 }
336
337 // Only when part of a session: restore the argument index. Some
338 // arguments may have been deleted, check if the index is valid.
339 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx < WARGCOUNT(wp)
340 && flagp == &ssop_flags)
341 {
342 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
343 || put_eol(fd) == FAIL)
344 return FAIL;
345 did_next = TRUE;
346 }
347
348 // Edit the file. Skip this when ":next" already did it.
349 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
350 {
351# ifdef FEAT_TERMINAL
352 if (bt_terminal(wp->w_buffer))
353 {
Bram Moolenaar0e655112020-09-11 20:36:36 +0200354 if (term_write_session(fd, wp, terminal_bufs) == FAIL)
Bram Moolenaar84538072019-07-28 14:15:42 +0200355 return FAIL;
356 }
357 else
358# endif
359 // Load the file.
360 if (wp->w_buffer->b_ffname != NULL
361# ifdef FEAT_QUICKFIX
362 && !bt_nofilename(wp->w_buffer)
363# endif
364 )
365 {
366 // Editing a file in this buffer: use ":edit file".
367 // This may have side effects! (e.g., compressed or network file).
368 //
369 // Note, if a buffer for that file already exists, use :badd to
370 // edit that buffer, to not lose folding information (:edit resets
371 // folds in other buffers)
372 if (fputs("if bufexists(\"", fd) < 0
373 || ses_fname(fd, wp->w_buffer, flagp, FALSE) == FAIL
374 || fputs("\") | buffer ", fd) < 0
375 || ses_fname(fd, wp->w_buffer, flagp, FALSE) == FAIL
376 || fputs(" | else | edit ", fd) < 0
377 || ses_fname(fd, wp->w_buffer, flagp, FALSE) == FAIL
378 || fputs(" | endif", fd) < 0
379 || put_eol(fd) == FAIL)
380 return FAIL;
381 }
382 else
383 {
384 // No file in this buffer, just make it empty.
385 if (put_line(fd, "enew") == FAIL)
386 return FAIL;
387#ifdef FEAT_QUICKFIX
388 if (wp->w_buffer->b_ffname != NULL)
389 {
390 // The buffer does have a name, but it's not a file name.
391 if (fputs("file ", fd) < 0
392 || ses_fname(fd, wp->w_buffer, flagp, TRUE) == FAIL)
393 return FAIL;
394 }
395#endif
396 do_cursor = FALSE;
397 }
398 }
399
Bram Moolenaar59d8e562020-11-07 18:41:10 +0100400 if (wp->w_alt_fnum)
401 {
402 buf_T *alt = buflist_findnr(wp->w_alt_fnum);
403
Bram Moolenaar0756f752021-03-13 13:52:33 +0100404 // Set the alternate file if the buffer is listed.
Bram Moolenaar139348f2021-02-05 21:55:53 +0100405 if ((flagp == &ssop_flags)
406 && alt != NULL
Bram Moolenaar59d8e562020-11-07 18:41:10 +0100407 && alt->b_fname != NULL
408 && *alt->b_fname != NUL
Bram Moolenaar0756f752021-03-13 13:52:33 +0100409 && alt->b_p_bl
Bram Moolenaar59d8e562020-11-07 18:41:10 +0100410 && (fputs("balt ", fd) < 0
411 || ses_fname(fd, alt, flagp, TRUE) == FAIL))
412 return FAIL;
413 }
414
Bram Moolenaar84538072019-07-28 14:15:42 +0200415 // Local mappings and abbreviations.
416 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
417 && makemap(fd, wp->w_buffer) == FAIL)
418 return FAIL;
419
420 // Local options. Need to go to the window temporarily.
421 // Store only local values when using ":mkview" and when ":mksession" is
422 // used and 'sessionoptions' doesn't include "options".
423 // Some folding options are always stored when "folds" is included,
424 // otherwise the folds would not be restored correctly.
425 save_curwin = curwin;
426 curwin = wp;
427 curbuf = curwin->w_buffer;
428 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
429 f = makeset(fd, OPT_LOCAL,
430 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
431#ifdef FEAT_FOLDING
432 else if (*flagp & SSOP_FOLDS)
433 f = makefoldset(fd);
434#endif
435 else
436 f = OK;
437 curwin = save_curwin;
438 curbuf = curwin->w_buffer;
439 if (f == FAIL)
440 return FAIL;
441
442#ifdef FEAT_FOLDING
443 // Save Folds when 'buftype' is empty and for help files.
444 if ((*flagp & SSOP_FOLDS)
445 && wp->w_buffer->b_ffname != NULL
446 && (bt_normal(wp->w_buffer) || bt_help(wp->w_buffer)))
447 {
448 if (put_folds(fd, wp) == FAIL)
449 return FAIL;
450 }
451#endif
452
453 // Set the cursor after creating folds, since that moves the cursor.
454 if (do_cursor)
455 {
456
457 // Restore the cursor line in the file and relatively in the
458 // window. Don't use "G", it changes the jumplist.
459 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
460 (long)wp->w_cursor.lnum,
461 (long)(wp->w_cursor.lnum - wp->w_topline),
462 (long)wp->w_height / 2, (long)wp->w_height) < 0
463 || put_eol(fd) == FAIL
464 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
Bram Moolenaar3482be62020-11-27 11:00:38 +0100465 || put_line(fd, "keepjumps exe s:l") == FAIL
Bram Moolenaar84538072019-07-28 14:15:42 +0200466 || put_line(fd, "normal! zt") == FAIL
Bram Moolenaar3482be62020-11-27 11:00:38 +0100467 || fprintf(fd, "keepjumps %ld", (long)wp->w_cursor.lnum) < 0
Bram Moolenaar84538072019-07-28 14:15:42 +0200468 || put_eol(fd) == FAIL)
469 return FAIL;
470 // Restore the cursor column and left offset when not wrapping.
471 if (wp->w_cursor.col == 0)
472 {
473 if (put_line(fd, "normal! 0") == FAIL)
474 return FAIL;
475 }
476 else
477 {
478 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
479 {
480 if (fprintf(fd,
481 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
482 (long)wp->w_virtcol + 1,
483 (long)(wp->w_virtcol - wp->w_leftcol),
484 (long)wp->w_width / 2, (long)wp->w_width) < 0
485 || put_eol(fd) == FAIL
486 || put_line(fd, "if s:c > 0") == FAIL
487 || fprintf(fd,
488 " exe 'normal! ' . s:c . '|zs' . %ld . '|'",
489 (long)wp->w_virtcol + 1) < 0
490 || put_eol(fd) == FAIL
491 || put_line(fd, "else") == FAIL
492 || put_view_curpos(fd, wp, " ") == FAIL
493 || put_line(fd, "endif") == FAIL)
494 return FAIL;
495 }
496 else if (put_view_curpos(fd, wp, "") == FAIL)
497 return FAIL;
498 }
499 }
500
501 // Local directory, if the current flag is not view options or the "curdir"
502 // option is included.
503 if (wp->w_localdir != NULL
504 && (flagp != &vop_flags || (*flagp & SSOP_CURDIR)))
505 {
506 if (fputs("lcd ", fd) < 0
507 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
508 || put_eol(fd) == FAIL)
509 return FAIL;
510 did_lcd = TRUE;
511 }
512
513 return OK;
514}
515
516#ifdef FEAT_EVAL
517 static int
518store_session_globals(FILE *fd)
519{
Bram Moolenaarda6c0332019-09-01 16:01:30 +0200520 hashtab_T *gvht = get_globvar_ht();
Bram Moolenaar84538072019-07-28 14:15:42 +0200521 hashitem_T *hi;
522 dictitem_T *this_var;
523 int todo;
524 char_u *p, *t;
525
Bram Moolenaarda6c0332019-09-01 16:01:30 +0200526 todo = (int)gvht->ht_used;
527 for (hi = gvht->ht_array; todo > 0; ++hi)
Bram Moolenaar84538072019-07-28 14:15:42 +0200528 {
529 if (!HASHITEM_EMPTY(hi))
530 {
531 --todo;
532 this_var = HI2DI(hi);
533 if ((this_var->di_tv.v_type == VAR_NUMBER
534 || this_var->di_tv.v_type == VAR_STRING)
535 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
536 {
537 // Escape special characters with a backslash. Turn a LF and
538 // CR into \n and \r.
539 p = vim_strsave_escaped(tv_get_string(&this_var->di_tv),
540 (char_u *)"\\\"\n\r");
541 if (p == NULL) // out of memory
542 break;
543 for (t = p; *t != NUL; ++t)
544 if (*t == '\n')
545 *t = 'n';
546 else if (*t == '\r')
547 *t = 'r';
548 if ((fprintf(fd, "let %s = %c%s%c",
549 this_var->di_key,
550 (this_var->di_tv.v_type == VAR_STRING) ? '"'
551 : ' ',
552 p,
553 (this_var->di_tv.v_type == VAR_STRING) ? '"'
554 : ' ') < 0)
555 || put_eol(fd) == FAIL)
556 {
557 vim_free(p);
558 return FAIL;
559 }
560 vim_free(p);
561 }
562#ifdef FEAT_FLOAT
563 else if (this_var->di_tv.v_type == VAR_FLOAT
564 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
565 {
566 float_T f = this_var->di_tv.vval.v_float;
567 int sign = ' ';
568
569 if (f < 0)
570 {
571 f = -f;
572 sign = '-';
573 }
574 if ((fprintf(fd, "let %s = %c%f",
575 this_var->di_key, sign, f) < 0)
576 || put_eol(fd) == FAIL)
577 return FAIL;
578 }
579#endif
580 }
581 }
582 return OK;
583}
584#endif
585
586/*
587 * Write openfile commands for the current buffers to an .exrc file.
588 * Return FAIL on error, OK otherwise.
589 */
590 static int
591makeopens(
592 FILE *fd,
593 char_u *dirnow) // Current directory name
594{
595 buf_T *buf;
596 int only_save_windows = TRUE;
597 int nr;
598 int restore_size = TRUE;
599 win_T *wp;
600 char_u *sname;
601 win_T *edited_win = NULL;
602 int tabnr;
603 int restore_stal = FALSE;
604 win_T *tab_firstwin;
605 frame_T *tab_topframe;
606 int cur_arg_idx = 0;
607 int next_arg_idx = 0;
Bram Moolenaar0e655112020-09-11 20:36:36 +0200608 int ret = FAIL;
609#ifdef FEAT_TERMINAL
610 hashtab_T terminal_bufs;
611
612 hash_init(&terminal_bufs);
613#endif
Bram Moolenaar84538072019-07-28 14:15:42 +0200614
615 if (ssop_flags & SSOP_BUFFERS)
616 only_save_windows = FALSE; // Save ALL buffers
617
618 // Begin by setting the this_session variable, and then other
619 // sessionable variables.
620#ifdef FEAT_EVAL
621 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200622 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200623 if (ssop_flags & SSOP_GLOBALS)
624 if (store_session_globals(fd) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200625 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200626#endif
627
628 // Close all windows and tabs but one.
629 if (put_line(fd, "silent only") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200630 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200631 if ((ssop_flags & SSOP_TABPAGES)
632 && put_line(fd, "silent tabonly") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200633 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200634
635 // Now a :cd command to the session directory or the current directory
636 if (ssop_flags & SSOP_SESDIR)
637 {
638 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
639 == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200640 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200641 }
642 else if (ssop_flags & SSOP_CURDIR)
643 {
644 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
645 if (sname == NULL
646 || fputs("cd ", fd) < 0
647 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
648 || put_eol(fd) == FAIL)
649 {
650 vim_free(sname);
Bram Moolenaar0e655112020-09-11 20:36:36 +0200651 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200652 }
653 vim_free(sname);
654 }
655
656 // If there is an empty, unnamed buffer we will wipe it out later.
657 // Remember the buffer number.
658 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200659 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200660 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200661 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200662 if (put_line(fd, "endif") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200663 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200664
665 // Now save the current files, current buffer first.
666 if (put_line(fd, "set shortmess=aoO") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200667 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200668
669 // the global argument list
670 if (ses_arglist(fd, "argglobal", &global_alist.al_ga,
671 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200672 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200673
674 if (ssop_flags & SSOP_RESIZE)
675 {
676 // Note: after the restore we still check it worked!
677 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
678 || put_eol(fd) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200679 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200680 }
681
682#ifdef FEAT_GUI
683 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
684 {
685 int x, y;
686
687 if (gui_mch_get_winpos(&x, &y) == OK)
688 {
689 // Note: after the restore we still check it worked!
690 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200691 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200692 }
693 }
694#endif
695
696 // When there are two or more tabpages and 'showtabline' is 1 the tabline
697 // will be displayed when creating the next tab. That resizes the windows
698 // in the first tab, which may cause problems. Set 'showtabline' to 2
699 // temporarily to avoid that.
700 if (p_stal == 1 && first_tabpage->tp_next != NULL)
701 {
702 if (put_line(fd, "set stal=2") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200703 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200704 restore_stal = TRUE;
705 }
706
707 // May repeat putting Windows for each tab, when "tabpages" is in
708 // 'sessionoptions'.
709 // Don't use goto_tabpage(), it may change directory and trigger
710 // autocommands.
711 tab_firstwin = firstwin; // first window in tab page "tabnr"
712 tab_topframe = topframe;
713 if ((ssop_flags & SSOP_TABPAGES))
714 {
715 tabpage_T *tp;
716
717 // Similar to ses_win_rec() below, populate the tab pages first so
718 // later local options won't be copied to the new tabs.
719 FOR_ALL_TABPAGES(tp)
720 if (tp->tp_next != NULL && put_line(fd, "tabnew") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200721 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200722 if (first_tabpage->tp_next != NULL && put_line(fd, "tabrewind") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200723 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200724 }
725 for (tabnr = 1; ; ++tabnr)
726 {
727 tabpage_T *tp = NULL;
728 int need_tabnext = FALSE;
729 int cnr = 1;
730
731 if ((ssop_flags & SSOP_TABPAGES))
732 {
733 tp = find_tabpage(tabnr);
734
735 if (tp == NULL)
736 break; // done all tab pages
737 if (tp == curtab)
738 {
739 tab_firstwin = firstwin;
740 tab_topframe = topframe;
741 }
742 else
743 {
744 tab_firstwin = tp->tp_firstwin;
745 tab_topframe = tp->tp_topframe;
746 }
747 if (tabnr > 1)
748 need_tabnext = TRUE;
749 }
750
751 // Before creating the window layout, try loading one file. If this
752 // is aborted we don't end up with a number of useless windows.
753 // This may have side effects! (e.g., compressed or network file).
754 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
755 {
756 if (ses_do_win(wp)
757 && wp->w_buffer->b_ffname != NULL
758 && !bt_help(wp->w_buffer)
759#ifdef FEAT_QUICKFIX
760 && !bt_nofilename(wp->w_buffer)
761#endif
762 )
763 {
764 if (need_tabnext && put_line(fd, "tabnext") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200765 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200766 need_tabnext = FALSE;
767
768 if (fputs("edit ", fd) < 0
769 || ses_fname(fd, wp->w_buffer, &ssop_flags, TRUE)
770 == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200771 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200772 if (!wp->w_arg_idx_invalid)
773 edited_win = wp;
774 break;
775 }
776 }
777
778 // If no file got edited create an empty tab page.
779 if (need_tabnext && put_line(fd, "tabnext") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200780 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200781
Bram Moolenaar0995c812021-04-17 18:38:54 +0200782 if (tab_topframe->fr_layout != FR_LEAF)
783 {
784 // Save current window layout.
785 if (put_line(fd, "let s:save_splitbelow = &splitbelow") == FAIL
786 || put_line(fd, "let s:save_splitright = &splitright")
787 == FAIL)
788 goto fail;
789 if (put_line(fd, "set splitbelow splitright") == FAIL)
790 goto fail;
791 if (ses_win_rec(fd, tab_topframe) == FAIL)
792 goto fail;
793 if (put_line(fd, "let &splitbelow = s:save_splitbelow") == FAIL
794 || put_line(fd, "let &splitright = s:save_splitright")
795 == FAIL)
796 goto fail;
797 }
Bram Moolenaar84538072019-07-28 14:15:42 +0200798
799 // Check if window sizes can be restored (no windows omitted).
800 // Remember the window number of the current window after restoring.
801 nr = 0;
802 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
803 {
804 if (ses_do_win(wp))
805 ++nr;
806 else
807 restore_size = FALSE;
808 if (curwin == wp)
809 cnr = nr;
810 }
811
Bram Moolenaar0995c812021-04-17 18:38:54 +0200812 if (tab_firstwin->w_next != NULL)
813 {
814 // Go to the first window.
815 if (put_line(fd, "wincmd t") == FAIL)
816 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200817
Bram Moolenaar0995c812021-04-17 18:38:54 +0200818 // If more than one window, see if sizes can be restored.
819 // First set 'winheight' and 'winwidth' to 1 to avoid the windows
820 // being resized when moving between windows.
821 // Do this before restoring the view, so that the topline and the
822 // cursor can be set. This is done again below.
823 // winminheight and winminwidth need to be set to avoid an error if
824 // the user has set winheight or winwidth.
825 if (put_line(fd, "let s:save_winminheight = &winminheight") == FAIL
826 || put_line(fd, "let s:save_winminwidth = &winminwidth")
827 == FAIL)
828 goto fail;
829 if (put_line(fd, "set winminheight=0") == FAIL
830 || put_line(fd, "set winheight=1") == FAIL
831 || put_line(fd, "set winminwidth=0") == FAIL
832 || put_line(fd, "set winwidth=1") == FAIL)
833 goto fail;
834 }
Bram Moolenaar84538072019-07-28 14:15:42 +0200835 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200836 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200837
838 // Restore the tab-local working directory if specified
839 // Do this before the windows, so that the window-local directory can
840 // override the tab-local directory.
841 if (tp != NULL && tp->tp_localdir != NULL && ssop_flags & SSOP_CURDIR)
842 {
843 if (fputs("tcd ", fd) < 0
844 || ses_put_fname(fd, tp->tp_localdir, &ssop_flags) == FAIL
845 || put_eol(fd) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200846 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200847 did_lcd = TRUE;
848 }
849
850 // Restore the view of the window (options, file, cursor, etc.).
851 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
852 {
853 if (!ses_do_win(wp))
854 continue;
Bram Moolenaarc2c82052020-09-11 22:10:22 +0200855 if (put_view(fd, wp, wp != edited_win, &ssop_flags, cur_arg_idx,
Bram Moolenaar0e655112020-09-11 20:36:36 +0200856#ifdef FEAT_TERMINAL
Bram Moolenaarc2c82052020-09-11 22:10:22 +0200857 &terminal_bufs
858#else
859 NULL
Bram Moolenaar0e655112020-09-11 20:36:36 +0200860#endif
861 ) == FAIL)
862 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200863 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200864 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200865 next_arg_idx = wp->w_arg_idx;
866 }
867
868 // The argument index in the first tab page is zero, need to set it in
869 // each window. For further tab pages it's the window where we do
870 // "tabedit".
871 cur_arg_idx = next_arg_idx;
872
873 // Restore cursor to the current window if it's not the first one.
874 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
875 || put_eol(fd) == FAIL))
Bram Moolenaar0e655112020-09-11 20:36:36 +0200876 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200877
878 // Restore window sizes again after jumping around in windows, because
879 // the current window has a minimum size while others may not.
880 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200881 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200882
883 // Don't continue in another tab page when doing only the current one
884 // or when at the last tab page.
885 if (!(ssop_flags & SSOP_TABPAGES))
886 break;
887 }
888
889 if (ssop_flags & SSOP_TABPAGES)
890 {
891 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
892 || put_eol(fd) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200893 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200894 }
895 if (restore_stal && put_line(fd, "set stal=1") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200896 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200897
898 // Now put the remaining buffers into the buffer list.
899 // This is near the end, so that when 'hidden' is set we don't create extra
900 // buffers. If the buffer was already created with another command the
901 // ":badd" will have no effect.
902 FOR_ALL_BUFFERS(buf)
903 {
904 if (!(only_save_windows && buf->b_nwindows == 0)
905 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
906#ifdef FEAT_TERMINAL
907 // Skip terminal buffers: finished ones are not useful, others
908 // will be resurrected and result in a new buffer.
909 && !bt_terminal(buf)
910#endif
911 && buf->b_fname != NULL
912 && buf->b_p_bl)
913 {
914 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
915 : buf->b_wininfo->wi_fpos.lnum) < 0
916 || ses_fname(fd, buf, &ssop_flags, TRUE) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200917 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200918 }
919 }
920
921 // Wipe out an empty unnamed buffer we started in.
922 if (put_line(fd, "if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0")
923 == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200924 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200925 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200926 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200927 if (put_line(fd, "endif") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200928 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200929 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200930 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200931
932 // Re-apply 'winheight', 'winwidth' and 'shortmess'.
933 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
934 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200935 goto fail;
Bram Moolenaar0995c812021-04-17 18:38:54 +0200936 if (tab_firstwin->w_next != NULL)
937 {
938 // Restore 'winminheight' and 'winminwidth'.
939 if (put_line(fd, "let &winminheight = s:save_winminheight") == FAIL
940 || put_line(fd, "let &winminwidth = s:save_winminwidth") == FAIL)
941 goto fail;
942 }
Bram Moolenaar84538072019-07-28 14:15:42 +0200943
944 // Lastly, execute the x.vim file if it exists.
945 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
Bram Moolenaarc5f33db2020-04-16 21:04:41 +0200946 || put_line(fd, "if filereadable(s:sx)") == FAIL
Bram Moolenaar84538072019-07-28 14:15:42 +0200947 || put_line(fd, " exe \"source \" . fnameescape(s:sx)") == FAIL
948 || put_line(fd, "endif") == FAIL)
Bram Moolenaar0e655112020-09-11 20:36:36 +0200949 goto fail;
Bram Moolenaar84538072019-07-28 14:15:42 +0200950
Bram Moolenaar0e655112020-09-11 20:36:36 +0200951 ret = OK;
952fail:
953#ifdef FEAT_TERMINAL
954 hash_clear_all(&terminal_bufs, 0);
955#endif
956 return ret;
Bram Moolenaar84538072019-07-28 14:15:42 +0200957}
958
959/*
960 * Get the name of the view file for the current buffer.
961 */
962 static char_u *
963get_view_file(int c)
964{
965 int len = 0;
966 char_u *p, *s;
967 char_u *retval;
968 char_u *sname;
969
970 if (curbuf->b_ffname == NULL)
971 {
972 emsg(_(e_noname));
973 return NULL;
974 }
975 sname = home_replace_save(NULL, curbuf->b_ffname);
976 if (sname == NULL)
977 return NULL;
978
979 // We want a file name without separators, because we're not going to make
980 // a directory.
981 // "normal" path separator -> "=+"
982 // "=" -> "=="
983 // ":" path separator -> "=-"
984 for (p = sname; *p; ++p)
985 if (*p == '=' || vim_ispathsep(*p))
986 ++len;
987 retval = alloc(STRLEN(sname) + len + STRLEN(p_vdir) + 9);
988 if (retval != NULL)
989 {
990 STRCPY(retval, p_vdir);
991 add_pathsep(retval);
992 s = retval + STRLEN(retval);
993 for (p = sname; *p; ++p)
994 {
995 if (*p == '=')
996 {
997 *s++ = '=';
998 *s++ = '=';
999 }
1000 else if (vim_ispathsep(*p))
1001 {
1002 *s++ = '=';
1003#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(VMS)
1004 if (*p == ':')
1005 *s++ = '-';
1006 else
1007#endif
1008 *s++ = '+';
1009 }
1010 else
1011 *s++ = *p;
1012 }
1013 *s++ = '=';
1014 *s++ = c;
1015 STRCPY(s, ".vim");
1016 }
1017
1018 vim_free(sname);
1019 return retval;
1020}
1021
1022/*
1023 * ":loadview [nr]"
1024 */
1025 void
1026ex_loadview(exarg_T *eap)
1027{
1028 char_u *fname;
1029
1030 fname = get_view_file(*eap->arg);
1031 if (fname != NULL)
1032 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001033 do_source(fname, FALSE, DOSO_NONE, NULL);
Bram Moolenaar84538072019-07-28 14:15:42 +02001034 vim_free(fname);
1035 }
1036}
1037
Bram Moolenaard17a57a2019-09-29 20:53:55 +02001038# if defined(FEAT_GUI_GNOME) \
Bram Moolenaarac02a632019-09-29 19:02:46 +02001039 || (defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)) \
1040 || defined(PROTO)
Bram Moolenaar84538072019-07-28 14:15:42 +02001041/*
1042 * Generate a script that can be used to restore the current editing session.
1043 * Save the value of v:this_session before running :mksession in order to make
1044 * automagic session save fully transparent. Return TRUE on success.
1045 */
1046 int
1047write_session_file(char_u *filename)
1048{
1049 char_u *escaped_filename;
1050 char *mksession_cmdline;
1051 unsigned int save_ssop_flags;
1052 int failed;
1053
1054 // Build an ex command line to create a script that restores the current
1055 // session if executed. Escape the filename to avoid nasty surprises.
1056 escaped_filename = vim_strsave_escaped(filename, escape_chars);
1057 if (escaped_filename == NULL)
1058 return FALSE;
1059 mksession_cmdline = alloc(10 + (int)STRLEN(escaped_filename) + 1);
1060 if (mksession_cmdline == NULL)
1061 {
1062 vim_free(escaped_filename);
1063 return FALSE;
1064 }
1065 strcpy(mksession_cmdline, "mksession ");
1066 STRCAT(mksession_cmdline, escaped_filename);
1067 vim_free(escaped_filename);
1068
1069 // Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
1070 // unpredictable effects when the session is saved automatically. Also,
1071 // we definitely need SSOP_GLOBALS to be able to restore v:this_session.
1072 // Don't use SSOP_BUFFERS to prevent the buffer list from becoming
1073 // enormously large if the GNOME session feature is used regularly.
1074 save_ssop_flags = ssop_flags;
1075 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
1076 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
1077
1078 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
1079 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
1080 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
1081 do_unlet((char_u *)"Save_VV_this_session", TRUE);
1082
1083 ssop_flags = save_ssop_flags;
1084 vim_free(mksession_cmdline);
1085
1086 // Reopen the file and append a command to restore v:this_session,
1087 // as if this save never happened. This is to avoid conflicts with
1088 // the user's own sessions. FIXME: It's probably less hackish to add
1089 // a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
1090 if (!failed)
1091 {
1092 FILE *fd;
1093
1094 fd = open_exfile(filename, TRUE, APPENDBIN);
1095
1096 failed = (fd == NULL
1097 || put_line(fd, "let v:this_session = Save_VV_this_session")
1098 == FAIL
1099 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
1100
1101 if (fd != NULL && fclose(fd) != 0)
1102 failed = TRUE;
1103
1104 if (failed)
1105 mch_remove(filename);
1106 }
1107
1108 return !failed;
1109}
1110# endif
1111
1112#endif // FEAT_SESSION
1113
1114#if defined(FEAT_SESSION) && defined(USE_CRNL)
1115# define MKSESSION_NL
1116static int mksession_nl = FALSE; // use NL only in put_eol()
1117#endif
1118
Bram Moolenaar84538072019-07-28 14:15:42 +02001119/*
1120 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
1121 */
1122 void
1123ex_mkrc(exarg_T *eap)
1124{
1125 FILE *fd;
1126 int failed = FALSE;
1127 char_u *fname;
1128#ifdef FEAT_BROWSE
1129 char_u *browseFile = NULL;
1130#endif
1131#ifdef FEAT_SESSION
1132 int view_session = FALSE;
1133 int using_vdir = FALSE; // using 'viewdir'?
1134 char_u *viewFile = NULL;
1135 unsigned *flagp;
1136#endif
1137
1138 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
1139 {
1140#ifdef FEAT_SESSION
1141 view_session = TRUE;
1142#else
1143 ex_ni(eap);
1144 return;
1145#endif
1146 }
1147
1148#ifdef FEAT_SESSION
1149 // Use the short file name until ":lcd" is used. We also don't use the
1150 // short file name when 'acd' is set, that is checked later.
1151 did_lcd = FALSE;
1152
1153 // ":mkview" or ":mkview 9": generate file name with 'viewdir'
1154 if (eap->cmdidx == CMD_mkview
1155 && (*eap->arg == NUL
1156 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
1157 {
1158 eap->forceit = TRUE;
1159 fname = get_view_file(*eap->arg);
1160 if (fname == NULL)
1161 return;
1162 viewFile = fname;
1163 using_vdir = TRUE;
1164 }
1165 else
1166#endif
1167 if (*eap->arg != NUL)
1168 fname = eap->arg;
1169 else if (eap->cmdidx == CMD_mkvimrc)
1170 fname = (char_u *)VIMRC_FILE;
1171#ifdef FEAT_SESSION
1172 else if (eap->cmdidx == CMD_mksession)
1173 fname = (char_u *)SESSION_FILE;
1174#endif
1175 else
1176 fname = (char_u *)EXRC_FILE;
1177
1178#ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02001179 if (cmdmod.cmod_flags & CMOD_BROWSE)
Bram Moolenaar84538072019-07-28 14:15:42 +02001180 {
1181 browseFile = do_browse(BROWSE_SAVE,
1182# ifdef FEAT_SESSION
1183 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
1184 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
1185# endif
1186 (char_u *)_("Save Setup"),
1187 fname, (char_u *)"vim", NULL,
1188 (char_u *)_(BROWSE_FILTER_MACROS), NULL);
1189 if (browseFile == NULL)
1190 goto theend;
1191 fname = browseFile;
1192 eap->forceit = TRUE; // since dialog already asked
1193 }
1194#endif
1195
1196#if defined(FEAT_SESSION) && defined(vim_mkdir)
1197 // When using 'viewdir' may have to create the directory.
1198 if (using_vdir && !mch_isdir(p_vdir))
1199 vim_mkdir_emsg(p_vdir, 0755);
1200#endif
1201
1202 fd = open_exfile(fname, eap->forceit, WRITEBIN);
1203 if (fd != NULL)
1204 {
1205#ifdef FEAT_SESSION
1206 if (eap->cmdidx == CMD_mkview)
1207 flagp = &vop_flags;
1208 else
1209 flagp = &ssop_flags;
1210#endif
1211
1212#ifdef MKSESSION_NL
1213 // "unix" in 'sessionoptions': use NL line separator
1214 if (view_session && (*flagp & SSOP_UNIX))
1215 mksession_nl = TRUE;
1216#endif
1217
1218 // Write the version command for :mkvimrc
1219 if (eap->cmdidx == CMD_mkvimrc)
1220 (void)put_line(fd, "version 6.0");
1221
1222#ifdef FEAT_SESSION
1223 if (eap->cmdidx == CMD_mksession)
1224 {
1225 if (put_line(fd, "let SessionLoad = 1") == FAIL)
1226 failed = TRUE;
1227 }
1228
1229 if (eap->cmdidx != CMD_mkview)
1230#endif
1231 {
1232 // Write setting 'compatible' first, because it has side effects.
1233 // For that same reason only do it when needed.
1234 if (p_cp)
1235 (void)put_line(fd, "if !&cp | set cp | endif");
1236 else
1237 (void)put_line(fd, "if &cp | set nocp | endif");
1238 }
1239
1240#ifdef FEAT_SESSION
1241 if (!view_session
1242 || (eap->cmdidx == CMD_mksession
1243 && (*flagp & SSOP_OPTIONS)))
1244#endif
Bram Moolenaar635bd602021-04-16 19:58:22 +02001245 {
1246 int flags = OPT_GLOBAL;
1247
1248#ifdef FEAT_SESSION
1249 if (eap->cmdidx == CMD_mksession && (*flagp & SSOP_SKIP_RTP))
1250 flags |= OPT_SKIPRTP;
1251#endif
Bram Moolenaar84538072019-07-28 14:15:42 +02001252 failed |= (makemap(fd, NULL) == FAIL
Bram Moolenaar635bd602021-04-16 19:58:22 +02001253 || makeset(fd, flags, FALSE) == FAIL);
1254 }
Bram Moolenaar84538072019-07-28 14:15:42 +02001255
1256#ifdef FEAT_SESSION
1257 if (!failed && view_session)
1258 {
Bram Moolenaar38890832020-11-01 17:40:54 +01001259 if (put_line(fd, "let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-1 siso=-1") == FAIL)
Bram Moolenaar84538072019-07-28 14:15:42 +02001260 failed = TRUE;
1261 if (eap->cmdidx == CMD_mksession)
1262 {
1263 char_u *dirnow; // current directory
1264
1265 dirnow = alloc(MAXPATHL);
1266 if (dirnow == NULL)
1267 failed = TRUE;
1268 else
1269 {
1270 // Change to session file's dir.
1271 if (mch_dirname(dirnow, MAXPATHL) == FAIL
1272 || mch_chdir((char *)dirnow) != 0)
1273 *dirnow = NUL;
1274 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
1275 {
1276 if (vim_chdirfile(fname, NULL) == OK)
1277 shorten_fnames(TRUE);
1278 }
1279 else if (*dirnow != NUL
1280 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
1281 {
1282 if (mch_chdir((char *)globaldir) == 0)
1283 shorten_fnames(TRUE);
1284 }
1285
1286 failed |= (makeopens(fd, dirnow) == FAIL);
1287
1288 // restore original dir
1289 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
1290 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
1291 {
1292 if (mch_chdir((char *)dirnow) != 0)
1293 emsg(_(e_prev_dir));
1294 shorten_fnames(TRUE);
1295 }
1296 vim_free(dirnow);
1297 }
1298 }
1299 else
1300 {
Bram Moolenaarc2c82052020-09-11 22:10:22 +02001301 failed |= (put_view(fd, curwin, !using_vdir, flagp, -1, NULL)
1302 == FAIL);
Bram Moolenaar84538072019-07-28 14:15:42 +02001303 }
Bram Moolenaar38890832020-11-01 17:40:54 +01001304 if (put_line(fd, "let &g:so = s:so_save | let &g:siso = s:siso_save")
Bram Moolenaar84538072019-07-28 14:15:42 +02001305 == FAIL)
1306 failed = TRUE;
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02001307#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar84538072019-07-28 14:15:42 +02001308 if (no_hlsearch && put_line(fd, "nohlsearch") == FAIL)
1309 failed = TRUE;
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02001310#endif
Bram Moolenaar84538072019-07-28 14:15:42 +02001311 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
1312 failed = TRUE;
1313 if (eap->cmdidx == CMD_mksession)
1314 {
1315 if (put_line(fd, "unlet SessionLoad") == FAIL)
1316 failed = TRUE;
1317 }
1318 }
1319#endif
1320 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
1321 failed = TRUE;
1322
1323 failed |= fclose(fd);
1324
1325 if (failed)
1326 emsg(_(e_write));
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02001327#if defined(FEAT_SESSION)
Bram Moolenaar84538072019-07-28 14:15:42 +02001328 else if (eap->cmdidx == CMD_mksession)
1329 {
1330 // successful session write - set this_session var
1331 char_u *tbuf;
1332
1333 tbuf = alloc(MAXPATHL);
1334 if (tbuf != NULL)
1335 {
1336 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
1337 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
1338 vim_free(tbuf);
1339 }
1340 }
1341#endif
1342#ifdef MKSESSION_NL
1343 mksession_nl = FALSE;
1344#endif
1345 }
1346
1347#ifdef FEAT_BROWSE
1348theend:
1349 vim_free(browseFile);
1350#endif
1351#ifdef FEAT_SESSION
1352 vim_free(viewFile);
1353#endif
1354}
1355
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02001356#if (defined(FEAT_VIMINFO) || defined(FEAT_SESSION)) || defined(PROTO)
Bram Moolenaar84538072019-07-28 14:15:42 +02001357 var_flavour_T
1358var_flavour(char_u *varname)
1359{
1360 char_u *p = varname;
1361
1362 if (ASCII_ISUPPER(*p))
1363 {
1364 while (*(++p))
1365 if (ASCII_ISLOWER(*p))
1366 return VAR_FLAVOUR_SESSION;
1367 return VAR_FLAVOUR_VIMINFO;
1368 }
1369 else
1370 return VAR_FLAVOUR_DEFAULT;
1371}
1372#endif
1373
1374/*
1375 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
1376 * Return FAIL for a write error.
1377 */
1378 int
1379put_eol(FILE *fd)
1380{
1381 if (
1382#ifdef USE_CRNL
1383 (
1384# ifdef MKSESSION_NL
1385 !mksession_nl &&
1386# endif
1387 (putc('\r', fd) < 0)) ||
1388#endif
1389 (putc('\n', fd) < 0))
1390 return FAIL;
1391 return OK;
1392}
1393
1394/*
1395 * Write a line to "fd".
1396 * Return FAIL for a write error.
1397 */
1398 int
1399put_line(FILE *fd, char *s)
1400{
1401 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
1402 return FAIL;
1403 return OK;
1404}