Subversion Repositories SvarDOS

Rev

Rev 404 | Rev 406 | 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"
385 mateuszvis 51
#include "cmd/rmdir.c"
352 mateuszvis 52
#include "cmd/set.c"
399 mateuszvis 53
#include "cmd/type.c"
379 mateuszvis 54
#include "cmd/ver.c"
386 mateuszvis 55
#include "cmd/verify.c"
352 mateuszvis 56
 
57
#include "cmd.h"
58
 
59
 
364 mateuszvis 60
struct CMD_ID {
61
  const char *cmd;
372 mateuszvis 62
  int (*func_ptr)(struct cmd_funcparam *); /* pointer to handling function */
364 mateuszvis 63
};
352 mateuszvis 64
 
364 mateuszvis 65
const struct CMD_ID INTERNAL_CMDS[] = {
380 mateuszvis 66
  {"BREAK",   cmd_notimpl},
364 mateuszvis 67
  {"CD",      cmd_cd},
380 mateuszvis 68
  {"CHCP",    cmd_notimpl},
364 mateuszvis 69
  {"CHDIR",   cmd_cd},
404 mateuszvis 70
  {"CLS",     cmd_cls},
403 mateuszvis 71
  {"COPY",    cmd_copy},
380 mateuszvis 72
  {"CTTY",    cmd_notimpl},
73
  {"DATE",    cmd_notimpl},
392 mateuszvis 74
  {"DEL",     cmd_del},
368 mateuszvis 75
  {"DIR",     cmd_dir},
405 mateuszvis 76
  {"ECHO",    cmd_echo},
392 mateuszvis 77
  {"ERASE",   cmd_del},
364 mateuszvis 78
  {"EXIT",    cmd_exit},
380 mateuszvis 79
  {"LH",      cmd_notimpl},
80
  {"LOADHIGH",cmd_notimpl},
385 mateuszvis 81
  {"MD",      cmd_mkdir},
82
  {"MKDIR",   cmd_mkdir},
400 mateuszvis 83
  {"PAUSE",   cmd_pause},
372 mateuszvis 84
  {"PATH",    cmd_path},
371 mateuszvis 85
  {"PROMPT",  cmd_prompt},
385 mateuszvis 86
  {"RD",      cmd_rmdir},
400 mateuszvis 87
  {"REM",     cmd_rem},
380 mateuszvis 88
  {"REN",     cmd_notimpl},
89
  {"RENAME",  cmd_notimpl},
385 mateuszvis 90
  {"RMDIR",   cmd_rmdir},
364 mateuszvis 91
  {"SET",     cmd_set},
380 mateuszvis 92
  {"TIME",    cmd_notimpl},
382 mateuszvis 93
  {"TYPE",    cmd_type},
379 mateuszvis 94
  {"VER",     cmd_ver},
386 mateuszvis 95
  {"VERIFY",  cmd_verify},
399 mateuszvis 96
  {"VOL",     cmd_vol},
364 mateuszvis 97
  {NULL,      NULL}
98
};
99
 
100
 
101
/* NULL if cmdline is not matching an internal command, otherwise returns a
102
 * pointer to a CMD_ID struct */
103
static const struct CMD_ID *cmd_match(const char far *cmdline, unsigned short *argoffset) {
104
  unsigned short i;
105
  char buff[10];
106
 
107
  /* copy command to buffer, until space, NULL, tab, return, dot, slash or backslash */
108
  for (i = 0; i < 9; i++) {
109
    if (cmdline[i] == ' ') break;
110
    if (cmdline[i] == 0) break;
111
    if (cmdline[i] == '\t') break;
112
    if (cmdline[i] == '\r') break;
113
    if (cmdline[i] == '.') break;
114
    if (cmdline[i] == '/') break;
115
    if (cmdline[i] == '\\') break;
116
    buff[i] = cmdline[i];
117
  }
118
  buff[i] = 0;
119
 
120
  /* advance to nearest non-space to find where arguments start */
121
  while (cmdline[i] == ' ') i++;
122
  *argoffset = i;
123
 
124
  /* try matching an internal command */
125
  for (i = 0; INTERNAL_CMDS[i].cmd != NULL; i++) {
126
    /*printf("imatch(%s,%s)\r\n", buff, INTERNAL_CMDS[i].cmd); */
127
    if (imatch(buff, INTERNAL_CMDS[i].cmd)) {
128
      /*printf("match cmd i=%u (buff=%s)\r\n", i, buff);*/
129
      return(&(INTERNAL_CMDS[i]));
130
    }
131
  }
132
 
133
  return(NULL); /* command is not recognized as internal */
352 mateuszvis 134
}
364 mateuszvis 135
 
136
 
137
/* explodes a command into an array of arguments where last arg is NULL
138
 * returns number of args */
139
unsigned short cmd_explode(char *buff, const char far *s, char const **argvlist) {
140
  int si = 0, argc = 0, i = 0;
141
  for (;;) {
142
    /* skip to next non-space character */
143
    while (s[si] == ' ') si++;
144
    /* end of string? */
145
    if (s[si] == 0) break;
146
    /* set argv ptr */
147
    argvlist[argc++] = buff + i;
403 mateuszvis 148
    /* find next arg delimiter (spc, null, slash or plus) while copying arg to local buffer */
364 mateuszvis 149
    do {
150
      buff[i++] = s[si++];
403 mateuszvis 151
    } while (s[si] != ' ' && s[si] != 0 && s[si] != '/' && s[si] != '+');
364 mateuszvis 152
    buff[i++] = 0;
153
    /* is this end of string? */
154
    if (s[si] == 0) break;
155
  }
156
  argvlist[argc] = NULL;
157
  return(argc);
158
}
159
 
160
 
405 mateuszvis 161
int cmd_process(unsigned short rmod_seg, unsigned short env_seg, const char far *cmdline, char *BUFFER) {
364 mateuszvis 162
  const struct CMD_ID *cmdptr;
163
  unsigned short argoffset;
372 mateuszvis 164
  struct cmd_funcparam *p = (void *)BUFFER;
364 mateuszvis 165
 
365 mateuszvis 166
  /* special case: is this a drive change? (like "E:") */
167
  if ((cmdline[0] != 0) && (cmdline[1] == ':') && ((cmdline[2] == ' ') || (cmdline[2] == 0))) {
168
    if (((cmdline[0] >= 'a') && (cmdline[0] <= 'z')) || ((cmdline[0] >= 'A') && (cmdline[0] <= 'Z'))) {
169
      unsigned char drive = cmdline[0];
170
      unsigned char curdrive = 0;
171
      if (drive >= 'a') {
172
        drive -= 'a';
173
      } else {
174
        drive -= 'A';
175
      }
176
      _asm {
177
        push ax
178
        push dx
179
        mov ah, 0x0e     /* DOS 1+ - SELECT DEFAULT DRIVE */
180
        mov dl, drive    /* DL = new default drive (00h = A:, 01h = B:, etc) */
181
        int 0x21
182
        mov ah, 0x19     /* DOS 1+ - GET CURRENT DRIVE */
183
        int 0x21
184
        mov curdrive, al /* cur drive (0=A, 1=B, etc) */
185
        pop dx
186
        pop ax
187
      }
188
      if (curdrive != drive) puts(doserr(0x0f));
189
      return(-1);
190
    }
191
  }
192
 
193
  /* try matching an internal command */
364 mateuszvis 194
  cmdptr = cmd_match(cmdline, &argoffset);
195
  if (cmdptr == NULL) return(-2); /* command is not recognized as internal */
196
 
197
  /* printf("recognized internal command: '%s', tail of command at offset %u\r\n", cmdptr->cmd, argoffset); */
198
 
199
  /* prepare function parameters and feed it to the cmd handling function */
372 mateuszvis 200
  p->argc = cmd_explode(BUFFER + sizeof(*p), cmdline + argoffset, p->argv);
201
  p->env_seg = env_seg;
405 mateuszvis 202
  p->rmod_seg = rmod_seg;
372 mateuszvis 203
  p->argoffset = argoffset;
204
  p->cmdline = cmdline;
364 mateuszvis 205
 
372 mateuszvis 206
  return((cmdptr->func_ptr)(p));
364 mateuszvis 207
}