blob: a70d58e3da6c7c5020c12370ab5735191d2e815a [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * os_msdos.c
12 *
13 * MSDOS system-dependent routines.
14 * A cheap plastic imitation of the amiga dependent code.
15 * A lot in this file was made by Juergen Weigert (jw).
16 *
17 * DJGPP changes by Gert van Antwerpen
18 * Faster text screens by John Lange (jlange@zilker.net)
19 * Windows clipboard functionality added by David Kotchan (dk)
20 *
21 * Some functions are also used for Win16 (MS-Windows 3.1).
22 */
23
24#include <io.h>
25#include "vim.h"
26
27#include <conio.h>
28#ifdef HAVE_FCNTL_H
29# include <fcntl.h>
30#endif
31
32/*
33 * MS-DOS only code, not used for Win16.
34 */
35#ifndef WIN16
36
37
38#include <bios.h>
39#ifdef DJGPP
40# include <dpmi.h>
41# include <signal.h>
42# include <sys/movedata.h>
43# include <crt0.h>
44# ifdef FEAT_CLIPBOARD
45# include <sys/segments.h>
46# endif
47#else
48# include <alloc.h>
49#endif
50
51#if defined(DJGPP) || defined(PROTO)
52# define _cdecl /* DJGPP doesn't have this */
53#endif
54
55static int cbrk_pressed = FALSE; /* set by ctrl-break interrupt */
56static int ctrlc_pressed = FALSE; /* set when ctrl-C or ctrl-break detected */
57static int delayed_redraw = FALSE; /* set when ctrl-C detected */
58
59static int bioskey_read = _NKEYBRD_READ; /* bioskey() argument: read key */
60static int bioskey_ready = _NKEYBRD_READY; /* bioskey() argument: key ready? */
61
62#ifdef FEAT_MOUSE
63static int mouse_avail = FALSE; /* mouse present */
64static int mouse_active; /* mouse enabled */
65static int mouse_hidden; /* mouse not shown */
66static int mouse_click = -1; /* mouse status */
67static int mouse_last_click = -1; /* previous status at click */
68static int mouse_x = -1; /* mouse x coodinate */
69static int mouse_y = -1; /* mouse y coodinate */
70static long mouse_click_time = 0; /* biostime() of last click */
71static int mouse_click_count = 0; /* count for multi-clicks */
72static int mouse_click_x = 0; /* x of previous mouse click */
73static int mouse_click_y = 0; /* y of previous mouse click */
74static linenr_T mouse_topline = 0; /* w_topline at previous mouse click */
75#ifdef FEAT_DIFF
76static int mouse_topfill = 0; /* w_topfill at previous mouse click */
77#endif
78static int mouse_x_div = 8; /* column = x coord / mouse_x_div */
79static int mouse_y_div = 8; /* line = y coord / mouse_y_div */
80#endif
81
82#define BIOSTICK 55 /* biostime() increases one tick about
83 every 55 msec */
84
85static int orig_attr = 0x0700; /* video attributes when starting */
86
87static int S_iLeft = 0; /* Scroll window; these are 1 offset */
88static int S_iTop = 0;
89static int S_iRight = 0;
90static int S_iBottom = 0;
91
92/*
93 * Need to remember the values, because we set horizontal and vertical
94 * edges separately.
95 */
96 static void
97mywindow(int iLeft, int iTop, int iRight, int iBottom)
98{
99 S_iLeft = iLeft;
100 S_iTop = iTop;
101 S_iRight = iRight;
102 S_iBottom = iBottom;
103 window(iLeft, iTop, iRight, iBottom);
104}
105
106#ifdef DJGPP
107/*
108 * For DJGPP, use our own functions for fast text screens. JML 1/18/98
109 */
110
111unsigned long S_ulScreenBase = 0xb8000;
112unsigned short S_uiAttribute = 0;
113int S_iCurrentRow = 0; /* These are 0 offset */
114int S_iCurrentColumn = 0;
115short S_selVideo; /* Selector for DJGPP direct video transfers */
116
117/*
118 * Use burst writes to improve mch_write speed - VJN 01/10/99
119 */
120unsigned short S_linebuffer[8000]; /* <VN> enough for 160x50 */
121unsigned short S_blankbuffer[256]; /* <VN> max length of console line */
122unsigned short *S_linebufferpos = S_linebuffer;
123int S_iBufferRow;
124int S_iBufferColumn;
125
126 static void
127myflush(void)
128{
129 if (S_linebufferpos != S_linebuffer)
130 {
131 _dosmemputw(S_linebuffer, (S_linebufferpos - S_linebuffer),
132 S_ulScreenBase
133 + S_iBufferRow * (Columns << 1) + (S_iBufferColumn << 1));
134 S_linebufferpos = S_linebuffer;
135 }
136}
137
138 static void
139mygotoxy(int x, int y)
140{
141 S_iCurrentRow = y - 1;
142 S_iCurrentColumn = x - 1;
143}
144
145/*
146 * Set the system cursor to our cursor position.
147 */
148 static void
149set_sys_cursor(void)
150{
151 if (term_console && full_screen)
152 {
153 myflush();
154 gotoxy(S_iCurrentColumn + 1, S_iCurrentRow + 1);
155 }
156}
157
158 static void
159setblankbuffer(unsigned short uiValue)
160{
161 int i;
162 static unsigned short olduiValue = 0;
163
164 if (olduiValue != uiValue)
165 {
166 /* Load blank line buffer with spaces */
167 for (i = 0; i < Columns; ++i)
168 S_blankbuffer[i] = uiValue;
169 olduiValue = uiValue;
170 }
171}
172
173 static void
174myclreol(void)
175{
176 /* Clear to end of line */
177 setblankbuffer(S_uiAttribute | ' ');
178 _dosmemputw(S_blankbuffer, S_iRight - S_iCurrentColumn, S_ulScreenBase
179 + (S_iCurrentRow) * (Columns << 1)
180 + (S_iCurrentColumn << 1));
181}
182
183 static void
184myclrscr(void)
185{
186 /* Clear whole screen */
187 short iColumn;
188 int endpoint = (Rows * Columns) << 1;
189
190 setblankbuffer(S_uiAttribute | ' ');
191
192 for (iColumn = 0; iColumn < endpoint; iColumn += (Columns << 1))
193 _dosmemputw(S_blankbuffer, Columns, S_ulScreenBase + iColumn);
194}
195
196 static void
197mydelline(void)
198{
199 short iRow, iColumn;
200
201 iColumn = (S_iLeft - 1) << 1;
202
203 /* Copy the lines underneath */
204 for (iRow = S_iCurrentRow; iRow < S_iBottom - 1; iRow++)
205 movedata(S_selVideo, (((iRow + 1) * Columns) << 1) + iColumn,
206 S_selVideo, ((iRow * Columns) << 1) + iColumn,
207 (S_iRight - S_iLeft + 1) << 1);
208
209 /* Clear the new row */
210 setblankbuffer(S_uiAttribute | ' ');
211
212 _dosmemputw(S_blankbuffer, (S_iRight - S_iLeft) + 1, S_ulScreenBase
213 + (S_iBottom - 1) * (Columns << 1) + iColumn);
214}
215
216 static void
217myinsline(void)
218{
219 short iRow, iColumn;
220
221 iColumn = (S_iLeft - 1) << 1;
222
223 /* Copy the lines underneath */
224 for (iRow = S_iBottom - 1; iRow >= S_iTop; iRow--)
225 movedata(S_selVideo, (((iRow - 1) * Columns) << 1) + iColumn,
226 S_selVideo, ((iRow * Columns) << 1) + iColumn,
227 (S_iRight - S_iLeft + 1) << 1);
228
229 /* Clear the new row */
230 setblankbuffer(S_uiAttribute | ' ');
231
232 _dosmemputw(S_blankbuffer, (S_iRight - S_iLeft) + 1, S_ulScreenBase
233 + (S_iTop - 1) * (Columns << 1) + iColumn);
234}
235
236/*
237 * Scroll the screen one line up, clear the last line.
238 */
239 static void
240myscroll(void)
241{
242 short iRow, iColumn;
243
244 iColumn = (S_iLeft - 1) << 1;
245
246 /* Copy the screen */
247 for (iRow = S_iTop; iRow < S_iBottom; iRow++)
248 movedata(S_selVideo, ((iRow * Columns) << 1) + iColumn,
249 S_selVideo, (((iRow - 1) * Columns) << 1) + iColumn,
250 (S_iRight - S_iLeft + 1) << 1);
251
252 /* Clear the bottom row */
253 setblankbuffer(S_uiAttribute | ' ');
254
255 _dosmemputw(S_blankbuffer, (S_iRight - S_iLeft) + 1, S_ulScreenBase
256 + (S_iBottom - 1) * (Columns << 1) + iColumn);
257}
258
259 static int
260myputch(int iChar)
261{
262 unsigned short uiValue;
263
264 if (iChar == '\n')
265 {
266 myflush();
267 if (S_iCurrentRow >= S_iBottom - S_iTop)
268 myscroll();
269 else
270 {
271 S_iCurrentColumn = S_iLeft - 1;
272 S_iCurrentRow++;
273 }
274 }
275 else if (iChar == '\r')
276 {
277 myflush();
278 S_iCurrentColumn = S_iLeft - 1;
279 }
280 else if (iChar == '\b')
281 {
282 myflush();
283 if (S_iCurrentColumn >= S_iLeft)
284 S_iCurrentColumn--;
285 }
286 else if (iChar == 7)
287 {
288 sound(440); /* short beep */
289 delay(200);
290 nosound();
291 }
292 else
293 {
294 uiValue = S_uiAttribute | (unsigned char)iChar;
295
296 /*
297 * Normal char - are we starting to buffer?
298 */
299 if (S_linebufferpos == S_linebuffer)
300 {
301 S_iBufferColumn = S_iCurrentColumn;
302 S_iBufferRow = S_iCurrentRow;
303 }
304
305 *S_linebufferpos++ = uiValue;
306
307 S_iCurrentColumn++;
308 if (S_iCurrentColumn >= S_iRight && S_iCurrentRow >= S_iBottom - S_iTop)
309 {
310 myflush();
311 myscroll();
312 S_iCurrentColumn = S_iLeft - 1;
313 S_iCurrentRow++;
314 }
315 }
316
317 return 0;
318}
319
320 static void
321mytextinit(struct text_info *pTextinfo)
322{
323 S_selVideo = __dpmi_segment_to_descriptor(S_ulScreenBase >> 4);
324 S_uiAttribute = pTextinfo->normattr << 8;
325}
326
327 static void
328get_screenbase(void)
329{
330 static union REGS regs;
331
332 /* old Hercules grafic card has different base address (Macewicz) */
333 regs.h.ah = 0x0f;
334 (void)int86(0x10, &regs, &regs); /* int 10 0f */
335 if (regs.h.al == 0x07) /* video mode 7 -- hercules mono */
336 S_ulScreenBase = 0xb0000;
337 else
338 S_ulScreenBase = 0xb8000;
339}
340
341 static void
342mytextattr(int iAttribute)
343{
344 S_uiAttribute = (unsigned short)iAttribute << 8;
345}
346
347 static void
348mynormvideo(void)
349{
350 mytextattr(orig_attr);
351}
352
353 static void
354mytextcolor(int iTextColor)
355{
356 S_uiAttribute = (unsigned short)((S_uiAttribute & 0xf000)
357 | (unsigned short)iTextColor << 8);
358}
359
360 static void
361mytextbackground(int iBkgColor)
362{
363 S_uiAttribute = (unsigned short)((S_uiAttribute & 0x0f00)
364 | (unsigned short)(iBkgColor << 12));
365}
366/*
367 * Getdigits: Get a number from a string and skip over it.
368 * Note: the argument is a pointer to a char_u pointer!
369 */
370
371 static long
372mygetdigits(pp)
373 char_u **pp;
374{
375 char_u *p;
376 long retval = 0;
377
378 p = *pp;
379 if (*p == '-') /* skip negative sign */
380 ++p;
381 while (VIM_ISDIGIT(*p))
382 {
383 retval = (retval * 10) + (*p - '0');
384 ++p;
385 }
386 if (**pp == '-') /* process negative sign */
387 retval = -retval;
388
389 *pp = p;
390 return retval;
391}
392#else
393# define mygotoxy gotoxy
394# define myputch putch
395# define myscroll scroll
396# define mynormvideo normvideo
397# define mytextattr textattr
398# define mytextcolor textcolor
399# define mytextbackground textbackground
400# define mygetdigits getdigits
401# define myclreol clreol
402# define myclrscr clrscr
403# define myinsline insline
404# define mydelline delline
405#endif
406
407static const struct
408{
409 char_u scancode;
410 char_u metakey;
411} altkey_table[] =
412{
413 {0x1e, 0xe1}, /* a */
414 {0x30, 0xe2}, /* b */
415 {0x2e, 0xe3}, /* c */
416 {0x20, 0xe4}, /* d */
417 {0x12, 0xe5}, /* e */
418 {0x21, 0xe6}, /* f */
419 {0x22, 0xe7}, /* g */
420 {0x23, 0xe8}, /* h */
421 {0x17, 0xe9}, /* i */
422 {0x24, 0xea}, /* j */
423 {0x25, 0xeb}, /* k */
424 {0x26, 0xec}, /* l */
425 {0x32, 0xed}, /* m */
426 {0x31, 0xee}, /* n */
427 {0x18, 0xef}, /* o */
428 {0x19, 0xf0}, /* p */
429 {0x10, 0xf1}, /* q */
430 {0x13, 0xf2}, /* r */
431 {0x1f, 0xf3}, /* s */
432 {0x14, 0xf4}, /* t */
433 {0x16, 0xf5}, /* u */
434 {0x2f, 0xf6}, /* v */
435 {0x11, 0xf7}, /* w */
436 {0x2d, 0xf8}, /* x */
437 {0x15, 0xf9}, /* y */
438 {0x2c, 0xfa}, /* z */
439 {0x78, 0xb1}, /* 1 */
440 {0x79, 0xb2}, /* 2 */
441 {0x7a, 0xb3}, /* 3 */
442 {0x7b, 0xb4}, /* 4 */
443 {0x7c, 0xb5}, /* 5 */
444 {0x7d, 0xb6}, /* 6 */
445 {0x7e, 0xb7}, /* 7 */
446 {0x7f, 0xb8}, /* 8 */
447 {0x80, 0xb9}, /* 9 */
448 {0x81, 0xb0}, /* 0 */
449};
450
451/*
452 * Translate extended keycodes into meta-chars where applicable
453 */
454 static int
455translate_altkeys(int rawkey)
456{
457 int i, c;
458
459 if ((rawkey & 0xff) == 0)
460 {
461 c = (rawkey >> 8);
462 for (i = sizeof(altkey_table) / sizeof(altkey_table[0]); --i >= 0; )
463 {
464 if (c == altkey_table[i].scancode)
465 return (int)altkey_table[i].metakey;
466 }
467 }
468 return rawkey;
469}
470
471/*
472 * Set normal fg/bg color, based on T_ME. Called whem t_me has been set.
473 */
474 void
475mch_set_normal_colors()
476{
477 char_u *p;
478 int n;
479
480 cterm_normal_fg_color = (orig_attr & 0xf) + 1;
481 cterm_normal_bg_color = ((orig_attr >> 4) & 0xf) + 1;
482 if (T_ME[0] == ESC && T_ME[1] == '|')
483 {
484 p = T_ME + 2;
485 n = getdigits(&p);
486 if (*p == 'm' && n > 0)
487 {
488 cterm_normal_fg_color = (n & 0xf) + 1;
489 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
490 }
491 }
492}
493
494#if defined(MCH_CURSOR_SHAPE) || defined(PROTO)
495/*
496 * Save/restore the shape of the cursor.
497 * call with FALSE to save, TRUE to restore
498 */
499 static void
500mch_restore_cursor_shape(int restore)
501{
502 static union REGS regs;
503 static int saved = FALSE;
504
505 if (restore)
506 {
507 if (saved)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000508 regs.h.ah = 0x01; /* Set Cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 else
510 return;
511 }
512 else
513 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000514 regs.h.ah = 0x03; /* Get Cursor */
515 regs.h.bh = 0x00; /* Page */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 saved = TRUE;
517 }
518
519 (void)int86(0x10, &regs, &regs);
520}
521
522/*
523 * Set the shape of the cursor.
524 * 'thickness' can be from 0 (thin) to 7 (block)
525 */
526 static void
527mch_set_cursor_shape(int thickness)
528{
529 union REGS regs;
530
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000531 regs.h.ch = 7 - thickness; /* Starting Line */
532 regs.h.cl = 7; /* Ending Line */
533 regs.h.ah = 0x01; /* Set Cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 (void)int86(0x10, &regs, &regs);
535}
536
537 void
538mch_update_cursor(void)
539{
540 int idx;
541 int thickness;
542
543 /*
544 * How the cursor is drawn depends on the current mode.
545 */
546 idx = get_shape_idx(FALSE);
547
548 if (shape_table[idx].shape == SHAPE_BLOCK)
549 thickness = 7;
550 else
551 thickness = (7 * shape_table[idx].percentage + 90) / 100;
552 mch_set_cursor_shape(thickness);
553}
554#endif
555
556/*
557 * Return amount of memory currently available.
558 */
559 long_u
560mch_avail_mem(int special)
561{
562#ifdef DJGPP
563 return _go32_dpmi_remaining_virtual_memory();
564#else
565 return coreleft();
566#endif
567}
568
569#ifdef FEAT_MOUSE
570
571/*
572 * Set area where mouse can be moved to: The whole screen.
573 * Rows and Columns must be valid when calling!
574 */
575 static void
576mouse_area(void)
577{
578 union REGS regs;
579
580 if (mouse_avail)
581 {
582 regs.x.cx = 0; /* mouse visible between cx and dx */
583 regs.x.dx = Columns * mouse_x_div - 1;
584 regs.x.ax = 7;
585 (void)int86(0x33, &regs, &regs);
586
587 regs.x.cx = 0; /* mouse visible between cx and dx */
588 regs.x.dx = Rows * mouse_y_div - 1;
589 regs.x.ax = 8;
590 (void)int86(0x33, &regs, &regs);
591 }
592}
593
594 static void
595show_mouse(int on)
596{
597 static int was_on = FALSE;
598 union REGS regs;
599
600 if (mouse_avail)
601 {
602 if (!mouse_active || mouse_hidden)
603 on = FALSE;
604 /*
605 * Careful: Each switch on must be compensated by exactly one switch
606 * off
607 */
608 if ((on && !was_on) || (!on && was_on))
609 {
610 was_on = on;
611 regs.x.ax = on ? 1 : 2;
612 int86(0x33, &regs, &regs); /* show mouse */
613 if (on)
614 mouse_area();
615 }
616 }
617}
618
619#endif
620
621/*
622 * Version of kbhit() and getch() that use direct console I/O.
623 * This avoids trouble with CTRL-P and the like, and should work over a telnet
624 * connection (it works for Xvi).
625 */
626
627static int cons_key = -1;
628
629/*
630 * Try to get one character directly from the console.
631 * If there is a key, it is stored in cons_key.
632 * Only call when cons_key is -1!
633 */
634 static void
635cons_getkey(void)
636{
637 union REGS regs;
638
639 /* call DOS function 6: Direct console I/O */
640 regs.h.ah = 0x06;
641 regs.h.dl = 0xff;
642 (void)intdos(&regs, &regs);
643 if ((regs.x.flags & 0x40) == 0) /* zero flag not set? */
644 cons_key = (regs.h.al & 0xff);
645}
646
647/*
648 * Return TRUE if a character is available.
649 */
650 static int
651cons_kbhit(void)
652{
653 if (cons_key < 0)
654 cons_getkey();
655 return (cons_key >= 0);
656}
657
658/*
659 * Return a character from the console.
660 * Should only be called when vim_kbhit() returns TRUE.
661 */
662 static int
663cons_getch(void)
664{
665 int c = -1;
666
667 if (cons_key < 0)
668 cons_getkey();
669 c = cons_key;
670 cons_key = -1;
671 return c;
672}
673
674
675#ifdef DJGPP
676/*
677 * DJGPP provides a kbhit() function that goes to the BIOS instead of DOS.
678 * This doesn't work for terminals connected to a serial port.
679 * Redefine kbhit() here to make it work.
680 */
681 static int
682vim_kbhit(void)
683{
684 union REGS regs;
685
686 regs.h.ah = 0x0b;
687 (void)intdos(&regs, &regs);
688 return regs.h.al;
689}
690
691#ifdef kbhit
692# undef kbhit /* might have been defined in conio.h */
693#endif
694#define kbhit() vim_kbhit()
695
696#endif
697
698/*
699 * Simulate WaitForChar() by slowly polling with bioskey(1) or kbhit().
700 *
701 * If Vim should work over the serial line after a 'ctty com1' we must use
702 * kbhit() and getch(). (jw)
703 * Usually kbhit() is not used, because then CTRL-C and CTRL-P
704 * will be catched by DOS (mool).
705 *
706 * return TRUE if a character is available, FALSE otherwise
707 */
708
709#define FOREVER 1999999999L
710
711 static int
712WaitForChar(long msec)
713{
714 union REGS regs;
715 long starttime = 0;
716 int x, y;
717
718 if (msec != 0)
719 starttime = biostime(0, 0L);
720
721 for (;;)
722 {
723#ifdef FEAT_MOUSE
724 long clicktime;
725 static int old_status = 0;
726
727 if (mouse_avail && mouse_active && mouse_click < 0)
728 {
729 regs.x.ax = 3;
730 int86(0x33, &regs, &regs); /* check mouse status */
731 /* only recognize button-down and button-up event */
732 x = regs.x.cx / mouse_x_div;
733 y = regs.x.dx / mouse_y_div;
734 if ((old_status == 0) != (regs.x.bx == 0))
735 {
736 if (old_status) /* button up */
737 mouse_click = MOUSE_RELEASE;
738 else /* button down */
739 {
740 /*
741 * Translate MSDOS mouse events to Vim mouse events.
742 * TODO: should handle middle mouse button, by pressing
743 * left and right at the same time.
744 */
745 if (regs.x.bx & MSDOS_MOUSE_LEFT)
746 mouse_click = MOUSE_LEFT;
747 else if (regs.x.bx & MSDOS_MOUSE_RIGHT)
748 mouse_click = MOUSE_RIGHT;
749 else if (regs.x.bx & MSDOS_MOUSE_MIDDLE)
750 mouse_click = MOUSE_MIDDLE;
751
752 /*
753 * Find out if this is a multi-click
754 */
755 clicktime = biostime(0, 0L);
756 if (mouse_click_x == x && mouse_click_y == y
757 && mouse_topline == curwin->w_topline
758#ifdef FEAT_DIFF
759 && mouse_topfill == curwin->w_topfill
760#endif
761 && mouse_click_count != 4
762 && mouse_click == mouse_last_click
763 && clicktime < mouse_click_time
764 + p_mouset / BIOSTICK)
765 ++mouse_click_count;
766 else
767 mouse_click_count = 1;
768 mouse_click_time = clicktime;
769 mouse_last_click = mouse_click;
770 mouse_click_x = x;
771 mouse_click_y = y;
772 mouse_topline = curwin->w_topline;
773#ifdef FEAT_DIFF
774 mouse_topfill = curwin->w_topfill;
775#endif
776 SET_NUM_MOUSE_CLICKS(mouse_click, mouse_click_count);
777 }
778 }
779 else if (old_status && (x != mouse_x || y != mouse_y))
780 mouse_click = MOUSE_DRAG;
781 old_status = regs.x.bx;
782 if (mouse_hidden && mouse_x >= 0 && (mouse_x != x || mouse_y != y))
783 {
784 mouse_hidden = FALSE;
785 show_mouse(TRUE);
786 }
787 mouse_x = x;
788 mouse_y = y;
789 }
790#endif
791
792 if ((p_consk ? cons_kbhit()
793 : p_biosk ? bioskey(bioskey_ready) : kbhit())
794 || cbrk_pressed
795#ifdef FEAT_MOUSE
796 || mouse_click >= 0
797#endif
798 )
799 return TRUE;
800 /*
801 * Use biostime() to wait until our time is done.
802 * We busy-wait here. Unfortunately, delay() and usleep() have been
803 * reported to give problems with the original Windows 95. This is
804 * fixed in service pack 1, but not everybody installed that.
805 * The DJGPP implementation of usleep() uses a busy-wait loop too.
806 */
807 if (msec == 0 || (msec != FOREVER
808 && biostime(0, 0L) > starttime + msec / BIOSTICK))
809 break;
810
811#ifdef DJGPP
812 /* Yield the CPU to the next process. */
813 __dpmi_yield();
814#endif
815 }
816 return FALSE;
817}
818
819/*
820 * don't do anything for about "msec" msec
821 */
822 void
823mch_delay(
824 long msec,
825 int ignoreinput)
826{
827 long starttime;
828
829 if (ignoreinput)
830 {
831 /*
832 * We busy-wait here. Unfortunately, delay() and usleep() have been
833 * reported to give problems with the original Windows 95. This is
834 * fixed in service pack 1, but not everybody installed that.
835 */
836 starttime = biostime(0, 0L);
837 while (biostime(0, 0L) < starttime + msec / BIOSTICK)
838 ;
839 }
840 else
841 WaitForChar(msec);
842}
843
844/*
845 * mch_write(): write the output buffer to the screen
846 */
847 void
848mch_write(
849 char_u *s,
850 int len)
851{
852 char_u *p;
853 int row, col;
854
855 if (term_console && full_screen)
856 while (len--)
857 {
858 /* translate ESC | sequences into bios calls */
859 if (p_wd) /* testing: wait a bit for each char */
860 WaitForChar(p_wd);
861
862 if (s[0] == '\n')
863#ifdef DJGPP
864 {
865 myflush();
866 S_iCurrentColumn = S_iLeft - 1;
867 }
868#else
869 myputch('\r');
870#endif
871 else if (s[0] == ESC && len > 1 && s[1] == '|')
872 {
873 switch (s[2])
874 {
875#ifdef DJGPP
876 case 'B': ScreenVisualBell();
877 goto got3;
878#endif
879 case 'J':
880#ifdef DJGPP
881 myflush();
882#endif
883 myclrscr();
884 goto got3;
885
886 case 'K':
887#ifdef DJGPP
888 myflush();
889#endif
890 myclreol();
891 goto got3;
892
893 case 'L':
894#ifdef DJGPP
895 myflush();
896#endif
897 myinsline();
898 goto got3;
899
900 case 'M':
901#ifdef DJGPP
902 myflush();
903#endif
904 mydelline();
905got3: s += 3;
906 len -= 2;
907 continue;
908
909 case '0':
910 case '1':
911 case '2':
912 case '3':
913 case '4':
914 case '5':
915 case '6':
916 case '7':
917 case '8':
918 case '9': p = s + 2;
919 row = mygetdigits(&p); /* no check for length! */
920 if (p > s + len)
921 break;
922 if (*p == ';')
923 {
924 ++p;
925 col = mygetdigits(&p); /* no check for length! */
926 if (p > s + len)
927 break;
928 if (*p == 'H' || *p == 'r' || *p == 'V')
929 {
930#ifdef DJGPP
931 myflush();
932#endif
933 if (*p == 'H') /* set cursor position */
934 mygotoxy(col, row);
935 else if (*p == 'V')
936 mywindow(row, S_iTop, col, S_iBottom);
937 else /* set scroll region */
938 mywindow(S_iLeft, row, S_iRight, col);
939 len -= p - s;
940 s = p + 1;
941 continue;
942 }
943 }
944 else if (*p == 'm' || *p == 'f' || *p == 'b')
945 {
946 if (*p == 'm') /* set color */
947 {
948 if (row == 0)
949 mynormvideo();/* reset color */
950 else
951 mytextattr(row);
952 }
953 else if (*p == 'f') /* set foreground color */
954 mytextcolor(row);
955 else /* set background color */
956 mytextbackground(row);
957
958 len -= p - s;
959 s = p + 1;
960 continue;
961 }
962 }
963 }
964 myputch(*s++);
965 }
966 else
967 {
968 write(1, s, (unsigned)len);
969 }
970}
971
972/*
973 * mch_inchar(): low level input funcion.
974 * Get a characters from the keyboard.
975 * If time == 0 do not wait for characters.
976 * If time == n wait a short time for characters.
977 * If time == -1 wait forever for characters.
978 *
979 * return the number of characters obtained
980 */
981 int
982mch_inchar(
983 char_u *buf,
984 int maxlen,
985 long time,
986 int tb_change_cnt)
987{
988 int len = 0;
989 int c;
990 int tmp_c;
991 static int nextchar = 0; /* may keep character when maxlen == 1 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992
993 /*
994 * if we got a ctrl-C when we were busy, there will be a "^C" somewhere
995 * on the sceen, so we need to redisplay it.
996 */
997 if (delayed_redraw)
998 {
999 delayed_redraw = FALSE;
1000 update_screen(CLEAR);
1001 setcursor();
1002 out_flush();
1003 }
1004
1005 /* return remaining character from last call */
1006 if (nextchar)
1007 {
1008 *buf = nextchar;
1009 nextchar = 0;
1010 return 1;
1011 }
1012
1013#ifdef FEAT_MOUSE
1014 if (time != 0)
1015 show_mouse(TRUE);
1016#endif
1017#ifdef DJGPP
1018 set_sys_cursor();
1019#endif
1020 if (time >= 0)
1021 {
1022 if (WaitForChar(time) == 0) /* no character available */
1023 {
1024#ifdef FEAT_MOUSE
1025 show_mouse(FALSE);
1026#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 return 0;
1028 }
1029 }
1030 else /* time == -1 */
1031 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 /*
1033 * If there is no character available within 2 seconds (default)
Bram Moolenaar916b7af2005-03-16 09:52:38 +00001034 * write the autoscript file to disk. Or cause the CursorHold event
1035 * to be triggered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00001037 if (WaitForChar(p_ut) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 {
1039#ifdef FEAT_AUTOCMD
Bram Moolenaar916b7af2005-03-16 09:52:38 +00001040 if (!did_cursorhold && has_cursorhold()
1041 && get_real_state() == NORMAL_BUSY && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 {
Bram Moolenaar916b7af2005-03-16 09:52:38 +00001043 buf[0] = K_SPECIAL;
1044 buf[1] = KS_EXTRA;
1045 buf[2] = (int)KE_CURSORHOLD;
1046 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048#endif
Bram Moolenaar39a58ca2005-06-27 22:42:44 +00001049 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 }
1051 }
1052 WaitForChar(FOREVER); /* wait for key or mouse click */
1053
1054/*
1055 * Try to read as many characters as there are, until the buffer is full.
1056 */
1057 /*
1058 * we will get at least one key. Get more if they are available
1059 * After a ctrl-break we have to read a 0 (!) from the buffer.
1060 * bioskey(1) will return 0 if no key is available and when a
1061 * ctrl-break was typed. When ctrl-break is hit, this does not always
1062 * implies a key hit.
1063 */
1064 cbrk_pressed = FALSE;
1065#ifdef FEAT_MOUSE
1066 if (mouse_click >= 0 && maxlen >= 5)
1067 {
1068 len = 5;
1069 *buf++ = ESC + 128;
1070 *buf++ = 'M';
1071 *buf++ = mouse_click;
1072 *buf++ = mouse_x + '!';
1073 *buf++ = mouse_y + '!';
1074 mouse_click = -1;
1075 }
1076 else
1077#endif
1078 {
1079#ifdef FEAT_MOUSE
1080 mouse_hidden = TRUE;
1081#endif
1082 if (p_biosk && !p_consk)
1083 {
1084 while ((len == 0 || bioskey(bioskey_ready)) && len < maxlen)
1085 {
1086 c = translate_altkeys(bioskey(bioskey_read)); /* get the key */
1087 /*
1088 * translate a few things for inchar():
1089 * 0x0000 == CTRL-break -> 3 (CTRL-C)
1090 * 0x0300 == CTRL-@ -> NUL
1091 * 0xnn00 == extended key code -> K_NUL, nn
1092 * 0xnne0 == enhanced keyboard -> K_NUL, nn
1093 * K_NUL -> K_NUL, 3
1094 */
1095 if (c == 0)
1096 c = 3;
1097 else if (c == 0x0300)
1098 c = NUL;
1099 else if ((c & 0xff) == 0
1100 || c == K_NUL
1101 || c == 0x4e2b
1102 || c == 0x4a2d
1103 || c == 0x372a
1104 || ((c & 0xff) == 0xe0 && c != 0xe0))
1105 {
1106 if (c == K_NUL)
1107 c = 3;
1108 else
1109 c >>= 8;
1110 *buf++ = K_NUL;
1111 ++len;
1112 }
1113
1114 if (len < maxlen)
1115 {
1116 *buf++ = c;
1117 len++;
1118#ifdef FEAT_MBYTE
1119 /* Convert from 'termencoding' to 'encoding'. Only
1120 * translate normal characters, not key codes. */
1121 if (input_conv.vc_type != CONV_NONE
1122 && (len == 1 || buf[-2] != K_NUL))
1123 len += convert_input(buf - 1, 1, maxlen - len + 1) - 1;
1124#endif
1125 }
1126 else
1127 nextchar = c;
1128 }
1129 }
1130 else
1131 {
1132 while ((len == 0 || (p_consk ? cons_kbhit() : kbhit()))
1133 && len < maxlen)
1134 {
1135 switch (c = (p_consk ? cons_getch() : getch()))
1136 {
1137 case 0:
1138 /* NUL means that there is another character.
1139 * Get it immediately, because kbhit() doesn't always
1140 * return TRUE for the second character.
1141 */
1142 if (p_consk)
1143 c = cons_getch();
1144 else
1145 c = getch();
1146 tmp_c = translate_altkeys(c << 8);
1147 if (tmp_c == (c << 8))
1148 {
1149 *buf++ = K_NUL;
1150 ++len;
1151 }
1152 else
1153 c = tmp_c;
1154 break;
1155 case K_NUL:
1156 *buf++ = K_NUL;
1157 ++len;
1158 c = 3;
1159 break;
1160 case 3:
1161 cbrk_pressed = TRUE;
1162 /*FALLTHROUGH*/
1163 default:
1164 break;
1165 }
1166 if (len < maxlen)
1167 {
1168 *buf++ = c;
1169 ++len;
1170 }
1171 else
1172 nextchar = c;
1173 }
1174 }
1175 }
1176#ifdef FEAT_MOUSE
1177 show_mouse(FALSE);
1178#endif
1179
1180 beep_count = 0; /* may beep again now that we got some chars */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 return len;
1182}
1183
1184/*
1185 * return non-zero if a character is available
1186 */
1187 int
1188mch_char_avail(void)
1189{
1190 return WaitForChar(0L);
1191}
1192
1193#ifdef DJGPP
1194# define INT_ARG int
1195#else
1196# define INT_ARG
1197#endif
1198
1199/*
1200 * function for ctrl-break interrupt
1201 */
1202 static void interrupt
1203#ifdef DJGPP
1204catch_cbrk(int a)
1205#else
1206catch_cbrk(void)
1207#endif
1208{
1209 cbrk_pressed = TRUE;
1210 ctrlc_pressed = TRUE;
1211}
1212
1213#ifndef DJGPP
1214/*
1215 * ctrl-break handler for DOS. Never called when a ctrl-break is typed, because
1216 * we catch interrupt 1b. If you type ctrl-C while Vim is waiting for a
1217 * character this function is not called. When a ctrl-C is typed while Vim is
1218 * busy this function may be called. By that time a ^C has been displayed on
1219 * the screen, so we have to redisplay the screen. We can't do that here,
1220 * because we may be called by DOS. The redraw is in mch_inchar().
1221 */
1222 static int _cdecl
1223cbrk_handler(void)
1224{
1225 delayed_redraw = TRUE;
1226 return 1; /* resume operation after ctrl-break */
1227}
1228
1229/*
1230 * function for critical error interrupt
1231 * For DOS 1 and 2 return 0 (Ignore).
1232 * For DOS 3 and later return 3 (Fail)
1233 */
1234 static void interrupt
1235catch_cint(bp, di, si, ds, es, dx, cx, bx, ax)
1236 unsigned bp, di, si, ds, es, dx, cx, bx, ax;
1237{
1238 ax = (ax & 0xff00); /* set AL to 0 */
1239 if (_osmajor >= 3)
1240 ax |= 3; /* set AL to 3 */
1241}
1242#endif
1243
1244/*
1245 * Set the interrupt vectors for use with Vim on or off.
1246 * on == TRUE means as used within Vim
1247 */
1248 static void
1249set_interrupts(int on)
1250{
1251 static int saved_cbrk;
1252#ifndef DJGPP
1253 static void interrupt (*old_cint)();
1254#endif
1255 static void interrupt (*old_cbrk)(INT_ARG);
1256
1257 if (on)
1258 {
1259 saved_cbrk = getcbrk(); /* save old ctrl-break setting */
1260 setcbrk(0); /* do not check for ctrl-break */
1261#ifdef DJGPP
1262 old_cbrk = signal(SIGINT, catch_cbrk); /* critical error interrupt */
1263#else
1264 old_cint = getvect(0x24); /* save old critical error interrupt */
1265 setvect(0x24, catch_cint); /* install our critical error interrupt */
1266 old_cbrk = getvect(0x1B); /* save old ctrl-break interrupt */
1267 setvect(0x1B, catch_cbrk); /* install our ctrl-break interrupt */
1268 ctrlbrk(cbrk_handler); /* vim's ctrl-break handler */
1269#endif
1270 if (term_console)
1271 out_str(T_ME); /* set colors */
1272 }
1273 else
1274 {
1275 setcbrk(saved_cbrk); /* restore ctrl-break setting */
1276#ifdef DJGPP
1277 signal(SIGINT,old_cbrk); /* critical error interrupt */
1278#else
1279 setvect(0x24, old_cint); /* restore critical error interrupt */
1280 setvect(0x1B, old_cbrk); /* restore ctrl-break interrupt */
1281#endif
1282 /* restore ctrl-break handler, how ??? */
1283 if (term_console)
1284 mynormvideo(); /* restore screen colors */
1285 }
1286}
1287
1288/*
1289 * We have no job control, fake it by starting a new shell.
1290 */
1291 void
1292mch_suspend(void)
1293{
1294 suspend_shell();
1295}
1296
1297extern int _fmode;
1298
1299/*
1300 * Prepare window for use by Vim.
1301 */
1302 void
1303mch_init(void)
1304{
1305 union REGS regs;
1306
1307#if defined(DJGPP) && defined(FEAT_CLIPBOARD)
1308 __dpmi_regs dpmi_regs;
1309#endif
1310
1311 /*
1312 * Get the video attributes at the cursor. These will be used as the
1313 * default attributes.
1314 */
1315 regs.h.ah = 0x08;
1316 regs.h.bh = 0x00; /* video page 0 */
1317 int86(0x10, &regs, &regs);
1318 orig_attr = regs.h.ah;
1319 mynormvideo();
1320 if (cterm_normal_fg_color == 0)
1321 cterm_normal_fg_color = (orig_attr & 0xf) + 1;
1322 if (cterm_normal_bg_color == 0)
1323 cterm_normal_bg_color = ((orig_attr >> 4) & 0xf) + 1;
1324
1325 term_console = TRUE; /* assume using the console for the things here */
1326 _fmode = O_BINARY; /* we do our own CR-LF translation */
1327 out_flush();
1328 set_interrupts(TRUE); /* catch interrupts */
1329
1330#ifdef DJGPP
1331 /*
1332 * Use Long File Names by default, if $LFN not set.
1333 */
1334 if (getenv("LFN") == NULL)
1335 putenv("LFN=y");
1336
1337 get_screenbase();
1338#endif
1339
1340#ifdef FEAT_MOUSE
1341/* find out if a MS compatible mouse is available */
1342 regs.x.ax = 0;
1343 (void)int86(0x33, &regs, &regs);
1344 mouse_avail = regs.x.ax;
1345 /* best guess for mouse coordinate computations */
1346 mch_get_shellsize();
1347 if (Columns <= 40)
1348 mouse_x_div = 16;
1349 if (Rows == 30)
1350 mouse_y_div = 16;
1351#endif
1352
1353 /*
1354 * Try switching to 16 colors for background, instead of 8 colors and
1355 * blinking. Does this always work? Can the old value be restored?
1356 */
1357 regs.x.ax = 0x1003;
1358 regs.h.bl = 0x00;
1359 regs.h.bh = 0x00;
1360 int86(0x10, &regs, &regs);
1361
1362 /*
1363 * Test if we have an enhanced AT keyboard. Write 0xFFFF to the keyboard
1364 * buffer and try to read it back. If we can't in 16 tries, it's an old
1365 * type XT keyboard.
1366 */
1367 regs.h.ah = 0x05;
1368 regs.x.cx = 0xffff;
1369 int86(0x16, &regs, &regs);
1370 if (regs.h.al != 1) /* skip this when keyboard buffer is full */
1371 {
1372 int i;
1373
1374 for (i = 0; i < 16; ++i)
1375 {
1376 regs.h.ah = 0x10;
1377 int86(0x16, &regs, &regs);
1378 if (regs.x.ax == 0xffff)
1379 break;
1380 }
1381 if (i == 16) /* 0xffff not read, must be old keyboard */
1382 {
1383 bioskey_read = 0;
1384 bioskey_ready = 1;
1385 }
1386 }
1387
1388#ifdef MCH_CURSOR_SHAPE
1389 /* Save the old cursor shape */
1390 mch_restore_cursor_shape(FALSE);
1391 /* Initialise the cursor shape */
1392 mch_update_cursor();
1393#endif
1394
1395#if defined(DJGPP) && defined(FEAT_CLIPBOARD)
1396 /*
1397 * Check to see if the Windows clipboard is available, ie. are we
1398 * running from a DOS session within Windows. Obviously, the Windows
1399 * clipboard will not be available if we're running under pure DOS.
1400 *
1401 * int 0x2f, AX = 0x1700 identifies the Windows version we're running
1402 * under. Upon return from the interrupt, if AX is unchanged, we're
1403 * running under pure DOS and no Windows clipboard is available.
1404 *
1405 * Remark: could use int86() here but __dpmi_int() is recommended in
1406 * the DJGPP docs, since int86() doesn't cover all available interrupts.
1407 */
1408 dpmi_regs.x.ax = 0x1700;
1409 if (__dpmi_int(0x2f, &dpmi_regs) == -1)
1410 /* real-mode interrupt failed? */
1411 dpmi_regs.x.ax = 0x1700; /* force failure */
1412
1413 if (dpmi_regs.x.ax == 0x1700) /* no change in AX? */
1414 clip_init(FALSE); /* no clipboard available, too bad */
1415 else /* else, running under Windows, OK */
1416 clip_init(TRUE); /* clipboard is available */
1417#endif
1418}
1419
1420 int
1421mch_check_win(
1422 int argc,
1423 char **argv)
1424{
1425 /* store argv[0], may be used for $VIM */
1426 if (*argv[0] != NUL)
1427 exe_name = FullName_save((char_u *)argv[0], FALSE);
1428
1429 /*
1430 * Try the DOS search path. The executable may in
1431 * fact be called differently, so try this last.
1432 */
1433 if (exe_name == NULL || *exe_name == NUL)
1434 exe_name = searchpath("vim.exe");
1435
1436 if (isatty(1))
1437 return OK;
1438 return FAIL;
1439}
1440
1441/*
1442 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1443 */
1444 int
1445mch_input_isatty(void)
1446{
1447 if (isatty(read_cmd_fd))
1448 return TRUE;
1449 return FALSE;
1450}
1451
1452#if defined(USE_FNAME_CASE) || defined(PROTO)
1453/*
1454 * fname_case(): Set the case of the file name, if it already exists.
1455 * TODO: should expand short to long file names. Need to use DOS interrupts,
1456 * see DJGPP sources libc/dos/dir/findfirs.c.
1457 */
1458 void
1459fname_case(char_u *name, int len)
1460{
1461 char_u *tail;
1462 struct ffblk fb;
1463
1464 slash_adjust(name);
1465 if (findfirst(name, &fb, 0) == 0)
1466 {
1467 tail = gettail(name);
1468 if (len == 0 ? STRLEN(tail) == STRLEN(fb.ff_name)
1469 : (tail - name) + STRLEN(fb.ff_name) < len)
1470 STRCPY(tail, fb.ff_name);
1471 }
1472}
1473#endif
1474
1475/*
1476 * return process ID
1477 */
1478 long
1479mch_get_pid(void)
1480{
1481 return (long)0;
1482}
1483
1484/*
1485 * Change default drive (just like _chdrive of Borland C 3.1)
1486 */
1487 static int
1488change_drive(int drive)
1489{
1490 union REGS regs;
1491
1492 regs.h.ah = 0x0e;
1493 regs.h.dl = drive - 1;
1494 intdos(&regs, &regs); /* set default drive */
1495 regs.h.ah = 0x19;
1496 intdos(&regs, &regs); /* get default drive */
1497 if (regs.h.al == drive - 1)
1498 return 0;
1499 return -1;
1500}
1501
1502/*
1503 * Get absolute file name into buffer 'buf' of length 'len' bytes.
1504 * All slashes are replaced with backslashes, to avoid trouble when comparing
1505 * file names. When 'shellslash' set do it the other way around.
1506 *
1507 * return FAIL for failure, OK otherwise
1508 */
1509 int
1510mch_FullName(
1511 char_u *fname,
1512 char_u *buf,
1513 int len,
1514 int force)
1515{
1516 if (!force && mch_isFullName(fname)) /* already expanded */
1517 {
1518 STRNCPY(buf, fname, len);
1519 buf[len - 1] = NUL;
1520 slash_adjust(buf);
1521 return OK;
1522 }
1523
1524#ifdef __BORLANDC__ /* Only Borland C++ has this */
1525 if (_fullpath((char *)buf, (char *)fname, len - 1) == NULL)
1526 return FAIL;
1527 return OK;
1528#else /* almost the same as mch_FullName() in os_unix.c */
1529 {
1530# if 1
1531 char_u fullpath[MAXPATHL];
1532
1533 if (!_truename(fname, fullpath))
1534 return FAIL;
1535 slash_adjust(fullpath); /* Only needed when 'shellslash' set */
1536 STRNCPY(buf, fullpath, len);
1537 buf[len - 1] = NUL;
1538 return OK;
1539
1540# else /* Old code, to be deleted... */
1541 int l;
1542 char_u olddir[MAXPATHL];
1543 char_u *p, *q;
1544 int c;
1545 int retval = OK;
1546
1547 *buf = 0;
1548 /*
1549 * change to the directory for a moment,
1550 * and then do the getwd() (and get back to where we were).
1551 * This will get the correct path name with "../" things.
1552 */
1553 p = vim_strrchr(fname, '/');
1554 q = vim_strrchr(fname, '\\');
1555 if (q != NULL && (p == NULL || q > p))
1556 p = q;
1557 q = vim_strrchr(fname, ':');
1558 if (q != NULL && (p == NULL || q > p))
1559 p = q;
1560 if (p != NULL)
1561 {
1562 if (getcwd(olddir, MAXPATHL) == NULL)
1563 {
1564 p = NULL; /* can't get current dir: don't chdir */
1565 retval = FAIL;
1566 }
1567 else
1568 {
1569 if (p == fname) /* /fname */
1570 q = p + 1; /* -> / */
1571 else if (q + 1 == p) /* ... c:\foo */
1572 q = p + 1; /* -> c:\ */
1573 else /* but c:\foo\bar */
1574 q = p; /* -> c:\foo */
1575
1576 c = *q; /* truncate at start of fname */
1577 *q = NUL;
1578# ifdef DJGPP
1579 STRCPY(buf, fname);
1580 slash_adjust(buf); /* needed when fname starts with \ */
1581 if (mch_chdir(buf)) /* change to the directory */
1582# else
1583 if (mch_chdir(fname)) /* change to the directory */
1584# endif
1585 retval = FAIL;
1586 else
1587 {
1588 fname = q;
1589 if (c == psepc) /* if we cut the name at a */
1590 fname++; /* '\', don't add it again */
1591 }
1592 *q = c;
1593 }
1594 }
1595 if (getcwd(buf, len) == NULL)
1596 {
1597 retval = FAIL;
1598 *buf = NUL;
1599 }
1600# ifdef USE_FNAME_CASE
1601 else
1602 {
1603 char_u *head;
1604 char_u *tail;
1605 struct ffblk fb;
1606 int c;
1607 int added;
1608
1609 /* Apparently "longna~1" isn't expanded by getcwd(), at least not
1610 * for DJGPP. Expand it here. Have to do each dirname
1611 * separately. */
1612 slash_adjust(buf);
1613 head = buf;
1614 if (isalpha(*head) && head[1] == ':')
1615 head += 2; /* skip "c:" */
1616 while (*head != NUL)
1617 {
1618 /* Advance "head" to the start of a dirname and "tail" to just
1619 * after it. */
1620 while (*head == '/' || *head == '\\')
1621 ++head;
1622 for (tail = head; *tail != NUL; ++tail)
1623 if (*tail == '/' || *tail == '\\')
1624 break;
1625 c = *tail;
1626 *tail = NUL;
1627
1628 if (findfirst(buf, &fb, FA_DIREC) == 0)
1629 {
1630 added = STRLEN(fb.ff_name);
1631 if ((head - buf) + added + STRLEN(tail + 1) + 2 < len)
1632 {
1633 added -= (tail - head);
1634 if (added != 0)
1635 mch_memmove(tail + 1 + added, tail + 1,
1636 STRLEN(tail + 1) + 1);
1637 STRCPY(head, fb.ff_name);
1638 tail += added;
1639 }
1640 }
1641 *tail = c;
1642 head = tail;
1643 }
1644 }
1645# endif
1646 if (p != NULL)
1647 mch_chdir(olddir);
1648 /*
1649 * Concatenate the file name to the path.
1650 */
1651 if (*fname != NUL)
1652 {
1653 l = STRLEN(buf);
1654 if (l > 0 && buf[l - 1] != '/' && buf[l - 1] != '\\')
1655 strcat(buf, pseps);
1656 strcat(buf, fname);
1657 }
1658 return retval;
1659# endif
1660 }
1661#endif
1662}
1663
1664/*
1665 * Replace all slashes by backslashes.
1666 * This used to be the other way around, but MS-DOS sometimes has problems
1667 * with slashes (e.g. in a command name). We can't have mixed slashes and
1668 * backslashes, because comparing file names will not work correctly. The
1669 * commands that use a file name should try to avoid the need to type a
1670 * backslash twice.
1671 * When 'shellslash' set do it the other way around.
1672 */
1673 void
1674slash_adjust(char_u *p)
1675{
1676#ifdef OLD_DJGPP /* this seems to have been fixed in DJGPP 2.01 */
1677 /* DJGPP can't handle a file name that starts with a backslash, and when it
1678 * starts with a slash there should be no backslashes */
1679 if (*p == '\\' || *p == '/')
1680 while (*p)
1681 {
1682 if (*p == '\\')
1683 *p = '/';
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001684 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 }
1686 else
1687#endif
1688 while (*p)
1689 {
1690 if (*p == psepcN)
1691 *p = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001692 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 }
1694}
1695
1696/*
1697 * Return TRUE if "fname" does not depend on the current directory.
1698 */
1699 int
1700mch_isFullName(char_u *fname)
1701{
1702 /* A name like "d:/foo" and "//server/share" is absolute */
1703 return (fname[0] != NUL && fname[1] == ':'
1704 && (fname[2] == '/' || fname[2] == '\\'))
1705 || (fname[0] == fname[1] && (fname[0] == '/' || fname[0] == '\\'));
1706}
1707
1708
1709 void
1710mch_early_init(void)
1711{
1712}
1713
1714/*
1715 * Careful: mch_exit() may be called before mch_init()!
1716 */
1717 void
1718mch_exit(int r)
1719{
1720 settmode(TMODE_COOK);
1721 stoptermcap();
1722 set_interrupts(FALSE); /* restore interrupts */
1723#ifdef DJGPP
1724 set_sys_cursor();
1725#endif
1726 /* Somehow outputting CR-NL causes the original colors to be restored */
1727 out_char('\r');
1728 out_char('\n');
1729 out_flush();
1730 ml_close_all(TRUE); /* remove all memfiles */
1731#ifdef MCH_CURSOR_SHAPE
1732 mch_restore_cursor_shape(TRUE);
1733#endif
1734 exit(r);
1735}
1736
1737/*
1738 * set the tty in (raw) ? "raw" : "cooked" mode
1739 * Does not change the tty, as bioskey() and kbhit() work raw all the time.
1740 */
1741 void
1742mch_settmode(int tmode)
1743{
1744}
1745
1746#ifdef FEAT_MOUSE
1747 void
1748mch_setmouse(int on)
1749{
1750 mouse_active = on;
1751 mouse_hidden = TRUE; /* dont show it until moved */
1752}
1753#endif
1754
1755/*
1756 * set screen mode
1757 * return FAIL for failure, OK otherwise
1758 */
1759 int
1760mch_screenmode(char_u *arg)
1761{
1762 int mode;
1763 int i;
1764 static char *(names[]) = {"BW40", "C40", "BW80", "C80", "MONO", "C4350"};
1765 static int modes[] = { BW40, C40, BW80, C80, MONO, C4350};
1766
1767 mode = -1;
1768 if (VIM_ISDIGIT(*arg)) /* mode number given */
1769 mode = atoi((char *)arg);
1770 else
1771 {
1772 for (i = 0; i < sizeof(names) / sizeof(char_u *); ++i)
1773 if (stricmp(names[i], (char *)arg) == 0)
1774 {
1775 mode = modes[i];
1776 break;
1777 }
1778 }
1779 if (mode == -1)
1780 {
1781 EMSG("E362: Unsupported screen mode");
1782 return FAIL;
1783 }
1784 textmode(mode); /* use Borland function */
1785#ifdef DJGPP
1786 /* base address may have changed */
1787 get_screenbase();
1788#endif
1789
1790 /* Screen colors may have changed. */
1791 out_str(T_ME);
1792
1793#ifdef FEAT_MOUSE
1794 if (mode <= 1 || mode == 4 || mode == 5 || mode == 13 || mode == 0x13)
1795 mouse_x_div = 16;
1796 else
1797 mouse_x_div = 8;
1798 if (mode == 0x11 || mode == 0x12)
1799 mouse_y_div = 16;
1800 else if (mode == 0x10)
1801 mouse_y_div = 14;
1802 else
1803 mouse_y_div = 8;
1804 shell_resized();
1805#endif
1806 return OK;
1807}
1808
1809/*
1810 * Structure used by Turbo-C/Borland-C to store video parameters.
1811 */
1812#ifndef DJGPP
1813extern struct text_info _video;
1814#endif
1815
1816/*
1817 * try to get the real window size
1818 * return FAIL for failure, OK otherwise
1819 */
1820 int
1821mch_get_shellsize(void)
1822{
1823 struct text_info textinfo;
1824
1825 /*
1826 * The screenwidth is returned by the BIOS OK.
1827 * The screenheight is in a location in the bios RAM, if the display is
1828 * EGA or VGA.
1829 */
1830 if (!term_console)
1831 return FAIL;
1832 gettextinfo(&textinfo);
1833 Columns = textinfo.screenwidth;
1834 Rows = textinfo.screenheight;
1835#ifndef DJGPP
1836 if (textinfo.currmode > 10)
1837 Rows = *(char far *)MK_FP(0x40, 0x84) + 1;
1838#endif
1839
1840 if (Columns < MIN_COLUMNS || Rows < MIN_LINES)
1841 {
1842 /* these values are overwritten by termcap size or default */
1843 Columns = 80;
1844 Rows = 25;
1845 return FAIL;
1846 }
1847#ifdef DJGPP
1848 mytextinit(&textinfo); /* Added by JML, 1/15/98 */
1849#endif
1850
1851 return OK;
1852}
1853
1854/*
1855 * Set the active window for delline/insline.
1856 */
1857 static void
1858set_window(void)
1859{
1860 if (term_console)
1861 {
1862#ifndef DJGPP
1863 _video.screenheight = Rows;
1864#endif
1865 mywindow(1, 1, Columns, Rows);
1866 }
1867 screen_start();
1868}
1869
1870 void
1871mch_set_shellsize(void)
1872{
1873 /* Should try to set the window size to Rows and Columns.
1874 * May involve switching display mode....
1875 * We assume the user knows the size and just use it. */
1876}
1877
1878/*
1879 * Rows and/or Columns has changed.
1880 */
1881 void
1882mch_new_shellsize()
1883{
1884#ifdef FEAT_MOUSE
1885 /* best guess for mouse coordinate computations */
1886 if (Columns <= 40)
1887 mouse_x_div = 16;
1888 if (Rows == 30)
1889 mouse_y_div = 16;
1890#endif
1891 set_window();
1892#ifdef FEAT_MOUSE
1893 mouse_area(); /* set area where mouse can go */
1894#endif
1895}
1896
1897#if defined(DJGPP) || defined(PROTO)
1898/*
1899 * Check the number of Columns with a BIOS call. This avoids a crash of the
1900 * DOS console when 'columns' is set to a too large value.
1901 */
1902 void
1903mch_check_columns()
1904{
1905 static union REGS regs;
1906
1907 regs.h.ah = 0x0f;
1908 (void)int86(0x10, &regs, &regs);
1909 if ((unsigned)Columns > (unsigned)regs.h.ah)
1910 Columns = (unsigned)regs.h.ah;
1911}
1912#endif
1913
1914/*
1915 * call shell, return FAIL for failure, OK otherwise
1916 * options: SHELL_*, see vim.h.
1917 */
1918 int
1919mch_call_shell(
1920 char_u *cmd,
1921 int options)
1922{
1923 int x;
1924 int tmode = cur_tmode;
1925#ifndef DJGPP
1926 char_u *newcmd;
1927#endif
1928
1929 out_flush();
1930#ifdef DJGPP
1931 set_sys_cursor();
1932#endif
1933
1934 if (options & SHELL_COOKED)
1935 settmode(TMODE_COOK); /* set to normal mode */
1936 set_interrupts(FALSE); /* restore interrupts */
1937
1938#ifdef DJGPP
1939 /* ignore signals while external command is running */
1940 signal(SIGINT, SIG_IGN);
1941 signal(SIGHUP, SIG_IGN);
1942 signal(SIGQUIT, SIG_IGN);
1943 signal(SIGTERM, SIG_IGN);
1944#endif
1945 if (cmd == NULL)
1946 x = system((char *)p_sh);
1947 else
1948 {
1949#ifdef DJGPP
1950 /*
1951 * Use 'shell' for system().
1952 */
1953 setenv("SHELL", (char *)p_sh, 1);
1954 x = system(cmd);
1955#else
1956 /* we use "command" to start the shell, slow but easy */
1957 newcmd = alloc(STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 3);
1958 if (newcmd == NULL)
1959 x = -1;
1960 else
1961 {
1962 sprintf((char *)newcmd, "%s %s %s", p_sh, p_shcf, cmd);
1963 x = system((char *)newcmd);
1964 vim_free(newcmd);
1965 }
1966#endif
1967 }
1968#ifdef DJGPP
1969 signal(SIGINT, SIG_DFL);
1970 signal(SIGHUP, SIG_DFL);
1971 signal(SIGQUIT, SIG_DFL);
1972 signal(SIGTERM, SIG_DFL);
1973#endif
1974 if (tmode == TMODE_RAW)
1975 settmode(TMODE_RAW); /* set to raw mode */
1976 set_interrupts(TRUE); /* catch interrupts */
1977
1978 if (x && !(options & SHELL_SILENT) && !emsg_silent)
1979 {
1980 MSG_PUTS("\nshell returned ");
1981 msg_outnum((long)x);
1982 msg_putchar('\n');
1983 }
1984
1985 return x;
1986}
1987
1988/*
1989 * check for an "interrupt signal": CTRL-break or CTRL-C
1990 */
1991 void
1992mch_breakcheck(void)
1993{
1994 if (ctrlc_pressed)
1995 {
1996 ctrlc_pressed = FALSE;
1997 got_int = TRUE;
1998 }
1999}
2000
2001/*
2002 * Return TRUE if "p" contain a wildcard that can be expanded by
2003 * dos_expandpath().
2004 */
2005 int
2006mch_has_exp_wildcard(char_u *p)
2007{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002008 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 {
2010 if (vim_strchr((char_u *)"?*[", *p) != NULL
2011 || (*p == '~' && p[1] != NUL))
2012 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 }
2014 return FALSE;
2015}
2016
2017/*
2018 * Return TRUE if "p" contain a wildcard or a "~1" kind of thing (could be a
2019 * shortened file name).
2020 */
2021 int
2022mch_has_wildcard(char_u *p)
2023{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002024 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 {
2026 if (vim_strchr((char_u *)
2027# ifdef VIM_BACKTICK
2028 "?*$[`"
2029# else
2030 "?*$["
2031# endif
2032 , *p) != NULL
2033 || (*p == '~' && p[1] != NUL))
2034 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 }
2036 return FALSE;
2037}
2038
2039/*
2040 * Change directory to "path".
2041 * The normal chdir() does not change the default drive. This one does.
2042 * Return 0 for success, -1 for failure.
2043 */
2044 int
2045mch_chdir(char *path)
2046{
2047 if (path[0] == NUL) /* just checking... */
2048 return 0;
2049 if (path[1] == ':') /* has a drive name */
2050 {
2051 if (change_drive(TOLOWER_ASC(path[0]) - 'a' + 1))
2052 return -1; /* invalid drive name */
2053 path += 2;
2054 }
2055 if (*path == NUL) /* drive name only */
2056 return 0;
2057 return chdir(path); /* let the normal chdir() do the rest */
2058}
2059
2060#ifdef DJGPP
2061/*
2062 * mch_rename() works around a bug in rename (aka MoveFile) in
2063 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
2064 * file whose short file name is "FOO.BAR" (its long file name will
2065 * be correct: "foo.bar~"). Because a file can be accessed by
2066 * either its SFN or its LFN, "foo.bar" has effectively been
2067 * renamed to "foo.bar", which is not at all what was wanted. This
2068 * seems to happen only when renaming files with three-character
2069 * extensions by appending a suffix that does not include ".".
2070 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
2071 * This works like mch_rename in os_win32.c, but is a bit simpler.
2072 *
2073 * Like rename(), returns 0 upon success, non-zero upon failure.
2074 * Should probably set errno appropriately when errors occur.
2075 */
2076
2077 int
2078mch_rename(const char *OldFile, const char *NewFile)
2079{
2080 char_u *TempFile;
2081 int retval;
2082 int fd;
2083
2084 /* rename() works correctly without long file names, so use that */
2085 if (!_USE_LFN)
2086 return rename(OldFile, NewFile);
2087
2088 if ((TempFile = alloc((unsigned)(STRLEN(OldFile) + 13))) == NULL)
2089 return -1;
2090
2091 STRCPY(TempFile, OldFile);
2092 STRCPY(gettail(TempFile), "axlqwqhy.ba~");
2093 if (rename(OldFile, TempFile))
2094 retval = -1;
2095 else
2096 {
2097 /* now create an empty file called OldFile; this prevents
2098 * the operating system using OldFile as an alias (SFN)
2099 * if we're renaming within the same directory. For example,
2100 * we're editing a file called filename.asc.txt by its SFN,
2101 * filena~1.txt. If we rename filena~1.txt to filena~1.txt~
2102 * (i.e., we're making a backup while writing it), the SFN
2103 * for filena~1.txt~ will be filena~1.txt, by default, which
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002104 * will cause all sorts of problems later in buf_write(). So, we
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 * create an empty file called filena~1.txt and the system will have
2106 * to find some other SFN for filena~1.txt~, such as filena~2.txt
2107 */
2108 if ((fd = open(OldFile, O_RDWR|O_CREAT|O_EXCL, 0444)) < 0)
2109 return -1;
2110 retval = rename(TempFile, NewFile);
2111 close(fd);
2112 mch_remove((char_u *)OldFile);
2113
2114 /* If renaming to NewFile failed, rename TempFile back to OldFile, so
2115 * that it looks like nothing happened. */
2116 if (retval)
2117 rename(TempFile, OldFile);
2118 }
2119 vim_free(TempFile);
2120
2121 return retval; /* success */
2122}
2123#endif
2124
2125#if defined(DJGPP) || defined(PROTO)
2126/*
2127 * setlocale() for DJGPP with MS-DOS codepage support
2128 * Author: Cyril Slobin <slobin@fe.msk.ru>
2129 *
2130 * Scaled down a lot for use by Vim: Only support setlocale(LC_ALL, "").
2131 */
2132
2133#undef setlocale
2134
2135#include <go32.h>
2136#include <inlines/ctype.ha>
2137#include <locale.h>
2138
2139#define UPCASE (__dj_ISALNUM | __dj_ISALPHA | __dj_ISGRAPH | __dj_ISPRINT | __dj_ISUPPER)
2140#define LOCASE (__dj_ISALNUM | __dj_ISALPHA | __dj_ISGRAPH | __dj_ISPRINT | __dj_ISLOWER)
2141
2142 char *
2143djgpp_setlocale(void)
2144{
2145 __dpmi_regs regs;
2146 struct { char id; unsigned short off, seg; } __attribute__ ((packed)) info;
2147 unsigned char buffer[0x82], lower, upper;
2148 int i;
2149
2150 regs.x.ax = 0x6502;
2151 regs.x.bx = 0xffff;
2152 regs.x.dx = 0xffff;
2153 regs.x.cx = 5;
2154 regs.x.es = __tb >> 4;
2155 regs.x.di = __tb & 0xf;
2156
2157 __dpmi_int(0x21, &regs);
2158
2159 if (regs.x.flags & 1)
2160 return NULL;
2161
2162 dosmemget(__tb, 5, &info);
2163 dosmemget((info.seg << 4) + info.off, 0x82, buffer);
2164
2165 if (*(short *)buffer != 0x80)
2166 return NULL;
2167
2168 /* Fix problem of underscores being replaced with y-umlaut. (Levin) */
2169 if (buffer[26] == 0x5f)
2170 buffer[26] = 0x98;
2171
2172 for (i = 0; i < 0x80; i++)
2173 {
2174 lower = i + 0x80;
2175 upper = (buffer+2)[i];
2176 if (lower != upper)
2177 {
2178 __dj_ctype_flags[lower+1] = LOCASE;
2179 __dj_ctype_toupper[lower+1] = upper;
2180 if (__dj_ctype_flags[upper+1] == 0)
2181 __dj_ctype_flags[upper+1] = UPCASE;
2182 if (__dj_ctype_tolower[upper+1] == upper)
2183 __dj_ctype_tolower[upper+1] = lower;
2184 }
2185 }
2186
2187 return "C";
2188}
2189
2190#if defined(FEAT_CLIPBOARD) || defined(PROTO)
2191
2192/*
2193 * Clipboard stuff, for cutting and pasting text to other windows.
2194 *
2195 * Implementation of DOS/Windows clipboard data transfer
2196 * by David Kotchan (dkotchan@sympatico.ca)
2197 */
2198
2199#define CF_TEXT 0x01 /* Windows clipboard format: Windows (ANSI) text */
2200#define CF_OEMTEXT 0x07 /* Windows clipboard format: OEM (DOS) text */
2201#define CF_VIMCLIP 0x04 /* trick: SYLK clipboard format for VimClipboard */
2202
2203static int Win16OpenClipboard(void);
2204static int Win16CloseClipboard(void);
2205static int Win16EmptyClipboard(void);
2206static char_u *Win16GetClipboardData(int clip_data_format);
2207static int Win16SetClipboardData(int clip_data_format, char_u *clip_data, int clip_data_size, int clip_data_type);
2208
2209/*
2210 * Make vim the owner of the current selection. Return OK upon success.
2211 */
2212 int
2213clip_mch_own_selection(VimClipboard *cbd)
2214{
2215 /*
2216 * Never actually own the clipboard. If another application sets the
2217 * clipboard, we don't want to think that we still own it.
2218 */
2219 return FAIL;
2220}
2221
2222/*
2223 * Make vim NOT the owner of the current selection.
2224 */
2225 void
2226clip_mch_lose_selection(VimClipboard *cbd)
2227{
2228 /* Nothing needs to be done here */
2229}
2230
2231/*
2232 * Read the Windows clipboard text and put it in Vim's clipboard register.
2233 */
2234 void
2235clip_mch_request_selection(VimClipboard *cbd)
2236{
2237 int type = MCHAR;
2238 char_u *pAllocated = NULL;
2239 char_u *pClipText = NULL;
2240 int clip_data_format = 0;
2241
2242 if (Win16OpenClipboard())
2243 {
2244 /* Check for Vim's own clipboard format first. The CF_VIMCLIP format
2245 * is just ordinary text (like CF_TEXT) except prepended by the
2246 * selection type (as a single character). Note that under DOS we
2247 * actually cannot define a custom CF_VIMCLIP clipboard format; we
2248 * use instead one of the existing Windows-defined formats, usually
2249 * "DIF" or "SYLK". See Win16GetClipboardData() for details.
2250 *
2251 * Note that Win16GetClipboardData() returns the address of the memory
2252 * block it allocated. This is not necessary the start of the
2253 * clipboard text data: there may be other bytes ahead of the
2254 * text (particularly for CF_VIMCLIP) which are used for data
2255 * management. So pClipText is not necessarily == pAllocated.
2256 */
2257
2258 if ((pAllocated = Win16GetClipboardData(CF_VIMCLIP)) != NULL)
2259 {
2260 clip_data_format = CF_VIMCLIP;
2261 pClipText = pAllocated;
2262
2263 switch (*pClipText++) /* after ++, pClipText points to text */
2264 {
2265 default:
2266 case 'L': type = MLINE; break;
2267 case 'C': type = MCHAR; break;
2268#ifdef FEAT_VISUAL
2269 case 'B': type = MBLOCK; break;
2270#endif
2271 }
2272 }
2273
2274 /* Otherwise, check for the normal Windows text formats. There are
2275 * two of these: CF_TEXT (common) and CF_OEMTEXT (used for DOS
2276 * compatibility). Experiments show that, under the DOS/Windows
2277 * clipboard interface, writing CF_TEXT data to the clipboard
2278 * automatically creates a CF_OEMTEXT format as well.
2279 */
2280
2281 else if ((pAllocated = Win16GetClipboardData(CF_TEXT)) != NULL)
2282 {
2283 clip_data_format = CF_TEXT;
2284 pClipText = pAllocated;
2285 type = (vim_strchr((char*)pClipText, '\r') != NULL) ? MLINE : MCHAR;
2286 }
2287
2288 else if ((pAllocated = Win16GetClipboardData(CF_OEMTEXT)) != NULL)
2289 {
2290 clip_data_format = CF_OEMTEXT;
2291 pClipText = pAllocated;
2292 type = (vim_strchr((char*)pClipText, '\r') != NULL) ? MLINE : MCHAR;
2293 }
2294
2295 /* Did we get anything? */
2296
2297 if (pClipText != NULL)
2298 {
2299 char_u *pDest;
2300 char_u *pStart;
2301 char_u *pEnd;
2302
2303 long_u clip_data_size = 0;
2304
2305 /* The Windows clipboard normally stores its text lines terminated
2306 * by <CR><NL>. But Vim uses only <NL>, so translate the <CR><NL>
2307 * into <NL>. Also, watch for possible null bytes at the end of
2308 * pClipText. These are padding added by "get_clipboard_data"
2309 * (int 0x2f, AX= 0x1705) in order to round the data size up to the
2310 * next multiple of 32 bytes. See Win16GetClipboardData() for
2311 * details.
2312 */
2313
2314 pDest = strstr( pClipText, "\r\n" ); /* find first <CR><NL> */
2315
2316 if (pDest != NULL) /* found one? */
2317 {
2318 pStart = pDest + 1; /* points to <NL> after <CR> */
2319 pEnd = strstr( pStart, "\r\n" );/* find next <CR><NL> */
2320
2321 while (pEnd != NULL) /* found one? */
2322 {
2323 memmove(pDest, pStart, (long)(pEnd - pStart));
2324 /* exclude <CR> */
2325 pDest += (long)(pEnd - pStart); /* new destination */
2326 pStart = pEnd + 1; /* new starting point */
2327 pEnd = strstr(pStart, "\r\n"); /* find next <CR><NL> */
2328 }
2329
2330 /* Fell out of while() loop: no more <CR><NL> pairs. Just copy
2331 * the rest of the data, up to the first null byte. */
2332 pEnd = strchr(pStart, '\0'); /* find first null */
2333
2334 memmove(pDest, pStart, (long)(pEnd - pStart)); /* exclude nul */
2335 pDest += (long)(pEnd - pStart);
2336 *pDest = '\0'; /* terminate */
2337
2338 /* Now that all <CR><NL> pairs have been "compressed" into just
2339 * <NL>'s, determine the true text length. */
2340 clip_data_size = (long_u)(pDest - pClipText);
2341 }
2342 else
2343 {
2344 /* no <CR><NL> pairs at all */
2345 /* Since the data may have been padded with trailing nulls,
2346 * determine the true string length. */
2347 clip_data_size = STRLEN(pClipText); /* true data length */
2348 }
2349
2350 /* Copy the cleaned-up data over to Vim's clipboard "*" register. */
2351 clip_yank_selection(type, pClipText, clip_data_size, cbd);
2352
2353 /* Free the memory that Win16GetClipboardData() allocated. */
2354 vim_free(pAllocated);
2355 }
2356
2357 Win16CloseClipboard();
2358
2359 } // end if (Win16OpenClipboard())
2360}
2361
2362/*
2363 * Send the currently selected Vim text to the Windows clipboard.
2364 */
2365 void
2366clip_mch_set_selection( VimClipboard *cbd )
2367{
2368 char_u *pClipData = NULL;
2369 long_u clip_data_size;
2370 int clip_data_type;
2371
2372 /* If the '*' register isn't already filled in, fill it in now. */
2373 cbd->owned = TRUE;
2374 clip_get_selection(cbd);
2375 cbd->owned = FALSE;
2376
2377 /*
2378 * clip_convert_selection() returns a pointer to a buffer containing
2379 * the text to send to the Windows clipboard, together with a count
2380 * of the number of characters (bytes) in the buffer. The function's
2381 * return value is the 'type' of selection: MLINE, MCHAR, or MBLOCK;
2382 * or -1 for failure.
2383 */
2384 clip_data_type = clip_convert_selection(&pClipData, &clip_data_size, cbd);
2385
2386 if (clip_data_type < 0) /* could not convert? */
2387 return; /* early exit */
2388
2389 if (Win16OpenClipboard())
2390 {
2391 if (Win16EmptyClipboard())
2392 {
2393 int sentOK;
2394
2395 sentOK = Win16SetClipboardData(CF_TEXT, pClipData,
2396 clip_data_size, clip_data_type);
2397 sentOK = Win16SetClipboardData(CF_VIMCLIP,
2398 pClipData, clip_data_size, clip_data_type) && sentOK;
2399
2400 if (!sentOK)
2401 {
2402 /* one or both of Win16SetClipboardData() failed. */
2403 /* Technically we don't know why Win16SetClipboardData()
2404 * failed, but almost always it will be because there wasn't
2405 * enough DOS memory to bufer the data, so report that as the
2406 * problem.
2407 *
2408 * We report the error here (instead of in
2409 * Win16SetClipboardData()) because we don't want the error
2410 * reported twice.
2411 */
2412 EMSG("E450: Selection too large, cannot allocate DOS buffer");
2413 }
2414 }
2415
2416 Win16CloseClipboard();
2417 }
2418
2419 /* release memory allocated by clip_convert_selection() */
2420 vim_free(pClipData);
2421
2422 return;
2423}
2424
2425/*
2426 * Win16OpenClipboard: open the Windows clipboard. The clipboard must be open
2427 * before it can be communicated with at all. Return TRUE on success,
2428 * FALSE on failure.
2429 */
2430 static int
2431Win16OpenClipboard(void)
2432{
2433 __dpmi_regs dpmi_regs;
2434
2435 long start_time;
2436 int tick_count;
2437
2438 /* int 02xf, AX = 0x1701 attempts to open the Windows clipboard. Upon
2439 * return from the interrupt, if AX is non-zero, the clipboard was
2440 * successfully opened. If AX is zero, the clipboard could not be opened
2441 * because it is currently in use by another process.
2442 *
2443 * Remark: other DOS programs I (dk) have written that use the Windows
2444 * clipboard sometimes encounter the problem that the clipboard cannot
2445 * be opened even though it is demonstrably not in use by any other
2446 * process. In all cases, repeated attempts to open the clipboard
2447 * eventually succeed, but the initial attempt occasionally fails.
2448 *
2449 * The problem is intermittent and appears to be related to DOS being
2450 * "busy" at certain unpredictable times. DOS maintains two internal
2451 * flags that indicate whether it's busy: InDOS and CritErr. The
2452 * location of InDOS can be found by calling int 0x21, AH = 0x34. The
2453 * location of CritErr can be found by calling int 0x21, AX = 0x5d06.
2454 * If either of these flags is set, DOS is "busy" and cannot be
2455 * interrupted. See "Undocumented DOS" by Schulman et al for details.
2456 *
2457 * However here I take the easier approach that if the first call to open
2458 * the clipboard does not succeed, just try again. In fact, try once per
2459 * biostime() clock tick, up to 18 times (about one second).
2460 */
2461
2462 tick_count = 0;
2463
2464 dpmi_regs.x.ax = 0x1701; /* open Windows clipboard */
2465 if (__dpmi_int(0x2f, &dpmi_regs) == -1)
2466 {
2467 /* real-mode interrupt failed? */
2468 return FALSE; /* FALSE --> clipboard not open */
2469 }
2470
2471 /* wait up to one second */
2472 while (dpmi_regs.x.ax == 0 && tick_count++ < 18)
2473 {
2474 /* Wait one clock tick (18.2 ticks/sec = 55 msec per tick).
2475 *
2476 * We busy-wait here. Unfortunately, delay() and usleep() have been
2477 * reported to give problems with the original Windows 95. This is
2478 * fixed in service pack 1, but not everybody installed that.
2479 */
2480 start_time = biostime(0, 0L);
2481 while (biostime(0, 0L) == start_time)
2482 ;
2483
2484 dpmi_regs.x.ax = 0x1701; /* open Windows clipboard */
2485 if (__dpmi_int(0x2f, &dpmi_regs) == -1)
2486 {
2487 /* real-mode interrupt failed? */
2488 return FALSE; /* FALSE --> clipboard not open */
2489 }
2490 }
2491
2492 /* Couldn't open the clipboard, even after 18 attempts? */
2493
2494 if (tick_count >= 18 && dpmi_regs.x.ax == 0)
2495 return FALSE; /* FALSE --> clipboard not open */
2496
2497 return TRUE; /* TRUE --> clipboard opened successfully, OK */
2498}
2499
2500/*
2501 * Win16CloseClipboard: close the Windows clipboard. Return TRUE on
2502 * success, FALSE on failure. This function can always be called,
2503 * whether the clipboard is open or not.
2504 */
2505 static int
2506Win16CloseClipboard(void)
2507{
2508 __dpmi_regs dpmi_regs;
2509
2510 /* Close the clipboard. This interrupt can always be called, even
2511 * if the clipboard is already closed.
2512 */
2513
2514 dpmi_regs.x.ax = 0x1708; /* close the clipboard */
2515 if (__dpmi_int(0x2f, &dpmi_regs) == -1)
2516 {
2517 /* real-mode interrupt failed? */
2518 return FALSE; /* FALSE --> clipboard could not be closed */
2519 }
2520
2521 return TRUE; /* TRUE --> clipboard closed successfully, OK */
2522}
2523
2524/*
2525 * Win16EmptyClipboard: empty the (previously opened) Windows clipboard.
2526 * Return TRUE on success, FALSE on failure.
2527 */
2528 static int
2529Win16EmptyClipboard(void)
2530{
2531 __dpmi_regs dpmi_regs;
2532
2533 /* int 02xf, AX = 0x1702 attempts to empty the Windows clipboard. Upon
2534 * return from the interrupt, if AX == 0, the clipboard could not be
2535 * emptied (for some reason).
2536 */
2537 dpmi_regs.x.ax = 0x1702; /* empty the Windows clipboard */
2538 if (__dpmi_int(0x2f, &dpmi_regs) == -1)
2539 {
2540 /* real-mode interrupt failed? */
2541 return FALSE; /* FALSE --> clipboard could not be emptied */
2542 }
2543
2544 /* Did we succeed in clearing the clipboard? */
2545 if (dpmi_regs.x.ax == 0)
2546 return FALSE; /* FALSE --> clipboard could not be emptied */
2547
2548 return TRUE; /* TRUE --> clipboard was emptied, OK */
2549}
2550
2551/*
2552 * FreeDOSMemory: a helper function to free memory previously
2553 * allocated by a call to __dpmi_allocate_dos_memory().
2554 */
2555 static void
2556FreeDOSMemory(int protected_mode_selector)
2557{
2558 /* Free the DOS buffer and release the DPMI prot-mode selector.
2559 *
2560 * It's important that DOS memory be properly released because
2561 * there's only a limited amount of it. Therefore, if the call
2562 * to __dpmi_free_dos_memory() fails, emit an error message
2563 * unconditionally.
2564 */
2565 if (__dpmi_free_dos_memory(protected_mode_selector) == -1)
2566 EMSG("E451: could not free DOS memory buffer (DJGPP)");
2567}
2568
2569/*
2570 * Win16GetClipboardData: query the Windows clipboard as to whether data
2571 * is available in a particular clipboard format. If data is
2572 * available, allocate a buffer for it and read the data from the
2573 * clipboard into the buffer. Return a pointer to the buffer. If
2574 * no data is available in the requested format, return NULL.
2575 *
2576 * This routine allocates memory to hold the retrieved clipboard
2577 * data. It's the caller's responsibility to free this memory
2578 * once it's finished using it. The memory should be freed by
2579 * calling vim_free().
2580 */
2581 static char_u *
2582Win16GetClipboardData(int clip_data_format)
2583{
2584 __dpmi_regs dpmi_regs;
2585
2586 int real_mode_segment_address;
2587 int protected_mode_selector;
2588
2589 char_u *clip_data_buffer;
2590 long_u clip_data_size;
2591
2592 /* We only handle clipboard formats we recognize, others are ignored.
2593 *
2594 * It's not possible to create a custom clipboard format for VimClipboard
2595 * data under DOS, so one of the predefined Windows formats had to be
2596 * used for CF_VIMCLIP. Two obscure formats, popular when Windows 3.0
2597 * came out but no longer in much use today, are the DIF and SYLK formats.
2598 * DIF is the Data Interchange Format, SYLK is the Symbolic Link format.
2599 * They are both text formats and either one can be hijacked for use as
2600 * "the VimClipboard format". Of course, this conflicts with anyone who
2601 * still *is* using DIF or SYLK data formats, but that will be very few
2602 * people.
2603 *
2604 * I (dk) chose SYLK as the more obscure format because it was used
2605 * mostly for Microsoft Multiplan (the pre-cursor to Excel) and it's not
2606 * likely Multiplan is used anywhere much anymore. Mind you, Excel can
2607 * still export to both DIF and SYLK formats.
2608 */
2609
2610 switch (clip_data_format)
2611 {
2612 case CF_VIMCLIP: /* Vim's own special clipboard format */
2613 case CF_TEXT: /* Windows text */
2614 case CF_OEMTEXT: /* DOS (OEM) text */
2615
2616 /* int 02xf, AX = 0x1704 returns the number of bytes of data currently
2617 * on the Windows clipboard, for the specified format. Upon return
2618 * from the interrupt, DX:AX = the number of bytes, rounded up to the
2619 * nearest multiple of 32.
2620 */
2621
2622 dpmi_regs.x.ax = 0x1704; /* get size of clipbd data */
2623 dpmi_regs.x.dx = clip_data_format;
2624 if (__dpmi_int(0x2f, &dpmi_regs) == -1)
2625 {
2626 /* real-mode interrupt failed? */
2627 return NULL; /* early exit */
2628 }
2629
2630 /* Did we get anything? If not, this is not an error. */
2631 if (dpmi_regs.x.dx == 0 && dpmi_regs.x.ax == 0)
2632 {
2633 /* no CF_VIMCLIP data? */
2634 return NULL; /* early exit */
2635 }
2636
2637 /* There is data available in the requested clipboard format.
2638 *
2639 * Calculate data size. Remember this is rounded up to the nearest
2640 * multiple of 32, so clip_data_size is actually an upper limit.
2641 * The extra bytes, if any, are set to null (0x00) when the data is
2642 * read from the clipboard. (Later:) actually I'm no longer sure
2643 * this is strictly true: the end-of-data is marked by a null, but
2644 * the extra bytes appear to sometimes be null, sometimes not.
2645 * They may just be garbage.
2646 */
2647 clip_data_size = dpmi_regs.x.ax + (dpmi_regs.x.dx << 16);
2648
2649 /* Allocate memory to retrieve the data. The buffer has to lie in the
2650 * DOS memory region (in the first 1 MByte of address space) because
2651 * the Windows clipboard interface expects a 16-bit segment:offset
2652 * pointer to a buffer address within the DOS region. Must therefore
2653 * use __dpmi_allocate_dos_memory() instead of lalloc() or alloc().
2654 */
2655 real_mode_segment_address = __dpmi_allocate_dos_memory(
2656 (clip_data_size + 15) >> 4, /* buffer size, in 16-byte paragraphs */
2657 &protected_mode_selector); /* prot-mode selector for the address */
2658
2659 if (real_mode_segment_address == -1)
2660 {
2661 /* memory allocation failed. */
2662
2663 /* Technically we don't know why the allocation failed, but
2664 * almost always it will be because there wasn't enough DOS
2665 * memory to satisfy the request, so report that as the problem.
2666 * On my system, DJGPP is able to satisfy a DOS allocation request
2667 * up to about 600K in size. This depends on your HIMEM.SYS and
2668 * EMM386.EXE settings however.
2669 */
2670 EMSG("E452: Clipboard data too large, cannot allocate DOS buffer");
2671 return NULL; /* early exit */
2672 }
2673
2674 /* Copy data from the clipboard into the buffer. Experiments show that
2675 * the Windows clipboard is smart enough to handle data transfers
2676 * larger than 64K properly, even though the buffer address is a 16-bit
2677 * segment:offset (which would normally limit the block size to 64K
2678 * unless ES gets incremented).
2679 */
2680 dpmi_regs.x.ax = 0x1705; /* get clipboard data */
2681 dpmi_regs.x.dx = clip_data_format; /* CF_VIMCLIP */
2682 dpmi_regs.x.es = real_mode_segment_address; /* buffer ad: segment */
2683 dpmi_regs.x.bx = 0; /* buffer ad: offset */
2684 if (__dpmi_int( 0x2f, &dpmi_regs) == -1)
2685 {
2686 /* real-mode interrupt failed? */
2687 EMSG("E453: could not copy clipboard data to DOS buffer");
2688 FreeDOSMemory(protected_mode_selector); /* clean up DOS mem */
2689 return NULL; /* early exit */
2690 }
2691
2692 /* Clipboard data is now in DOS memory in the buffer pointed to by
2693 * ES:BX. Copy this into ordinary memory that Vim can access (ie.
2694 * prot-mode memory). Allocate one extra byte to ensure the text
2695 * is terminated properly (in case it was somehow corrupted).
2696 */
2697 clip_data_buffer = (char_u *)lalloc(clip_data_size + 1, TRUE);
2698
2699 if (clip_data_buffer == NULL)
2700 {
2701 /* allocation failed? */
2702 EMSG("E454: could not allocate clipboard memory buffer");
2703 FreeDOSMemory(protected_mode_selector); /* clean up DOS mem */
2704 return NULL; /* early exit */
2705 }
2706
2707 *(clip_data_buffer + clip_data_size) = '\0'; /* ensure terminated */
2708
2709 /* Copy the data from DOS memory to Vim-accessible memory. */
2710 movedata( /* DJGPP version of memcpy() */
2711 protected_mode_selector, 0, /* source: DOS ad (via selector) */
2712 _my_ds(), (unsigned)clip_data_buffer,
2713 /* target: normal mem address */
2714 clip_data_size); /* how many bytes */
2715
2716 /* Free the DOS buffer and release the DPMI prot-mode selector. */
2717 FreeDOSMemory(protected_mode_selector); /* clean up DOS memory */
2718
2719 return clip_data_buffer; /* return pointer to allocated buffer */
2720
2721 default: /* unknown clipboard format */
2722 return NULL;
2723 }
2724}
2725
2726/*
2727 * Win16SetClipboardData: send 'clip_data_size' bytes of data from the buffer
2728 * pointed to by 'clip_data', to the Windows clipboard. The data is
2729 * registered with the clipboard as being in the 'clip_data_format'
2730 * format.
2731 */
2732 static int
2733Win16SetClipboardData(
2734 int clip_data_format,
2735 char_u *clip_data,
2736 int clip_data_size,
2737 int clip_data_type)
2738{
2739 __dpmi_regs dpmi_regs;
2740
2741 int real_mode_segment_address;
2742 int protected_mode_selector;
2743 long_u protected_mode_offset = 0L;
2744 int total_size = clip_data_size;
2745
2746 char_u *clip_sel_type;
2747
2748 /* If we're using the CF_VIMCLIP custom format, allocate an extra
2749 * byte for clip_sel_type, which is a character indicating the type
2750 * of text selection: MLINE, MCHAR, or MBLOCK.
2751 */
2752 if (clip_data_format == CF_VIMCLIP)
2753 total_size++; /* extra byte for marker */
2754
2755 /* Data cannot be sent directly from a Vim string (pClipData) to
2756 * the Windows clipboard, because the Windows clipboard interface
2757 * expects a 16-bit (DOS) segment:offset address for the source
2758 * buffer. Therefore we must create a "transfer buffer" in the DOS
2759 * memory region (in the first 1 MByte of address space) and copy
2760 * the Vim string into that. From there, the data can then be sent
2761 * to the Windows clipboard.
2762 *
2763 * To allocate DOS memory, we must use __dpmi_allocate_dos_memory()
2764 * instead of lalloc() or alloc(). If the allocation fails, it will
2765 * almost invariably be because there is not enough DOS memory
2766 * available to accommodate the size of clip_data. There is nothing
2767 * we can do about this, we simply have to fail.
2768 */
2769 real_mode_segment_address = __dpmi_allocate_dos_memory(
2770 (total_size + 15) >> 4, /* buffer size, in 16-byte paragraphs */
2771 &protected_mode_selector); /* prot-mode selector for the address */
2772
2773 if (real_mode_segment_address == -1)
2774 {
2775 /* memory allocation failed. */
2776 /* Technically we don't know why the allocation failed, but
2777 * almost always it will be because there wasn't enough DOS
2778 * memory to satisfy the request. On my system, DJGPP is able
2779 * to satisfy a DOS allocation request up to about 600K in size.
2780 * This depends however on HIMEM.SYS and EMM386.EXE settings.
2781 */
2782 return FALSE; /* early exit */
2783 }
2784
2785 /* Copy data from Vim's buffer (clip_data) into the DOS transfer buffer.
2786 * This can be larger than 64K; movedata() takes care of crossing any
2787 * 16-bit segment boundaries.
2788 *
2789 * If we're using Vim's custom clipboard format, we must copy one extra
2790 * byte to indicate the type of selection: line, character, or block.
2791 */
2792 if (clip_data_format == CF_VIMCLIP)
2793 {
2794 switch (clip_data_type)
2795 {
2796 default:
2797 case MLINE: clip_sel_type = "L"; break;
2798 case MCHAR: clip_sel_type = "C"; break;
2799#ifdef FEAT_VISUAL
2800 case MBLOCK: clip_sel_type = "B"; break;
2801#endif
2802 }
2803
2804 movedata(
2805 _my_ds(), (unsigned)clip_sel_type,
2806 /* source: normal memory address */
2807 protected_mode_selector, 0, /* target: DOS ad (via selector) */
2808 1); /* how many bytes to copy */
2809
2810 protected_mode_offset += STRLEN(clip_sel_type); /* allow for marker */
2811 }
2812
2813 movedata(
2814 _my_ds(), (unsigned)clip_data, /* source: normal memory address */
2815 protected_mode_selector, /* target: DOS address (via selector) */
2816 protected_mode_offset, /* non-zero, if using clip_sel_type */
2817 clip_data_size); /* how many bytes to copy */
2818
2819 /* Send data from the DOS transfer buffer to the Windows clipboard.
2820 * int 02xf, AX = 0x1703 sends SI:CX bytes of data from the buffer
2821 * at ES:BX, to the clipboard.
2822 */
2823 dpmi_regs.x.ax = 0x1703; /* send clipboard data */
2824 dpmi_regs.x.dx = clip_data_format; /* flag: format of the data */
2825 dpmi_regs.x.si = ((total_size >> 16)
2826 & 0x0000ffffL); /* hi word of data size */
2827 dpmi_regs.x.cx = (total_size & 0x0000ffffL);
2828 /* lo word of data size */
2829 dpmi_regs.x.es = real_mode_segment_address; /* buffer address: segment */
2830 dpmi_regs.x.bx = 0; /* buffer address: offset */
2831 if (__dpmi_int(0x2f, &dpmi_regs) == -1)
2832 {
2833 /* real-mode interrupt failed. */
2834 FreeDOSMemory(protected_mode_selector); /* clean up DOS memory */
2835 return FALSE; /* early exit */
2836 }
2837
2838 /* Free the DOS buffer and release the DPMI prot-mode selector. */
2839 FreeDOSMemory(protected_mode_selector); /* clean up DOS memory */
2840
2841 return TRUE; /* TRUE --> data successfully sent to clipboard */
2842}
2843
2844#endif /* FEAT_CLIPBOARD */
2845#endif /* DJGPP */
2846
2847/*
2848 * End of MS-DOS only code
2849 */
2850#endif /* WIN16 */
2851
2852/* common MS-DOS and Win16 code follows */
2853
2854 static int
2855vim_chmod(char_u *name)
2856{
2857 char_u *p;
2858 int f;
2859 int c = 0;
2860
2861 /* chmod() can't handle a file name with a trailing slash, remove it.
2862 * But don't remove it for "/" or "c:/". */
2863 p = name + STRLEN(name);
2864 if (p > name)
2865 --p;
2866 if (p > name && (*p == '\\' || *p == '/') && p[-1] != ':')
2867 {
2868 c = *p; /* remove trailing (back)slash */
2869 *p = NUL;
2870 }
2871 else
2872 p = NULL;
2873#if defined(__BORLANDC__) && (__BORLANDC__ > 0x410)
2874 /* this also sets the archive bit, supported by Borland C 4.0 and later,
2875 * where __BORLANDC__ is 0x450 (3.1 is 0x410) */
2876 f = _rtl_chmod((char *)name, 0, 0);
2877#else
2878 f = _chmod((char *)name, 0, 0);
2879#endif
2880 if (p != NULL)
2881 *p = c; /* put back (back)slash */
2882 return f;
2883}
2884
2885/*
2886 * get file permissions for 'name'
2887 * Returns -1 for error.
2888 * Returns FA_attributes defined in dos.h
2889 */
2890 long
2891mch_getperm(char_u *name)
2892{
2893 return (long)vim_chmod(name); /* get file mode */
2894}
2895
2896/*
2897 * set file permission for 'name' to 'perm'
2898 *
2899 * return FAIL for failure, OK otherwise
2900 */
2901 int
2902mch_setperm(
2903 char_u *name,
2904 long perm)
2905{
2906 perm |= FA_ARCH; /* file has changed, set archive bit */
2907#if defined(__BORLANDC__) && (__BORLANDC__ > 0x410)
2908 return (_rtl_chmod((char *)name, 1, (int)perm) == -1 ? FAIL : OK);
2909#else
2910 return (_chmod((char *)name, 1, (int)perm) == -1 ? FAIL : OK);
2911#endif
2912}
2913
2914/*
2915 * Set hidden flag for "name".
2916 */
2917 void
2918mch_hide(char_u *name)
2919{
2920 /* DOS 6.2 share.exe causes "seek error on file write" errors when making
2921 * the swap file hidden. Thus don't do it. */
2922}
2923
2924/*
2925 * return TRUE if "name" is a directory
2926 * return FALSE if "name" is not a directory
2927 * return FALSE for error
2928 *
2929 * beware of a trailing (back)slash
2930 */
2931 int
2932mch_isdir(char_u *name)
2933{
2934 int f;
2935
2936 f = vim_chmod(name);
2937 if (f == -1)
2938 return FALSE; /* file does not exist at all */
2939 if ((f & FA_DIREC) == 0)
2940 return FALSE; /* not a directory */
2941 return TRUE;
2942}
2943
2944#if defined(FEAT_EVAL) || defined(PROTO)
2945/*
2946 * Return 1 if "name" can be executed, 0 if not.
2947 * Return -1 if unknown.
2948 */
2949 int
2950mch_can_exe(name)
2951 char_u *name;
2952{
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002953 char *p;
2954
2955 p = searchpath(name);
2956 if (p == NULL || mch_isdir(p))
2957 return FALSE;
2958 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959}
2960#endif
2961
2962/*
2963 * Check what "name" is:
2964 * NODE_NORMAL: file or directory (or doesn't exist)
2965 * NODE_WRITABLE: writable device, socket, fifo, etc.
2966 * NODE_OTHER: non-writable things
2967 */
2968 int
2969mch_nodetype(char_u *name)
2970{
2971 if (STRICMP(name, "AUX") == 0
2972 || STRICMP(name, "CON") == 0
2973 || STRICMP(name, "CLOCK$") == 0
2974 || STRICMP(name, "NUL") == 0
2975 || STRICMP(name, "PRN") == 0
2976 || ((STRNICMP(name, "COM", 3) == 0
2977 || STRNICMP(name, "LPT", 3) == 0)
2978 && VIM_ISDIGIT(name[3])
2979 && name[4] == NUL))
2980 return NODE_WRITABLE;
2981 /* TODO: NODE_OTHER? */
2982 return NODE_NORMAL;
2983}
2984
2985/*
2986 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2987 * Return OK for success, FAIL for failure.
2988 */
2989 int
2990mch_dirname(
2991 char_u *buf,
2992 int len)
2993{
2994#ifdef DJGPP
2995 if (getcwd((char *)buf, len) == NULL)
2996 return FAIL;
2997 /* turn the '/'s returned by DJGPP into '\'s */
2998 slash_adjust(buf);
2999 return OK;
3000#else
3001 return (getcwd((char *)buf, len) != NULL ? OK : FAIL);
3002#endif
3003}
3004
3005/*
3006 * this version of remove is not scared by a readonly (backup) file
3007 *
3008 * returns -1 on error, 0 otherwise (just like remove())
3009 */
3010 int
3011mch_remove(char_u *name)
3012{
3013 (void)mch_setperm(name, 0); /* default permissions */
3014 return unlink((char *)name);
3015}
3016
3017/*
3018 * Special version of getenv(): Use uppercase name.
3019 */
3020 char_u *
3021mch_getenv(char_u *name)
3022{
3023 int i;
3024#define MAXENVLEN 50
3025 char_u var_copy[MAXENVLEN + 1];
3026 char_u *p;
3027 char_u *res;
3028
3029 /*
3030 * Take a copy of the argument, and force it to upper case before passing
3031 * to getenv(). On DOS systems, getenv() doesn't like lower-case argument
3032 * (unlike Win32 et al.) If the name is too long to fit in var_copy[]
3033 * allocate memory.
3034 */
3035 if ((i = STRLEN(name)) > MAXENVLEN)
3036 p = alloc(i + 1);
3037 else
3038 p = var_copy;
3039 if (p == NULL)
3040 p = name; /* out of memory, fall back to unmodified name */
3041 else
3042 {
3043 for (i = 0; name[i] != NUL; ++i)
3044 p[i] = toupper(name[i]);
3045 p[i] = NUL;
3046 }
3047
3048 res = (char_u *)getenv((char *)p);
3049
3050 if (p != var_copy && p != name)
3051 vim_free(p);
3052
3053 return res;
3054}
3055
3056/*
3057 * Insert user name in s[len].
3058 */
3059 int
3060mch_get_user_name(
3061 char_u *s,
3062 int len)
3063{
3064 *s = NUL;
3065 return FAIL;
3066}
3067
3068/*
3069 * Insert host name is s[len].
3070 */
3071 void
3072mch_get_host_name(
3073 char_u *s,
3074 int len)
3075{
3076#ifdef DJGPP
3077 STRNCPY(s, "PC (32 bits Vim)", len);
3078#else
3079 STRNCPY(s, "PC (16 bits Vim)", len);
3080#endif
3081 s[len - 1] = NUL; /* make sure it's terminated */
3082}