mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
a599317624
This macro goes at the top of every CObject-derived class like so: class SomeClass : public CObject { C_OBJECT(SomeClass) public: ... At the moment, all it does is create an override for the class_name() getter but in the future this will be used to automatically insert member functions into these classes.
39 lines
889 B
C++
39 lines
889 B
C++
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <LibCore/CObject.h>
|
|
|
|
class CNetworkResponse;
|
|
|
|
class CNetworkJob : public CObject {
|
|
C_OBJECT(CNetworkJob)
|
|
public:
|
|
enum class Error {
|
|
None,
|
|
ConnectionFailed,
|
|
TransmissionFailed,
|
|
ProtocolFailed,
|
|
};
|
|
virtual ~CNetworkJob() override;
|
|
|
|
Function<void(bool success)> on_finish;
|
|
|
|
bool has_error() const { return m_error != Error::None; }
|
|
Error error() const { return m_error; }
|
|
CNetworkResponse* response() { return m_response.ptr(); }
|
|
const CNetworkResponse* response() const { return m_response.ptr(); }
|
|
|
|
virtual void start() = 0;
|
|
|
|
protected:
|
|
CNetworkJob();
|
|
void did_finish(NonnullRefPtr<CNetworkResponse>&&);
|
|
void did_fail(Error);
|
|
|
|
private:
|
|
RefPtr<CNetworkResponse> m_response;
|
|
Error m_error { Error::None };
|
|
};
|
|
|
|
const char* to_string(CNetworkJob::Error);
|