blob: 9266380d6dd9d1c6a8d4453fb03f045ad14be3c9 [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{
892 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 Moolenaar1cd871b2004-12-19 22:46:22 +00001568 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 Moolenaar1cd871b2004-12-19 22:46:22 +00001581 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 {
1620 vim_free(alloced);
1621 alloced = NULL;
1622 retval = NULL;
1623
1624 buf = alloc(IOSIZE);
1625 if (buf == NULL)
1626 return NULL;
1627
1628 len = GetVar((UBYTE *)var, buf, (long)(IOSIZE - 1), (long)0);
1629 if (len >= 0)
1630 {
1631 retval = vim_strsave((char_u *)buf);
1632 alloced = retval;
1633 }
1634
1635 vim_free(buf);
1636 }
1637
1638 /* if $VIM is not defined, use "vim:" instead */
1639 if (retval == NULL && STRCMP(var, "VIM") == 0)
1640 retval = (char_u *)"vim:";
1641
1642 return retval;
1643}
1644
1645/*
1646 * Amiga version of setenv() with AmigaDOS 2.0 support.
1647 */
1648/* ARGSUSED */
1649 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001650mch_setenv(char *var, char *value, int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651{
1652#ifdef FEAT_ARP
1653 if (!dos2)
1654 return setenv(var, value);
1655#endif
1656
1657 if (SetVar((UBYTE *)var, (UBYTE *)value, (LONG)-1, (ULONG)GVF_LOCAL_ONLY))
1658 return 0; /* success */
1659 return -1; /* failure */
1660}