X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=parse.cpp;h=9c7fd10b2f0c87a4f01e1e6112d683c07ccd3e18;hp=fca90a6d29b3397a42ad58a1babc25377e3eb8cd;hb=edf39a7cec7860905689cbec7dd41d7fb3fc8df7;hpb=c2c9f6441f9ae8091a39aea0340417d5915e1ac9 diff --git a/parse.cpp b/parse.cpp index fca90a6..9c7fd10 100644 --- a/parse.cpp +++ b/parse.cpp @@ -1,11 +1,9 @@ -#include -#include -#include #include -#include -#include +#include #include +#include +#include "log.h" #include "parse.h" using namespace std; @@ -15,8 +13,23 @@ vector split_tokens(const string &line) vector ret; string current_token; + bool in_quote = false; + for (size_t i = 0; i < line.size(); ++i) { - if (isspace(line[i])) { + // Handle all escaped characters. + if (line[i] == '\\' && i < line.size() - 1) { + current_token.push_back(line[++i]); + continue; + } + + // Handle start and end quote. + if (line[i] == '"') { + in_quote = !in_quote; + continue; + } + + // Handle break. + if (isspace(line[i]) && !in_quote) { if (!current_token.empty()) { ret.push_back(current_token); } @@ -58,88 +71,30 @@ vector split_lines(const string &str) return ret; } -vector parse_config(const string &filename) +HTTPHeaderMultimap extract_headers(const vector &lines, const string &log_context) { - vector ret; - - FILE *fp = fopen(filename.c_str(), "r"); - if (fp == NULL) { - perror(filename.c_str()); - exit(1); - } - - char buf[4096]; - while (!feof(fp)) { - if (fgets(buf, sizeof(buf), fp) == NULL) { - break; - } - - // Chop off the string at the first #, \r or \n. - buf[strcspn(buf, "#\r\n")] = 0; - - // Remove all whitespace from the end of the string. - size_t len = strlen(buf); - while (len > 0 && isspace(buf[len - 1])) { - buf[--len] = 0; - } - - // If the line is now all blank, ignore it. - if (len == 0) { + HTTPHeaderMultimap parameters; + for (size_t i = 1; i < lines.size(); ++i) { + size_t split = lines[i].find(":"); + if (split == string::npos) { + log(WARNING, "[%s] Ignoring malformed HTTP response line '%s'", + log_context.c_str(), lines[i].c_str()); continue; } - vector tokens = split_tokens(buf); - assert(!tokens.empty()); - - ConfigLine line; - line.keyword = tokens[0]; - - for (size_t i = 1; i < tokens.size(); ++i) { - // foo=bar is a parameter; anything else is an argument. - size_t equals_pos = tokens[i].find_first_of('='); - if (equals_pos == string::npos) { - line.arguments.push_back(tokens[i]); - } else { - string key = tokens[i].substr(0, equals_pos); - string value = tokens[i].substr(equals_pos + 1, string::npos); - line.parameters.insert(make_pair(key, value)); - } - } + string key(lines[i].begin(), lines[i].begin() + split); - ret.push_back(line); - } + // Skip any spaces after the colon. + do { + ++split; + } while (split < lines[i].size() && (lines[i][split] == ' ' || lines[i][split] == '\t')); - fclose(fp); - return ret; -} + string value(lines[i].begin() + split, lines[i].end()); -int fetch_config_int(const vector &config, const string &keyword, int min_limit, int max_limit) -{ - bool value_found = false; - int value = -1; - for (unsigned i = 0; i < config.size(); ++i) { - if (config[i].keyword != keyword) { - continue; - } - if (config[i].parameters.size() > 0 || - config[i].arguments.size() != 1) { - fprintf(stderr, "ERROR: '%s' takes one argument and no parameters\n", keyword.c_str()); - exit(1); - } - value_found = true; - value = atoi(config[i].arguments[0].c_str()); // TODO: verify int validity. + parameters.insert(make_pair(key, value)); } - if (!value_found) { - fprintf(stderr, "ERROR: Missing '%s' statement in config file.\n", - keyword.c_str()); - exit(1); - } - if (value < min_limit || value > max_limit) { - fprintf(stderr, "ERROR: '%s' is set to %d, must be in [%d,%d]\n", - keyword.c_str(), value, min_limit, max_limit); - exit(1); - } - return value; + + return parameters; } #define MAX_REQUEST_SIZE 16384 /* 16 kB. */ @@ -160,7 +115,7 @@ RequestParseStatus wait_for_double_newline(string *existing_data, const char *ne const char *ptr = reinterpret_cast( memmem(existing_data->data() + start_at, existing_data->size() - start_at, "\r\n\r\n", 4)); - if (ptr == NULL) { + if (ptr == nullptr) { return RP_NOT_FINISHED_YET; } if (ptr != existing_data->data() + existing_data->size() - 4) {