mirror of
https://github.com/moparisthebest/spdylay
synced 2024-11-05 17:15:05 -05:00
169 lines
4.3 KiB
C
169 lines
4.3 KiB
C
|
/*
|
||
|
* Spdylay - SPDY Library
|
||
|
*
|
||
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||
|
* a copy of this software and associated documentation files (the
|
||
|
* "Software"), to deal in the Software without restriction, including
|
||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||
|
* the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be
|
||
|
* included in all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
*/
|
||
|
#ifndef UTIL_H
|
||
|
#define UTIL_H
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include <algorithm>
|
||
|
|
||
|
namespace spdylay {
|
||
|
|
||
|
namespace util {
|
||
|
|
||
|
extern const std::string DEFAULT_STRIP_CHARSET;
|
||
|
|
||
|
template<typename InputIterator>
|
||
|
std::pair<InputIterator, InputIterator> stripIter
|
||
|
(InputIterator first, InputIterator last,
|
||
|
const std::string& chars = DEFAULT_STRIP_CHARSET)
|
||
|
{
|
||
|
for(; first != last &&
|
||
|
std::find(chars.begin(), chars.end(), *first) != chars.end(); ++first);
|
||
|
if(first == last) {
|
||
|
return std::make_pair(first, last);
|
||
|
}
|
||
|
InputIterator left = last-1;
|
||
|
for(; left != first &&
|
||
|
std::find(chars.begin(), chars.end(), *left) != chars.end(); --left);
|
||
|
return std::make_pair(first, left+1);
|
||
|
}
|
||
|
|
||
|
template<typename InputIterator, typename OutputIterator>
|
||
|
OutputIterator splitIter
|
||
|
(InputIterator first,
|
||
|
InputIterator last,
|
||
|
OutputIterator out,
|
||
|
char delim,
|
||
|
bool doStrip = false,
|
||
|
bool allowEmpty = false)
|
||
|
{
|
||
|
for(InputIterator i = first; i != last;) {
|
||
|
InputIterator j = std::find(i, last, delim);
|
||
|
std::pair<InputIterator, InputIterator> p(i, j);
|
||
|
if(doStrip) {
|
||
|
p = stripIter(i, j);
|
||
|
}
|
||
|
if(allowEmpty || p.first != p.second) {
|
||
|
*out++ = p;
|
||
|
}
|
||
|
i = j;
|
||
|
if(j != last) {
|
||
|
++i;
|
||
|
}
|
||
|
}
|
||
|
if(allowEmpty &&
|
||
|
(first == last || *(last-1) == delim)) {
|
||
|
*out++ = std::make_pair(last, last);
|
||
|
}
|
||
|
return out;
|
||
|
}
|
||
|
|
||
|
template<typename InputIterator, typename OutputIterator>
|
||
|
OutputIterator split
|
||
|
(InputIterator first,
|
||
|
InputIterator last,
|
||
|
OutputIterator out,
|
||
|
char delim,
|
||
|
bool doStrip = false,
|
||
|
bool allowEmpty = false)
|
||
|
{
|
||
|
for(InputIterator i = first; i != last;) {
|
||
|
InputIterator j = std::find(i, last, delim);
|
||
|
std::pair<InputIterator, InputIterator> p(i, j);
|
||
|
if(doStrip) {
|
||
|
p = stripIter(i, j);
|
||
|
}
|
||
|
if(allowEmpty || p.first != p.second) {
|
||
|
*out++ = std::string(p.first, p.second);
|
||
|
}
|
||
|
i = j;
|
||
|
if(j != last) {
|
||
|
++i;
|
||
|
}
|
||
|
}
|
||
|
if(allowEmpty &&
|
||
|
(first == last || *(last-1) == delim)) {
|
||
|
*out++ = std::string(last, last);
|
||
|
}
|
||
|
return out;
|
||
|
}
|
||
|
|
||
|
template<typename InputIterator, typename DelimiterType>
|
||
|
std::string strjoin(InputIterator first, InputIterator last,
|
||
|
const DelimiterType& delim)
|
||
|
{
|
||
|
std::string result;
|
||
|
if(first == last) {
|
||
|
return result;
|
||
|
}
|
||
|
InputIterator beforeLast = last-1;
|
||
|
for(; first != beforeLast; ++first) {
|
||
|
result += *first;
|
||
|
result += delim;
|
||
|
}
|
||
|
result += *beforeLast;
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
template<typename InputIterator>
|
||
|
std::string joinPath(InputIterator first, InputIterator last)
|
||
|
{
|
||
|
std::vector<std::string> elements;
|
||
|
for(;first != last; ++first) {
|
||
|
if(*first == "..") {
|
||
|
if(!elements.empty()) {
|
||
|
elements.pop_back();
|
||
|
}
|
||
|
} else if(*first == ".") {
|
||
|
// do nothing
|
||
|
} else {
|
||
|
elements.push_back(*first);
|
||
|
}
|
||
|
}
|
||
|
return strjoin(elements.begin(), elements.end(), "/");
|
||
|
}
|
||
|
|
||
|
bool isAlpha(const char c);
|
||
|
|
||
|
bool isDigit(const char c);
|
||
|
|
||
|
bool isHexDigit(const char c);
|
||
|
|
||
|
bool inRFC3986UnreservedChars(const char c);
|
||
|
|
||
|
std::string percentEncode(const unsigned char* target, size_t len);
|
||
|
|
||
|
std::string percentEncode(const std::string& target);
|
||
|
|
||
|
std::string percentDecode
|
||
|
(std::string::const_iterator first, std::string::const_iterator last);
|
||
|
|
||
|
} // namespace util
|
||
|
|
||
|
} // namespace spdylay
|
||
|
|
||
|
#endif // UTIL_H
|