blob: 39fb222fdd8fd560d92e6d07e05392ab625bf6a0 [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 {
Bram Moolenaare3226be2005-12-18 22:10:00 +0000155 if (trigger_cursorhold() && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 {
Bram Moolenaar5b743bf2005-03-15 22:50:43 +0000157 buf[0] = K_SPECIAL;
158 buf[1] = KS_EXTRA;
159 buf[2] = (int)KE_CURSORHOLD;
160 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000162 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 }
164 }
165
166 for (;;) /* repeat until we got a character */
167 {
168# ifdef FEAT_MBYTE
169 len = Read(raw_in, (char *)buf, (long)maxlen / input_conv.vc_factor);
170# else
171 len = Read(raw_in, (char *)buf, (long)maxlen);
172# endif
173 if (len > 0)
174 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175#ifdef FEAT_MBYTE
176 /* Convert from 'termencoding' to 'encoding'. */
177 if (input_conv.vc_type != CONV_NONE)
178 len = convert_input(buf, len, maxlen);
179#endif
180 return len;
181 }
182 }
183}
184
185/*
186 * return non-zero if a character is available
187 */
188 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100189mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190{
191 return (WaitForChar(raw_in, 100L) != 0);
192}
193
194/*
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200195 * Return amount of memory still available in Kbyte.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 */
197 long_u
Bram Moolenaar05540972016-01-30 20:31:25 +0100198mch_avail_mem(int special)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000200#ifdef __amigaos4__
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200201 return (long_u)AvailMem(MEMF_ANY) >> 10;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000202#else
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200203 return (long_u)(AvailMem(special ? (long)MEMF_CHIP : (long)MEMF_ANY)) >> 10;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205}
206
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000207/*
208 * Waits a specified amount of time, or until input arrives if
209 * ignoreinput is FALSE.
210 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100212mch_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213{
Bram Moolenaarbae0c162007-05-10 19:30:25 +0000214#ifndef LATTICE /* SAS declares void Delay(ULONG) */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100215 void Delay(long);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216#endif
217
218 if (msec > 0)
219 {
220 if (ignoreinput)
221 Delay(msec / 20L); /* Delay works with 20 msec intervals */
222 else
223 WaitForChar(raw_in, msec * 1000L);
224 }
225}
226
227/*
228 * We have no job control, fake it by starting a new shell.
229 */
230 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100231mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232{
233 suspend_shell();
234}
235
236#ifndef DOS_LIBRARY
237# define DOS_LIBRARY ((UBYTE *)"dos.library")
238#endif
239
240 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100241mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242{
243 static char intlibname[] = "intuition.library";
244
245#ifdef AZTEC_C
246 Enable_Abort = 0; /* disallow vim to be aborted */
247#endif
248 Columns = 80;
249 Rows = 24;
250
251 /*
252 * Set input and output channels, unless we have opened our own window
253 */
254 if (raw_in == (BPTR)NULL)
255 {
256 raw_in = Input();
257 raw_out = Output();
258 /*
259 * If Input() is not interactive, then Output() will be (because of
260 * check in mch_check_win()). Used for "Vim -".
261 * Also check the other way around, for "Vim -h | more".
262 */
263 if (!IsInteractive(raw_in))
264 raw_in = raw_out;
265 else if (!IsInteractive(raw_out))
266 raw_out = raw_in;
267 }
268
269 out_flush();
270
271 wb_window = NULL;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000272#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 if ((IntuitionBase = (struct IntuitionBase *)
274 OpenLibrary((UBYTE *)intlibname, 0L)) == NULL)
275 {
276 mch_errmsg(_("cannot open "));
277 mch_errmsg(intlibname);
278 mch_errmsg("!?\n");
279 mch_exit(3);
280 }
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000281#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282}
283
Bram Moolenaar82881492012-11-20 16:53:39 +0100284#ifndef PROTO
285# include <workbench/startup.h>
286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287
288/*
289 * Check_win checks whether we have an interactive window.
290 * If not, a new window is opened with the newcli command.
291 * If we would open a window ourselves, the :sh and :! commands would not
292 * work properly (Why? probably because we are then running in a background
293 * CLI). This also is the best way to assure proper working in a next
294 * Workbench release.
295 *
296 * For the -f option (foreground mode) we open our own window and disable :sh.
297 * Otherwise the calling program would never know when editing is finished.
298 */
299#define BUF2SIZE 320 /* length of buffer for argument with complete path */
300
301 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100302mch_check_win(int argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303{
304 int i;
305 BPTR nilfh, fh;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000306 char_u buf1[24];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 char_u buf2[BUF2SIZE];
308 static char_u *(constrings[3]) = {(char_u *)"con:0/0/662/210/",
309 (char_u *)"con:0/0/640/200/",
310 (char_u *)"con:0/0/320/200/"};
311 static char_u *winerr = (char_u *)N_("VIM: Can't open window!\n");
312 struct WBArg *argp;
313 int ac;
314 char *av;
315 char_u *device = NULL;
316 int exitval = 4;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000317#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 struct Library *DosBase;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000319#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 int usewin = FALSE;
321
322/*
323 * check if we are running under DOS 2.0x or higher
324 */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000325#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 DosBase = OpenLibrary(DOS_LIBRARY, 37L);
327 if (DosBase != NULL)
328 /* if (((struct Library *)DOSBase)->lib_Version >= 37) */
329 {
330 CloseLibrary(DosBase);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000331# ifdef FEAT_ARP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 dos2 = TRUE;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000333# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334 }
335 else /* without arp functions we NEED 2.0 */
336 {
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000337# ifndef FEAT_ARP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 mch_errmsg(_("Need Amigados version 2.04 or later\n"));
339 exit(3);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000340# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 /* need arp functions for dos 1.x */
342 if (!(ArpBase = (struct ArpBase *) OpenLibrary((UBYTE *)ArpName, ArpVersion)))
343 {
344 fprintf(stderr, _("Need %s version %ld\n"), ArpName, ArpVersion);
345 exit(3);
346 }
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000347# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 }
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000349#endif /* __amigaos4__ */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350
351 /*
352 * scan argv[] for the "-f" and "-d" arguments
353 */
354 for (i = 1; i < argc; ++i)
355 if (argv[i][0] == '-')
356 {
357 switch (argv[i][1])
358 {
359 case 'f':
360 usewin = TRUE;
361 break;
362
363 case 'd':
364 if (i < argc - 1
365#ifdef FEAT_DIFF
366 /* require using "-dev", "-d" means diff mode */
367 && argv[i][2] == 'e' && argv[i][3] == 'v'
368#endif
369 )
370 device = (char_u *)argv[i + 1];
371 break;
372 }
373 }
374
375/*
376 * If we were not started from workbench, do not have a "-d" or "-dev"
377 * argument and we have been started with an interactive window, use that
378 * window.
379 */
380 if (argc != 0
381 && device == NULL
382 && (IsInteractive(Input()) || IsInteractive(Output())))
383 return OK;
384
385/*
386 * When given the "-f" argument, we open our own window. We can't use the
387 * newcli trick below, because the calling program (mail, rn, etc.) would not
388 * know when we are finished.
389 */
390 if (usewin)
391 {
392 /*
393 * Try to open a window. First try the specified device.
394 * Then try a 24 line 80 column window.
395 * If that fails, try two smaller ones.
396 */
397 for (i = -1; i < 3; ++i)
398 {
399 if (i >= 0)
400 device = constrings[i];
401 if (device != NULL && (raw_in = Open((UBYTE *)device,
402 (long)MODE_NEWFILE)) != (BPTR)NULL)
403 break;
404 }
405 if (raw_in == (BPTR)NULL) /* all three failed */
406 {
407 mch_errmsg(_(winerr));
408 goto exit;
409 }
410 raw_out = raw_in;
411 close_win = TRUE;
412 return OK;
413 }
414
415 if ((nilfh = Open((UBYTE *)"NIL:", (long)MODE_NEWFILE)) == (BPTR)NULL)
416 {
417 mch_errmsg(_("Cannot open NIL:\n"));
418 goto exit;
419 }
420
421 /*
422 * Make a unique name for the temp file (which we will not delete!).
423 * Use a pointer on the stack (nobody else will be using it).
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000424 * Under AmigaOS4, this assumption might change in the future, so
425 * we use a pointer to the current task instead. This should be a
426 * shared structure and thus globally unique.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427 */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000428#ifdef __amigaos4__
429 sprintf((char *)buf1, "t:nc%p", FindTask(0));
430#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 sprintf((char *)buf1, "t:nc%ld", (long)buf1);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000432#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 if ((fh = Open((UBYTE *)buf1, (long)MODE_NEWFILE)) == (BPTR)NULL)
434 {
435 mch_errmsg(_("Cannot create "));
436 mch_errmsg((char *)buf1);
437 mch_errmsg("\n");
438 goto exit;
439 }
440 /*
441 * Write the command into the file, put quotes around the arguments that
442 * have a space in them.
443 */
444 if (argc == 0) /* run from workbench */
445 ac = ((struct WBStartup *)argv)->sm_NumArgs;
446 else
447 ac = argc;
448 for (i = 0; i < ac; ++i)
449 {
450 if (argc == 0)
451 {
452 *buf2 = NUL;
453 argp = &(((struct WBStartup *)argv)->sm_ArgList[i]);
454 if (argp->wa_Lock)
455 (void)lock2name(argp->wa_Lock, buf2, (long)(BUF2SIZE - 1));
456#ifdef FEAT_ARP
457 if (dos2) /* use 2.0 function */
458#endif
459 AddPart((UBYTE *)buf2, (UBYTE *)argp->wa_Name, (long)(BUF2SIZE - 1));
460#ifdef FEAT_ARP
461 else /* use arp function */
462 TackOn((char *)buf2, argp->wa_Name);
463#endif
464 av = (char *)buf2;
465 }
466 else
467 av = argv[i];
468
469 /* skip '-d' or "-dev" option */
470 if (av[0] == '-' && av[1] == 'd'
471#ifdef FEAT_DIFF
472 && av[2] == 'e' && av[3] == 'v'
473#endif
474 )
475 {
476 ++i;
477 continue;
478 }
479 if (vim_strchr((char_u *)av, ' '))
480 Write(fh, "\"", 1L);
481 Write(fh, av, (long)strlen(av));
482 if (vim_strchr((char_u *)av, ' '))
483 Write(fh, "\"", 1L);
484 Write(fh, " ", 1L);
485 }
486 Write(fh, "\nendcli\n", 8L);
487 Close(fh);
488
489/*
490 * Try to open a new cli in a window. If "-d" or "-dev" argument was given try
491 * to open the specified device. Then try a 24 line 80 column window. If that
492 * fails, try two smaller ones.
493 */
494 for (i = -1; i < 3; ++i)
495 {
496 if (i >= 0)
497 device = constrings[i];
498 else if (device == NULL)
499 continue;
500 sprintf((char *)buf2, "newcli <nil: >nil: %s from %s", (char *)device, (char *)buf1);
501#ifdef FEAT_ARP
502 if (dos2)
503 {
504#endif
505 if (!SystemTags((UBYTE *)buf2, SYS_UserShell, TRUE, TAG_DONE))
506 break;
507#ifdef FEAT_ARP
508 }
509 else
510 {
511 if (Execute((UBYTE *)buf2, nilfh, nilfh))
512 break;
513 }
514#endif
515 }
516 if (i == 3) /* all three failed */
517 {
518 DeleteFile((UBYTE *)buf1);
519 mch_errmsg(_(winerr));
520 goto exit;
521 }
522 exitval = 0; /* The Execute succeeded: exit this program */
523
524exit:
525#ifdef FEAT_ARP
526 if (ArpBase)
527 CloseLibrary((struct Library *) ArpBase);
528#endif
529 exit(exitval);
530 /* NOTREACHED */
531 return FAIL;
532}
533
534/*
535 * Return TRUE if the input comes from a terminal, FALSE otherwise.
536 * We fake there is a window, because we can always open one!
537 */
538 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100539mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540{
541 return TRUE;
542}
543
544/*
545 * fname_case(): Set the case of the file name, if it already exists.
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000546 * This will cause the file name to remain exactly the same
547 * if the file system ignores, but preserves case.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 */
549/*ARGSUSED*/
550 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100551fname_case(
552 char_u *name,
553 int len) /* buffer size, ignored here */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554{
555 struct FileInfoBlock *fib;
556 size_t flen;
557
558 fib = get_fib(name);
559 if (fib != NULL)
560 {
561 flen = STRLEN(name);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000562 /* TODO: Check if this fix applies to AmigaOS < 4 too.*/
563#ifdef __amigaos4__
564 if (fib->fib_DirEntryType == ST_ROOT)
565 strcat(fib->fib_FileName, ":");
566#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 if (flen == strlen(fib->fib_FileName)) /* safety check */
568 mch_memmove(name, fib->fib_FileName, flen);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000569 free_fib(fib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 }
571}
572
573/*
574 * Get the FileInfoBlock for file "fname"
575 * The returned structure has to be free()d.
576 * Returns NULL on error.
577 */
578 static struct FileInfoBlock *
Bram Moolenaar05540972016-01-30 20:31:25 +0100579get_fib(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580{
581 BPTR flock;
582 struct FileInfoBlock *fib;
583
584 if (fname == NULL) /* safety check */
585 return NULL;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000586#ifdef __amigaos4__
587 fib = AllocDosObject(DOS_FIB,0);
588#else
589 fib = (struct FileInfoBlock *)alloc(sizeof(struct FileInfoBlock));
590#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 if (fib != NULL)
592 {
593 flock = Lock((UBYTE *)fname, (long)ACCESS_READ);
594 if (flock == (BPTR)NULL || !Examine(flock, fib))
595 {
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000596 free_fib(fib); /* in case of an error the memory is freed here */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 fib = NULL;
598 }
599 if (flock)
600 UnLock(flock);
601 }
602 return fib;
603}
604
605#ifdef FEAT_TITLE
606/*
607 * set the title of our window
608 * icon name is not set
609 */
610 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100611mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612{
613 if (wb_window != NULL && title != NULL)
614 SetWindowTitles(wb_window, (UBYTE *)title, (UBYTE *)-1L);
615}
616
617/*
618 * Restore the window/icon title.
619 * which is one of:
620 * 1 Just restore title
621 * 2 Just restore icon (which we don't have)
622 * 3 Restore title and icon (which we don't have)
623 */
624 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100625mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626{
627 if (which & 1)
628 mch_settitle(oldwindowtitle, NULL);
629}
630
631 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100632mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633{
634 return (wb_window != NULL);
635}
636
637 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100638mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639{
640 return FALSE;
641}
642#endif
643
644/*
645 * Insert user name in s[len].
646 */
647 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100648mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000650 /* TODO: Implement this. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 *s = NUL;
652 return FAIL;
653}
654
655/*
656 * Insert host name is s[len].
657 */
658 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100659mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000661#if defined(__amigaos4__) && defined(__CLIB2__)
662 gethostname(s, len);
663#else
Bram Moolenaarce0842a2005-07-18 21:58:11 +0000664 vim_strncpy(s, "Amiga", len - 1);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666}
667
668/*
669 * return process ID
670 */
671 long
Bram Moolenaar05540972016-01-30 20:31:25 +0100672mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000674#ifdef __amigaos4__
675 /* This is as close to a pid as we can come. We could use CLI numbers also,
676 * but then we would have two different types of process identifiers.
677 */
678 return((long)FindTask(0));
679#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 return (long)0;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000681#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682}
683
684/*
685 * Get name of current directory into buffer 'buf' of length 'len' bytes.
686 * Return OK for success, FAIL for failure.
687 */
688 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100689mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690{
691 return mch_FullName((char_u *)"", buf, len, FALSE);
692}
693
694/*
695 * get absolute file name into buffer 'buf' of length 'len' bytes
696 *
697 * return FAIL for failure, OK otherwise
698 */
699 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100700mch_FullName(
701 char_u *fname,
702 char_u *buf,
703 int len,
704 int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705{
706 BPTR l;
707 int retval = FAIL;
708 int i;
709
710 /* Lock the file. If it exists, we can get the exact name. */
711 if ((l = Lock((UBYTE *)fname, (long)ACCESS_READ)) != (BPTR)0)
712 {
713 retval = lock2name(l, buf, (long)len - 1);
714 UnLock(l);
715 }
716 else if (force || !mch_isFullName(fname)) /* not a full path yet */
717 {
718 /*
719 * If the file cannot be locked (doesn't exist), try to lock the
720 * current directory and concatenate the file name.
721 */
722 if ((l = Lock((UBYTE *)"", (long)ACCESS_READ)) != (BPTR)NULL)
723 {
724 retval = lock2name(l, buf, (long)len);
725 UnLock(l);
726 if (retval == OK)
727 {
728 i = STRLEN(buf);
729 /* Concatenate the fname to the directory. Don't add a slash
730 * if fname is empty, but do change "" to "/". */
731 if (i == 0 || *fname != NUL)
732 {
733 if (i < len - 1 && (i == 0 || buf[i - 1] != ':'))
734 buf[i++] = '/';
Bram Moolenaarce0842a2005-07-18 21:58:11 +0000735 vim_strncpy(buf + i, fname, len - i - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 }
737 }
738 }
739 }
740 if (*buf == 0 || *buf == ':')
741 retval = FAIL; /* something failed; use the file name */
742 return retval;
743}
744
745/*
746 * Return TRUE if "fname" does not depend on the current directory.
747 */
748 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100749mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750{
751 return (vim_strchr(fname, ':') != NULL && *fname != ':');
752}
753
754/*
755 * Get the full file name from a lock. Use 2.0 function if possible, because
756 * the arp function has more restrictions on the path length.
757 *
758 * return FAIL for failure, OK otherwise
759 */
760 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100761lock2name(BPTR lock, char_u *buf, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762{
763#ifdef FEAT_ARP
764 if (dos2) /* use 2.0 function */
765#endif
766 return ((int)NameFromLock(lock, (UBYTE *)buf, len) ? OK : FAIL);
767#ifdef FEAT_ARP
768 else /* use arp function */
769 return ((int)PathName(lock, (char *)buf, (long)(len/32)) ? OK : FAIL);
770#endif
771}
772
773/*
774 * get file permissions for 'name'
775 * Returns -1 when it doesn't exist.
776 */
777 long
Bram Moolenaar05540972016-01-30 20:31:25 +0100778mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779{
780 struct FileInfoBlock *fib;
781 long retval = -1;
782
783 fib = get_fib(name);
784 if (fib != NULL)
785 {
786 retval = fib->fib_Protection;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000787 free_fib(fib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 }
789 return retval;
790}
791
792/*
793 * set file permission for 'name' to 'perm'
794 *
795 * return FAIL for failure, OK otherwise
796 */
797 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100798mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799{
800 perm &= ~FIBF_ARCHIVE; /* reset archived bit */
801 return (SetProtection((UBYTE *)name, (long)perm) ? OK : FAIL);
802}
803
804/*
805 * Set hidden flag for "name".
806 */
807 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100808mch_hide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809{
810 /* can't hide a file */
811}
812
813/*
814 * return FALSE if "name" is not a directory
815 * return TRUE if "name" is a directory.
816 * return FALSE for error.
817 */
818 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100819mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820{
821 struct FileInfoBlock *fib;
822 int retval = FALSE;
823
824 fib = get_fib(name);
825 if (fib != NULL)
826 {
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000827#ifdef __amigaos4__
828 retval = (FIB_IS_DRAWER(fib)) ? TRUE : FALSE;
829#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 retval = ((fib->fib_DirEntryType >= 0) ? TRUE : FALSE);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000831#endif
832 free_fib(fib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 }
834 return retval;
835}
836
837/*
838 * Create directory "name".
839 */
Bram Moolenaare3853642006-09-14 19:36:57 +0000840 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100841mch_mkdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842{
843 BPTR lock;
844
845 lock = CreateDir(name);
846 if (lock != NULL)
Bram Moolenaare3853642006-09-14 19:36:57 +0000847 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 UnLock(lock);
Bram Moolenaare3853642006-09-14 19:36:57 +0000849 return 0;
850 }
851 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852}
853
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854/*
855 * Return 1 if "name" can be executed, 0 if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +0100856 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 * Return -1 if unknown.
858 */
859 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100860mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861{
862 /* TODO */
863 return -1;
864}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865
866/*
867 * Check what "name" is:
868 * NODE_NORMAL: file or directory (or doesn't exist)
869 * NODE_WRITABLE: writable device, socket, fifo, etc.
870 * NODE_OTHER: non-writable things
871 */
872 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100873mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874{
875 /* TODO */
876 return NODE_NORMAL;
877}
878
879 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100880mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881{
882}
883
884/*
885 * Careful: mch_exit() may be called before mch_init()!
886 */
887 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100888mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889{
Bram Moolenaar955f1982017-02-05 15:10:51 +0100890 exiting = TRUE;
891
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 if (raw_in) /* put terminal in 'normal' mode */
893 {
894 settmode(TMODE_COOK);
895 stoptermcap();
896 }
897 out_char('\n');
898 if (raw_out)
899 {
900 if (term_console)
901 {
902 win_resize_off(); /* window resize events de-activated */
903 if (size_set)
904 OUT_STR("\233t\233u"); /* reset window size (CSI t CSI u) */
905 }
906 out_flush();
907 }
908
909#ifdef FEAT_TITLE
910 mch_restore_title(3); /* restore window title */
911#endif
912
913 ml_close_all(TRUE); /* remove all memfiles */
914
915#ifdef FEAT_ARP
916 if (ArpBase)
917 CloseLibrary((struct Library *) ArpBase);
918#endif
919 if (close_win)
920 Close(raw_in);
921 if (r)
922 printf(_("Vim exiting with %d\n"), r); /* somehow this makes :cq work!? */
923 exit(r);
924}
925
926/*
927 * This is a routine for setting a given stream to raw or cooked mode on the
928 * Amiga . This is useful when you are using Lattice C to produce programs
929 * that want to read single characters with the "getch()" or "fgetc" call.
930 *
931 * Written : 18-Jun-87 By Chuck McManis.
932 */
933
934#define MP(xx) ((struct MsgPort *)((struct FileHandle *) (BADDR(xx)))->fh_Type)
935
936/*
937 * Function mch_settmode() - Convert the specified file pointer to 'raw' or
938 * 'cooked' mode. This only works on TTY's.
939 *
940 * Raw: keeps DOS from translating keys for you, also (BIG WIN) it means
941 * getch() will return immediately rather than wait for a return. You
942 * lose editing features though.
943 *
944 * Cooked: This function returns the designate file pointer to it's normal,
945 * wait for a <CR> mode. This is exactly like raw() except that
946 * it sends a 0 to the console to make it back into a CON: from a RAW:
947 */
948 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100949mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950{
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000951#if defined(__AROS__) || defined(__amigaos4__)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 if (!SetMode(raw_in, tmode == TMODE_RAW ? 1 : 0))
953#else
954 if (dos_packet(MP(raw_in), (long)ACTION_SCREEN_MODE,
955 tmode == TMODE_RAW ? -1L : 0L) == 0)
956#endif
957 mch_errmsg(_("cannot change console mode ?!\n"));
958}
959
960/*
961 * set screen mode, always fails.
962 */
963 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100964mch_screenmode(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965{
966 EMSG(_(e_screenmode));
967 return FAIL;
968}
969
970/*
971 * Code for this routine came from the following :
972 *
973 * ConPackets.c - C. Scheppner, A. Finkel, P. Lindsay CBM
974 * DOS packet example
975 * Requires 1.2
976 *
977 * Found on Fish Disk 56.
978 *
979 * Heavely modified by mool.
980 */
981
Bram Moolenaar82881492012-11-20 16:53:39 +0100982#ifndef PROTO
983# include <devices/conunit.h>
984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
986/*
987 * try to get the real window size
988 * return FAIL for failure, OK otherwise
989 */
990 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100991mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992{
993 struct ConUnit *conUnit;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000994#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 char id_a[sizeof(struct InfoData) + 3];
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000996#endif
997 struct InfoData *id=0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998
999 if (!term_console) /* not an amiga window */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001000 goto out;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001
1002 /* insure longword alignment */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001003#ifdef __amigaos4__
Bram Moolenaar62dbdc42011-10-20 18:24:22 +02001004 if (!(id = AllocDosObject(DOS_INFODATA, 0)))
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001005 goto out;
1006#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 id = (struct InfoData *)(((long)id_a + 3L) & ~3L);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001008#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009
1010 /*
1011 * Should make console aware of real window size, not the one we set.
1012 * Unfortunately, under DOS 2.0x this redraws the window and it
1013 * is rarely needed, so we skip it now, unless we changed the size.
1014 */
1015 if (size_set)
1016 OUT_STR("\233t\233u"); /* CSI t CSI u */
1017 out_flush();
1018
1019#ifdef __AROS__
1020 if (!Info(raw_out, id)
1021 || (wb_window = (struct Window *) id->id_VolumeNode) == NULL)
1022#else
1023 if (dos_packet(MP(raw_out), (long)ACTION_DISK_INFO, ((ULONG) id) >> 2) == 0
1024 || (wb_window = (struct Window *)id->id_VolumeNode) == NULL)
1025#endif
1026 {
1027 /* it's not an amiga window, maybe aux device */
1028 /* terminal type should be set */
1029 term_console = FALSE;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001030 goto out;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 }
1032 if (oldwindowtitle == NULL)
1033 oldwindowtitle = (char_u *)wb_window->Title;
1034 if (id->id_InUse == (BPTR)NULL)
1035 {
1036 mch_errmsg(_("mch_get_shellsize: not a console??\n"));
1037 return FAIL;
1038 }
1039 conUnit = (struct ConUnit *) ((struct IOStdReq *) id->id_InUse)->io_Unit;
1040
1041 /* get window size */
1042 Rows = conUnit->cu_YMax + 1;
1043 Columns = conUnit->cu_XMax + 1;
1044 if (Rows < 0 || Rows > 200) /* cannot be an amiga window */
1045 {
1046 Columns = 80;
1047 Rows = 24;
1048 term_console = FALSE;
1049 return FAIL;
1050 }
1051
1052 return OK;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001053out:
1054#ifdef __amigaos4__
1055 FreeDosObject(DOS_INFODATA, id); /* Safe to pass NULL */
1056#endif
1057
1058 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059}
1060
1061/*
1062 * Try to set the real window size to Rows and Columns.
1063 */
1064 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001065mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066{
1067 if (term_console)
1068 {
1069 size_set = TRUE;
1070 out_char(CSI);
1071 out_num((long)Rows);
1072 out_char('t');
1073 out_char(CSI);
1074 out_num((long)Columns);
1075 out_char('u');
1076 out_flush();
1077 }
1078}
1079
1080/*
1081 * Rows and/or Columns has changed.
1082 */
1083 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001084mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085{
1086 /* Nothing to do. */
1087}
1088
1089/*
1090 * out_num - output a (big) number fast
1091 */
1092 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001093out_num(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094{
1095 OUT_STR_NF(tltoa((unsigned long)n));
1096}
1097
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001098#if !defined(AZTEC_C) && !defined(__AROS__) && !defined(__amigaos4__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099/*
1100 * Sendpacket.c
1101 *
1102 * An invaluable addition to your Amiga.lib file. This code sends a packet to
1103 * the given message port. This makes working around DOS lots easier.
1104 *
1105 * Note, I didn't write this, those wonderful folks at CBM did. I do suggest
1106 * however that you may wish to add it to Amiga.Lib, to do so, compile it and
1107 * say 'oml lib:amiga.lib -r sendpacket.o'
1108 */
1109
Bram Moolenaar82881492012-11-20 16:53:39 +01001110#ifndef PROTO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111/* #include <proto/exec.h> */
1112/* #include <proto/dos.h> */
Bram Moolenaar82881492012-11-20 16:53:39 +01001113# include <exec/memory.h>
1114#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115
1116/*
1117 * Function - dos_packet written by Phil Lindsay, Carolyn Scheppner, and Andy
1118 * Finkel. This function will send a packet of the given type to the Message
1119 * Port supplied.
1120 */
1121
1122 static long
Bram Moolenaar05540972016-01-30 20:31:25 +01001123dos_packet(
1124 struct MsgPort *pid, /* process identifier ... (handlers message port) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 long action, /* packet type ... (what you want handler to do) */
Bram Moolenaard90b6c02016-08-28 18:10:45 +02001126 long arg) /* single argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127{
1128# ifdef FEAT_ARP
1129 struct MsgPort *replyport;
1130 struct StandardPacket *packet;
1131 long res1;
1132
1133 if (dos2)
1134# endif
1135 return DoPkt(pid, action, arg, 0L, 0L, 0L, 0L); /* use 2.0 function */
1136# ifdef FEAT_ARP
1137
1138 replyport = (struct MsgPort *) CreatePort(NULL, 0); /* use arp function */
1139 if (!replyport)
1140 return (0);
1141
1142 /* Allocate space for a packet, make it public and clear it */
1143 packet = (struct StandardPacket *)
1144 AllocMem((long) sizeof(struct StandardPacket), MEMF_PUBLIC | MEMF_CLEAR);
1145 if (!packet) {
1146 DeletePort(replyport);
1147 return (0);
1148 }
1149 packet->sp_Msg.mn_Node.ln_Name = (char *) &(packet->sp_Pkt);
1150 packet->sp_Pkt.dp_Link = &(packet->sp_Msg);
1151 packet->sp_Pkt.dp_Port = replyport;
1152 packet->sp_Pkt.dp_Type = action;
1153 packet->sp_Pkt.dp_Arg1 = arg;
1154
1155 PutMsg(pid, (struct Message *)packet); /* send packet */
1156
1157 WaitPort(replyport);
1158 GetMsg(replyport);
1159
1160 res1 = packet->sp_Pkt.dp_Res1;
1161
1162 FreeMem(packet, (long) sizeof(struct StandardPacket));
1163 DeletePort(replyport);
1164
1165 return (res1);
1166# endif
1167}
1168#endif /* !defined(AZTEC_C) && !defined(__AROS__) */
1169
1170/*
1171 * Call shell.
1172 * Return error number for failure, 0 otherwise
1173 */
1174 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001175mch_call_shell(
1176 char_u *cmd,
1177 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178{
1179 BPTR mydir;
1180 int x;
1181 int tmode = cur_tmode;
1182#ifdef AZTEC_C
1183 int use_execute;
1184 char_u *shellcmd = NULL;
1185 char_u *shellarg;
1186#endif
1187 int retval = 0;
1188
1189 if (close_win)
1190 {
1191 /* if Vim opened a window: Executing a shell may cause crashes */
1192 EMSG(_("E360: Cannot execute shell with -f option"));
1193 return -1;
1194 }
1195
1196 if (term_console)
1197 win_resize_off(); /* window resize events de-activated */
1198 out_flush();
1199
1200 if (options & SHELL_COOKED)
1201 settmode(TMODE_COOK); /* set to normal mode */
1202 mydir = Lock((UBYTE *)"", (long)ACCESS_READ); /* remember current dir */
1203
1204#if !defined(AZTEC_C) /* not tested very much */
1205 if (cmd == NULL)
1206 {
1207# ifdef FEAT_ARP
1208 if (dos2)
1209# endif
1210 x = SystemTags(p_sh, SYS_UserShell, TRUE, TAG_DONE);
1211# ifdef FEAT_ARP
1212 else
1213 x = Execute(p_sh, raw_in, raw_out);
1214# endif
1215 }
1216 else
1217 {
1218# ifdef FEAT_ARP
1219 if (dos2)
1220# endif
1221 x = SystemTags((char *)cmd, SYS_UserShell, TRUE, TAG_DONE);
1222# ifdef FEAT_ARP
1223 else
1224 x = Execute((char *)cmd, 0L, raw_out);
1225# endif
1226 }
1227# ifdef FEAT_ARP
1228 if ((dos2 && x < 0) || (!dos2 && !x))
1229# else
1230 if (x < 0)
1231# endif
1232 {
1233 MSG_PUTS(_("Cannot execute "));
1234 if (cmd == NULL)
1235 {
1236 MSG_PUTS(_("shell "));
1237 msg_outtrans(p_sh);
1238 }
1239 else
1240 msg_outtrans(cmd);
1241 msg_putchar('\n');
1242 retval = -1;
1243 }
1244# ifdef FEAT_ARP
1245 else if (!dos2 || x)
1246# else
1247 else if (x)
1248# endif
1249 {
1250 if ((x = IoErr()) != 0)
1251 {
1252 if (!(options & SHELL_SILENT))
1253 {
1254 msg_putchar('\n');
1255 msg_outnum((long)x);
1256 MSG_PUTS(_(" returned\n"));
1257 }
1258 retval = x;
1259 }
1260 }
1261#else /* else part is for AZTEC_C */
1262 if (p_st >= 4 || (p_st >= 2 && !(options & SHELL_FILTER)))
1263 use_execute = 1;
1264 else
1265 use_execute = 0;
1266 if (!use_execute)
1267 {
1268 /*
1269 * separate shell name from argument
1270 */
1271 shellcmd = vim_strsave(p_sh);
1272 if (shellcmd == NULL) /* out of memory, use Execute */
1273 use_execute = 1;
1274 else
1275 {
1276 shellarg = skiptowhite(shellcmd); /* find start of arguments */
1277 if (*shellarg != NUL)
1278 {
1279 *shellarg++ = NUL;
1280 shellarg = skipwhite(shellarg);
1281 }
1282 }
1283 }
1284 if (cmd == NULL)
1285 {
1286 if (use_execute)
1287 {
1288# ifdef FEAT_ARP
1289 if (dos2)
1290# endif
1291 x = SystemTags((UBYTE *)p_sh, SYS_UserShell, TRUE, TAG_DONE);
1292# ifdef FEAT_ARP
1293 else
1294 x = !Execute((UBYTE *)p_sh, raw_in, raw_out);
1295# endif
1296 }
1297 else
1298 x = fexecl((char *)shellcmd, (char *)shellcmd, (char *)shellarg, NULL);
1299 }
1300 else if (use_execute)
1301 {
1302# ifdef FEAT_ARP
1303 if (dos2)
1304# endif
1305 x = SystemTags((UBYTE *)cmd, SYS_UserShell, TRUE, TAG_DONE);
1306# ifdef FEAT_ARP
1307 else
1308 x = !Execute((UBYTE *)cmd, 0L, raw_out);
1309# endif
1310 }
1311 else if (p_st & 1)
1312 x = fexecl((char *)shellcmd, (char *)shellcmd, (char *)shellarg,
1313 (char *)cmd, NULL);
1314 else
1315 x = fexecl((char *)shellcmd, (char *)shellcmd, (char *)shellarg,
1316 (char *)p_shcf, (char *)cmd, NULL);
1317# ifdef FEAT_ARP
1318 if ((dos2 && x < 0) || (!dos2 && x))
1319# else
1320 if (x < 0)
1321# endif
1322 {
1323 MSG_PUTS(_("Cannot execute "));
1324 if (use_execute)
1325 {
1326 if (cmd == NULL)
1327 msg_outtrans(p_sh);
1328 else
1329 msg_outtrans(cmd);
1330 }
1331 else
1332 {
1333 MSG_PUTS(_("shell "));
1334 msg_outtrans(shellcmd);
1335 }
1336 msg_putchar('\n');
1337 retval = -1;
1338 }
1339 else
1340 {
1341 if (use_execute)
1342 {
1343# ifdef FEAT_ARP
1344 if (!dos2 || x)
1345# else
1346 if (x)
1347# endif
1348 x = IoErr();
1349 }
1350 else
1351 x = wait();
1352 if (x)
1353 {
1354 if (!(options & SHELL_SILENT) && !emsg_silent)
1355 {
1356 msg_putchar('\n');
1357 msg_outnum((long)x);
1358 MSG_PUTS(_(" returned\n"));
1359 }
1360 retval = x;
1361 }
1362 }
1363 vim_free(shellcmd);
1364#endif /* AZTEC_C */
1365
1366 if ((mydir = CurrentDir(mydir)) != 0) /* make sure we stay in the same directory */
1367 UnLock(mydir);
1368 if (tmode == TMODE_RAW)
1369 settmode(TMODE_RAW); /* set to raw mode */
1370#ifdef FEAT_TITLE
1371 resettitle();
1372#endif
1373 if (term_console)
1374 win_resize_on(); /* window resize events activated */
1375 return retval;
1376}
1377
1378/*
1379 * check for an "interrupt signal"
1380 * We only react to a CTRL-C, but also clear the other break signals to avoid
1381 * trouble with lattice-c programs.
1382 */
1383 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02001384mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385{
1386 if (SetSignal(0L, (long)(SIGBREAKF_CTRL_C|SIGBREAKF_CTRL_D|SIGBREAKF_CTRL_E|SIGBREAKF_CTRL_F)) & SIGBREAKF_CTRL_C)
1387 got_int = TRUE;
1388}
1389
1390/* this routine causes manx to use this Chk_Abort() rather than it's own */
1391/* otherwise it resets our ^C when doing any I/O (even when Enable_Abort */
1392/* is zero). Since we want to check for our own ^C's */
1393
1394#ifdef _DCC
1395#define Chk_Abort chkabort
1396#endif
1397
1398#ifdef LATTICE
1399void __regargs __chkabort(void);
1400
1401void __regargs __chkabort(void)
1402{}
1403
1404#else
1405 long
1406Chk_Abort(void)
1407{
1408 return(0L);
1409}
1410#endif
1411
1412/*
1413 * mch_expandpath() - this code does wild-card pattern matching using the arp
1414 * routines.
1415 *
1416 * "pat" has backslashes before chars that are not to be expanded.
1417 * Returns the number of matches found.
1418 *
1419 * This is based on WildDemo2.c (found in arp1.1 distribution).
1420 * That code's copyright follows:
1421 * Copyright (c) 1987, Scott Ballantyne
1422 * Use and abuse as you please.
1423 */
1424
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001425#ifdef __amigaos4__
1426# define ANCHOR_BUF_SIZE 1024
1427#else
1428# define ANCHOR_BUF_SIZE (512)
1429# define ANCHOR_SIZE (sizeof(struct AnchorPath) + ANCHOR_BUF_SIZE)
1430#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431
1432 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001433mch_expandpath(
1434 garray_T *gap,
1435 char_u *pat,
1436 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437{
1438 struct AnchorPath *Anchor;
1439 LONG Result;
1440 char_u *starbuf, *sp, *dp;
1441 int start_len;
1442 int matches;
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001443#ifdef __amigaos4__
1444 struct TagItem AnchorTags[] = {
1445 {ADO_Strlen, ANCHOR_BUF_SIZE},
1446 {ADO_Flags, APF_DODOT|APF_DOWILD|APF_MultiAssigns},
1447 {TAG_DONE, 0L}
1448 };
1449#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450
1451 start_len = gap->ga_len;
1452
1453 /* Get our AnchorBase */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001454#ifdef __amigaos4__
1455 Anchor = AllocDosObject(DOS_ANCHORPATH, AnchorTags);
1456#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 Anchor = (struct AnchorPath *)alloc_clear((unsigned)ANCHOR_SIZE);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001458#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 if (Anchor == NULL)
1460 return 0;
1461
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001462#ifndef __amigaos4__
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 Anchor->ap_Strlen = ANCHOR_BUF_SIZE; /* ap_Length not supported anymore */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001464# ifdef APF_DODOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 Anchor->ap_Flags = APF_DODOT | APF_DOWILD; /* allow '.' for current dir */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001466# else
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# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469#endif
1470
1471#ifdef FEAT_ARP
1472 if (dos2)
1473 {
1474#endif
1475 /* hack to replace '*' by '#?' */
1476 starbuf = alloc((unsigned)(2 * STRLEN(pat) + 1));
1477 if (starbuf == NULL)
1478 goto Return;
1479 for (sp = pat, dp = starbuf; *sp; ++sp)
1480 {
1481 if (*sp == '*')
1482 {
1483 *dp++ = '#';
1484 *dp++ = '?';
1485 }
1486 else
1487 *dp++ = *sp;
1488 }
1489 *dp = NUL;
1490 Result = MatchFirst((UBYTE *)starbuf, Anchor);
1491 vim_free(starbuf);
1492#ifdef FEAT_ARP
1493 }
1494 else
1495 Result = FindFirst((char *)pat, Anchor);
1496#endif
1497
1498 /*
1499 * Loop to get all matches.
1500 */
1501 while (Result == 0)
1502 {
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001503#ifdef __amigaos4__
1504 addfile(gap, (char_u *)Anchor->ap_Buffer, flags);
1505#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 addfile(gap, (char_u *)Anchor->ap_Buf, flags);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001507#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508#ifdef FEAT_ARP
1509 if (dos2)
1510#endif
1511 Result = MatchNext(Anchor);
1512#ifdef FEAT_ARP
1513 else
1514 Result = FindNext(Anchor);
1515#endif
1516 }
1517 matches = gap->ga_len - start_len;
1518
1519 if (Result == ERROR_BUFFER_OVERFLOW)
1520 EMSG(_("ANCHOR_BUF_SIZE too small."));
1521 else if (matches == 0 && Result != ERROR_OBJECT_NOT_FOUND
1522 && Result != ERROR_DEVICE_NOT_MOUNTED
1523 && Result != ERROR_NO_MORE_ENTRIES)
1524 EMSG(_("I/O ERROR"));
1525
1526 /*
1527 * Sort the files for this pattern.
1528 */
1529 if (matches)
1530 qsort((void *)(((char_u **)gap->ga_data) + start_len),
1531 (size_t)matches, sizeof(char_u *), sortcmp);
1532
1533 /* Free the wildcard stuff */
1534#ifdef FEAT_ARP
1535 if (dos2)
1536#endif
1537 MatchEnd(Anchor);
1538#ifdef FEAT_ARP
1539 else
1540 FreeAnchorChain(Anchor);
1541#endif
1542
1543Return:
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001544#ifdef __amigaos4__
1545 FreeDosObject(DOS_ANCHORPATH, Anchor);
1546#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 vim_free(Anchor);
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001548#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549
1550 return matches;
1551}
1552
1553 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001554sortcmp(const void *a, const void *b)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555{
1556 char *s = *(char **)a;
1557 char *t = *(char **)b;
1558
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001559 return pathcmp(s, t, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560}
1561
1562/*
1563 * Return TRUE if "p" has wildcards that can be expanded by mch_expandpath().
1564 */
1565 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001566mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001568 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 {
1570 if (*p == '\\' && p[1] != NUL)
1571 ++p;
1572 else if (vim_strchr((char_u *)"*?[(#", *p) != NULL)
1573 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 }
1575 return FALSE;
1576}
1577
1578 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001579mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001581 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 {
1583 if (*p == '\\' && p[1] != NUL)
1584 ++p;
1585 else
1586 if (vim_strchr((char_u *)
1587# ifdef VIM_BACKTICK
1588 "*?[(#$`"
1589# else
1590 "*?[(#$"
1591# endif
1592 , *p) != NULL
1593 || (*p == '~' && p[1] != NUL))
1594 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 }
1596 return FALSE;
1597}
1598
1599/*
1600 * With AmigaDOS 2.0 support for reading local environment variables
1601 *
1602 * Two buffers are allocated:
1603 * - A big one to do the expansion into. It is freed before returning.
1604 * - A small one to hold the return value. It is kept until the next call.
1605 */
1606 char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01001607mch_getenv(char_u *var)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608{
1609 int len;
1610 UBYTE *buf; /* buffer to expand in */
1611 char_u *retval; /* return value */
1612 static char_u *alloced = NULL; /* allocated memory */
1613
1614#ifdef FEAT_ARP
1615 if (!dos2)
1616 retval = (char_u *)getenv((char *)var);
1617 else
1618#endif
1619 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001620 VIM_CLEAR(alloced);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 retval = NULL;
1622
1623 buf = alloc(IOSIZE);
1624 if (buf == NULL)
1625 return NULL;
1626
1627 len = GetVar((UBYTE *)var, buf, (long)(IOSIZE - 1), (long)0);
1628 if (len >= 0)
1629 {
1630 retval = vim_strsave((char_u *)buf);
1631 alloced = retval;
1632 }
1633
1634 vim_free(buf);
1635 }
1636
1637 /* if $VIM is not defined, use "vim:" instead */
1638 if (retval == NULL && STRCMP(var, "VIM") == 0)
1639 retval = (char_u *)"vim:";
1640
1641 return retval;
1642}
1643
1644/*
1645 * Amiga version of setenv() with AmigaDOS 2.0 support.
1646 */
1647/* ARGSUSED */
1648 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001649mch_setenv(char *var, char *value, int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650{
1651#ifdef FEAT_ARP
1652 if (!dos2)
1653 return setenv(var, value);
1654#endif
1655
1656 if (SetVar((UBYTE *)var, (UBYTE *)value, (LONG)-1, (ULONG)GVF_LOCAL_ONLY))
1657 return 0; /* success */
1658 return -1; /* failure */
1659}