ladybird/Userland/Libraries/LibGemini/Document.h
Shannon Booth e800605ad3 AK+LibURL: Move AK::URL into a new URL library
This URL library ends up being a relatively fundamental base library of
the system, as LibCore depends on LibURL.

This change has two main benefits:
 * Moving AK back more towards being an agnostic library that can
   be used between the kernel and userspace. URL has never really fit
   that description - and is not used in the kernel.
 * URL _should_ depend on LibUnicode, as it needs punnycode support.
   However, it's not really possible to do this inside of AK as it can't
   depend on any external library. This change brings us a little closer
   to being able to do that, but unfortunately we aren't there quite
   yet, as the code generators depend on LibCore.
2024-03-18 14:06:28 -04:00

129 lines
2.4 KiB
C++

/*
* Copyright (c) 2020-2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/ByteString.h>
#include <AK/Forward.h>
#include <AK/NonnullOwnPtr.h>
#include <LibURL/URL.h>
namespace Gemini {
class Line {
public:
Line(ByteString string)
: m_text(move(string))
{
}
virtual ~Line() = default;
virtual ByteString render_to_html() const = 0;
protected:
ByteString m_text;
};
class Document : public RefCounted<Document> {
public:
ByteString render_to_html() const;
static NonnullRefPtr<Document> parse(StringView source, const URL::URL&);
const URL::URL& url() const { return m_url; }
private:
explicit Document(const URL::URL& url)
: m_url(url)
{
}
void read_lines(StringView);
Vector<NonnullOwnPtr<Line>> m_lines;
URL::URL m_url;
bool m_inside_preformatted_block { false };
bool m_inside_unordered_list { false };
};
class Text : public Line {
public:
Text(ByteString line)
: Line(move(line))
{
}
virtual ~Text() override = default;
virtual ByteString render_to_html() const override;
};
class Link : public Line {
public:
Link(ByteString line, Document const&);
virtual ~Link() override = default;
virtual ByteString render_to_html() const override;
private:
URL::URL m_url;
ByteString m_name;
};
class Preformatted : public Line {
public:
Preformatted(ByteString line)
: Line(move(line))
{
}
virtual ~Preformatted() override = default;
virtual ByteString render_to_html() const override;
};
class UnorderedList : public Line {
public:
UnorderedList(ByteString line)
: Line(move(line))
{
}
virtual ~UnorderedList() override = default;
virtual ByteString render_to_html() const override;
};
class Control : public Line {
public:
enum Kind {
UnorderedListStart,
UnorderedListEnd,
PreformattedStart,
PreformattedEnd,
};
Control(Kind kind)
: Line("")
, m_kind(kind)
{
}
virtual ~Control() override = default;
virtual ByteString render_to_html() const override;
private:
Kind m_kind;
};
class Heading : public Line {
public:
Heading(ByteString line, int level)
: Line(move(line))
, m_level(level)
{
}
virtual ~Heading() override = default;
virtual ByteString render_to_html() const override;
private:
int m_level { 1 };
};
}