forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsession_sid.h
More file actions
66 lines (56 loc) · 1.79 KB
/
Copy pathsession_sid.h
File metadata and controls
66 lines (56 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <[email protected]>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef CPPCMS_SESSION_SID_H
#define CPPCMS_SESSION_SID_H
#include <cppcms/session_api.h>
#include <cppcms/defs.h>
#include <booster/hold_ptr.h>
#include <booster/shared_ptr.h>
#include <cppcms/session_storage.h>
namespace cppcms {
namespace sessions {
namespace impl { class sid_generator; }
///
/// \brief An implementation of session_api that stores the data using session_storage and unique session id.
///
class CPPCMS_API session_sid : public session_api {
public:
///
/// Create a new session_sid with a pointer \a s to session_storage
///
session_sid(booster::shared_ptr<session_storage> s);
///
/// Delete an object and release a session_storage it used.
///
~session_sid();
///
/// See session_api::save
///
virtual void save(session_interface &,std::string const &data,time_t timeout,bool,bool);
///
/// See session_api::load
///
virtual bool load(session_interface &,std::string &data,time_t &timeout);
///
/// See session_api::is_blocking
///
virtual bool is_blocking();
///
/// See session_api::clear
///
virtual void clear(session_interface &);
private:
std::string get_new_sid();
bool valid_sid(std::string const &cookie,std::string &id);
struct _data;
booster::hold_ptr<_data> d;
booster::shared_ptr<session_storage> storage_;
};
} // sessions
} // cppcms
#endif