非常に基本的なコマンド ライン インタープリターを作成しようとしているときに、理解できないセクションに出くわしました。必要な区切り文字のトークンをチェックしている間、&& と || を正しく有効にできないようです。機能。以下にリストされているのは、引数を挿入してからプロセスを作成するループです。
現時点では && に焦点を当てており、その実装を使用して || を支援する予定です。関数。皆さん、見て、私を正しい方向に向けるのを手伝ってもらえますか?
補足: これは私が C でプログラムを書くのも初めてなので、そのためにコードにエラーがあるかもしれません。
これは宿題の問題です。
ありがとう
私がこれまでに持っている完全なプログラムコードで更新されました。
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#define ARG_SIZE 1<<16
#define MAXLINE 100
char *args[ARG_SIZE];
int place = 0;
int return_status;
void insert( char *token ){
args[ place ] = token;
place++;
}
void create() {
size_t nargs = place;
pid_t pid;
if ( nargs == 0 ) return;
if ( !strcmp( args[0], "exit" ) ) exit(0);
pid = fork();
if ( pid ) {
pid = wait( return_status );
} else {
if ( access( args[ 0 ], X_OK ) ){
if( execvp( args[ 0 ], args ) ) {
puts( strerror( errno ) );
exit( 127 );
}
}else{
puts( strerror( errno ) );
exit( 127 );
}
}
int i = 0;
for ( i ; i < place + 1; i++)
args[ i ] = NULL;
place = 0;
}
int main( int argc, char *argv[] ){
char line[MAXLINE+1]; /* an input line */
int c; /* a single input char or EOF */
int n; /* line length */
char *token; /* pointer to an input token */
for(;;) { /* repeat until end of file */
write( 1, "#>", 2 );
if (fgets(line,MAXLINE,stdin) == NULL) /* end of file? */
exit(0);
n = strlen(line); /* get length of line */
if (n == 0) /* if line is empty */
continue;
if (line[n-1] != '\n') { /* does input end with '\n' ? */
fprintf(stderr,"Line too long.\n"); /* no, so line is too long. */
/*--------------------------------------------*/
/* Read and ignore input through end of line. */
/*--------------------------------------------*/
while ((c = fgetc(stdin)) != '\n') {
if (c == EOF) {
fprintf(stderr,"Unexpected end of file\n");
exit(1);
}
}
continue;
}
write( 1, line, strlen( line ) );
line[n-1] = '\0'; /* remove the end of line */
/*-------------------------------------------------------------*/
/* Identify and process each token (i.e. sequence of non-blank */
/* characters delimited by whitespace). For "ordinary" tokens */
/* (i.e. "words") we just display them. For the ||, &&, and ; */
/* items we display them with a textual explanation. */
/*-------------------------------------------------------------*/
token = strtok(line," \t");
while (token != NULL ) {
insert( token );
if (!strcmp(token,"&&")){
place--;
args[ place ] = NULL;
create();
if( return_status == -1)
write( 1, "Wait failed.\n", 12 );
if( return_status & 0xff ){
int i = 0;
for( i; i < place; i++)
args[ i ] = NULL;
place = 0;
while( strcmp( token, "||" ) || strcmp( token, ";" ) ) ;
}
}
else if (!strcmp(token,"||")){
place--;
args[ place ] = NULL;
completed = 0;
create();
}
else if (!strcmp(token,";")){
place--;
args[ place ] = NULL;
create();
}
else{
}
token = strtok(NULL," \t");
}
create();
}
return 0;
}