ladybird/Shell/Parser.h
Andreas Kling 73fdbba59c AK: Rename <AK/AKString.h> to <AK/String.h>
This was a workaround to be able to build on case-insensitive file
systems where it might get confused about <string.h> vs <String.h>.

Let's just not support building that way, so String.h can have an
objectively nicer name. :^)
2019-09-06 15:36:54 +02:00

67 lines
1.2 KiB
C++

#pragma once
#include <AK/String.h>
#include <AK/Vector.h>
struct Redirection {
enum Type {
Pipe,
FileWrite,
FileWriteAppend,
FileRead,
};
Type type;
int fd { -1 };
int rewire_fd { -1 };
String path {};
};
struct Rewiring {
int fd { -1 };
int rewire_fd { -1 };
};
struct Subcommand {
Vector<String> args;
Vector<Redirection> redirections;
Vector<Rewiring> rewirings;
};
struct Command {
Vector<Subcommand> subcommands;
};
class Parser {
public:
explicit Parser(const String& input)
: m_input(input)
{
}
Vector<Command> parse();
private:
void commit_token();
void commit_subcommand();
void commit_command();
void do_pipe();
void begin_redirect_read(int fd);
void begin_redirect_write(int fd);
enum State {
Free,
InSingleQuotes,
InDoubleQuotes,
InWriteAppendOrRedirectionPath,
InRedirectionPath,
};
State m_state { Free };
String m_input;
Vector<Command> m_commands;
Vector<Subcommand> m_subcommands;
Vector<String> m_tokens;
Vector<Redirection> m_redirections;
Vector<char> m_token;
};