More functional virt_db filter. Removed p2_* source
[metaproxy-moved-to-github.git] / src / session.hpp
1 /* $Id: session.hpp,v 1.9 2005-10-25 11:48:30 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 #ifndef SESSION_HPP
8 #define SESSION_HPP
9
10 //#include <stdexcept>
11
12 #include <boost/thread/mutex.hpp>
13
14 namespace yp2 {
15     
16     class Session
17     {
18         //typedef unsigned long type;
19     public:
20         
21         /// create new session with new unique id
22         Session() {
23             boost::mutex::scoped_lock scoped_lock(m_mutex);
24             ++m_global_id;
25             m_id =  m_global_id;
26             m_close = false;
27         };
28         
29         /// copy session including old id
30         Session(const Session &s) : m_id(s.m_id), m_close(s.m_close) {};
31         
32         Session& operator=(const Session &s) { 
33             if (this != &s)
34             {
35                 m_id = s.m_id;
36                 m_close = s.m_close;
37             }
38             return *this;
39         }
40
41         bool operator<(const Session &s) const {
42             return m_id < s.m_id ? true : false;
43         }
44         
45         unsigned long id() const {
46             return m_id;
47         };
48         
49         bool is_closed() const {
50             return m_close;
51         };
52         
53         /// mark session closed, can not be unset
54         void close() {
55             m_close = true;
56         };
57
58         bool operator == (Session &ses) const {
59             return ses.m_id == m_id;
60         }
61     private:
62         
63         unsigned long int m_id;
64         bool m_close;
65         
66         /// static mutex to lock static m_id
67         static boost::mutex m_mutex;
68         
69         /// static m_id to make sure that there is only one id counter
70         static unsigned long int m_global_id;
71         
72     };
73     
74 }
75
76 #endif
77 /*
78  * Local variables:
79  * c-basic-offset: 4
80  * indent-tabs-mode: nil
81  * c-file-style: "stroustrup"
82  * End:
83  * vim: shiftwidth=4 tabstop=8 expandtab
84  */