blob: 85e0c4ef0e9344cf61bd98cde106a1b6594daf98 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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_amiga.c
12 *
13 * Amiga system-dependent routines.
14 */
15
16#include "vim.h"
17
18#ifdef Window
19# undef Window /* Amiga has its own Window definition */
20#endif
21
Bram Moolenaar071d4272004-06-13 20:20:40 +000022#undef TRUE /* will be redefined by exec/types.h */
23#undef FALSE
24
Bram Moolenaar82881492012-11-20 16:53:39 +010025/* cproto fails on missing include files, skip them */
26#ifndef PROTO
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#ifndef LATTICE
29# include <exec/types.h>
30# include <exec/exec.h>
31# include <libraries/dos.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000032# include <intuition/intuition.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#endif
34
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000035/* XXX These are included from os_amiga.h
36#include <proto/exec.h>
37#include <proto/dos.h>
38#include <proto/intuition.h>
39*/
40
Bram Moolenaar071d4272004-06-13 20:20:40 +000041#include <exec/memory.h>
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000042#include <libraries/dosextens.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000043
44#include <dos/dostags.h> /* for 2.0 functions */
45#include <dos/dosasl.h>
46
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000047/* From version 4 of AmigaOS, several system structures must be allocated
48 * and freed using system functions. "struct AnchorPath" is one.
49 */
50#ifdef __amigaos4__
51# include <dos/anchorpath.h>
52# define free_fib(x) FreeDosObject(DOS_FIB, x)
53#else
54# define free_fib(x) vim_free(fib)
55#endif
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#if defined(LATTICE) && !defined(SASC) && defined(FEAT_ARP)
58# include <libraries/arp_pragmas.h>
59#endif
60
Bram Moolenaar82881492012-11-20 16:53:39 +010061#endif /* PROTO */
62
Bram Moolenaar071d4272004-06-13 20:20:40 +000063/*
64 * At this point TRUE and FALSE are defined as 1L and 0L, but we want 1 and 0.
65 */
66#undef TRUE
67#define TRUE (1)
68#undef FALSE
69#define FALSE (0)
70
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000071#ifdef __amigaos4__
72# define dos_packet(a, b, c) DoPkt(a, b, c, 0, 0, 0, 0)
73#elif !defined(AZTEC_C) && !defined(__AROS__)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010074static long dos_packet(struct MsgPort *, long, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000075#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010076static int lock2name(BPTR lock, char_u *buf, long len);
77static void out_num(long n);
78static struct FileInfoBlock *get_fib(char_u *);
79static int sortcmp(const void *a, const void *b);
Bram Moolenaar071d4272004-06-13 20:20:40 +000080
81static BPTR raw_in = (BPTR)NULL;
82static BPTR raw_out = (BPTR)NULL;
83static int close_win = FALSE; /* set if Vim opened the window */
84
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000085#ifndef __amigaos4__ /* Use autoopen for AmigaOS4 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000086struct IntuitionBase *IntuitionBase = NULL;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000087#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000088#ifdef FEAT_ARP
89struct ArpBase *ArpBase = NULL;
90#endif
91
92static struct Window *wb_window;
93static char_u *oldwindowtitle = NULL;
94
95#ifdef FEAT_ARP
96int dos2 = FALSE; /* Amiga DOS 2.0x or higher */
97#endif
98int size_set = FALSE; /* set to TRUE if window size was set */
99
100 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100101win_resize_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102{
103 OUT_STR_NF("\033[12{");
104}
105
106 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100107win_resize_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108{
109 OUT_STR_NF("\033[12}");
110}
111
112 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100113mch_write(char_u *p, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114{
115 Write(raw_out, (char *)p, (long)len);
116}
117
118/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200119 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120 * Get a characters from the keyboard.
121 * If time == 0 do not wait for characters.
122 * If time == n wait a short time for characters.
123 * If time == -1 wait forever for characters.
124 *
125 * Return number of characters read.
126 */
127 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100128mch_inchar(
129 char_u *buf,
130 int maxlen,
131 long time, /* milli seconds */
132 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133{
134 int len;
135 long utime;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
137 if (time >= 0)
138 {
139 if (time == 0)
140 utime = 100L; /* time = 0 causes problems in DOS 1.2 */
141 else
142 utime = time * 1000L; /* convert from milli to micro secs */
143 if (WaitForChar(raw_in, utime) == 0) /* no character available */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145 }
146 else /* time == -1 */
147 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 /*
149 * If there is no character available within 2 seconds (default)
Bram Moolenaar5b743bf2005-03-15 22:50:43 +0000150 * write the autoscript file to disk. Or cause the CursorHold event
151 * to be triggered.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 */
Bram Moolenaar5b743bf2005-03-15 22:50:43 +0000153 if (WaitForChar(raw_in, p_ut * 1000L) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154 {
155#ifdef FEAT_AUTOCMD
Bram Moolenaare3226be2005-12-18 22:10:00 +0000156 if (trigger_cursorhold() && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 {
Bram Moolenaar5b743bf2005-03-15 22:50:43 +0000158 buf[0] = K_SPECIAL;
159 buf[1] = KS_EXTRA;
160 buf[2] = (int)KE_CURSORHOLD;
161 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000164 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 }
166 }
167
168 for (;;) /* repeat until we got a character */
169 {
170# ifdef FEAT_MBYTE
171 len = Read(raw_in, (char *)buf, (long)maxlen / input_conv.vc_factor);
172# else
173 len = Read(raw_in, (char *)buf, (long)maxlen);
174# endif
175 if (len > 0)
176 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177#ifdef FEAT_MBYTE
178 /* Convert from 'termencoding' to 'encoding'. */
179 if (input_conv.vc_type != CONV_NONE)
180 len = convert_input(buf, len, maxlen);
181#endif
182 return len;
183 }
184 }
185}
186
187/*
188 * return non-zero if a character is available
189 */
190 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100191mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192{
193 return (WaitForChar(raw_in, 100L) != 0);
194}
195
196/*
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200197 * Return amount of memory still available in Kbyte.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 */
199 long_u
Bram Moolenaar05540972016-01-30 20:31:25 +0100200mch_avail_mem(int special)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000202#ifdef __amigaos4__
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200203 return (long_u)AvailMem(MEMF_ANY) >> 10;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000204#else
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200205 return (long_u)(AvailMem(special ? (long)MEMF_CHIP : (long)MEMF_ANY)) >> 10;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000206#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207}
208
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000209/*
210 * Waits a specified amount of time, or until input arrives if
211 * ignoreinput is FALSE.
212 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100214mch_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215{
Bram Moolenaarbae0c162007-05-10 19:30:25 +0000216#ifndef LATTICE /* SAS declares void Delay(ULONG) */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100217 void Delay(long);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218#endif
219
220 if (msec > 0)
221 {
222 if (ignoreinput)
223 Delay(msec / 20L); /* Delay works with 20 msec intervals */
224 else
225 WaitForChar(raw_in, msec * 1000L);
226 }
227}
228
229/*
230 * We have no job control, fake it by starting a new shell.
231 */
232 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100233mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234{
235 suspend_shell();
236}
237
238#ifndef DOS_LIBRARY
239# define DOS_LIBRARY ((UBYTE *)"dos.library")
240#endif
241
242 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100243mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244{
245 static char intlibname[] = "intuition.library";
246
247#ifdef AZTEC_C
248 Enable_Abort = 0; /* disallow vim to be aborted */
249#endif
250 Columns = 80;
251 Rows = 24;
252
253 /*
254 * Set input and output channels, unless we have opened our own window
255 */
256 if (raw_in == (BPTR)NULL)
257 {
258 raw_in = Input();
259 raw_out = Output();
260 /*
261 * If Input() is not interactive, then Output() will be (because of
262 * check in mch_check_win()). Used for "Vim -".
263 * Also check the other way around, for "Vim -h | more".
264 */
265 if (!IsInteractive(raw_in))
266 raw_in = raw_out;
267 else if (!IsInteractive(raw_out))
268 raw_out = raw_in;
269 }
270
271 out_flush();
272
273 wb_window = NULL;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000274#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 if ((IntuitionBase = (struct IntuitionBase *)
276 OpenLibrary((UBYTE *)intlibname, 0L)) == NULL)
277 {
278 mch_errmsg(_("cannot open "));
279 mch_errmsg(intlibname);
280 mch_errmsg("!?\n");
281 mch_exit(3);
282 }
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000283#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284}
285
Bram Moolenaar82881492012-11-20 16:53:39 +0100286#ifndef PROTO
287# include <workbench/startup.h>
288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289
290/*
291 * Check_win checks whether we have an interactive window.
292 * If not, a new window is opened with the newcli command.
293 * If we would open a window ourselves, the :sh and :! commands would not
294 * work properly (Why? probably because we are then running in a background
295 * CLI). This also is the best way to assure proper working in a next
296 * Workbench release.
297 *
298 * For the -f option (foreground mode) we open our own window and disable :sh.
299 * Otherwise the calling program would never know when editing is finished.
300 */
301#define BUF2SIZE 320 /* length of buffer for argument with complete path */
302
303 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100304mch_check_win(int argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305{
306 int i;
307 BPTR nilfh, fh;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000308 char_u buf1[24];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 char_u buf2[BUF2SIZE];
310 static char_u *(constrings[3]) = {(char_u *)"con:0/0/662/210/",
311 (char_u *)"con:0/0/640/200/",
312 (char_u *)"con:0/0/320/200/"};
313 static char_u *winerr = (char_u *)N_("VIM: Can't open window!\n");
314 struct WBArg *argp;
315 int ac;
316 char *av;
317 char_u *device = NULL;
318 int exitval = 4;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000319#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 struct Library *DosBase;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000321#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 int usewin = FALSE;
323
324/*
325 * check if we are running under DOS 2.0x or higher
326 */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000327#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328 DosBase = OpenLibrary(DOS_LIBRARY, 37L);
329 if (DosBase != NULL)
330 /* if (((struct Library *)DOSBase)->lib_Version >= 37) */
331 {
332 CloseLibrary(DosBase);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000333# ifdef FEAT_ARP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334 dos2 = TRUE;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000335# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 }
337 else /* without arp functions we NEED 2.0 */
338 {
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000339# ifndef FEAT_ARP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 mch_errmsg(_("Need Amigados version 2.04 or later\n"));
341 exit(3);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000342# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 /* need arp functions for dos 1.x */
344 if (!(ArpBase = (struct ArpBase *) OpenLibrary((UBYTE *)ArpName, ArpVersion)))
345 {
346 fprintf(stderr, _("Need %s version %ld\n"), ArpName, ArpVersion);
347 exit(3);
348 }
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000349# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 }
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000351#endif /* __amigaos4__ */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352
353 /*
354 * scan argv[] for the "-f" and "-d" arguments
355 */
356 for (i = 1; i < argc; ++i)
357 if (argv[i][0] == '-')
358 {
359 switch (argv[i][1])
360 {
361 case 'f':
362 usewin = TRUE;
363 break;
364
365 case 'd':
366 if (i < argc - 1
367#ifdef FEAT_DIFF
368 /* require using "-dev", "-d" means diff mode */
369 && argv[i][2] == 'e' && argv[i][3] == 'v'
370#endif
371 )
372 device = (char_u *)argv[i + 1];
373 break;
374 }
375 }
376
377/*
378 * If we were not started from workbench, do not have a "-d" or "-dev"
379 * argument and we have been started with an interactive window, use that
380 * window.
381 */
382 if (argc != 0
383 && device == NULL
384 && (IsInteractive(Input()) || IsInteractive(Output())))
385 return OK;
386
387/*
388 * When given the "-f" argument, we open our own window. We can't use the
389 * newcli trick below, because the calling program (mail, rn, etc.) would not
390 * know when we are finished.
391 */
392 if (usewin)
393 {
394 /*
395 * Try to open a window. First try the specified device.
396 * Then try a 24 line 80 column window.
397 * If that fails, try two smaller ones.
398 */
399 for (i = -1; i < 3; ++i)
400 {
401 if (i >= 0)
402 device = constrings[i];
403 if (device != NULL && (raw_in = Open((UBYTE *)device,
404 (long)MODE_NEWFILE)) != (BPTR)NULL)
405 break;
406 }
407 if (raw_in == (BPTR)NULL) /* all three failed */
408 {
409 mch_errmsg(_(winerr));
410 goto exit;
411 }
412 raw_out = raw_in;
413 close_win = TRUE;
414 return OK;
415 }
416
417 if ((nilfh = Open((UBYTE *)"NIL:", (long)MODE_NEWFILE)) == (BPTR)NULL)
418 {
419 mch_errmsg(_("Cannot open NIL:\n"));
420 goto exit;
421 }
422
423 /*
424 * Make a unique name for the temp file (which we will not delete!).
425 * Use a pointer on the stack (nobody else will be using it).
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000426 * Under AmigaOS4, this assumption might change in the future, so
427 * we use a pointer to the current task instead. This should be a
428 * shared structure and thus globally unique.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000430#ifdef __amigaos4__
431 sprintf((char *)buf1, "t:nc%p", FindTask(0));
432#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 sprintf((char *)buf1, "t:nc%ld", (long)buf1);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000434#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 if ((fh = Open((UBYTE *)buf1, (long)MODE_NEWFILE)) == (BPTR)NULL)
436 {
437 mch_errmsg(_("Cannot create "));
438 mch_errmsg((char *)buf1);
439 mch_errmsg("\n");
440 goto exit;
441 }
442 /*
443 * Write the command into the file, put quotes around the arguments that
444 * have a space in them.
445 */
446 if (argc == 0) /* run from workbench */
447 ac = ((struct WBStartup *)argv)->sm_NumArgs;
448 else
449 ac = argc;
450 for (i = 0; i < ac; ++i)
451 {
452 if (argc == 0)
453 {
454 *buf2 = NUL;
455 argp = &(((struct WBStartup *)argv)->sm_ArgList[i]);
456 if (argp->wa_Lock)
457 (void)lock2name(argp->wa_Lock, buf2, (long)(BUF2SIZE - 1));
458#ifdef FEAT_ARP
459 if (dos2) /* use 2.0 function */
460#endif
461 AddPart((UBYTE *)buf2, (UBYTE *)argp->wa_Name, (long)(BUF2SIZE - 1));
462#ifdef FEAT_ARP
463 else /* use arp function */
464 TackOn((char *)buf2, argp->wa_Name);
465#endif
466 av = (char *)buf2;
467 }
468 else
469 av = argv[i];
470
471 /* skip '-d' or "-dev" option */
472 if (av[0] == '-' && av[1] == 'd'
473#ifdef FEAT_DIFF
474 && av[2] == 'e' && av[3] == 'v'
475#endif
476 )
477 {
478 ++i;
479 continue;
480 }
481 if (vim_strchr((char_u *)av, ' '))
482 Write(fh, "\"", 1L);
483 Write(fh, av, (long)strlen(av));
484 if (vim_strchr((char_u *)av, ' '))
485 Write(fh, "\"", 1L);
486 Write(fh, " ", 1L);
487 }
488 Write(fh, "\nendcli\n", 8L);
489 Close(fh);
490
491/*
492 * Try to open a new cli in a window. If "-d" or "-dev" argument was given try
493 * to open the specified device. Then try a 24 line 80 column window. If that
494 * fails, try two smaller ones.
495 */
496 for (i = -1; i < 3; ++i)
497 {
498 if (i >= 0)
499 device = constrings[i];
500 else if (device == NULL)
501 continue;
502 sprintf((char *)buf2, "newcli <nil: >nil: %s from %s", (char *)device, (char *)buf1);
503#ifdef FEAT_ARP
504 if (dos2)
505 {
506#endif
507 if (!SystemTags((UBYTE *)buf2, SYS_UserShell, TRUE, TAG_DONE))
508 break;
509#ifdef FEAT_ARP
510 }
511 else
512 {
513 if (Execute((UBYTE *)buf2, nilfh, nilfh))
514 break;
515 }
516#endif
517 }
518 if (i == 3) /* all three failed */
519 {
520 DeleteFile((UBYTE *)buf1);
521 mch_errmsg(_(winerr));
522 goto exit;
523 }
524 exitval = 0; /* The Execute succeeded: exit this program */
525
526exit:
527#ifdef FEAT_ARP
528 if (ArpBase)
529 CloseLibrary((struct Library *) ArpBase);
530#endif
531 exit(exitval);
532 /* NOTREACHED */
533 return FAIL;
534}
535
536/*
537 * Return TRUE if the input comes from a terminal, FALSE otherwise.
538 * We fake there is a window, because we can always open one!
539 */
540 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100541mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542{
543 return TRUE;
544}
545
546/*
547 * fname_case(): Set the case of the file name, if it already exists.
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000548 * This will cause the file name to remain exactly the same
549 * if the file system ignores, but preserves case.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 */
551/*ARGSUSED*/
552 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100553fname_case(
554 char_u *name,
555 int len) /* buffer size, ignored here */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556{
557 struct FileInfoBlock *fib;
558 size_t flen;
559
560 fib = get_fib(name);
561 if (fib != NULL)
562 {
563 flen = STRLEN(name);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000564 /* TODO: Check if this fix applies to AmigaOS < 4 too.*/
565#ifdef __amigaos4__
566 if (fib->fib_DirEntryType == ST_ROOT)
567 strcat(fib->fib_FileName, ":");
568#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 if (flen == strlen(fib->fib_FileName)) /* safety check */
570 mch_memmove(name, fib->fib_FileName, flen);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000571 free_fib(fib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 }
573}
574
575/*
576 * Get the FileInfoBlock for file "fname"
577 * The returned structure has to be free()d.
578 * Returns NULL on error.
579 */
580 static struct FileInfoBlock *
Bram Moolenaar05540972016-01-30 20:31:25 +0100581get_fib(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582{
583 BPTR flock;
584 struct FileInfoBlock *fib;
585
586 if (fname == NULL) /* safety check */
587 return NULL;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000588#ifdef __amigaos4__
589 fib = AllocDosObject(DOS_FIB,0);
590#else
591 fib = (struct FileInfoBlock *)alloc(sizeof(struct FileInfoBlock));
592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 if (fib != NULL)
594 {
595 flock = Lock((UBYTE *)fname, (long)ACCESS_READ);
596 if (flock == (BPTR)NULL || !Examine(flock, fib))
597 {
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000598 free_fib(fib); /* in case of an error the memory is freed here */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 fib = NULL;
600 }
601 if (flock)
602 UnLock(flock);
603 }
604 return fib;
605}
606
607#ifdef FEAT_TITLE
608/*
609 * set the title of our window
610 * icon name is not set
611 */
612 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100613mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614{
615 if (wb_window != NULL && title != NULL)
616 SetWindowTitles(wb_window, (UBYTE *)title, (UBYTE *)-1L);
617}
618
619/*
620 * Restore the window/icon title.
621 * which is one of:
622 * 1 Just restore title
623 * 2 Just restore icon (which we don't have)
624 * 3 Restore title and icon (which we don't have)
625 */
626 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100627mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628{
629 if (which & 1)
630 mch_settitle(oldwindowtitle, NULL);
631}
632
633 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100634mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635{
636 return (wb_window != NULL);
637}
638
639 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100640mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641{
642 return FALSE;
643}
644#endif
645
646/*
647 * Insert user name in s[len].
648 */
649 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100650mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000652 /* TODO: Implement this. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 *s = NUL;
654 return FAIL;
655}
656
657/*
658 * Insert host name is s[len].
659 */
660 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100661mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000663#if defined(__amigaos4__) && defined(__CLIB2__)
664 gethostname(s, len);
665#else
Bram Moolenaarce0842a2005-07-18 21:58:11 +0000666 vim_strncpy(s, "Amiga", len - 1);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000667#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668}
669
670/*
671 * return process ID
672 */
673 long
Bram Moolenaar05540972016-01-30 20:31:25 +0100674mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000676#ifdef __amigaos4__
677 /* This is as close to a pid as we can come. We could use CLI numbers also,
678 * but then we would have two different types of process identifiers.
679 */
680 return((long)FindTask(0));
681#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 return (long)0;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000683#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684}
685
686/*
687 * Get name of current directory into buffer 'buf' of length 'len' bytes.
688 * Return OK for success, FAIL for failure.
689 */
690 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100691mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692{
693 return mch_FullName((char_u *)"", buf, len, FALSE);
694}
695
696/*
697 * get absolute file name into buffer 'buf' of length 'len' bytes
698 *
699 * return FAIL for failure, OK otherwise
700 */
701 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100702mch_FullName(
703 char_u *fname,
704 char_u *buf,
705 int len,
706 int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707{
708 BPTR l;
709 int retval = FAIL;
710 int i;
711
712 /* Lock the file. If it exists, we can get the exact name. */
713 if ((l = Lock((UBYTE *)fname, (long)ACCESS_READ)) != (BPTR)0)
714 {
715 retval = lock2name(l, buf, (long)len - 1);
716 UnLock(l);
717 }
718 else if (force || !mch_isFullName(fname)) /* not a full path yet */
719 {
720 /*
721 * If the file cannot be locked (doesn't exist), try to lock the
722 * current directory and concatenate the file name.
723 */
724 if ((l = Lock((UBYTE *)"", (long)ACCESS_READ)) != (BPTR)NULL)
725 {
726 retval = lock2name(l, buf, (long)len);
727 UnLock(l);
728 if (retval == OK)
729 {
730 i = STRLEN(buf);
731 /* Concatenate the fname to the directory. Don't add a slash
732 * if fname is empty, but do change "" to "/". */
733 if (i == 0 || *fname != NUL)
734 {
735 if (i < len - 1 && (i == 0 || buf[i - 1] != ':'))
736 buf[i++] = '/';
Bram Moolenaarce0842a2005-07-18 21:58:11 +0000737 vim_strncpy(buf + i, fname, len - i - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 }
739 }
740 }
741 }
742 if (*buf == 0 || *buf == ':')
743 retval = FAIL; /* something failed; use the file name */
744 return retval;
745}
746
747/*
748 * Return TRUE if "fname" does not depend on the current directory.
749 */
750 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100751mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752{
753 return (vim_strchr(fname, ':') != NULL && *fname != ':');
754}
755
756/*
757 * Get the full file name from a lock. Use 2.0 function if possible, because
758 * the arp function has more restrictions on the path length.
759 *
760 * return FAIL for failure, OK otherwise
761 */
762 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100763lock2name(BPTR lock, char_u *buf, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764{
765#ifdef FEAT_ARP
766 if (dos2) /* use 2.0 function */
767#endif
768 return ((int)NameFromLock(lock, (UBYTE *)buf, len) ? OK : FAIL);
769#ifdef FEAT_ARP
770 else /* use arp function */
771 return ((int)PathName(lock, (char *)buf, (long)(len/32)) ? OK : FAIL);
772#endif
773}
774
775/*
776 * get file permissions for 'name'
777 * Returns -1 when it doesn't exist.
778 */
779 long
Bram Moolenaar05540972016-01-30 20:31:25 +0100780mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781{
782 struct FileInfoBlock *fib;
783 long retval = -1;
784
785 fib = get_fib(name);
786 if (fib != NULL)
787 {
788 retval = fib->fib_Protection;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000789 free_fib(fib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 }
791 return retval;
792}
793
794/*
795 * set file permission for 'name' to 'perm'
796 *
797 * return FAIL for failure, OK otherwise
798 */
799 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100800mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801{
802 perm &= ~FIBF_ARCHIVE; /* reset archived bit */
803 return (SetProtection((UBYTE *)name, (long)perm) ? OK : FAIL);
804}
805
806/*
807 * Set hidden flag for "name".
808 */
809 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100810mch_hide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811{
812 /* can't hide a file */
813}
814
815/*
816 * return FALSE if "name" is not a directory
817 * return TRUE if "name" is a directory.
818 * return FALSE for error.
819 */
820 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100821mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822{
823 struct FileInfoBlock *fib;
824 int retval = FALSE;
825
826 fib = get_fib(name);
827 if (fib != NULL)
828 {
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000829#ifdef __amigaos4__
830 retval = (FIB_IS_DRAWER(fib)) ? TRUE : FALSE;
831#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 retval = ((fib->fib_DirEntryType >= 0) ? TRUE : FALSE);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000833#endif
834 free_fib(fib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 }
836 return retval;
837}
838
839/*
840 * Create directory "name".
841 */
Bram Moolenaare3853642006-09-14 19:36:57 +0000842 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100843mch_mkdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844{
845 BPTR lock;
846
847 lock = CreateDir(name);
848 if (lock != NULL)
Bram Moolenaare3853642006-09-14 19:36:57 +0000849 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 UnLock(lock);
Bram Moolenaare3853642006-09-14 19:36:57 +0000851 return 0;
852 }
853 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854}
855
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856/*
857 * Return 1 if "name" can be executed, 0 if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +0100858 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 * Return -1 if unknown.
860 */
861 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100862mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863{
864 /* TODO */
865 return -1;
866}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867
868/*
869 * Check what "name" is:
870 * NODE_NORMAL: file or directory (or doesn't exist)
871 * NODE_WRITABLE: writable device, socket, fifo, etc.
872 * NODE_OTHER: non-writable things
873 */
874 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100875mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876{
877 /* TODO */
878 return NODE_NORMAL;
879}
880
881 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100882mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883{
884}
885
886/*
887 * Careful: mch_exit() may be called before mch_init()!
888 */
889 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100890mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891{
Bram Moolenaar955f1982017-02-05 15:10:51 +0100892 exiting = TRUE;
893
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 if (raw_in) /* put terminal in 'normal' mode */
895 {
896 settmode(TMODE_COOK);
897 stoptermcap();
898 }
899 out_char('\n');
900 if (raw_out)
901 {
902 if (term_console)
903 {
904 win_resize_off(); /* window resize events de-activated */
905 if (size_set)
906 OUT_STR("\233t\233u"); /* reset window size (CSI t CSI u) */
907 }
908 out_flush();
909 }
910
911#ifdef FEAT_TITLE
912 mch_restore_title(3); /* restore window title */
913#endif
914
915 ml_close_all(TRUE); /* remove all memfiles */
916
917#ifdef FEAT_ARP
918 if (ArpBase)
919 CloseLibrary((struct Library *) ArpBase);
920#endif
921 if (close_win)
922 Close(raw_in);
923 if (r)
924 printf(_("Vim exiting with %d\n"), r); /* somehow this makes :cq work!? */
925 exit(r);
926}
927
928/*
929 * This is a routine for setting a given stream to raw or cooked mode on the
930 * Amiga . This is useful when you are using Lattice C to produce programs
931 * that want to read single characters with the "getch()" or "fgetc" call.
932 *
933 * Written : 18-Jun-87 By Chuck McManis.
934 */
935
936#define MP(xx) ((struct MsgPort *)((struct FileHandle *) (BADDR(xx)))->fh_Type)
937
938/*
939 * Function mch_settmode() - Convert the specified file pointer to 'raw' or
940 * 'cooked' mode. This only works on TTY's.
941 *
942 * Raw: keeps DOS from translating keys for you, also (BIG WIN) it means
943 * getch() will return immediately rather than wait for a return. You
944 * lose editing features though.
945 *
946 * Cooked: This function returns the designate file pointer to it's normal,
947 * wait for a <CR> mode. This is exactly like raw() except that
948 * it sends a 0 to the console to make it back into a CON: from a RAW:
949 */
950 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100951mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000953#if defined(__AROS__) || defined(__amigaos4__)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954 if (!SetMode(raw_in, tmode == TMODE_RAW ? 1 : 0))
955#else
956 if (dos_packet(MP(raw_in), (long)ACTION_SCREEN_MODE,
957 tmode == TMODE_RAW ? -1L : 0L) == 0)
958#endif
959 mch_errmsg(_("cannot change console mode ?!\n"));
960}
961
962/*
963 * set screen mode, always fails.
964 */
965 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100966mch_screenmode(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967{
968 EMSG(_(e_screenmode));
969 return FAIL;
970}
971
972/*
973 * Code for this routine came from the following :
974 *
975 * ConPackets.c - C. Scheppner, A. Finkel, P. Lindsay CBM
976 * DOS packet example
977 * Requires 1.2
978 *
979 * Found on Fish Disk 56.
980 *
981 * Heavely modified by mool.
982 */
983
Bram Moolenaar82881492012-11-20 16:53:39 +0100984#ifndef PROTO
985# include <devices/conunit.h>
986#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987
988/*
989 * try to get the real window size
990 * return FAIL for failure, OK otherwise
991 */
992 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100993mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994{
995 struct ConUnit *conUnit;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000996#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 char id_a[sizeof(struct InfoData) + 3];
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000998#endif
999 struct InfoData *id=0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000
1001 if (!term_console) /* not an amiga window */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001002 goto out;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003
1004 /* insure longword alignment */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001005#ifdef __amigaos4__
Bram Moolenaar62dbdc42011-10-20 18:24:22 +02001006 if (!(id = AllocDosObject(DOS_INFODATA, 0)))
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001007 goto out;
1008#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 id = (struct InfoData *)(((long)id_a + 3L) & ~3L);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001010#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011
1012 /*
1013 * Should make console aware of real window size, not the one we set.
1014 * Unfortunately, under DOS 2.0x this redraws the window and it
1015 * is rarely needed, so we skip it now, unless we changed the size.
1016 */
1017 if (size_set)
1018 OUT_STR("\233t\233u"); /* CSI t CSI u */
1019 out_flush();
1020
1021#ifdef __AROS__
1022 if (!Info(raw_out, id)
1023 || (wb_window = (struct Window *) id->id_VolumeNode) == NULL)
1024#else
1025 if (dos_packet(MP(raw_out), (long)ACTION_DISK_INFO, ((ULONG) id) >> 2) == 0
1026 || (wb_window = (struct Window *)id->id_VolumeNode) == NULL)
1027#endif
1028 {
1029 /* it's not an amiga window, maybe aux device */
1030 /* terminal type should be set */
1031 term_console = FALSE;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001032 goto out;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 }
1034 if (oldwindowtitle == NULL)
1035 oldwindowtitle = (char_u *)wb_window->Title;
1036 if (id->id_InUse == (BPTR)NULL)
1037 {
1038 mch_errmsg(_("mch_get_shellsize: not a console??\n"));
1039 return FAIL;
1040 }
1041 conUnit = (struct ConUnit *) ((struct IOStdReq *) id->id_InUse)->io_Unit;
1042
1043 /* get window size */
1044 Rows = conUnit->cu_YMax + 1;
1045 Columns = conUnit->cu_XMax + 1;
1046 if (Rows < 0 || Rows > 200) /* cannot be an amiga window */
1047 {
1048 Columns = 80;
1049 Rows = 24;
1050 term_console = FALSE;
1051 return FAIL;
1052 }
1053
1054 return OK;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001055out:
1056#ifdef __amigaos4__
1057 FreeDosObject(DOS_INFODATA, id); /* Safe to pass NULL */
1058#endif
1059
1060 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061}
1062
1063/*
1064 * Try to set the real window size to Rows and Columns.
1065 */
1066 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001067mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068{
1069 if (term_console)
1070 {
1071 size_set = TRUE;
1072 out_char(CSI);
1073 out_num((long)Rows);
1074 out_char('t');
1075 out_char(CSI);
1076 out_num((long)Columns);
1077 out_char('u');
1078 out_flush();
1079 }
1080}
1081
1082/*
1083 * Rows and/or Columns has changed.
1084 */
1085 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001086mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087{
1088 /* Nothing to do. */
1089}
1090
1091/*
1092 * out_num - output a (big) number fast
1093 */
1094 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001095out_num(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096{
1097 OUT_STR_NF(tltoa((unsigned long)n));
1098}
1099
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001100#if !defined(AZTEC_C) && !defined(__AROS__) && !defined(__amigaos4__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101/*
1102 * Sendpacket.c
1103 *
1104 * An invaluable addition to your Amiga.lib file. This code sends a packet to
1105 * the given message port. This makes working around DOS lots easier.
1106 *
1107 * Note, I didn't write this, those wonderful folks at CBM did. I do suggest
1108 * however that you may wish to add it to Amiga.Lib, to do so, compile it and
1109 * say 'oml lib:amiga.lib -r sendpacket.o'
1110 */
1111
Bram Moolenaar82881492012-11-20 16:53:39 +01001112#ifndef PROTO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113/* #include <proto/exec.h> */
1114/* #include <proto/dos.h> */
Bram Moolenaar82881492012-11-20 16:53:39 +01001115# include <exec/memory.h>
1116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117
1118/*
1119 * Function - dos_packet written by Phil Lindsay, Carolyn Scheppner, and Andy
1120 * Finkel. This function will send a packet of the given type to the Message
1121 * Port supplied.
1122 */
1123
1124 static long
Bram Moolenaar05540972016-01-30 20:31:25 +01001125dos_packet(
1126 struct MsgPort *pid, /* process identifier ... (handlers message port) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 long action, /* packet type ... (what you want handler to do) */
Bram Moolenaard90b6c02016-08-28 18:10:45 +02001128 long arg) /* single argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129{
1130# ifdef FEAT_ARP
1131 struct MsgPort *replyport;
1132 struct StandardPacket *packet;
1133 long res1;
1134
1135 if (dos2)
1136# endif
1137 return DoPkt(pid, action, arg, 0L, 0L, 0L, 0L); /* use 2.0 function */
1138# ifdef FEAT_ARP
1139
1140 replyport = (struct MsgPort *) CreatePort(NULL, 0); /* use arp function */
1141 if (!replyport)
1142 return (0);
1143
1144 /* Allocate space for a packet, make it public and clear it */
1145 packet = (struct StandardPacket *)
1146 AllocMem((long) sizeof(struct StandardPacket), MEMF_PUBLIC | MEMF_CLEAR);
1147 if (!packet) {
1148 DeletePort(replyport);
1149 return (0);
1150 }
1151 packet->sp_Msg.mn_Node.ln_Name = (char *) &(packet->sp_Pkt);
1152 packet->sp_Pkt.dp_Link = &(packet->sp_Msg);
1153 packet->sp_Pkt.dp_Port = replyport;
1154 packet->sp_Pkt.dp_Type = action;
1155 packet->sp_Pkt.dp_Arg1 = arg;
1156
1157 PutMsg(pid, (struct Message *)packet); /* send packet */
1158
1159 WaitPort(replyport);
1160 GetMsg(replyport);
1161
1162 res1 = packet->sp_Pkt.dp_Res1;
1163
1164 FreeMem(packet, (long) sizeof(struct StandardPacket));
1165 DeletePort(replyport);
1166
1167 return (res1);
1168# endif
1169}
1170#endif /* !defined(AZTEC_C) && !defined(__AROS__) */
1171
1172/*
1173 * Call shell.
1174 * Return error number for failure, 0 otherwise
1175 */
1176 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001177mch_call_shell(
1178 char_u *cmd,
1179 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180{
1181 BPTR mydir;
1182 int x;
1183 int tmode = cur_tmode;
1184#ifdef AZTEC_C
1185 int use_execute;
1186 char_u *shellcmd = NULL;
1187 char_u *shellarg;
1188#endif
1189 int retval = 0;
1190
1191 if (close_win)
1192 {
1193 /* if Vim opened a window: Executing a shell may cause crashes */
1194 EMSG(_("E360: Cannot execute shell with -f option"));
1195 return -1;
1196 }
1197
1198 if (term_console)
1199 win_resize_off(); /* window resize events de-activated */
1200 out_flush();
1201
1202 if (options & SHELL_COOKED)
1203 settmode(TMODE_COOK); /* set to normal mode */
1204 mydir = Lock((UBYTE *)"", (long)ACCESS_READ); /* remember current dir */
1205
1206#if !defined(AZTEC_C) /* not tested very much */
1207 if (cmd == NULL)
1208 {
1209# ifdef FEAT_ARP
1210 if (dos2)
1211# endif
1212 x = SystemTags(p_sh, SYS_UserShell, TRUE, TAG_DONE);
1213# ifdef FEAT_ARP
1214 else
1215 x = Execute(p_sh, raw_in, raw_out);
1216# endif
1217 }
1218 else
1219 {
1220# ifdef FEAT_ARP
1221 if (dos2)
1222# endif
1223 x = SystemTags((char *)cmd, SYS_UserShell, TRUE, TAG_DONE);
1224# ifdef FEAT_ARP
1225 else
1226 x = Execute((char *)cmd, 0L, raw_out);
1227# endif
1228 }
1229# ifdef FEAT_ARP
1230 if ((dos2 && x < 0) || (!dos2 && !x))
1231# else
1232 if (x < 0)
1233# endif
1234 {
1235 MSG_PUTS(_("Cannot execute "));
1236 if (cmd == NULL)
1237 {
1238 MSG_PUTS(_("shell "));
1239 msg_outtrans(p_sh);
1240 }
1241 else
1242 msg_outtrans(cmd);
1243 msg_putchar('\n');
1244 retval = -1;
1245 }
1246# ifdef FEAT_ARP
1247 else if (!dos2 || x)
1248# else
1249 else if (x)
1250# endif
1251 {
1252 if ((x = IoErr()) != 0)
1253 {
1254 if (!(options & SHELL_SILENT))
1255 {
1256 msg_putchar('\n');
1257 msg_outnum((long)x);
1258 MSG_PUTS(_(" returned\n"));
1259 }
1260 retval = x;
1261 }
1262 }
1263#else /* else part is for AZTEC_C */
1264 if (p_st >= 4 || (p_st >= 2 && !(options & SHELL_FILTER)))
1265 use_execute = 1;
1266 else
1267 use_execute = 0;
1268 if (!use_execute)
1269 {
1270 /*
1271 * separate shell name from argument
1272 */
1273 shellcmd = vim_strsave(p_sh);
1274 if (shellcmd == NULL) /* out of memory, use Execute */
1275 use_execute = 1;
1276 else
1277 {
1278 shellarg = skiptowhite(shellcmd); /* find start of arguments */
1279 if (*shellarg != NUL)
1280 {
1281 *shellarg++ = NUL;
1282 shellarg = skipwhite(shellarg);
1283 }
1284 }
1285 }
1286 if (cmd == NULL)
1287 {
1288 if (use_execute)
1289 {
1290# ifdef FEAT_ARP
1291 if (dos2)
1292# endif
1293 x = SystemTags((UBYTE *)p_sh, SYS_UserShell, TRUE, TAG_DONE);
1294# ifdef FEAT_ARP
1295 else
1296 x = !Execute((UBYTE *)p_sh, raw_in, raw_out);
1297# endif
1298 }
1299 else
1300 x = fexecl((char *)shellcmd, (char *)shellcmd, (char *)shellarg, NULL);
1301 }
1302 else if (use_execute)
1303 {
1304# ifdef FEAT_ARP
1305 if (dos2)
1306# endif
1307 x = SystemTags((UBYTE *)cmd, SYS_UserShell, TRUE, TAG_DONE);
1308# ifdef FEAT_ARP
1309 else
1310 x = !Execute((UBYTE *)cmd, 0L, raw_out);
1311# endif
1312 }
1313 else if (p_st & 1)
1314 x = fexecl((char *)shellcmd, (char *)shellcmd, (char *)shellarg,
1315 (char *)cmd, NULL);
1316 else
1317 x = fexecl((char *)shellcmd, (char *)shellcmd, (char *)shellarg,
1318 (char *)p_shcf, (char *)cmd, NULL);
1319# ifdef FEAT_ARP
1320 if ((dos2 && x < 0) || (!dos2 && x))
1321# else
1322 if (x < 0)
1323# endif
1324 {
1325 MSG_PUTS(_("Cannot execute "));
1326 if (use_execute)
1327 {
1328 if (cmd == NULL)
1329 msg_outtrans(p_sh);
1330 else
1331 msg_outtrans(cmd);
1332 }
1333 else
1334 {
1335 MSG_PUTS(_("shell "));
1336 msg_outtrans(shellcmd);
1337 }
1338 msg_putchar('\n');
1339 retval = -1;
1340 }
1341 else
1342 {
1343 if (use_execute)
1344 {
1345# ifdef FEAT_ARP
1346 if (!dos2 || x)
1347# else
1348 if (x)
1349# endif
1350 x = IoErr();
1351 }
1352 else
1353 x = wait();
1354 if (x)
1355 {
1356 if (!(options & SHELL_SILENT) && !emsg_silent)
1357 {
1358 msg_putchar('\n');
1359 msg_outnum((long)x);
1360 MSG_PUTS(_(" returned\n"));
1361 }
1362 retval = x;
1363 }
1364 }
1365 vim_free(shellcmd);
1366#endif /* AZTEC_C */
1367
1368 if ((mydir = CurrentDir(mydir)) != 0) /* make sure we stay in the same directory */
1369 UnLock(mydir);
1370 if (tmode == TMODE_RAW)
1371 settmode(TMODE_RAW); /* set to raw mode */
1372#ifdef FEAT_TITLE
1373 resettitle();
1374#endif
1375 if (term_console)
1376 win_resize_on(); /* window resize events activated */
1377 return retval;
1378}
1379
1380/*
1381 * check for an "interrupt signal"
1382 * We only react to a CTRL-C, but also clear the other break signals to avoid
1383 * trouble with lattice-c programs.
1384 */
1385 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02001386mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387{
1388 if (SetSignal(0L, (long)(SIGBREAKF_CTRL_C|SIGBREAKF_CTRL_D|SIGBREAKF_CTRL_E|SIGBREAKF_CTRL_F)) & SIGBREAKF_CTRL_C)
1389 got_int = TRUE;
1390}
1391
1392/* this routine causes manx to use this Chk_Abort() rather than it's own */
1393/* otherwise it resets our ^C when doing any I/O (even when Enable_Abort */
1394/* is zero). Since we want to check for our own ^C's */
1395
1396#ifdef _DCC
1397#define Chk_Abort chkabort
1398#endif
1399
1400#ifdef LATTICE
1401void __regargs __chkabort(void);
1402
1403void __regargs __chkabort(void)
1404{}
1405
1406#else
1407 long
1408Chk_Abort(void)
1409{
1410 return(0L);
1411}
1412#endif
1413
1414/*
1415 * mch_expandpath() - this code does wild-card pattern matching using the arp
1416 * routines.
1417 *
1418 * "pat" has backslashes before chars that are not to be expanded.
1419 * Returns the number of matches found.
1420 *
1421 * This is based on WildDemo2.c (found in arp1.1 distribution).
1422 * That code's copyright follows:
1423 * Copyright (c) 1987, Scott Ballantyne
1424 * Use and abuse as you please.
1425 */
1426
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001427#ifdef __amigaos4__
1428# define ANCHOR_BUF_SIZE 1024
1429#else
1430# define ANCHOR_BUF_SIZE (512)
1431# define ANCHOR_SIZE (sizeof(struct AnchorPath) + ANCHOR_BUF_SIZE)
1432#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433
1434 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001435mch_expandpath(
1436 garray_T *gap,
1437 char_u *pat,
1438 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439{
1440 struct AnchorPath *Anchor;
1441 LONG Result;
1442 char_u *starbuf, *sp, *dp;
1443 int start_len;
1444 int matches;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001445#ifdef __amigaos4__
1446 struct TagItem AnchorTags[] = {
1447 {ADO_Strlen, ANCHOR_BUF_SIZE},
1448 {ADO_Flags, APF_DODOT|APF_DOWILD|APF_MultiAssigns},
1449 {TAG_DONE, 0L}
1450 };
1451#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452
1453 start_len = gap->ga_len;
1454
1455 /* Get our AnchorBase */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001456#ifdef __amigaos4__
1457 Anchor = AllocDosObject(DOS_ANCHORPATH, AnchorTags);
1458#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 Anchor = (struct AnchorPath *)alloc_clear((unsigned)ANCHOR_SIZE);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001460#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 if (Anchor == NULL)
1462 return 0;
1463
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001464#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 Anchor->ap_Strlen = ANCHOR_BUF_SIZE; /* ap_Length not supported anymore */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001466# ifdef APF_DODOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 Anchor->ap_Flags = APF_DODOT | APF_DOWILD; /* allow '.' for current dir */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001468# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 Anchor->ap_Flags = APF_DoDot | APF_DoWild; /* allow '.' for current dir */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001470# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471#endif
1472
1473#ifdef FEAT_ARP
1474 if (dos2)
1475 {
1476#endif
1477 /* hack to replace '*' by '#?' */
1478 starbuf = alloc((unsigned)(2 * STRLEN(pat) + 1));
1479 if (starbuf == NULL)
1480 goto Return;
1481 for (sp = pat, dp = starbuf; *sp; ++sp)
1482 {
1483 if (*sp == '*')
1484 {
1485 *dp++ = '#';
1486 *dp++ = '?';
1487 }
1488 else
1489 *dp++ = *sp;
1490 }
1491 *dp = NUL;
1492 Result = MatchFirst((UBYTE *)starbuf, Anchor);
1493 vim_free(starbuf);
1494#ifdef FEAT_ARP
1495 }
1496 else
1497 Result = FindFirst((char *)pat, Anchor);
1498#endif
1499
1500 /*
1501 * Loop to get all matches.
1502 */
1503 while (Result == 0)
1504 {
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001505#ifdef __amigaos4__
1506 addfile(gap, (char_u *)Anchor->ap_Buffer, flags);
1507#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 addfile(gap, (char_u *)Anchor->ap_Buf, flags);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001509#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510#ifdef FEAT_ARP
1511 if (dos2)
1512#endif
1513 Result = MatchNext(Anchor);
1514#ifdef FEAT_ARP
1515 else
1516 Result = FindNext(Anchor);
1517#endif
1518 }
1519 matches = gap->ga_len - start_len;
1520
1521 if (Result == ERROR_BUFFER_OVERFLOW)
1522 EMSG(_("ANCHOR_BUF_SIZE too small."));
1523 else if (matches == 0 && Result != ERROR_OBJECT_NOT_FOUND
1524 && Result != ERROR_DEVICE_NOT_MOUNTED
1525 && Result != ERROR_NO_MORE_ENTRIES)
1526 EMSG(_("I/O ERROR"));
1527
1528 /*
1529 * Sort the files for this pattern.
1530 */
1531 if (matches)
1532 qsort((void *)(((char_u **)gap->ga_data) + start_len),
1533 (size_t)matches, sizeof(char_u *), sortcmp);
1534
1535 /* Free the wildcard stuff */
1536#ifdef FEAT_ARP
1537 if (dos2)
1538#endif
1539 MatchEnd(Anchor);
1540#ifdef FEAT_ARP
1541 else
1542 FreeAnchorChain(Anchor);
1543#endif
1544
1545Return:
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001546#ifdef __amigaos4__
1547 FreeDosObject(DOS_ANCHORPATH, Anchor);
1548#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 vim_free(Anchor);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001550#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551
1552 return matches;
1553}
1554
1555 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001556sortcmp(const void *a, const void *b)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557{
1558 char *s = *(char **)a;
1559 char *t = *(char **)b;
1560
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001561 return pathcmp(s, t, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562}
1563
1564/*
1565 * Return TRUE if "p" has wildcards that can be expanded by mch_expandpath().
1566 */
1567 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001568mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001570 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 {
1572 if (*p == '\\' && p[1] != NUL)
1573 ++p;
1574 else if (vim_strchr((char_u *)"*?[(#", *p) != NULL)
1575 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 }
1577 return FALSE;
1578}
1579
1580 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001581mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001583 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 {
1585 if (*p == '\\' && p[1] != NUL)
1586 ++p;
1587 else
1588 if (vim_strchr((char_u *)
1589# ifdef VIM_BACKTICK
1590 "*?[(#$`"
1591# else
1592 "*?[(#$"
1593# endif
1594 , *p) != NULL
1595 || (*p == '~' && p[1] != NUL))
1596 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 }
1598 return FALSE;
1599}
1600
1601/*
1602 * With AmigaDOS 2.0 support for reading local environment variables
1603 *
1604 * Two buffers are allocated:
1605 * - A big one to do the expansion into. It is freed before returning.
1606 * - A small one to hold the return value. It is kept until the next call.
1607 */
1608 char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01001609mch_getenv(char_u *var)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610{
1611 int len;
1612 UBYTE *buf; /* buffer to expand in */
1613 char_u *retval; /* return value */
1614 static char_u *alloced = NULL; /* allocated memory */
1615
1616#ifdef FEAT_ARP
1617 if (!dos2)
1618 retval = (char_u *)getenv((char *)var);
1619 else
1620#endif
1621 {
1622 vim_free(alloced);
1623 alloced = NULL;
1624 retval = NULL;
1625
1626 buf = alloc(IOSIZE);
1627 if (buf == NULL)
1628 return NULL;
1629
1630 len = GetVar((UBYTE *)var, buf, (long)(IOSIZE - 1), (long)0);
1631 if (len >= 0)
1632 {
1633 retval = vim_strsave((char_u *)buf);
1634 alloced = retval;
1635 }
1636
1637 vim_free(buf);
1638 }
1639
1640 /* if $VIM is not defined, use "vim:" instead */
1641 if (retval == NULL && STRCMP(var, "VIM") == 0)
1642 retval = (char_u *)"vim:";
1643
1644 return retval;
1645}
1646
1647/*
1648 * Amiga version of setenv() with AmigaDOS 2.0 support.
1649 */
1650/* ARGSUSED */
1651 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001652mch_setenv(char *var, char *value, int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653{
1654#ifdef FEAT_ARP
1655 if (!dos2)
1656 return setenv(var, value);
1657#endif
1658
1659 if (SetVar((UBYTE *)var, (UBYTE *)value, (LONG)-1, (ULONG)GVF_LOCAL_ONLY))
1660 return 0; /* success */
1661 return -1; /* failure */
1662}