Cutelyst  2.13.0
memcachedsessionstore.h
1 /*
2  * Copyright (C) 2017 Matthias Fehring <kontakt@buschmann23.de>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library 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 GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 #ifndef CUTELYSTMEMCACHEDSESSIONSTORE_H
19 #define CUTELYSTMEMCACHEDSESSIONSTORE_H
20 
21 #include <Cutelyst/Plugins/Session/session.h>
22 #include <Cutelyst/cutelyst_global.h>
23 
24 namespace Cutelyst {
25 
26 class Application;
27 class MemcachedSessionStorePrivate;
28 
81 class CUTELYST_PLUGIN_MEMCACHEDSESSIONSTORE_EXPORT MemcachedSessionStore : public SessionStore
82 {
83  Q_OBJECT
84  Q_DECLARE_PRIVATE(MemcachedSessionStore)
85 public:
91  MemcachedSessionStore(Application *app, QObject *parent = nullptr);
92 
97 
98  virtual QVariant getSessionData(Context *c, const QString &sid, const QString &key, const QVariant &defaultValue) final;
99 
100  virtual bool storeSessionData(Context *c, const QString &sid, const QString &key, const QVariant &value) final;
101 
102  virtual bool deleteSessionData(Context *c, const QString &sid, const QString &key) final;
103 
104  virtual bool deleteExpiredSessions(Context *c, quint64 expires) final;
105 
110  void setGroupKey(const QString &groupKey);
111 
112 protected:
113  QScopedPointer<MemcachedSessionStorePrivate> d_ptr;
114 };
115 
116 }
117 
118 #endif // CUTELYSTMEMCACHEDSESSIONSTORE_H
Cutelyst::Application
The Cutelyst Application.
Definition: application.h:55
Cutelyst::MemcachedSessionStore
Memcached based session store.
Definition: memcachedsessionstore.h:81
Cutelyst::Context
The Cutelyst Context.
Definition: context.h:50
Cutelyst::SessionStore
Definition: session.h:29
Cutelyst
The Cutelyst namespace holds all public Cutelyst API.
Definition: Mainpage.dox:7