NuriaProject Framework  0.1
The NuriaProject Framework
session.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_SESSION_HPP
18 #define NURIA_SESSION_HPP
19 
20 #include "essentials.hpp"
21 
22 #include <QSharedData>
23 #include <QVariant>
24 
25 namespace Nuria {
26 
27 class AbstractSessionManager;
28 class SessionPrivate;
29 class Session;
30 
31 NURIA_CORE_EXPORT bool operator== (const Session &a, const Session &b);
32 NURIA_CORE_EXPORT bool operator!= (const Session &a, const Session &b);
33 
44 class NURIA_CORE_EXPORT Session {
45 public:
47  Session ();
48 
50  Session (const Session& other);
51 
53  Session &operator= (const Session &other);
54 
56  ~Session ();
57 
59  bool isValid () const;
60 
62  QByteArray id () const;
63 
68  AbstractSessionManager *manager () const;
69 
71  bool isDirty () const;
72 
78  void markDirty ();
79 
86  void markClean ();
87 
89  void remove ();
90 
100  int refCount () const;
101 
108  QVariant value (const QString &key) const;
109 
111  bool contains (const QString &key) const;
112 
121  QVariant &operator[] (const QString &key);
122 
124  QVariant operator[] (const QString &key) const;
125 
126 
127 private:
128  friend class AbstractSessionManager;
129  friend bool operator== (const Session &a, const Session &b);
130  friend bool operator!= (const Session &a, const Session &b);
131 
135  Session (const QByteArray &id, AbstractSessionManager *manager);
136 
137  QExplicitlySharedDataPointer< SessionPrivate > d;
138 };
139 
140 } // namespace Nuria
141 
142 Q_DECLARE_METATYPE(Nuria::Session)
143 
144 #endif // NURIA_SESSION_HPP
Definition: abstractsessionmanager.hpp:24
Interface for a session manager.
Definition: abstractsessionmanager.hpp:54
A data storage managed by an AbstractSessionManager.
Definition: session.hpp:44