ed84130053b3974f3fabe450cab7ede3834ca236
[platform/framework/web/wrt-commons.git] / modules / core / include / dpl / enable_shared_from_this.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        enable_shared_from_this.h
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of shared pointer RAII
21  */
22 #ifndef DPL_ENABLE_SHARED_FROM_THIS_H
23 #define DPL_ENABLE_SHARED_FROM_THIS_H
24
25 #include <dpl/shared_ptr.h>
26 #include <dpl/noncopyable.h>
27 #include <dpl/assert.h>
28
29 namespace DPL
30 {
31 template<typename Class>
32 class EnableSharedFromThis : private Noncopyable
33 {
34
35 private:
36     // A weak pointer to shared counter
37     SharedCounter *m_counter;
38     Class *m_ptr;
39
40 public:
41     DPL::SharedPtr<Class> SharedFromThis()
42     {
43         Assert(m_counter != NULL && "Pointer is not shared!");
44         return SharedPtr<Class>(m_counter, m_ptr);
45     }
46
47     DPL::SharedPtr<const Class> SharedFromThis() const
48     {
49         Assert(m_counter != NULL && "Pointer is not shared!");
50         return SharedPtr<Class>(m_counter, m_ptr);
51     }
52
53     // For internal SharedPtr usage only. Do not call directly.
54     void _Internal_AcceptSharedPtr(SharedCounter *counter, Class *ptr)
55     {
56         m_counter = counter;
57         m_ptr = ptr;
58     }
59
60     EnableSharedFromThis()
61         : m_counter(NULL),
62           m_ptr(NULL)
63     {
64     }
65
66     virtual ~EnableSharedFromThis()
67     {
68     }
69 };
70 } // namespace DPL
71
72 #endif // DPL_ENABLE_SHARED_FROM_THIS_H