SBinetCookie.h
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:5k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #ifndef __SBCOOKIE_H_                   /* Allows multiple inclusions */
  23. #define __SBCOOKIE_H_
  24. #include "VXItypes.h"
  25. #include <string.h>
  26. #include <time.h>    // For time( )
  27. #include "SBinetString.hpp"
  28. class SWIutilLogger;
  29. class SBinetURL;
  30. class SBinetCookie
  31. {
  32. public: // CTOR/DTOR
  33.   SBinetCookie(const char* domain,
  34.                const char* path,
  35.                const char* name,
  36.                const char* value,
  37.                const time_t nExpires,
  38.                const bool fSecure ):
  39.     _Name(name), _Value(value), _Domain(domain), _Path(path),
  40.     _nExpires(nExpires), _fSecure(fSecure), _tTimeStamp(0)
  41.   {
  42.     // All values should be text so we can use assignments above.
  43.     // We keep in small char values as this is what is needed most.
  44.     // values are checked for NULL before we are called.
  45.     updateTimeStamp();
  46.   }
  47.   virtual ~SBinetCookie( ) {}
  48.  public:
  49.   void update(const char* value,
  50.               time_t nExpires,
  51.               bool fSecure )
  52.   {
  53.     // All values should be text so we can use strcpy
  54.     // We keep in small char values as this is what is needed most
  55.     // values are checked for NULL before we are called
  56.     _Value = value;
  57.     _nExpires = nExpires;
  58.     _fSecure = fSecure;
  59.     updateTimeStamp();
  60.   }
  61.   bool matchExact(const SBinetCookie *cookie) const;
  62.   bool matchRequest(const char *domain,
  63.                     const char *path,
  64.                     const SWIutilLogger *logger = NULL) const;
  65.   void updateTimeStamp() { _tTimeStamp = time(0); }
  66.   inline const char* getName() const     { return _Name.c_str( ); }
  67.   inline const char* getValue() const    { return _Value.c_str( ); }
  68.   inline const char* getDomain() const   { return _Domain.c_str( ); }
  69.   inline const char* getPath() const    { return _Path.c_str( ); }
  70.   inline time_t getExpires() const { return _nExpires; }
  71.   inline bool getSecure() const { return _fSecure; }
  72.   inline time_t getTimeStamp() const { return _tTimeStamp; }
  73.  public:
  74.   static SBinetCookie *parse(const SBinetURL *url,
  75.                              const char *&cookiespec,
  76.      const SWIutilLogger *logger);
  77.   // Functions are made public so that they are available to
  78.   // proxy matching code.
  79.   static bool matchDomain(const char *cdomain, const char *domain,
  80.                           const SWIutilLogger* logger = NULL);
  81.   static bool matchPath(const char *cpath, const char *path,
  82.                         const SWIutilLogger *logger = NULL);
  83.  private:
  84.   SBinetCookie():_Name(), _Value(), _Domain(), _Path(), _nExpires(0),
  85.  _fSecure(false), _tTimeStamp(0)
  86.   {}
  87.   const char *parseAttributes(const char *attributeSpec,
  88.                               const SWIutilLogger *logger);
  89.   struct AttributeInfo;
  90.   typedef void (*AttributeHandler)(AttributeInfo *info,
  91.                                    const char *value,
  92.                                    SBinetCookie *cookie,
  93.                                    const SWIutilLogger *logger);
  94.   struct AttributeInfo
  95.   {
  96.     const char *name;
  97.     bool hasValue;
  98.     AttributeHandler handler;
  99.   };
  100.   static void domainHandler(AttributeInfo *info,
  101.                             const char *value,
  102.                             SBinetCookie *cookie,
  103.                             const SWIutilLogger *logger);
  104.   static void pathHandler(AttributeInfo *info,
  105.                           const char *value,
  106.                           SBinetCookie *cookie,
  107.                           const SWIutilLogger *logger);
  108.   static void expiresHandler(AttributeInfo *info,
  109.                              const char *value,
  110.                              SBinetCookie *cookie,
  111.                              const SWIutilLogger *logger);
  112.   static void secureHandler(AttributeInfo *info,
  113.                             const char *value,
  114.                             SBinetCookie *cookie,
  115.                             const SWIutilLogger *logger);
  116.   static void maxAgeHandler(AttributeInfo *info,
  117.                             const char *value,
  118.                             SBinetCookie *cookie,
  119.                             const SWIutilLogger *logger);
  120.   static AttributeInfo attributeInfoMap[];
  121.   SBinetNString _Name;
  122.   SBinetNString _Value;
  123.   SBinetNString _Domain;
  124.   SBinetNString _Path;
  125.   time_t _nExpires;
  126.   bool _fSecure;
  127.   time_t _tTimeStamp;
  128. };
  129. #endif // include guard