back to scratko.xyz
summaryrefslogtreecommitdiff
path: root/lexical_analysis.c
blob: 5db57cb69628bab7c448410f2553878eb3ec112b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#include "lexical_analysis.h"

#include <stdio.h>

int is_double_quotes_pair(struct param_type params)
{
    return !(params.double_quotes_counter % 2);
}

int escape_double_quotes_or_backslash(int ch, struct param_type params)
{
    return params.escape_sequences &&
        (ch == double_quotes || ch == backslash);
}

int double_quotes_again(int ch, struct param_type params)
{
    return ch == double_quotes && !params.is_word &&
        params.stored_symbol == '"';
}

int check_separation(int ch, struct param_type params)
{
    return (ch == whitespace || ch == tab) && params.is_word &&
            !params.escape_sequences;
}

int ignore_spaces(int ch, struct param_type params)
{
    return (ch == whitespace || ch == tab) && !params.escape_sequences;
}

int change_mode(int ch, struct param_type params)
{
    return ch == '"' && !params.escape_sequences;
}

int start_escape_sequence(int ch, struct param_type params)
{
    return ch == backslash && !params.escape_sequences;
}

int is_empty_word(int ch, struct param_type params)
{
    return (ch == whitespace || ch == tab) && !params.is_word &&
            params.empty_word_flag;
}

int command_execution_condition(struct param_type *params)
{
    return
        (params->tokens != '<' && params->tokens != '>' &&
                params->tokens != append && !params->pipeline) ||
        (params->pipeline && params->tokens == '&');
}

int is_first_special_token_character(int ch)
{
    return ch == '<' || ch == '>' || ch == '&' || ch == '|' || ch == ';';
}

int excessive_words(int ch, struct param_type *params)
{
    int next_ch;

    if(filename_waiting(params)) {
        if(ch == new_line)
            return 0;
        while((next_ch = getchar()) != new_line) {
            if(next_ch == ' ')
                continue;
            if(!is_first_special_token_character(next_ch)) {
                params->wrong_command = err_extra_chars_after_filename;
                return 1;
            }
            else
                break;
        }
        ungetc(next_ch, stdin);
    }
    return 0;
}

void add_word_or_filename(struct w_queue *word_chain,
                          struct dynamic_array *tmp_word,
                          struct param_type *params)
{
    /* filenames */
    if(filename_waiting(params) && !params->wrong_command)
        add_filename(tmp_word, params);
    /* execute command */
    else if(params->is_word)
        add_word(word_chain, tmp_word, params);
}

int validate_redirections(int ch, int next_ch, struct param_type *params)
{
    return (ch == '<' && params->streams.input_stream == NULL) ||
            ((ch == '>' || (ch == '>' && next_ch == '>')) &&
             params->streams.output_stream == NULL &&
             params->streams.output_stream_to_append == NULL);
}

int is_double_token(struct param_type *params)
{
    return params->tokens == and || params->tokens == or ||
            params->tokens == append;
}

int is_special_token(int ch, int next_ch)
{
    return (ch == '&' && next_ch == '&') || (ch == '|' && ch == '|') ||
            ch == '&' || ch == ';' || ch == '|';
}

int is_redirect_token(int ch, int next_ch)
{
    return ch == '<' || ch == '>' || (ch == '>' && next_ch == '>');
}

/*
 * redirection token verification
 */
int stream_redirect_tokens(struct w_queue *word_chain,
                           struct dynamic_array *tmp_word, int ch,
                           struct param_type *params,
                           struct readline_type *readline)
{
    int next_ch;

    if(ch == '>')
        next_ch = readline->arr[readline->considered_index + 1];

    if(is_redirect_token(ch, next_ch)) {
        add_word_or_filename(word_chain, tmp_word, params);

        if(params->wrong_command)
            return 0;

        if(validate_redirections(ch, next_ch, params)) {
            params->tokens = (ch == '>' && next_ch == '>') ? append : ch;
            if(is_double_token(params))
                ++readline->considered_index;
            return 1;
        } else
            params->wrong_command = err_redirect_stream_again;
    }
    return 0;
}

/*
 * the first element of the pipeline outputs to a file or
 * redirects to a file in the middle of the pipeline
 */
int wrong_streams_redirection(struct param_type *params)
{
    return
        (!params->pipeline && (params->tokens == '>' ||
                               params->tokens == append)) ||
        (params->pipeline && (params->tokens == '>' ||
                              params->tokens == append ||
                              params->tokens == '<'));
}

int pipeline_token_processing(struct w_queue *word_chain,
                              struct c_queue *cmdlines,
                              struct dynamic_array *tmp_word,
                              struct param_type *params)
{
    char **cmdline = NULL;
    if(is_stream_redirection_set(params) &&
            wrong_streams_redirection(params)) {
        params->wrong_command = err_redirect_stream_in_pipeline;
        return 0;
    }
    params->tokens = '|';
    params->pipeline = 1;
    cmdline =
        create_cmdline(word_chain, w_queue_get_word_count(word_chain));

    c_queue_push(cmdlines, cmdline);
    w_queue_clear(word_chain);
    dynarr_reset_array(tmp_word);
    return 1;
}

/*
 * verification of special tokens (|, &, &&, ||), except redirection tokens
 */
int special_tokens(struct w_queue *word_chain, struct c_queue *cmdlines,
                   struct dynamic_array *tmp_word, int ch,
                   struct param_type *params, struct readline_type *readline)
{
    int next_ch, i;

    if(ch == '|' || ch == '&')
        next_ch = readline->arr[readline->considered_index + 1];

    if(is_special_token(ch, next_ch)) {
        add_word_or_filename(word_chain, tmp_word, params);

        if(params->wrong_command)
            return 0;

        if(ch == '|' && next_ch == '|')
            params->tokens = or;
        else if(ch == '|') {
            if(!pipeline_token_processing(word_chain, cmdlines, tmp_word,
                                          params))
                return 0;
        } else if(ch == '&' && next_ch == '&')
            params->tokens = and;
        else if(ch == '&') {
            for(i = readline->considered_index+1; readline->arr[i] != new_line;
                                                                        ++i) {
                if(readline->arr[i] != whitespace && readline->arr[i] != tab) {
                    params->wrong_command = err_bg_process;
                    return 0;
                }
            }
            params->tokens = '&';
        }
        if(is_double_token(params))
            ++readline->considered_index;
        return 1;
    }
    return 0;
}