mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:48:11 +00:00

This was unnecessarily confusing. When we build up a chain of commands connected by pipes, we now store the file descriptors of each end of these pipes as rewirings in a vector. The rewirings are then put into effect by calls to dup2().
62 lines
1.1 KiB
C++
62 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <AK/AKString.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;
|
|
};
|
|
|
|
class Parser {
|
|
public:
|
|
explicit Parser(const String& input)
|
|
: m_input(input)
|
|
{
|
|
}
|
|
|
|
Vector<Subcommand> parse();
|
|
|
|
private:
|
|
void commit_token();
|
|
void commit_subcommand();
|
|
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<Subcommand> m_subcommands;
|
|
Vector<String> m_tokens;
|
|
Vector<Redirection> m_redirections;
|
|
Vector<char> m_token;
|
|
};
|