Fixed HttpHeader::parse signature, and added ContentDisposition::parse
This commit is contained in:
parent
5e5a4c8c3b
commit
a3d70bbcb5
2 changed files with 67 additions and 4 deletions
|
|
@ -192,4 +192,22 @@ int main() {
|
||||||
assert(range.first->second == "æ%ø&å?");
|
assert(range.first->second == "æ%ø&å?");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
{
|
||||||
|
SimpleWeb::CaseInsensitiveMultimap solution = {{"form-data", ""}};
|
||||||
|
auto parsed = SimpleWeb::ContentDisposition::parse("form-data");
|
||||||
|
assert(parsed == solution);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
SimpleWeb::CaseInsensitiveMultimap solution = {{"form-data", ""}, {"name", "file"}};
|
||||||
|
auto parsed = SimpleWeb::ContentDisposition::parse("form-data; name=\"file\"");
|
||||||
|
assert(parsed == solution);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
SimpleWeb::CaseInsensitiveMultimap solution = {{"form-data", ""}, {"name", "file"}, {"filename", "filename.png"}};
|
||||||
|
auto parsed = SimpleWeb::ContentDisposition::parse("form-data; name=\"file\"; filename=\"filename.png\"");
|
||||||
|
assert(parsed == solution);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
53
utility.hpp
53
utility.hpp
|
|
@ -137,7 +137,8 @@ namespace SimpleWeb {
|
||||||
class HttpHeader {
|
class HttpHeader {
|
||||||
public:
|
public:
|
||||||
/// Parse header fields
|
/// Parse header fields
|
||||||
static void parse(std::istream &stream, CaseInsensitiveMultimap &header) noexcept {
|
static CaseInsensitiveMultimap parse(std::istream &stream) noexcept {
|
||||||
|
CaseInsensitiveMultimap result;
|
||||||
std::string line;
|
std::string line;
|
||||||
getline(stream, line);
|
getline(stream, line);
|
||||||
size_t param_end;
|
size_t param_end;
|
||||||
|
|
@ -147,11 +148,12 @@ namespace SimpleWeb {
|
||||||
if(line[value_start] == ' ')
|
if(line[value_start] == ' ')
|
||||||
value_start++;
|
value_start++;
|
||||||
if(value_start < line.size())
|
if(value_start < line.size())
|
||||||
header.emplace(line.substr(0, param_end), line.substr(value_start, line.size() - value_start - 1));
|
result.emplace(line.substr(0, param_end), line.substr(value_start, line.size() - value_start - 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
getline(stream, line);
|
getline(stream, line);
|
||||||
}
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -193,7 +195,7 @@ namespace SimpleWeb {
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
HttpHeader::parse(stream, header);
|
header = HttpHeader::parse(stream);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -222,13 +224,56 @@ namespace SimpleWeb {
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
HttpHeader::parse(stream, header);
|
header = HttpHeader::parse(stream);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class ContentDisposition {
|
||||||
|
public:
|
||||||
|
/// Can be used to parse the Content-Disposition header field value when
|
||||||
|
/// clients are posting requests with enctype="multipart/form-data"
|
||||||
|
static CaseInsensitiveMultimap parse(const std::string &line) {
|
||||||
|
CaseInsensitiveMultimap result;
|
||||||
|
|
||||||
|
size_t para_start_pos = 0;
|
||||||
|
size_t para_end_pos = std::string::npos;
|
||||||
|
size_t value_start_pos = std::string::npos;
|
||||||
|
for(size_t c = 0; c < line.size(); ++c) {
|
||||||
|
if(para_start_pos != std::string::npos) {
|
||||||
|
if(para_end_pos == std::string::npos) {
|
||||||
|
if(line[c] == ';') {
|
||||||
|
result.emplace(line.substr(para_start_pos, c - para_start_pos), std::string());
|
||||||
|
para_start_pos = std::string::npos;
|
||||||
|
}
|
||||||
|
else if(line[c] == '=')
|
||||||
|
para_end_pos = c;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if(value_start_pos == std::string::npos) {
|
||||||
|
if(line[c] == '"' && c + 1 < line.size())
|
||||||
|
value_start_pos = c + 1;
|
||||||
|
}
|
||||||
|
else if(line[c] == '"') {
|
||||||
|
result.emplace(line.substr(para_start_pos, para_end_pos - para_start_pos), line.substr(value_start_pos, c - value_start_pos));
|
||||||
|
para_start_pos = std::string::npos;
|
||||||
|
para_end_pos = std::string::npos;
|
||||||
|
value_start_pos = std::string::npos;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(line[c] != ' ' && line[c] != ';')
|
||||||
|
para_start_pos = c;
|
||||||
|
}
|
||||||
|
if(para_start_pos != std::string::npos && para_end_pos == std::string::npos)
|
||||||
|
result.emplace(line.substr(para_start_pos), std::string());
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
} // namespace SimpleWeb
|
} // namespace SimpleWeb
|
||||||
|
|
||||||
#ifdef __SSE2__
|
#ifdef __SSE2__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue