]> git.sesse.net Git - cubemap/blob - parse.h
Fix UDPInput serialization.
[cubemap] / parse.h
1 #ifndef _PARSE_H
2 #define _PARSE_H
3
4 // Various routines that deal with parsing; both HTTP requests and more generic text.
5
6 #include <vector>
7 #include <string>
8
9 // Split a line on whitespace, e.g. "foo  bar baz" -> {"foo", "bar", "baz"}.
10 std::vector<std::string> split_tokens(const std::string &line);
11
12 // Split a string on \n or \r\n, e.g. "foo\nbar\r\n\nbaz\r\n\r\n" -> {"foo", "bar", "baz"}.
13 std::vector<std::string> split_lines(const std::string &str);
14
15 // Add the new data to an existing string, looking for \r\n\r\n
16 // (typical of HTTP requests and/or responses). Will return one
17 // of the given statuses.
18 //
19 // Note that if you give too much data in new_data_size, you could
20 // get an RP_OUT_OF_SPACE even if you expected RP_EXTRA_DATA.
21 // Be careful about how large reads you give in.
22 enum RequestParseStatus {
23         RP_OUT_OF_SPACE,       // If larger than 16 kB.
24         RP_NOT_FINISHED_YET,   // Did not get \r\n\r\n yet. 
25         RP_EXTRA_DATA,         // Got \r\n\r\n, but there was extra data behind it.
26         RP_FINISHED,           // Ended exactly in \r\n\r\n.
27 };
28 RequestParseStatus wait_for_double_newline(std::string *existing_data, const char *new_data, size_t new_data_size);
29
30 #endif  // !defined(_PARSE_H)