2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-05-06 23:12:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-09-06 13:34:26 +00:00
|
|
|
#include <AK/String.h>
|
2019-05-06 23:12:08 +00:00
|
|
|
#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:
|
2020-01-25 11:16:45 +00:00
|
|
|
enum class AllowEmptyToken { No, Yes };
|
|
|
|
void commit_token(AllowEmptyToken = AllowEmptyToken::No);
|
2019-05-06 23:12:08 +00:00
|
|
|
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;
|
|
|
|
};
|