summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2019-03-18 15:54:51 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2019-03-18 15:54:51 +0100
commit0912d61065490d265ad868d8af66fc65648b300f (patch)
tree2fdc38a9b4dc6ac01a885c0a3d4e80932a7ae7ba
parent5a1540e6504775e01c8c7e69cb26b9172836180c (diff)
downloadglibmm-0912d61065490d265ad868d8af66fc65648b300f.tar.gz
Gio::AsyncResult: Explain why wrap() is not used in get_source_object_base()
* gio/src/asyncresult.ccg: Replace a TODO comment with an explanation. * tests/giomm_asyncresult_sourceobject/main.cc: Add code that demonstrates why Glib::wrap(GObject* object, bool take_copy) returns an empty RefPtr.
-rw-r--r--gio/src/asyncresult.ccg6
-rw-r--r--tests/giomm_asyncresult_sourceobject/main.cc17
2 files changed, 21 insertions, 2 deletions
diff --git a/gio/src/asyncresult.ccg b/gio/src/asyncresult.ccg
index 4a3b59f9..4fc4b9aa 100644
--- a/gio/src/asyncresult.ccg
+++ b/gio/src/asyncresult.ccg
@@ -30,11 +30,15 @@ unwrap_objectbase_custom(const Glib::RefPtr<Glib::ObjectBase>& cpp_instance)
Glib::RefPtr<Glib::ObjectBase>
AsyncResult::get_source_object_base()
{
+ // Glib::wrap(cobj) can't be used here. See tests/giomm_asyncresult_sourceobject
+ // for a case where it would fail, and an explanation of why.
+ // In short, the source object is not necessarily a Glib::Object. It may be
+ // a Glib::Interface.
+
auto cobj = g_async_result_get_source_object(gobj());
auto cppobj = Glib::wrap_auto(cobj); // ObjectBase::_get_current_wrapper(cobj);
return Glib::RefPtr<Glib::ObjectBase>(
cppobj); // g_async_result_get_source_object() gives us a ref, unusually.
- // TODO: For some reason this fails: Glib::wrap(cobj);
}
Glib::RefPtr<const Glib::ObjectBase>
diff --git a/tests/giomm_asyncresult_sourceobject/main.cc b/tests/giomm_asyncresult_sourceobject/main.cc
index cf2b01be..6e71a755 100644
--- a/tests/giomm_asyncresult_sourceobject/main.cc
+++ b/tests/giomm_asyncresult_sourceobject/main.cc
@@ -1,5 +1,6 @@
#include <giomm.h>
#include <iostream>
+#include <typeinfo>
void
on_read_async(const Glib::RefPtr<Gio::AsyncResult>& result)
@@ -10,12 +11,26 @@ on_read_async(const Glib::RefPtr<Gio::AsyncResult>& result)
exit(EXIT_FAILURE);
}
- if (!g_async_result_get_source_object(result->gobj()))
+ auto cobj = g_async_result_get_source_object(result->gobj());
+ if (!cobj)
{
std::cerr << G_STRFUNC << ": g_async_result_get_source_object() failed." << std::endl;
exit(EXIT_FAILURE);
}
+ // Show why Glib::wrap(cobj) can't be used in Gio::AsyncResult::get_source_object_base().
+ // cppobjbase is not a Glib::Object*, it's a Gio::File* which is a Glib::Interface*.
+ std::cout << "GType name: " << G_OBJECT_TYPE_NAME(cobj) << std::endl;
+ auto cppobjbase = Glib::wrap_auto(cobj); // Glib::ObjectBase::_get_current_wrapper(cobj);
+ if (cppobjbase)
+ {
+ std::cout << "C++ type name: " << typeid(*cppobjbase).name() << std::endl;
+ auto cppobj = dynamic_cast<Glib::Object*>(cppobjbase); // Part of Glib::wrap(GObject*, bool)
+ auto cppiface = dynamic_cast<Glib::Interface*>(cppobjbase);
+ std::cout << "dynamic_cast<Glib::Object*>: " << cppobj << std::endl;
+ std::cout << "dynamic_cast<Glib::Interface*>: " << cppiface << std::endl;
+ }
+
if (!result->get_source_object_base())
{
std::cerr << G_STRFUNC << ": result->get_source_object_base() failed." << std::endl;