summaryrefslogtreecommitdiffstats
path: root/src/HTTP/HTTPResponseParser.h
blob: 19652ccef8d311ca6757fe707052e3942363b09a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118

// HTTPResponseParser.h

// Declares the cHTTPResponseParser class representing the parser for incoming HTTP responses




#pragma once

#include "HTTPMessage.h"
#include "TransferEncodingParser.h"





class cHTTPResponseParser:
	public cHTTPMessage,
	protected cEnvelopeParser::cCallbacks,
	protected cTransferEncodingParser::cCallbacks
{
	typedef cHTTPMessage Super;

public:
	class cCallbacks
	{
	public:
		// Force a virtual destructor in descendants:
		virtual ~cCallbacks() {}

		/** Called when an error has occured while parsing. */
		virtual void OnError(const AString & a_ErrorDescription) = 0;

		/** Called when the status line is fully parsed. */
		virtual void OnStatusLine(const AString & a_StatusLine) = 0;

		/** Called when a single header line is parsed. */
		virtual void OnHeaderLine(const AString & a_Key, const AString & a_Value) = 0;

		/** Called when all the headers have been parsed. */
		virtual void OnHeadersFinished(void) = 0;

		/** Called for each chunk of the incoming body data. */
		virtual void OnBodyData(const void * a_Data, size_t a_Size) = 0;

		/** Called when the entire body has been reported by OnBodyData(). */
		virtual void OnBodyFinished(void) = 0;
	};

	cHTTPResponseParser(cCallbacks & a_Callbacks);

	/** Parses the incoming data and calls the appropriate callbacks.
	Returns the number of bytes from the end of a_Data that is already not part of this response.
	Returns AString::npos on an error. */
	size_t Parse(const char * a_Data, size_t a_Size);

	/** Called when the server indicates no more data will be sent (HTTP 1.0 socket closed).
	Finishes all parsing and calls apropriate callbacks (error if incomplete response). */
	void Finish(void);

	/** Returns true if the entire response has been already parsed. */
	bool IsFinished(void) const { return m_IsFinished; }


protected:

	/** The callbacks used for reporting. */
	cCallbacks & m_Callbacks;

	/** Set to true if an error has been encountered by the parser. */
	bool m_HasHadError;

	/** True if the parser is still parsing the status or headers. */
	bool m_IsInHeaders;

	/** True if the response has been fully parsed. */
	bool m_IsFinished;

	/** The complete status line of the response. Empty if not parsed yet. */
	AString m_StatusLine;

	/** Buffer for the incoming data until the status line is parsed. */
	AString m_Buffer;

	/** Parser for the envelope data (headers) */
	cEnvelopeParser m_EnvelopeParser;

	/** The specific parser for the transfer encoding used by this response. */
	cTransferEncodingParserPtr m_TransferEncodingParser;


	/** Parses the status line out of the m_Buffer.
	Removes the status line from m_Buffer, if appropriate.
	Returns true if the entire status line has been parsed. */
	bool ParseStatusLine(void);

	/** Parses the message body.
	Processes transfer encoding and calls the callbacks for body data.
	Returns the number of bytes from the end of a_Data that is already not part of this response.
	Returns AString::npos on error. */
	size_t ParseBody(const char * a_Data, size_t a_Size);

	/** Called internally when the headers-parsing has just finished. */
	void HeadersFinished(void);

	// cEnvelopeParser::cCallbacks overrides:
	virtual void OnHeaderLine(const AString & a_Key, const AString & a_Value) override;

	// cTransferEncodingParser::cCallbacks overrides:
	virtual void OnError(const AString & a_ErrorDescription) override;
	virtual void OnBodyData(const void * a_Data, size_t a_Size) override;
	virtual void OnBodyFinished(void) override;
};