qnetworkcookie.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:4k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtNetwork module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QNETWORKCOOKIE_H
  38. #define QNETWORKCOOKIE_H
  39. #include <QtCore/QSharedDataPointer>
  40. #include <QtCore/QList>
  41. #include <QtCore/QMetaType>
  42. #include <QtCore/QObject>
  43. QT_BEGIN_HEADER
  44. QT_BEGIN_NAMESPACE
  45. QT_MODULE(Network)
  46. class QByteArray;
  47. class QDateTime;
  48. class QString;
  49. class QUrl;
  50. class QNetworkCookiePrivate;
  51. class Q_NETWORK_EXPORT QNetworkCookie
  52. {
  53. public:
  54.     enum RawForm {
  55.         NameAndValueOnly,
  56.         Full
  57.     };
  58.     QNetworkCookie(const QByteArray &name = QByteArray(), const QByteArray &value = QByteArray());
  59.     QNetworkCookie(const QNetworkCookie &other);
  60.     ~QNetworkCookie();
  61.     QNetworkCookie &operator=(const QNetworkCookie &other);
  62.     bool operator==(const QNetworkCookie &other) const;
  63.     inline bool operator!=(const QNetworkCookie &other) const
  64.     { return !(*this == other); }
  65.     bool isSecure() const;
  66.     void setSecure(bool enable);
  67.     bool isSessionCookie() const;
  68.     QDateTime expirationDate() const;
  69.     void setExpirationDate(const QDateTime &date);
  70.     QString domain() const;
  71.     void setDomain(const QString &domain);
  72.     QString path() const;
  73.     void setPath(const QString &path);
  74.     QByteArray name() const;
  75.     void setName(const QByteArray &cookieName);
  76.     QByteArray value() const;
  77.     void setValue(const QByteArray &value);
  78.     QByteArray toRawForm(RawForm form = Full) const;
  79.     static QList<QNetworkCookie> parseCookies(const QByteArray &cookieString);
  80. private:
  81.     QSharedDataPointer<QNetworkCookiePrivate> d;
  82.     friend class QNetworkCookiePrivate;
  83. };
  84. Q_DECLARE_TYPEINFO(QNetworkCookie, Q_MOVABLE_TYPE);
  85. class QNetworkCookieJarPrivate;
  86. class Q_NETWORK_EXPORT QNetworkCookieJar: public QObject
  87. {
  88.     Q_OBJECT
  89. public:
  90.     QNetworkCookieJar(QObject *parent = 0);
  91.     virtual ~QNetworkCookieJar();
  92.     virtual QList<QNetworkCookie> cookiesForUrl(const QUrl &url) const;
  93.     virtual bool setCookiesFromUrl(const QList<QNetworkCookie> &cookieList, const QUrl &url);
  94. protected:
  95.     QList<QNetworkCookie> allCookies() const;
  96.     void setAllCookies(const QList<QNetworkCookie> &cookieList);
  97. private:
  98.     Q_DECLARE_PRIVATE(QNetworkCookieJar)
  99.     Q_DISABLE_COPY(QNetworkCookieJar)
  100. };
  101. #ifndef QT_NO_DEBUG_STREAM
  102. class QDebug;
  103. Q_NETWORK_EXPORT QDebug operator<<(QDebug, const QNetworkCookie &);
  104. #endif
  105. QT_END_NAMESPACE
  106. Q_DECLARE_METATYPE(QNetworkCookie)
  107. Q_DECLARE_METATYPE(QList<QNetworkCookie>)
  108. QT_END_HEADER
  109. #endif