#include "util/url-coding.h"
#include <exception>
#include <sstream>
#include <boost/algorithm/string.hpp>
#include <boost/archive/iterators/base64_from_binary.hpp>
#include <boost/archive/iterators/binary_from_base64.hpp>
#include <boost/archive/iterators/transform_width.hpp>
#include <boost/foreach.hpp>
#include "common/logging.h"
#include "common/names.h"
Go to the source code of this file.
|
| impala |
| This file contains type definitions that are used throughout the code base.
|
|
|
static void | impala::UrlEncode (const char *in, int in_len, string *out, bool hive_compat) |
|
void | impala::UrlEncode (const vector< uint8_t > &in, string *out, bool hive_compat) |
|
void | impala::UrlEncode (const string &in, string *out, bool hive_compat) |
|
bool | impala::UrlDecode (const string &in, string *out, bool hive_compat) |
|
static void | impala::Base64Encode (const char *in, int in_len, stringstream *out) |
|
void | impala::Base64Encode (const vector< uint8_t > &in, string *out) |
|
void | impala::Base64Encode (const vector< uint8_t > &in, stringstream *out) |
|
void | impala::Base64Encode (const string &in, string *out) |
|
void | impala::Base64Encode (const string &in, stringstream *out) |
|
bool | impala::Base64Decode (const string &in, string *out) |
|
void | impala::EscapeForHtml (const string &in, stringstream *out) |
|