当前位置: 首页>>代码示例>>C++>>正文


C++ Cookie::setValue方法代码示例

本文整理汇总了C++中Cookie::setValue方法的典型用法代码示例。如果您正苦于以下问题:C++ Cookie::setValue方法的具体用法?C++ Cookie::setValue怎么用?C++ Cookie::setValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Cookie的用法示例。


在下文中一共展示了Cookie::setValue方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: parseOneCookie

// Parse the string without "Set-Cookie" according to Firefox grammar (loosely RFC 2109 compliant)
// see netwerk/cookie/src/nsCookieService.cpp comment for it
Cookie* CookieParser::parseOneCookie(const String& cookie, unsigned start, unsigned end, double curTime)
{
    Cookie* res = new Cookie(curTime);

    if (!res) {
        LOG_ERROR("Out of memory");
        return 0;
    }

    // Parse [NAME "="] VALUE

    unsigned tokenEnd = start; // Token end contains the position of the '=' or the end of a token
    unsigned pairEnd = start; // Pair end contains always the position of the ';'

    // find the *first* ';' and the '=' (if they exist)
    // FIXME : should handle quoted string
    while (pairEnd < end && cookie[pairEnd] != ';') {
        if (tokenEnd == start && cookie[pairEnd] == '=')
            tokenEnd = pairEnd;
        pairEnd++;
    }

    unsigned tokenStart = start;

    if (tokenEnd != start) {
        // There is a '=' so parse the NAME
        unsigned nameEnd = tokenEnd;

        // Remove lightweight spaces.
        while (nameEnd && isLightweightSpace(cookie[nameEnd]))
            nameEnd--;

        while (tokenStart < nameEnd && isLightweightSpace(cookie[tokenStart]))
            tokenStart++;

        if (nameEnd == tokenStart) {
            LOG_ERROR("Empty name. Rejecting the cookie");
            delete res;
            return 0;
        }

        String name = cookie.substring(tokenStart, nameEnd - start);
        res->setName(name);
    }

    // Now parse the VALUE
    tokenStart = tokenEnd + 1;

    // Skip lightweight spaces in our token
    while (tokenStart < pairEnd && isLightweightSpace(cookie[tokenStart]))
        tokenStart++;

    tokenEnd = pairEnd;
    while (tokenEnd > tokenStart && isLightweightSpace(cookie[tokenEnd]))
        tokenEnd--;

    String value;
    if (tokenEnd == tokenStart) {
        // Firefox accepts empty value so we will do the same
        value = String();
    } else
        value = cookie.substring(tokenStart, tokenEnd - tokenStart);

    res->setValue(value);

    while (pairEnd < end) {
        // Switch to the next pair as pairEnd is on the ';' and fast-forward any lightweight spaces.
        pairEnd++;
        while (pairEnd < end && isLightweightSpace(cookie[pairEnd]))
            pairEnd++;

        tokenStart = pairEnd;
        tokenEnd = tokenStart; // initiliasize token end to catch first '='

        while (pairEnd < end && cookie[pairEnd] != ';') {
            if (tokenEnd == tokenStart && cookie[pairEnd] == '=')
                tokenEnd = pairEnd;
            pairEnd++;
        }

        // FIXME : should we skip lightweight spaces here ?

        unsigned length = tokenEnd - tokenStart;
        unsigned tokenStartSvg = tokenStart;

        String parsedValue;
        if (tokenStart != tokenEnd) {
            // There is an equal sign so remove lightweight spaces in VALUE
            tokenStart = tokenEnd + 1;
            while (tokenStart < pairEnd && isLightweightSpace(cookie[tokenStart]))
                tokenStart++;

            tokenEnd = pairEnd;
            while (tokenEnd > tokenStart && isLightweightSpace(cookie[tokenEnd]))
                tokenEnd--;

            parsedValue = cookie.substring(tokenStart, tokenEnd - tokenStart);
        } else {
//.........这里部分代码省略.........
开发者ID:jackiekaon,项目名称:owb-mirror,代码行数:101,代码来源:BCCookieParserCurl.cpp

示例2: clear

void Cookies::clear(Cookie & cookie)
{
    cookie.setValue("deleted");
    cookie.setExpires(QDateTime::fromTime_t(0));
    m_cookies[cookie.getName()] = cookie;
}
开发者ID:scheibel,项目名称:tastefulserver,代码行数:6,代码来源:Cookie.cpp

示例3: addCookieHeader

void CookieJar::addCookieHeader(
    const std::string &domain_in,
    const std::string &path_in,
    const std::string &request)
{
  // printf("addCookieHeader: %s \nFrom: %s\n",request.c_str(), domain_in.c_str());
  std::string path(path_in);
  std::string domain(domain_in);
  bool secure(false);

  string lowCaseRequest(request);
  transform(lowCaseRequest.begin(), lowCaseRequest.end(), lowCaseRequest.begin(), ::tolower);

  ParameterSet paramSet(request);
  ParameterSet lowCaseParamSet(lowCaseRequest);

  if ( lowCaseParamSet.hasParameter(PATH_STR) )
  {
    lowCaseParamSet.parameter(PATH_STR, path);
  }
  else
  {
    // sort out basename
    if (path.length() and path[path.length()-1] != '/')
    {
      path = nds::File::dirname(path.c_str());
    }
  }
  if ( lowCaseParamSet.hasParameter(DOMAIN_STR) )
  {
    lowCaseParamSet.parameter(DOMAIN_STR, domain);
    // reject domains that do not start with a dot
    /*if (domain[0] != '.') {
      printf("Reject cookie for %s\n", domain.c_str());
      return;
    }*/
  }
  if ( lowCaseParamSet.hasParameter(SECURE_STR) )
  {
    secure = true;
  }
  int expires = -1;
  if (lowCaseParamSet.hasParameter(EXPIRES_STR))
  {
    std::string expval;
    const KeyValueMap & keyValueMap(paramSet.keyValueMap());
    for (KeyValueMap::const_iterator it(keyValueMap.begin()); it != keyValueMap.end(); ++it)
    {
      string name = it->first;
      string lowCaseName(name);
      transform(lowCaseName.begin(), lowCaseName.end(), lowCaseName.begin(), ::tolower);
      if (lowCaseName == EXPIRES_STR) {
        expires = DateUtils::parseDate(it->second.c_str());
        break;
      }
    }
  }
  const KeyValueMap & keyValueMap(paramSet.keyValueMap());
  for (KeyValueMap::const_iterator it(keyValueMap.begin()); it != keyValueMap.end(); ++it)
  {
    string name = it->first;
    string lowCaseName(name);
    transform(lowCaseName.begin(), lowCaseName.end(), lowCaseName.begin(), ::tolower);
    if (lowCaseName == PATH_STR or lowCaseName == SECURE_STR
        or lowCaseName == HTTP_ONLY or lowCaseName == EXPIRES_STR
        or lowCaseName == DOMAIN_STR)
    {
      continue;
    }
    Cookie * existingCookie = hasCookieForDomain(domain, name);
    const string &value(it->second);
    if (existingCookie != 0)
    {
      // replace with new value
      existingCookie->setValue(value);
      existingCookie->setExpires(expires);
      existingCookie->setSaved(false);
    }
    else
    {
      Cookie * cookie(new Cookie(name, value, domain, path, expires, secure));
      m_cookies.push_back(cookie);
    }
  }
}
开发者ID:deeice,项目名称:bunjalloo,代码行数:85,代码来源:CookieJar.cpp


注:本文中的Cookie::setValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。