2020-06-17 16:35:06 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Forward.h"
|
|
|
|
#include "Job.h"
|
2020-09-16 03:43:04 +03:00
|
|
|
#include "NodeVisitor.h"
|
2020-10-26 01:57:19 +03:00
|
|
|
#include <AK/Format.h>
|
2020-09-01 07:12:16 +03:00
|
|
|
#include <AK/InlineLinkedList.h>
|
2020-06-17 16:35:06 +03:00
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
#include <AK/RefCounted.h>
|
|
|
|
#include <AK/RefPtr.h>
|
|
|
|
#include <AK/String.h>
|
|
|
|
#include <AK/Types.h>
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
#include <LibLine/Editor.h>
|
|
|
|
|
2020-10-01 17:43:01 +03:00
|
|
|
namespace Shell::AST {
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
struct HighlightMetadata {
|
|
|
|
bool is_first_in_list { true };
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Position {
|
|
|
|
size_t start_offset { 0 };
|
|
|
|
size_t end_offset { 0 };
|
2020-09-28 13:57:20 +03:00
|
|
|
struct Line {
|
|
|
|
size_t line_number { 0 };
|
|
|
|
size_t line_column { 0 };
|
|
|
|
|
|
|
|
bool operator==(const Line& other) const
|
|
|
|
{
|
|
|
|
return line_number == other.line_number && line_column == other.line_column;
|
|
|
|
}
|
|
|
|
} start_line, end_line;
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
bool contains(size_t offset) const { return start_offset <= offset && offset <= end_offset; }
|
|
|
|
};
|
|
|
|
|
2020-08-04 12:53:23 +03:00
|
|
|
struct FdRedirection;
|
2020-06-22 14:07:20 +03:00
|
|
|
struct Rewiring : public RefCounted<Rewiring> {
|
2020-10-27 21:08:37 +03:00
|
|
|
int old_fd { -1 };
|
|
|
|
int new_fd { -1 };
|
2020-08-04 12:53:23 +03:00
|
|
|
FdRedirection* other_pipe_end { nullptr };
|
2020-06-17 16:35:06 +03:00
|
|
|
enum class Close {
|
|
|
|
None,
|
2020-10-27 21:08:37 +03:00
|
|
|
Old,
|
|
|
|
New,
|
|
|
|
RefreshNew,
|
|
|
|
RefreshOld,
|
|
|
|
ImmediatelyCloseNew,
|
2020-06-22 14:07:20 +03:00
|
|
|
} fd_action { Close::None };
|
|
|
|
|
|
|
|
Rewiring(int source, int dest, Close close = Close::None)
|
2020-10-27 21:08:37 +03:00
|
|
|
: old_fd(source)
|
|
|
|
, new_fd(dest)
|
2020-06-22 14:07:20 +03:00
|
|
|
, fd_action(close)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-08-04 12:53:23 +03:00
|
|
|
Rewiring(int source, int dest, FdRedirection* other_end, Close close)
|
2020-10-27 21:08:37 +03:00
|
|
|
: old_fd(source)
|
|
|
|
, new_fd(dest)
|
2020-06-22 14:07:20 +03:00
|
|
|
, other_pipe_end(other_end)
|
|
|
|
, fd_action(close)
|
|
|
|
{
|
|
|
|
}
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Redirection : public RefCounted<Redirection> {
|
2020-08-04 19:16:37 +03:00
|
|
|
virtual Result<NonnullRefPtr<Rewiring>, String> apply() const = 0;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~Redirection();
|
|
|
|
virtual bool is_path_redirection() const { return false; }
|
|
|
|
virtual bool is_fd_redirection() const { return false; }
|
|
|
|
virtual bool is_close_redirection() const { return false; }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CloseRedirection : public Redirection {
|
|
|
|
int fd { -1 };
|
|
|
|
|
2020-08-04 19:16:37 +03:00
|
|
|
virtual Result<NonnullRefPtr<Rewiring>, String> apply() const override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~CloseRedirection();
|
|
|
|
CloseRedirection(int fd)
|
|
|
|
: fd(fd)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual bool is_close_redirection() const override { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PathRedirection : public Redirection {
|
|
|
|
String path;
|
|
|
|
int fd { -1 };
|
|
|
|
enum {
|
|
|
|
Read,
|
|
|
|
Write,
|
|
|
|
WriteAppend,
|
|
|
|
ReadWrite,
|
|
|
|
} direction { Read };
|
|
|
|
|
2020-08-12 13:15:30 +03:00
|
|
|
static NonnullRefPtr<PathRedirection> create(String path, int fd, decltype(direction) direction)
|
|
|
|
{
|
|
|
|
return adopt(*new PathRedirection(move(path), fd, direction));
|
|
|
|
}
|
|
|
|
|
2020-08-04 19:16:37 +03:00
|
|
|
virtual Result<NonnullRefPtr<Rewiring>, String> apply() const override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~PathRedirection();
|
2020-08-12 13:15:30 +03:00
|
|
|
|
|
|
|
private:
|
2020-06-17 16:35:06 +03:00
|
|
|
PathRedirection(String path, int fd, decltype(direction) direction)
|
|
|
|
: path(move(path))
|
|
|
|
, fd(fd)
|
|
|
|
, direction(direction)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool is_path_redirection() const override { return true; }
|
|
|
|
};
|
|
|
|
|
2020-08-04 12:53:23 +03:00
|
|
|
struct FdRedirection : public Redirection {
|
2020-08-12 13:13:33 +03:00
|
|
|
public:
|
2020-10-27 21:08:37 +03:00
|
|
|
static NonnullRefPtr<FdRedirection> create(int old_fd, int new_fd, Rewiring::Close close)
|
2020-08-12 13:13:33 +03:00
|
|
|
{
|
2020-10-27 21:08:37 +03:00
|
|
|
return adopt(*new FdRedirection(old_fd, new_fd, close));
|
2020-08-12 13:13:33 +03:00
|
|
|
}
|
|
|
|
|
2020-10-27 21:08:37 +03:00
|
|
|
static NonnullRefPtr<FdRedirection> create(int old_fd, int new_fd, FdRedirection* pipe_end, Rewiring::Close close)
|
2020-08-12 13:13:33 +03:00
|
|
|
{
|
2020-10-27 21:08:37 +03:00
|
|
|
return adopt(*new FdRedirection(old_fd, new_fd, pipe_end, close));
|
2020-08-12 13:13:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~FdRedirection();
|
|
|
|
|
2020-08-04 19:16:37 +03:00
|
|
|
virtual Result<NonnullRefPtr<Rewiring>, String> apply() const override
|
2020-08-04 12:53:23 +03:00
|
|
|
{
|
2020-10-27 21:08:37 +03:00
|
|
|
return adopt(*new Rewiring(old_fd, new_fd, other_pipe_end, action));
|
2020-08-04 12:53:23 +03:00
|
|
|
}
|
2020-08-12 13:13:33 +03:00
|
|
|
|
2020-10-27 21:08:37 +03:00
|
|
|
int old_fd { -1 };
|
|
|
|
int new_fd { -1 };
|
2020-08-12 13:13:33 +03:00
|
|
|
FdRedirection* other_pipe_end { nullptr };
|
|
|
|
Rewiring::Close action { Rewiring::Close::None };
|
|
|
|
|
|
|
|
private:
|
2020-06-17 16:35:06 +03:00
|
|
|
FdRedirection(int source, int dest, Rewiring::Close close)
|
2020-08-04 12:53:23 +03:00
|
|
|
: FdRedirection(source, dest, nullptr, close)
|
2020-06-22 14:07:20 +03:00
|
|
|
{
|
|
|
|
}
|
2020-08-04 12:53:23 +03:00
|
|
|
|
2020-10-27 21:08:37 +03:00
|
|
|
FdRedirection(int old_fd, int new_fd, FdRedirection* pipe_end, Rewiring::Close close)
|
|
|
|
: old_fd(old_fd)
|
|
|
|
, new_fd(new_fd)
|
2020-08-04 12:53:23 +03:00
|
|
|
, other_pipe_end(pipe_end)
|
|
|
|
, action(close)
|
2020-06-17 16:35:06 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool is_fd_redirection() const override { return true; }
|
|
|
|
};
|
|
|
|
|
2020-08-11 14:24:46 +03:00
|
|
|
class Pipeline : public RefCounted<Pipeline> {
|
|
|
|
public:
|
|
|
|
pid_t pgid { -1 };
|
|
|
|
};
|
|
|
|
|
2020-09-01 07:12:16 +03:00
|
|
|
struct NodeWithAction {
|
|
|
|
mutable NonnullRefPtr<Node> node;
|
|
|
|
enum Action {
|
|
|
|
And,
|
|
|
|
Or,
|
|
|
|
Sequence,
|
|
|
|
} action;
|
|
|
|
|
|
|
|
NodeWithAction(Node& node, Action action)
|
|
|
|
: node(node)
|
|
|
|
, action(action)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
struct Command {
|
|
|
|
Vector<String> argv;
|
2020-08-07 10:42:12 +03:00
|
|
|
NonnullRefPtrVector<Redirection> redirections;
|
2020-06-17 16:35:06 +03:00
|
|
|
bool should_wait { true };
|
|
|
|
bool is_pipe_source { false };
|
2020-06-21 23:00:14 +03:00
|
|
|
bool should_notify_if_in_background { true };
|
2020-09-07 19:19:53 +03:00
|
|
|
bool should_immediately_execute_next { false };
|
2020-09-01 07:12:16 +03:00
|
|
|
|
|
|
|
mutable RefPtr<Pipeline> pipeline;
|
|
|
|
Vector<NodeWithAction> next_chain;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct HitTestResult {
|
|
|
|
RefPtr<Node> matching_node;
|
|
|
|
RefPtr<Node> closest_node_with_semantic_meaning; // This is used if matching_node is a bareword
|
2020-06-29 04:56:06 +03:00
|
|
|
RefPtr<Node> closest_command_node; // This is used if matching_node is a bareword, and it is not the first in a list
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class Value : public RefCounted<Value> {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) = 0;
|
|
|
|
virtual Vector<Command> resolve_as_commands(RefPtr<Shell>);
|
2020-08-07 10:36:15 +03:00
|
|
|
virtual NonnullRefPtr<Value> resolve_without_cast(RefPtr<Shell>) { return *this; }
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~Value();
|
|
|
|
virtual bool is_command() const { return false; }
|
|
|
|
virtual bool is_glob() const { return false; }
|
|
|
|
virtual bool is_job() const { return false; }
|
|
|
|
virtual bool is_list() const { return false; }
|
|
|
|
virtual bool is_string() const { return false; }
|
2020-07-12 00:11:24 +03:00
|
|
|
virtual bool is_list_without_resolution() const { return false; }
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class CommandValue final : public Value {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) override;
|
|
|
|
virtual Vector<Command> resolve_as_commands(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~CommandValue();
|
|
|
|
virtual bool is_command() const override { return true; }
|
|
|
|
CommandValue(Command command)
|
|
|
|
: m_command(move(command))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CommandValue(Vector<String> argv)
|
2020-09-07 19:19:53 +03:00
|
|
|
: m_command({ move(argv), {}, true, false, true, false, nullptr, {} })
|
2020-06-17 16:35:06 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Command m_command;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CommandSequenceValue final : public Value {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) override;
|
|
|
|
virtual Vector<Command> resolve_as_commands(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~CommandSequenceValue();
|
|
|
|
virtual bool is_command() const override { return true; }
|
|
|
|
CommandSequenceValue(Vector<Command> commands)
|
|
|
|
: m_contained_values(move(commands))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Vector<Command> m_contained_values;
|
|
|
|
};
|
|
|
|
|
|
|
|
class JobValue final : public Value {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) override { ASSERT_NOT_REACHED(); }
|
|
|
|
virtual Vector<Command> resolve_as_commands(RefPtr<Shell>) override { ASSERT_NOT_REACHED(); }
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~JobValue();
|
|
|
|
virtual bool is_job() const override { return true; }
|
|
|
|
JobValue(RefPtr<Job> job)
|
|
|
|
: m_job(move(job))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const RefPtr<Job> job() const { return m_job; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
RefPtr<Job> m_job;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ListValue final : public Value {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) override;
|
2020-08-07 10:36:15 +03:00
|
|
|
virtual NonnullRefPtr<Value> resolve_without_cast(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~ListValue();
|
|
|
|
virtual bool is_list() const override { return true; }
|
2020-07-12 00:11:24 +03:00
|
|
|
virtual bool is_list_without_resolution() const override { return true; }
|
2020-06-17 16:35:06 +03:00
|
|
|
ListValue(Vector<String> values);
|
2020-08-07 10:33:05 +03:00
|
|
|
ListValue(Vector<NonnullRefPtr<Value>> values)
|
|
|
|
: m_contained_values(move(static_cast<NonnullRefPtrVector<Value>&>(values)))
|
2020-06-17 16:35:06 +03:00
|
|
|
{
|
|
|
|
}
|
2020-10-24 17:43:02 +03:00
|
|
|
ListValue(NonnullRefPtrVector<Value> values)
|
|
|
|
: m_contained_values(move(values))
|
|
|
|
{
|
|
|
|
}
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-08-07 10:33:05 +03:00
|
|
|
const NonnullRefPtrVector<Value>& values() const { return m_contained_values; }
|
|
|
|
NonnullRefPtrVector<Value>& values() { return m_contained_values; }
|
2020-07-12 00:11:24 +03:00
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
private:
|
2020-08-07 10:33:05 +03:00
|
|
|
NonnullRefPtrVector<Value> m_contained_values;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class StringValue final : public Value {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~StringValue();
|
|
|
|
virtual bool is_string() const override { return m_split.is_null(); }
|
|
|
|
virtual bool is_list() const override { return !m_split.is_null(); }
|
2020-06-29 04:52:58 +03:00
|
|
|
StringValue(String string, String split_by = {}, bool keep_empty = false)
|
2020-08-07 10:19:59 +03:00
|
|
|
: m_string(move(string))
|
2020-06-17 16:35:06 +03:00
|
|
|
, m_split(move(split_by))
|
2020-06-29 04:52:58 +03:00
|
|
|
, m_keep_empty(keep_empty)
|
2020-06-17 16:35:06 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
String m_string;
|
|
|
|
String m_split;
|
2020-06-29 04:52:58 +03:00
|
|
|
bool m_keep_empty { false };
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class GlobValue final : public Value {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~GlobValue();
|
|
|
|
virtual bool is_glob() const override { return true; }
|
|
|
|
GlobValue(String glob)
|
2020-08-07 10:19:59 +03:00
|
|
|
: m_glob(move(glob))
|
2020-06-17 16:35:06 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
String m_glob;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SimpleVariableValue final : public Value {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) override;
|
2020-08-07 10:36:15 +03:00
|
|
|
virtual NonnullRefPtr<Value> resolve_without_cast(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~SimpleVariableValue();
|
|
|
|
SimpleVariableValue(String name)
|
2020-08-07 10:19:59 +03:00
|
|
|
: m_name(move(name))
|
2020-06-17 16:35:06 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
String m_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SpecialVariableValue final : public Value {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~SpecialVariableValue();
|
|
|
|
SpecialVariableValue(char name)
|
|
|
|
: m_name(name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
char m_name { -1 };
|
|
|
|
};
|
|
|
|
|
|
|
|
class TildeValue final : public Value {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual Vector<String> resolve_as_list(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~TildeValue();
|
|
|
|
virtual bool is_string() const override { return true; }
|
|
|
|
TildeValue(String name)
|
2020-08-07 10:19:59 +03:00
|
|
|
: m_username(move(name))
|
2020-06-17 16:35:06 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
String m_username;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Node : public RefCounted<Node> {
|
|
|
|
public:
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual void dump(int level) const = 0;
|
2020-09-16 03:37:14 +03:00
|
|
|
virtual void for_each_entry(RefPtr<Shell> shell, Function<IterationDecision(NonnullRefPtr<Value>)> callback);
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) = 0;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) = 0;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual Vector<Line::CompletionSuggestion> complete_for_editor(Shell&, size_t, const HitTestResult&);
|
2020-06-17 16:35:06 +03:00
|
|
|
Vector<Line::CompletionSuggestion> complete_for_editor(Shell& shell, size_t offset);
|
|
|
|
virtual HitTestResult hit_test_position(size_t offset)
|
|
|
|
{
|
|
|
|
if (m_position.contains(offset))
|
2020-06-29 04:56:06 +03:00
|
|
|
return { this, nullptr, nullptr };
|
|
|
|
return { nullptr, nullptr, nullptr };
|
2020-06-17 16:35:06 +03:00
|
|
|
}
|
|
|
|
virtual String class_name() const { return "Node"; }
|
|
|
|
Node(Position);
|
|
|
|
virtual ~Node();
|
|
|
|
|
|
|
|
virtual bool is_bareword() const { return false; }
|
|
|
|
virtual bool is_command() const { return false; }
|
|
|
|
virtual bool is_execute() const { return false; }
|
|
|
|
virtual bool is_glob() const { return false; }
|
|
|
|
virtual bool is_tilde() const { return false; }
|
|
|
|
virtual bool is_variable_decls() const { return false; }
|
2020-09-14 12:29:06 +03:00
|
|
|
virtual bool is_simple_variable() const { return false; }
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual bool is_syntax_error() const { return m_is_syntax_error; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
virtual bool is_list() const { return false; }
|
2020-06-24 06:15:24 +03:00
|
|
|
virtual bool would_execute() const { return false; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
const Position& position() const { return m_position; }
|
2020-06-28 17:12:57 +03:00
|
|
|
void set_is_syntax_error(const SyntaxError& error_node)
|
|
|
|
{
|
2020-12-01 12:25:14 +03:00
|
|
|
if (!m_is_syntax_error) {
|
|
|
|
m_is_syntax_error = true;
|
|
|
|
m_syntax_error_node = error_node;
|
|
|
|
}
|
2020-06-28 17:12:57 +03:00
|
|
|
}
|
|
|
|
virtual const SyntaxError& syntax_error_node() const
|
|
|
|
{
|
|
|
|
ASSERT(is_syntax_error());
|
|
|
|
return *m_syntax_error_node;
|
|
|
|
}
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual RefPtr<Node> leftmost_trivial_literal() const { return nullptr; }
|
|
|
|
|
2020-09-07 19:19:53 +03:00
|
|
|
Vector<Command> to_lazy_evaluated_commands(RefPtr<Shell> shell);
|
|
|
|
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor&) { ASSERT_NOT_REACHED(); }
|
|
|
|
virtual void visit(NodeVisitor& visitor) const { const_cast<Node*>(this)->visit(visitor); }
|
|
|
|
|
2020-09-28 13:57:20 +03:00
|
|
|
enum class Kind : u32 {
|
|
|
|
And,
|
|
|
|
ListConcatenate,
|
|
|
|
Background,
|
|
|
|
BarewordLiteral,
|
2020-10-24 17:43:02 +03:00
|
|
|
BraceExpansion,
|
2020-09-28 13:57:20 +03:00
|
|
|
CastToCommand,
|
|
|
|
CastToList,
|
|
|
|
CloseFdRedirection,
|
|
|
|
CommandLiteral,
|
|
|
|
Comment,
|
2020-12-10 17:55:13 +03:00
|
|
|
ContinuationControl,
|
2020-09-28 13:57:20 +03:00
|
|
|
DynamicEvaluate,
|
|
|
|
DoubleQuotedString,
|
|
|
|
Fd2FdRedirection,
|
|
|
|
FunctionDeclaration,
|
|
|
|
ForLoop,
|
|
|
|
Glob,
|
|
|
|
Execute,
|
|
|
|
IfCond,
|
|
|
|
Join,
|
|
|
|
MatchExpr,
|
|
|
|
Or,
|
|
|
|
Pipe,
|
2020-10-24 17:43:02 +03:00
|
|
|
Range,
|
2020-09-28 13:57:20 +03:00
|
|
|
ReadRedirection,
|
|
|
|
ReadWriteRedirection,
|
|
|
|
Sequence,
|
|
|
|
Subshell,
|
|
|
|
SimpleVariable,
|
|
|
|
SpecialVariable,
|
|
|
|
Juxtaposition,
|
|
|
|
StringLiteral,
|
|
|
|
StringPartCompose,
|
|
|
|
SyntaxError,
|
|
|
|
Tilde,
|
|
|
|
VariableDeclarations,
|
|
|
|
WriteAppendRedirection,
|
|
|
|
WriteRedirection,
|
|
|
|
__Count,
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual Kind kind() const = 0;
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
protected:
|
|
|
|
Position m_position;
|
2020-06-23 17:40:41 +03:00
|
|
|
bool m_is_syntax_error { false };
|
2020-06-28 17:12:57 +03:00
|
|
|
RefPtr<const SyntaxError> m_syntax_error_node;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
2020-09-28 13:57:20 +03:00
|
|
|
#define NODE(name) \
|
|
|
|
virtual String class_name() const override { return #name; } \
|
|
|
|
virtual Kind kind() const override { return Kind::name; }
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
class PathRedirectionNode : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
PathRedirectionNode(Position, int, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~PathRedirectionNode();
|
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual Vector<Line::CompletionSuggestion> complete_for_editor(Shell&, size_t, const HitTestResult&) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual HitTestResult hit_test_position(size_t offset) override;
|
|
|
|
virtual bool is_command() const override { return true; }
|
|
|
|
virtual bool is_list() const override { return true; }
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& path() const { return m_path; }
|
|
|
|
int fd() const { return m_fd; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_fd { -1 };
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_path;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class And final : public Node {
|
|
|
|
public:
|
2020-09-28 13:57:20 +03:00
|
|
|
And(Position, NonnullRefPtr<Node>, NonnullRefPtr<Node>, Position and_position);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~And();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& left() const { return m_left; }
|
|
|
|
const NonnullRefPtr<Node>& right() const { return m_right; }
|
2020-09-28 13:57:20 +03:00
|
|
|
const Position& and_position() const { return m_and_position; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(And);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_left;
|
|
|
|
NonnullRefPtr<Node> m_right;
|
2020-09-28 13:57:20 +03:00
|
|
|
Position m_and_position;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class ListConcatenate final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
ListConcatenate(Position, Vector<NonnullRefPtr<Node>>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~ListConcatenate();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
const Vector<NonnullRefPtr<Node>> list() const { return m_list; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(ListConcatenate);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
virtual bool is_list() const override { return true; }
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual RefPtr<Node> leftmost_trivial_literal() const override;
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
Vector<NonnullRefPtr<Node>> m_list;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class Background final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
Background(Position, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~Background();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& command() const { return m_command; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Background);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_command;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class BarewordLiteral final : public Node {
|
|
|
|
public:
|
|
|
|
BarewordLiteral(Position, String);
|
|
|
|
virtual ~BarewordLiteral();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
const String& text() const { return m_text; }
|
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(BarewordLiteral);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual bool is_bareword() const override { return true; }
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual RefPtr<Node> leftmost_trivial_literal() const override { return this; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
String m_text;
|
|
|
|
};
|
|
|
|
|
2020-10-24 17:43:02 +03:00
|
|
|
class BraceExpansion final : public Node {
|
|
|
|
public:
|
|
|
|
BraceExpansion(Position, NonnullRefPtrVector<Node>);
|
|
|
|
virtual ~BraceExpansion();
|
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtrVector<Node>& entries() const { return m_entries; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
NODE(BraceExpansion);
|
|
|
|
virtual void dump(int level) const override;
|
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
|
|
|
|
NonnullRefPtrVector<Node> m_entries;
|
|
|
|
};
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
class CastToCommand final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
CastToCommand(Position, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~CastToCommand();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& inner() const { return m_inner; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(CastToCommand);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual Vector<Line::CompletionSuggestion> complete_for_editor(Shell&, size_t, const HitTestResult&) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual bool is_command() const override { return true; }
|
|
|
|
virtual bool is_list() const override { return true; }
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual RefPtr<Node> leftmost_trivial_literal() const override;
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_inner;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class CastToList final : public Node {
|
|
|
|
public:
|
|
|
|
CastToList(Position, RefPtr<Node>);
|
|
|
|
virtual ~CastToList();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const RefPtr<Node>& inner() const { return m_inner; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(CastToList);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
virtual bool is_list() const override { return true; }
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual RefPtr<Node> leftmost_trivial_literal() const override;
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
RefPtr<Node> m_inner;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CloseFdRedirection final : public Node {
|
|
|
|
public:
|
|
|
|
CloseFdRedirection(Position, int);
|
|
|
|
virtual ~CloseFdRedirection();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
int fd() const { return m_fd; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(CloseFdRedirection);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual bool is_command() const override { return true; }
|
|
|
|
|
|
|
|
int m_fd { -1 };
|
|
|
|
};
|
|
|
|
|
|
|
|
class CommandLiteral final : public Node {
|
|
|
|
public:
|
|
|
|
CommandLiteral(Position, Command);
|
|
|
|
virtual ~CommandLiteral();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const Command& command() const { return m_command; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(CommandLiteral);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override { ASSERT_NOT_REACHED(); }
|
|
|
|
virtual bool is_command() const override { return true; }
|
|
|
|
virtual bool is_list() const override { return true; }
|
|
|
|
|
|
|
|
Command m_command;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Comment : public Node {
|
|
|
|
public:
|
|
|
|
Comment(Position, String);
|
|
|
|
virtual ~Comment();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
const String& text() const { return m_text; }
|
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Comment);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
|
|
|
|
String m_text;
|
|
|
|
};
|
|
|
|
|
2020-12-10 17:55:13 +03:00
|
|
|
class ContinuationControl final : public Node {
|
|
|
|
public:
|
|
|
|
enum ContinuationKind {
|
|
|
|
Break,
|
|
|
|
Continue,
|
|
|
|
};
|
|
|
|
ContinuationControl(Position position, ContinuationKind kind)
|
|
|
|
: Node(move(position))
|
|
|
|
, m_kind(kind)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
virtual ~ContinuationControl() { }
|
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
ContinuationKind continuation_kind() const { return m_kind; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
NODE(ContinuationControl);
|
|
|
|
|
|
|
|
virtual void dump(int level) const override;
|
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
|
|
|
|
ContinuationKind m_kind { ContinuationKind::Break };
|
|
|
|
};
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
class DynamicEvaluate final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
DynamicEvaluate(Position, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~DynamicEvaluate();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& inner() const { return m_inner; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(DynamicEvaluate);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
|
|
|
|
virtual bool is_bareword() const override { return m_inner->is_bareword(); }
|
|
|
|
virtual bool is_command() const override { return is_list(); }
|
|
|
|
virtual bool is_execute() const override { return true; }
|
|
|
|
virtual bool is_glob() const override { return m_inner->is_glob(); }
|
|
|
|
virtual bool is_list() const override
|
|
|
|
{
|
|
|
|
return m_inner->is_list() || m_inner->is_command() || m_inner->is_glob(); // Anything that generates a list.
|
|
|
|
}
|
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_inner;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class DoubleQuotedString final : public Node {
|
|
|
|
public:
|
|
|
|
DoubleQuotedString(Position, RefPtr<Node>);
|
|
|
|
virtual ~DoubleQuotedString();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const RefPtr<Node>& inner() const { return m_inner; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(DoubleQuotedString);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
|
|
|
|
RefPtr<Node> m_inner;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Fd2FdRedirection final : public Node {
|
|
|
|
public:
|
|
|
|
Fd2FdRedirection(Position, int, int);
|
|
|
|
virtual ~Fd2FdRedirection();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
2020-10-27 21:08:37 +03:00
|
|
|
int source_fd() const { return m_old_fd; }
|
|
|
|
int dest_fd() const { return m_new_fd; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Fd2FdRedirection);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual bool is_command() const override { return true; }
|
|
|
|
|
2020-10-27 21:08:37 +03:00
|
|
|
int m_old_fd { -1 };
|
|
|
|
int m_new_fd { -1 };
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
2020-09-13 14:24:33 +03:00
|
|
|
class FunctionDeclaration final : public Node {
|
|
|
|
public:
|
|
|
|
struct NameWithPosition {
|
|
|
|
String name;
|
|
|
|
Position position;
|
|
|
|
};
|
|
|
|
FunctionDeclaration(Position, NameWithPosition name, Vector<NameWithPosition> argument_names, RefPtr<AST::Node> body);
|
|
|
|
virtual ~FunctionDeclaration();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NameWithPosition& name() const { return m_name; }
|
|
|
|
const Vector<NameWithPosition> arguments() const { return m_arguments; }
|
|
|
|
const RefPtr<Node>& block() const { return m_block; }
|
2020-09-13 14:24:33 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(FunctionDeclaration);
|
2020-09-13 14:24:33 +03:00
|
|
|
virtual void dump(int level) const override;
|
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
2020-09-14 12:29:06 +03:00
|
|
|
virtual Vector<Line::CompletionSuggestion> complete_for_editor(Shell&, size_t, const HitTestResult&) override;
|
2020-09-13 14:24:33 +03:00
|
|
|
virtual bool would_execute() const override { return true; }
|
|
|
|
|
|
|
|
NameWithPosition m_name;
|
|
|
|
Vector<NameWithPosition> m_arguments;
|
|
|
|
RefPtr<AST::Node> m_block;
|
|
|
|
};
|
|
|
|
|
2020-07-12 00:12:46 +03:00
|
|
|
class ForLoop final : public Node {
|
|
|
|
public:
|
2020-12-10 17:55:13 +03:00
|
|
|
ForLoop(Position, String variable_name, RefPtr<AST::Node> iterated_expr, RefPtr<AST::Node> block, Optional<Position> in_kw_position = {});
|
2020-07-12 00:12:46 +03:00
|
|
|
virtual ~ForLoop();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const String& variable_name() const { return m_variable_name; }
|
2020-12-10 17:55:13 +03:00
|
|
|
const RefPtr<Node>& iterated_expression() const { return m_iterated_expression; }
|
2020-09-16 03:43:04 +03:00
|
|
|
const RefPtr<Node>& block() const { return m_block; }
|
2020-09-28 13:57:20 +03:00
|
|
|
const Optional<Position> in_keyword_position() const { return m_in_kw_position; }
|
2020-07-12 00:12:46 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(ForLoop);
|
2020-07-12 00:12:46 +03:00
|
|
|
virtual void dump(int level) const override;
|
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
2020-07-16 23:41:23 +03:00
|
|
|
virtual bool would_execute() const override { return true; }
|
2020-07-12 00:12:46 +03:00
|
|
|
|
|
|
|
String m_variable_name;
|
2020-12-10 17:55:13 +03:00
|
|
|
RefPtr<AST::Node> m_iterated_expression;
|
2020-07-12 00:12:46 +03:00
|
|
|
RefPtr<AST::Node> m_block;
|
2020-09-28 13:57:20 +03:00
|
|
|
Optional<Position> m_in_kw_position;
|
2020-07-12 00:12:46 +03:00
|
|
|
};
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
class Glob final : public Node {
|
|
|
|
public:
|
|
|
|
Glob(Position, String);
|
|
|
|
virtual ~Glob();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
const String& text() const { return m_text; }
|
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Glob);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual bool is_glob() const override { return true; }
|
|
|
|
virtual bool is_list() const override { return true; }
|
|
|
|
|
|
|
|
String m_text;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Execute final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
Execute(Position, NonnullRefPtr<Node>, bool capture_stdout = false);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~Execute();
|
|
|
|
void capture_stdout() { m_capture_stdout = true; }
|
2020-09-16 03:43:04 +03:00
|
|
|
NonnullRefPtr<Node>& command() { return m_command; }
|
2020-09-16 03:37:14 +03:00
|
|
|
virtual void for_each_entry(RefPtr<Shell> shell, Function<IterationDecision(NonnullRefPtr<Value>)> callback) override;
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& command() const { return m_command; }
|
|
|
|
bool does_capture_stdout() const { return m_capture_stdout; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Execute);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual Vector<Line::CompletionSuggestion> complete_for_editor(Shell&, size_t, const HitTestResult&) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual bool is_execute() const override { return true; }
|
2020-06-24 06:15:24 +03:00
|
|
|
virtual bool would_execute() const override { return true; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_command;
|
2020-06-17 16:35:06 +03:00
|
|
|
bool m_capture_stdout { false };
|
|
|
|
};
|
|
|
|
|
2020-08-11 10:35:46 +03:00
|
|
|
class IfCond final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
IfCond(Position, Optional<Position> else_position, NonnullRefPtr<AST::Node> cond_expr, RefPtr<AST::Node> true_branch, RefPtr<AST::Node> false_branch);
|
2020-08-11 10:35:46 +03:00
|
|
|
virtual ~IfCond();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& condition() const { return m_condition; }
|
|
|
|
const RefPtr<Node>& true_branch() const { return m_true_branch; }
|
|
|
|
const RefPtr<Node>& false_branch() const { return m_false_branch; }
|
|
|
|
const Optional<Position> else_position() const { return m_else_position; }
|
2020-08-11 10:35:46 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(IfCond);
|
2020-08-11 10:35:46 +03:00
|
|
|
virtual void dump(int level) const override;
|
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
virtual bool would_execute() const override { return true; }
|
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<AST::Node> m_condition;
|
2020-08-11 10:35:46 +03:00
|
|
|
RefPtr<AST::Node> m_true_branch;
|
|
|
|
RefPtr<AST::Node> m_false_branch;
|
|
|
|
|
|
|
|
Optional<Position> m_else_position;
|
|
|
|
};
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
class Join final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
Join(Position, NonnullRefPtr<Node>, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~Join();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& left() const { return m_left; }
|
|
|
|
const NonnullRefPtr<Node>& right() const { return m_right; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Join);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
virtual bool is_command() const override { return true; }
|
|
|
|
virtual bool is_list() const override { return true; }
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual RefPtr<Node> leftmost_trivial_literal() const override;
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_left;
|
|
|
|
NonnullRefPtr<Node> m_right;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
2020-09-14 18:02:21 +03:00
|
|
|
struct MatchEntry {
|
|
|
|
NonnullRefPtrVector<Node> options;
|
2020-10-25 10:12:03 +03:00
|
|
|
Optional<Vector<String>> match_names;
|
|
|
|
Optional<Position> match_as_position;
|
2020-09-14 18:02:21 +03:00
|
|
|
Vector<Position> pipe_positions;
|
|
|
|
RefPtr<Node> body;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MatchExpr final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
MatchExpr(Position, NonnullRefPtr<Node> expr, String name, Optional<Position> as_position, Vector<MatchEntry> entries);
|
2020-09-14 18:02:21 +03:00
|
|
|
virtual ~MatchExpr();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& matched_expr() const { return m_matched_expr; }
|
|
|
|
const String& expr_name() const { return m_expr_name; }
|
|
|
|
const Vector<MatchEntry>& entries() const { return m_entries; }
|
2020-09-28 13:57:20 +03:00
|
|
|
const Optional<Position>& as_position() const { return m_as_position; }
|
2020-09-14 18:02:21 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(MatchExpr);
|
2020-09-14 18:02:21 +03:00
|
|
|
virtual void dump(int level) const override;
|
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
virtual bool would_execute() const override { return true; }
|
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_matched_expr;
|
2020-09-14 18:02:21 +03:00
|
|
|
String m_expr_name;
|
|
|
|
Optional<Position> m_as_position;
|
|
|
|
Vector<MatchEntry> m_entries;
|
|
|
|
};
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
class Or final : public Node {
|
|
|
|
public:
|
2020-09-28 13:57:20 +03:00
|
|
|
Or(Position, NonnullRefPtr<Node>, NonnullRefPtr<Node>, Position or_position);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~Or();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& left() const { return m_left; }
|
|
|
|
const NonnullRefPtr<Node>& right() const { return m_right; }
|
2020-09-28 13:57:20 +03:00
|
|
|
const Position& or_position() const { return m_or_position; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Or);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_left;
|
|
|
|
NonnullRefPtr<Node> m_right;
|
2020-09-28 13:57:20 +03:00
|
|
|
Position m_or_position;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class Pipe final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
Pipe(Position, NonnullRefPtr<Node>, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~Pipe();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& left() const { return m_left; }
|
|
|
|
const NonnullRefPtr<Node>& right() const { return m_right; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Pipe);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual bool is_command() const override { return true; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_left;
|
|
|
|
NonnullRefPtr<Node> m_right;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
2020-10-24 17:43:02 +03:00
|
|
|
class Range final : public Node {
|
|
|
|
public:
|
|
|
|
Range(Position, NonnullRefPtr<Node>, NonnullRefPtr<Node>);
|
|
|
|
virtual ~Range();
|
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& start() const { return m_start; }
|
|
|
|
const NonnullRefPtr<Node>& end() const { return m_end; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
NODE(Range);
|
|
|
|
virtual void dump(int level) const override;
|
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
|
|
|
|
NonnullRefPtr<Node> m_start;
|
|
|
|
NonnullRefPtr<Node> m_end;
|
|
|
|
};
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
class ReadRedirection final : public PathRedirectionNode {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
ReadRedirection(Position, int, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~ReadRedirection();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(ReadRedirection);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class ReadWriteRedirection final : public PathRedirectionNode {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
ReadWriteRedirection(Position, int, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~ReadWriteRedirection();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(ReadWriteRedirection);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class Sequence final : public Node {
|
|
|
|
public:
|
2020-09-28 13:57:20 +03:00
|
|
|
Sequence(Position, NonnullRefPtr<Node>, NonnullRefPtr<Node>, Position separator_position);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~Sequence();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& left() const { return m_left; }
|
|
|
|
const NonnullRefPtr<Node>& right() const { return m_right; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-09-28 13:57:20 +03:00
|
|
|
const Position& separator_position() const { return m_separator_position; }
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Sequence);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
virtual bool is_list() const override { return true; }
|
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_left;
|
|
|
|
NonnullRefPtr<Node> m_right;
|
2020-09-28 13:57:20 +03:00
|
|
|
Position m_separator_position;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
2020-09-08 14:29:07 +03:00
|
|
|
class Subshell final : public Node {
|
|
|
|
public:
|
|
|
|
Subshell(Position, RefPtr<Node> block);
|
|
|
|
virtual ~Subshell();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const RefPtr<Node>& block() const { return m_block; }
|
2020-09-08 14:29:07 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Subshell);
|
2020-09-08 14:29:07 +03:00
|
|
|
virtual void dump(int level) const override;
|
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
2020-12-14 22:39:17 +03:00
|
|
|
virtual bool would_execute() const override { return false; }
|
2020-09-08 14:29:07 +03:00
|
|
|
|
|
|
|
RefPtr<AST::Node> m_block;
|
|
|
|
};
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
class SimpleVariable final : public Node {
|
|
|
|
public:
|
|
|
|
SimpleVariable(Position, String);
|
|
|
|
virtual ~SimpleVariable();
|
|
|
|
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
2020-09-14 12:29:06 +03:00
|
|
|
const String& name() const { return m_name; }
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(SimpleVariable);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual Vector<Line::CompletionSuggestion> complete_for_editor(Shell&, size_t, const HitTestResult&) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
2020-09-14 12:29:06 +03:00
|
|
|
virtual bool is_simple_variable() const override { return true; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
String m_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SpecialVariable final : public Node {
|
|
|
|
public:
|
|
|
|
SpecialVariable(Position, char);
|
|
|
|
virtual ~SpecialVariable();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
char name() const { return m_name; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(SpecialVariable);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual Vector<Line::CompletionSuggestion> complete_for_editor(Shell&, size_t, const HitTestResult&) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
|
|
|
|
char m_name { -1 };
|
|
|
|
};
|
|
|
|
|
2020-06-20 16:30:45 +03:00
|
|
|
class Juxtaposition final : public Node {
|
2020-06-17 16:35:06 +03:00
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
Juxtaposition(Position, NonnullRefPtr<Node>, NonnullRefPtr<Node>);
|
2020-06-20 16:30:45 +03:00
|
|
|
virtual ~Juxtaposition();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& left() const { return m_left; }
|
|
|
|
const NonnullRefPtr<Node>& right() const { return m_right; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Juxtaposition);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual Vector<Line::CompletionSuggestion> complete_for_editor(Shell&, size_t, const HitTestResult&) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_left;
|
|
|
|
NonnullRefPtr<Node> m_right;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class StringLiteral final : public Node {
|
|
|
|
public:
|
|
|
|
StringLiteral(Position, String);
|
|
|
|
virtual ~StringLiteral();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
const String& text() const { return m_text; }
|
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(StringLiteral);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual RefPtr<Node> leftmost_trivial_literal() const override { return this; };
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
String m_text;
|
|
|
|
};
|
|
|
|
|
|
|
|
class StringPartCompose final : public Node {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
StringPartCompose(Position, NonnullRefPtr<Node>, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~StringPartCompose();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
|
|
|
const NonnullRefPtr<Node>& left() const { return m_left; }
|
|
|
|
const NonnullRefPtr<Node>& right() const { return m_right; }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(StringPartCompose);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
|
2020-09-16 03:37:14 +03:00
|
|
|
NonnullRefPtr<Node> m_left;
|
|
|
|
NonnullRefPtr<Node> m_right;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class SyntaxError final : public Node {
|
|
|
|
public:
|
2020-12-01 12:25:14 +03:00
|
|
|
SyntaxError(Position, String, bool is_continuable = false);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~SyntaxError();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
2020-06-28 17:12:57 +03:00
|
|
|
const String& error_text() const { return m_syntax_error_text; }
|
2020-12-01 12:25:14 +03:00
|
|
|
bool is_continuable() const { return m_is_continuable; }
|
2020-06-28 17:12:57 +03:00
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(SyntaxError);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual HitTestResult hit_test_position(size_t) override { return { nullptr, nullptr, nullptr }; }
|
2020-06-22 14:07:20 +03:00
|
|
|
virtual bool is_syntax_error() const override { return true; }
|
2020-06-28 17:12:57 +03:00
|
|
|
virtual const SyntaxError& syntax_error_node() const override;
|
|
|
|
|
|
|
|
String m_syntax_error_text;
|
2020-12-01 12:25:14 +03:00
|
|
|
bool m_is_continuable { false };
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class Tilde final : public Node {
|
|
|
|
public:
|
|
|
|
Tilde(Position, String);
|
|
|
|
virtual ~Tilde();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
|
|
|
|
2020-06-17 16:35:06 +03:00
|
|
|
String text() const;
|
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(Tilde);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
2020-06-29 04:56:06 +03:00
|
|
|
virtual Vector<Line::CompletionSuggestion> complete_for_editor(Shell&, size_t, const HitTestResult&) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
virtual bool is_tilde() const override { return true; }
|
|
|
|
|
|
|
|
String m_username;
|
|
|
|
};
|
|
|
|
|
|
|
|
class VariableDeclarations final : public Node {
|
|
|
|
public:
|
|
|
|
struct Variable {
|
2020-08-07 10:41:04 +03:00
|
|
|
NonnullRefPtr<Node> name;
|
|
|
|
NonnullRefPtr<Node> value;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
VariableDeclarations(Position, Vector<Variable> variables);
|
|
|
|
virtual ~VariableDeclarations();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
const Vector<Variable>& variables() const { return m_variables; }
|
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(VariableDeclarations);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
|
|
|
|
virtual HitTestResult hit_test_position(size_t) override;
|
|
|
|
virtual bool is_variable_decls() const override { return true; }
|
|
|
|
|
|
|
|
Vector<Variable> m_variables;
|
|
|
|
};
|
|
|
|
|
|
|
|
class WriteAppendRedirection final : public PathRedirectionNode {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
WriteAppendRedirection(Position, int, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~WriteAppendRedirection();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(WriteAppendRedirection);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class WriteRedirection final : public PathRedirectionNode {
|
|
|
|
public:
|
2020-09-16 03:37:14 +03:00
|
|
|
WriteRedirection(Position, int, NonnullRefPtr<Node>);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual ~WriteRedirection();
|
2020-09-16 03:43:04 +03:00
|
|
|
virtual void visit(NodeVisitor& visitor) override { visitor.visit(this); }
|
2020-06-17 16:35:06 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-28 13:57:20 +03:00
|
|
|
NODE(WriteRedirection);
|
2020-06-17 16:35:06 +03:00
|
|
|
virtual void dump(int level) const override;
|
2020-06-23 17:40:41 +03:00
|
|
|
virtual RefPtr<Value> run(RefPtr<Shell>) override;
|
2020-06-17 16:35:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2020-10-26 01:57:19 +03:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct Formatter<Shell::AST::Command> : StandardFormatter {
|
|
|
|
Formatter() { }
|
|
|
|
explicit Formatter(StandardFormatter formatter)
|
|
|
|
: StandardFormatter(formatter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void format(TypeErasedFormatParams&, FormatBuilder&, const Shell::AST::Command& value);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|