Cookie.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /**
  2. * Tencent is pleased to support the open source community by making Tars available.
  3. *
  4. * Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
  5. *
  6. * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  7. * in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * https://opensource.org/licenses/BSD-3-Clause
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed
  12. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  14. * specific language governing permissions and limitations under the License.
  15. */
  16. #ifndef __TARS_COOKIE_H__
  17. #define __TARS_COOKIE_H__
  18. #include "servant/ServantProxy.h"
  19. /**
  20. * cookie操作类
  21. */
  22. class CookieOp
  23. {
  24. public:
  25. /**
  26. * 构造函数
  27. */
  28. CookieOp()
  29. {
  30. }
  31. /**
  32. * 析构函数,清理掉已设置的cookie
  33. */
  34. ~CookieOp()
  35. {
  36. ServantProxyThreadData * td = ServantProxyThreadData::getData();
  37. assert(NULL != td);
  38. if (td)
  39. {
  40. td->_data._cookie.clear();
  41. }
  42. }
  43. /**
  44. * 获取cookie
  45. */
  46. static map<string, string> & getCookie()
  47. {
  48. ServantProxyThreadData * td = ServantProxyThreadData::getData();
  49. assert(NULL != td);
  50. return td->_data._cookie;
  51. }
  52. /**
  53. * 设置cookie
  54. */
  55. void setCookie(const map<string, string> &cookie)
  56. {
  57. ServantProxyThreadData * td = ServantProxyThreadData::getData();
  58. assert(NULL != td);
  59. if(td)
  60. {
  61. td->_data._cookie = cookie;
  62. }
  63. }
  64. };
  65. #endif