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.
33 lines
629 B
C++
33 lines
629 B
C++
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <LibCore/CHttpRequest.h>
|
|
#include <LibCore/CNetworkJob.h>
|
|
|
|
class CTCPSocket;
|
|
|
|
class CHttpJob final : public CNetworkJob {
|
|
C_OBJECT(CHttpJob)
|
|
public:
|
|
explicit CHttpJob(const CHttpRequest&);
|
|
virtual ~CHttpJob() override;
|
|
|
|
virtual void start() override;
|
|
|
|
private:
|
|
void on_socket_connected();
|
|
|
|
enum class State {
|
|
InStatus,
|
|
InHeaders,
|
|
InBody,
|
|
Finished,
|
|
};
|
|
|
|
CHttpRequest m_request;
|
|
CTCPSocket* m_socket { nullptr };
|
|
State m_state { State::InStatus };
|
|
int m_code { -1 };
|
|
HashMap<String, String> m_headers;
|
|
};
|