HttpCookie.h 1.69 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3
 *
4
 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
xiongziliang committed
5
 *
xiongziliang committed
6 7 8
 * Use of this source code is governed by MIT license that can be found in the
 * LICENSE file in the root of the source tree. All contributing project authors
 * may be found in the AUTHORS file in the root of the source tree.
xiongziliang committed
9
 */
10 11 12 13 14 15 16

#ifndef ZLMEDIAKIT_HTTPCOOKIE_H
#define ZLMEDIAKIT_HTTPCOOKIE_H

#include <string>
#include <memory>
#include <vector>
17
#include <map>
18 19 20 21
#include <unordered_map>
#include <mutex>
using namespace std;

xiongziliang committed
22
namespace mediakit {
xiongziliang committed
23

24 25 26
/**
 * http客户端cookie对象
 */
27 28 29 30 31 32 33 34 35
class HttpCookie {
public:
    typedef std::shared_ptr<HttpCookie> Ptr;
    friend class HttpCookieStorage;
    HttpCookie(){}
    ~HttpCookie(){}

    void setPath(const string &path);
    void setHost(const string &host);
36
    void setExpires(const string &expires,const string &server_date);
37 38 39 40 41 42 43 44 45 46
    void setKeyVal(const string &key,const string &val);
    operator bool ();

    const string &getKey() const ;
    const string &getVal() const ;
private:
    string _host;
    string _path = "/";
    string _key;
    string _val;
47
    time_t _expire = 0;
48 49 50
};


51 52 53
/**
 * http客户端cookie全局保存器
 */
54 55 56 57 58 59 60 61 62
class HttpCookieStorage{
public:
    ~HttpCookieStorage(){}
    static HttpCookieStorage &Instance();
    void set(const HttpCookie::Ptr &cookie);
    vector<HttpCookie::Ptr> get(const string &host,const string &path);
private:
    HttpCookieStorage(){};
private:
63
    unordered_map<string/*host*/,map<string/*cookie path*/,map<string/*cookie_key*/,HttpCookie::Ptr> > > _all_cookie;
64 65 66
    mutex _mtx_cookie;
};

xiongziliang committed
67

xiongziliang committed
68
} /* namespace mediakit */
xiongziliang committed
69

70
#endif //ZLMEDIAKIT_HTTPCOOKIE_H