mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
649d2faeab
We had some inconsistencies before: - Sometimes "The", sometimes "the" - Sometimes trailing ".", sometimes no trailing "." I picked the most common one (lowecase "the", trailing ".") and applied it to all copyright headers. By using the exact same string everywhere we can ensure nothing gets missed during a global search (and replace), and that these inconsistencies are not spread any further (as copyright headers are commonly copied to new files).
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Optional.h>
|
|
#include <LibCore/NetworkJob.h>
|
|
#include <LibCore/TCPSocket.h>
|
|
#include <LibGemini/GeminiRequest.h>
|
|
#include <LibGemini/GeminiResponse.h>
|
|
|
|
namespace Gemini {
|
|
|
|
class Job : public Core::NetworkJob {
|
|
public:
|
|
explicit Job(const GeminiRequest&, OutputStream&);
|
|
virtual ~Job() override;
|
|
|
|
virtual void start() override = 0;
|
|
virtual void shutdown() override = 0;
|
|
|
|
GeminiResponse* response() { return static_cast<GeminiResponse*>(Core::NetworkJob::response()); }
|
|
const GeminiResponse* response() const { return static_cast<const GeminiResponse*>(Core::NetworkJob::response()); }
|
|
|
|
protected:
|
|
void finish_up();
|
|
void on_socket_connected();
|
|
void flush_received_buffers();
|
|
virtual void register_on_ready_to_read(Function<void()>) = 0;
|
|
virtual void register_on_ready_to_write(Function<void()>) = 0;
|
|
virtual bool can_read_line() const = 0;
|
|
virtual String read_line(size_t) = 0;
|
|
virtual bool can_read() const = 0;
|
|
virtual ByteBuffer receive(size_t) = 0;
|
|
virtual bool eof() const = 0;
|
|
virtual bool write(ReadonlyBytes) = 0;
|
|
virtual bool is_established() const = 0;
|
|
virtual bool should_fail_on_empty_payload() const { return false; }
|
|
virtual void read_while_data_available(Function<IterationDecision()> read) { read(); };
|
|
|
|
enum class State {
|
|
InStatus,
|
|
InBody,
|
|
Finished,
|
|
};
|
|
|
|
GeminiRequest m_request;
|
|
State m_state { State::InStatus };
|
|
int m_status { -1 };
|
|
String m_meta;
|
|
Vector<ByteBuffer, 2> m_received_buffers;
|
|
size_t m_received_size { 0 };
|
|
bool m_sent_data { false };
|
|
bool m_should_have_payload { false };
|
|
};
|
|
|
|
}
|