blob: c26937d8a8b6795150d93042ff4c426e8bc2883e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * VMS port by Henk Elbers
5 * VMS deport by Zoltan Arpadffy
6 *
7 * Do ":help uganda" in Vim to read copying and usage conditions.
8 * Do ":help credits" in Vim to see a list of people who contributed.
9 * See README.txt for an overview of the Vim source code.
10 */
11
12#include "vim.h"
13
14typedef struct
15{
16 char class;
17 char type;
18 short width;
19 union
20 {
21 struct
22 {
23 char _basic[3];
24 char length;
25 } y;
26 int basic;
27 } x;
28 int extended;
29} TT_MODE;
30
31typedef struct
32{
33 short buflen;
34 short itemcode;
35 char *bufadrs;
36 int *retlen;
37} ITEM;
38
39typedef struct
40{
41 ITEM equ;
42 int nul;
43} ITMLST1;
44
45typedef struct
46{
47 ITEM index;
48 ITEM string;
49 int nul;
50} ITMLST2;
51
52static TT_MODE orgmode;
53static short iochan; /* TTY I/O channel */
54static short iosb[4]; /* IO status block */
55
56static int vms_match_num = 0;
57static int vms_match_free = 0;
58static char_u **vms_fmatch = NULL;
59static char *Fspec_Rms; /* rms file spec, passed implicitly between routines */
60
61
62
63static TT_MODE get_tty __ARGS((void));
64static void set_tty __ARGS((int row, int col));
65
66#define EXPL_ALLOC_INC 64
67
68#define EQN(S1,S2,LN) (strncmp(S1,S2,LN) == 0)
69#define SKIP_FOLLOWING_SLASHES(Str) while (Str[1] == '/') ++Str
70
71
72/*
73 * vul_desc vult een descriptor met een string en de lengte
74 * hier van.
75 */
76 static void
77vul_desc(DESC *des, char *str)
78{
79 des->dsc$b_dtype = DSC$K_DTYPE_T;
80 des->dsc$b_class = DSC$K_CLASS_S;
81 des->dsc$a_pointer = str;
82 des->dsc$w_length = str ? strlen(str) : 0;
83}
84
85/*
86 * vul_item vult een item met een aantal waarden
87 */
88 static void
89vul_item(ITEM *itm, short len, short cod, char *adr, int *ret)
90{
91 itm->buflen = len;
92 itm->itemcode = cod;
93 itm->bufadrs = adr;
94 itm->retlen = ret;
95}
96
97 void
98mch_settmode(int tmode)
99{
100 int status;
101
102 if ( tmode == TMODE_RAW )
103 set_tty(0, 0);
104 else{
105 switch (orgmode.width)
106 {
107 case 132: OUT_STR_NF((char_u *)"\033[?3h\033>"); break;
108 case 80: OUT_STR_NF((char_u *)"\033[?3l\033>"); break;
109 default: break;
110 }
111 out_flush();
112 status = sys$qiow(0, iochan, IO$_SETMODE, iosb, 0, 0,
113 &orgmode, sizeof(TT_MODE), 0,0,0,0);
114 if (status!=SS$_NORMAL || (iosb[0]&0xFFFF)!=SS$_NORMAL)
115 return;
116 (void)sys$dassgn(iochan);
117 iochan = 0;
118 }
119}
120
121 static void
122set_tty(int row, int col)
123{
124 int status;
125 TT_MODE newmode; /* New TTY mode bits */
126 static short first_time = TRUE;
127
128 if (first_time)
129 {
130 orgmode = get_tty();
131 first_time = FALSE;
132 }
133 newmode = get_tty();
134 if (col)
135 newmode.width = col;
136 if (row)
137 newmode.x.y.length = row;
138 newmode.x.basic |= (TT$M_NOECHO | TT$M_HOSTSYNC);
139 newmode.x.basic &= ~TT$M_TTSYNC;
140 newmode.extended |= TT2$M_PASTHRU;
141 status = sys$qiow(0, iochan, IO$_SETMODE, iosb, 0, 0,
142 &newmode, sizeof(newmode), 0, 0, 0, 0);
143 if (status!=SS$_NORMAL || (iosb[0]&0xFFFF)!=SS$_NORMAL)
144 return;
145}
146
147 static TT_MODE
148get_tty(void)
149{
150
151 static $DESCRIPTOR(odsc,"SYS$OUTPUT"); /* output descriptor */
152
153 int status;
154 TT_MODE tt_mode;
155
156 if (!iochan)
157 status = sys$assign(&odsc,&iochan,0,0);
158
159 status = sys$qiow(0, iochan, IO$_SENSEMODE, iosb, 0, 0,
160 &tt_mode, sizeof(tt_mode), 0, 0, 0, 0);
161 if (status != SS$_NORMAL || (iosb[0] & 0xFFFF) != SS$_NORMAL)
162 {
163 tt_mode.width = 0;
164 tt_mode.type = 0;
165 tt_mode.class = 0;
166 tt_mode.x.basic = 0;
167 tt_mode.x.y.length = 0;
168 tt_mode.extended = 0;
169 }
170 return(tt_mode);
171}
172
173/*
174 * Get the current window size in Rows and Columns.
175 */
176 int
177mch_get_shellsize(void)
178{
179 TT_MODE tmode;
180
181 tmode = get_tty(); /* get size from VMS */
182 Columns = tmode.width;
183 Rows = tmode.x.y.length;
184 return OK;
185}
186
187/*
188 * Try to set the window size to Rows and new_Columns.
189 */
190 void
191mch_set_shellsize(void)
192{
193 set_tty(Rows, Columns);
194 switch (Columns)
195 {
196 case 132: OUT_STR_NF((char_u *)"\033[?3h\033>"); break;
197 case 80: OUT_STR_NF((char_u *)"\033[?3l\033>"); break;
198 default: break;
199 }
200 out_flush();
201 screen_start();
202}
203
204 char_u *
205mch_getenv(char_u *lognam)
206{
207 DESC d_file_dev, d_lognam ;
208 static char buffer[LNM$C_NAMLENGTH+1];
209 char_u *cp = NULL;
210 unsigned long attrib;
211 int lengte = 0, dum = 0, idx = 0;
212 ITMLST2 itmlst;
213 char *sbuf = NULL;
214
215 vul_desc(&d_lognam, (char *)lognam);
216 vul_desc(&d_file_dev, "LNM$FILE_DEV");
217 attrib = LNM$M_CASE_BLIND;
218 vul_item(&itmlst.index, sizeof(int), LNM$_INDEX, (char *)&idx, &dum);
219 vul_item(&itmlst.string, LNM$C_NAMLENGTH, LNM$_STRING, buffer, &lengte);
220 itmlst.nul = 0;
221 if (sys$trnlnm(&attrib, &d_file_dev, &d_lognam, NULL,&itmlst) == SS$_NORMAL)
222 {
223 buffer[lengte] = '\0';
224 if (cp = (char_u *)alloc((unsigned)(lengte+1)))
225 strcpy((char *)cp, buffer);
226 return(cp);
227 }
228 else if ((sbuf = getenv((char *)lognam)))
229 {
230 lengte = strlen(sbuf) + 1;
231 cp = (char_u *)malloc((size_t)lengte);
232 if (cp)
233 strcpy((char *)cp, sbuf);
234 return cp;
235 }
236 else
237 return(NULL);
238}
239
240/*
241 * mch_setenv VMS version of setenv()
242 */
243 int
244mch_setenv(char *var, char *value, int x)
245{
246 int res, dum;
247 long attrib = 0L;
248 char acmode = PSL$C_SUPER; /* needs SYSNAM privilege */
249 DESC tabnam, lognam;
250 ITMLST1 itmlst;
251
252 vul_desc(&tabnam, "LNM$JOB");
253 vul_desc(&lognam, var);
254 vul_item(&itmlst.equ, value ? strlen(value) : 0, value ? LNM$_STRING : 0,
255 value, &dum);
256 itmlst.nul = 0;
257 res = sys$crelnm(&attrib, &tabnam, &lognam, &acmode, &itmlst);
258 return((res == 1) ? 0 : -1);
259}
260
261 int
262vms_sys(char *cmd, char *out, char *inp)
263{
264 DESC cdsc, odsc, idsc;
265 long status;
266
267 if (cmd)
268 vul_desc(&cdsc, cmd);
269 if (out)
270 vul_desc(&odsc, out);
271 if (inp)
272 vul_desc(&idsc, inp);
273
274 lib$spawn(cmd ? &cdsc : NULL, /* command string */
275 inp ? &idsc : NULL, /* input file */
276 out ? &odsc : NULL, /* output file */
277 0, 0, 0, &status, 0, 0, 0, 0, 0, 0);
278 return status;
279}
280
281/*
282 * Convert VMS system() or lib$spawn() return code to Unix-like exit value.
283 */
284 int
285vms_sys_status(int status)
286{
287 if (status != SS$_NORMAL && (status & STS$M_SUCCESS) == 0)
288 return status; /* Command failed. */
289 return 0;
290}
291
292/*
293 * vms_read()
294 * function for low level char input
295 *
296 * Returns: input length
297 */
298 int
299vms_read(char *inbuf, size_t nbytes)
300{
301 int status, function, len;
302 TT_MODE tt_mode;
303 ITEM itmlst[2];
304 static long trm_mask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
305
306 /* whatever happened earlier we need an iochan here */
307 if (!iochan)
308 tt_mode = get_tty();
309
310 vul_item(&itmlst[0], 0, TRM$_MODIFIERS,
Bram Moolenaar8348ea62005-06-14 22:05:40 +0000311 (char *)( TRM$M_TM_ESCAPE | TRM$M_TM_TIMED | TRM$M_TM_NOECHO |
312 TRM$M_TM_NOEDIT | TRM$M_TM_NOFILTR |
313 TRM$M_TM_NORECALL| TRM$M_TM_TRMNOECHO), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 vul_item(&itmlst[1], sizeof(trm_mask), TRM$_TERM, (char *)&trm_mask, 0);
315
316 function = (IO$_READLBLK | IO$M_EXTEND);
317 memset(inbuf, 0, nbytes);
318
319 while (1)
320 {
321 status = sys$qiow(0, iochan, function, &iosb, 0, 0, inbuf, nbytes - 1,
322 0, 0, &itmlst, sizeof(itmlst));
323 len = strlen(inbuf);
324 if (len > 0)
325 break;
326 }
327 return len;
328}
329
330/*
331 * vms_wproc() is called for each matching filename by decc$to_vms().
332 * We want to save each match for later retrieval.
333 *
334 * Returns: 1 - continue finding matches
335 * 0 - stop trying to find any further mathces
336 */
337 static int
338vms_wproc(char *name, int val)
339{
340 int i;
341 int nlen;
342 static int vms_match_alloced = 0;
343
344 if (val != DECC$K_FILE) /* Directories and foreing non VMS files are not counting */
345 return 1;
346
347 if (vms_match_num == 0) {
348 /* first time through, setup some things */
349 if (NULL == vms_fmatch) {
350 vms_fmatch = (char_u **)alloc(EXPL_ALLOC_INC * sizeof(char *));
351 if (!vms_fmatch)
352 return 0;
353 vms_match_alloced = EXPL_ALLOC_INC;
354 vms_match_free = EXPL_ALLOC_INC;
355 }
356 else {
357 /* re-use existing space */
358 vms_match_free = vms_match_alloced;
359 }
360 }
361
362 vms_remove_version(name);
363
364 /* convert filename to lowercase */
365 nlen = strlen(name);
366 for (i = 0; i < nlen; i++)
367 name[i] = TOLOWER_ASC(name[i]);
368
369 /* if name already exists, don't add it */
370 for (i = 0; i<vms_match_num; i++) {
371 if (0 == STRCMP((char_u *)name,vms_fmatch[i]))
372 return 1;
373 }
374 if (--vms_match_free == 0) {
375 /* add more space to store matches */
376 vms_match_alloced += EXPL_ALLOC_INC;
377 vms_fmatch = (char_u **)realloc(vms_fmatch,
378 sizeof(char **) * vms_match_alloced);
379 if (!vms_fmatch)
380 return 0;
381 vms_match_free = EXPL_ALLOC_INC;
382 }
383 vms_fmatch[vms_match_num] = vim_strsave((char_u *)name);
384
385 ++vms_match_num;
386 return 1;
387}
388
389/*
390 * mch_expand_wildcards this code does wild-card pattern
391 * matching NOT using the shell
392 *
393 * return OK for success, FAIL for error (you may loose some
394 * memory) and put an error message in *file.
395 *
396 * num_pat number of input patterns
397 * pat array of pointers to input patterns
398 * num_file pointer to number of matched file names
399 * file pointer to array of pointers to matched file names
400 *
401 */
402 int
403mch_expand_wildcards(int num_pat, char_u **pat, int *num_file, char_u ***file, int flags)
404{
405 int i, j = 0, cnt = 0;
406 char *cp;
407 char_u buf[MAXPATHL];
408 int dir;
409 int files_alloced, files_free;
410
411 *num_file = 0; /* default: no files found */
412 files_alloced = EXPL_ALLOC_INC;
413 files_free = EXPL_ALLOC_INC;
414 *file = (char_u **) alloc(sizeof(char_u **) * files_alloced);
415 if (*file == NULL)
416 {
417 *num_file = 0;
418 return FAIL;
419 }
420 for (i = 0; i < num_pat; i++)
421 {
422 /* expand environment var or home dir */
423 if (vim_strchr(pat[i],'$') || vim_strchr(pat[i],'~'))
424 expand_env(pat[i],buf,MAXPATHL);
425 else
426 STRCPY(buf,pat[i]);
427
428 vms_match_num = 0; /* reset collection counter */
429 cnt = decc$to_vms(decc$translate_vms(vms_fixfilename(buf)), vms_wproc, 1, 0);
430 /* allow wild, no dir */
431 if (cnt > 0)
432 cnt = vms_match_num;
433
434 if (cnt < 1)
435 continue;
436
437 for (i = 0; i < cnt; i++)
438 {
439 /* files should exist if expanding interactively */
440 if (!(flags & EW_NOTFOUND) && mch_getperm(vms_fmatch[i]) < 0)
441 continue;
442 /* do not include directories */
443 dir = (mch_isdir(vms_fmatch[i]));
444 if (( dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
445 continue;
446 /* allocate memory for pointers */
447 if (--files_free < 1)
448 {
449 files_alloced += EXPL_ALLOC_INC;
450 *file = (char_u **)realloc(*file,
451 sizeof(char_u **) * files_alloced);
452 if (*file == NULL)
453 {
454 *file = (char_u **)"";
455 *num_file = 0;
456 return(FAIL);
457 }
458 files_free = EXPL_ALLOC_INC;
459 }
460
461 (*file)[*num_file++] = vms_fmatch[i];
462 }
463 }
464 return OK;
465}
466
467 int
468mch_expandpath(garray_T *gap, char_u *path, int flags)
469{
470 int i,cnt = 0;
471 char *cp;
472 vms_match_num = 0;
473
474 cnt = decc$to_vms(decc$translate_vms(vms_fixfilename(path)), vms_wproc, 1, 0);
475 /* allow wild, no dir */
476 if (cnt > 0)
477 cnt = vms_match_num;
478 for (i = 0; i < cnt; i++)
479 {
480 if (mch_getperm(vms_fmatch[i]) >= 0) /* add existing file */
481 addfile(gap, vms_fmatch[i], flags);
482 }
483 return cnt;
484}
485
486/*
487 * attempt to translate a mixed unix-vms file specification to pure vms
488 */
489 static void
490vms_unix_mixed_filespec(char *in, char *out)
491{
492 char *lastcolon;
493 char *end_of_dir;
494 char ch;
495 int len;
496
497 /* copy vms filename portion up to last colon
498 * (node and/or disk)
499 */
500 lastcolon = strrchr(in, ':'); /* find last colon */
501 if (lastcolon != NULL) {
502 len = lastcolon - in + 1;
503 strncpy(out, in, len);
504 out += len;
505 in += len;
506 }
507
508 end_of_dir = NULL; /* default: no directory */
509
510 /* start of directory portion */
511 ch = *in;
512 if ((ch == '[') || (ch == '/') || (ch == '<') ) { /* start of directory(s) ? */
513 ch = '[';
514 SKIP_FOLLOWING_SLASHES(in);
515 } else if (EQN(in, "../", 3)) { /* Unix parent directory? */
516 *out++ = '[';
517 *out++ = '-';
518 end_of_dir = out;
519 ch = '.';
520 in += 2;
521 SKIP_FOLLOWING_SLASHES(in);
522 } else { /* not a special character */
523 while (EQN(in, "./", 2)) { /* Ignore Unix "current dir" */
524 in += 2;
525 SKIP_FOLLOWING_SLASHES(in);
526 }
527 if (strchr(in, '/') == NULL) { /* any more Unix directories ? */
528 strcpy(out, in); /* No - get rest of the spec */
529 return;
530 } else {
531 *out++ = '['; /* Yes, denote a Vms subdirectory */
532 ch = '.';
533 --in;
534 }
535 }
536
537 /* if we get here, there is a directory part of the filename */
538
539 /* initialize output file spec */
540 *out++ = ch;
541 ++in;
542
543 while (*in != '\0') {
544 ch = *in;
545 if ((ch == ']') || (ch == '/') || (ch == '>') ) { /* end of (sub)directory ? */
546 end_of_dir = out;
547 ch = '.';
548 SKIP_FOLLOWING_SLASHES(in);
549 }
550 else if (EQN(in, "../", 3)) { /* Unix parent directory? */
551 *out++ = '-';
552 end_of_dir = out;
553 ch = '.';
554 in += 2;
555 SKIP_FOLLOWING_SLASHES(in);
556 }
557 else {
558 while (EQN(in, "./", 2)) { /* Ignore Unix "current dir" */
559 end_of_dir = out;
560 in += 2;
561 SKIP_FOLLOWING_SLASHES(in);
562 ch = *in;
563 }
564 }
565
566 /* Place next character into output file spec */
567 *out++ = ch;
568 ++in;
569 }
570
571 *out = '\0'; /* Terminate output file spec */
572
573 if (end_of_dir != NULL) /* Terminate directory portion */
574 *end_of_dir = ']';
575}
576
577
578/*
579 * for decc$to_vms in vms_fixfilename
580 */
581 static int
582vms_fspec_proc(char *fil, int val)
583{
584 strcpy(Fspec_Rms,fil);
585 return(1);
586}
587
588/*
589 * change unix and mixed filenames to VMS
590 */
591 void *
592vms_fixfilename(void *instring)
593{
594 static char *buf = NULL;
595 static size_t buflen = 0;
596 size_t len;
597
598 /* get a big-enough buffer */
599 len = strlen(instring) + 1;
600 if (len > buflen)
601 {
602 buflen = len + 128;
603 if (buf)
604 buf = (char *)realloc(buf, buflen);
605 else
606 buf = (char *)calloc(buflen, sizeof(char));
607 }
608
609#ifdef DEBUG
610 char *tmpbuf = NULL;
611 tmpbuf = (char *)calloc(buflen, sizeof(char));
612 strcpy(tmpbuf, instring);
613#endif
614
615 Fspec_Rms = buf; /* for decc$to_vms */
616
617 if ( strchr(instring,'/') == NULL )
618 /* It is already a VMS file spec */
619 strcpy(buf, instring);
620 else if ( strchr(instring,'"') == NULL ){ /* password in the path ? */
621 /* Seems it is a regular file, let guess that it is pure Unix fspec */
622 if ( decc$to_vms(instring, vms_fspec_proc, 0, 0) <= 0 )
623 /* No... it must be mixed */
624 vms_unix_mixed_filespec(instring, buf);
625 }
626 else
627 /* we have a password in the path */
628 /* decc$ functions can not handle */
629 /* this is our only hope to resolv */
630 vms_unix_mixed_filespec(instring, buf);
631
632 return buf;
633}
634/*
635 * Remove version number from file name
636 * we need it in some special cases as:
637 * creating swap file name and writing new file
638 */
639 void
640vms_remove_version(void * fname)
641{
642 char_u *cp;
643 char_u *fp;
644
645 if ((cp = vim_strchr( fname, ';')) != NULL) /* remove version */
646 *cp = '\0';
647 else if ((cp = vim_strrchr( fname, '.')) != NULL )
648 {
649 if ((fp = vim_strrchr( fname, ']')) != NULL ) {;}
650 else if ((fp = vim_strrchr( fname, '>')) != NULL ) {;}
651 else fp = fname;
652
653 while ( *fp != '\0' && fp < cp )
654 if ( *fp++ == '.' )
655 *cp = '\0';
656 }
657 return ;
658}