tizen beta release
[framework/web/wrt-commons.git] / modules / vcore / src / vcore / 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_fclose.h
18  * @author      Piotr Marcinkiewicz (p.marcinkiew@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of scoped fclose RAII
21  */
22 #ifndef WRT_ENGINE_SRC_COMMON_SCOPED_GPOINTER_H
23 #define WRT_ENGINE_SRC_COMMON_SCOPED_GPOINTER_H
24
25 #include <cstddef>
26 #include <glib-object.h>
27
28 #include <dpl/scoped_resource.h>
29 #include <dpl/assert.h>
30
31 namespace WRT {
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
60     Class *operator->() const throw()
61     {
62         Assert(this->m_value != Policy::NullValue() &&
63                "Dereference of scoped NULL pointer!");
64         return static_cast<Class *>(this->m_value);
65     }
66
67     Class & operator *() const throw()
68     {
69         Assert(this->m_value != Policy::NullValue() &&
70                "Dereference of scoped NULL pointer!");
71         return *static_cast<Class *>(this->m_value);
72     }
73 };
74 } // namespace WRT
75
76 #endif // WRT_ENGINE_SRC_COMMON_SCOPED_GPOINTER_H