1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_BASE_GTK_G_OBJECT_DESTRUCTOR_FILO_H_
6 #define UI_BASE_GTK_G_OBJECT_DESTRUCTOR_FILO_H_
12 #include "base/basictypes.h"
13 #include "ui/base/ui_base_export.h"
15 template <typename T
> struct DefaultSingletonTraits
;
17 typedef struct _GObject GObject
;
21 // This class hooks calls to g_object_weak_ref()/unref() and executes them in
22 // FILO order. This is important if there are several hooks to the single object
23 // (set up at different levels of class hierarchy) and the lowest hook (set up
24 // first) is deleting self - it must be called last (among hooks for the given
25 // object). Unfortunately Glib does not provide this guarantee.
29 // static void OnDestroyedThunk(gpointer data, GObject *where_the_object_was) {
30 // reinterpret_cast<MyClass*>(data)->OnDestroyed(where_the_object_was);
32 // void MyClass::OnDestroyed(GObject *where_the_object_was) {
38 // ui::GObjectDestructorFILO::GetInstance()->Connect(
39 // G_OBJECT(my_widget), &OnDestroyedThunk, this);
41 // MyClass::~MyClass() {
43 // ui::GObjectDestructorFILO::GetInstance()->Disconnect(
44 // G_OBJECT(my_widget), &OnDestroyedThunk, this);
48 // TODO(glotov): Probably worth adding ScopedGObjectDtor<T>.
50 // This class is a singleton. Not thread safe. Must be called within UI thread.
51 class UI_BASE_EXPORT GObjectDestructorFILO
{
53 typedef void (*DestructorHook
)(void* context
, GObject
* where_the_object_was
);
55 static GObjectDestructorFILO
* GetInstance();
56 void Connect(GObject
* object
, DestructorHook callback
, void* context
);
57 void Disconnect(GObject
* object
, DestructorHook callback
, void* context
);
61 Hook(GObject
* o
, DestructorHook cb
, void* ctx
)
62 : object(o
), callback(cb
), context(ctx
) {
64 bool equal(GObject
* o
, DestructorHook cb
, void* ctx
) const {
65 return object
== o
&& callback
== cb
&& context
== ctx
;
68 DestructorHook callback
;
71 typedef std::list
<Hook
> HandlerList
;
72 typedef std::map
<GObject
*, HandlerList
> HandlerMap
;
74 GObjectDestructorFILO();
75 ~GObjectDestructorFILO();
76 friend struct DefaultSingletonTraits
<GObjectDestructorFILO
>;
78 void WeakNotify(GObject
* where_the_object_was
);
79 static void WeakNotifyThunk(gpointer data
, GObject
* where_the_object_was
) {
80 reinterpret_cast<GObjectDestructorFILO
*>(data
)->WeakNotify(
81 where_the_object_was
);
84 HandlerMap handler_map_
;
86 DISALLOW_COPY_AND_ASSIGN(GObjectDestructorFILO
);
91 #endif // UI_BASE_GTK_G_OBJECT_DESTRUCTOR_FILO_H_