Source code formating unification
[framework/web/wrt-commons.git] / modules / core / include / dpl / scoped_gpointer.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        scoped_gpointer.h
18  * @author      Piotr Marcinkiewicz (p.marcinkiew@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of scoped_gpointer
21  */
22
23 #ifndef DPL_SCOPED_GPOINTER_H
24 #define DPL_SCOPED_GPOINTER_H
25
26 #include <cstddef>
27 #include <glib-object.h>
28 #include <dpl/scoped_resource.h>
29 #include <dpl/assert.h>
30
31 namespace DPL {
32 struct ScopedGPointerPolicy
33 {
34     typedef gpointer Type;
35     static Type NullValue()
36     {
37         return NULL;
38     }
39     static void Destroy(Type pointer)
40     {
41         if (pointer != NULL) {
42             g_object_unref(pointer);
43         }
44     }
45 };
46
47 template <typename Class>
48 class ScopedGPointer : public DPL::ScopedResource<ScopedGPointerPolicy>
49 {
50     typedef ScopedGPointerPolicy Policy;
51     typedef DPL::ScopedResource<Policy> BaseType;
52
53   public:
54     explicit ScopedGPointer(typename Policy::Type pointer =
55                                 Policy::NullValue()) :
56         BaseType(pointer)
57     {}
58
59     Class *operator->() const throw()
60     {
61         Assert(this->m_value != Policy::NullValue() &&
62                "Dereference of scoped NULL pointer!");
63         return static_cast<Class *>(this->m_value);
64     }
65
66     Class & operator *() const throw()
67     {
68         Assert(this->m_value != Policy::NullValue() &&
69                "Dereference of scoped NULL pointer!");
70         return *static_cast<Class *>(this->m_value);
71     }
72 };
73 } // namespace DPL
74
75 #endif // DPL_SCOPED_GPOINTER_H