2019-05-06 23:12:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/AKString.h>
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
|
|
struct Redirection {
|
2019-06-07 15:13:23 +00:00
|
|
|
enum Type {
|
2019-05-28 09:53:16 +00:00
|
|
|
Pipe,
|
|
|
|
FileWrite,
|
|
|
|
FileWriteAppend,
|
|
|
|
FileRead,
|
|
|
|
};
|
2019-05-06 23:12:08 +00:00
|
|
|
Type type;
|
|
|
|
int fd { -1 };
|
|
|
|
int rewire_fd { -1 };
|
2019-05-28 09:53:16 +00:00
|
|
|
String path {};
|
2019-05-06 23:12:08 +00:00
|
|
|
};
|
|
|
|
|
2019-06-04 18:36:08 +00:00
|
|
|
struct Rewiring {
|
|
|
|
int fd { -1 };
|
|
|
|
int rewire_fd { -1 };
|
|
|
|
};
|
|
|
|
|
2019-05-06 23:12:08 +00:00
|
|
|
struct Subcommand {
|
|
|
|
Vector<String> args;
|
|
|
|
Vector<Redirection> redirections;
|
2019-06-04 18:36:08 +00:00
|
|
|
Vector<Rewiring> rewirings;
|
2019-05-06 23:12:08 +00:00
|
|
|
};
|
|
|
|
|
2019-08-30 04:54:05 +00:00
|
|
|
struct Command {
|
|
|
|
Vector<Subcommand> subcommands;
|
|
|
|
};
|
|
|
|
|
2019-05-06 23:12:08 +00:00
|
|
|
class Parser {
|
|
|
|
public:
|
2019-05-28 09:53:16 +00:00
|
|
|
explicit Parser(const String& input)
|
|
|
|
: m_input(input)
|
|
|
|
{
|
|
|
|
}
|
2019-05-06 23:12:08 +00:00
|
|
|
|
2019-08-30 04:54:05 +00:00
|
|
|
Vector<Command> parse();
|
2019-05-06 23:12:08 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void commit_token();
|
|
|
|
void commit_subcommand();
|
2019-08-30 04:54:05 +00:00
|
|
|
void commit_command();
|
2019-05-06 23:12:08 +00:00
|
|
|
void do_pipe();
|
|
|
|
void begin_redirect_read(int fd);
|
|
|
|
void begin_redirect_write(int fd);
|
|
|
|
|
2019-06-07 15:13:23 +00:00
|
|
|
enum State {
|
2019-05-06 23:12:08 +00:00
|
|
|
Free,
|
|
|
|
InSingleQuotes,
|
|
|
|
InDoubleQuotes,
|
2019-05-25 22:38:11 +00:00
|
|
|
InWriteAppendOrRedirectionPath,
|
2019-05-06 23:12:08 +00:00
|
|
|
InRedirectionPath,
|
|
|
|
};
|
|
|
|
State m_state { Free };
|
|
|
|
String m_input;
|
|
|
|
|
2019-08-30 04:54:05 +00:00
|
|
|
Vector<Command> m_commands;
|
2019-05-06 23:12:08 +00:00
|
|
|
Vector<Subcommand> m_subcommands;
|
|
|
|
Vector<String> m_tokens;
|
|
|
|
Vector<Redirection> m_redirections;
|
|
|
|
Vector<char> m_token;
|
|
|
|
};
|