Subversion Repositories SvarDOS

Rev

Rev 405 | Rev 407 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
352 mateuszvis 1
/* entry point for internal commands
2
 * matches internal commands and executes them
353 mateuszvis 3
 * returns -1 or exit code if processed
4
 * returns -2 if command unrecognized */
352 mateuszvis 5
 
6
#include <i86.h>
7
#include <stdio.h>
364 mateuszvis 8
#include <stdlib.h>
372 mateuszvis 9
#include <string.h>
352 mateuszvis 10
 
363 mateuszvis 11
#include "doserr.h"
371 mateuszvis 12
#include "env.h"
352 mateuszvis 13
#include "helpers.h"
405 mateuszvis 14
#include "rmodinit.h"
352 mateuszvis 15
 
403 mateuszvis 16
#define BUFFER_SIZE 2048    /* make sure this is not bigger than the static buffer in command.c */
17
 
364 mateuszvis 18
struct cmd_funcparam {
371 mateuszvis 19
  int argc;                 /* number of arguments */
20
  const char *argv[256];    /* pointers to each argument */
21
  unsigned short env_seg;   /* segment of environment block */
405 mateuszvis 22
  unsigned short rmod_seg;  /* segment of the resident module */
371 mateuszvis 23
  unsigned short argoffset; /* offset of cmdline where first argument starts */
405 mateuszvis 24
  const char far *cmdline;  /* original cmdline (terminated by a NULL) */
403 mateuszvis 25
  char BUFFER[BUFFER_SIZE]; /* a buffer for whatever is needed */
364 mateuszvis 26
};
27
 
387 mateuszvis 28
/* scans argv for the presence of a "/?" parameter. returns 1 if found, 0 otherwise */
29
static int cmd_ishlp(const struct cmd_funcparam *p) {
30
  int i;
31
  for (i = 0; i < p->argc; i++) {
32
    if ((p->argv[i][0] == '/') && (p->argv[i][1] == '?')) return(1);
33
  }
34
  return(0);
35
}
36
 
380 mateuszvis 37
#include "cmd/_notimpl.c"
363 mateuszvis 38
#include "cmd/cd.c"
404 mateuszvis 39
#include "cmd/cls.c"
403 mateuszvis 40
#include "cmd/copy.c"
392 mateuszvis 41
#include "cmd/del.c"
399 mateuszvis 42
#include "cmd/vol.c"     /* must be included before dir.c due to dependency */
368 mateuszvis 43
#include "cmd/dir.c"
405 mateuszvis 44
#include "cmd/echo.c"
364 mateuszvis 45
#include "cmd/exit.c"
385 mateuszvis 46
#include "cmd/mkdir.c"
372 mateuszvis 47
#include "cmd/path.c"
400 mateuszvis 48
#include "cmd/pause.c"
371 mateuszvis 49
#include "cmd/prompt.c"
400 mateuszvis 50
#include "cmd/rem.c"
406 mateuszvis 51
#include "cmd/rename.c"
385 mateuszvis 52
#include "cmd/rmdir.c"
352 mateuszvis 53
#include "cmd/set.c"
399 mateuszvis 54
#include "cmd/type.c"
379 mateuszvis 55
#include "cmd/ver.c"
386 mateuszvis 56
#include "cmd/verify.c"
352 mateuszvis 57
 
58
#include "cmd.h"
59
 
60
 
364 mateuszvis 61
struct CMD_ID {
62
  const char *cmd;
372 mateuszvis 63
  int (*func_ptr)(struct cmd_funcparam *); /* pointer to handling function */
364 mateuszvis 64
};
352 mateuszvis 65
 
364 mateuszvis 66
const struct CMD_ID INTERNAL_CMDS[] = {
380 mateuszvis 67
  {"BREAK",   cmd_notimpl},
364 mateuszvis 68
  {"CD",      cmd_cd},
380 mateuszvis 69
  {"CHCP",    cmd_notimpl},
364 mateuszvis 70
  {"CHDIR",   cmd_cd},
404 mateuszvis 71
  {"CLS",     cmd_cls},
403 mateuszvis 72
  {"COPY",    cmd_copy},
380 mateuszvis 73
  {"CTTY",    cmd_notimpl},
74
  {"DATE",    cmd_notimpl},
392 mateuszvis 75
  {"DEL",     cmd_del},
368 mateuszvis 76
  {"DIR",     cmd_dir},
405 mateuszvis 77
  {"ECHO",    cmd_echo},
392 mateuszvis 78
  {"ERASE",   cmd_del},
364 mateuszvis 79
  {"EXIT",    cmd_exit},
380 mateuszvis 80
  {"LH",      cmd_notimpl},
81
  {"LOADHIGH",cmd_notimpl},
385 mateuszvis 82
  {"MD",      cmd_mkdir},
83
  {"MKDIR",   cmd_mkdir},
400 mateuszvis 84
  {"PAUSE",   cmd_pause},
372 mateuszvis 85
  {"PATH",    cmd_path},
371 mateuszvis 86
  {"PROMPT",  cmd_prompt},
385 mateuszvis 87
  {"RD",      cmd_rmdir},
400 mateuszvis 88
  {"REM",     cmd_rem},
406 mateuszvis 89
  {"REN",     cmd_rename},
90
  {"RENAME",  cmd_rename},
385 mateuszvis 91
  {"RMDIR",   cmd_rmdir},
364 mateuszvis 92
  {"SET",     cmd_set},
380 mateuszvis 93
  {"TIME",    cmd_notimpl},
382 mateuszvis 94
  {"TYPE",    cmd_type},
379 mateuszvis 95
  {"VER",     cmd_ver},
386 mateuszvis 96
  {"VERIFY",  cmd_verify},
399 mateuszvis 97
  {"VOL",     cmd_vol},
364 mateuszvis 98
  {NULL,      NULL}
99
};
100
 
101
 
102
/* NULL if cmdline is not matching an internal command, otherwise returns a
103
 * pointer to a CMD_ID struct */
104
static const struct CMD_ID *cmd_match(const char far *cmdline, unsigned short *argoffset) {
105
  unsigned short i;
106
  char buff[10];
107
 
108
  /* copy command to buffer, until space, NULL, tab, return, dot, slash or backslash */
109
  for (i = 0; i < 9; i++) {
110
    if (cmdline[i] == ' ') break;
111
    if (cmdline[i] == 0) break;
112
    if (cmdline[i] == '\t') break;
113
    if (cmdline[i] == '\r') break;
114
    if (cmdline[i] == '.') break;
115
    if (cmdline[i] == '/') break;
116
    if (cmdline[i] == '\\') break;
117
    buff[i] = cmdline[i];
118
  }
119
  buff[i] = 0;
120
 
121
  /* advance to nearest non-space to find where arguments start */
122
  while (cmdline[i] == ' ') i++;
123
  *argoffset = i;
124
 
125
  /* try matching an internal command */
126
  for (i = 0; INTERNAL_CMDS[i].cmd != NULL; i++) {
127
    /*printf("imatch(%s,%s)\r\n", buff, INTERNAL_CMDS[i].cmd); */
128
    if (imatch(buff, INTERNAL_CMDS[i].cmd)) {
129
      /*printf("match cmd i=%u (buff=%s)\r\n", i, buff);*/
130
      return(&(INTERNAL_CMDS[i]));
131
    }
132
  }
133
 
134
  return(NULL); /* command is not recognized as internal */
352 mateuszvis 135
}
364 mateuszvis 136
 
137
 
138
/* explodes a command into an array of arguments where last arg is NULL
139
 * returns number of args */
140
unsigned short cmd_explode(char *buff, const char far *s, char const **argvlist) {
141
  int si = 0, argc = 0, i = 0;
142
  for (;;) {
143
    /* skip to next non-space character */
144
    while (s[si] == ' ') si++;
145
    /* end of string? */
146
    if (s[si] == 0) break;
147
    /* set argv ptr */
148
    argvlist[argc++] = buff + i;
403 mateuszvis 149
    /* find next arg delimiter (spc, null, slash or plus) while copying arg to local buffer */
364 mateuszvis 150
    do {
151
      buff[i++] = s[si++];
403 mateuszvis 152
    } while (s[si] != ' ' && s[si] != 0 && s[si] != '/' && s[si] != '+');
364 mateuszvis 153
    buff[i++] = 0;
154
    /* is this end of string? */
155
    if (s[si] == 0) break;
156
  }
157
  argvlist[argc] = NULL;
158
  return(argc);
159
}
160
 
161
 
405 mateuszvis 162
int cmd_process(unsigned short rmod_seg, unsigned short env_seg, const char far *cmdline, char *BUFFER) {
364 mateuszvis 163
  const struct CMD_ID *cmdptr;
164
  unsigned short argoffset;
372 mateuszvis 165
  struct cmd_funcparam *p = (void *)BUFFER;
364 mateuszvis 166
 
365 mateuszvis 167
  /* special case: is this a drive change? (like "E:") */
168
  if ((cmdline[0] != 0) && (cmdline[1] == ':') && ((cmdline[2] == ' ') || (cmdline[2] == 0))) {
169
    if (((cmdline[0] >= 'a') && (cmdline[0] <= 'z')) || ((cmdline[0] >= 'A') && (cmdline[0] <= 'Z'))) {
170
      unsigned char drive = cmdline[0];
171
      unsigned char curdrive = 0;
172
      if (drive >= 'a') {
173
        drive -= 'a';
174
      } else {
175
        drive -= 'A';
176
      }
177
      _asm {
178
        push ax
179
        push dx
180
        mov ah, 0x0e     /* DOS 1+ - SELECT DEFAULT DRIVE */
181
        mov dl, drive    /* DL = new default drive (00h = A:, 01h = B:, etc) */
182
        int 0x21
183
        mov ah, 0x19     /* DOS 1+ - GET CURRENT DRIVE */
184
        int 0x21
185
        mov curdrive, al /* cur drive (0=A, 1=B, etc) */
186
        pop dx
187
        pop ax
188
      }
189
      if (curdrive != drive) puts(doserr(0x0f));
190
      return(-1);
191
    }
192
  }
193
 
194
  /* try matching an internal command */
364 mateuszvis 195
  cmdptr = cmd_match(cmdline, &argoffset);
196
  if (cmdptr == NULL) return(-2); /* command is not recognized as internal */
197
 
198
  /* printf("recognized internal command: '%s', tail of command at offset %u\r\n", cmdptr->cmd, argoffset); */
199
 
200
  /* prepare function parameters and feed it to the cmd handling function */
372 mateuszvis 201
  p->argc = cmd_explode(BUFFER + sizeof(*p), cmdline + argoffset, p->argv);
202
  p->env_seg = env_seg;
405 mateuszvis 203
  p->rmod_seg = rmod_seg;
372 mateuszvis 204
  p->argoffset = argoffset;
205
  p->cmdline = cmdline;
364 mateuszvis 206
 
372 mateuszvis 207
  return((cmdptr->func_ptr)(p));
364 mateuszvis 208
}