From: DongHun Kwak Date: Mon, 7 Sep 2020 07:21:41 +0000 (-0700) Subject: Imported Upstream version 2.58.0 X-Git-Tag: upstream/2.58.0^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f2cdaec2a8ee5834155f263d612ccafd0c54c959;p=platform%2Fupstream%2Fglibmm.git Imported Upstream version 2.58.0 --- diff --git a/.gitignore b/.gitignore index 434a9a8..9a31990 100644 --- a/.gitignore +++ b/.gitignore @@ -39,9 +39,9 @@ giommconfig.h /build/missing /build/test-driver -# MSVC_Net20*/ -/MSVC_Net201?/giomm/giomm.rc -/MSVC_Net201?/glibmm/glibmm.rc +# MSVC_NMake/ +/MSVC_NMake/giomm/giomm.rc +/MSVC_NMake/glibmm/glibmm.rc # docs/ /docs/doc-install.pl @@ -52,8 +52,8 @@ giommconfig.h /docs/reference/Doxyfile /docs/reference/doxygen.log /docs/reference/doxygen*.db -/docs/reference/glibmm-*.devhelp2 -/docs/reference/glibmm-*.tag +/docs/reference/glibmm-2.4.devhelp2 +/docs/reference/glibmm-2.4.tag /docs/reference/html/ # examples/ @@ -75,6 +75,8 @@ giommconfig.h /examples/settings/gschemas.compiled /examples/thread/dispatcher /examples/thread/dispatcher2 +/examples/thread/thread +/examples/thread/threadpool # gio/ /gio/giomm-*.pc @@ -137,6 +139,10 @@ giommconfig.h /glib/glibmm/shell.h /glib/glibmm/spawn.cc /glib/glibmm/spawn.h +/glib/glibmm/thread.cc +/glib/glibmm/thread.h +/glib/glibmm/threads.cc +/glib/glibmm/threads.h /glib/glibmm/timezone.cc /glib/glibmm/timezone.h /glib/glibmm/unicode.cc @@ -145,6 +151,8 @@ giommconfig.h /glib/glibmm/uriutils.h /glib/glibmm/value_basictypes.cc /glib/glibmm/value_basictypes.h +/glib/glibmm/valuearray.cc +/glib/glibmm/valuearray.h /glib/glibmm/variant.cc /glib/glibmm/variant.h /glib/glibmm/variant_basictypes.cc diff --git a/MSVC_NMake/Makefile.vc b/MSVC_NMake/Makefile.vc new file mode 100644 index 0000000..337157b --- /dev/null +++ b/MSVC_NMake/Makefile.vc @@ -0,0 +1,58 @@ +# NMake Makefile for building libsigc++ on Windows using Visual Studio + +# The items below this line should not be changed, unless one is maintaining +# the NMake Makefiles. Customizations can be done in the following NMake Makefile +# portions (please see comments in the these files to see what can be customized): +# +# detectenv-msvc.mak +# config-msvc.mak + +!include detectenv-msvc.mak + +# Include the Makefile portions with the source listings +!include ..\gio\src\filelist.am +!include ..\gio\giomm\filelist.am +!include ..\glib\src\filelist.am +!include ..\glib\glibmm\filelist.am + +# Include the Makefile portion that enables features based on user input +!include config-msvc.mak + +!if "$(VALID_CFGSET)" == "TRUE" + +# We need Visual Studio 2015 or later +!if $(VSVER) < 14 +VALID_MSC = FALSE +!else +VALID_MSC = TRUE +!endif + +!if "$(VALID_MSC)" == "TRUE" + +# Include the Makefile portion to convert the source and header lists +# into the lists we need for compilation and introspection +!include create-lists-msvc.mak + +all: $(GIOMM_LIB) $(glibmm_ex) $(giomm_ex) all-build-info + +tests: $(glibmm_tests) $(giomm_tests) all-build-info + +# Include the build rules for sources, DLLs and executables +!include generate-msvc.mak +!include build-rules-msvc.mak + +!include install.mak + +!else # "$(VALID_MSC)" == "TRUE" +all: + @echo You need Visual Studio 2015 or later. + +!endif # "$(VALID_MSC)" == "TRUE" + +!else # "$(VALID_CFGSET)" == "TRUE" +all: help + @echo You need to specify a valid configuration, via + @echo CFG=release or CFG=debug +!endif # "$(VALID_CFGSET)" == "TRUE" + +!include info-msvc.mak diff --git a/MSVC_NMake/build-rules-msvc.mak b/MSVC_NMake/build-rules-msvc.mak new file mode 100644 index 0000000..8c2414a --- /dev/null +++ b/MSVC_NMake/build-rules-msvc.mak @@ -0,0 +1,213 @@ +# NMake Makefile portion for compilation rules +# Items in here should not need to be edited unless +# one is maintaining the NMake build files. The format +# of NMake Makefiles here are different from the GNU +# Makefiles. Please see the comments about these formats. + +# Inference rules for compiling the .obj files. +# Used for libs and programs with more than a single source file. +# Format is as follows +# (all dirs must have a trailing '\'): +# +# {$(srcdir)}.$(srcext){$(destdir)}.obj:: +# $(CC)|$(CXX) $(cflags) /Fo$(destdir) /c @<< +# $< +# << +{..\glib\glibmm\}.cc{$(CFG)\$(PLAT)\glibmm\}.obj:: + $(CXX) $(LIBGLIBMM_CFLAGS) $(CFLAGS_NOGL) /Fo$(CFG)\$(PLAT)\glibmm\ /c @<< +$< +<< + +{..\gio\giomm\}.cc{$(CFG)\$(PLAT)\giomm\}.obj:: + $(CXX) $(LIBGIOMM_CFLAGS) $(CFLAGS_NOGL) /Fo$(CFG)\$(PLAT)\giomm\ /c @<< +$< +<< + +{.\glibmm\}.rc{$(CFG)\$(PLAT)\glibmm\}.res: + rc /fo$@ $< + +{.\giomm\}.rc{$(CFG)\$(PLAT)\giomm\}.res: + rc /fo$@ $< + +# Rules for building .lib files +$(GLIBMM_LIB): $(GLIBMM_DLL) +$(GIOMM_LIB): $(GIOMM_DLL) + +# Rules for linking DLLs +# Format is as follows (the mt command is needed for MSVC 2005/2008 builds): +# $(dll_name_with_path): $(dependent_libs_files_objects_and_items) +# link /DLL [$(linker_flags)] [$(dependent_libs)] [/def:$(def_file_if_used)] [/implib:$(lib_name_if_needed)] -out:$@ @<< +# $(dependent_objects) +# << +# @-if exist $@.manifest mt /manifest $@.manifest /outputresource:$@;2 +$(GLIBMM_DLL): $(CFG)\$(PLAT)\glibmm\glibmm.def $(glibmm_OBJS) + link /DLL $(LDFLAGS_NOLTCG) $(GOBJECT_LIBS) $(LIBSIGC_LIB) /implib:$(GLIBMM_LIB) /def:$(CFG)\$(PLAT)\glibmm\glibmm.def -out:$@ @<< +$(glibmm_OBJS) +<< + + @-if exist $@.manifest mt /manifest $@.manifest /outputresource:$@;2 +$(GIOMM_DLL): $(GLIBMM_LIB) $(CFG)\$(PLAT)\giomm\giomm.def $(giomm_OBJS) + link /DLL $(LDFLAGS_NOLTCG) $(GLIBMM_LIB) $(GIO_LIBS) $(LIBSIGC_LIB) /implib:$(GIOMM_LIB) /def:$(CFG)\$(PLAT)\giomm\giomm.def -out:$@ @<< +$(giomm_OBJS) +<< + @-if exist $@.manifest mt /manifest $@.manifest /outputresource:$@;2 + +# Rules for linking Executables +# Format is as follows (the mt command is needed for MSVC 2005/2008 builds): +# $(dll_name_with_path): $(dependent_libs_files_objects_and_items) +# link [$(linker_flags)] [$(dependent_libs)] -out:$@ @<< +# $(dependent_objects) +# << +# @-if exist $@.manifest mt /manifest $@.manifest /outputresource:$@;1 + +# For the gendef tool +{.\gendef\}.cc{$(CFG)\$(PLAT)\}.exe: + @if not exist $(CFG)\$(PLAT)\gendef\ $(MAKE) -f Makefile.vc CFG=$(CFG) $(CFG)\$(PLAT)\gendef + $(CXX) $(GLIBMM_BASE_CFLAGS) $(CFLAGS) /Fo$(CFG)\$(PLAT)\gendef\ $< /link $(LDFLAGS) /out:$@ + +# For the buildable glibmm examples +$(CFG)\$(PLAT)\glibmm-ex-compose.exe: ..\examples\compose\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\glibmm-ex-dispatcher2.exe: ..\examples\thread\dispatcher2.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\glibmm-ex-keyfile.exe: ..\examples\keyfile\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\glibmm-ex-markup.exe: ..\examples\markup\parser.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\glibmm-ex-options.exe: ..\examples\options\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\glibmm-ex-properties.exe: ..\examples\properties\properties_example.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\glibmm-ex-regex.exe: ..\examples\regex\main.cc $(GLIBMM_LIB) + +$(CFG)\$(PLAT)\glibmm-ex-compose.exe \ +$(CFG)\$(PLAT)\glibmm-ex-dispatcher2.exe \ +$(CFG)\$(PLAT)\glibmm-ex-keyfile.exe \ +$(CFG)\$(PLAT)\glibmm-ex-markup.exe \ +$(CFG)\$(PLAT)\glibmm-ex-options.exe \ +$(CFG)\$(PLAT)\glibmm-ex-properties.exe \ +$(CFG)\$(PLAT)\glibmm-ex-regex.exe: + @if not exist $(CFG)\$(PLAT)\glibmm-ex $(MAKE) -f Makefile.vc CFG=$(CFG) $(CFG)\$(PLAT)\glibmm-ex + $(CXX) $(GLIBMM_EX_CFLAGS) $(CFLAGS) /Fo$(CFG)\$(PLAT)\glibmm-ex\ $** /link $(LDFLAGS) $(GLIBMM_EX_LIBS) /out:$@ + +# For the buildable giomm examples + +$(CFG)\$(PLAT)\giomm-ex-dbus-client_bus_listnames.exe: ..\examples\dbus\client_bus_listnames.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\giomm-ex-dbus-session_bus_service.exe: ..\examples\dbus\session_bus_service.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\giomm-ex-dbus-server_without_bus.exe: ..\examples\dbus\server_without_bus.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\giomm-ex-network-resolver.exe: ..\examples\network\resolver.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\giomm-ex-network-socket-client.exe: ..\examples\network\socket-client.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\giomm-ex-network-socket-server.exe: ..\examples\network\socket-server.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\giomm-ex-settings.exe: ..\examples\settings\settings.cc $(GIOMM_LIB) + +$(CFG)\$(PLAT)\giomm-ex-dbus-client_bus_listnames.exe \ +$(CFG)\$(PLAT)\giomm-ex-dbus-session_bus_service.exe \ +$(CFG)\$(PLAT)\giomm-ex-dbus-server_without_bus.exe \ +$(CFG)\$(PLAT)\giomm-ex-network-resolver.exe \ +$(CFG)\$(PLAT)\giomm-ex-network-socket-client.exe \ +$(CFG)\$(PLAT)\giomm-ex-network-socket-server.exe \ +$(CFG)\$(PLAT)\giomm-ex-settings.exe: + @if not exist $(CFG)\$(PLAT)\giomm-ex $(MAKE) -f Makefile.vc CFG=$(CFG) $(CFG)\$(PLAT)\giomm-ex + @if "$@" == "$(CFG)\$(PLAT)\giomm-ex-settings.exe" $(MAKE) -f Makefile.vc CFG=$(CFG) $(CFG)\$(PLAT)\gschema.compiled + $(CXX) $(GIOMM_EX_CFLAGS) $(CFLAGS) /Fo$(CFG)\$(PLAT)\giomm-ex\ $** /link $(LDFLAGS) $(GIOMM_EX_LIBS) /out:$@ + +# For building the glibmm tests +$(CFG)\$(PLAT)\test-glibmm_base64.exe: ..\tests\glibmm_base64\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_bool_arrayhandle.exe: ..\tests\glibmm_bool_arrayhandle\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_bool_vector.exe: ..\tests\glibmm_bool_vector\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_btree.exe: ..\tests\glibmm_btree\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_buildfilename.exe: ..\tests\glibmm_buildfilename\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_bytearray.exe: ..\tests\glibmm_bytearray\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_date.exe: ..\tests\glibmm_date\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_mainloop.exe: ..\tests\glibmm_mainloop\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_nodetree.exe: ..\tests\glibmm_nodetree\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_object.exe: ..\tests\glibmm_object\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_objectbase.exe: ..\tests\glibmm_objectbase\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_objectbase_move.exe: ..\tests\glibmm_objectbase_move\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_object_move.exe: ..\tests\glibmm_object_move\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_refptr.exe: ..\tests\glibmm_refptr\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_refptr_sigc_bind.exe: ..\tests\glibmm_refptr_sigc_bind\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_ustring_compose.exe: ..\tests\glibmm_ustring_compose\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_ustring_format.exe: ..\tests\glibmm_ustring_format\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_ustring_make_valid.exe: ..\tests\glibmm_ustring_make_valid\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_value.exe: ..\tests\glibmm_value\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_valuearray.exe: ..\tests\glibmm_valuearray\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_variant.exe: ..\tests\glibmm_variant\main.cc $(GLIBMM_LIB) + +$(CFG)\$(PLAT)\test-glibmm_base64.exe \ +$(CFG)\$(PLAT)\test-glibmm_bool_arrayhandle.exe \ +$(CFG)\$(PLAT)\test-glibmm_bool_vector.exe \ +$(CFG)\$(PLAT)\test-glibmm_btree.exe \ +$(CFG)\$(PLAT)\test-glibmm_buildfilename.exe \ +$(CFG)\$(PLAT)\test-glibmm_bytearray.exe \ +$(CFG)\$(PLAT)\test-glibmm_date.exe \ +$(CFG)\$(PLAT)\test-glibmm_interface_move.exe \ +$(CFG)\$(PLAT)\test-glibmm_mainloop.exe \ +$(CFG)\$(PLAT)\test-glibmm_nodetree.exe \ +$(CFG)\$(PLAT)\test-glibmm_object.exe \ +$(CFG)\$(PLAT)\test-glibmm_objectbase.exe \ +$(CFG)\$(PLAT)\test-glibmm_objectbase_move.exe \ +$(CFG)\$(PLAT)\test-glibmm_object_move.exe \ +$(CFG)\$(PLAT)\test-glibmm_refptr.exe \ +$(CFG)\$(PLAT)\test-glibmm_refptr_sigc_bind.exe \ +$(CFG)\$(PLAT)\test-glibmm_ustring_compose.exe \ +$(CFG)\$(PLAT)\test-glibmm_ustring_format.exe \ +$(CFG)\$(PLAT)\test-glibmm_ustring_make_valid.exe \ +$(CFG)\$(PLAT)\test-glibmm_value.exe \ +$(CFG)\$(PLAT)\test-glibmm_valuearray.exe \ +$(CFG)\$(PLAT)\test-glibmm_variant.exe: + @if not exist $(CFG)\$(PLAT)\glibmm-tests $(MAKE) -f Makefile.vc CFG=$(CFG) $(CFG)\$(PLAT)\glibmm-tests + $(CXX) $(GLIBMM_EX_CFLAGS) $(CFLAGS) /Fo$(CFG)\$(PLAT)\glibmm-tests\ $** /link $(LDFLAGS) $(GLIBMM_EX_LIBS) /out:$@ + +# For giomm tests +$(CFG)\$(PLAT)\test-giomm_asyncresult_sourceobject.exe: ..\tests\giomm_asyncresult_sourceobject\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-giomm_ioerror.exe: ..\tests\giomm_ioerror\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-giomm_ioerror_and_iodbuserror.exe: ..\tests\giomm_ioerror_and_iodbuserror\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-giomm_listmodel.exe: ..\tests\giomm_listmodel\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-giomm_memoryinputstream.exe: ..\tests\giomm_memoryinputstream\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-giomm_simple.exe: ..\tests\giomm_simple\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-giomm_stream_vfuncs.exe: ..\tests\giomm_stream_vfuncs\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-giomm_tls_client.exe: ..\tests\giomm_tls_client\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_interface_implementation.exe: ..\tests\glibmm_interface_implementation\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_null_containerhandle.exe: ..\tests\glibmm_null_containerhandle\main.cc $(GLIBMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_null_vectorutils.exe: ..\tests\glibmm_null_vectorutils\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_vector.exe: ..\tests\glibmm_vector\main.cc $(GIOMM_LIB) +$(CFG)\$(PLAT)\test-glibmm_weakref.exe: ..\tests\glibmm_weakref\main.cc $(GLIBMM_LIB) + +$(CFG)\$(PLAT)\test-giomm_asyncresult_sourceobject.exe \ +$(CFG)\$(PLAT)\test-giomm_ioerror.exe \ +$(CFG)\$(PLAT)\test-giomm_ioerror_and_iodbuserror.exe \ +$(CFG)\$(PLAT)\test-giomm_listmodel.exe \ +$(CFG)\$(PLAT)\test-giomm_memoryinputstream.exe \ +$(CFG)\$(PLAT)\test-giomm_simple.exe \ +$(CFG)\$(PLAT)\test-giomm_stream_vfuncs.exe \ +$(CFG)\$(PLAT)\test-giomm_tls_client.exe \ +$(CFG)\$(PLAT)\test-glibmm_interface_implementation.exe \ +$(CFG)\$(PLAT)\test-glibmm_null_containerhandle.exe \ +$(CFG)\$(PLAT)\test-glibmm_null_vectorutils.exe \ +$(CFG)\$(PLAT)\test-glibmm_vector.exe \ +$(CFG)\$(PLAT)\test-glibmm_weakref.exe: + @if not exist $(CFG)\$(PLAT)\giomm-tests $(MAKE) -f Makefile.vc CFG=$(CFG) $(CFG)\$(PLAT)\giomm-tests + $(CXX) $(GIOMM_EX_CFLAGS) $(CFLAGS) /Fo$(CFG)\$(PLAT)\giomm-tests\ $** /link $(LDFLAGS) $(GIOMM_EX_LIBS) /out:$@ + +clean: + @-del /f /q $(CFG)\$(PLAT)\*.exe + @-del /f /q $(CFG)\$(PLAT)\*.dll + @-del /f /q $(CFG)\$(PLAT)\*.pdb + @-del /f /q $(CFG)\$(PLAT)\*.ilk + @-del /f /q $(CFG)\$(PLAT)\*.exp + @-del /f /q $(CFG)\$(PLAT)\*.lib + @-del /f /q $(CFG)\$(PLAT)\gschemas.compiled + @-if exist $(CFG)\$(PLAT)\giomm-tests del /f /q $(CFG)\$(PLAT)\giomm-tests\*.obj + @-del /f /q $(CFG)\$(PLAT)\giomm-ex\*.obj + @-del /f /q $(CFG)\$(PLAT)\giomm\*.def + @-del /f /q $(CFG)\$(PLAT)\giomm\*.res + @-del /f /q $(CFG)\$(PLAT)\giomm\*.obj + @-if exist $(CFG)\$(PLAT)\glibmm-tests del /f /q $(CFG)\$(PLAT)\glibmm-tests\*.obj + @-del /f /q $(CFG)\$(PLAT)\glibmm-ex\*.obj + @-del /f /q $(CFG)\$(PLAT)\glibmm\*.def + @-del /f /q $(CFG)\$(PLAT)\glibmm\*.res + @-del /f /q $(CFG)\$(PLAT)\glibmm\*.obj + @-del /f /q $(CFG)\$(PLAT)\gendef\*.obj + @-if exist $(CFG)\$(PLAT)\giomm-tests rd $(CFG)\$(PLAT)\giomm-tests + @-rd $(CFG)\$(PLAT)\giomm-ex + @-rd $(CFG)\$(PLAT)\giomm + @-if exist $(CFG)\$(PLAT)\glibmm-tests rd $(CFG)\$(PLAT)\glibmm-tests + @-rd $(CFG)\$(PLAT)\glibmm-ex + @-rd $(CFG)\$(PLAT)\glibmm + @-rd $(CFG)\$(PLAT)\gendef + @-del /f /q vc$(PDBVER)0.pdb diff --git a/MSVC_NMake/config-msvc.mak b/MSVC_NMake/config-msvc.mak new file mode 100644 index 0000000..73fda63 --- /dev/null +++ b/MSVC_NMake/config-msvc.mak @@ -0,0 +1,70 @@ +# NMake Makefile portion for enabling features for Windows builds + +# These are the base minimum libraries required for building glibmm. +BASE_INCLUDES = /I$(PREFIX)\include + +# Please do not change anything beneath this line unless maintaining the NMake Makefiles +GLIB_API_VERSION = 2.0 + +GLIBMM_MAJOR_VERSION = 2 +GLIBMM_MINOR_VERSION = 4 + +LIBSIGC_MAJOR_VERSION = 2 +LIBSIGC_MINOR_VERSION = 0 + +!if "$(CFG)" == "debug" || "$(CFG)" == "Debug" +DEBUG_SUFFIX = -d +!else +DEBUG_SUFFIX = +!endif + +GLIBMM_BASE_CFLAGS = \ + /I..\glib /I.\glibmm \ + /wd4530 /EHsc \ + /FImsvc_recommended_pragmas.h + +GIOMM_BASE_CFLAGS = /I..\gio /I.\giomm $(GLIBMM_BASE_CFLAGS) + +GLIBMM_EXTRA_INCLUDES = \ + /I$(PREFIX)\include\gio-win32-$(GLIB_API_VERSION) \ + /I$(PREFIX)\include\glib-$(GLIB_API_VERSION) \ + /I$(PREFIX)\lib\glib-$(GLIB_API_VERSION)\include \ + /I$(PREFIX)\include\sigc++-$(LIBSIGC_MAJOR_VERSION).$(LIBSIGC_MINOR_VERSION) \ + /I$(PREFIX)\lib\sigc++-$(LIBSIGC_MAJOR_VERSION).$(LIBSIGC_MINOR_VERSION)\include + +LIBGLIBMM_CFLAGS = /DGLIBMM_BUILD /DSIZEOF_WCHAR_T=2 $(GLIBMM_BASE_CFLAGS) $(GLIBMM_EXTRA_INCLUDES) +LIBGIOMM_CFLAGS = /DGIOMM_BUILD /DSIZEOF_WCHAR_T=2 $(GIOMM_BASE_CFLAGS) $(GLIBMM_EXTRA_INCLUDES) +GLIBMM_EX_CFLAGS = $(GLIBMM_BASE_CFLAGS) $(GLIBMM_EXTRA_INCLUDES) +GIOMM_EX_CFLAGS = $(GIOMM_BASE_CFLAGS) $(GLIBMM_EXTRA_INCLUDES) + +# We build glibmm-vc$(PDBVER)0-$(GLIBMM_MAJOR_VERSION)_$(GLIBMM_MINOR_VERSION).dll or +# glibmm-vc$(PDBVER)0-d-$(GLIBMM_MAJOR_VERSION)_$(GLIBMM_MINOR_VERSION).dll at least +# giomm-vc$(PDBVER)0-$(GLIBMM_MAJOR_VERSION)_$(GLIBMM_MINOR_VERSION).dll or +# giomm-vc$(PDBVER)0-d-$(GLIBMM_MAJOR_VERSION)_$(GLIBMM_MINOR_VERSION).dll at least + +LIBSIGC_LIBNAME = sigc-vc$(PDBVER)0$(DEBUG_SUFFIX)-$(LIBSIGC_MAJOR_VERSION)_$(LIBSIGC_MINOR_VERSION) + +LIBSIGC_DLL = $(LIBSIGC_LIBNAME).dll +LIBSIGC_LIB = $(LIBSIGC_LIBNAME).lib + +GLIBMM_LIBNAME = glibmm-vc$(PDBVER)0$(DEBUG_SUFFIX)-$(GLIBMM_MAJOR_VERSION)_$(GLIBMM_MINOR_VERSION) + +GLIBMM_DLL = $(CFG)\$(PLAT)\$(GLIBMM_LIBNAME).dll +GLIBMM_LIB = $(CFG)\$(PLAT)\$(GLIBMM_LIBNAME).lib + +GIOMM_LIBNAME = giomm-vc$(PDBVER)0$(DEBUG_SUFFIX)-$(GLIBMM_MAJOR_VERSION)_$(GLIBMM_MINOR_VERSION) + +GIOMM_DLL = $(CFG)\$(PLAT)\$(GIOMM_LIBNAME).dll +GIOMM_LIB = $(CFG)\$(PLAT)\$(GIOMM_LIBNAME).lib + +GENDEF = $(CFG)\$(PLAT)\gendef.exe +GOBJECT_LIBS = gobject-2.0.lib gmodule-2.0.lib glib-2.0.lib +GIO_LIBS = gio-2.0.lib $(GOBJECT_LIBS) + +GLIBMM_EX_LIBS = $(GLIBMM_LIB) $(LIBSIGC_LIB) $(GOBJECT_LIBS) +GIOMM_EX_LIBS = $(GIOMM_LIB) $(GLIBMM_LIB) $(LIBSIGC_LIB) $(GIO_LIBS) + +# Set a default location for glib-compile-schemas, if not specified +!ifndef GLIB_COMPILE_SCHEMAS +GLIB_COMPILE_SCHEMAS = $(PREFIX)\bin\glib-compile-schemas +!endif diff --git a/MSVC_NMake/create-lists-msvc.mak b/MSVC_NMake/create-lists-msvc.mak new file mode 100644 index 0000000..50f7767 --- /dev/null +++ b/MSVC_NMake/create-lists-msvc.mak @@ -0,0 +1,132 @@ +# Convert the source listing to object (.obj) listing in +# another NMake Makefile module, include it, and clean it up. +# This is a "fact-of-life" regarding NMake Makefiles... +# This file does not need to be changed unless one is maintaining the NMake Makefiles + +# For those wanting to add things here: +# To add a list, do the following: +# # $(description_of_list) +# if [call create-lists.bat header $(makefile_snippet_file) $(variable_name)] +# endif +# +# if [call create-lists.bat file $(makefile_snippet_file) $(file_name)] +# endif +# +# if [call create-lists.bat footer $(makefile_snippet_file)] +# endif +# ... (repeat the if [call ...] lines in the above order if needed) +# !include $(makefile_snippet_file) +# +# (add the following after checking the entries in $(makefile_snippet_file) is correct) +# (the batch script appends to $(makefile_snippet_file), you will need to clear the file unless the following line is added) +#!if [del /f /q $(makefile_snippet_file)] +#!endif + +# In order to obtain the .obj filename that is needed for NMake Makefiles to build DLLs/static LIBs or EXEs, do the following +# instead when doing 'if [call create-lists.bat file $(makefile_snippet_file) $(file_name)]' +# (repeat if there are multiple $(srcext)'s in $(source_list), ignore any headers): +# !if [for %c in ($(source_list)) do @if "%~xc" == ".$(srcext)" @call create-lists.bat file $(makefile_snippet_file) $(intdir)\%~nc.obj] +# +# $(intdir)\%~nc.obj needs to correspond to the rules added in build-rules-msvc.mak +# %~xc gives the file extension of a given file, %c in this case, so if %c is a.cc, %~xc means .cc +# %~nc gives the file name of a given file without extension, %c in this case, so if %c is a.cc, %~nc means a + +NULL= + +# Ensure we build the right generated sources for giomm +giomm_generated_sources = $(giomm_files_any_hg:.hg=.cc) +giomm_generated_sources = $(giomm_generated_sources) wrap_init.cc +giomm_generated_headers = $(giomm_files_any_hg:.hg=.h) +giomm_generated_private_headers = $(giomm_files_any_hg:.hg=_p.h) +glibmm_generated_private_headers = $(glibmm_files_used_hg:.hg=_p.h) +glibmm_files_extra_ph_int = $(glibmm_files_extra_ph:/=\) + +# For glibmm + +!if [call create-lists.bat header glibmm.mak glibmm_OBJS] +!endif + +!if [for %c in ($(glibmm_files_built_cc)) do @if "%~xc" == ".cc" @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\glibmm\%~nc.obj] +!endif + +!if [for %c in ($(glibmm_files_extra_cc)) do @if "%~xc" == ".cc" @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\glibmm\%~nc.obj] +!endif + +!if [@call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\glibmm\glibmm.res] +!endif + +!if [call create-lists.bat footer glibmm.mak] +!endif + +# For giomm + +!if [call create-lists.bat header glibmm.mak giomm_OBJS] +!endif + +!if [for %c in ($(giomm_generated_sources)) do @if "%~xc" == ".cc" @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\giomm\%~nc.obj] +!endif + +!if [for %c in ($(giomm_files_extra_cc)) do @if "%~xc" == ".cc" @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\giomm\%~nc.obj] +!endif + +!if [@call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\giomm\giomm.res] +!endif + +!if [call create-lists.bat footer glibmm.mak] +!endif + +!if [call create-lists.bat header glibmm.mak glibmm_ex] +!endif + +# We skip building the following examples: +# child_watch, iochannel_stream: Builds on *NIX only +# thread\dispatcher.cc: Not C++-17 compliant +!if [for %e in (compose dispatcher2 keyfile markup options properties regex) do @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\glibmm-ex-%e.exe] +!endif + +!if [call create-lists.bat footer glibmm.mak] +!endif + +!if [call create-lists.bat header glibmm.mak giomm_ex] +!endif + +!if [for %e in (resolver socket-client socket-server) do @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\giomm-ex-network-%e.exe] +!endif + +!if [for %e in (settings) do @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\giomm-ex-%e.exe] +!endif + +!if [for %e in (client_bus_listnames session_bus_service server_without_bus) do @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\giomm-ex-dbus-%e.exe] +!endif + +!if [call create-lists.bat footer glibmm.mak] +!endif + +!if [call create-lists.bat header glibmm.mak glibmm_tests] +!endif + +# Skip the following: +# glibmm_interface_implementation, glibmm_null_vectorutils, glibmm_vector: Are actually using giomm +# glibmm_interface_move: Relies on g_autoptr_*() +!if [for /f %d in ('dir /ad /b ..\tests\glibmm_*') do @if not "%d" == "glibmm_interface_implementation" if not "%d" == "glibmm_interface_move" if not "%d" == "glibmm_null_vectorutils" if not "%d" == "glibmm_vector" @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\test-%d.exe] +!endif + +!if [call create-lists.bat footer glibmm.mak] +!endif + +!if [call create-lists.bat header glibmm.mak giomm_tests] +!endif + +!if [for /f %d in ('dir /ad /b ..\tests\giomm_*') do @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\test-%d.exe] +!endif + +!if [for %d in (interface_implementation null_vectorutils vector) do @call create-lists.bat file glibmm.mak ^$(CFG)\^$(PLAT)\test-glibmm_%d.exe] +!endif + +!if [call create-lists.bat footer glibmm.mak] +!endif + +!include glibmm.mak + +!if [del /f /q glibmm.mak] +!endif diff --git a/MSVC_NMake/create-lists.bat b/MSVC_NMake/create-lists.bat new file mode 100644 index 0000000..ef60d5c --- /dev/null +++ b/MSVC_NMake/create-lists.bat @@ -0,0 +1,42 @@ +@echo off +rem Simple .bat script for creating the NMake Makefile snippets. + +if not "%1" == "header" if not "%1" == "file" if not "%1" == "footer" goto :error_cmd +if "%2" == "" goto error_no_destfile + +if "%1" == "header" goto :header +if "%1" == "file" goto :addfile +if "%1" == "footer" goto :footer + +:header +if "%3" == "" goto error_var +echo %3 = \>>%2 +goto done + +:addfile +if "%3" == "" goto error_file +echo. %3 \>>%2 +goto done + +:footer +echo. $(NULL)>>%2 +echo.>>%2 +goto done + +:error_cmd +echo Specified command '%1' was invalid. Valid commands are: header file footer. +goto done + +:error_no_destfile +echo Destination NMake snippet file must be specified +goto done + +:error_var +echo A name must be specified for using '%1'. +goto done + +:error_file +echo A file must be specified for using '%1'. +goto done + +:done \ No newline at end of file diff --git a/MSVC_NMake/detectenv-msvc.mak b/MSVC_NMake/detectenv-msvc.mak new file mode 100644 index 0000000..9a92c11 --- /dev/null +++ b/MSVC_NMake/detectenv-msvc.mak @@ -0,0 +1,154 @@ +# Change this (or specify PREFIX= when invoking this NMake Makefile) if +# necessary, so that the libs and headers of the dependent third-party +# libraries can be located. For instance, if building from GLib's +# included Visual Studio projects, this should be able to locate the GLib +# build out-of-the-box if they were not moved. GLib's headers will be +# found in $(GLIB_PREFIX)\include\glib-2.0 and +# $(GLIB_PREFIX)\lib\glib-2.0\include and its import library will be found +# in $(GLIB_PREFIX)\lib. + +!if "$(PREFIX)" == "" +PREFIX = ..\..\vs$(VSVER)\$(PLAT) +!endif + +# Location of the PERL interpreter, for running glib-mkenums. glib-mkenums +# needs to be found in $(PREFIX)\bin. Using either a 32-bit or x64 PERL +# interpreter are supported for either a 32-bit or x64 build. + +!if "$(PERL)" == "" +PERL = perl +!endif + +# Location of the Python interpreter, for building introspection. The complete set +# of Python Modules for introspection (the giscanner Python scripts and the _giscanner.pyd +# compiled module) needs to be found in $(PREFIX)\lib\gobject-introspection\giscanner, and +# the g-ir-scanner Python script and g-ir-compiler utility program needs to be found +# in $(PREFIX)\bin, together with any DLLs they will depend on, if those DLLs are not already +# in your PATH. +# Note that the Python interpreter and the introspection modules and utility progam must +# correspond to the build type (i.e. 32-bit Release for 32-bit Release builds, and so on). +# +# For introspection, currently only Python 2.7.x is supported. This may change when Python 3.x +# support is added upstream in gobject-introspection--when this happens, the _giscanner.pyd must +# be the one that is built against the release series of Python that is used here. + +!if "$(PYTHON)" == "" +PYTHON = python +!endif + +# Location of the pkg-config utility program, for building introspection. It needs to be able +# to find the pkg-config (.pc) files so that the correct libraries and headers for the needed libraries +# can be located, using PKG_CONFIG_PATH. Using either a 32-bit or x64 pkg-config are supported for +# either a 32-bit or x64 build. + +!if "$(PKG_CONFIG)" == "" +PKG_CONFIG = pkg-config +!endif + +# The items below this line should not be changed, unless one is maintaining +# the NMake Makefiles. The exception is for the CFLAGS_ADD line(s) where one +# could use his/her desired compiler optimization flags, if he/she knows what is +# being done. + +# Check to see we are configured to build with MSVC (MSDEVDIR, MSVCDIR or +# VCINSTALLDIR) or with the MS Platform SDK (MSSDK or WindowsSDKDir) +!if !defined(VCINSTALLDIR) && !defined(WINDOWSSDKDIR) +MSG = ^ +This Makefile is only for Visual Studio 2008 and later.^ +You need to ensure that the Visual Studio Environment is properly set up^ +before running this Makefile. +!error $(MSG) +!endif + +ERRNUL = 2>NUL +_HASH=^# + +!if ![echo VCVERSION=_MSC_VER > vercl.x] \ + && ![echo $(_HASH)if defined(_M_IX86) >> vercl.x] \ + && ![echo PLAT=Win32 >> vercl.x] \ + && ![echo $(_HASH)elif defined(_M_AMD64) >> vercl.x] \ + && ![echo PLAT=x64 >> vercl.x] \ + && ![echo $(_HASH)endif >> vercl.x] \ + && ![cl -nologo -TC -P vercl.x $(ERRNUL)] +!include vercl.i +!if ![echo VCVER= ^\> vercl.vc] \ + && ![set /a $(VCVERSION) / 100 - 6 >> vercl.vc] +!include vercl.vc +!endif +!endif +!if ![del $(ERRNUL) /q/f vercl.x vercl.i vercl.vc] +!endif + +!if $(VCVERSION) > 1499 && $(VCVERSION) < 1600 +VSVER = 9 +!elseif $(VCVERSION) > 1599 && $(VCVERSION) < 1700 +VSVER = 10 +!elseif $(VCVERSION) > 1699 && $(VCVERSION) < 1800 +VSVER = 11 +!elseif $(VCVERSION) > 1799 && $(VCVERSION) < 1900 +VSVER = 12 +!elseif $(VCVERSION) > 1899 && $(VCVERSION) < 1910 +VSVER = 14 +!elseif $(VCVERSION) > 1909 && $(VCVERSION) < 2000 +VSVER = 15 +!else +VSVER = 0 +!endif + +!if "$(VSVER)" == "0" +MSG = ^ +This NMake Makefile set supports Visual Studio^ +9 (2008) through 15 (2017). Your Visual Studio^ +version is not supported. +!error $(MSG) +!else +!if $(VSVER) < 15 +PDBVER = $(VSVER) +!else +PDBVER = 14 +!endif +!endif + +VALID_CFGSET = FALSE +!if "$(CFG)" == "release" || "$(CFG)" == "Release" || "$(CFG)" == "debug" || "$(CFG)" == "Debug" +VALID_CFGSET = TRUE +!endif + +# One may change these items, but be sure to test +# the resulting binaries +!if "$(CFG)" == "release" || "$(CFG)" == "Release" +CFLAGS_ADD_NO_GL = /MD /O2 /MP +CFLAGS_ADD = $(CFLAGS_ADD_NO_GL) /GL +!if "$(VSVER)" != "9" +CFLAGS_ADD = $(CFLAGS_ADD) /d2Zi+ +CFLAGS_ADD_NO_GL = $(CFLAGS_ADD_NO_GL) /d2Zi+ +!endif +!else +CFLAGS_ADD = /MDd /Od +CFLAGS_ADD_NO_GL = $(CFLAGS_ADD) +!endif + +!if "$(PLAT)" == "x64" +LDFLAGS_ARCH = /machine:x64 +!else +LDFLAGS_ARCH = /machine:x86 +!endif + +!if "$(VALID_CFGSET)" == "TRUE" +CFLAGS_NOGL = $(CFLAGS_ADD_NO_GL) /W3 /Zi +CFLAGS = $(CFLAGS_ADD) /W3 /Zi + +LDFLAGS_BASE = $(LDFLAGS_ARCH) /libpath:$(PREFIX)\lib /DEBUG + +!if "$(CFG)" == "debug" || "$(CFG)" == "Debug" +ARFLAGS_NOLTCG = $(LDFLAGS_ARCH) +ARFLAGS = $(LDFLAGS_ARCH) +LDFLAGS_NOLTCG = $(LDFLAGS_BASE) +LDFLAGS = $(LDFLAGS_BASE) +!else +ARFLAGS_NOLTCG = $(LDFLAGS_ARCH) /LTCG +ARFLAGS = $(ARFLAGS_NOLTCG) /LTCG +LDFLAGS_NOLTCG = $(LDFLAGS_BASE) /opt:ref +LDFLAGS = $(LDFLAGS_NOLTCG) /LTCG +!endif +!endif diff --git a/MSVC_NMake/filelist.am b/MSVC_NMake/filelist.am new file mode 100644 index 0000000..51cd314 --- /dev/null +++ b/MSVC_NMake/filelist.am @@ -0,0 +1,17 @@ +## This file is part of glibmm. + +msvc_nmake_data = \ + build-rules-msvc.mak \ + config-msvc.mak \ + create-lists.bat \ + create-lists-msvc.mak \ + detectenv-msvc.mak \ + gendef/gendef.cc \ + generate-msvc.mak \ + glibmm/glibmmconfig.h \ + glibmm/glibmm.rc \ + giomm/giommconfig.h \ + giomm/giomm.rc \ + info-msvc.mak \ + install.mak \ + Makefile.vc diff --git a/MSVC_Net2017/gendef/gendef.cc b/MSVC_NMake/gendef/gendef.cc similarity index 100% rename from MSVC_Net2017/gendef/gendef.cc rename to MSVC_NMake/gendef/gendef.cc diff --git a/MSVC_NMake/generate-msvc.mak b/MSVC_NMake/generate-msvc.mak new file mode 100644 index 0000000..624e7f8 --- /dev/null +++ b/MSVC_NMake/generate-msvc.mak @@ -0,0 +1,25 @@ +# NMake Makefile portion for code generation and +# intermediate build directory creation +# Items in here should not need to be edited unless +# one is maintaining the NMake build files. + +# Create the build directories +$(CFG)\$(PLAT)\gendef \ +$(CFG)\$(PLAT)\glibmm \ +$(CFG)\$(PLAT)\giomm \ +$(CFG)\$(PLAT)\glibmm-ex \ +$(CFG)\$(PLAT)\giomm-ex \ +$(CFG)\$(PLAT)\glibmm-tests \ +$(CFG)\$(PLAT)\giomm-tests: + @-mkdir $@ + +# Generate .def files +$(CFG)\$(PLAT)\glibmm\glibmm.def: $(GENDEF) $(CFG)\$(PLAT)\glibmm $(glibmm_OBJS) + $(CFG)\$(PLAT)\gendef.exe $@ $(GLIBMM_LIBNAME) $(CFG)\$(PLAT)\glibmm\*.obj + +$(CFG)\$(PLAT)\giomm\giomm.def: $(GENDEF) $(CFG)\$(PLAT)\giomm $(giomm_OBJS) + $(CFG)\$(PLAT)\gendef.exe $@ $(GIOMM_LIBNAME) $(CFG)\$(PLAT)\giomm\*.obj + +# Compile schema for giomm settings example +$(CFG)\$(PLAT)\gschema.compiled: ..\examples\settings\org.gtkmm.demo.gschema.xml + $(GLIB_COMPILE_SCHEMAS) --targetdir=$(CFG)\$(PLAT) ..\examples\settings \ No newline at end of file diff --git a/MSVC_Net2017/giomm/giomm.rc.in b/MSVC_NMake/giomm/giomm.rc.in similarity index 100% rename from MSVC_Net2017/giomm/giomm.rc.in rename to MSVC_NMake/giomm/giomm.rc.in diff --git a/MSVC_Net2017/glibmm/glibmm.rc.in b/MSVC_NMake/glibmm/glibmm.rc.in similarity index 100% rename from MSVC_Net2017/glibmm/glibmm.rc.in rename to MSVC_NMake/glibmm/glibmm.rc.in diff --git a/MSVC_NMake/info-msvc.mak b/MSVC_NMake/info-msvc.mak new file mode 100644 index 0000000..25902e5 --- /dev/null +++ b/MSVC_NMake/info-msvc.mak @@ -0,0 +1,42 @@ +# NMake Makefile portion for displaying config info + +all-build-info: + @echo. + @echo ---------- + @echo Build info + @echo --------- + @echo Build Type: $(CFG) + +help: + @echo. + @echo ============================ + @echo Building cairomm Using NMake + @echo ============================ + @echo nmake /f Makefile.vc CFG=[release^|debug] ^ + @echo. + @echo Where: + @echo ------ + @echo CFG: Required, use CFG=release for an optimized build and CFG=debug + @echo for a debug build. PDB files are generated for all builds. + @echo. + @echo PREFIX: Optional, the path where dependent libraries and tools may be + @echo found, default is ^$(srcrootdir)\..\vs^$(short_vs_ver)\^$(platform), + @echo where ^$(short_vs_ver) is 15 for VS 2017 and so on; and + @echo ^$(platform) is Win32 for 32-bit builds and x64 for x64 builds. + @echo. + @echo ----- + @echo A few options are supported here, namely: + @echo. + @echo GLIB_COMPILE_SCHEMAS: Location of the glib-compile-schemas tool, + @echo if it cannot be found in $(PREFIX)\bin. This tool is needed for the + @echo giomm settings example program. + @echo ====== + @echo A 'clean' target is supported to remove all generated files, intermediate + @echo object files and binaries for the specified configuration. + @echo. + @echo An 'install' target is supported to copy the build (DLLs, utility programs, + @echo LIBs, along with the header files) to appropriate locations under ^$(PREFIX). + @echo. + @echo A 'tests' target is supported to build the test programs. + @echo ====== + @echo. diff --git a/MSVC_NMake/install.mak b/MSVC_NMake/install.mak new file mode 100644 index 0000000..cf056eb --- /dev/null +++ b/MSVC_NMake/install.mak @@ -0,0 +1,24 @@ +# NMake Makefile snippet for copying the built libraries, utilities and headers to +# a path under $(PREFIX). + +install: all + @if not exist $(PREFIX)\bin\ mkdir $(PREFIX)\bin + @if not exist $(PREFIX)\lib\glibmm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\include\ mkdir $(PREFIX)\lib\glibmm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\include + @if not exist $(PREFIX)\include\glibmm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\glibmm\private\ @mkdir $(PREFIX)\include\glibmm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\glibmm\private + @if not exist $(PREFIX)\lib\giomm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\include\ mkdir $(PREFIX)\lib\giomm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\include + @if not exist $(PREFIX)\include\giomm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\giomm\private\ @mkdir $(PREFIX)\include\giomm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\giomm\private + @copy /b $(CFG)\$(PLAT)\$(GLIBMM_LIBNAME).dll $(PREFIX)\bin + @copy /b $(CFG)\$(PLAT)\$(GLIBMM_LIBNAME).pdb $(PREFIX)\bin + @copy /b $(CFG)\$(PLAT)\$(GLIBMM_LIBNAME).lib $(PREFIX)\lib + @copy /b $(CFG)\$(PLAT)\$(GIOMM_LIBNAME).dll $(PREFIX)\bin + @copy /b $(CFG)\$(PLAT)\$(GIOMM_LIBNAME).pdb $(PREFIX)\bin + @copy /b $(CFG)\$(PLAT)\$(GIOMM_LIBNAME).lib $(PREFIX)\lib + @copy ..\glib\glibmm.h "$(PREFIX)\include\glibmm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\" + @copy ..\gio\giomm.h "$(PREFIX)\include\giomm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\" + @for %h in ($(glibmm_files_all_h)) do @copy ..\glib\glibmm\%h "$(PREFIX)\include\glibmm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\glibmm\%h" + @for %h in ($(glibmm_generated_private_headers)) do @copy ..\glib\glibmm\private\%h "$(PREFIX)\include\glibmm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\glibmm\private\%h" + @for %h in ($(glibmm_files_extra_ph_int)) do @copy ..\glib\glibmm\%h "$(PREFIX)\include\glibmm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\glibmm\%h" + @for %h in ($(giomm_generated_headers) $(giomm_files_extra_h)) do @copy ..\gio\giomm\%h "$(PREFIX)\include\giomm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\giomm\%h" + @for %h in ($(giomm_generated_private_headers)) do @copy ..\gio\giomm\private\%h "$(PREFIX)\include\giomm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\giomm\private\%h" + @copy ".\glibmm\glibmmconfig.h" "$(PREFIX)\lib\glibmm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\include\" + @copy ".\giomm\giommconfig.h" "$(PREFIX)\lib\giomm-$(GLIBMM_MAJOR_VERSION).$(GLIBMM_MINOR_VERSION)\include\" diff --git a/MSVC_Net2017/compose.vcxproj b/MSVC_Net2017/compose.vcxproj deleted file mode 100644 index 38cb404..0000000 --- a/MSVC_Net2017/compose.vcxproj +++ /dev/null @@ -1,192 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - compose - {D1C74410-023C-48DE-B636-E8B6D177C306} - compose - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - compose - compose - compose - compose - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/compose.vcxproj.filters b/MSVC_Net2017/compose.vcxproj.filters deleted file mode 100644 index 252ebc2..0000000 --- a/MSVC_Net2017/compose.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/dispatcher.vcxproj b/MSVC_Net2017/dispatcher.vcxproj deleted file mode 100644 index 2e79b92..0000000 --- a/MSVC_Net2017/dispatcher.vcxproj +++ /dev/null @@ -1,192 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - dispatcher - {129ECC08-6D30-4884-B824-4AF96EF0A45C} - dispatcher - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - dispatcher - dispatcher - dispatcher - dispatcher - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/dispatcher.vcxproj.filters b/MSVC_Net2017/dispatcher.vcxproj.filters deleted file mode 100644 index c7d81a0..0000000 --- a/MSVC_Net2017/dispatcher.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/dispatcher2.vcxproj b/MSVC_Net2017/dispatcher2.vcxproj deleted file mode 100644 index a9f8e25..0000000 --- a/MSVC_Net2017/dispatcher2.vcxproj +++ /dev/null @@ -1,191 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - dispatcher2 - {18A82706-B645-4DF5-AB09-06B90128BAC5} - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - dispatcher2 - dispatcher2 - dispatcher2 - dispatcher2 - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/dispatcher2.vcxproj.filters b/MSVC_Net2017/dispatcher2.vcxproj.filters deleted file mode 100644 index b53d4e9..0000000 --- a/MSVC_Net2017/dispatcher2.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/filelist.am b/MSVC_Net2017/filelist.am deleted file mode 100644 index e22b371..0000000 --- a/MSVC_Net2017/filelist.am +++ /dev/null @@ -1,49 +0,0 @@ -## This file is part of glibmm. - -msvc_net2017_data = \ - glibmm.sln \ - glibmm-build-defines.props \ - glibmm-install.props \ - glibmm-version-paths.props \ - gendef/gendef.cc \ - gendef.vcxproj \ - gendef.vcxproj.filters \ - glibmm.vcxproj \ - glibmm.vcxproj.filters \ - glibmm/glibmmconfig.h \ - glibmm/glibmm.rc \ - giomm.vcxproj \ - giomm.vcxproj.filters \ - giomm/giommconfig.h \ - giomm/giomm.rc \ - giomm_simple.vcxproj \ - giomm_simple.vcxproj.filters \ - glibmm_value.vcxproj \ - glibmm_value.vcxproj.filters \ - compose.vcxproj \ - compose.vcxproj.filters \ - dispatcher.vcxproj \ - dispatcher.vcxproj.filters \ - dispatcher2.vcxproj \ - dispatcher2.vcxproj.filters \ - markup.vcxproj \ - markup.vcxproj.filters \ - options.vcxproj \ - options.vcxproj.filters \ - thread.vcxproj \ - thread.vcxproj.filters \ - threadpool.vcxproj \ - threadpool.vcxproj.filters \ - keyfile.vcxproj \ - keyfile.vcxproj.filters \ - properties.vcxproj \ - properties.vcxproj.filters \ - regex.vcxproj \ - regex.vcxproj.filters \ - resolver.vcxproj \ - resolver.vcxproj.filters \ - socket-client.vcxproj \ - socket-client.vcxproj.filters \ - socket-server.vcxproj \ - socket-server.vcxproj.filters \ - install.vcxproj diff --git a/MSVC_Net2017/gendef.vcxproj b/MSVC_Net2017/gendef.vcxproj deleted file mode 100644 index bfc870b..0000000 --- a/MSVC_Net2017/gendef.vcxproj +++ /dev/null @@ -1,164 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {07324745-C9BE-4D65-B08A-9C88188C0C28} - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebug - Level3 - EditAndContinue - - - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - ;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - - - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebug - Level3 - ProgramDatabase - - - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - ;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - - - true - Console - true - true - false - - - MachineX64 - - - - - - - - - diff --git a/MSVC_Net2017/gendef.vcxproj.filters b/MSVC_Net2017/gendef.vcxproj.filters deleted file mode 100644 index d8cb693..0000000 --- a/MSVC_Net2017/gendef.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/giomm.vcxproj b/MSVC_Net2017/giomm.vcxproj deleted file mode 100644 index 419673a..0000000 --- a/MSVC_Net2017/giomm.vcxproj +++ /dev/null @@ -1,460 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - giomm - {EE6C0430-C2C9-425C-8EBA-963FAC3E9832} - - - - DynamicLibrary - MultiByte - v141 - - - DynamicLibrary - MultiByte - v141 - - - DynamicLibrary - MultiByte - v141 - - - DynamicLibrary - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - - - - %(AdditionalOptions) - Disabled - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - _DEBUG;$(GioMMBuildDefs);%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - - - Generate giomm def file - $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(ProjectName)$(DebugDllSuffix).dll $(IntDir)*.obj - - - gio-2.0.lib;$(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - $(OutDir)\$(ProjectName)$(DebugDllSuffix).dll - $(TargetDir)$(ProjectName)$(DebugDllSuffix).lib - $(IntDir)\$(ProjectName).def - true - false - - - - - - - X64 - - - %(AdditionalOptions) - Disabled - .;../..;../../glib;../../gio;$(SolutionDir)\glibmm;..\..\..\vs10\x64\include\gio-win32-2.0;..\..\..\vs10\x64\include\glib-2.0;..\..\..\vs10\x64\lib\glib-2.0\include;..\..\..\vs10\x64\include\sigc++-2.0;..\..\..\vs10\x64\lib\sigc++-2.0\include;..\..\..\vs10\x64\include;%(AdditionalIncludeDirectories) - _DEBUG;$(GioMMBuildDefs);%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - - - Generate giomm def file - $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(ProjectName)$(DebugDllSuffix).dll $(IntDir)*.obj - - - gio-2.0.lib;$(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - $(OutDir)\$(ProjectName)$(DebugDllSuffix).dll - $(TargetDir)$(ProjectName)$(DebugDllSuffix).lib - $(IntDir)\$(ProjectName).def - true - false - - - MachineX64 - - - - - %(AdditionalOptions) - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - $(GioMMBuildDefs);%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - - - Generate giomm def file - $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(ProjectName)$(ReleaseDllSuffix).dll $(IntDir)*.obj - - - gio-2.0.lib;$(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - $(OutDir)\$(ProjectName)$(ReleaseDllSuffix).dll - $(TargetDir)$(ProjectName)$(ReleaseDllSuffix).lib - $(IntDir)\$(ProjectName).def - false - true - $(OutDir)\$(ProjectName)$(ReleaseDllSuffix).pdb - true - - - - - - - X64 - - - %(AdditionalOptions) - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - $(GioMMBuildDefs);%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - - - Generate giomm def file - $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(ProjectName)$(ReleaseDllSuffix).dll $(IntDir)*.obj - - - gio-2.0.lib;$(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - $(OutDir)\$(ProjectName)$(ReleaseDllSuffix).dll - $(TargetDir)$(ProjectName)$(ReleaseDllSuffix).lib - $(IntDir)\$(ProjectName).def - false - true - $(OutDir)\$(ProjectName)$(ReleaseDllSuffix).pdb - true - - - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/giomm.vcxproj.filters b/MSVC_Net2017/giomm.vcxproj.filters deleted file mode 100644 index 5ed29e3..0000000 --- a/MSVC_Net2017/giomm.vcxproj.filters +++ /dev/null @@ -1,282 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - - - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Source Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Source Files - Source Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Source Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - - - Resource Files - - - diff --git a/MSVC_Net2017/giomm_simple.vcxproj b/MSVC_Net2017/giomm_simple.vcxproj deleted file mode 100644 index bb945b4..0000000 --- a/MSVC_Net2017/giomm_simple.vcxproj +++ /dev/null @@ -1,192 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - tests_giomm_simple - {F4F66980-51D4-4CC2-A529-9AD2C9F7D143} - tests_giomm_simple - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - giomm_simple - giomm_simple - giomm_simple - giomm_simple - - - - Disabled - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {ee6c0430-c2c9-425c-8eba-963fac3e9832} - false - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/giomm_simple.vcxproj.filters b/MSVC_Net2017/giomm_simple.vcxproj.filters deleted file mode 100644 index 6f87c63..0000000 --- a/MSVC_Net2017/giomm_simple.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/glibmm-build-defines.props b/MSVC_Net2017/glibmm-build-defines.props deleted file mode 100644 index 91d6088..0000000 --- a/MSVC_Net2017/glibmm-build-defines.props +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - SIZEOF_WCHAR_T=2;GLIBMM_BUILD - GIOMM_BUILD - sigc-vc$(VSVer)0-$(SigCMajorVersion)_0.lib - sigc-vc$(VSVer)0-d-$(SigCMajorVersion)_0.lib - - - <_PropertySheetDisplayName>glibmmbuilddefinesprops - $(SolutionDir)$(Configuration)\$(PlatformName)\bin\ - $(SolutionDir)$(Configuration)\$(PlatformName)\obj\$(ProjectName)\ - - - - .\glibmm;..;..\glib;$(GlibEtcInstallRoot)\include\sigc++-$(SigCMajorVersion).0;$(GlibEtcInstallRoot)\lib\sigc++-$(SigCMajorVersion).0\include;$(GlibEtcInstallRoot)\include\gio-win32-2.0;$(GlibEtcInstallRoot)\include\glib-2.0;$(GlibEtcInstallRoot)\lib\glib-2.0\include;$(GlibEtcInstallRoot)\include;%(AdditionalIncludeDirectories) - msvc_recommended_pragmas.h;%(ForcedIncludeFiles) - true - /d2Zi+ %(AdditionalOptions) - - - glib-2.0.lib;gobject-2.0.lib;gmodule-2.0.lib;%(AdditionalDependencies) - $(GlibEtcInstallRoot)\lib;%(AdditionalLibraryDirectories) - - - - - $(GLibMMBuildDefs) - - - $(GioMMBuildDefs) - - - $(CPPDepLibsRelease) - - - $(CPPDepLibsDebug) - - - diff --git a/MSVC_Net2017/glibmm-install.props b/MSVC_Net2017/glibmm-install.props deleted file mode 100644 index e4f6339..0000000 --- a/MSVC_Net2017/glibmm-install.props +++ /dev/null @@ -1,401 +0,0 @@ - - - - - - - $(SolutionDir)$(Configuration)\$(Platform)\bin - $(BinDir)\glibmm$(ReleaseDllSuffix).dll;$(BinDir)\giomm$(ReleaseDllSuffix).dll - $(BinDir)\glibmm$(DebugDllSuffix).dll;$(BinDir)\giomm$(DebugDllSuffix).dll - -mkdir $(CopyDir) -mkdir $(CopyDir)\bin -copy $(BinDir)\glibmm-vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion).dll $(CopyDir)\bin -copy $(BinDir)\glibmm-vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion).pdb $(CopyDir)\bin -copy $(BinDir)\giomm-vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion).dll $(CopyDir)\bin -copy $(BinDir)\giomm-vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion).pdb $(CopyDir)\bin - -mkdir $(CopyDir)\lib\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\include -mkdir $(CopyDir)\lib\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\include -copy $(BinDir)\glibmm-vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion).lib $(CopyDir)\lib -copy $(BinDir)\giomm-vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion).lib $(CopyDir)\lib - -mkdir $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -mkdir $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\glib\glibmm.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion) -copy ..\gio\giomm.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion) - -copy ..\glib\glibmm\balancedtree.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\base64.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\binding.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\bytes.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\bytearray.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\checksum.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\class.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\containerhandle_shared.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\convert.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\date.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\datetime.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\debug.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\enums.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\dispatcher.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\error.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\exception.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\exceptionhandler.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\extraclassinit.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\fileutils.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\i18n-lib.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\i18n.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\init.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\interface.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\iochannel.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\keyfile.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\main.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\markup.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\miscutils.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\module.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\nodetree.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\object.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\objectbase.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\optioncontext.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\optionentry.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\optiongroup.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\pattern.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\priorities.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\property.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\propertyproxy.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\propertyproxy_base.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\quark.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\random.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\refptr.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\regex.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\shell.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\signalproxy.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\signalproxy_connectionnode.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\spawn.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\stringutils.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\timer.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\timeval.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\timezone.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\unicode.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\uriutils.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\ustring.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\utility.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\variant.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\variantdict.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\variantiter.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\varianttype.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\variant_basictypes.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\value.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\value_basictypes.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\value_custom.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\vectorutils.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\weakref.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\wrap.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm -copy ..\glib\glibmm\wrap_init.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm - -copy ..\glib\glibmm\private\balancedtree_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\binding_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\bytes_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\bytearray_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\checksum_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\convert_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\date_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\datetime_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\enums_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\fileutils_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\interface_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\iochannel_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\keyfile_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\markup_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\miscutils_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\module_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\nodetree_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\object_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\optioncontext_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\optionentry_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\optiongroup_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\regex_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\shell_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\spawn_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\timezone_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\unicode_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\uriutils_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\variant_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\variantdict_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\variantiter_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private -copy ..\glib\glibmm\private\varianttype_p.h $(CopyDir)\include\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\glibmm\private - -copy ..\gio\giomm\action.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\actiongroup.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\actionmap.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\applaunchcontext.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\appinfo.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\application.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\applicationcommandline.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\asyncinitable.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\asyncresult.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\bufferedinputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\bufferedoutputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\cancellable.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\charsetconverter.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\contenttype.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\converter.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\converterinputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\converteroutputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\credentials.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\datainputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dataoutputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusactiongroup.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusaddress.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusauthobserver.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusconnection.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbuserror.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbuserrorutils.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusinterface.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusinterfaceskeleton.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusinterfacevtable.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusintrospection.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusmenumodel.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusmessage.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusmethodinvocation.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusobject.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusownname.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusproxy.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusserver.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbussubtreevtable.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbusutils.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\dbuswatchname.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\drive.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\emblem.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\emblemedicon.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\enums.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\error.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\file.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\fileattributeinfo.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\fileattributeinfolist.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\fileenumerator.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\fileicon.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\fileinfo.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\fileinputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\fileiostream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\filemonitor.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\filenamecompleter.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\fileoutputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\filterinputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\filteroutputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\icon.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\inetaddress.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\inetsocketaddress.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\init.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\initable.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\inputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\iostream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\listmodel.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\liststore.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\loadableicon.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\memoryinputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\memoryoutputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\menuattributeiter.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\menulinkiter.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\menu.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\menuitem.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\menumodel.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\mount.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\mountoperation.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\networkaddress.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\networkmonitor.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\networkservice.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\notification.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\outputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\permission.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\pollableinputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\pollableoutputstream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\propertyaction.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\proxy.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\proxyaddress.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\proxyresolver.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\remoteactiongroup.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\resolver.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\resource.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\seekable.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\settings.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\settingsschema.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\settingsschemakey.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\settingsschemasource.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\simpleaction.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\simpleactiongroup.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\simpleiostream.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\simplepermission.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socket.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socketaddress.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socketaddressenumerator.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socketclient.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socketconnectable.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socketconnection.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socketcontrolmessage.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socketlistener.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socketservice.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\socketsource.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\srvtarget.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\tcpconnection.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\tcpwrapperconnection.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\threadedsocketservice.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\themedicon.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\tlscertificate.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\tlsclientconnection.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\tlsconnection.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\tlsdatabase.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\tlsinteraction.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\tlspassword.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\tlsserverconnection.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\volume.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\volumemonitor.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\wrap_init.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\zlibdecompressor.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm -copy ..\gio\giomm\zlibcompressor.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm - -copy ..\gio\giomm\private\action_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\actiongroup_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\actionmap_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\appinfo_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\applaunchcontext_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\application_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\applicationcommandline_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\asyncinitable_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\asyncresult_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\bufferedinputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\bufferedoutputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\cancellable_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\charsetconverter_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\converter_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\converterinputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\converteroutputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\credentials_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\datainputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dataoutputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusactiongroup_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusaddress_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusauthobserver_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusconnection_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbuserror_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbuserrorutils_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusinterface_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusinterfaceskeleton_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusinterfacevtable_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusintrospection_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusmenumodel_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusmessage_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusmethodinvocation_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusobject_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusownname_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusproxy_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusserver_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbussubtreevtable_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbusutils_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\dbuswatchname_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\drive_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\emblem_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\emblemedicon_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\enums_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\error_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\file_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\fileattributeinfo_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\fileattributeinfolist_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\fileenumerator_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\fileicon_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\fileinfo_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\fileinputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\fileiostream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\filemonitor_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\filenamecompleter_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\fileoutputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\filterinputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\filteroutputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\icon_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\inetaddress_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\inetsocketaddress_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\initable_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\inputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\iostream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\listmodel_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\liststore_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\loadableicon_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\memoryinputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\memoryoutputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\menu_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\menuattributeiter_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\menuitem_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\menulinkiter_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\menumodel_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\mount_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\mountoperation_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\networkaddress_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\networkmonitor_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\networkservice_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\notification_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\outputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\pollableinputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\pollableoutputstream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\propertyaction_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\proxy_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\proxyaddress_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\proxyresolver_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\remoteactiongroup_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\resolver_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\resource_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\seekable_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\settings_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\settingsschema_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\settingsschemakey_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\settingsschemasource_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\simpleaction_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\simpleactiongroup_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\simpleiostream_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\socket_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\socketaddress_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\socketaddressenumerator_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\socketclient_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\socketconnectable_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\socketconnection_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\socketcontrolmessage_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\socketlistener_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\socketservice_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\srvtarget_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\tcpconnection_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\tcpwrapperconnection_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\themedicon_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\threadedsocketservice_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\tlscertificate_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\tlsclientconnection_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\tlsconnection_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\tlsdatabase_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\tlsinteraction_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\tlspassword_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\tlsserverconnection_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\volume_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\volumemonitor_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\zlibcompressor_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy ..\gio\giomm\private\zlibdecompressor_p.h $(CopyDir)\include\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\giomm\private -copy .\glibmm\glibmmconfig.h $(CopyDir)\lib\glibmm-$(ApiMajorVersion).$(ApiMinorVersion)\include -copy .\giomm\giommconfig.h $(CopyDir)\lib\giomm-$(ApiMajorVersion).$(ApiMinorVersion)\include - - - - <_PropertySheetDisplayName>glibmminstallprops - - - - $(BinDir) - - - $(InstalledReleaseDlls) - - - $(InstalledDebugDlls) - - - $(GLibmmDoInstall) - - - diff --git a/MSVC_Net2017/glibmm-version-paths.props b/MSVC_Net2017/glibmm-version-paths.props deleted file mode 100644 index 28b8cb9..0000000 --- a/MSVC_Net2017/glibmm-version-paths.props +++ /dev/null @@ -1,46 +0,0 @@ - - - - 15 - $(SolutionDir)\..\..\vs$(VSVer)\$(Platform) - $(GlibEtcInstallRoot) - $(SolutionDir)$(Configuration)\$(Platform)\obj\$(ProjectName)\ - 2 - 54 - -vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion) - -vc$(VSVer)0-d-$(ApiMajorVersion)_$(ApiMinorVersion) - 3 - - - <_PropertySheetDisplayName>glibmmversionpathsprops - - - - $(VSVer) - - - $(GlibEtcInstallRoot) - - - $(CopyDir) - - - $(DefDir) - - - $(ApiMajorVersion) - - - $(ApiMinorVersion) - - - $(ReleaseDllSuffix) - - - $(DebugDllSuffix) - - - $(SigCMajorVersion) - - - diff --git a/MSVC_Net2017/glibmm.sln b/MSVC_Net2017/glibmm.sln deleted file mode 100644 index 4467ac1..0000000 --- a/MSVC_Net2017/glibmm.sln +++ /dev/null @@ -1,185 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glibmm", "glibmm.vcxproj", "{58B2B53C-C4FF-47FD-817B-095E45B7F7D4}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gendef", "gendef.vcxproj", "{07324745-C9BE-4D65-B08A-9C88188C0C28}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "markup", "markup.vcxproj", "{6300FCFA-97F1-4967-802E-E354D95DB0EB}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glibmm_value", "glibmm_value.vcxproj", "{22277003-3228-486E-A6A8-994B8B13AF30}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dispatcher", "dispatcher.vcxproj", "{129ECC08-6D30-4884-B824-4AF96EF0A45C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dispatcher2", "dispatcher2.vcxproj", "{18A82706-B645-4DF5-AB09-06B90128BAC5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "options", "options.vcxproj", "{46962B9A-C5E9-4863-9408-97514D63F420}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "giomm", "giomm.vcxproj", "{EE6C0430-C2C9-425C-8EBA-963FAC3E9832}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "giomm_simple", "giomm_simple.vcxproj", "{F4F66980-51D4-4CC2-A529-9AD2C9F7D143}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "keyfile", "keyfile.vcxproj", "{569A24AB-8D81-4427-B40D-85485AA7F3CD}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "properties", "properties.vcxproj", "{206CC821-8BE3-4455-B09E-63F93E30F20C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "regex", "regex.vcxproj", "{7374A5A1-4E74-44BD-918C-FDF80B97FA3F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "resolver", "resolver.vcxproj", "{E4D320F1-7D2D-43AF-874F-14524220EF92}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "socket-client", "socket-client.vcxproj", "{1E38D900-90AC-4E18-B34C-7B08E3383087}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "socket-server", "socket-server.vcxproj", "{7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "compose", "compose.vcxproj", "{D1C74410-023C-48DE-B636-E8B6D177C306}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "install", "install.vcxproj", "{2093D218-190E-4194-9421-3BA7CBF33B10}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4}.Debug|Win32.ActiveCfg = Debug|Win32 - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4}.Debug|Win32.Build.0 = Debug|Win32 - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4}.Debug|x64.ActiveCfg = Debug|x64 - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4}.Debug|x64.Build.0 = Debug|x64 - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4}.Release|Win32.ActiveCfg = Release|Win32 - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4}.Release|Win32.Build.0 = Release|Win32 - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4}.Release|x64.ActiveCfg = Release|x64 - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4}.Release|x64.Build.0 = Release|x64 - {07324745-C9BE-4D65-B08A-9C88188C0C28}.Debug|Win32.ActiveCfg = Debug|Win32 - {07324745-C9BE-4D65-B08A-9C88188C0C28}.Debug|Win32.Build.0 = Debug|Win32 - {07324745-C9BE-4D65-B08A-9C88188C0C28}.Debug|x64.ActiveCfg = Debug|x64 - {07324745-C9BE-4D65-B08A-9C88188C0C28}.Debug|x64.Build.0 = Debug|x64 - {07324745-C9BE-4D65-B08A-9C88188C0C28}.Release|Win32.ActiveCfg = Release|Win32 - {07324745-C9BE-4D65-B08A-9C88188C0C28}.Release|Win32.Build.0 = Release|Win32 - {07324745-C9BE-4D65-B08A-9C88188C0C28}.Release|x64.ActiveCfg = Release|x64 - {07324745-C9BE-4D65-B08A-9C88188C0C28}.Release|x64.Build.0 = Release|x64 - {6300FCFA-97F1-4967-802E-E354D95DB0EB}.Debug|Win32.ActiveCfg = Debug|Win32 - {6300FCFA-97F1-4967-802E-E354D95DB0EB}.Debug|Win32.Build.0 = Debug|Win32 - {6300FCFA-97F1-4967-802E-E354D95DB0EB}.Debug|x64.ActiveCfg = Debug|x64 - {6300FCFA-97F1-4967-802E-E354D95DB0EB}.Debug|x64.Build.0 = Debug|x64 - {6300FCFA-97F1-4967-802E-E354D95DB0EB}.Release|Win32.ActiveCfg = Release|Win32 - {6300FCFA-97F1-4967-802E-E354D95DB0EB}.Release|Win32.Build.0 = Release|Win32 - {6300FCFA-97F1-4967-802E-E354D95DB0EB}.Release|x64.ActiveCfg = Release|x64 - {6300FCFA-97F1-4967-802E-E354D95DB0EB}.Release|x64.Build.0 = Release|x64 - {22277003-3228-486E-A6A8-994B8B13AF30}.Debug|Win32.ActiveCfg = Debug|Win32 - {22277003-3228-486E-A6A8-994B8B13AF30}.Debug|Win32.Build.0 = Debug|Win32 - {22277003-3228-486E-A6A8-994B8B13AF30}.Debug|x64.ActiveCfg = Debug|x64 - {22277003-3228-486E-A6A8-994B8B13AF30}.Debug|x64.Build.0 = Debug|x64 - {22277003-3228-486E-A6A8-994B8B13AF30}.Release|Win32.ActiveCfg = Release|Win32 - {22277003-3228-486E-A6A8-994B8B13AF30}.Release|Win32.Build.0 = Release|Win32 - {22277003-3228-486E-A6A8-994B8B13AF30}.Release|x64.ActiveCfg = Release|x64 - {22277003-3228-486E-A6A8-994B8B13AF30}.Release|x64.Build.0 = Release|x64 - {129ECC08-6D30-4884-B824-4AF96EF0A45C}.Debug|Win32.ActiveCfg = Debug|Win32 - {129ECC08-6D30-4884-B824-4AF96EF0A45C}.Debug|Win32.Build.0 = Debug|Win32 - {129ECC08-6D30-4884-B824-4AF96EF0A45C}.Debug|x64.ActiveCfg = Debug|x64 - {129ECC08-6D30-4884-B824-4AF96EF0A45C}.Debug|x64.Build.0 = Debug|x64 - {129ECC08-6D30-4884-B824-4AF96EF0A45C}.Release|Win32.ActiveCfg = Release|Win32 - {129ECC08-6D30-4884-B824-4AF96EF0A45C}.Release|Win32.Build.0 = Release|Win32 - {129ECC08-6D30-4884-B824-4AF96EF0A45C}.Release|x64.ActiveCfg = Release|x64 - {129ECC08-6D30-4884-B824-4AF96EF0A45C}.Release|x64.Build.0 = Release|x64 - {18A82706-B645-4DF5-AB09-06B90128BAC5}.Debug|Win32.ActiveCfg = Debug|Win32 - {18A82706-B645-4DF5-AB09-06B90128BAC5}.Debug|Win32.Build.0 = Debug|Win32 - {18A82706-B645-4DF5-AB09-06B90128BAC5}.Debug|x64.ActiveCfg = Debug|x64 - {18A82706-B645-4DF5-AB09-06B90128BAC5}.Debug|x64.Build.0 = Debug|x64 - {18A82706-B645-4DF5-AB09-06B90128BAC5}.Release|Win32.ActiveCfg = Release|Win32 - {18A82706-B645-4DF5-AB09-06B90128BAC5}.Release|Win32.Build.0 = Release|Win32 - {18A82706-B645-4DF5-AB09-06B90128BAC5}.Release|x64.ActiveCfg = Release|x64 - {18A82706-B645-4DF5-AB09-06B90128BAC5}.Release|x64.Build.0 = Release|x64 - {46962B9A-C5E9-4863-9408-97514D63F420}.Debug|Win32.ActiveCfg = Debug|Win32 - {46962B9A-C5E9-4863-9408-97514D63F420}.Debug|Win32.Build.0 = Debug|Win32 - {46962B9A-C5E9-4863-9408-97514D63F420}.Debug|x64.ActiveCfg = Debug|x64 - {46962B9A-C5E9-4863-9408-97514D63F420}.Debug|x64.Build.0 = Debug|x64 - {46962B9A-C5E9-4863-9408-97514D63F420}.Release|Win32.ActiveCfg = Release|Win32 - {46962B9A-C5E9-4863-9408-97514D63F420}.Release|Win32.Build.0 = Release|Win32 - {46962B9A-C5E9-4863-9408-97514D63F420}.Release|x64.ActiveCfg = Release|x64 - {46962B9A-C5E9-4863-9408-97514D63F420}.Release|x64.Build.0 = Release|x64 - {EE6C0430-C2C9-425C-8EBA-963FAC3E9832}.Debug|Win32.ActiveCfg = Debug|Win32 - {EE6C0430-C2C9-425C-8EBA-963FAC3E9832}.Debug|Win32.Build.0 = Debug|Win32 - {EE6C0430-C2C9-425C-8EBA-963FAC3E9832}.Debug|x64.ActiveCfg = Debug|x64 - {EE6C0430-C2C9-425C-8EBA-963FAC3E9832}.Debug|x64.Build.0 = Debug|x64 - {EE6C0430-C2C9-425C-8EBA-963FAC3E9832}.Release|Win32.ActiveCfg = Release|Win32 - {EE6C0430-C2C9-425C-8EBA-963FAC3E9832}.Release|Win32.Build.0 = Release|Win32 - {EE6C0430-C2C9-425C-8EBA-963FAC3E9832}.Release|x64.ActiveCfg = Release|x64 - {EE6C0430-C2C9-425C-8EBA-963FAC3E9832}.Release|x64.Build.0 = Release|x64 - {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Debug|Win32.ActiveCfg = Debug|Win32 - {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Debug|Win32.Build.0 = Debug|Win32 - {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Debug|x64.ActiveCfg = Debug|x64 - {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Debug|x64.Build.0 = Debug|x64 - {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Release|Win32.ActiveCfg = Release|Win32 - {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Release|Win32.Build.0 = Release|Win32 - {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Release|x64.ActiveCfg = Release|x64 - {F4F66980-51D4-4CC2-A529-9AD2C9F7D143}.Release|x64.Build.0 = Release|x64 - {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Debug|Win32.ActiveCfg = Debug|Win32 - {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Debug|Win32.Build.0 = Debug|Win32 - {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Debug|x64.ActiveCfg = Debug|x64 - {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Debug|x64.Build.0 = Debug|x64 - {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Release|Win32.ActiveCfg = Release|Win32 - {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Release|Win32.Build.0 = Release|Win32 - {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Release|x64.ActiveCfg = Release|x64 - {569A24AB-8D81-4427-B40D-85485AA7F3CD}.Release|x64.Build.0 = Release|x64 - {206CC821-8BE3-4455-B09E-63F93E30F20C}.Debug|Win32.ActiveCfg = Debug|Win32 - {206CC821-8BE3-4455-B09E-63F93E30F20C}.Debug|Win32.Build.0 = Debug|Win32 - {206CC821-8BE3-4455-B09E-63F93E30F20C}.Debug|x64.ActiveCfg = Debug|x64 - {206CC821-8BE3-4455-B09E-63F93E30F20C}.Debug|x64.Build.0 = Debug|x64 - {206CC821-8BE3-4455-B09E-63F93E30F20C}.Release|Win32.ActiveCfg = Release|Win32 - {206CC821-8BE3-4455-B09E-63F93E30F20C}.Release|Win32.Build.0 = Release|Win32 - {206CC821-8BE3-4455-B09E-63F93E30F20C}.Release|x64.ActiveCfg = Release|x64 - {206CC821-8BE3-4455-B09E-63F93E30F20C}.Release|x64.Build.0 = Release|x64 - {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Debug|Win32.ActiveCfg = Debug|Win32 - {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Debug|Win32.Build.0 = Debug|Win32 - {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Debug|x64.ActiveCfg = Debug|x64 - {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Debug|x64.Build.0 = Debug|x64 - {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Release|Win32.ActiveCfg = Release|Win32 - {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Release|Win32.Build.0 = Release|Win32 - {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Release|x64.ActiveCfg = Release|x64 - {7374A5A1-4E74-44BD-918C-FDF80B97FA3F}.Release|x64.Build.0 = Release|x64 - {E4D320F1-7D2D-43AF-874F-14524220EF92}.Debug|Win32.ActiveCfg = Debug|Win32 - {E4D320F1-7D2D-43AF-874F-14524220EF92}.Debug|Win32.Build.0 = Debug|Win32 - {E4D320F1-7D2D-43AF-874F-14524220EF92}.Debug|x64.ActiveCfg = Debug|x64 - {E4D320F1-7D2D-43AF-874F-14524220EF92}.Debug|x64.Build.0 = Debug|x64 - {E4D320F1-7D2D-43AF-874F-14524220EF92}.Release|Win32.ActiveCfg = Release|Win32 - {E4D320F1-7D2D-43AF-874F-14524220EF92}.Release|Win32.Build.0 = Release|Win32 - {E4D320F1-7D2D-43AF-874F-14524220EF92}.Release|x64.ActiveCfg = Release|x64 - {E4D320F1-7D2D-43AF-874F-14524220EF92}.Release|x64.Build.0 = Release|x64 - {1E38D900-90AC-4E18-B34C-7B08E3383087}.Debug|Win32.ActiveCfg = Debug|Win32 - {1E38D900-90AC-4E18-B34C-7B08E3383087}.Debug|Win32.Build.0 = Debug|Win32 - {1E38D900-90AC-4E18-B34C-7B08E3383087}.Debug|x64.ActiveCfg = Debug|x64 - {1E38D900-90AC-4E18-B34C-7B08E3383087}.Debug|x64.Build.0 = Debug|x64 - {1E38D900-90AC-4E18-B34C-7B08E3383087}.Release|Win32.ActiveCfg = Release|Win32 - {1E38D900-90AC-4E18-B34C-7B08E3383087}.Release|Win32.Build.0 = Release|Win32 - {1E38D900-90AC-4E18-B34C-7B08E3383087}.Release|x64.ActiveCfg = Release|x64 - {1E38D900-90AC-4E18-B34C-7B08E3383087}.Release|x64.Build.0 = Release|x64 - {7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20}.Debug|Win32.ActiveCfg = Debug|Win32 - {7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20}.Debug|Win32.Build.0 = Debug|Win32 - {7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20}.Debug|x64.ActiveCfg = Debug|x64 - {7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20}.Debug|x64.Build.0 = Debug|x64 - {7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20}.Release|Win32.ActiveCfg = Release|Win32 - {7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20}.Release|Win32.Build.0 = Release|Win32 - {7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20}.Release|x64.ActiveCfg = Release|x64 - {7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20}.Release|x64.Build.0 = Release|x64 - {D1C74410-023C-48DE-B636-E8B6D177C306}.Debug|Win32.ActiveCfg = Debug|Win32 - {D1C74410-023C-48DE-B636-E8B6D177C306}.Debug|Win32.Build.0 = Debug|Win32 - {D1C74410-023C-48DE-B636-E8B6D177C306}.Debug|x64.ActiveCfg = Debug|x64 - {D1C74410-023C-48DE-B636-E8B6D177C306}.Debug|x64.Build.0 = Debug|x64 - {D1C74410-023C-48DE-B636-E8B6D177C306}.Release|Win32.ActiveCfg = Release|Win32 - {D1C74410-023C-48DE-B636-E8B6D177C306}.Release|Win32.Build.0 = Release|Win32 - {D1C74410-023C-48DE-B636-E8B6D177C306}.Release|x64.ActiveCfg = Release|x64 - {D1C74410-023C-48DE-B636-E8B6D177C306}.Release|x64.Build.0 = Release|x64 - {2093D218-190E-4194-9421-3BA7CBF33B10}.Debug|Win32.ActiveCfg = Debug|Win32 - {2093D218-190E-4194-9421-3BA7CBF33B10}.Debug|Win32.Build.0 = Debug|Win32 - {2093D218-190E-4194-9421-3BA7CBF33B10}.Debug|x64.ActiveCfg = Debug|x64 - {2093D218-190E-4194-9421-3BA7CBF33B10}.Debug|x64.Build.0 = Debug|x64 - {2093D218-190E-4194-9421-3BA7CBF33B10}.Release|Win32.ActiveCfg = Release|Win32 - {2093D218-190E-4194-9421-3BA7CBF33B10}.Release|Win32.Build.0 = Release|Win32 - {2093D218-190E-4194-9421-3BA7CBF33B10}.Release|x64.ActiveCfg = Release|x64 - {2093D218-190E-4194-9421-3BA7CBF33B10}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/MSVC_Net2017/glibmm.vcxproj b/MSVC_Net2017/glibmm.vcxproj deleted file mode 100644 index e9eb058..0000000 --- a/MSVC_Net2017/glibmm.vcxproj +++ /dev/null @@ -1,345 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - glibmm - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} - glibmm - Win32Proj - - - - DynamicLibrary - MultiByte - v141 - - - DynamicLibrary - MultiByte - v141 - - - DynamicLibrary - MultiByte - v141 - - - DynamicLibrary - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - true - true - true - true - true - true - - - - %(AdditionalOptions) - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;$(GLibMMBuildDefs);%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - Generate glibmm def file - $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(ProjectName)$(DebugDllSuffix).dll $(IntDir)*.obj - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - $(OutDir)\$(ProjectName)$(DebugDllSuffix).dll - $(TargetDir)$(ProjectName)$(DebugDllSuffix).lib - $(IntDir)\$(ProjectName).def - true - false - - - - - - - X64 - - - %(AdditionalOptions) - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;$(GLibMMBuildDefs);%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - Generate glibmm def file - $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(ProjectName)$(DebugDllSuffix).dll $(IntDir)*.obj - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - $(OutDir)\$(ProjectName)$(DebugDllSuffix).dll - $(TargetDir)$(ProjectName)$(DebugDllSuffix).lib - $(IntDir)\$(ProjectName).def - true - false - - - MachineX64 - - - - - %(AdditionalOptions) - %(AdditionalIncludeDirectories) - $(GLibMMBuildDefs);%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - Generate glibmm def file - $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(ProjectName)$(ReleaseDllSuffix).dll $(IntDir)*.obj - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - $(OutDir)\$(ProjectName)$(ReleaseDllSuffix).dll - $(TargetDir)$(ProjectName)$(ReleaseDllSuffix).lib - $(IntDir)\$(ProjectName).def - true - $(OutDir)\$(ProjectName)$(ReleaseDllSuffix).pdb - false - true - - - - - - - X64 - - - %(AdditionalOptions) - %(AdditionalIncludeDirectories) - $(GLibMMBuildDefs);%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - Generate glibmm def file - $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(ProjectName)$(ReleaseDllSuffix).dll $(IntDir)*.obj - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - $(OutDir)\$(ProjectName)$(ReleaseDllSuffix).dll - $(TargetDir)$(ProjectName)$(ReleaseDllSuffix).lib - $(IntDir)\$(ProjectName).def - true - $(OutDir)\$(ProjectName)$(ReleaseDllSuffix).pdb - false - true - - - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {07324745-c9be-4d65-b08a-9c88188c0c28} - false - - - - - - diff --git a/MSVC_Net2017/glibmm.vcxproj.filters b/MSVC_Net2017/glibmm.vcxproj.filters deleted file mode 100644 index f8e2680..0000000 --- a/MSVC_Net2017/glibmm.vcxproj.filters +++ /dev/null @@ -1,154 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - Source Files - - - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - Header Files - - - Resource Files - - - diff --git a/MSVC_Net2017/glibmm_value.vcxproj b/MSVC_Net2017/glibmm_value.vcxproj deleted file mode 100644 index e191a1c..0000000 --- a/MSVC_Net2017/glibmm_value.vcxproj +++ /dev/null @@ -1,189 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - tests_glibmm_value - {22277003-3228-486E-A6A8-994B8B13AF30} - tests_glibmm_value - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - glibmm_value - glibmm_value - glibmm_value - glibmm_value - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/glibmm_value.vcxproj.filters b/MSVC_Net2017/glibmm_value.vcxproj.filters deleted file mode 100644 index 80e9bb7..0000000 --- a/MSVC_Net2017/glibmm_value.vcxproj.filters +++ /dev/null @@ -1,21 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - Source Files - - diff --git a/MSVC_Net2017/install.vcxproj b/MSVC_Net2017/install.vcxproj deleted file mode 100644 index 4b18af2..0000000 --- a/MSVC_Net2017/install.vcxproj +++ /dev/null @@ -1,116 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {2093D218-190E-4194-9421-3BA7CBF33B10} - install - Win32Proj - - - - Utility - MultiByte - true - v141 - - - Utility - MultiByte - v141 - - - Utility - MultiByte - true - v141 - - - Utility - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - - - - - - - - - - - - Installing Build Results... - $(GLibmmDoInstall) - $(InstalledDebugDlls);%(Outputs) - Installing Build Results... - $(GLibmmDoInstall) - $(InstalledDebugDlls);%(Outputs) - Installing Build Results... - $(GLibmmDoInstall) - $(InstalledReleaseDlls);%(Outputs) - Installing Build Results... - $(GLibmmDoInstall) - $(InstalledReleaseDlls);%(Outputs) - - - - - {ee6c0430-c2c9-425c-8eba-963fac3e9832} - false - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/keyfile.vcxproj b/MSVC_Net2017/keyfile.vcxproj deleted file mode 100644 index ed71d95..0000000 --- a/MSVC_Net2017/keyfile.vcxproj +++ /dev/null @@ -1,192 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - keyfile - {569A24AB-8D81-4427-B40D-85485AA7F3CD} - dispatcher - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - keyfile - keyfile - keyfile - keyfile - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/keyfile.vcxproj.filters b/MSVC_Net2017/keyfile.vcxproj.filters deleted file mode 100644 index dea2aa9..0000000 --- a/MSVC_Net2017/keyfile.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/markup.vcxproj b/MSVC_Net2017/markup.vcxproj deleted file mode 100644 index 60fb2c4..0000000 --- a/MSVC_Net2017/markup.vcxproj +++ /dev/null @@ -1,191 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - markup - {6300FCFA-97F1-4967-802E-E354D95DB0EB} - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - markup - markup - markup - markup - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/markup.vcxproj.filters b/MSVC_Net2017/markup.vcxproj.filters deleted file mode 100644 index 245f571..0000000 --- a/MSVC_Net2017/markup.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/options.vcxproj b/MSVC_Net2017/options.vcxproj deleted file mode 100644 index 3ba9d67..0000000 --- a/MSVC_Net2017/options.vcxproj +++ /dev/null @@ -1,192 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - options - {46962B9A-C5E9-4863-9408-97514D63F420} - dispatcher - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - options - options - options - options - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/options.vcxproj.filters b/MSVC_Net2017/options.vcxproj.filters deleted file mode 100644 index 53f47f4..0000000 --- a/MSVC_Net2017/options.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/properties.vcxproj b/MSVC_Net2017/properties.vcxproj deleted file mode 100644 index aafebf5..0000000 --- a/MSVC_Net2017/properties.vcxproj +++ /dev/null @@ -1,192 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - properties - {206CC821-8BE3-4455-B09E-63F93E30F20C} - dispatcher - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - properties - properties - properties - properties - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/properties.vcxproj.filters b/MSVC_Net2017/properties.vcxproj.filters deleted file mode 100644 index a9825fd..0000000 --- a/MSVC_Net2017/properties.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/regex.vcxproj b/MSVC_Net2017/regex.vcxproj deleted file mode 100644 index 490b1b6..0000000 --- a/MSVC_Net2017/regex.vcxproj +++ /dev/null @@ -1,192 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - regex - {7374A5A1-4E74-44BD-918C-FDF80B97FA3F} - dispatcher - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - regex - regex - regex - regex - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/regex.vcxproj.filters b/MSVC_Net2017/regex.vcxproj.filters deleted file mode 100644 index 96dea5e..0000000 --- a/MSVC_Net2017/regex.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/resolver.vcxproj b/MSVC_Net2017/resolver.vcxproj deleted file mode 100644 index b6461be..0000000 --- a/MSVC_Net2017/resolver.vcxproj +++ /dev/null @@ -1,196 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - resolver - {E4D320F1-7D2D-43AF-874F-14524220EF92} - resolver - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - resolver - resolver - resolver - resolver - - - - Disabled - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - gio-2.0.lib;$(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - gio-2.0.lib;$(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - gio-2.0.lib;$(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - gio-2.0.lib;$(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {ee6c0430-c2c9-425c-8eba-963fac3e9832} - false - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/resolver.vcxproj.filters b/MSVC_Net2017/resolver.vcxproj.filters deleted file mode 100644 index 2c9dc79..0000000 --- a/MSVC_Net2017/resolver.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/socket-client.vcxproj b/MSVC_Net2017/socket-client.vcxproj deleted file mode 100644 index 5058f19..0000000 --- a/MSVC_Net2017/socket-client.vcxproj +++ /dev/null @@ -1,196 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - socket-client - {1E38D900-90AC-4E18-B34C-7B08E3383087} - socket-client - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - socket-client - socket-client - socket-client - socket-client - - - - Disabled - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - gio-2.0.lib;$(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - gio-2.0.lib;$(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - gio-2.0.lib;$(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - gio-2.0.lib;$(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {ee6c0430-c2c9-425c-8eba-963fac3e9832} - false - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/socket-client.vcxproj.filters b/MSVC_Net2017/socket-client.vcxproj.filters deleted file mode 100644 index edb14c1..0000000 --- a/MSVC_Net2017/socket-client.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/socket-server.vcxproj b/MSVC_Net2017/socket-server.vcxproj deleted file mode 100644 index b925f87..0000000 --- a/MSVC_Net2017/socket-server.vcxproj +++ /dev/null @@ -1,196 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - socket-server - {7A4EB8C4-4784-4E9E-96E6-CA6FF4CE1D20} - socket-server - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - socket-server - socket-server - socket-server - socket-server - - - - Disabled - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - gio-2.0.lib;$(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - gio-2.0.lib;$(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - gio-2.0.lib;$(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - .\giomm;..\gio;$(GlibEtcInstallRoot)\include\gio-win32-2.0;%(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - gio-2.0.lib;$(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {ee6c0430-c2c9-425c-8eba-963fac3e9832} - false - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/socket-server.vcxproj.filters b/MSVC_Net2017/socket-server.vcxproj.filters deleted file mode 100644 index 66a88d3..0000000 --- a/MSVC_Net2017/socket-server.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/thread.vcxproj b/MSVC_Net2017/thread.vcxproj deleted file mode 100644 index 24e9b3b..0000000 --- a/MSVC_Net2017/thread.vcxproj +++ /dev/null @@ -1,187 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - thread - {5357AB2B-A5F9-463C-92D8-00357CCC3ECE} - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/thread.vcxproj.filters b/MSVC_Net2017/thread.vcxproj.filters deleted file mode 100644 index ba19e27..0000000 --- a/MSVC_Net2017/thread.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/MSVC_Net2017/threadpool.vcxproj b/MSVC_Net2017/threadpool.vcxproj deleted file mode 100644 index 4ff8ebe..0000000 --- a/MSVC_Net2017/threadpool.vcxproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - threadpool - {962484DB-2111-48A4-BEF0-194433719D0D} - Win32Proj - - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - Application - MultiByte - v141 - - - - - - - - - - - - - - - - - - - - - - - true - true - false - true - true - true - false - true - - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - EditAndContinue - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX86 - - - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - ProgramDatabase - - - $(CPPDepLibsDebug);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - $(OutDir)\$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - %(AdditionalIncludeDirectories) - ;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - $(CPPDepLibsRelease);%(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - diff --git a/MSVC_Net2017/threadpool.vcxproj.filters b/MSVC_Net2017/threadpool.vcxproj.filters deleted file mode 100644 index 4069cf5..0000000 --- a/MSVC_Net2017/threadpool.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - Source Files - - diff --git a/Makefile.am b/Makefile.am index 7cda466..1b366b4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -43,10 +43,10 @@ nodist_giomm_libinclude_HEADERS = gio/giommconfig.h pkgconfigdir = $(libdir)/pkgconfig nodist_pkgconfig_DATA = glib/$(GLIBMM_MODULE_NAME).pc gio/$(GIOMM_MODULE_NAME).pc -include $(srcdir)/MSVC_Net2017/filelist.am +include $(srcdir)/MSVC_NMake/filelist.am text_files = COPYING.tools README.SUN README.win32 -msvc_files = $(addprefix MSVC_Net2017/,$(msvc_net2017_data)) +msvc_files = $(addprefix MSVC_NMake/,$(msvc_nmake_data)) dist_noinst_DATA = $(text_files) $(msvc_files) dist_noinst_SCRIPTS = autogen.sh diff --git a/NEWS b/NEWS index 02e0bf4..63c3cc0 100644 --- a/NEWS +++ b/NEWS @@ -1,489 +1,215 @@ -2.57.1: (unstable): -Distro packagers should probably not package this yet. +2.58.0 (stable): -Gio: -* DataOutputStream::put_string(): Don't pass std:string by value - (Kjell Ahlstedt) - -gmmproc: -* Add _MEMBER_SET_STR() macro - (Pavlo Solntsev) Bug #793778 - -Build: -* Change the ABI to glibmm-2.58 - (Kjell Ahlstedt) +This release is identical to 2.56.1. -2.55.2: (unstable): -Distro packagers should probably not package this yet. +2.56.1 (stable): Glib: -* IOCondition: Add an IO_ prefix to the enumerator names - (Kjell Ahlstedt) -* TimeoutSource: Use monotonic time consistently - (Kjell Ahlstedt) Bug #792524 (Dainis Jonitis) -* Source: Remove get_current_time(). - (Kjell Ahlstedt) -* KeyFile, OptionContext, Regex: Add exception specs to errthrow. - (Kjell Ahlstedt) -* ustring: - - Replace 8×format() with 1 variadic template. - - Replace 9×compose() with 1 variadic template. - - Use std::initializer_list instead of pointer + size - (Daniel Boles) Bug #784211 -* VariantBase: - - Add operator==() and operator!=(). - (Kjell Ahlstedt) Bug #789330 (Daniel Boles) - - cast_dynamic(): Remove noexcept(false). - (Kjell Ahlstedt) - -Glib::Gio: -* AppInfo: Update the name of the AppLaunchContext parameters - (Kjell Ahlstedt) -* Action: Add exception specs to errthrow. - (Kjell Ahlstedt) -* Application: Fix property_resource_base_path()'s type - (Kjell Ahlstedt) -* Credentials, et al.: Add exception specs to errthrow. - (Kjell Ahlstedt) -* DataInputStream: - - Remove read_until*(). - - Fix the documentation of read_line_utf8(). - (Kjell Ahlstedt) -* InetSocketAddress, ProxyAddress: No guint16 in _WRAP_PROPERTY(). - (Kjell Ahlstedt) -* Settings: set_int() and friends shall return bool. - (Kjell Ahlstedt) Bug #784211 -* TlsClientConnection: Remove get/set/property_use_ssl3(). - (Kjell Ahlstedt) +* ustring: Fix wchar conversion on macOS with libc++ + (Clemens Lang) Bug #795338 +* Avoid compiler warnings from function pointer conversions + (Kjell Ahlstedt) Issue libsigcplusplus#1 (sharkcz) + (Kjell Ahlstedt) Issue libsigcplusplus#8 (db0451) -gmmproc: -* Warn if parameter lists are not compatible - (Kjell Ahlstedt) -* _WRAP_METHOD: Accept optional list of exceptions in errthrow - (Kjell Ahlstedt) -* _WRAP_METHOD_DOCS_ONLY: Optionally suppress @return section. - (Kjell Ahlstedt) Bug #787978 -* docextract_to_xml.py: Add --exclude-file option. - (Kjell Ahlstedt) -* Suppress the @return section if return type is void. - (Kjell Ahlstedt) -* generate_extra_defs.cc: - - Write signal flags to .defs files. - - Write default values of properties to .defs files. - - Write default values of properties to generated documentation. - (Kjell Ahlstedt) Bug #785895 (Daniel Boles) -* Warn for unmatched deprecations in signals and properties. - (Kjell Ahlstedt) +Gio: +* SocketClient: Take copy in RefPtrs for signal args + (Daniel Boles) Issue #28 (Jens Mühlenhoff) -Documentation: -* Glib::ObjectBase: Don't mention GtkObject in comments. - (Kjell Ahlstedt) -* Glib::Variant: Hide namespace Glib::detail from Doxygen - (Kjell Ahlstedt) Bug #787698 (Daniel Boles) -* Glib::Variant: Slightly elaborate Variant docs. - (Daniel Boles) Bug #778219 (Daniel Boles) +Build: +* Require glib-2.0 >= 2.55.1 + (Kjell Ahlstedt) Issue #29 (Mart Raudsepp) +* Replace the Visual Studio project files with MSVC NMake project files + (Chun-wei Fan) Merge request !5 -2.55.1: (unstable): -Distro packagers should probably not package this yet. +2.56.0 (stable): Glib: -* Object: Value_Pointer class should take only one template argument. - (Marcin Kolny) -* Variant: Improved support for D-Bus object paths and signatures. - (Kjell Ahlstedt) Bug #785700 (Johannes Dohmen) -* Glib::Value_Flags<>: static_cast to correct type. - (Kjell Ahlstedt) +* Threads::Private: Fix gobj(). + (Kjell Ahlstedt) Bug #791711 (octoploid) +* TimeoutSource: Use monotonic time consistently. + (Kjell Ahlstedt) Bug #792524 (Dainis Jonitis) +* Add RefPtr::get(). + (Kjell Ahlstedt) Bug #495762 (Hubert Figuiere) Gio: -* Derive all interfaces directly from Glib::Interface - (Kjell Ahltedt) Bug #776537 -* Application: OptionType: Make this an enum class. +* TlsClientConnection: Deprecate set/get/property_use_ssl3(). (Kjell Ahlstedt) -* BufferedInputStream, BufferedOutputStream, DataOutputStream: - Implement Seekable. -* CharsetConverter: Implement the Gio::Initable interface. - and call Initable::init() from CharsetConverter's constructor. - (Kjell Ahlstedt) Bug #776537 -* Add FileDescriptorBased interface and make GUnixInputStream and - GUnixOutputStream implement it. -* MemoryInputStream, UnixInputStream: Implement PollableInputStream. +* DataInputStream: Deprecate read_until(). (Kjell Ahlstedt) -* MemoryOutputStream, UnixOutputStream: Implement PollableOutputStream. +* Application: Add property_resource_base_path_string(). + This is a replacement for property_resource_base_path() which can't be + fixed without breaking ABI. + (Kjell Ahlstedt) Bug #787496 (Daniel Boles) +* Application: Add three set_option_context_*() methods. + (Kjell Ahlstedt) +* DesktopAppInfo: Add get_locale_string(). (Kjell Ahlstedt) -* TlsDatabase: create_certificate_handle_vfunc(): - Fix memory leak, and correctly return nulltpr. - (Kjell Ahlstedt) Bug #783360 -gmmproc: -* Accept curly braces in default values in _WRAP macros - (Khell Ahlstedt) Bug #783216 comment 13 -* Don't accept unpaired double quotes. - (Khell Ahlstedt) -* gmmproc: Fix _WRAP_ENUM for enumerators with apostrophes. - (Khell Ahlstedt) -* gmmproc, _WRAP_ENUM: Add optional CONV_TO_INT parameter. - (Khell Ahlstedt) +Documentation: +* Slightly elaborate Glib::Variant docs. + (Daniel Boles) Bug #778219 -Build: -* Change the ABI to glibmm-2.56. +tests: +* glibmm_variant: Don't use C++14 features when a C++11 compiler is used. + (Kjell Ahlstedt, Jonathan Wakely) Bug #787648 (Armin K.) +* glibmm_interface_move test: Avoid unused function warnings. (Murray Cumming) -* Really exclude DesktopAppInfo from wrap_init.cc on MacOS. - (Kjell Ahlstedt) Bug #781947 -Documentation: -* miscutils: Update docs of get_*_name() from GLib. - (Daniel Boles) -* Fix documentation of enum Glib::IOCondition. - (Khell Ahlstedt) +gmmproc: +* _WRAP_METHOD: Accept optional list of exceptions in errthrow. + (Kjell Ahlstedt) Bug #787979 (Daniel Boles) +* _WRAP_METHOD: Suppress the @return section in generated documentation + if return type is void. + (Kjell Ahlstedt) Bug #787978 (Daniel Boles) +* Add _MEMBER_SET_STR macro, setter for strings. + (Pavlo Solntsev) Bug #793778 -2.53.2 (unstable): -Distro packagers should probably not package this yet. +2.54.1 (stable): Glib: -* ConstructParams: Do not increment allocation size twice - (Daniel Elstner) - -Gio: -* ActionMap: Really fix add_action_with_parameter(). - (Daniel Boles) Bug 774444#c31 -* UnixSocketAddress::create(): Remove a default value to avoid ambiguity. - (Kjell Ahlstedt) Bug #782592 - -Gio::DBus -* Proxy: Wrap call() and call_sync() methods. - (Vyacheslav Yurkov) Bug #781818 - -gmmproc: -* Use of static_cast<> instead of C-style casts. - (Murray Cumming) - -Build: -* Fix the build on MacOS, where glib doesn't have gdesktopinfo. - (John Ralls) Bug #781947 -* Really use desktopappinfo.hg to fix the build. - (Murray Cumming) +* Variant: Don't use std::index_sequence from C++14. + (Kjell Ahlstedt, Jonathan Wakely) Bug #787648 (Armin K.) Documentation: -* Glib, Gio: Update documentation of in-class enums. - (Kjell Ahlstedt) -* ActionMap: Improve add_action_with_parameter docs - (Daniel Boles) +* Note that Gio::Application::property_resource_base_path() shall not + be used. It has a bug that's hard to fix without breaking ABI. + (Kjell Ahlstedt) Bug #787496 (Daniel Boles) +gmmproc: +* Convert all property documentation to C++. + (Kjell Ahlstedt) Bug #787698 (Daniel Boles) -2.53.1.1 (unstable): +2.54.0 (stable): Glib: -* Use C++11 enum classes instead of old-style enums, and put many enums - inside relevant class declarations: - - Glib::NodeTree: Move enums into class. - - Glib::BindingFlags is now Glib::Binding::Flags. - - Glib::KeyfileFlags is now Glib::Keyfile::Flags. - - Glib::ModuleFlags is now Glib::Module::Flags. - - Glib::ChecksumType is now Glib::Checksum::Type. - - Glib::Regex: Move enums inside class. - - Glib::Resource: Move enums into class. - (Murray Cumming, Kjell Ahlstedt) -* RefPtr: Make this an alias for std::shared_ptr<> instead. - - Use std::dynamic_pointer_cast<>() instead of RefPtr<>::cast_dynamic(). - - Use std::static_pointer_cast<>() instead of RefPtr<>::cast_static(). - - Use std::const_pointer_cast<>() instead of RefPtr<>::cast_const(). - - When creating RefPtr directly, instead of using create() methods, - use Glib::make_refptr_for_instance() so the std::shared_ptr<> has the - necessary Deleter. - (Murray Cumming) Bug #755037 -* Remove Glib::WeakRef. Use std::weak_ref<> instead. - (Murray Cumming) Bug #755037 -* Object: Use g_object_new_with_properties() instead of (deprecated) - g_object_newv() and (deprecated) GParameter. - (Murray Cumming) -* IOChannel: Avoid creating a RefPtr to this. - (Murray Cumming) Bug #755037 -* SignalProxy: - connect(): Signals with non-void return values now have no default value - for the "after" parameter, forcing application developers to think about - whether they should connect before or after already-connected signal - handlers, and default signal handlers. This is awkward but necessary. - Just provide "true" to get the previous behaviour, or use connect_notify(). - connect_notify(): Signals with void return values have no connect_notify(), - because it is not useful with those signals. - (Kjell Ahlstedt) Bug #126213. +* Added DBusObjectPathString and DBusSignatureString, for Variants with D-Bus object paths or D-Bus signatures, + and add Variant specializations for Variant, + Variant and Variant>. + (Kjell Ahlstedt) Bug #785700 +* Variant: Add template specialization for std::tuple. + (Alexander Rössler) Bug #777791 Gio: -* Use C++11 enum classes instead of old-style enums, and put many enums - inside relevant class declarations: - - Gio::Drive: Move enums into class. - - Gio::TlsDatabase: Move enums into class. - - Gio::UnixSocketAddressType is now Gio::UnixSocketAddress::Type. - - Gio::Mount: Move enums into class. - - Gio::TlsPasswordFlags is now Gio::TlsPassword::Flags. - - Gio::IOStreamSpliceFlags is now Gio::IOStream::SpliceFlags. - - Gio::SettingsBindFlags is now Gio::Settings::BindFlags. - - Gio::ResolverRecordType is now Gio::Resolver::RecordType. - - Gio::Socket: Move enums into class. - - Gio::File: Move some flags enums into the class. - - Gio::OutputStreamSpliceFlags is now Gio::OuputStream::SpliceFlags. - - Gio::CredentialsType is now Gio::Credentials::Type. - - Gio::NotificationPriority is now Gio::Notification::Priority. - - Gio::FileMonitorEvent is now Gio::FileMonitor::Event. - - Gio::FileAttributeInfoFlags is now Gio::FileAttributeInfo::Flags. - - Gio::EmblemOrigin is now Gio::Emblem::Origin. - - Gio::Converter: Put enums inside class. - - Gio::ConverterFlags is now Gio::Converter::Flags. - - Gio::ConverterResult is now Gio::Converter::Result. - - Gio::AppInfoCreateFlags is now Gio::AppInfo::CreateFlags. - - Gio::ApplicationFlags is now Gio::Application::Flags. - (Murray Cumming, Kjell Ahlstedt) -* Remove duplicate ErrorEnum declaration. +* ActionGroup: Add optional action_name parameters to some signals. (Kjell Ahlstedt) -* ConstructParams: - - Remove (hopefully really unnecessary) copy constructor. - - C++11: =delete the operator=, instead of making it private. - (Murray Cumming) -* Value: - - Remove the CType alias, which should be unnecessary. - - value_custom: Replace a template parameter with C++11 type traits. - - Value>: Only use this specialization if T has get_base_type(). - (Murray Cumming) Bug #755037 -* Variant: - - operator bool(): Simplify to avoid clang++ warnings. - - C++11: Variant: Replace throw(std::bad_cast) with noexcept(false). - See https://bugzilla.redhat.com/show_bug.cgi?id=1438766 - (Murray Cumming) -* Socket: Avoid creating a RefPtr to this. - (Murray Cumming) Bug #755037 - -Gio:DBus: -* Use C++11 enum classes instead of old-style enums, and put many enums - inside relevant class declarations: - - Gio::DBus::InterfaceSkeletonFlags is now Gio::DBus::InterfaceSkeleton::Flags. - - Gio::DBus::ServerFlags is now Gio::DBus::Server::Flags. - (Murray Cumming, Kjell Ahlstedt) - -gmmproc: -* _WRAP_ENUM(): Generate C++ enum classes instead of enums, and let the enums - be inside class declarations. - (Kjell Ahlstedt) Bug #86864 - -Build -* Windows: Visual Studio builds: Update ABI version - (Chun-wei Fan) - - -2.53.1 (unstable): - -Glib: -* OptionGroup: - - Don't allow copy or move. - - Remove the OptionGroup& parameter in on_pre_parse(), on_post_parse() and - on_error(). - (Kjell Ahlstedt) -* IOChannel, StreamIOChannel: Remove deprecated parts. +* Settings: Add optional key parameter to the writable_changed signal. (Kjell Ahlstedt) -* ustring: Add make_valid(). - (Krzysztof Piecuch) Bug #780075 -* Remove (unused) Sequence and sequence(). - (Murray Cumming) -* Remove ListHandle, SListHandle, ArrayHandle, SArrayHandle, and - StringArrayHandle, replacing them with std::vector in API. - (Murray Cumming) gmmproc: -* _WRAP_METHOD(): Some more use of auto in generated code. - (Murray Cumming) - -Build: -* Change the ABI to glibmm-2.54. - (Murray Cumming) -* Add some #include directives. +* Write signal flags to generated documentation + (Kjell Ahlstedt) Bug #785895 (Daniel Boles) +* Write default values of properties to generated documentation + (Kjell Ahlstedt) Bug #785895 (Daniel Boles) +* Warn for unmatched deprecations in signals and properties. (Kjell Ahlstedt) -* Visual Studio: Require Visual Studio 2017 and update the glibmm project. - (Chu-wei Fan) +* Accept curly braces in default values in _WRAP macros. + (Kjell Ahlstedt) Bug #783216 comment #13 (Daniel Boles) +* Fix _WRAP_ENUM for enumerators with apostrophes. + (Kjell Ahlstedt) +* Add new elements types for the docs_override: + substitute_type_name and substitute_enumerator_name. + (Kjell Ahlstedt) Bug #86864 -2.51.5 +2.52.1 (stable): Gio: -* Application: get_default(): Correct the reference counting. - (KJell Ahlstedt) Bug #779936 (James Legg) -* Add PropertyAction. - (Kjell Ahlstedt) - -Glib: -* Remove Glib::unconst() because it is unused and unnecessary. - (Kjell Ahlstedt) -* Variant: Add template specialization for std::tuple, - and a test. - (Alexander Rössler, Kjell Ahlstedt) Bug #777791 +* TlsDatabase: Fix memory leak in a vfunc. + (Kjell Ahlstedt) Bug #783360 +Documentation: +* Update docs of get_*_name(). + (Daniel Boles) -2.51.2 (unstable): -Distro packagers should probably not package this yet. +Build: +* MacOS: Really correct build without gdesktopinfo. + (Kjell Ahlstedt) Bug #781947 -Glib: -* Object construction: Add custom class init and instance init functions - An extra class init function is useful in Gtk::WidgetCustomDraw and - Gtk::WidgetCustomSnapshot. - (Kjell Ahlstedt) Bug #775348 +2.52.0 (stable): Gio: -* Action: #include , for convenience. - (Daniel Boles) Bug #777953 -* SimpleAction: Make set_state() public. - (Daniel Boles) Bug #777953 +* UnixSocketAddress::create(): Remove the default value for the type + parameter to avoid ambiguity. + (Kjell Ahlstedt) Bug #782592 -Documentation: -* Glib::Variant: Explain how to create "maybe" type. - (Daniel Boles) Bug #778219 +Gio::DBus +* Proxy: Wrap call() and call_sync() methods. + (Vyacheslav Yurkov) Bug #781818 +Documentation: +* RefPtr: Clarify comment about undefined behaviour. + (Daniel Boles) -2.51.1.2 (unstable): -Distro packagers should probably not package this yet. +2.51.7 (unstable): Glib: -* Remove some deprecated API - (Kjell Ahlstedt) -* Variant: Remove the string specializations of cast_dynamic. - (Kjell Ahlstedt) -* Glib::VariantType: Add get_item_types(), removing first() and - next(). +* SettingsSchemaKey: Add missing value/range methods. + (Daniel Boles) Bug #774903 +* Variant: Replace throw(std::bad_cast) with noexcept(false), + to fix the build with C++17. + See https://bugzilla.redhat.com/show_bug.cgi?id=1438766 + (Murray Cumming) +* VariantType: Deprecate first() and next(). Add get_item_types() (Kjell Ahlstedt) Bug #775741 - Gio: -* init(): Set the global locale. - (Kjell Ahlstedt) Bug #661588 -* ActionBase: get_state_hint_variant() now returns VariantContainerBase. - (Kjell Ahlstedt) -* ActionMap: add_action_with_parameter(): Register the parameter type, - to make this work. - (Daniel Boles) Bug #774444 -* ActionResult: Add is_tagged_vfunc(). - (Kjell Ahlstedt) -* Glib::Dispatcher: Implement the pimpl idiom - (Kjell Ahlstedt) Bug #651942 -* File, FileInfo, FileIOStream, FileOutputStream: Use Glib::ustring for - (UTF-8) file attributes of string type. - (Kjell Ahlstedt) Bug #615950 -* NetworkMonitor: Derive from Gio::Initable. - (Kjell Ahlstedt) -* RemoteActionGroup: Rename some vfuncs to add _full(). - (Murray Cumming) - -Documentation: -* ActionMap: - - ActivateSlot: Mention add_action_bool(). - - ActivateWithParameterSlot: Be more specific. +* ActionMap: Add add_action_with_parameter() that takes a parameter type, + and deprecated the existing method, because it cannot work. (Daniel Boles) Bug #774444 +* SimpleAction: Make set_state() public. + (Daniel Boles) Bug #777953 Build: -* Update the Visual Studio project files. - (Chun-wei Fan) -* Some minor cppcheck fixes. - (Murray Cumming) +* MacOS: Correct build without gdesktopinfo. + (John Ralls) Bug #781947 +* Glib::Object: Suppress deprecation warning for g_object_newv() with glib 2.54. + (Kjell Ahlstedt) -2.51.1.1 (unstable): +2.51.6 (unstable): -General: -* Remove no_default_handler in some _WRAP_SIGNAL()s - This allows application developers to simply override - the default on_*() signal handlers for these signals too, - as they can already with most other signals. - If you are using, for instance, the -Wsuggest-override - compiler option, watch out for new compiler warnings suggesting - that your existing signal handler should now be marked with the - override keyword - that means you should do so but you should - also stop connecting the signal handler in your code. - (Kjell Ahlstedt) -* Build: examples/Makefile.am: Re-insert the dispatcher examples - (Kjell Ahlstedt) +This is version 2.51.6 of glibmm-2.24. Ignore versions 2.51.1 to 2.51.5 of +unstable glibmm-2.52. Unstable glibmm-2.52 is now unstable glibmm-2.54, +leaving the 2.51/52 version numbers again for use by stable glibmm-2.52. Glib: -* Dispatcher: Don't cast a HANDLE to an int on Windows. +* Dispatcher: + - autodeduce the type of the fd field. + (Marcin Kolny) Bug #772074 + - Don't cast a HANDLE to an int on Windows. (Kjell Ahlstedt) Bug #772074 -* ObjectBase: - - Remove connect_property_changed_with_return() - and let connect_property_changed() return a sigc::connection. - (Kjell Ahlstedt) - - Use std::forward_list for interface class pointers. - (Kjell Ahlstedt) - - Replace extra_object_base_data map by instance data. - (Kjell Ahlstedt) -* ObjectBase: overload get_property(). - (Marcin Kolny) -* Main, IOSource: autodeduce type of fd field. - (Marcin Kolny) Bug #770274 -* Settings: Add property_settings_schema(), and update - signal_changed(). - (Kjell Ahlstedt) -* Settings: Make set_enum() + set_flags() usable - (djb) Bug #774647 -* SettingsSchemaKey: Add missing value/range methods - (Daniel Boles) Bug #774903 -* SignalProxyNormal: Remove connect_() and connect_notify_(), - adding connect_impl(). - (Kjell Ahlstedt) -* Rename SignalProxyDetailed to SignalProxyDetailedBase, and - SignalProxyDetailedAnyType to SignalProxyDetailed. - Remove SignalProxyDetailed# aliases (# = 0..6). - (Kjell Ahlstedt) -* Source: Replace extra_source_data by instance data. - (Kjell Ahlstedt) Bug #561885 +* ustring: Add cbegin() and cend(). + (Murray Cumming) Gio: -* ActionMap::add_action_vfunc(): Const correction. - (Murray Cumming) -* Application: Add dbus_register/unregister_vfunc. - (Ritesh Khadgaray, Kjell Ahlstedt) Bug #762191 -* Menu: insert/prepend/add_item(): Const correction. - (Murray Cumming) -* MenuAttributeIter: get_value(): Const correction. - (Murray Cumming) -* MenuModel: get_item_atribute(): const correction. - (Murray Cumming) -* RemoteActionGroup: Derive from Gio::ActionGroup. - (Murray Cumming) +* Action: Include variant.h in the heaer. + (Daniel Boles) Bug #777953 +* Application: get_default(): Correct the reference counting. + (Kjell Ahlstedt) Bug #779936 +* Settings: + - Really add set_enum() and set_flags(). + (djb) Bug #774647 + - Writable-change-event signal: Correct the type of the key parameter. + (Marcin Kolny) Bug #773977 +* SettingsSchemaSource: get_default(): Correct the refcounting. + (Marcin Kolny) Bug #774593 -Gio::Dbus: +Gio::DBus: * Proxy: Fix memory leak in get_cached_property_names(). (Kjell Ahlstedt) Bug #775210 -* Proxy: Derive from (and implement) Gio::DBus::Interface. - (Murray Cumming) - -2.51.1 (unstable): - -This is the first release of the glibmm-2.52 API/ABI. -It installs in parallel with the gtkmm-2.4 API/ABI, of which -the most recent version is glibmm 2.50. We know that is a bit -confusing. We are taking the opportunity to do this glibmm ABI -break while GTK+ (and therefore gtkmm) is also doing an ABI -break. But we cannot call this glibmm-3.0 because there is no -glib 3.0. +Documentation: +* Glib::Variant: Improve documentation of maybe types. + (Daniel Boles) Bug #778219 +* Gio::ActionMap: Clarify doc of ActivateWithParameterSlot + (Daniel Boles) Build: -* Require C++14. - (Murray Cumming) -* Use libsigc++-3.0 instead of libsigc++-2.0. - https://www.murrayc.com/permalink/2016/03/07/libsigc-3-0-very-variadic/ - (Murray Cumming) -* Remove lots of deprecated API. - (Kjell Ahlstedt) - -Gio: -* BufferedInputStream, InputStream, OutputStream: Add vfuncs, - allowing implementation in C++. - (Krzysztof Kosiński, Kjell Ahlstedt) Bug #572471 -* SettingsSchemaSource::get_default(): Correct the reference count. - (Marcin Kolny) Bug #774593 -* Settings: Fix type of 'key' parameter of writable-change-event signal - (Marcin Kolny) Bug #773977 - -Glib: -* ustring: Add cbegin() and cend(). +* Visual Studio builds: "Install" the .pdb files + (Chun-wei Fan) 2.50.0: @@ -526,7 +252,7 @@ gmmproc: * Remove DocsParser::non_object_method_name() (Kjell Ahlstedt) * swap() implementations: Use std::swap(). - (Murray Cumming) + (Murray Cumming Documentation: * Gio::SocketService: Update the class documentation diff --git a/README.win32 b/README.win32 index 0094f74..7a11f81 100644 --- a/README.win32 +++ b/README.win32 @@ -1,58 +1,69 @@ -Building glibmm on Win32 -=========================== - -Currently, both the mingw (native win32) gcc compiler and MS Visual -Studio 2017 are supported. glibmm can be built with mingw32-gcc using -the gnu autotools (automake, autoconf, libtool). As explicitly stated -in the gtk+ for win32 distribution (http://www.gimp.org/win32/), the -gcc compiler provided by the cygwin distribution should not be used to -build glib/glibmm libraries and/or applications (see the README.win32 -that comes with the gtk+ DLLs). This MIGHT cause conflicts between the -cygwin and msvcrt runtime environments. - -1. Mingw - -The mingw distribution which has been tested with this release is the -following : - -* MinGW-4.1 as the base distribution. - -The bare mingw distribution does not provide the necessary tools (sh, perl, m4 -, autoconf, automake, ..) to run the provided configure script "as is". One -(currently non supported) solution is to use mingw in conjunction with msys, -which is readily available on the mingw website (http://www.mingw.org/). - -The preferred method is to combine the cygwin distribution (for the unix tools -that were mentioned above) with mingw by making sure that the mingw -tools (gcc, ld, dlltool, ..) are called first. - -First, make sure that you have working distribution of the native port -of both libsigc++-3.0.x and glib-2.0 on win32 (see -http://www.gimp.org/win32). If you can't compile a simple glib example -using gcc and `pkg-config --cflags --libs`, you should not even think -about trying to compile glibmm, let alone using precompiled libglibmm -DLLs to port your glibmm application ! - -The configure script can then be called using (as an example) the -following options - -./configure --prefix=/target --build=i386-pc-mingw32 --disable-static - -then - -make -make check -make install - -2. MS Visual Studio 2017 - -Open the glibmm.sln solution file in the MSVC_Net2017 directory. In -the Tools/Options panel, add the appropriate GTK+ include and lib -directories to the Projects and Solutions/VC++ directories, if they -are not in the locations specified by the property sheets, i.e. -$(srcroot)\..\vs15\$(Platform). Build the solution. - -3. Glibmm methods and signals not available on win32 - -All glibmm methods and signals are available on win32. - +Building glibmm on Win32 +=========================== + +Currently, both the mingw (native win32) gcc compiler and MS Visual +Studio 2015 and later are supported. glibmm can be built with +mingw32-gcc using the gnu autotools (automake, autoconf, libtool). +As explicitly stated in the gtk+ for win32 distribution +(http://www.gimp.org/win32/), the gcc compiler provided by the cygwin +distribution should not be used to build glib/glibmm libraries and/or +applications (see the README.win32 that comes with the gtk+ DLLs). +This MIGHT cause conflicts between the cygwin and msvcrt runtime +environments. + +1. Mingw + +The mingw distribution which has been tested with this release is the +following : + +* MinGW-4.1 as the base distribution. + +The bare mingw distribution does not provide the necessary tools (sh, perl, m4 +, autoconf, automake, ..) to run the provided configure script "as is". One +(currently non supported) solution is to use mingw in conjunction with msys, +which is readily available on the mingw website (http://www.mingw.org/). + +The preferred method is to combine the cygwin distribution (for the unix tools +that were mentioned above) with mingw by making sure that the mingw +tools (gcc, ld, dlltool, ..) are called first. + +First, make sure that you have working distribution of the native port +of both libsigc++-2.10.x and glib-2.0 on win32 (see +http://www.gimp.org/win32). If you can't compile a simple glib example +using gcc and `pkg-config --cflags --libs`, you should not even think +about trying to compile glibmm, let alone using precompiled libglibmm +DLLs to port your glibmm application ! + +The configure script can then be called using (as an example) the +following options + +./configure --prefix=/target --build=i386-pc-mingw32 --disable-static + +then + +make +make check +make install + +2. MS Visual Studio 2015 + +In a Visual Studio command prompt, navigate to the MSVC_NMake directory. +Run 'nmake /f Makefile.vc CFG=[release|debug]' to build the glibmm and +giomm DLLs, along with their example programs. If a prefix other than +$(srcroot)\..\vs$(VSVER)\$(Platform) is desired, pass in PREFIX=$(your_prefix) +in the NMake command line. In order to build the giomm settings example +program, the glib-compile-schemas needs to reside in $(PREFIX)\bin, or +it must be specified via passing in GLIB_COMPILE_SCHEMAS. + +Note that $(VSVER) refers to 14 for Visual Studio 2015 and 15 for Visual +Studio 2017. + +A 'tests' target will build the test programs for glibmm and giomm, an +'install' target is provided to copy the built DLLs and LIBs, along with +with the public headers to appropriate subdirs of $(PREFIX). A 'clean' +target is also provided to remove all the built files. + +3. Glibmm methods and signals not available on win32 + +All glibmm methods and signals are available on win32. + diff --git a/configure.ac b/configure.ac index 8ac2230..e706687 100644 --- a/configure.ac +++ b/configure.ac @@ -15,8 +15,8 @@ ## You should have received a copy of the GNU Lesser General Public License ## along with this library. If not, see . -AC_INIT([glibmm], [2.57.1], - [http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm], +AC_INIT([glibmm], [2.58.0], + [https://gitlab.gnome.org/GNOME/glibmm/issues], [glibmm], [http://www.gtkmm.org/]) AC_PREREQ([2.59]) @@ -31,8 +31,8 @@ AM_MAINTAINER_MODE AC_ARG_VAR([ACLOCAL_FLAGS], [aclocal flags, e.g. -I ]) MM_PREREQ([0.9.10]) -MM_INIT_MODULE([glibmm-2.58]) -MM_INIT_MODULE([giomm-2.58]) +MM_INIT_MODULE([glibmm-2.4]) +MM_INIT_MODULE([giomm-2.4]) # Copy the mm-common .pl scripts into docs/, # and use them from there, @@ -43,7 +43,7 @@ MM_CONFIG_DOCTOOL_DIR([docs]) AC_SUBST([LIBGLIBMM_SO_VERSION], [4:0:3]) AC_PROG_CXX -MM_AX_CXX_COMPILE_STDCXX([14], [noext],[mandatory]) +MM_AX_CXX_COMPILE_STDCXX([11], [noext],[mandatory]) AC_DISABLE_STATIC LT_INIT([win32-dll]) @@ -82,9 +82,9 @@ AS_IF([test "x$enable_static" = xyes], AC_DEFINE([GIOMM_STATIC_LIB], [1], [Define if giomm is built as a static library]) ]) -glibreq='2.0 >= 2.53.2' +glibreq='2.0 >= 2.55.1' -GLIBMM_MODULES="sigc++-3.0 >= 2.99.5 glib-$glibreq gobject-$glibreq gmodule-$glibreq" +GLIBMM_MODULES="sigc++-2.0 >= 2.9.1 glib-$glibreq gobject-$glibreq gmodule-$glibreq" GIOMM_MODULES="$GLIBMM_MODULES gio-$glibreq" test "x$glibmm_host_windows" = xyes || GIOMM_MODULES="$GIOMM_MODULES gio-unix-$glibreq" @@ -134,16 +134,10 @@ MM_ARG_WITH_TAGFILE_DOC([libsigc++-2.0.tag], [sigc++-2.0]) # Check whether --enable-debug-refcounting was given. GLIBMM_ARG_ENABLE_DEBUG_REFCOUNTING -glibmm_warnings_fatal='-pedantic -Wall -Wextra -Wformat-security -Wsuggest-override -Wshadow -Wno-long-long' # Evaluate the --enable-warnings=level option. MM_ARG_ENABLE_WARNINGS([GLIBMM_WXXFLAGS], [-Wall], - [$glibmm_warnings_fatal], - [G SIGCXX]) - -MM_ARG_ENABLE_WARNINGS([GLIBMM_INTERFACE_TEST_WXXFLAGS], - [-Wall], - [$glibmm_warnings_fatal -Wno-unused-function], + [-pedantic -Wall -Wextra -Wformat-security -Wsuggest-override -Wshadow -Wno-long-long], [G SIGCXX]) # Offer the ability to omit some API from the library, @@ -175,12 +169,12 @@ AC_CONFIG_FILES([Makefile examples/Makefile docs/Makefile docs/reference/Doxyfile - MSVC_Net2017/glibmm/glibmm.rc - MSVC_Net2017/giomm/giomm.rc]) + MSVC_NMake/glibmm/glibmm.rc + MSVC_NMake/giomm/giomm.rc]) # Copy the generated configuration headers into the MSVC project directories. -AC_CONFIG_COMMANDS([MSVC_Net2017/glibmm/glibmmconfig.h], - [cp -f glib/glibmmconfig.h MSVC_Net2017/glibmm/glibmmconfig.h]) -AC_CONFIG_COMMANDS([MSVC_Net2017/giomm/giommconfig.h], - [cp -f gio/giommconfig.h MSVC_Net2017/giomm/giommconfig.h]) +AC_CONFIG_COMMANDS([MSVC_NMake/glibmm/glibmmconfig.h], + [cp -f glib/glibmmconfig.h MSVC_NMake/glibmm/glibmmconfig.h]) +AC_CONFIG_COMMANDS([MSVC_NMake/giomm/giommconfig.h], + [cp -f gio/giommconfig.h MSVC_NMake/giomm/giommconfig.h]) AC_OUTPUT diff --git a/docs/Makefile.am b/docs/Makefile.am index 6297945..31dd5bd 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -16,9 +16,9 @@ ## along with this library. If not, see . include $(top_srcdir)/glib/src/filelist.am -include $(top_srcdir)/glib/glibmm/filelist.am -include $(top_srcdir)/gio/src/filelist.am -include $(top_srcdir)/gio/giomm/filelist.am +include $(top_srcdir)/glib/glibmm/filelist.gmake.am +include $(top_srcdir)/gio/src/filelist.gmake.am +include $(top_srcdir)/gio/giomm/filelist.gmake.am glibmm_files_h = $(filter-out wrap_init.h,$(glibmm_files_all_h)) giomm_files_h = $(filter-out wrap_init.h,$(giomm_files_all_h)) diff --git a/docs/Makefile_web.am_fragment b/docs/Makefile_web.am_fragment index eb4f416..9ac3ad8 100644 --- a/docs/Makefile_web.am_fragment +++ b/docs/Makefile_web.am_fragment @@ -1,8 +1,8 @@ web_host = gtkmm.org -web_path_gtkmm = /home/murrayc/gtkmm.org/docs/glibmm-2.58/ -#web_path_gtkmm = /home/groups/g/gt/gtkmm/htdocs/docs/glibmm-2.58/ +web_path_gtkmm = /home/murrayc/gtkmm.org/docs/glibmm-2.4/ +#web_path_gtkmm = /home/groups/g/gt/gtkmm/htdocs/docs/glibmm-2.4/ web_path_docs = $(web_path_gtkmm)docs/ rsync_args = -vz --rsh ssh -gtkmm_docdir = $(datadir)/doc/glibmm-2.58/docs +gtkmm_docdir = $(datadir)/doc/glibmm-2.4/docs diff --git a/examples/Makefile.am b/examples/Makefile.am index a32cfb8..0de871a 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -32,9 +32,11 @@ check_PROGRAMS = \ options/example \ properties/example \ regex/example \ - settings/settings \ - thread/dispatcher \ - thread/dispatcher2 + settings/settings \ + thread/dispatcher \ + thread/dispatcher2 \ + thread/thread \ + thread/threadpool glibmm_includes = -I$(top_builddir)/glib $(if $(srcdir:.=),-I$(top_srcdir)/glib) giomm_includes = -I$(top_builddir)/gio $(if $(srcdir:.=),-I$(top_srcdir)/gio) @@ -49,6 +51,7 @@ local_libgiomm = $(top_builddir)/gio/giomm/libgiomm-$(GIOMM_API_VERSION).la LDADD = $(GLIBMM_LIBS) $(local_libglibmm) giomm_ldadd = $(GIOMM_LIBS) $(local_libglibmm) $(local_libgiomm) +thread_ldadd = $(GLIBMM_LIBS) $(local_libglibmm) child_watch_child_watch_SOURCES = child_watch/main.cc iochannel_stream_example_SOURCES = \ @@ -65,7 +68,13 @@ properties_example_SOURCES = properties/properties_example.cc regex_example_SOURCES = regex/main.cc thread_dispatcher_SOURCES = thread/dispatcher.cc +thread_dispatcher_LDADD = $(thread_ldadd) thread_dispatcher2_SOURCES = thread/dispatcher2.cc +thread_dispatcher2_LDADD = $(thread_ldadd) +thread_thread_SOURCES = thread/thread.cc +thread_thread_LDADD = $(thread_ldadd) +thread_threadpool_SOURCES = thread/threadpool.cc +thread_threadpool_LDADD = $(thread_ldadd) # giomm examples dbus_session_bus_service_SOURCES = dbus/session_bus_service.cc diff --git a/examples/child_watch/main.cc b/examples/child_watch/main.cc index 60e6c57..8051db3 100644 --- a/examples/child_watch/main.cc +++ b/examples/child_watch/main.cc @@ -24,7 +24,7 @@ using namespace std; class ChildWatch : public sigc::trackable { public: - explicit ChildWatch(const Glib::RefPtr& mainLoop) : m_mainLoop(mainLoop) {} + ChildWatch(const Glib::RefPtr& mainLoop) : m_mainLoop(mainLoop) {} void on_child_exited(GPid pid, int status); void run(); // fork a child and call signal_child_watch diff --git a/examples/dbus/client_bus_listnames.cc b/examples/dbus/client_bus_listnames.cc index 0dd336f..9b7bd95 100644 --- a/examples/dbus/client_bus_listnames.cc +++ b/examples/dbus/client_bus_listnames.cc @@ -84,7 +84,7 @@ main(int, char**) loop = Glib::MainLoop::create(); // Get the user session bus connection. - auto connection = Gio::DBus::Connection::get_sync(Gio::DBus::BusType::SESSION); + auto connection = Gio::DBus::Connection::get_sync(Gio::DBus::BUS_TYPE_SESSION); // Check for an unavailable connection. if (!connection) diff --git a/examples/dbus/server_without_bus.cc b/examples/dbus/server_without_bus.cc index 23e8bd5..6474133 100644 --- a/examples/dbus/server_without_bus.cc +++ b/examples/dbus/server_without_bus.cc @@ -123,8 +123,7 @@ on_server_new_connection(const Glib::RefPtr& connection) std::cout << "Client connected." << std::endl << "Peer credentials: " << credentials_str << std::endl << "Negotiated capabilities: unix-fd-passing=" - << ((connection->get_capabilities() & Gio::DBus::CapabilityFlags::UNIX_FD_PASSING) - == Gio::DBus::CapabilityFlags::UNIX_FD_PASSING) + << (connection->get_capabilities() & Gio::DBus::CAPABILITY_FLAGS_UNIX_FD_PASSING) << std::endl; // If there is already an active connection, do not accept this new one. @@ -193,7 +192,7 @@ main(int, char**) std::cout << "Server is listening at: " << server->get_client_address() << "." << std::endl; - server->signal_new_connection().connect(sigc::ptr_fun(&on_server_new_connection), false); + server->signal_new_connection().connect(sigc::ptr_fun(&on_server_new_connection)); // Keep the server running until the process is killed: auto loop = Glib::MainLoop::create(); diff --git a/examples/dbus/session_bus_service.cc b/examples/dbus/session_bus_service.cc index 25d3ae7..444b6e6 100644 --- a/examples/dbus/session_bus_service.cc +++ b/examples/dbus/session_bus_service.cc @@ -156,7 +156,7 @@ main(int, char**) return 1; } - const auto id = Gio::DBus::own_name(Gio::DBus::BusType::SESSION, "org.glibmm.DBusExample", + const auto id = Gio::DBus::own_name(Gio::DBus::BUS_TYPE_SESSION, "org.glibmm.DBusExample", sigc::ptr_fun(&on_bus_acquired), sigc::ptr_fun(&on_name_acquired), sigc::ptr_fun(&on_name_lost)); diff --git a/examples/iochannel_stream/main.cc b/examples/iochannel_stream/main.cc index 4fad426..d9f8944 100644 --- a/examples/iochannel_stream/main.cc +++ b/examples/iochannel_stream/main.cc @@ -43,7 +43,7 @@ Glib::RefPtr mainloop; bool MyCallback(Glib::IOCondition io_condition) { - if ((io_condition & Glib::IOCondition::IO_IN) != Glib::IOCondition::IO_IN) + if ((io_condition & Glib::IO_IN) == 0) { std::cerr << "Invalid fifo response" << std::endl; } @@ -88,7 +88,7 @@ int main(/* int argc, char *argv[] */) } input_stream.attach(read_fd); - input_stream.connect(sigc::ptr_fun(MyCallback), Glib::IOCondition::IO_IN); + input_stream.connect(sigc::ptr_fun(MyCallback), Glib::IO_IN); // and last but not least - run the application main loop mainloop->run(); diff --git a/examples/network/resolver.cc b/examples/network/resolver.cc index a651a1a..5aedb63 100644 --- a/examples/network/resolver.cc +++ b/examples/network/resolver.cc @@ -87,7 +87,7 @@ print_resolved_name(const Glib::ustring& phys, const Glib::ustring& name) static void print_resolved_addresses( - const Glib::ustring& name, const std::vector>& addresses) + const Glib::ustring& name, const std::list>& addresses) { std::lock_guard lock_guard(response_mutex); std::cout << Glib::ustring::compose("Name: %1\n", name); @@ -101,7 +101,7 @@ print_resolved_addresses( } static void -print_resolved_service(const Glib::ustring& service, const std::vector& targets) +print_resolved_service(const Glib::ustring& service, const std::list& targets) { std::lock_guard lock_guard(response_mutex); std::cout << Glib::ustring::compose("Service: %1\n", service); @@ -172,9 +172,11 @@ lookup_one_sync(const Glib::ustring& arg) } else { + std::list> addresses; + try { - const auto addresses = resolver->lookup_by_name(arg, cancellable); + addresses = resolver->lookup_by_name(arg, cancellable); print_resolved_addresses(arg, addresses); } catch (const Gio::ResolverError& err) @@ -285,7 +287,7 @@ static void print_connectable_sockaddr(Glib::RefPtr sockaddr) { Glib::ustring phys; - auto isa = std::dynamic_pointer_cast(sockaddr); + auto isa = Glib::RefPtr::cast_dynamic(sockaddr); if (!isa) { @@ -464,7 +466,7 @@ main(int argc, char** argv) signal(SIGINT, interrupted); chan = Glib::IOChannel::create_from_fd(cancel_fds[0]); - const auto source = chan->create_watch(Glib::IOCondition::IO_IN); + const auto source = chan->create_watch(Glib::IO_IN); watch_conn = source->connect(sigc::bind(sigc::ptr_fun(async_cancel), cancellable)); #endif diff --git a/examples/network/socket-client.cc b/examples/network/socket-client.cc index 5a3718a..c364d9b 100644 --- a/examples/network/socket-client.cc +++ b/examples/network/socket-client.cc @@ -68,7 +68,7 @@ socket_address_to_string(const Glib::RefPtr& address) Glib::ustring str, res; int port; - auto isockaddr = std::dynamic_pointer_cast(address); + auto isockaddr = Glib::RefPtr::cast_dynamic(address); if (!isockaddr) return Glib::ustring(); inet_address = isockaddr->get_address(); @@ -128,7 +128,7 @@ cancel_thread(Glib::RefPtr cancellable) class JoinAndDelete { public: - void operator()(std::thread* thread) const + void operator()(std::thread* thread) { stop_thread = true; cond_thread.notify_all(); @@ -145,7 +145,7 @@ main(int argc, char* argv[]) Glib::RefPtr socket; Glib::RefPtr src_address; Glib::RefPtr address; - Gio::Socket::Type socket_type; + Gio::SocketType socket_type; Gio::SocketFamily socket_family; Glib::RefPtr cancellable; Glib::RefPtr enumerator; @@ -188,12 +188,12 @@ main(int argc, char* argv[]) loop = Glib::MainLoop::create(); - socket_type = use_udp ? Gio::Socket::Type::DATAGRAM : Gio::Socket::Type::STREAM; - socket_family = use_ipv6 ? Gio::SocketFamily::IPV6 : Gio::SocketFamily::IPV4; + socket_type = use_udp ? Gio::SOCKET_TYPE_DATAGRAM : Gio::SOCKET_TYPE_STREAM; + socket_family = use_ipv6 ? Gio::SOCKET_FAMILY_IPV6 : Gio::SOCKET_FAMILY_IPV4; try { - socket = Gio::Socket::create(socket_family, socket_type, Gio::Socket::Protocol::DEFAULT); + socket = Gio::Socket::create(socket_family, socket_type, Gio::SOCKET_PROTOCOL_DEFAULT); } catch (const Gio::Error& error) { @@ -272,7 +272,7 @@ main(int argc, char* argv[]) buffer[to_send] = '\0'; while (to_send > 0) { - ensure_condition(socket, "send", cancellable, Glib::IOCondition::IO_OUT); + ensure_condition(socket, "send", cancellable, Glib::IO_OUT); try { if (use_udp) @@ -305,7 +305,7 @@ main(int argc, char* argv[]) to_send -= size; } - ensure_condition(socket, "receive", cancellable, Glib::IOCondition::IO_IN); + ensure_condition(socket, "receive", cancellable, Glib::IO_IN); try { if (use_udp) diff --git a/examples/network/socket-server.cc b/examples/network/socket-server.cc index a0e6bd1..fb9d6ea 100644 --- a/examples/network/socket-server.cc +++ b/examples/network/socket-server.cc @@ -75,7 +75,7 @@ public: Glib::ustring socket_address_to_string(const Glib::RefPtr& address) { - auto isockaddr = std::dynamic_pointer_cast(address); + auto isockaddr = Glib::RefPtr::cast_dynamic(address); if (!isockaddr) return Glib::ustring(); @@ -134,7 +134,7 @@ cancel_thread(Glib::RefPtr cancellable) class JoinAndDelete { public: - void operator()(std::thread* thread) const + void operator()(std::thread* thread) { stop_thread = true; cond_thread.notify_all(); @@ -176,12 +176,12 @@ main(int argc, char* argv[]) loop = Glib::MainLoop::create(); - auto socket_type = use_udp ? Gio::Socket::Type::DATAGRAM : Gio::Socket::Type::STREAM; - auto socket_family = use_ipv6 ? Gio::SocketFamily::IPV6 : Gio::SocketFamily::IPV4; + auto socket_type = use_udp ? Gio::SOCKET_TYPE_DATAGRAM : Gio::SOCKET_TYPE_STREAM; + auto socket_family = use_ipv6 ? Gio::SOCKET_FAMILY_IPV6 : Gio::SOCKET_FAMILY_IPV4; try { - socket = Gio::Socket::create(socket_family, socket_type, Gio::Socket::Protocol::DEFAULT); + socket = Gio::Socket::create(socket_family, socket_type, Gio::SOCKET_PROTOCOL_DEFAULT); } catch (const Gio::Error& error) { @@ -218,7 +218,7 @@ main(int argc, char* argv[]) std::cout << Glib::ustring::compose("listening on port %1...\n", port); - ensure_condition(socket, "accept", cancellable, Glib::IOCondition::IO_IN); + ensure_condition(socket, "accept", cancellable, Glib::IO_IN); try { new_socket = socket->accept(cancellable); @@ -257,7 +257,7 @@ main(int argc, char* argv[]) gchar buffer[4096] = {}; gssize size; - ensure_condition(recv_socket, "receive", cancellable, Glib::IOCondition::IO_IN); + ensure_condition(recv_socket, "receive", cancellable, Glib::IO_IN); try { if (use_udp) @@ -289,7 +289,7 @@ main(int argc, char* argv[]) while (to_send > 0) { - ensure_condition(recv_socket, "send", cancellable, Glib::IOCondition::IO_OUT); + ensure_condition(recv_socket, "send", cancellable, Glib::IO_OUT); try { if (use_udp) diff --git a/examples/options/main.cc b/examples/options/main.cc index cf6796f..c4536cd 100644 --- a/examples/options/main.cc +++ b/examples/options/main.cc @@ -24,9 +24,9 @@ public: ExampleOptionGroup(); private: - bool on_pre_parse(Glib::OptionContext& context) override; - bool on_post_parse(Glib::OptionContext& context) override; - void on_error(Glib::OptionContext& context, const Glib::Error& error) override; + bool on_pre_parse(Glib::OptionContext& context, Glib::OptionGroup& group) override; + bool on_post_parse(Glib::OptionContext& context, Glib::OptionGroup& group) override; + void on_error(Glib::OptionContext& context, Glib::OptionGroup& group) override; bool on_option_arg_string( const Glib::ustring& option_name, const Glib::ustring& value, bool has_value); @@ -88,7 +88,7 @@ ExampleOptionGroup::ExampleOptionGroup() entry6.set_long_name("x-string"); entry6.set_short_name('x'); entry6.set_description("A string with custom parsing"); - entry6.set_flags(Glib::OptionEntry::Flags::OPTIONAL_ARG); + entry6.set_flags(Glib::OptionEntry::FLAG_OPTIONAL_ARG); m_arg_x_string = "not specified"; add_entry(entry6, sigc::mem_fun(*this, &ExampleOptionGroup::on_option_arg_string)); @@ -96,7 +96,7 @@ ExampleOptionGroup::ExampleOptionGroup() entry7.set_long_name("x-filename"); entry7.set_short_name('X'); entry7.set_description("A filename with custom parsing"); - entry7.set_flags(Glib::OptionEntry::Flags::OPTIONAL_ARG); + entry7.set_flags(Glib::OptionEntry::FLAG_OPTIONAL_ARG); m_arg_x_filename = "not specified"; add_entry_filename(entry7, sigc::mem_fun(*this, &ExampleOptionGroup::on_option_arg_filename)); @@ -107,7 +107,7 @@ ExampleOptionGroup::ExampleOptionGroup() } bool -ExampleOptionGroup::on_pre_parse(Glib::OptionContext& /* context */) +ExampleOptionGroup::on_pre_parse(Glib::OptionContext& /* context */, Glib::OptionGroup& /* group */) { // This is called before the m_arg_* instances are given their values. // You do not need to override this method. This is just here to show you how, @@ -118,7 +118,7 @@ ExampleOptionGroup::on_pre_parse(Glib::OptionContext& /* context */) bool ExampleOptionGroup::on_post_parse( - Glib::OptionContext& /* context */) + Glib::OptionContext& /* context */, Glib::OptionGroup& /* group */) { // This is called after the m_arg_* instances are given their values. // You do not need to override this method. This is just here to show you how, @@ -128,7 +128,7 @@ ExampleOptionGroup::on_post_parse( } void -ExampleOptionGroup::on_error(Glib::OptionContext& /* context */, const Glib::Error& /* error */) +ExampleOptionGroup::on_error(Glib::OptionContext& /* context */, Glib::OptionGroup& /* group */) { std::cout << "on_error called" << std::endl; } diff --git a/examples/thread/thread.cc b/examples/thread/thread.cc new file mode 100644 index 0000000..7af2735 --- /dev/null +++ b/examples/thread/thread.cc @@ -0,0 +1,126 @@ + +#include +#include +#include +#include +#include +#include +#if defined(_MSC_VER) && (_MSC_VER < 1900) +/* For using noexcept on Visual Studio 2013 */ +#include +#endif +#include +#include +#include + +namespace +{ + +class MessageQueue +{ +public: + MessageQueue(); + ~MessageQueue(); + + void producer(); + void consumer(); + +private: + std::mutex mutex_; + std::condition_variable cond_push_; + std::condition_variable cond_pop_; + std::queue queue_; +}; + +MessageQueue::MessageQueue() +{ +} + +MessageQueue::~MessageQueue() +{ +} + +void +MessageQueue::producer() +{ + Glib::Rand rand(1234); + + for (auto i = 0; i < 200; ++i) + { + { + std::unique_lock lock(mutex_); + + cond_pop_.wait(lock, [this]() -> bool { return queue_.size() < 64; }); + + queue_.push(i); + std::cout << '*'; + std::cout.flush(); + + // We unlock before notifying, because that is what the documentation suggests: + // http://en.cppreference.com/w/cpp/thread/condition_variable + lock.unlock(); + cond_push_.notify_one(); + } + + if (rand.get_bool()) + continue; + + Glib::usleep(rand.get_int_range(0, 100000)); + } +} + +void +MessageQueue::consumer() +{ + Glib::Rand rand(4567); + + for (;;) + { + { + std::unique_lock lock(mutex_); + + cond_push_.wait(lock, [this]() -> bool { return !queue_.empty(); }); + + const int i = queue_.front(); + queue_.pop(); + std::cout << "\x08 \x08"; + std::cout.flush(); + + // We unlock before notifying, because that is what the documentation suggests: + // http://en.cppreference.com/w/cpp/thread/condition_variable + lock.unlock(); + cond_pop_.notify_one(); + + if (i >= 199) + break; + } + + if (rand.get_bool()) + continue; + + Glib::usleep(rand.get_int_range(10000, 200000)); + } +} +} + +int +main(int, char**) +{ + Glib::init(); + + MessageQueue queue; + + // TODO: Use std::make_unique() when we use C++14: + const auto producer = + std::unique_ptr(new std::thread(&MessageQueue::producer, &queue)); + + const auto consumer = + std::unique_ptr(new std::thread(&MessageQueue::consumer, &queue)); + + producer->join(); + consumer->join(); + + std::cout << std::endl; + + return 0; +} diff --git a/examples/thread/threadpool.cc b/examples/thread/threadpool.cc new file mode 100644 index 0000000..885962b --- /dev/null +++ b/examples/thread/threadpool.cc @@ -0,0 +1,68 @@ + +#include +#include +#include + +// TODO: Remove this example sometime. Glib::ThreadPool is deprecated. +// TODO: Maybe use std::async() instead? +#undef GLIBMM_DISABLE_DEPRECATED + +#include + +#ifdef GLIBMM_DISABLE_DEPRECATED +int +main(int, char**) +{ + // If glibmm is configured with --disable-deprecated-api, + // GLIBMM_DISABLE_DEPRECATED is defined in glibmmconfig.h. + std::cout << "Glib::ThreadPool not available because deprecated API has been disabled." + << std::endl; + return 77; // Tell automake's test harness to skip this test. +} + +#else + +#include +#include +#include + +namespace +{ + +std::mutex mutex; + +void +print_char(char c) +{ + Glib::Rand rand; + + for (auto i = 0; i < 100; ++i) + { + { + std::lock_guard lock(mutex); + std::cout << c; + std::cout.flush(); + } + Glib::usleep(rand.get_int_range(10000, 100000)); + } +} + +} // anonymous namespace + +int +main(int, char**) +{ + Glib::ThreadPool pool(10); + + for (auto c = 'a'; c <= 'z'; ++c) + { + pool.push(sigc::bind(sigc::ptr_fun(&print_char), c)); + } + + pool.shutdown(); + + std::cout << std::endl; + + return 0; +} +#endif // GLIBMM_DISABLE_DEPRECATED diff --git a/gio/giomm.h b/gio/giomm.h index 795a3e5..0787057 100644 --- a/gio/giomm.h +++ b/gio/giomm.h @@ -71,9 +71,6 @@ #include #include #include -#ifndef G_OS_WIN32 -#include -#endif #include #include #include @@ -110,7 +107,6 @@ #include #include #include -#include #include #include #include diff --git a/gio/giomm/Makefile.am b/gio/giomm/Makefile.am index b03256c..86b4978 100644 --- a/gio/giomm/Makefile.am +++ b/gio/giomm/Makefile.am @@ -17,8 +17,8 @@ lib_LTLIBRARIES = libgiomm-@GIOMM_API_VERSION@.la -include $(srcdir)/../src/filelist.am -include $(srcdir)/filelist.am +include $(srcdir)/../src/filelist.gmake.am +include $(srcdir)/filelist.gmake.am files_built_cc = $(giomm_files_built_cc) files_built_h = $(giomm_files_built_h) diff --git a/gio/giomm/contenttype.cc b/gio/giomm/contenttype.cc index abe6733..cf37c46 100644 --- a/gio/giomm/contenttype.cc +++ b/gio/giomm/contenttype.cc @@ -15,7 +15,6 @@ */ #include -#include #include namespace Gio @@ -117,17 +116,17 @@ content_type_guess(const std::string& filename, const std::string& data, bool& r return Glib::convert_return_gchar_ptr_to_ustring(cresult); } -std::vector +Glib::StringArrayHandle content_type_guess_for_tree(const Glib::RefPtr& root) { - return Glib::ArrayHandler::array_to_vector( + return Glib::StringArrayHandle( g_content_type_guess_for_tree(const_cast(root->gobj())), Glib::OWNERSHIP_DEEP); } -std::vector +Glib::ListHandle content_types_get_registered() { - return Glib::ListHandler::list_to_vector(g_content_types_get_registered(), Glib::OWNERSHIP_DEEP); + return Glib::ListHandle(g_content_types_get_registered(), Glib::OWNERSHIP_DEEP); } } // namespace Gio diff --git a/gio/giomm/contenttype.h b/gio/giomm/contenttype.h index 408adc8..de1821b 100644 --- a/gio/giomm/contenttype.h +++ b/gio/giomm/contenttype.h @@ -17,6 +17,7 @@ #define _GIOMM_CONTENTTYPE_H #include +#include #include #include #include @@ -168,7 +169,7 @@ Glib::ustring content_type_guess( * * @newin{2,18} */ -std::vector content_type_guess_for_tree(const Glib::RefPtr& root); +Glib::StringArrayHandle content_type_guess_for_tree(const Glib::RefPtr& root); /** * Gets a list of strings containing all the registered content types @@ -176,7 +177,7 @@ std::vector content_type_guess_for_tree(const Glib::RefPtr content_types_get_registered(); +Glib::ListHandle content_types_get_registered(); /** @} group giommContentType */ diff --git a/gio/giomm/filelist.am b/gio/giomm/filelist.am index 98c0e64..4cc2a50 100644 --- a/gio/giomm/filelist.am +++ b/gio/giomm/filelist.am @@ -2,7 +2,6 @@ giomm_files_built_cc = $(giomm_files_used_hg:.hg=.cc) wrap_init.cc giomm_files_built_h = $(giomm_files_used_hg:.hg=.h) -giomm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(giomm_files_used_hg)) giomm_files_extra_cc = contenttype.cc init.cc slot_async.cc socketsource.cc giomm_files_extra_h = contenttype.h init.h socketsource.h wrap_init.h diff --git a/gio/giomm/filelist.gmake.am b/gio/giomm/filelist.gmake.am new file mode 100644 index 0000000..73f9dd8 --- /dev/null +++ b/gio/giomm/filelist.gmake.am @@ -0,0 +1,6 @@ +## This file is part of glibmm. + +include $(top_srcdir)/gio/giomm/filelist.am + +# Taken out from $(top_srcdir)/gio/giomm/filelist.am +giomm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(giomm_files_used_hg)) diff --git a/gio/giomm/socketsource.cc b/gio/giomm/socketsource.cc index 7624913..497a27c 100644 --- a/gio/giomm/socketsource.cc +++ b/gio/giomm/socketsource.cc @@ -31,7 +31,7 @@ giomm_generic_socket_callback(sigc::slot_base* slot, GIOCondition condition) try { // Recreate the specific slot from the generic slot node. - return (*static_cast*>(slot))((Glib::IOCondition)condition); + return (*static_cast*>(slot))((Glib::IOCondition)condition); } catch (...) { @@ -66,14 +66,15 @@ inline SignalSocket::SignalSocket(GMainContext* context) : context_(context) } sigc::connection -SignalSocket::connect(const sigc::slot& slot, +SignalSocket::connect(const sigc::slot& slot, const Glib::RefPtr& socket, Glib::IOCondition condition, const Glib::RefPtr& cancellable, int priority) { GSource* const source = g_socket_create_source(socket->gobj(), (GIOCondition)condition, Glib::unwrap(cancellable)); return Glib::Source::attach_signal_source( - slot, priority, source, context_, (GSourceFunc)&giomm_signalsocket_callback); + slot, priority, source, context_, + Glib::function_pointer_cast(&giomm_signalsocket_callback)); } SignalSocket @@ -89,30 +90,14 @@ Glib::RefPtr SocketSource::create(const Glib::RefPtr& socket, Glib::IOCondition condition, const Glib::RefPtr& cancellable) { - return Glib::make_refptr_for_instance(new SocketSource(socket, condition, cancellable)); -} - -// static -Glib::RefPtr -SocketSource::create(GSocket* socket, Glib::IOCondition condition, - const Glib::RefPtr& cancellable) -{ - return Glib::make_refptr_for_instance(new SocketSource(socket, condition, cancellable)); + return Glib::RefPtr(new SocketSource(socket, condition, cancellable)); } SocketSource::SocketSource(const Glib::RefPtr& socket, Glib::IOCondition condition, const Glib::RefPtr& cancellable) : IOSource( g_socket_create_source(socket->gobj(), (GIOCondition)condition, Glib::unwrap(cancellable)), - (GSourceFunc)&giomm_socketsource_callback) -{ -} - -SocketSource::SocketSource(GSocket* socket, Glib::IOCondition condition, - const Glib::RefPtr& cancellable) -: IOSource( - g_socket_create_source(socket, (GIOCondition)condition, Glib::unwrap(cancellable)), - (GSourceFunc)&giomm_socketsource_callback) + Glib::function_pointer_cast(&giomm_socketsource_callback)) { } diff --git a/gio/giomm/socketsource.h b/gio/giomm/socketsource.h index 2b371c6..c1345c6 100644 --- a/gio/giomm/socketsource.h +++ b/gio/giomm/socketsource.h @@ -23,10 +23,6 @@ #include #include -#ifndef DOXYGEN_SHOULD_SKIP_THIS -using GSocket = struct _GSocket; -#endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Gio { class Socket; @@ -73,7 +69,7 @@ public: * @param priority The priority of the new event source. * @return A connection handle, which can be used to disconnect the handler. */ - sigc::connection connect(const sigc::slot& slot, + sigc::connection connect(const sigc::slot& slot, const Glib::RefPtr& socket, Glib::IOCondition condition, const Glib::RefPtr& cancellable = Glib::RefPtr(), int priority = Glib::PRIORITY_DEFAULT); @@ -110,23 +106,10 @@ public: Glib::IOCondition condition, const Glib::RefPtr& cancellable = Glib::RefPtr()); - protected: SocketSource(const Glib::RefPtr& socket, Glib::IOCondition condition, const Glib::RefPtr& cancellable); ~SocketSource() noexcept override; - -private: - friend Socket; - - // This is just to avoid the need for Gio::Socket to create a RefPtr<> to itself. - static Glib::RefPtr create(GSocket* socket, - Glib::IOCondition condition, - const Glib::RefPtr& cancellable = Glib::RefPtr()); - - // This is just to avoid the need for Gio::Socket to create a RefPtr<> to itself. - SocketSource(GSocket* socket, Glib::IOCondition condition, - const Glib::RefPtr& cancellable); }; } // namespace Gio diff --git a/gio/src/Makefile.am b/gio/src/Makefile.am index 226d3a9..1fdf364 100644 --- a/gio/src/Makefile.am +++ b/gio/src/Makefile.am @@ -23,7 +23,7 @@ binding_name = giomm wrap_init_flags = --namespace=Gio --parent_dir=giomm codegen_srcdir = $(top_srcdir)/tools -include $(srcdir)/filelist.am +include $(srcdir)/filelist.gmake.am include $(top_srcdir)/tools/m4/filelist.am files_defs = $(giomm_files_defs) diff --git a/gio/src/action.hg b/gio/src/action.hg index 5075846..c893cbc 100644 --- a/gio/src/action.hg +++ b/gio/src/action.hg @@ -95,7 +95,10 @@ public: template void get_state_hint(T_Value& value) const; - _WRAP_METHOD(Glib::VariantContainerBase get_state_hint_variant() const, g_action_get_state_hint) + //TODO: When we can break ABI, Return a Glib::VariantContainerBase, + // as we already do for ActionGroup::get_action_state_hint(), + // because that is what this returns (to specify a range). + _WRAP_METHOD(Glib::VariantBase get_state_hint_variant() const, g_action_get_state_hint) _WRAP_METHOD(bool get_enabled() const, g_action_get_enabled) @@ -124,6 +127,8 @@ public: _WRAP_METHOD(void change_state_variant(const Glib::VariantBase& value), g_action_change_state) + _WRAP_METHOD(void change_state(const Glib::VariantBase& value), g_action_change_state, deprecated "Use the templated method instead, passing a normal C++ type.") + /** Queries the current state of the action. * * If the action is not stateful then a null Variant will be returned. If the @@ -160,6 +165,8 @@ public: _WRAP_METHOD(void activate_variant(const Glib::VariantBase& parameter), g_action_activate) + _WRAP_METHOD(void activate(const Glib::VariantBase& parameter), g_action_activate, deprecated "Use the templated method instead, passing a normal C++ type.") + _WRAP_METHOD(static bool name_is_valid(const Glib::ustring& action_name), g_action_name_is_valid ) /** Parses a detailed action name into its separate name and target components. @@ -177,7 +184,7 @@ public: static void parse_detailed_name(const Glib::ustring& detailed_name, Glib::ustring& action_name, T_Value& target_value); _WRAP_METHOD(static void parse_detailed_name_variant(const Glib::ustring& detailed_name, - Glib::ustring& action_name{>>}, Glib::VariantBase& target_value{>>}), g_action_parse_detailed_name, errthrow "Glib::VariantParseError") + Glib::ustring& action_name{>>}, Glib::VariantBase& target_value{>>}), g_action_parse_detailed_name, errthrow "Glib::VariantParseError", errthrow) /** Formats a detailed action name from the action's action_name and @a target_value. * diff --git a/gio/src/actiongroup.hg b/gio/src/actiongroup.hg index de43abf..2c40a16 100644 --- a/gio/src/actiongroup.hg +++ b/gio/src/actiongroup.hg @@ -74,6 +74,9 @@ public: _WRAP_METHOD(Glib::VariantType get_action_parameter_type(const Glib::ustring& action_name) const, g_action_group_get_action_parameter_type) _WRAP_METHOD(Glib::VariantType get_action_state_type(const Glib::ustring& action_name) const, g_action_group_get_action_state_type) + + _WRAP_METHOD(Glib::VariantContainerBase get_action_state_hint(const Glib::ustring& action_name) const, g_action_group_get_action_state_hint, deprecated "Use the get_action_state() method that takes an output parameter instead.") + //TODO: How do we check for a nullptr Variant? /** * Requests a hint about the valid range of values for the state of the @@ -100,6 +103,9 @@ public: _WRAP_METHOD(Glib::VariantContainerBase get_action_state_hint_variant(const Glib::ustring& action_name) const, g_action_group_get_action_state_hint) + + _WRAP_METHOD(Glib::VariantBase get_action_state(const Glib::ustring& action_name) const, g_action_group_get_action_state, deprecated "Use the get_action_state() method that takes an output parameter instead.") + //TODO: How do we check for a nullptr Variant? /** Queries the current state of the named action within the action group. * @@ -128,13 +134,14 @@ public: //TODO: Add templated method, renaming this to action_state_changed_variant). _WRAP_METHOD(void action_state_changed (const Glib::ustring& action_name, const Glib::VariantBase& state), g_action_group_action_state_changed) - _WRAP_SIGNAL(void action_added(const Glib::ustring& action_name), "action-added", detail_name action_name) - _WRAP_SIGNAL(void action_enabled_changed(const Glib::ustring& action_name, bool enabled), "action-enabled-changed", detail_name action_name) - _WRAP_SIGNAL(void action_removed(const Glib::ustring& action_name), "action-removed", detail_name action_name) + //TODO: Remove two_signal_methods when we can break ABI. + _WRAP_SIGNAL(void action_added(const Glib::ustring& action_name), "action-added", detail_name action_name, two_signal_methods) + _WRAP_SIGNAL(void action_enabled_changed(const Glib::ustring& action_name, bool enabled), "action-enabled-changed", detail_name action_name, two_signal_methods) + _WRAP_SIGNAL(void action_removed(const Glib::ustring& action_name), "action-removed", detail_name action_name, two_signal_methods) #m4 _CONVERSION(`GVariant*', `const Glib::VariantBase&', `Glib::wrap($3, true)') - _WRAP_SIGNAL(void action_state_changed(const Glib::ustring& action_name, const Glib::VariantBase& value), "action-state-changed", detail_name action_name) + _WRAP_SIGNAL(void action_state_changed(const Glib::ustring& action_name, const Glib::VariantBase& value), "action-state-changed", detail_name action_name, two_signal_methods) _WRAP_VFUNC(bool has_action(const Glib::ustring& name) const, "has_action") diff --git a/gio/src/actionmap.ccg b/gio/src/actionmap.ccg index c39a242..01a8d37 100644 --- a/gio/src/actionmap.ccg +++ b/gio/src/actionmap.ccg @@ -36,6 +36,17 @@ ActionMap::add_action(const Glib::ustring& name, const ActivateSlot& slot) return action; } +_DEPRECATE_IFDEF_START +Glib::RefPtr +ActionMap::add_action_with_parameter( + const Glib::ustring& name, const ActivateWithParameterSlot& slot) +{ + auto action = add_action(name); + action->signal_activate().connect(slot); + return action; +} +_DEPRECATE_IFDEF_END + Glib::RefPtr ActionMap::add_action_with_parameter( const Glib::ustring& name, const Glib::VariantType& parameter_type, const ActivateWithParameterSlot& slot) @@ -80,7 +91,8 @@ static void on_action_radio_string( const Glib::VariantBase& parameter, const Gio::ActionMap::ActivateWithStringParameterSlot& slot) { - const auto variantDerived = Glib::VariantBase::cast_dynamic>(parameter); + // TODO: This syntax is odd: + const auto variantDerived = parameter.cast_dynamic>(parameter); const auto str = variantDerived.get(); slot(str); } @@ -104,7 +116,8 @@ static void on_action_radio_int( const Glib::VariantBase& parameter, const Gio::ActionMap::ActivateWithIntParameterSlot& slot) { - const auto variantDerived = Glib::VariantBase::cast_dynamic>(parameter); + // TODO: This syntax is odd: + const auto variantDerived = parameter.cast_dynamic>(parameter); const auto str = variantDerived.get(); slot(str); } diff --git a/gio/src/actionmap.hg b/gio/src/actionmap.hg index b3fa9e2..74b3dd6 100644 --- a/gio/src/actionmap.hg +++ b/gio/src/actionmap.hg @@ -30,6 +30,10 @@ namespace Gio class Action; +//TODO: Instead derive from ActionGroup, when we can break ABI, +//because the GActionMap interface requires the GActionGroup interface. +//LoadableIcon does a similar thing correctly, for instance. + /** ActionMap - Interface for action containers. * The ActionMap interface is implemented by ActionGroup implementations that * operate by containing a number of named Action instances, such as @@ -54,7 +58,6 @@ public: _WRAP_METHOD(Glib::RefPtr lookup_action(const Glib::ustring& action_name), g_action_map_lookup_action, refreturn) _WRAP_METHOD(Glib::RefPtr lookup_action(const Glib::ustring& action_name) const, g_action_map_lookup_action, constversion, refreturn) - /** A convenience method for creating a SimpleAction instance * and adding it to the ActionMap. * @@ -70,7 +73,7 @@ public: * For instance, * void on_slot_activated(); */ - using ActivateSlot = sigc::slot; + using ActivateSlot = sigc::slot; /** A convenience method for creating a SimpleAction instance * and adding it to the ActionMap. @@ -89,7 +92,22 @@ public: * For instance, * void on_slot_activated(const Glib::VariantBase& parameter); */ - using ActivateWithParameterSlot = sigc::slot; + using ActivateWithParameterSlot = sigc::slot; + +_DEPRECATE_IFDEF_START + /** A convenience method for creating a SimpleAction instance + * and adding it to the ActionMap. + * + * @param name The name of the Action. + * @param slot The callback method to be called when the action is activated. + * @return The Action. + * + * @deprecated This overload does not work as it does not set a parameter + * type on the Action, so activating it with a parameter cannot work. Use the + * other add_action_with_parameter() overload, which takes a parameter type. + */ + Glib::RefPtr add_action_with_parameter(const Glib::ustring& name, const ActivateWithParameterSlot& slot); +_DEPRECATE_IFDEF_END /** A convenience method for creating a SimpleAction instance, which when * activated will call a slot receiving a given type of parameter, and adding @@ -139,7 +157,7 @@ public: * For instance, * void on_slot_activated(const Glib::ustring& parameter); */ - using ActivateWithStringParameterSlot = sigc::slot; + using ActivateWithStringParameterSlot = sigc::slot; //TODO: Docs: Add hints about how to specify the various possible states in the GtkBuilder XML. /** A convenience method for creating a string-based radio SimpleAction instance @@ -169,8 +187,8 @@ public: * For instance, * void on_slot_activated(int parameter); */ - using ActivateWithIntParameterSlot = sigc::slot; - + using ActivateWithIntParameterSlot = sigc::slot; + //TODO: Docs: Add hints about how to specify the various possible states in the GtkBuilder XML. /** A convenience method for creating an integer-based radio SimpleAction instance * and adding it to the ActionMap. @@ -186,9 +204,10 @@ public: #m4 _CONVERSION(`Glib::RefPtr', `GAction*', `Glib::unwrap($3)') _WRAP_VFUNC(Glib::RefPtr lookup_action(const Glib::ustring& name) const, "lookup_action", refreturn) -#m4 _CONVERSION(`GAction*', `const Glib::RefPtr&', `Glib::wrap($3, true)') - _WRAP_VFUNC(void add_action(const Glib::RefPtr& action) const, "add_action") - + //TODO: Change this to use const & when we can break ABI. + // ( Changing it causes a symbol lookup error when trying to run already-built applications. ) +#m4 _CONVERSION(`GAction*', `Glib::RefPtr', `Glib::wrap($3, true)') + _WRAP_VFUNC(void add_action(Glib::RefPtr action) const, "add_action") _WRAP_VFUNC(void remove_action(const Glib::ustring& name), "remove_action") }; diff --git a/gio/src/appinfo.ccg b/gio/src/appinfo.ccg index 6be12b9..f239790 100644 --- a/gio/src/appinfo.ccg +++ b/gio/src/appinfo.ccg @@ -15,6 +15,7 @@ */ #include +#include #include #include "slot_async.h" #include @@ -24,7 +25,7 @@ namespace Gio Glib::RefPtr AppInfo::create_from_commandline( - const std::string& commandline, const std::string& application_name, CreateFlags flags) + const std::string& commandline, const std::string& application_name, AppInfoCreateFlags flags) { GAppInfo* capp_info = nullptr; GError* gerror = nullptr; @@ -46,14 +47,14 @@ AppInfo::create_duplicate() const bool AppInfo::launch( - const Glib::RefPtr& file, const Glib::RefPtr& launch_context) + const Glib::RefPtr& file, const Glib::RefPtr& context) { std::vector> vec = { file }; GError* gerror = nullptr; const bool retvalue = g_app_info_launch(gobj(), Glib::ListHandler>::vector_to_list(vec).data(), - Glib::unwrap(launch_context), &(gerror)); + Glib::unwrap(context), &(gerror)); if (gerror) ::Glib::Error::throw_exception(gerror); @@ -75,14 +76,14 @@ AppInfo::launch(const Glib::RefPtr& file) } bool -AppInfo::launch_uri(const std::string& uri, const Glib::RefPtr& launch_context) +AppInfo::launch_uri(const std::string& uri, const Glib::RefPtr& context) { std::vector vec = { uri }; GError* gerror = nullptr; const bool retvalue = g_app_info_launch_uris(gobj(), Glib::ListHandler::vector_to_list(vec).data(), - Glib::unwrap(launch_context), &(gerror)); + Glib::unwrap(context), &(gerror)); if (gerror) ::Glib::Error::throw_exception(gerror); diff --git a/gio/src/appinfo.hg b/gio/src/appinfo.hg index 7833cc0..27dd248 100644 --- a/gio/src/appinfo.hg +++ b/gio/src/appinfo.hg @@ -25,6 +25,8 @@ _CONFIGINCLUDE(giommconfig.h) #include #include +#include +#include #include //#include #include @@ -40,6 +42,7 @@ typedef struct _GAppInfoIface GAppInfoIface; namespace Gio { +_WRAP_ENUM(AppInfoCreateFlags, GAppInfoCreateFlags, NO_GTYPE) class File; @@ -54,11 +57,9 @@ class AppInfo : public Glib::Interface _CLASS_INTERFACE(AppInfo, GAppInfo, G_APP_INFO, GAppInfoIface) public: - _WRAP_ENUM(CreateFlags, GAppInfoCreateFlags, NO_GTYPE) - static Glib::RefPtr create_from_commandline(const std::string& commandline, const std::string& application_name, - CreateFlags flags); + AppInfoCreateFlags flags); /** Creates a duplicate of this AppInfo. * @return A duplicate of this AppInfo. @@ -154,10 +155,14 @@ public: _WRAP_METHOD(bool supports_uris() const, g_app_info_supports_uris) _WRAP_METHOD(bool supports_files() const, g_app_info_supports_files) - #m4 _CONVERSION(`const std::vector&',`GList*',`Glib::ListHandler::vector_to_list($3).data()') +#m4 _CONVERSION(`const Glib::ListHandle&',`GList*',`$3.data()') + _WRAP_METHOD(bool launch_uris(const Glib::ListHandle& uris, + GAppLaunchContext* context), + g_app_info_launch_uris, + errthrow, deprecated "Use the method that takes an AppLaunchContext") //TODO: I think we use Glib::ustring elsewhere for URIs: - _WRAP_METHOD(bool launch_uris(const std::vector& uris, + _WRAP_METHOD(bool launch_uris(const Glib::ListHandle& uris, const Glib::RefPtr& context{?}), g_app_info_launch_uris, errthrow) @@ -203,15 +208,15 @@ public: g_app_info_remove_supports_type, errthrow) -#m4 _CONVERSION(`const char**', `std::vector', `Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_NONE)') - _WRAP_METHOD(std::vector get_supported_types() const, g_app_info_get_supported_types) +#m4 _CONVERSION(`const char**', `Glib::StringArrayHandle', `Glib::StringArrayHandle($3, Glib::OWNERSHIP_NONE)') + _WRAP_METHOD(Glib::StringArrayHandle get_supported_types() const, g_app_info_get_supported_types) _WRAP_METHOD(bool set_as_last_used_for_type(const std::string& content_type), g_app_info_set_as_last_used_for_type, errthrow) -#m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(static std::vector> get_all(), g_app_info_get_all) +#m4 _CONVERSION(`GList*',`Glib::ListHandle >',`Glib::ListHandle >($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(static Glib::ListHandle > get_all(), g_app_info_get_all) - _WRAP_METHOD(static std::vector> get_all_for_type(const std::string& content_type), g_app_info_get_all_for_type) + _WRAP_METHOD(static Glib::ListHandle > get_all_for_type(const std::string& content_type), g_app_info_get_all_for_type) _WRAP_METHOD(static Glib::RefPtr get_default_for_type(const std::string& content_type, bool must_support_uris = true), g_app_info_get_default_for_type) _WRAP_METHOD(static Glib::RefPtr get_default_for_uri_scheme(const std::string& uri_scheme), g_app_info_get_default_for_uri_scheme) _WRAP_METHOD(static void reset_type_associations(const std::string& content_type), g_app_info_reset_type_associations) @@ -230,10 +235,12 @@ protected: //_WRAP_VFUNC(std::string get_description() const, "get_description") //_WRAP_VFUNC(std::string get_executable() const, "get_executable") //_WRAP_VFUNC(Glib::RefPtr get_icon() const, "get_icon") +//#m4 _CONVERSION(`const Glib::ListHandle&',`GList*',`$3.data()') +//#m4 _CONVERSION(`GList*',`const Glib::ListHandle&',`Glib::ListHandle($3, Glib::OWNERSHIP_NONE)') //_WRAP_VFUNC(bool launch(const std::vector& filenames, const Glib::RefPtr& context, GError** error), "launch") //_WRAP_VFUNC(bool supports_uris() const, "supports_uris") //_WRAP_VFUNC(bool supports_files() const, "supports_files") - //_WRAP_VFUNC(bool launch_uris(const std::vector& uris, const Glib::RefPtr& context, GError** error), "launch_uris") + //_WRAP_VFUNC(bool launch_uris(const Glib::ListHandle& uris, const Glib::RefPtr& context, GError** error), "launch_uris") //_WRAP_VFUNC(bool should_show() const, "should_show") //_WRAP_VFUNC(bool set_as_default_for_type(const std::string& content_type, GError** error), "set_as_default_for_type") //_WRAP_VFUNC(bool set_as_default_for_extension(const std::string& extension, GError** error), "set_as_default_for_extension") diff --git a/gio/src/applaunchcontext.hg b/gio/src/applaunchcontext.hg index f973f08..3096e8e 100644 --- a/gio/src/applaunchcontext.hg +++ b/gio/src/applaunchcontext.hg @@ -19,6 +19,7 @@ #include #include +#include #include //#include #include @@ -53,11 +54,11 @@ public: #m4 _CONVERSION(`char**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') _WRAP_METHOD(std::vector get_environment() const, g_app_launch_context_get_environment) -#m4 _CONVERSION(`const std::vector&',`GList*',`Glib::ListHandler::vector_to_list$3.data()') - _WRAP_METHOD(std::string get_display(const Glib::RefPtr& info, const std::vector>& files), +#m4 _CONVERSION(`const Glib::ListHandle&',`GList*',`$3.data()') + _WRAP_METHOD(std::string get_display(const Glib::RefPtr& info, const Glib::ListHandle< Glib::RefPtr >& files), g_app_launch_context_get_display) - _WRAP_METHOD(std::string get_startup_notify_id(const Glib::RefPtr& info, const std::vector>& files), + _WRAP_METHOD(std::string get_startup_notify_id(const Glib::RefPtr& info, const Glib::ListHandle< Glib::RefPtr >& files), g_app_launch_context_get_startup_notify_id) _WRAP_METHOD(void launch_failed(const std::string& startup_notify_id), g_app_launch_context_launch_failed) diff --git a/gio/src/application.ccg b/gio/src/application.ccg index d85ae8d..ab639fb 100644 --- a/gio/src/application.ccg +++ b/gio/src/application.ccg @@ -20,19 +20,43 @@ #include #include // std::memset() #include -#include #include -using Flags = Gio::Application::Flags; - namespace // anonymous { +// TODO: At the next ABI break, implement the pimpl idiom. Then we need not use +// a GQuark for ExtraApplicationData, which should be renamed to +// struct Gio::Application::Impl. +// These are new data members that can't be added to Gio::Application now, +// because it would break ABI. +struct ExtraApplicationData +{ + std::vector option_entry_strings; + + ~ExtraApplicationData() + { + for (auto str : option_entry_strings) + { + g_free(str); + } + } +}; + +GQuark quark_extra_application_data = + g_quark_from_static_string("glibmm__Gio::Application::quark_extra_application_data"); + +void +Application_delete_extra_application_data(gpointer data) +{ + ExtraApplicationData* extra_application_data = static_cast(data); + delete extra_application_data; +} static void Application_signal_open_callback( GApplication* self, GFile** files, gint n_files, const gchar* hint, void* data) { - using SlotType = sigc::slot; + using SlotType = sigc::slot; Gio::Application::type_vec_files vec_files(n_files); for (int i = 0; i < n_files; ++i) @@ -67,7 +91,7 @@ Application_signal_open_notify_callback( GApplication* self, GFile** files, gint n_files, const gchar* hint, void* data) { using namespace Gio; - using SlotType = sigc::slot; + using SlotType = sigc::slot; Application::type_vec_files vec_files(n_files); for (int i = 0; i < n_files; i++) @@ -113,41 +137,26 @@ static const Glib::SignalProxyInfo Application_signal_open_info = { "open", class OptionArgCallbackData { public: - explicit OptionArgCallbackData(const Gio::Application* application, - const Glib::ustring& long_name, gchar short_name, - const Glib::ustring& description, const Glib::ustring& arg_description, + explicit OptionArgCallbackData(const Gio::Application* application, gchar short_name, const Glib::OptionGroup::SlotOptionArgString& slot) - : - application_(application), - long_name_(g_strdup(long_name.c_str())), // must not be nullptr + : application_(application), short_name_(short_name), - description_(g_strdup(Glib::c_str_or_nullptr(description))), - arg_description_(g_strdup(Glib::c_str_or_nullptr(arg_description))), slot_string_(new Glib::OptionGroup::SlotOptionArgString(slot)), slot_filename_(nullptr) { } - explicit OptionArgCallbackData(const Gio::Application* application, - const Glib::ustring& long_name, gchar short_name, - const Glib::ustring& description, const Glib::ustring& arg_description, + explicit OptionArgCallbackData(const Gio::Application* application, gchar short_name, const Glib::OptionGroup::SlotOptionArgFilename& slot) - : - application_(application), - long_name_(g_strdup(long_name.c_str())), // must not be nullptr + : application_(application), short_name_(short_name), - description_(g_strdup(Glib::c_str_or_nullptr(description))), - arg_description_(g_strdup(Glib::c_str_or_nullptr(arg_description))), slot_string_(nullptr), slot_filename_(new Glib::OptionGroup::SlotOptionArgFilename(slot)) { } const Gio::Application* get_application() const { return application_; } - const gchar* get_long_name() const { return long_name_; } gchar get_short_name() const { return short_name_; } - const gchar* get_description() const { return description_; } - const gchar* get_arg_description() const { return arg_description_; } bool is_filename_option() const { return slot_filename_ != nullptr; } const Glib::OptionGroup::SlotOptionArgString* get_slot_string() const { return slot_string_; } @@ -159,9 +168,6 @@ public: ~OptionArgCallbackData() { - g_free(long_name_); - g_free(description_); - g_free(arg_description_); delete slot_string_; delete slot_filename_; // Don't delete application_. It's not owned by this class. @@ -169,19 +175,15 @@ public: private: const Gio::Application* application_; - gchar* long_name_; gchar short_name_; - gchar* description_; - gchar* arg_description_; // One of these slot pointers is nullptr and the other one points to a slot. Glib::OptionGroup::SlotOptionArgString* slot_string_; Glib::OptionGroup::SlotOptionArgFilename* slot_filename_; // Not copyable - OptionArgCallbackData(const OptionArgCallbackData&) = delete; - OptionArgCallbackData& operator=(const OptionArgCallbackData&) = delete; - -}; // end class OptionArgCallbackData + OptionArgCallbackData(const OptionArgCallbackData&); + OptionArgCallbackData& operator=(const OptionArgCallbackData&); +}; using OptionArgCallbackDataMap = std::map; OptionArgCallbackDataMap option_arg_callback_data; @@ -270,13 +272,11 @@ Application::custom_class_init() return application_class_.init(); } -Application::Application(const Glib::ustring& application_id, Flags flags) +Application::Application(const Glib::ustring& application_id, ApplicationFlags flags) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. - // GApplication complains about "" but allows nullptr, so we avoid passing "". Glib::ObjectBase(nullptr), - Glib::Object(Glib::ConstructParams(custom_class_init(), - "application_id", Glib::c_str_or_nullptr(application_id), - "flags", static_cast(flags), nullptr)) + Glib::Object(Glib::ConstructParams(custom_class_init(), "application_id", + Glib::c_str_or_nullptr(application_id), "flags", ((GApplicationFlags)(flags)), nullptr)) { } @@ -351,10 +351,10 @@ Application_Class::open_callback(GApplication* self, GFile** files, gint n_files (*base->open)(self, files, n_files, hint); } -Glib::SignalProxy +Glib::SignalProxy Application::signal_open() { - return Glib::SignalProxy( + return Glib::SignalProxy( this, &Application_signal_open_info); } @@ -392,67 +392,55 @@ Application::open(const Glib::RefPtr& file, const Glib::ustring& hint void Application::add_main_option_entry(OptionType arg_type, const Glib::ustring& long_name, gchar short_name, const Glib::ustring& description, const Glib::ustring& arg_description, - Glib::OptionEntry::Flags flags) + int flags) { - // g_application_add_main_option() saves copies of the strings. - // No need to keep copies in Gio::Application. - g_application_add_main_option(gobj(), long_name.c_str(), short_name, - static_cast(flags), static_cast(arg_type), - description.c_str(), Glib::c_str_or_nullptr(arg_description)); + add_main_option_entry_private( + (GOptionArg)arg_type, long_name, short_name, description, arg_description, flags); } void Application::add_main_option_entry(const Glib::OptionGroup::SlotOptionArgString& slot, const Glib::ustring& long_name, gchar short_name, const Glib::ustring& description, - const Glib::ustring& arg_description, Glib::OptionEntry::Flags flags) + const Glib::ustring& arg_description, int flags) { - OptionArgCallbackData* callback_data = nullptr; { std::lock_guard lock(option_arg_callback_data_mutex); OptionArgCallbackDataMap::iterator iterFind = option_arg_callback_data.find(long_name); if (iterFind != option_arg_callback_data.end()) return; // Ignore duplicates - callback_data = new OptionArgCallbackData( - this, long_name, short_name, description, arg_description, slot); + auto callback_data = new OptionArgCallbackData(this, short_name, slot); option_arg_callback_data[long_name] = callback_data; } // option_arg_callback_data_mutex.unlock() - add_main_option_entry_private(callback_data->get_long_name(), short_name, - callback_data->get_description(), callback_data->get_arg_description(), - flags & ~Glib::OptionEntry::Flags::FILENAME); + add_main_option_entry_private(G_OPTION_ARG_CALLBACK, long_name, short_name, description, + arg_description, flags & ~Glib::OptionEntry::FLAG_FILENAME); } void Application::add_main_option_entry_filename(const Glib::OptionGroup::SlotOptionArgFilename& slot, const Glib::ustring& long_name, gchar short_name, const Glib::ustring& description, - const Glib::ustring& arg_description, Glib::OptionEntry::Flags flags) + const Glib::ustring& arg_description, int flags) { - OptionArgCallbackData* callback_data = nullptr; { std::lock_guard lock(option_arg_callback_data_mutex); OptionArgCallbackDataMap::iterator iterFind = option_arg_callback_data.find(long_name); if (iterFind != option_arg_callback_data.end()) return; // Ignore duplicates - callback_data = new OptionArgCallbackData( - this, long_name, short_name, description, arg_description, slot); + auto callback_data = new OptionArgCallbackData(this, short_name, slot); option_arg_callback_data[long_name] = callback_data; } // option_arg_callback_data_mutex.unlock() - add_main_option_entry_private(callback_data->get_long_name(), short_name, - callback_data->get_description(), callback_data->get_arg_description(), - flags | Glib::OptionEntry::Flags::FILENAME); + add_main_option_entry_private(G_OPTION_ARG_CALLBACK, long_name, short_name, description, + arg_description, flags | Glib::OptionEntry::FLAG_FILENAME); } void -Application::add_main_option_entry_private(const gchar* long_name, - gchar short_name, const gchar* description, - const gchar* arg_description, Glib::OptionEntry::Flags flags) +Application::add_main_option_entry_private(GOptionArg arg, const Glib::ustring& long_name, + gchar short_name, const Glib::ustring& description, const Glib::ustring& arg_description, + int flags) { - // g_application_add_main_option() can't be used for options with - // a callback slot, because GOptionEntry.arg_data must be non-null. - // Create a temporary array, just so we can give the correct thing to // g_application_add_main_option_entries(): GOptionEntry array[2]; @@ -461,25 +449,51 @@ Application::add_main_option_entry_private(const gchar* long_name, // g_application_add_main_option_entries() does not take its own copy // of the strings. We must keep them alive, and keep pointers to them, // so we can delete them when the Application instance is deleted. - // This is handled in OptionArgCallbackData. + + // GOptionEntry.long_name must be set, even if it's an empty string. + gchar* lname = g_strdup(long_name.c_str()); + gchar* desc = description.empty() ? nullptr : g_strdup(description.c_str()); + gchar* arg_desc = arg_description.empty() ? nullptr : g_strdup(arg_description.c_str()); + + ExtraApplicationData* extra_application_data = + static_cast(g_object_get_qdata(gobject_, quark_extra_application_data)); + if (!extra_application_data) + { + extra_application_data = new ExtraApplicationData(); + g_object_set_qdata_full(gobject_, quark_extra_application_data, extra_application_data, + Application_delete_extra_application_data); + } + + extra_application_data->option_entry_strings.emplace_back(lname); + if (desc) + extra_application_data->option_entry_strings.emplace_back(desc); + if (arg_desc) + extra_application_data->option_entry_strings.emplace_back(arg_desc); // Fill in array[0]. - array[0].arg = G_OPTION_ARG_CALLBACK; - array[0].long_name = long_name; + array[0].arg = arg; + array[0].long_name = lname; array[0].short_name = short_name; - array[0].description = description; - array[0].arg_description = arg_description; - array[0].flags = static_cast(flags); - - // GoptionEntry.arg_data is a function pointer, cast to void*. - // See Glib::OptionGroup::CppOptionEntry::allocate_c_arg() for a discussion - // of this hack. - union { - void* dp; - GOptionArgFunc fp; - } u; - u.fp = &Application_option_arg_callback; - array[0].arg_data = u.dp; + array[0].description = desc; + array[0].arg_description = arg_desc; + array[0].flags = flags; + + if (arg == G_OPTION_ARG_CALLBACK) + { + // GoptionEntry.arg_data is a function pointer, cast to void*. + // See Glib::OptionGroup::CppOptionEntry::allocate_c_arg() for a discussion + // of this hack. + union { + void* dp; + GOptionArgFunc fp; + } u; + u.fp = &Application_option_arg_callback; + array[0].arg_data = u.dp; + } + else + // We ensure that this is null to ensure that it is not used, + // telling GApplication to put the parsed value in the options VariantDict instead. + array[0].arg_data = nullptr; g_application_add_main_option_entries(gobj(), array); } @@ -490,4 +504,14 @@ Application::unset_resource_base_path() g_application_set_resource_base_path(gobj(), nullptr /* see the C docs. */); } +Glib::PropertyProxy< std::string > Application::property_resource_base_path_string() +{ + return Glib::PropertyProxy< std::string >(this, "resource-base-path"); +} + +Glib::PropertyProxy_ReadOnly< std::string > Application::property_resource_base_path_string() const +{ + return Glib::PropertyProxy_ReadOnly< std::string >(this, "resource-base-path"); +} + } // namespace Gio diff --git a/gio/src/application.hg b/gio/src/application.hg index 7767854..28db5c7 100644 --- a/gio/src/application.hg +++ b/gio/src/application.hg @@ -34,6 +34,7 @@ _PINCLUDE(glibmm/private/object_p.h) namespace Gio { +_WRAP_ENUM(ApplicationFlags, GApplicationFlags, NO_GTYPE) /** Application - Core application class. * An Application is the foundation of an application, unique for a given @@ -88,9 +89,6 @@ class Application : public Glib::Object, public ActionGroup, public ActionMap _IMPLEMENTS_INTERFACE(ActionGroup) _IMPLEMENTS_INTERFACE(ActionMap) -public: - _WRAP_ENUM(Flags, GApplicationFlags, NO_GTYPE, s#^FLAGS_##) - protected: /** Constructs an application instance. * If no application ID is given then some features (most notably application uniqueness) will be disabled. @@ -98,20 +96,18 @@ protected: * @param application_id The application ID. * @param flags The application flags. */ - explicit Application(const Glib::ustring& application_id = Glib::ustring(), Flags flags = Flags::NONE); + explicit Application(const Glib::ustring& application_id = Glib::ustring(), ApplicationFlags flags = APPLICATION_FLAGS_NONE); _IGNORE(g_application_new) public: _CUSTOM_DTOR() - // Application::OptionType wraps GOptionArg, but _WRAP_ENUM can't be used here. - // GOptionArg is defined in glib_enums.defs, not in gio_enums.defs. /** The OptionType enum values determine the expected type of a command line option. * If an option expects an extra argument, it can be specified in several ways; * with a short option: "-x arg", with a long option: "--name arg" or combined - * in a single argument: "--name=arg". All option types except OptionType::BOOL - * expect an extra argument. OptionType::STRING_VECTOR and - * OptionType::FILENAME_VECTOR accept more than one extra argument. + * in a single argument: "--name=arg". All option types except OPTION_TYPE_BOOL + * expect an extra argument. OPTION_TYPE_STRING_VECTOR and + * OPTION_TYPE_FILENAME_VECTOR accept more than one extra argument. * * The descriptions of the enum values show what type of Glib::Variant<> * is stored in a Glib::VariantDict. @@ -120,17 +116,17 @@ public: * * @ingroup glibmmEnums */ - enum class OptionType + enum OptionType { - BOOL, ///< bool - STRING, ///< Glib::ustring - INT, ///< gint32 - // CALLBACK, - FILENAME = INT+2, ///< std::string - STRING_VECTOR, ///< std::vector - FILENAME_VECTOR, ///< std::vector - DOUBLE, ///< double - INT64 ///< gint64 + OPTION_TYPE_BOOL, ///< bool + OPTION_TYPE_STRING, ///< Glib::ustring + OPTION_TYPE_INT, ///< gint32 + //OPTION_TYPE_CALLBACK, + OPTION_TYPE_FILENAME = OPTION_TYPE_INT+2, ///< std::string + OPTION_TYPE_STRING_VECTOR, ///< std::vector + OPTION_TYPE_FILENAME_VECTOR, ///< std::vector + OPTION_TYPE_DOUBLE, ///< double + OPTION_TYPE_INT64 ///< gint64 }; /** Creates an application instance. @@ -139,7 +135,7 @@ public: * @param application_id The application ID. * @param flags The application flags. */ - _WRAP_CREATE(const Glib::ustring& application_id = Glib::ustring(), Flags flags = Flags::NONE) + _WRAP_CREATE(const Glib::ustring& application_id = Glib::ustring(), ApplicationFlags flags = APPLICATION_FLAGS_NONE) _WRAP_METHOD(static bool id_is_valid(const Glib::ustring& application_id), g_application_id_is_valid) @@ -155,8 +151,8 @@ public: _WRAP_METHOD(guint get_inactivity_timeout() const, g_application_get_inactivity_timeout) _WRAP_METHOD(void set_inactivity_timeout(guint inactivity_timeout), g_application_set_inactivity_timeout) - _WRAP_METHOD(Flags get_flags() const, g_application_get_flags) - _WRAP_METHOD(void set_flags(Flags flags), g_application_set_flags) + _WRAP_METHOD(ApplicationFlags get_flags() const, g_application_get_flags) + _WRAP_METHOD(void set_flags(ApplicationFlags flags), g_application_set_flags) _WRAP_METHOD(std::string get_resource_base_path() const, g_application_get_resource_base_path, newin "2,44") _WRAP_METHOD(void set_resource_base_path(const std::string& resource_path), g_application_set_resource_base_path, newin "2,44") @@ -167,7 +163,8 @@ public: */ void unset_resource_base_path(); - _IGNORE(g_application_set_action_group) + _WRAP_METHOD(void set_action_group(const Glib::RefPtr& action_group), g_application_set_action_group, + deprecated "Use the Gio::ActionMap interface instead.") //Note: We would like to add a group, not just some entries, //so we can do pre and post parsing. See https://bugzilla.gnome.org/show_bug.cgi?id=727602 @@ -186,7 +183,7 @@ public: * Unlike OptionGroup + OptionContext, Application packs the arguments * into a Glib::VariantDict which is passed to the * signal_handle_local_options() handler, where it can be - * inspected and modified. If Gio::Application::Flags::HANDLES_COMMAND_LINE is + * inspected and modified. If Gio::APPLICATION_HANDLES_COMMAND_LINE is * set, then the resulting dictionary is sent to the primary instance, * where Gio::ApplicationCommandLine::get_options_dict() will return it. * This "packing" is done according to the type of the argument -- @@ -206,7 +203,7 @@ public: * on the local side. Calling this function "opts in" to the new * behaviour, and in particular, means that unrecognised options will be * treated as errors. Unrecognised options have never been ignored when - * Gio::Application::Flags::HANDLES_COMMAND_LINE is unset. + * Gio::APPLICATION_HANDLES_COMMAND_LINE is unset. * * If signal_handle_local_options() needs to see the list of * filenames, then the use of G_OPTION_REMAINING as @a long_name is recommended. @@ -229,14 +226,17 @@ public: * @param description The description for the option in `--help` output. * @param arg_description The placeholder to use for the extra argument parsed * by the option in `--help` output. - * @param flags Flags from Glib::OptionEntry::Flags. Do not set OptionEntry::Flags::FILENAME. + * @param flags Flags from Glib::OptionEntry::Flags. Do not set FLAG_FILENAME. * Character encoding is chosen with @a arg_type. */ void add_main_option_entry(OptionType arg_type, const Glib::ustring& long_name, gchar short_name = '\0', const Glib::ustring& description = Glib::ustring(), - const Glib::ustring& arg_description = Glib::ustring(), - Glib::OptionEntry::Flags flags = Glib::OptionEntry::Flags::NONE); - _IGNORE(g_application_add_main_option_entries, g_application_add_main_option) + const Glib::ustring& arg_description = Glib::ustring(), int flags = 0); + _IGNORE(g_application_add_main_option_entries) + + //g_application_add_main_option() seems to be just a new convenience function, + //TODO: Use it for some of our add_main_option_entry(without slot) implementation. + _IGNORE(g_application_add_main_option) /** Adds a main option entry to be handled by the Application. * @@ -251,13 +251,12 @@ public: * @newin{2,42} * * @see add_main_option_entry(OptionType, const Glib::ustring&, - * gchar, const Glib::ustring&, const Glib::ustring&, Glib::OptionEntry::Flags) + * gchar, const Glib::ustring&, const Glib::ustring&, int) */ void add_main_option_entry(const Glib::OptionGroup::SlotOptionArgString& slot, const Glib::ustring& long_name, gchar short_name = '\0', const Glib::ustring& description = Glib::ustring(), - const Glib::ustring& arg_description = Glib::ustring(), - Glib::OptionEntry::Flags flags = Glib::OptionEntry::Flags::NONE); + const Glib::ustring& arg_description = Glib::ustring(), int flags = 0); /** Adds a main option entry to be handled by the Application. * @@ -272,19 +271,22 @@ public: * @newin{2,42} * * @see add_main_option_entry(OptionType, const Glib::ustring&, - * gchar, const Glib::ustring&, const Glib::ustring&, Glib::OptionEntry::Flags) + * gchar, const Glib::ustring&, const Glib::ustring&, int) */ void add_main_option_entry_filename(const Glib::OptionGroup::SlotOptionArgFilename& slot, const Glib::ustring& long_name, gchar short_name = '\0', const Glib::ustring& description = Glib::ustring(), - const Glib::ustring& arg_description = Glib::ustring(), - Glib::OptionEntry::Flags flags = Glib::OptionEntry::Flags::NONE); + const Glib::ustring& arg_description = Glib::ustring(), int flags = 0); // _WRAP_METHOD(void add_option_group(Glib::OptionGroup& group), g_application_add_option_group) // add_option_group() is probably not very useful. If implemented, it must probably // be custom-implemented. See https://bugzilla.gnome.org/show_bug.cgi?id=727822#c10 _IGNORE(g_application_add_option_group) + _WRAP_METHOD(void set_option_context_parameter_string(const Glib::ustring& parameter_string{NULL}), g_application_set_option_context_parameter_string) + _WRAP_METHOD(void set_option_context_summary(const Glib::ustring& summary{NULL}), g_application_set_option_context_summary) + _WRAP_METHOD(void set_option_context_description(const Glib::ustring& description{NULL}), g_application_set_option_context_description) + _WRAP_METHOD(bool is_registered() const, g_application_get_is_registered) _WRAP_METHOD(bool is_remote() const, g_application_get_is_remote) @@ -308,7 +310,7 @@ public: * opening files (eg: "view" vs "edit", etc). * * The application must be registered before calling this method - * and it must have the Application::Flags::HANDLES_OPEN flag set. + * and it must have the APPLICATION_HANDLES_OPEN flag set. * * @param files The files to open. This must be non-empty. * @param hint A hint. @@ -328,7 +330,7 @@ public: * opening files (eg: "view" vs "edit", etc). * * The application must be registered before calling this method - * and it must have the Application::Flags::HANDLES_OPEN flag set. + * and it must have the APPLICATION_HANDLES_OPEN flag set. * * @param file The file to open. This must be non-empty. * @param hint A hint. @@ -360,35 +362,65 @@ public: // _WRAP_METHOD(void bind_busy_property(const Glib::RefPtr& object, const Glib::ustring& property), g_application_bind_busy_property) // _WRAP_METHOD(void unbind_busy_property(const Glib::RefPtr& object, const Glib::ustring& property), g_application_unbind_busy_property) - _IGNORE_PROPERTY("action-group") + _WRAP_PROPERTY("action-group", Glib::RefPtr, deprecated "Use the Gio::ActionMap interface instead.") _WRAP_PROPERTY("application-id", Glib::ustring) - _WRAP_PROPERTY("flags", Flags) + _WRAP_PROPERTY("flags", ApplicationFlags) _WRAP_PROPERTY("inactivity-timeout", guint) _WRAP_PROPERTY("is-registered", bool) _WRAP_PROPERTY("is-remote", bool) - _WRAP_PROPERTY("resource-base-path", std::string, newin "2,44") + + //TODO: Change bool to std::string when we can break API/ABI. + _WRAP_PROPERTY("resource-base-path", bool, newin "2,44", + deprecated "This method has the wrong return type. Will be fixed at the next ABI break. Use property_resource_base_path_string() instead.") + + /** The base resource path for the application. + * + * @newin{2,56} + * + * Default value: "" + * + * @return A PropertyProxy that allows you to get or set the value of the property, + * or receive notification when the value of the property changes. + */ + Glib::PropertyProxy< std::string > property_resource_base_path_string(); + + /** The base resource path for the application. + * + * @newin{2,56} + * + * Default value: "" + * + * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, + * or receive notification when the value of the property changes. + */ + Glib::PropertyProxy_ReadOnly< std::string > property_resource_base_path_string() const; + _WRAP_PROPERTY("is-busy", bool) +//#m4 _CONVERSION(`const gchar*', `const Glib::ustring&', `Glib::ustring($3)') +//#m4 _CONVERSION(`GVariant*', `const Glib::VariantBase&', `Glib::wrap($3, true)') + _WRAP_SIGNAL(void startup(), "startup") - _WRAP_SIGNAL(void shutdown(), "shutdown", newin "2,46") + //TODO: Remove no_default_handler when we can break ABI + _WRAP_SIGNAL(void shutdown(), "shutdown", no_default_handler, newin "2,46") _WRAP_SIGNAL(void activate(), "activate") //We wrap the open signal without _WRAP_SIGNAL(), because we need to change its parameters. //See bug https://bugzilla.gnome.org/show_bug.cgi?id=637457 - Glib::SignalProxy signal_open(); + Glib::SignalProxy< void, const type_vec_files&, const Glib::ustring& > signal_open(); _IGNORE_SIGNAL(open) #m4 _CONVERSION(`GApplicationCommandLine*', `const Glib::RefPtr&',`Glib::wrap($3, true)') _WRAP_SIGNAL(int command_line(const Glib::RefPtr& command_line), "command-line") + //TODO: Remove no_default_handler when we can break ABI //TODO: Avoid the use of the Variants in the VariantDict? //options must be non-const. The handler is meant to modify it. See the description //of add_main_option_entry(OptionType, ...). #m4 _CONVERSION(`GVariantDict*',`const Glib::RefPtr&',`Glib::wrap($3, true)') -#m4 _CONVERSION(`const Glib::RefPtr&',`GVariantDict*',__CONVERT_REFPTR_TO_P) - _WRAP_SIGNAL(int handle_local_options(const Glib::RefPtr& options), "handle-local-options") + _WRAP_SIGNAL(int handle_local_options(const Glib::RefPtr& options), "handle-local-options", no_default_handler) protected: virtual void on_open(const type_vec_files& files, const Glib::ustring& hint); @@ -406,6 +438,7 @@ protected: _WRAP_VFUNC(bool local_command_line(char**& arguments, int& exit_status), local_command_line) #m4 _CONVERSION(`GVariant*',`const Glib::VariantBase&',`Glib::wrap($3,true)') + _WRAP_VFUNC(void before_emit(const Glib::VariantBase& platform_data), "before_emit") _WRAP_VFUNC(void after_emit(const Glib::VariantBase& platform_data), "after_emit") @@ -415,21 +448,19 @@ protected: _WRAP_VFUNC(void quit_mainloop(), "quit_mainloop") _WRAP_VFUNC(void run_mainloop(), "run_mainloop") -#m4 _CONVERSION(`GDBusConnection*', `const Glib::RefPtr&', `Glib::wrap($3, true)') -#m4 _CONVERSION(`const Glib::RefPtr&',`GDBusConnection*',__CONVERT_REFPTR_TO_P) - _WRAP_VFUNC(bool dbus_register(const Glib::RefPtr& connection, const Glib::ustring& object_path), "dbus_register", errthrow) - _WRAP_VFUNC(void dbus_unregister(const Glib::RefPtr& connection, const Glib::ustring& object_path), "dbus_unregister") private: - /** This is just a way to call Glib::init() before calling a Glib::Object ctor, - * so that glibmm's GQuarks are created before they are used. + /** This is just a way to call Glib::init() (which calls g_type_init()) before + * calling application_class_.init(), so that + * g_application_get_type() will always succeed. + * See https://bugzilla.gnome.org/show_bug.cgi?id=639925 */ const Glib::Class& custom_class_init(); - // Code, common to the public add_main_option_entry*() methods with a callback slot. - void add_main_option_entry_private(const gchar* long_name, gchar short_name, - const gchar* description, const gchar* arg_description, - Glib::OptionEntry::Flags flags); + // Code, common to the public add_main_option_entry*() methods. + void add_main_option_entry_private(GOptionArg arg, const Glib::ustring& long_name, + gchar short_name, const Glib::ustring& description, + const Glib::ustring& arg_description, int flags); }; } // namespace Gio diff --git a/gio/src/asyncresult.ccg b/gio/src/asyncresult.ccg index 8f1a012..4a3b59f 100644 --- a/gio/src/asyncresult.ccg +++ b/gio/src/asyncresult.ccg @@ -32,7 +32,7 @@ AsyncResult::get_source_object_base() { auto cobj = g_async_result_get_source_object(gobj()); auto cppobj = Glib::wrap_auto(cobj); // ObjectBase::_get_current_wrapper(cobj); - return Glib::make_refptr_for_instance( + return Glib::RefPtr( cppobj); // g_async_result_get_source_object() gives us a ref, unusually. // TODO: For some reason this fails: Glib::wrap(cobj); } diff --git a/gio/src/asyncresult.hg b/gio/src/asyncresult.hg index 9fa2e4b..5e5facc 100644 --- a/gio/src/asyncresult.hg +++ b/gio/src/asyncresult.hg @@ -41,7 +41,7 @@ class AsyncResult; * * @newin{2,16} */ -using SlotAsyncReady = sigc::slot&)>; +using SlotAsyncReady = sigc::slot&>; /** Provides a base class for implementing asynchronous function results. * Asynchronous operations are broken up into two separate operations which are chained together by a SlotAsyncReady. @@ -92,10 +92,7 @@ using SlotAsyncReady = sigc::slot&)>; * The async function could also take an optional Glib::Cancellable object, allowing the calling function to cancel the asynchronous operation. * * The callback for an asynchronous operation is called only once, and is always called, even in the case of a cancelled operation. - * On cancellation the result is a ERROR_CANCELLED error. - * - * Some ascynchronous operations are implemented using synchronous calls. These are run in a separate GThread, but otherwise they are sent - * to the Main Event Loop and processed in an idle function. So, if you truly need asynchronous operations, make sure to initialize GThread. + * On cancellation, the result is an ERROR_CANCELLED error. * * @newin{2,16} */ @@ -105,7 +102,13 @@ class AsyncResult : public Glib::Interface public: _IGNORE(g_async_result_get_user_data) - _IGNORE(g_async_result_get_source_object) + + //Note that this returns a reference, unlike most GTK+ get_*() functions, + //so we don't need to use refreturn. + _WRAP_METHOD(Glib::RefPtr get_source_object(), + g_async_result_get_source_object, deprecated "Use get_source_object_base()") + _WRAP_METHOD(Glib::RefPtr get_source_object() const, + g_async_result_get_source_object, constversion, deprecated "Use get_source_object_base()") //Note that this returns a reference, unlike most GTK+ get_*() functions, //so we don't need to use refreturn. @@ -116,12 +119,15 @@ public: _WRAP_METHOD(bool is_tagged(gpointer source_tag) const, g_async_result_is_tagged) - // The compiler cannot find an unwrap() for ObjectBase, because - // ObjectBase::BaseObjectType is not declared. + + // TODO: For some reason, the compiler cannot find an unwrap() for ObjectBase. //#m4 _CONVERSION(`Glib::RefPtr',`GObject*',__CONVERT_REFPTR_TO_P) #m4 _CONVERSION(`Glib::RefPtr',`GObject*',`unwrap_objectbase_custom($3)') - _WRAP_VFUNC(Glib::RefPtr get_source_object(), "get_source_object") - _WRAP_VFUNC(bool is_tagged(gpointer source_tag), "is_tagged") + _WRAP_VFUNC(Glib::RefPtr get_source_object(), + "get_source_object") + + //TODO: is_tagged() vfunc when we can break ABI. }; } // namespace Gio + diff --git a/gio/src/bufferedinputstream.ccg b/gio/src/bufferedinputstream.ccg index 56dfe24..7c82808 100644 --- a/gio/src/bufferedinputstream.ccg +++ b/gio/src/bufferedinputstream.ccg @@ -23,7 +23,7 @@ namespace Gio Glib::RefPtr BufferedInputStream::create_sized(const Glib::RefPtr& base_stream, gsize buffer_size) { - return Glib::make_refptr_for_instance(new BufferedInputStream(base_stream, buffer_size)); + return Glib::RefPtr(new BufferedInputStream(base_stream, buffer_size)); } void diff --git a/gio/src/bufferedinputstream.hg b/gio/src/bufferedinputstream.hg index d93c665..c50ecc8 100644 --- a/gio/src/bufferedinputstream.hg +++ b/gio/src/bufferedinputstream.hg @@ -15,7 +15,6 @@ */ #include -#include #include _DEFS(giomm,gio) @@ -40,11 +39,9 @@ namespace Gio * * @newin{2,16} */ -class BufferedInputStream : public Gio::FilterInputStream, public Gio::Seekable +class BufferedInputStream : public Gio::FilterInputStream { _CLASS_GOBJECT(BufferedInputStream, GBufferedInputStream, G_BUFFERED_INPUT_STREAM, Gio::FilterInputStream, GFilterInputStream) - _IMPLEMENTS_INTERFACE(Seekable) - protected: _WRAP_CTOR(BufferedInputStream(const Glib::RefPtr& base_stream), g_buffered_input_stream_new) @@ -109,8 +106,9 @@ public: _WRAP_PROPERTY("buffer-size", guint) protected: + //TODO: When we can break ABI, add vfunc. See https://bugzilla.gnome.org/show_bug.cgi?id=572471 #m4 _CONVERSION(`GCancellable*', `const Glib::RefPtr&', `Glib::wrap($3, true)') - _WRAP_VFUNC(gssize fill(gssize count, const Glib::RefPtr& cancellable), fill, errthrow, err_return_value -1) + //_WRAP_VFUNC(gssize fill(gssize count, const Glib::RefPtr& cancellable), fill, errthrow, err_return_value -1) }; } // namespace Gio diff --git a/gio/src/bufferedoutputstream.ccg b/gio/src/bufferedoutputstream.ccg index 80e9d07..c334f5c 100644 --- a/gio/src/bufferedoutputstream.ccg +++ b/gio/src/bufferedoutputstream.ccg @@ -23,7 +23,7 @@ namespace Gio Glib::RefPtr BufferedOutputStream::create_sized(const Glib::RefPtr& base_stream, gsize size) { - return Glib::make_refptr_for_instance(new BufferedOutputStream(base_stream, size)); + return Glib::RefPtr(new BufferedOutputStream(base_stream, size)); } } // namespace Gio diff --git a/gio/src/bufferedoutputstream.hg b/gio/src/bufferedoutputstream.hg index 846411f..0d2aba2 100644 --- a/gio/src/bufferedoutputstream.hg +++ b/gio/src/bufferedoutputstream.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2008 The gtkmm Development Team * * This library is free software; you can redistribute it and/or @@ -15,7 +17,6 @@ */ #include -#include #include _DEFS(giomm,gio) @@ -36,11 +37,9 @@ namespace Gio * * @newin{2,16} */ -class BufferedOutputStream : public Gio::FilterOutputStream, public Gio::Seekable +class BufferedOutputStream : public Gio::FilterOutputStream { _CLASS_GOBJECT(BufferedOutputStream, GBufferedOutputStream, G_BUFFERED_OUTPUT_STREAM, Gio::FilterOutputStream, GFilterOutputStream) - _IMPLEMENTS_INTERFACE(Seekable) - protected: _WRAP_CTOR(BufferedOutputStream(const Glib::RefPtr& base_stream), g_buffered_output_stream_new) diff --git a/gio/src/cancellable.hg b/gio/src/cancellable.hg index b4cb956..94b97ac 100644 --- a/gio/src/cancellable.hg +++ b/gio/src/cancellable.hg @@ -36,7 +36,7 @@ protected: _CTOR_DEFAULT public: - using SlotCancelledCallback = sigc::slot; + using SlotCancelledCallback = sigc::slot; _WRAP_CREATE() diff --git a/gio/src/charsetconverter.ccg b/gio/src/charsetconverter.ccg index a5d5029..f4218b5 100644 --- a/gio/src/charsetconverter.ccg +++ b/gio/src/charsetconverter.ccg @@ -23,7 +23,6 @@ CharsetConverter::CharsetConverter( const Glib::ustring& to_charset, const Glib::ustring& from_charset) : _CONSTRUCT("to-charset", to_charset.c_str(), "from-charset", from_charset.c_str()) { - init(); } } // namespace Gio diff --git a/gio/src/charsetconverter.hg b/gio/src/charsetconverter.hg index d5679b7..b5bb234 100644 --- a/gio/src/charsetconverter.hg +++ b/gio/src/charsetconverter.hg @@ -16,7 +16,6 @@ #include #include -#include _DEFS(giomm,gio) _PINCLUDE(glibmm/private/object_p.h) @@ -28,16 +27,14 @@ namespace Gio * CharsetConverter is an implementation of Converter based on GIConv. * @newin{2,34} */ -class CharsetConverter -: public Glib::Object, public Converter, public Initable +class CharsetConverter : public Glib::Object, public Converter { _CLASS_GOBJECT(CharsetConverter, GCharsetConverter, G_CHARSET_CONVERTER, Glib::Object, GObject) _IMPLEMENTS_INTERFACE(Converter) - _IMPLEMENTS_INTERFACE(Initable) protected: - // Handwritten to ignore the final GError** parameter in the *_new() function. - // But it can throw, due to its call to Initable::init(). + // Handwritten to ignore the final GError** parameter in the *_new() + // function. explicit CharsetConverter(const Glib::ustring& to_charset, const Glib::ustring& from_charset); _IGNORE(g_charset_converter_new) @@ -48,8 +45,7 @@ public: * * @param to_charset Destination charset. * @param from_charset Source charset. - * @return A new CharsetConverter, or nullptr on error. - * @throw Gio::Error + * @return A new CharsetConverter, or 0 on error. */ _WRAP_CREATE(const Glib::ustring& to_charset, const Glib::ustring& from_charset) diff --git a/gio/src/converter.ccg b/gio/src/converter.ccg index 508a1c7..7f97a55 100644 --- a/gio/src/converter.ccg +++ b/gio/src/converter.ccg @@ -16,9 +16,6 @@ #include -using Flags = Gio::Converter::Flags; -using Result = Gio::Converter::Result; - namespace Gio { diff --git a/gio/src/converter.hg b/gio/src/converter.hg index c34ea63..2c219ad 100644 --- a/gio/src/converter.hg +++ b/gio/src/converter.hg @@ -27,6 +27,8 @@ typedef struct _GConverterIface GConverterIface; namespace Gio { +_WRAP_ENUM(ConverterResult, GConverterResult) +_WRAP_ENUM(ConverterFlags, GConverterFlags) /** Converter - Data conversion interface. * Converter is implemented by objects that convert binary data in various @@ -42,14 +44,11 @@ class Converter : public Glib::Interface _CLASS_INTERFACE(Converter, GConverter, G_CONVERTER, GConverterIface) public: - _WRAP_ENUM(Result, GConverterResult) - _WRAP_ENUM(Flags, GConverterFlags) - - _WRAP_METHOD(Result convert(const void* inbuf, gsize inbuf_size, void* outbuf, gsize outbuf_size, Flags flags, gsize& bytes_read, gsize& bytes_written), g_converter_convert, errthrow) + _WRAP_METHOD(ConverterResult convert(const void* inbuf, gsize inbuf_size, void* outbuf, gsize outbuf_size, ConverterFlags flags, gsize& bytes_read, gsize& bytes_written), g_converter_convert, errthrow) _WRAP_METHOD(void reset(), g_converter_reset) #m4 _CONVERSION(`gsize*',`gsize&',`*($3)') - _WRAP_VFUNC(Result convert(const void* inbuf, gsize inbuf_size, void* outbuf, gsize outbuf_size, Flags flags, gsize& bytes_read, gsize& bytes_written), "convert", errthrow) + _WRAP_VFUNC(ConverterResult convert(const void* inbuf, gsize inbuf_size, void* outbuf, gsize outbuf_size, ConverterFlags flags, gsize& bytes_read, gsize& bytes_written), "convert", errthrow) _WRAP_VFUNC(void reset(), "reset") }; diff --git a/gio/src/credentials.hg b/gio/src/credentials.hg index 7bbcdef..31d50cd 100644 --- a/gio/src/credentials.hg +++ b/gio/src/credentials.hg @@ -22,6 +22,7 @@ _PINCLUDE(glibmm/private/object_p.h) namespace Gio { +_WRAP_ENUM(CredentialsType, GCredentialsType, NO_GTYPE) /** An object containing credentials. * The Credentials type is a reference-counted wrapper for native credentials. @@ -54,20 +55,18 @@ protected: _IGNORE(g_credentials_new) public: - _WRAP_ENUM(Type, GCredentialsType, NO_GTYPE) - _WRAP_CREATE() _WRAP_METHOD(Glib::ustring to_string() const, g_credentials_to_string) - _WRAP_METHOD(gpointer get_native(Type native_type), g_credentials_get_native) - _WRAP_METHOD(void set_native(Type native_type, gpointer native), g_credentials_set_native) - _WRAP_METHOD(bool is_same_user(const Glib::RefPtr& other_credentials), g_credentials_is_same_user, errthrow "Gio::Error") + _WRAP_METHOD(gpointer get_native(CredentialsType native_type), g_credentials_get_native) + _WRAP_METHOD(void set_native(CredentialsType native_type, gpointer native), g_credentials_set_native) + _WRAP_METHOD(bool is_same_user(const Glib::RefPtr& other_credentials), g_credentials_is_same_user, errthrow) - _WRAP_METHOD(uid_t get_unix_user(), g_credentials_get_unix_user, errthrow "Gio::Error", ifdef G_OS_UNIX) - _WRAP_METHOD(bool set_unix_user(uid_t uid), g_credentials_set_unix_user, errthrow "Gio::Error", ifdef G_OS_UNIX) + _WRAP_METHOD(uid_t get_unix_user(), g_credentials_get_unix_user, errthrow, ifdef G_OS_UNIX) + _WRAP_METHOD(bool set_unix_user(uid_t uid), g_credentials_set_unix_user, errthrow, ifdef G_OS_UNIX) - _WRAP_METHOD(pid_t get_unix_pid() const, g_credentials_get_unix_pid, errthrow "Gio::Error", ifdef G_OS_UNIX) + _WRAP_METHOD(pid_t get_unix_pid() const, g_credentials_get_unix_pid, errthrow, ifdef G_OS_UNIX) }; diff --git a/gio/src/datainputstream.ccg b/gio/src/datainputstream.ccg index d5b31b4..6291141 100644 --- a/gio/src/datainputstream.ccg +++ b/gio/src/datainputstream.ccg @@ -93,6 +93,85 @@ DataInputStream::read_line_finish(const Glib::RefPtr& result, std:: return retval; } +_DEPRECATE_IFDEF_START +G_GNUC_BEGIN_IGNORE_DEPRECATIONS +bool +DataInputStream::read_until( + std::string& data, const std::string& stop_chars, const Glib::RefPtr& cancellable) +{ + GError* gerror = nullptr; + char* c_str = g_data_input_stream_read_until(gobj(), stop_chars.c_str(), + nullptr, // pass nullptr since we can easily determine the length from the returned std::string + Glib::unwrap(cancellable), &gerror); + if (gerror) + ::Glib::Error::throw_exception(gerror); + if (c_str) + { + data = c_str; + g_free(c_str); + return true; + } + // end of stream reached, return failure status + return false; +} + +/** non-cancellable version of read_until() + */ +bool +DataInputStream::read_until(std::string& data, const std::string& stop_chars) +{ + GError* gerror = nullptr; + char* c_str = g_data_input_stream_read_until(gobj(), stop_chars.c_str(), + nullptr, // pass nullptr since we can easily determine the length from the returned std::string + nullptr, &gerror); + if (gerror) + ::Glib::Error::throw_exception(gerror); + if (c_str) + { + data = c_str; + g_free(c_str); + return true; + } + // end of stream reached, return failure status + return false; +} + +void +DataInputStream::read_until_async(const std::string& stop_chars, const SlotAsyncReady& slot, + const Glib::RefPtr& cancellable, int io_priority) +{ + // Create a copy of the slot. + // A pointer to it will be passed through the callback's data parameter + // and deleted in the callback. + auto slot_copy = new SlotAsyncReady(slot); + + g_data_input_stream_read_until_async(gobj(), stop_chars.c_str(), io_priority, + Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy); +} + +bool +DataInputStream::read_until_finish(const Glib::RefPtr& result, std::string& data) +{ + GError* gerror = nullptr; + gsize size = 0; + gchar* buffer = + g_data_input_stream_read_until_finish(gobj(), Glib::unwrap(result), &size, &(gerror)); + if (gerror) + ::Glib::Error::throw_exception(gerror); + + bool retval = false; + if (buffer && size) + { + retval = (buffer != nullptr); + data = std::string(buffer, size); + g_free(buffer); + } + + return retval; +} +G_GNUC_END_IGNORE_DEPRECATIONS +_DEPRECATE_IFDEF_END + bool DataInputStream::read_upto( std::string& data, const std::string& stop_chars, const Glib::RefPtr& cancellable) diff --git a/gio/src/datainputstream.hg b/gio/src/datainputstream.hg index da15849..bac690d 100644 --- a/gio/src/datainputstream.hg +++ b/gio/src/datainputstream.hg @@ -138,11 +138,85 @@ public: */ _WRAP_METHOD(void read_line_finish_utf8(const Glib::RefPtr& result{.}, std::string& data{OUT}, gsize& length{.?}), g_data_input_stream_read_line_finish_utf8, errthrow) +_DEPRECATE_IFDEF_START + /** Reads a string from the data input stream, up to the first + * occurrence of any of the stop characters. + * + * Note that, in contrast to read_until_async(), + * this function consumes the stop character that it finds. + * + * Don't use this function in new code. Its functionality is + * inconsistent with read_until_async(). Use + * read_upto() instead, but note that that method + * does not consume the stop character. + * + * @param[out] data A string to fill with the read data. + * @param stop_chars Characters to terminate the read. + * @param cancellable A cancellable object. + * @result true if the read succeeded without error. + * + * @deprecated Use read_upto() instead, which has more consistent behaviour regarding the stop character. + */ + bool read_until(std::string& data, const std::string& stop_chars, const Glib::RefPtr& cancellable); + _IGNORE(g_data_input_stream_read_until) + + /** A non-cancellable version of read_until(). + * + * Note that, in contrast to read_until_async(), + * this function consumes the stop character that it finds. + * + * Don't use this function in new code. Its functionality is + * inconsistent with read_until_async(). Use + * read_upto() instead, but note that that method + * does not consume the stop character. + * + * @param[out] data A string to fill with the read data. + * @param stop_chars Characters to terminate the read. + * @result true if the read succeeded without error. + * + * @deprecated Use read_upto() instead, which has more consistent behaviour regarding the stop character. + */ + bool read_until(std::string& data, const std::string& stop_chars); + + /** The asynchronous version of read_until(). It is + * an error to have two outstanding calls to this function. + * + * Note that, in contrast to read_until(), + * this function does not consume the stop character that it finds. You + * must read it for yourself. + * + * Don't use this function in new code. Its functionality is + * inconsistent with read_until(). Use read_upto_async() instead. + * + * @param stop_chars Characters to terminate the read. + * @param slot The slot to call when the request is satisfied. + * @param cancellable A cancellable object. + * @param io_priority The I/O priority of the request. + * + * @deprecated Use read_upto_async() instead, which has more consistent behaviour regarding the stop character. + */ + void read_until_async(const std::string& stop_chars, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, int io_priority = Glib::PRIORITY_DEFAULT); + _IGNORE(g_data_input_stream_read_until_async) + + /** Finish an asynchronous call started by read_until_async(). + * + * @param result The AsyncResult that was provided to the callback slot. + * @param[out] data A string to fill with the read data. + * @result true if the read succeeded without error. + * + * @deprecated Use read_upto_finish() instead, which has more consistent behaviour regarding the stop character. + */ + bool read_until_finish(const Glib::RefPtr& result, std::string& data); + _IGNORE(g_data_input_stream_read_until_finish) +_DEPRECATE_IFDEF_END + /** Reads a string from the data input stream, up to the first * occurrence of any of the stop characters. * - * This method does not consume the stop character. You have - * to use read_byte() to get it before calling %read_upto() again. + * In contrast to read_until(), this method + * does not consume the stop character. You have + * to use read_byte() to get it before calling + * read_upto() again. * * @param[out] data A string to fill with the read data. * @param stop_chars Characters to terminate the read. @@ -164,8 +238,10 @@ public: /** The asynchronous version of read_upto(). It is * an error to have two outstanding calls to this function. * - * This method does not consume the stop character. You have - * to use read_byte() to get it before calling %read_upto_async() again. + * In contrast to read_until(), this method + * does not consume the stop character. You have + * to use read_byte() to get it before calling + * read_upto() again. * * @param stop_chars Characters to terminate the read. * @param slot The slot to call when the request is satisfied. diff --git a/gio/src/dataoutputstream.hg b/gio/src/dataoutputstream.hg index aec65bf..a74dd46 100644 --- a/gio/src/dataoutputstream.hg +++ b/gio/src/dataoutputstream.hg @@ -14,28 +14,26 @@ * License along with this library. If not, see . */ -#include -#include +#include #include _DEFS(giomm,gio) -_PINCLUDE(giomm/private/filteroutputstream_p.h) +_PINCLUDE(giomm/private/bufferedoutputstream_p.h) namespace Gio { /** - * An implementation of FilterOutputStream that allows for high-level data + * An implementation of BufferedOutputStream that allows for high-level data * manipulation of arbitrary data (including binary operations). * * @ingroup Streams * * @newin{2,16} */ -class DataOutputStream : public Gio::FilterOutputStream, public Gio::Seekable +class DataOutputStream : public Gio::BufferedOutputStream { - _CLASS_GOBJECT(DataOutputStream, GDataOutputStream, G_DATA_OUTPUT_STREAM, Gio::FilterOutputStream, GFilterOutputStream) - _IMPLEMENTS_INTERFACE(Seekable) + _CLASS_GOBJECT(DataOutputStream, GDataOutputStream, G_DATA_OUTPUT_STREAM, Gio::BufferedOutputStream, GBufferedOutputStream) protected: _WRAP_CTOR(DataOutputStream(const Glib::RefPtr& base_stream), g_data_output_stream_new) @@ -61,9 +59,10 @@ public: _WRAP_METHOD(bool put_uint64(guint64 data, const Glib::RefPtr& cancellable{?}), g_data_output_stream_put_uint64, errthrow) - _WRAP_METHOD(bool put_string(const std::string& str, const Glib::RefPtr& cancellable{?}), g_data_output_stream_put_string, errthrow) + _WRAP_METHOD(bool put_string(std::string str, const Glib::RefPtr& cancellable{?}), g_data_output_stream_put_string, errthrow) _WRAP_PROPERTY("byte-order", DataStreamByteOrder) }; } // namespace Gio + diff --git a/gio/src/dbusactiongroup.hg b/gio/src/dbusactiongroup.hg index fde6a35..aafd8e2 100644 --- a/gio/src/dbusactiongroup.hg +++ b/gio/src/dbusactiongroup.hg @@ -38,11 +38,11 @@ _GMMPROC_EXTRA_NAMESPACE(DBus) * @newin{2,32} */ class ActionGroup -: public Glib::Object, public Gio::ActionGroup, public Gio::RemoteActionGroup +: public Glib::Object, public ::Gio::ActionGroup, public RemoteActionGroup { _CLASS_GOBJECT(ActionGroup, GDBusActionGroup, G_DBUS_ACTION_GROUP, Glib::Object, GObject) - _IMPLEMENTS_INTERFACE(Gio::ActionGroup) - _IMPLEMENTS_INTERFACE(Gio::RemoteActionGroup) + _IMPLEMENTS_INTERFACE(::Gio::ActionGroup) + _IMPLEMENTS_INTERFACE(RemoteActionGroup) protected: _CTOR_DEFAULT diff --git a/gio/src/dbusconnection.ccg b/gio/src/dbusconnection.ccg index a7464c2..6199e85 100644 --- a/gio/src/dbusconnection.ccg +++ b/gio/src/dbusconnection.ccg @@ -278,7 +278,7 @@ Connection::create_sync(const Glib::RefPtr& stream, const std::string& const Glib::RefPtr& observer, const Glib::RefPtr& cancellable, ConnectionFlags flags) { - return Glib::make_refptr_for_instance(new Connection(stream, guid, observer, cancellable, flags)); + return Glib::RefPtr(new Connection(stream, guid, observer, cancellable, flags)); } // static @@ -286,7 +286,7 @@ Glib::RefPtr Connection::create_sync(const Glib::RefPtr& stream, const std::string& guid, const Glib::RefPtr& cancellable, ConnectionFlags flags) { - return Glib::make_refptr_for_instance(new Connection(stream, guid, cancellable, flags)); + return Glib::RefPtr(new Connection(stream, guid, cancellable, flags)); } // static @@ -294,7 +294,7 @@ Glib::RefPtr Connection::create_sync(const Glib::RefPtr& stream, const std::string& guid, const Glib::RefPtr& observer, ConnectionFlags flags) { - return Glib::make_refptr_for_instance(new Connection(stream, guid, observer, flags)); + return Glib::RefPtr(new Connection(stream, guid, observer, flags)); } // static @@ -302,7 +302,7 @@ Glib::RefPtr Connection::create_sync( const Glib::RefPtr& stream, const std::string& guid, ConnectionFlags flags) { - return Glib::make_refptr_for_instance(new Connection(stream, guid, flags)); + return Glib::RefPtr(new Connection(stream, guid, flags)); } // static @@ -352,7 +352,7 @@ Connection::create_for_address_sync(const std::string& address, const Glib::RefPtr& observer, const Glib::RefPtr& cancellable, ConnectionFlags flags) { - return Glib::make_refptr_for_instance(new Connection(address, observer, cancellable, flags)); + return Glib::RefPtr(new Connection(address, observer, cancellable, flags)); } // static @@ -360,7 +360,7 @@ Glib::RefPtr Connection::create_for_address_sync( const std::string& address, const Glib::RefPtr& cancellable, ConnectionFlags flags) { - return Glib::make_refptr_for_instance(new Connection(address, cancellable, flags)); + return Glib::RefPtr(new Connection(address, cancellable, flags)); } // static @@ -368,14 +368,14 @@ Glib::RefPtr Connection::create_for_address_sync( const std::string& address, const Glib::RefPtr& observer, ConnectionFlags flags) { - return Glib::make_refptr_for_instance(new Connection(address, observer, flags)); + return Glib::RefPtr(new Connection(address, observer, flags)); } // static Glib::RefPtr Connection::create_for_address_sync(const std::string& address, ConnectionFlags flags) { - return Glib::make_refptr_for_instance(new Connection(address, flags)); + return Glib::RefPtr(new Connection(address, flags)); } // static diff --git a/gio/src/dbusconnection.hg b/gio/src/dbusconnection.hg index f17992f..363e354 100644 --- a/gio/src/dbusconnection.hg +++ b/gio/src/dbusconnection.hg @@ -42,11 +42,11 @@ namespace DBus { _WRAP_ENUM(BusType, GBusType) -_WRAP_ENUM(CallFlags, GDBusCallFlags, NO_GTYPE) -_WRAP_ENUM(ConnectionFlags, GDBusConnectionFlags, NO_GTYPE) -_WRAP_ENUM(SendMessageFlags, GDBusSendMessageFlags, NO_GTYPE) -_WRAP_ENUM(SignalFlags, GDBusSignalFlags, NO_GTYPE) -_WRAP_ENUM(SubtreeFlags, GDBusSubtreeFlags, NO_GTYPE) +_WRAP_ENUM(CallFlags, GDBusCallFlags, s#^DBUS_##, NO_GTYPE) +_WRAP_ENUM(ConnectionFlags, GDBusConnectionFlags, s#^DBUS_##, NO_GTYPE) +_WRAP_ENUM(SendMessageFlags, GDBusSendMessageFlags, s#^DBUS_##, NO_GTYPE) +_WRAP_ENUM(SignalFlags, GDBusSignalFlags, s#^DBUS_##, NO_GTYPE) +_WRAP_ENUM(SubtreeFlags, GDBusSubtreeFlags, s#^DBUS_##, NO_GTYPE) _GMMPROC_EXTRA_NAMESPACE(DBus) @@ -172,9 +172,9 @@ public: * Glib::ustring& signal_name, const Glib::VariantContainerBase& parameters);. * @endcode */ - using SlotSignal = sigc::slot&, + using SlotSignal = sigc::slot&, const Glib::ustring&, const Glib::ustring&, const Glib::ustring&, - const Glib::ustring&, const Glib::VariantContainerBase&)>; + const Glib::ustring&, const Glib::VariantContainerBase&>; /** Signature for slot used in add_filter(). * For example, @@ -190,9 +190,9 @@ public: * drop a message can simply return 0. And filter function may * modify a message by copying it and return the copy. */ - using SlotMessageFilter = sigc::slot( + using SlotMessageFilter = sigc::slot, const Glib::RefPtr&, - const Glib::RefPtr&, bool)>; + const Glib::RefPtr&, bool>; /** Asynchronously connects to the message bus specified by @a bus_type. * @@ -216,6 +216,8 @@ public: */ static void get(BusType bus_type, const SlotAsyncReady& slot); + _WRAP_METHOD_DOCS_ONLY( g_bus_get_finish, errthrow) + /// @throw Glib::Error. _WRAP_METHOD(static Glib::RefPtr get_finish(const Glib::RefPtr& res), g_bus_get_finish, errthrow) _WRAP_METHOD(static Glib::RefPtr get_sync(BusType bus_type, const Glib::RefPtr& cancellable{?}), g_bus_get_sync, errthrow) @@ -226,28 +228,30 @@ public: const Glib::RefPtr& observer, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new) static void create(const Glib::RefPtr& stream, const std::string& guid, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); /// Non-cancellable version of create(). static void create(const Glib::RefPtr& stream, const std::string& guid, const Glib::RefPtr& observer, const SlotAsyncReady& slot, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); /// Non-cancellable version of create(). static void create(const Glib::RefPtr& stream, const std::string& guid, const SlotAsyncReady& slot, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); + _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_finish) + /// @throw Glib::Error. _WRAP_METHOD(static Glib::RefPtr create_finish(const Glib::RefPtr& res), g_dbus_connection_new_finish, errthrow) _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_for_address) @@ -255,78 +259,84 @@ public: const Glib::RefPtr& observer, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_for_address) static void create_for_address(const std::string& address, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); /// Non-cancellable version of create_for_address(). static void create_for_address(const std::string& address, const Glib::RefPtr& observer, const SlotAsyncReady& slot, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); /// Non-cancellable version of create_for_address(). static void create_for_address(const std::string& address, const SlotAsyncReady& slot, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); + _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_for_address_finish) + /// @throw Glib::Error. _WRAP_METHOD(static Glib::RefPtr create_for_address_finish(const Glib::RefPtr& res), g_dbus_connection_new_for_address_finish, errthrow) - _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_sync, errthrow) + _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_sync) + /// @throw Glib::Error. static Glib::RefPtr create_sync( const Glib::RefPtr& stream, const std::string& guid, const Glib::RefPtr& observer, const Glib::RefPtr& cancellable, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); - _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_sync, errthrow) + _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_sync) + /// @throw Glib::Error. static Glib::RefPtr create_sync( const Glib::RefPtr& stream, const std::string& guid, const Glib::RefPtr& cancellable, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); /// Non-cancellable version of create_sync(). static Glib::RefPtr create_sync( const Glib::RefPtr& stream, const std::string& guid, const Glib::RefPtr& observer, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); /// Non-cancellable version of create_sync(). static Glib::RefPtr create_sync( const Glib::RefPtr& stream, const std::string& guid, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); - _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_for_address_sync, errthrow) + _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_for_address_sync) + /// @throw Glib::Error. static Glib::RefPtr create_for_address_sync( const std::string& address, const Glib::RefPtr& observer, const Glib::RefPtr& cancellable, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); - _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_for_address_sync, errthrow) + _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_new_for_address_sync) + /// @throw Glib::Error. static Glib::RefPtr create_for_address_sync( const std::string& address, const Glib::RefPtr& cancellable, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); /// Non-cancellable version of create_for_address_sync(). static Glib::RefPtr create_for_address_sync( const std::string& address, const Glib::RefPtr& observer, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); /// Non-cancellable version of create_for_address_sync(). static Glib::RefPtr create_for_address_sync( const std::string& address, - ConnectionFlags flags = Gio::DBus::ConnectionFlags::NONE); + ConnectionFlags flags = Gio::DBus::CONNECTION_FLAGS_NONE); /** Closes the connection. Note that this never causes the process to exit * (this might only happen if the other end of a shared message bus @@ -478,11 +488,11 @@ public: /// A send_message() without an "out_serial" parameter. bool send_message(const Glib::RefPtr& message, - SendMessageFlags flags = Gio::DBus::SendMessageFlags::NONE); + SendMessageFlags flags = Gio::DBus::SEND_MESSAGE_FLAGS_NONE); /** Asynchronously sends message to the peer represented by the connection. * - * Unless flags contain the Gio::DBus::SendMessageFlags::PRESERVE_SERIAL + * Unless flags contain the Gio::DBus::SEND_MESSAGE_FLAGS_PRESERVE_SERIAL * flag, the serial number will be assigned by the connection and set on * message via Gio::DBus::Message::set_serial(). * @@ -498,7 +508,7 @@ public: * send_message_with_reply_sync() for the synchronous version. * * Note that message must be unlocked, unless flags contain the - * Gio::DBus::SendMessageFlags::PRESERVE_SERIAL flag. + * Gio::DBus::SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag. * * See the C API docs for examples. * @@ -522,6 +532,8 @@ public: int timeout_msec, const SlotAsyncReady& slot); + _WRAP_METHOD_DOCS_ONLY(g_dbus_connection_send_message_with_reply_finish) + /// @throw Glib::Error. _WRAP_METHOD(Glib::RefPtr send_message_with_reply_finish(const Glib::RefPtr& res), g_dbus_connection_send_message_with_reply_finish, errthrow) /** Synchronously sends @a message to the peer represented by the connection @@ -529,7 +541,7 @@ public: * reached. See send_message_with_reply() for the asynchronous version of * this method. * - * Unless flags contain the Gio::DBus::SendMessageFlags::PRESERVE_SERIAL + * Unless flags contain the Gio::DBus::SEND_MESSAGE_FLAGS_PRESERVE_SERIAL * flag, the serial number will be assigned by the connection and set on * message via Gio::DBus::Message::set_serial(). * @@ -546,7 +558,7 @@ public: * See the C API docs for examples. * * Note that message must be unlocked, unless flags contain the - * Gio::DBus::SendMessageFlags::PRESERVE_SERIAL flag. + * Gio::DBus::SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag. * * @param message A Message. * @param cancellable A Cancellable. @@ -629,7 +641,7 @@ public: const Glib::RefPtr& cancellable, const Glib::ustring& bus_name = Glib::ustring(), int timeout_msec = -1, - CallFlags flags = Gio::DBus::CallFlags::NONE, + CallFlags flags = Gio::DBus::CALL_FLAGS_NONE, const Glib::VariantType& reply_type = Glib::VariantType()); _IGNORE(g_dbus_connection_call) @@ -642,7 +654,7 @@ public: const SlotAsyncReady& slot, const Glib::ustring& bus_name = Glib::ustring(), int timeout_msec = -1, - CallFlags flags = Gio::DBus::CallFlags::NONE, + CallFlags flags = Gio::DBus::CALL_FLAGS_NONE, const Glib::VariantType& reply_type = Glib::VariantType()); /** Finishes an operation started with call(). @@ -696,7 +708,7 @@ public: const Glib::RefPtr& cancellable, const Glib::ustring& bus_name = Glib::ustring(), int timeout_msec = -1, - CallFlags flags = Gio::DBus::CallFlags::NONE, + CallFlags flags = Gio::DBus::CALL_FLAGS_NONE, const Glib::VariantType& reply_type = Glib::VariantType()); _IGNORE(g_dbus_connection_call_sync) @@ -708,7 +720,7 @@ public: const Glib::VariantContainerBase& parameters, const Glib::ustring& bus_name = Glib::ustring(), int timeout_msec = -1, - CallFlags flags = Gio::DBus::CallFlags::NONE, + CallFlags flags = Gio::DBus::CALL_FLAGS_NONE, const Glib::VariantType& reply_type = Glib::VariantType()); #ifdef G_OS_UNIX @@ -747,7 +759,7 @@ public: const Glib::RefPtr& fd_list, const Glib::ustring& bus_name = Glib::ustring(), int timeout_msec = -1, - CallFlags flags = Gio::DBus::CallFlags::NONE, + CallFlags flags = Gio::DBus::CALL_FLAGS_NONE, const Glib::VariantType& reply_type = Glib::VariantType()); _IGNORE(g_dbus_connection_call_with_unix_fd_list) @@ -763,7 +775,7 @@ public: const Glib::RefPtr& fd_list, const Glib::ustring& bus_name = Glib::ustring(), int timeout_msec = -1, - CallFlags flags = Gio::DBus::CallFlags::NONE, + CallFlags flags = Gio::DBus::CALL_FLAGS_NONE, const Glib::VariantType& reply_type = Glib::VariantType()); #endif // G_OS_UNIX @@ -788,7 +800,7 @@ public: Glib::RefPtr& out_fd_list{.>>}, const Glib::ustring& bus_name{.NULL} = Glib::ustring(), int timeout_msec{.} = -1, - CallFlags flags{.} = Gio::DBus::CallFlags::NONE, + CallFlags flags{.} = Gio::DBus::CALL_FLAGS_NONE, const Glib::VariantType& reply_type{.} = Glib::VariantType() ), g_dbus_connection_call_with_unix_fd_list_sync, errthrow, ifdef G_OS_UNIX @@ -855,7 +867,7 @@ public: const Glib::ustring& member = Glib::ustring(), const Glib::ustring& object_path = Glib::ustring(), const Glib::ustring& arg0 = Glib::ustring(), - SignalFlags flags = Gio::DBus::SignalFlags::NONE); + SignalFlags flags = Gio::DBus::SIGNAL_FLAGS_NONE); _IGNORE(g_dbus_connection_signal_subscribe) _WRAP_METHOD(void signal_unsubscribe(guint subscription_id), g_dbus_connection_signal_unsubscribe) @@ -964,7 +976,7 @@ public: * * When handling remote calls into any node in the subtree, first the * enumerate slot is used to check if the node exists. If the node - * exists or the Gio::DBus::SubtreeFlags::DISPATCH_TO_UNENUMERATED_NODES flag + * exists or the Gio::DBus::SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES flag * is set the introspection slot is used to check if the node supports the * requested method. If so, the dispatch function is used to determine where * to dispatch the call. The collected InterfaceVTable will be used to @@ -994,7 +1006,7 @@ public: */ guint register_subtree(const Glib::ustring& object_path, const SubtreeVTable& vtable, - SubtreeFlags flags = Gio::DBus::SubtreeFlags::NONE); + SubtreeFlags flags = Gio::DBus::SUBTREE_FLAGS_NONE); _IGNORE(g_dbus_connection_register_subtree) _WRAP_METHOD(bool unregister_subtree(guint registration_id), g_dbus_connection_unregister_subtree) diff --git a/gio/src/dbusinterface.hg b/gio/src/dbusinterface.hg index 41cd5ec..8725f38 100644 --- a/gio/src/dbusinterface.hg +++ b/gio/src/dbusinterface.hg @@ -35,6 +35,8 @@ class Object; _GMMPROC_EXTRA_NAMESPACE(DBus) +//TODO: Have Proxy derive from this interface when there is an ABI break. + /** Interface - Base type for D-Bus interfaces. * The Interface type is the base type for D-Bus interfaces both on the service * side (see InterfaceSkeleton) and client side (see Proxy). diff --git a/gio/src/dbusinterfaceskeleton.ccg b/gio/src/dbusinterfaceskeleton.ccg index a327e96..0c0b4e8 100644 --- a/gio/src/dbusinterfaceskeleton.ccg +++ b/gio/src/dbusinterfaceskeleton.ccg @@ -17,5 +17,3 @@ #include #include #include - -using Flags = Gio::DBus::InterfaceSkeleton::Flags; diff --git a/gio/src/dbusinterfaceskeleton.hg b/gio/src/dbusinterfaceskeleton.hg index c027fba..18612d3 100644 --- a/gio/src/dbusinterfaceskeleton.hg +++ b/gio/src/dbusinterfaceskeleton.hg @@ -27,6 +27,8 @@ namespace Gio namespace DBus { +_WRAP_ENUM(InterfaceSkeletonFlags, GDBusInterfaceSkeletonFlags, NO_GTYPE) + class InterfaceInfo; class Connection; class MethodInvocation; @@ -44,8 +46,6 @@ class InterfaceSkeleton _IMPLEMENTS_INTERFACE(Interface) public: - _WRAP_ENUM(Flags, GDBusInterfaceSkeletonFlags, NO_GTYPE) - _WRAP_METHOD(void flush(), g_dbus_interface_skeleton_flush) _WRAP_METHOD(Glib::RefPtr get_info(), g_dbus_interface_skeleton_get_info) @@ -71,10 +71,10 @@ public: _WRAP_METHOD(Glib::ustring get_object_path() const, g_dbus_interface_skeleton_get_object_path) - _WRAP_METHOD(Flags get_flags() const, g_dbus_interface_skeleton_get_flags) - _WRAP_METHOD(void set_flags(Flags flags), g_dbus_interface_skeleton_set_flags) + _WRAP_METHOD(InterfaceSkeletonFlags get_flags() const, g_dbus_interface_skeleton_get_flags) + _WRAP_METHOD(void set_flags(InterfaceSkeletonFlags flags), g_dbus_interface_skeleton_set_flags) - _WRAP_PROPERTY("g-flags", Flags) + _WRAP_PROPERTY("g-flags", InterfaceSkeletonFlags) #m4 _CONVERSION(`GDBusMethodInvocation*',`const Glib::RefPtr&',`Glib::wrap($3, true)') _WRAP_SIGNAL(bool authorize_method(const Glib::RefPtr& invocation), "g_authorize_method") diff --git a/gio/src/dbusinterfacevtable.hg b/gio/src/dbusinterfacevtable.hg index 0771568..287c2c4 100644 --- a/gio/src/dbusinterfacevtable.hg +++ b/gio/src/dbusinterfacevtable.hg @@ -60,14 +60,14 @@ public: * @endcode */ using SlotInterfaceMethodCall = sigc::slot< - void( + void, const Glib::RefPtr&, const Glib::ustring&, const Glib::ustring&, const Glib::ustring&, const Glib::ustring&, const Glib::VariantContainerBase&, - const Glib::RefPtr&) + const Glib::RefPtr& >; /** The type for a slot which handles getting a property for a D-Bus @@ -82,13 +82,13 @@ public: * @throw Glib::Error. */ using SlotInterfaceGetProperty = sigc::slot< - void( + void, Glib::VariantBase&, const Glib::RefPtr&, const Glib::ustring&, const Glib::ustring&, const Glib::ustring&, - const Glib::ustring&) + const Glib::ustring& >; /** The type for a slot which handles setting a property for a D-Bus @@ -103,13 +103,13 @@ public: * @throw Glib::Error. */ using SlotInterfaceSetProperty = sigc::slot< - bool( + bool, const Glib::RefPtr&, const Glib::ustring&, const Glib::ustring&, const Glib::ustring&, const Glib::ustring&, - const Glib::VariantBase&) + const Glib::VariantBase& >; /** Constructs a new InterfaceVTable using the specified slots. diff --git a/gio/src/dbusintrospection.hg b/gio/src/dbusintrospection.hg index cdebc86..d56f6da 100644 --- a/gio/src/dbusintrospection.hg +++ b/gio/src/dbusintrospection.hg @@ -14,9 +14,8 @@ * License along with this library. If not, see . */ -#include #include -#include +#include _DEFS(giomm,gio) _PINCLUDE(glibmm/private/object_p.h) @@ -27,7 +26,7 @@ namespace Gio namespace DBus { -_WRAP_ENUM(PropertyInfoFlags, GDBusPropertyInfoFlags, NO_GTYPE) +_WRAP_ENUM(PropertyInfoFlags, GDBusPropertyInfoFlags, s#^DBUS_##, NO_GTYPE) /** Stores information about an annotation. * @@ -40,8 +39,8 @@ class AnnotationInfo final _IGNORE(g_dbus_annotation_info_ref, g_dbus_annotation_info_unref) public: -#m4 _CONVERSION(`const std::vector>&', `GDBusAnnotationInfo**',`Glib::ArrayHandler>::vector_to_array($3).data()') - _WRAP_METHOD(static Glib::ustring info_lookup(const std::vector>& annotations, const Glib::ustring& name), g_dbus_annotation_info_lookup) +#m4 _CONVERSION(`const Glib::ArrayHandle< Glib::RefPtr >&', `GDBusAnnotationInfo**', `const_cast($3.data())') + _WRAP_METHOD(static Glib::ustring info_lookup(const Glib::ArrayHandle< Glib::RefPtr >& annotations, const Glib::ustring& name), g_dbus_annotation_info_lookup) }; /** ArgInfo - Stores information about an argument for a method or a @@ -135,7 +134,9 @@ class NodeInfo final _IGNORE(g_dbus_node_info_ref, g_dbus_node_info_unref) public: - _WRAP_METHOD(static Glib::RefPtr create_for_xml(const Glib::ustring& xml_data), g_dbus_node_info_new_for_xml, errthrow "Glib::MarkupError") + _WRAP_METHOD_DOCS_ONLY(g_dbus_node_info_new_for_xml) + /// @throw Glib::Error. + _WRAP_METHOD(static Glib::RefPtr create_for_xml(const Glib::ustring& xml_data), g_dbus_node_info_new_for_xml, errthrow) _WRAP_METHOD(Glib::RefPtr lookup_interface(const Glib::ustring& name), g_dbus_node_info_lookup_interface, refreturn) _WRAP_METHOD(Glib::RefPtr lookup_interface(const Glib::ustring& name) const, g_dbus_node_info_lookup_interface, constversion, refreturn) diff --git a/gio/src/dbusmessage.hg b/gio/src/dbusmessage.hg index 52d1208..2207604 100644 --- a/gio/src/dbusmessage.hg +++ b/gio/src/dbusmessage.hg @@ -31,10 +31,10 @@ namespace Gio namespace DBus { -_WRAP_ENUM(MessageType, GDBusMessageType, NO_GTYPE) -_WRAP_ENUM(MessageFlags, GDBusMessageFlags, NO_GTYPE) -_WRAP_ENUM(MessageHeaderField, GDBusMessageHeaderField, NO_GTYPE) -_WRAP_ENUM(CapabilityFlags, GDBusCapabilityFlags, NO_GTYPE) +_WRAP_ENUM(MessageType, GDBusMessageType, s#^DBUS_##, NO_GTYPE) +_WRAP_ENUM(MessageFlags, GDBusMessageFlags, s#^DBUS_##, NO_GTYPE) +_WRAP_ENUM(MessageHeaderField, GDBusMessageHeaderField, s#^DBUS_##, NO_GTYPE) +_WRAP_ENUM(CapabilityFlags, GDBusCapabilityFlags, s#^DBUS_##, NO_GTYPE) _GMMPROC_EXTRA_NAMESPACE(DBus) @@ -75,20 +75,28 @@ public: // Ignore variable argument functions. _IGNORE(g_dbus_message_new_method_error, g_dbus_message_new_method_error_valist) - _WRAP_METHOD(static Glib::RefPtr create_from_blob(const guchar* blob, gsize blob_len, CapabilityFlags capabilities = CapabilityFlags::NONE), g_dbus_message_new_from_blob, errthrow "Gio::Error") + _WRAP_METHOD(static Glib::RefPtr create_from_blob(const guchar* blob, gsize blob_len, CapabilityFlags capabilities = CAPABILITY_FLAGS_NONE), g_dbus_message_new_from_blob, errthrow) _WRAP_METHOD(Glib::ustring print(guint indent), g_dbus_message_print) _WRAP_METHOD(bool get_locked() const, g_dbus_message_get_locked) _WRAP_METHOD(void lock() ,g_dbus_message_lock) - _WRAP_METHOD(Glib::RefPtr copy() const, g_dbus_message_copy, errthrow "Gio::Error") + _WRAP_METHOD(Glib::RefPtr copy() const, g_dbus_message_copy, errthrow) _WRAP_METHOD(MessageType get_message_type() const, g_dbus_message_get_message_type) _WRAP_METHOD(void set_message_type(MessageType type), g_dbus_message_set_message_type) - // BIG_ENDIAN and LITTLE_ENDIAN are defined as preprocessor macros somewhere. - _WRAP_ENUM(ByteOrder, GDBusMessageByteOrder, NO_GTYPE, s#ENDIAN$#ENDIAN_ORDER#) + //gmmproc can't handle the character literals, and this won't be expanded in future, + //so we just wrap it by hand. + enum ByteOrder + { + BYTE_ORDER_BIG_ENDIAN = 'B', + BYTE_ORDER_LITTLE_ENDIAN = 'l' + }; + + #m4 _CONVERSION(`ByteOrder',`GDBusMessageByteOrder',`(GDBusMessageByteOrder)($3)') + #m4 _CONVERSION(`GDBusMessageByteOrder',`ByteOrder',`(ByteOrder)($3)') _WRAP_METHOD(ByteOrder get_byte_order() const, g_dbus_message_get_byte_order) _WRAP_METHOD(void set_byte_order(ByteOrder byte_order), g_dbus_message_set_byte_order) @@ -129,8 +137,8 @@ public: _WRAP_METHOD(void set_header(MessageHeaderField header_field, const Glib::VariantBase& value), g_dbus_message_set_header) - #m4 _CONVERSION(`guchar*',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_SHALLOW)') - _WRAP_METHOD(std::vector get_header_fields() const, g_dbus_message_get_header_fields) + #m4 _CONVERSION(`guchar*',`Glib::ArrayHandle',`Glib::ArrayHandle($3)') + _WRAP_METHOD(Glib::ArrayHandle get_header_fields() const, g_dbus_message_get_header_fields) _WRAP_METHOD(Glib::ustring get_destination() const, g_dbus_message_get_destination) _WRAP_METHOD(void set_destination(const Glib::ustring& value), g_dbus_message_set_destination) @@ -158,9 +166,9 @@ public: _WRAP_METHOD(Glib::ustring get_arg0() const, g_dbus_message_get_arg0) - _WRAP_METHOD(static gssize bytes_needed(const guchar* blob, gsize blob_len), g_dbus_message_bytes_needed, errthrow "Gio::Error") + _WRAP_METHOD(static gssize bytes_needed(const guchar* blob, gsize blob_len), g_dbus_message_bytes_needed, errthrow) - _WRAP_METHOD(guchar* to_blob(gsize& out_size, CapabilityFlags capabilities = CapabilityFlags::NONE), g_dbus_message_to_blob, errthrow "Gio::Error") + _WRAP_METHOD(guchar* to_blob(gsize& out_size, CapabilityFlags capabilities = CAPABILITY_FLAGS_NONE), g_dbus_message_to_blob, errthrow) _WRAP_METHOD(void to_exception(), g_dbus_message_to_gerror, errthrow) diff --git a/gio/src/dbusownname.hg b/gio/src/dbusownname.hg index f0c660b..5971bf2 100644 --- a/gio/src/dbusownname.hg +++ b/gio/src/dbusownname.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2010 The giomm Development Team * * This library is free software; you can redistribute it and/or @@ -24,7 +26,7 @@ namespace Gio namespace DBus { -_WRAP_ENUM(BusNameOwnerFlags, GBusNameOwnerFlags) +_WRAP_ENUM(BusNameOwnerFlags, GBusNameOwnerFlags, s#^DBUS_##) /** For example, * void on_bus_acquired(const Glib::RefPtr& connection, @@ -32,21 +34,21 @@ _WRAP_ENUM(BusNameOwnerFlags, GBusNameOwnerFlags) * @newin{2,28} * @ingroup DBus */ -using SlotBusAcquired = sigc::slot&, Glib::ustring)>; +using SlotBusAcquired = sigc::slot&, Glib::ustring>; /** For example, * void on_name_acquired(const Glib::RefPtr& connection, * const Glib::ustring& name); * @ingroup DBus */ -using SlotNameAcquired = sigc::slot&, Glib::ustring)>; +using SlotNameAcquired = sigc::slot&, Glib::ustring>; /** For example, * void on_name_lost(const Glib::RefPtr& connection, * const Glib::ustring& name); * @ingroup DBus */ -using SlotNameLost = sigc::slot&, Glib::ustring)>; +using SlotNameLost = sigc::slot&, Glib::ustring>; //TODO: See https://bugzilla.gnome.org/show_bug.cgi?id=646427 about the apparent uselessness of SlotNameAcquired. //TODO: Add example from C API in class docs. @@ -113,7 +115,7 @@ guint own_name( const SlotBusAcquired& bus_acquired_slot = SlotBusAcquired(), const SlotNameAcquired& name_acquired_slot = SlotNameAcquired(), const SlotNameLost& name_lost_slot = SlotNameLost(), - BusNameOwnerFlags flags = Gio::DBus::BusNameOwnerFlags::NONE + BusNameOwnerFlags flags = Gio::DBus::BUS_NAME_OWNER_FLAGS_NONE ); _IGNORE(g_bus_own_name) diff --git a/gio/src/dbusproxy.ccg b/gio/src/dbusproxy.ccg index eb8c311..eefebcc 100644 --- a/gio/src/dbusproxy.ccg +++ b/gio/src/dbusproxy.ccg @@ -145,7 +145,7 @@ Proxy::create_sync(const Glib::RefPtr& connection, const Glib::ustri const Glib::RefPtr& cancellable, const Glib::RefPtr& info, ProxyFlags flags) { - return Glib::make_refptr_for_instance( + return Glib::RefPtr( new Proxy(connection, name, object_path, interface_name, cancellable, info, flags)); } @@ -154,7 +154,7 @@ Proxy::create_sync(const Glib::RefPtr& connection, const Glib::ustri const Glib::ustring& object_path, const Glib::ustring& interface_name, const Glib::RefPtr& info, ProxyFlags flags) { - return Glib::make_refptr_for_instance(new Proxy(connection, name, object_path, interface_name, info, flags)); + return Glib::RefPtr(new Proxy(connection, name, object_path, interface_name, info, flags)); } void @@ -180,7 +180,7 @@ Proxy::create_for_bus_sync(BusType bus_type, const Glib::ustring& name, const Glib::RefPtr& cancellable, const Glib::RefPtr& info, ProxyFlags flags) { - return Glib::make_refptr_for_instance( + return Glib::RefPtr( new Proxy(bus_type, name, object_path, interface_name, cancellable, info, flags)); } @@ -189,7 +189,7 @@ Proxy::create_for_bus_sync(BusType bus_type, const Glib::ustring& name, const Glib::ustring& object_path, const Glib::ustring& interface_name, const Glib::RefPtr& info, ProxyFlags flags) { - return Glib::make_refptr_for_instance(new Proxy(bus_type, name, object_path, interface_name, info, flags)); + return Glib::RefPtr(new Proxy(bus_type, name, object_path, interface_name, info, flags)); } void diff --git a/gio/src/dbusproxy.hg b/gio/src/dbusproxy.hg index 332e229..de241b7 100644 --- a/gio/src/dbusproxy.hg +++ b/gio/src/dbusproxy.hg @@ -17,7 +17,6 @@ #include #include #include -#include #include #include #include @@ -33,7 +32,7 @@ namespace DBus //The GMMPROC_EXTRA_NAMESPACE() macro is a hint to generate_wrap_init.pl to put it in the DBus sub-namespace _GMMPROC_EXTRA_NAMESPACE(DBus) -_WRAP_ENUM(ProxyFlags, GDBusProxyFlags, NO_GTYPE) +_WRAP_ENUM(ProxyFlags, GDBusProxyFlags, s#^DBUS_##, NO_GTYPE) /** A client-side proxy. * This is a base class used for proxies to access a D-Bus interface on @@ -64,13 +63,11 @@ _WRAP_ENUM(ProxyFlags, GDBusProxyFlags, NO_GTYPE) class Proxy : public Glib::Object, public Initable, - public AsyncInitable, - public Interface + public AsyncInitable { _CLASS_GOBJECT(Proxy, GDBusProxy, G_DBUS_PROXY, Glib::Object, GObject) _IMPLEMENTS_INTERFACE(Initable) _IMPLEMENTS_INTERFACE(AsyncInitable) - _IMPLEMENTS_INTERFACE(DBus::Interface) protected: @@ -81,7 +78,7 @@ protected: const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); Proxy(const Glib::RefPtr& connection, const Glib::ustring& name, @@ -89,7 +86,7 @@ protected: const Glib::ustring& interface_name, const SlotAsyncReady& slot, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); Proxy(const Glib::RefPtr& connection, const Glib::ustring& name, @@ -97,14 +94,14 @@ protected: const Glib::ustring& interface_name, const Glib::RefPtr& cancellable, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); Proxy(const Glib::RefPtr& connection, const Glib::ustring& name, const Glib::ustring& object_path, const Glib::ustring& interface_name, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); Proxy(BusType bus_type, const Glib::ustring& name, @@ -113,7 +110,7 @@ protected: const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); Proxy(BusType bus_type, const Glib::ustring& name, @@ -121,7 +118,7 @@ protected: const Glib::ustring& interface_name, const SlotAsyncReady& slot, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); Proxy(BusType bus_type, const Glib::ustring& name, @@ -129,14 +126,14 @@ protected: const Glib::ustring& interface_name, const Glib::RefPtr& cancellable, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); Proxy(BusType bus_type, const Glib::ustring& name, const Glib::ustring& object_path, const Glib::ustring& interface_name, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); public: @@ -148,7 +145,7 @@ public: const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); /// Non-cancellable version of create(). static void create(const Glib::RefPtr& connection, @@ -157,7 +154,7 @@ public: const Glib::ustring& interface_name, const SlotAsyncReady& slot, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); _WRAP_METHOD_DOCS_ONLY(g_dbus_proxy_new_finish) /// @throw Glib::Error. @@ -171,7 +168,7 @@ public: const Glib::ustring& interface_name, const Glib::RefPtr& cancellable, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); /// Non-cancellable version of create_sync(). static Glib::RefPtr @@ -180,7 +177,7 @@ public: const Glib::ustring& object_path, const Glib::ustring& interface_name, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); _WRAP_METHOD_DOCS_ONLY(g_dbus_proxy_new_for_bus) static void create_for_bus(BusType bus_type, @@ -190,7 +187,7 @@ public: const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); /// Non-cancellable version of create_for_bus(). static void create_for_bus(BusType bus_type, @@ -199,7 +196,7 @@ public: const Glib::ustring& interface_name, const SlotAsyncReady& slot, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); _WRAP_METHOD_DOCS_ONLY(g_dbus_proxy_new_for_bus_finish) /// @throw Glib::Error. @@ -213,7 +210,7 @@ public: const Glib::ustring& interface_name, const Glib::RefPtr& cancellable, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); /// Non-cancellable version of create_for_bus_sync(). static Glib::RefPtr @@ -222,7 +219,7 @@ public: const Glib::ustring& object_path, const Glib::ustring& interface_name, const Glib::RefPtr& info = Glib::RefPtr(), - ProxyFlags flags = ProxyFlags::NONE); + ProxyFlags flags = PROXY_FLAGS_NONE); _WRAP_METHOD(ProxyFlags get_flags() const, g_dbus_proxy_get_flags) @@ -255,8 +252,8 @@ public: _WRAP_METHOD(void set_cached_property(const Glib::ustring& property_name, const Glib::VariantBase& value), g_dbus_proxy_set_cached_property) -#m4 _CONVERSION(`gchar**', `std::vector', `Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector get_cached_property_names() const, g_dbus_proxy_get_cached_property_names) +#m4 _CONVERSION(`gchar**', `Glib::StringArrayHandle', `Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(Glib::StringArrayHandle get_cached_property_names() const, g_dbus_proxy_get_cached_property_names) _WRAP_METHOD(void set_interface_info(const Glib::RefPtr& info), g_dbus_proxy_set_interface_info) _WRAP_METHOD(Glib::RefPtr get_interface_info(), g_dbus_proxy_get_interface_info) @@ -269,7 +266,7 @@ public: const Glib::RefPtr& cancellable{.?}, const Glib::VariantContainerBase& parameters{.} = Glib::VariantContainerBase(), int timeout_msec{.} = -1, - CallFlags flags{.} = Gio::DBus::CallFlags::NONE + CallFlags flags{.} = Gio::DBus::CALL_FLAGS_NONE ), g_dbus_proxy_call, slot_name slot, slot_callback SignalProxy_async_callback ) @@ -290,7 +287,7 @@ public: const Glib::RefPtr& cancellable{.?}, const Glib::VariantContainerBase& parameters{.} = Glib::VariantContainerBase(), int timeout_msec{.} = -1, - CallFlags flags{.} = Gio::DBus::CallFlags::NONE + CallFlags flags{.} = Gio::DBus::CALL_FLAGS_NONE ), g_dbus_proxy_call_sync, errthrow ) @@ -303,7 +300,7 @@ public: const Glib::RefPtr& cancellable{.?}, const Glib::RefPtr& fd_list{.}, int timeout_msec{.} = -1, - CallFlags flags{.} = Gio::DBus::CallFlags::NONE + CallFlags flags{.} = Gio::DBus::CALL_FLAGS_NONE ), g_dbus_proxy_call_with_unix_fd_list, ifdef G_OS_UNIX, slot_name slot, slot_callback SignalProxy_async_callback @@ -327,7 +324,7 @@ public: const Glib::RefPtr& fd_list{.}, Glib::RefPtr& out_fd_list{.>>}, int timeout_msec{.} = -1, - CallFlags flags{.} = Gio::DBus::CallFlags::NONE + CallFlags flags{.} = Gio::DBus::CALL_FLAGS_NONE ), g_dbus_proxy_call_with_unix_fd_list_sync, errthrow, ifdef G_OS_UNIX ) diff --git a/gio/src/dbusserver.ccg b/gio/src/dbusserver.ccg index 82f3bac..cd8ca6d 100644 --- a/gio/src/dbusserver.ccg +++ b/gio/src/dbusserver.ccg @@ -20,8 +20,6 @@ #include #include -using Flags = Gio::DBus::Server::Flags; - namespace Gio { @@ -30,7 +28,7 @@ namespace DBus Server::Server(const std::string& address, const std::string& guid, const Glib::RefPtr& observer, const Glib::RefPtr& cancellable, - Flags flags) + ServerFlags flags) : _CONSTRUCT("address", Glib::c_str_or_nullptr(address), "flags", static_cast(flags), "guid", Glib::c_str_or_nullptr(guid), "authentication-observer", Glib::unwrap(observer)) @@ -39,7 +37,7 @@ Server::Server(const std::string& address, const std::string& guid, } Server::Server(const std::string& address, const std::string& guid, - const Glib::RefPtr& cancellable, Flags flags) + const Glib::RefPtr& cancellable, ServerFlags flags) : _CONSTRUCT("address", Glib::c_str_or_nullptr(address), "flags", static_cast(flags), "guid", Glib::c_str_or_nullptr(guid), "authentication-observer", static_cast(nullptr)) @@ -48,7 +46,7 @@ Server::Server(const std::string& address, const std::string& guid, } Server::Server(const std::string& address, const std::string& guid, - const Glib::RefPtr& observer, Flags flags) + const Glib::RefPtr& observer, ServerFlags flags) : _CONSTRUCT("address", Glib::c_str_or_nullptr(address), "flags", static_cast(flags), "guid", Glib::c_str_or_nullptr(guid), "authentication-observer", Glib::unwrap(observer)) @@ -56,7 +54,7 @@ Server::Server(const std::string& address, const std::string& guid, init(); } -Server::Server(const std::string& address, const std::string& guid, Flags flags) +Server::Server(const std::string& address, const std::string& guid, ServerFlags flags) : _CONSTRUCT("address", Glib::c_str_or_nullptr(address), "flags", static_cast(flags), "guid", Glib::c_str_or_nullptr(guid), "authentication-observer", static_cast(nullptr)) @@ -67,29 +65,29 @@ Server::Server(const std::string& address, const std::string& guid, Flags flags) Glib::RefPtr Server::create_sync(const std::string& address, const std::string& guid, const Glib::RefPtr& observer, const Glib::RefPtr& cancellable, - Flags flags) + ServerFlags flags) { - return Glib::make_refptr_for_instance(new Server(address, guid, observer, cancellable, flags)); + return Glib::RefPtr(new Server(address, guid, observer, cancellable, flags)); } Glib::RefPtr Server::create_sync(const std::string& address, const std::string& guid, - const Glib::RefPtr& cancellable, Flags flags) + const Glib::RefPtr& cancellable, ServerFlags flags) { - return Glib::make_refptr_for_instance(new Server(address, guid, cancellable, flags)); + return Glib::RefPtr(new Server(address, guid, cancellable, flags)); } Glib::RefPtr Server::create_sync(const std::string& address, const std::string& guid, - const Glib::RefPtr& observer, Flags flags) + const Glib::RefPtr& observer, ServerFlags flags) { - return Glib::make_refptr_for_instance(new Server(address, guid, observer, flags)); + return Glib::RefPtr(new Server(address, guid, observer, flags)); } Glib::RefPtr -Server::create_sync(const std::string& address, const std::string& guid, Flags flags) +Server::create_sync(const std::string& address, const std::string& guid, ServerFlags flags) { - return Glib::make_refptr_for_instance(new Server(address, guid, flags)); + return Glib::RefPtr(new Server(address, guid, flags)); } } // namespace DBus diff --git a/gio/src/dbusserver.hg b/gio/src/dbusserver.hg index 217ed96..64ed21b 100644 --- a/gio/src/dbusserver.hg +++ b/gio/src/dbusserver.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2010 The giomm Development Team * * This library is free software; you can redistribute it and/or @@ -28,6 +30,8 @@ namespace Gio namespace DBus { +_WRAP_ENUM(ServerFlags, GDBusServerFlags, s#^DBUS_##, NO_GTYPE) + _GMMPROC_EXTRA_NAMESPACE(DBus) //TODO: Add example from the C API in class docs. @@ -51,29 +55,27 @@ class Server : public Glib::Object, public Initable _CLASS_GOBJECT(Server, GDBusServer, G_DBUS_SERVER, Glib::Object, GObject) _IMPLEMENTS_INTERFACE(Initable) -public: - _WRAP_ENUM(Flags, GDBusServerFlags, NO_GTYPE) - protected: + Server(const std::string& address, const std::string& guid, const Glib::RefPtr& observer, const Glib::RefPtr& cancellable, - Flags flags); + ServerFlags flags); Server(const std::string& address, const std::string& guid, const Glib::RefPtr& cancellable, - Flags flags); + ServerFlags flags); Server(const std::string& address, const std::string& guid, const Glib::RefPtr& observer, - Flags flags); + ServerFlags flags); Server(const std::string& address, const std::string& guid, - Flags flags); + ServerFlags flags); public: @@ -83,38 +85,38 @@ public: const std::string& guid, const Glib::RefPtr& observer, const Glib::RefPtr& cancellable, - Flags flags = Gio::DBus::Server::Flags::NONE); + ServerFlags flags = Gio::DBus::SERVER_FLAGS_NONE); _WRAP_METHOD_DOCS_ONLY(g_dbus_server_new_sync) /// @throw Glib::Error. static Glib::RefPtr create_sync(const std::string& address, const std::string& guid, const Glib::RefPtr& cancellable, - Flags flags = Gio::DBus::Server::Flags::NONE); + ServerFlags flags = Gio::DBus::SERVER_FLAGS_NONE); /// Non-cancellable version of create_sync(). static Glib::RefPtr create_sync(const std::string& address, const std::string& guid, const Glib::RefPtr& observer, - Flags flags = Gio::DBus::Server::Flags::NONE); + ServerFlags flags = Gio::DBus::SERVER_FLAGS_NONE); /// Non-cancellable version of create_sync(). static Glib::RefPtr create_sync(const std::string& address, const std::string& guid, - Flags flags = Gio::DBus::Server::Flags::NONE); + ServerFlags flags = Gio::DBus::SERVER_FLAGS_NONE); _WRAP_METHOD(void start(), g_dbus_server_start) _WRAP_METHOD(void stop(), g_dbus_server_stop) _WRAP_METHOD(bool is_active() const, g_dbus_server_is_active) _WRAP_METHOD(std::string get_guid() const, g_dbus_server_get_guid) - _WRAP_METHOD(Flags get_flags() const, g_dbus_server_get_flags) + _WRAP_METHOD(ServerFlags get_flags() const, g_dbus_server_get_flags) _WRAP_METHOD(std::string get_client_address() const, g_dbus_server_get_client_address) _WRAP_PROPERTY("active", bool) _WRAP_PROPERTY("address", std::string) _WRAP_PROPERTY("authentication-observer", Glib::RefPtr) _WRAP_PROPERTY("client-address", std::string) - _WRAP_PROPERTY("flags", Flags) + _WRAP_PROPERTY("flags", ServerFlags) _WRAP_PROPERTY("guid", std::string) #m4 _CONVERSION(`GDBusConnection*', `const Glib::RefPtr&', `Glib::wrap($3, true)') diff --git a/gio/src/dbussubtreevtable.hg b/gio/src/dbussubtreevtable.hg index fcfbb99..0fe4d53 100644 --- a/gio/src/dbussubtreevtable.hg +++ b/gio/src/dbussubtreevtable.hg @@ -64,10 +64,10 @@ public: * @endcode */ using SlotSubtreeEnumerate = sigc::slot< - std::vector( + std::vector, const Glib::RefPtr&, const Glib::ustring&, - const Glib::ustring&) + const Glib::ustring& >; /** The type for a slot which handles introspecting a child node. @@ -91,11 +91,11 @@ public: * @endcode */ using SlotSubtreeIntrospect = sigc::slot< - std::vector< Glib::RefPtr >( + std::vector< Glib::RefPtr >, const Glib::RefPtr&, const Glib::ustring&, const Glib::ustring&, - const Glib::ustring&) + const Glib::ustring& >; /** The type for a slot which handles dispatching a remote call on a child @@ -113,12 +113,12 @@ public: * @endcode */ using SlotSubtreeDispatch = sigc::slot< - const InterfaceVTable*( + const InterfaceVTable*, const Glib::RefPtr&, const Glib::ustring&, const Glib::ustring&, const Glib::ustring&, - const Glib::ustring&) + const Glib::ustring& >; /** Constructs a new SubtreeVTable using specified slots. diff --git a/gio/src/dbuswatchname.hg b/gio/src/dbuswatchname.hg index 555bcac..bb8b671 100644 --- a/gio/src/dbuswatchname.hg +++ b/gio/src/dbuswatchname.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2010 The giomm Development Team * * This library is free software; you can redistribute it and/or @@ -24,21 +26,21 @@ namespace Gio namespace DBus { -_WRAP_ENUM(BusNameWatcherFlags, GBusNameWatcherFlags, NO_GTYPE) +_WRAP_ENUM(BusNameWatcherFlags, GBusNameWatcherFlags, s#^DBUS_##, NO_GTYPE) /** For example, * void on_name_appeared(const Glib::RefPtr& connection, * const Glib::ustring& name, const Glib::ustring& name_owner); * @ingroup DBus */ -using SlotNameAppeared = sigc::slot&, Glib::ustring, const Glib::ustring&)>; +using SlotNameAppeared = sigc::slot&, Glib::ustring, const Glib::ustring&>; /** For example, * void on_name_vanished(const Glib::RefPtr& connection, * const Glib::ustring& name); * @ingroup DBus */ -using SlotNameVanished = sigc::slot&, Glib::ustring)>; +using SlotNameVanished = sigc::slot&, Glib::ustring>; //TODO: Add example from C API in class docs? /** Starts watching @a name on the bus specified by @a bus_type and calls @@ -86,7 +88,7 @@ guint watch_name( const Glib::ustring& name, const SlotNameAppeared& name_appeared_slot = SlotNameAppeared(), const SlotNameVanished& name_vanished_slot = SlotNameVanished(), - BusNameWatcherFlags flags = Gio::DBus::BusNameWatcherFlags::NONE + BusNameWatcherFlags flags = Gio::DBus::BUS_NAME_WATCHER_FLAGS_NONE ); _IGNORE(g_bus_watch_name) @@ -109,7 +111,7 @@ guint watch_name( const Glib::ustring& name, const SlotNameAppeared& name_appeared_slot = SlotNameAppeared(), const SlotNameVanished& name_vanished_slot = SlotNameVanished(), - BusNameWatcherFlags flags = Gio::DBus::BusNameWatcherFlags::NONE + BusNameWatcherFlags flags = Gio::DBus::BUS_NAME_WATCHER_FLAGS_NONE ); _IGNORE(g_bus_watch_name_on_connection) diff --git a/gio/src/desktopappinfo.hg b/gio/src/desktopappinfo.hg index f9a0604..5fb2024 100644 --- a/gio/src/desktopappinfo.hg +++ b/gio/src/desktopappinfo.hg @@ -56,8 +56,8 @@ public: _WRAP_METHOD(std::string get_filename() const, g_desktop_app_info_get_filename) _WRAP_METHOD(bool is_hidden() const, g_desktop_app_info_get_is_hidden) - - _IGNORE(g_desktop_app_info_set_desktop_env) + _WRAP_METHOD(static void set_desktop_env(const std::string& desktop_env), g_desktop_app_info_set_desktop_env, + deprecated "Do not use this API. Since 2.42 the value of the `XDG_CURRENT_DESKTOP` environment variable will be used.") #m4 _CONVERSION(`const char* const*', `std::vector', `Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_NONE)') _WRAP_METHOD(std::vector get_keywords() const, g_desktop_app_info_get_keywords) @@ -69,7 +69,8 @@ public: _WRAP_METHOD(std::string get_categories() const, g_desktop_app_info_get_categories) _WRAP_METHOD(bool has_key(const Glib::ustring& key) const, g_desktop_app_info_has_key) - _WRAP_METHOD(Glib::ustring get_string(const Glib::ustring& key), g_desktop_app_info_get_string ) + _WRAP_METHOD(Glib::ustring get_string(const Glib::ustring& key), g_desktop_app_info_get_string) + _WRAP_METHOD(Glib::ustring get_locale_string(const Glib::ustring& key), g_desktop_app_info_get_locale_string) _WRAP_METHOD(bool get_boolean(const Glib::ustring& key) const, g_desktop_app_info_get_boolean) #m4 _CONVERSION(`const gchar* const*', `std::vector', `Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_NONE)') diff --git a/gio/src/drive.ccg b/gio/src/drive.ccg index 95186ea..08a90d4 100644 --- a/gio/src/drive.ccg +++ b/gio/src/drive.ccg @@ -20,14 +20,12 @@ #include #include "slot_async.h" -using StartStopType = Gio::Drive::StartStopType; - namespace Gio { void Drive::eject( - const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags) + const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -40,7 +38,7 @@ Drive::eject( } void -Drive::eject(const SlotAsyncReady& slot, Mount::UnmountFlags flags) +Drive::eject(const SlotAsyncReady& slot, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -55,7 +53,7 @@ Drive::eject(const SlotAsyncReady& slot, Mount::UnmountFlags flags) void Drive::eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - const Glib::RefPtr& cancellable, Mount::UnmountFlags flags) + const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -69,7 +67,7 @@ Drive::eject(const Glib::RefPtr& mount_operation, const SlotAsyn void Drive::eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - Mount::UnmountFlags flags) + MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -83,7 +81,7 @@ Drive::eject(const Glib::RefPtr& mount_operation, const SlotAsyn } void -Drive::eject(const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags) +Drive::eject(const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { g_drive_eject_with_operation(gobj(), static_cast(flags), Glib::unwrap(mount_operation), @@ -93,7 +91,7 @@ Drive::eject(const Glib::RefPtr& mount_operation, Mount::Unmount } void -Drive::eject(Mount::UnmountFlags flags) +Drive::eject(MountUnmountFlags flags) { g_drive_eject_with_operation(gobj(), static_cast(flags), nullptr, // mount_operation @@ -136,7 +134,7 @@ Drive::poll_for_media() void Drive::stop(const Glib::RefPtr& mount_operation, - const Glib::RefPtr& cancellable, const SlotAsyncReady& slot, Mount::UnmountFlags flags) + const Glib::RefPtr& cancellable, const SlotAsyncReady& slot, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -149,7 +147,7 @@ Drive::stop(const Glib::RefPtr& mount_operation, void Drive::stop(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - Mount::UnmountFlags flags) + MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -162,7 +160,7 @@ Drive::stop(const Glib::RefPtr& mount_operation, const SlotAsync void Drive::start(const Glib::RefPtr& mount_operation, - const Glib::RefPtr& cancellable, const SlotAsyncReady& slot, StartFlags flags) + const Glib::RefPtr& cancellable, const SlotAsyncReady& slot, DriveStartFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -175,7 +173,7 @@ Drive::start(const Glib::RefPtr& mount_operation, void Drive::start(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - StartFlags flags) + DriveStartFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter diff --git a/gio/src/drive.hg b/gio/src/drive.hg index a65d083..9593de9 100644 --- a/gio/src/drive.hg +++ b/gio/src/drive.hg @@ -14,6 +14,7 @@ * License along with this library. If not, see . */ +#include #include #include //#include @@ -30,6 +31,9 @@ typedef struct _GDriveIface GDriveIface; namespace Gio { +_WRAP_ENUM(DriveStartFlags, GDriveStartFlags) +_WRAP_ENUM(DriveStartStopType, GDriveStartStopType) + /** Virtual File System drive management. * * This represent a piece of hardware connected to the machine. It's generally only created for removable hardware or hardware with removable media. @@ -47,9 +51,6 @@ class Drive : public Glib::Interface _CLASS_INTERFACE(Drive, GDrive, G_DRIVE, GDriveIface) public: - _WRAP_ENUM(StartFlags, GDriveStartFlags) - _WRAP_ENUM(StartStopType, GDriveStartStopType) - _WRAP_METHOD(Glib::ustring get_name() const, g_drive_get_name) _WRAP_METHOD(Glib::RefPtr get_icon(), g_drive_get_icon, refreturn) @@ -60,8 +61,8 @@ public: _WRAP_METHOD(bool has_volumes() const, g_drive_has_volumes) -#m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_SHALLOW)') - _WRAP_METHOD(std::vector> get_volumes(), g_drive_get_volumes) +#m4 _CONVERSION(`GList*',`Glib::ListHandle< Glib::RefPtr >',`$2($3, Glib::OWNERSHIP_SHALLOW)') + _WRAP_METHOD(Glib::ListHandle< Glib::RefPtr > get_volumes(), g_drive_get_volumes) _WRAP_METHOD(bool is_media_removable() const, g_drive_is_media_removable) _WRAP_METHOD(bool is_removable() const, g_drive_is_removable) @@ -75,21 +76,21 @@ public: * @param flags Flags affecting the unmount if required for eject. * @param cancellable A cancellable object which can be used to cancel the eject. */ - void eject(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Ejects the drive. * @param slot A callback which will be called when the eject is completed. * @param flags Flags affecting the unmount if required for eject. */ - void eject(const SlotAsyncReady& slot, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); - void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); - void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject(const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Ejects the drive. * @param flags Flags affecting the unmount if required for eject. */ - void eject(Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); - void eject(const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject(MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); _IGNORE(g_drive_eject) _IGNORE(g_drive_eject_with_operation) @@ -124,13 +125,13 @@ public: _WRAP_METHOD(std::string get_identifier(const std::string& kind) const, g_drive_get_identifier) - #m4 _CONVERSION(`char**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector enumerate_identifiers() const, g_drive_enumerate_identifiers) + #m4 _CONVERSION(`char**',`Glib::StringArrayHandle',`Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(Glib::StringArrayHandle enumerate_identifiers() const, g_drive_enumerate_identifiers) /** @newin{2,22} */ - void start(const Glib::RefPtr& mount_operation, const Glib::RefPtr& cancellable, const SlotAsyncReady& slot, StartFlags flags = StartFlags::NONE); + void start(const Glib::RefPtr& mount_operation, const Glib::RefPtr& cancellable, const SlotAsyncReady& slot, DriveStartFlags flags = DRIVE_START_NONE); /** @newin{2,22} */ - void start(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, StartFlags flags = StartFlags::NONE); + void start(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, DriveStartFlags flags = DRIVE_START_NONE); _IGNORE(g_drive_start) _WRAP_METHOD(bool start_finish(const Glib::RefPtr& result), g_drive_start_finish, errthrow) /** @newin{2,22} */ @@ -139,22 +140,30 @@ public: _WRAP_METHOD(bool can_start_degraded() const, g_drive_can_start_degraded) /** @newin{2,22} */ - void stop(const Glib::RefPtr& mount_operation, const Glib::RefPtr& cancellable, const SlotAsyncReady& slot, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void stop(const Glib::RefPtr& mount_operation, const Glib::RefPtr& cancellable, const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** @newin{2,22} */ - void stop(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void stop(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); _IGNORE(g_drive_stop) _WRAP_METHOD(bool stop_finish(const Glib::RefPtr& result), g_drive_stop_finish, errthrow) /** @newin{2,22} */ _WRAP_METHOD(bool can_stop() const, g_drive_can_stop) - _WRAP_METHOD(StartStopType get_start_stop_type() const, g_drive_get_start_stop_type) + _WRAP_METHOD(DriveStartStopType get_start_stop_type() const, g_drive_get_start_stop_type) _WRAP_METHOD(Glib::ustring get_sort_key() const, g_drive_get_sort_key) - _WRAP_SIGNAL(void changed(), changed, newin "2,20") - _WRAP_SIGNAL(void disconnected(), disconnected, newin "2,20") - _WRAP_SIGNAL(void eject_button(), eject_button, newin "2,20") - _WRAP_SIGNAL(void stop_button(), stop_button) + /** @newin{2,20} + */ + _WRAP_SIGNAL(void changed(), changed, no_default_handler) + + /** @newin{2,20} + */ + _WRAP_SIGNAL(void disconnected(), disconnected, no_default_handler) + + /** @newin{2,20} + */ + _WRAP_SIGNAL(void eject_button(), eject_button, no_default_handler) + _WRAP_SIGNAL(void stop_button(), stop_button, no_default_handler) //_WRAP_VFUNC(Glib::ustring get_name() const, get_name) //Careful of ref-counting: //_WRAP_VFUNC(Glib::RefPtr get_icon() const, get_icon) diff --git a/gio/src/emblem.ccg b/gio/src/emblem.ccg index 0220a12..24667b5 100644 --- a/gio/src/emblem.ccg +++ b/gio/src/emblem.ccg @@ -16,8 +16,6 @@ #include -using Origin = Gio::Emblem::Origin; - namespace Gio { diff --git a/gio/src/emblem.hg b/gio/src/emblem.hg index 1ee816b..fd4431e 100644 --- a/gio/src/emblem.hg +++ b/gio/src/emblem.hg @@ -23,6 +23,8 @@ _PINCLUDE(glibmm/private/object_p.h) namespace Gio { +_WRAP_ENUM(EmblemOrigin, GEmblemOrigin, NO_GTYPE) + /** An object for emblems * * Emblem is an implementation of GIcon that supports having an emblem, which @@ -41,9 +43,6 @@ class Emblem _CLASS_GOBJECT(Emblem, GEmblem, G_EMBLEM, Glib::Object, GObject) _IMPLEMENTS_INTERFACE(Icon) -public: - _WRAP_ENUM(Origin, GEmblemOrigin, NO_GTYPE) - protected: /** Creates a new emblem for @a icon. * @param icon A Gio::Icon containing the icon. @@ -52,9 +51,9 @@ protected: /** Creates a new emblem for @a icon. * @param icon A Gio::Icon containing the icon. - * @param origin An Origin value defining the emblem's origin + * @param origin An EmblemOrigin value defining the emblem's origin */ - _WRAP_CTOR(Emblem(const Glib::RefPtr& icon, Origin origin), g_emblem_new_with_origin) + _WRAP_CTOR(Emblem(const Glib::RefPtr& icon, EmblemOrigin origin), g_emblem_new_with_origin) public: /** Creates a new emblem for @a icon. @@ -64,13 +63,13 @@ public: /** Creates a new emblem for @a icon. * @param icon A Gio::Icon containing the icon. - * @param origin An Origin value defining the emblem's origin + * @param origin An EmblemOrigin value defining the emblem's origin */ - _WRAP_CREATE(const Glib::RefPtr& icon, Origin origin) + _WRAP_CREATE(const Glib::RefPtr& icon, EmblemOrigin origin) _WRAP_METHOD(Glib::RefPtr get_icon(), g_emblem_get_icon) _WRAP_METHOD(Glib::RefPtr get_icon() const, g_emblem_get_icon, constversion) - _WRAP_METHOD(Origin get_origin() const, g_emblem_get_origin) + _WRAP_METHOD(EmblemOrigin get_origin() const, g_emblem_get_origin) }; diff --git a/gio/src/emblemedicon.hg b/gio/src/emblemedicon.hg index de9a291..31d0c78 100644 --- a/gio/src/emblemedicon.hg +++ b/gio/src/emblemedicon.hg @@ -14,6 +14,7 @@ * License along with this library. If not, see . */ +#include #include #include #include @@ -77,11 +78,11 @@ public: _WRAP_METHOD(Glib::RefPtr get_icon(), g_emblemed_icon_get_icon) _WRAP_METHOD(Glib::RefPtr get_icon() const, g_emblemed_icon_get_icon, constversion) -#m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_NONE)') - _WRAP_METHOD(std::vector> get_emblems(), g_emblemed_icon_get_emblems) - dnl// Can't use the constversion parameter in _WRAP_METHOD() when a vector is returned. -#m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_NONE)') - _WRAP_METHOD(std::vector> get_emblems() const, g_emblemed_icon_get_emblems) +#m4 _CONVERSION(`GList*',`Glib::ListHandle >',`$2($3, Glib::OWNERSHIP_NONE)') + _WRAP_METHOD(Glib::ListHandle > get_emblems(), g_emblemed_icon_get_emblems) + +//TODO: #m4 _CONVERSION(`GList*',`Glib::ListHandle >',`$2($3, Glib::OWNERSHIP_NONE)') +// _WRAP_METHOD(Glib::ListHandle > get_emblems() const, g_emblemed_icon_get_emblems, constversion) _WRAP_METHOD(void add_emblem(const Glib::RefPtr& emblem), g_emblemed_icon_add_emblem) _WRAP_METHOD(void clear_emblems(), g_emblemed_icon_clear_emblems) diff --git a/gio/src/enums.hg b/gio/src/enums.hg index d306225..e38c5db 100644 --- a/gio/src/enums.hg +++ b/gio/src/enums.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or @@ -22,11 +24,12 @@ _DEFS(giomm,gio) namespace Gio { -// BIG_ENDIAN and LITTLE_ENDIAN are defined as preprocessor macros somewhere. -_WRAP_ENUM(DataStreamByteOrder, GDataStreamByteOrder, NO_GTYPE, s#ENDIAN$#ENDIAN_ORDER#) +_WRAP_ENUM(DataStreamByteOrder, GDataStreamByteOrder, NO_GTYPE) _WRAP_ENUM(DataStreamNewlineType, GDataStreamNewlineType, NO_GTYPE) +_WRAP_ENUM(ErrorEnum, GIOErrorEnum, NO_GTYPE) _WRAP_ENUM(SocketFamily, GSocketFamily) _WRAP_ENUM(TlsAuthenticationMode, GTlsAuthenticationMode) _WRAP_ENUM(TlsCertificateFlags, GTlsCertificateFlags) } // namespace Gio + diff --git a/gio/src/file.ccg b/gio/src/file.ccg index 2e8f428..a1ded83 100644 --- a/gio/src/file.ccg +++ b/gio/src/file.ccg @@ -222,7 +222,7 @@ File::read_async( void File::append_to_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - CreateFlags flags, int io_priority) + FileCreateFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -234,7 +234,7 @@ File::append_to_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - CreateFlags flags, int io_priority) + FileCreateFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -260,7 +260,7 @@ File::create_file_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, CreateFlags flags, int io_priority) + const Glib::RefPtr& cancellable, FileCreateFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -287,7 +287,7 @@ File::create_file_readwrite_async(const SlotAsyncReady& slot, void File::create_file_readwrite_async( - const SlotAsyncReady& slot, CreateFlags flags, int io_priority) + const SlotAsyncReady& slot, FileCreateFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -301,7 +301,7 @@ File::create_file_readwrite_async( void File::replace_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - const std::string& etag, bool make_backup, CreateFlags flags, int io_priority) + const std::string& etag, bool make_backup, FileCreateFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -315,7 +315,7 @@ File::replace_async(const SlotAsyncReady& slot, const Glib::RefPtr& void File::replace_async(const SlotAsyncReady& slot, const std::string& etag, bool make_backup, - CreateFlags flags, int io_priority) + FileCreateFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -355,7 +355,7 @@ File::open_readwrite_async( void File::replace_readwrite_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& etag, bool make_backup, - CreateFlags flags, int io_priority) + FileCreateFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -369,7 +369,7 @@ File::replace_readwrite_async(const SlotAsyncReady& slot, void File::replace_readwrite_async(const SlotAsyncReady& slot, const std::string& etag, bool make_backup, - CreateFlags flags, int io_priority) + FileCreateFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -580,7 +580,7 @@ File::set_display_name_async( bool File::copy(const Glib::RefPtr& destination, const SlotFileProgress& slot, - const Glib::RefPtr& cancellable, CopyFlags flags) + const Glib::RefPtr& cancellable, FileCopyFlags flags) { GError* gerror = nullptr; bool res; @@ -602,7 +602,7 @@ File::copy(const Glib::RefPtr& destination, const SlotFileProgress& slot, } bool -File::copy(const Glib::RefPtr& destination, const SlotFileProgress& slot, CopyFlags flags) +File::copy(const Glib::RefPtr& destination, const SlotFileProgress& slot, FileCopyFlags flags) { GError* gerror = nullptr; bool res; @@ -624,7 +624,7 @@ File::copy(const Glib::RefPtr& destination, const SlotFileProgress& slot, } bool -File::copy(const Glib::RefPtr& destination, CopyFlags flags) +File::copy(const Glib::RefPtr& destination, FileCopyFlags flags) { GError* gerror = nullptr; bool res = g_file_copy(gobj(), Glib::unwrap(destination), static_cast(flags), @@ -639,7 +639,7 @@ File::copy(const Glib::RefPtr& destination, CopyFlags flags) void File::copy_async(const Glib::RefPtr& destination, const SlotFileProgress& slot_progress, const SlotAsyncReady& slot_ready, const Glib::RefPtr& cancellable, - CopyFlags flags, int io_priority) + FileCopyFlags flags, int io_priority) { // Create a new pair which will hold copies of passed slots. // This will be deleted in the SignalProxy_file_copy_async_callback() callback @@ -657,7 +657,7 @@ File::copy_async(const Glib::RefPtr& destination, const SlotFileProgress& void File::copy_async(const Glib::RefPtr& destination, const SlotAsyncReady& slot_ready, - const Glib::RefPtr& cancellable, CopyFlags flags, int io_priority) + const Glib::RefPtr& cancellable, FileCopyFlags flags, int io_priority) { // Create copies of slots. // Pointers to them will be passed through the callbacks' data parameter @@ -671,7 +671,7 @@ File::copy_async(const Glib::RefPtr& destination, const SlotAsyncReady& sl void File::copy_async(const Glib::RefPtr& destination, const SlotFileProgress& slot_progress, - const SlotAsyncReady& slot_ready, CopyFlags flags, int io_priority) + const SlotAsyncReady& slot_ready, FileCopyFlags flags, int io_priority) { // Create a new pair which will hold copies of passed slots. // This will be deleted in the SignalProxy_file_copy_async_callback() callback @@ -689,7 +689,7 @@ File::copy_async(const Glib::RefPtr& destination, const SlotFileProgress& void File::copy_async(const Glib::RefPtr& destination, const SlotAsyncReady& slot_ready, - CopyFlags flags, int io_priority) + FileCopyFlags flags, int io_priority) { // Create copies of slots. // Pointers to them will be passed through the callbacks' data parameter @@ -702,7 +702,7 @@ File::copy_async(const Glib::RefPtr& destination, const SlotAsyncReady& sl bool File::move(const Glib::RefPtr& destination, const SlotFileProgress& slot, - const Glib::RefPtr& cancellable, CopyFlags flags) + const Glib::RefPtr& cancellable, FileCopyFlags flags) { GError* gerror = nullptr; bool res; @@ -724,7 +724,7 @@ File::move(const Glib::RefPtr& destination, const SlotFileProgress& slot, } bool -File::move(const Glib::RefPtr& destination, const SlotFileProgress& slot, CopyFlags flags) +File::move(const Glib::RefPtr& destination, const SlotFileProgress& slot, FileCopyFlags flags) { GError* gerror = nullptr; bool res; @@ -746,7 +746,7 @@ File::move(const Glib::RefPtr& destination, const SlotFileProgress& slot, } bool -File::move(const Glib::RefPtr& destination, CopyFlags flags) +File::move(const Glib::RefPtr& destination, FileCopyFlags flags) { GError* gerror = nullptr; bool res; @@ -804,7 +804,7 @@ File::set_attributes_finish( void File::mount_mountable(const Glib::RefPtr& mount_operation, - const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::MountFlags flags) + const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -818,7 +818,7 @@ File::mount_mountable(const Glib::RefPtr& mount_operation, void File::mount_mountable(const Glib::RefPtr& mount_operation, - const SlotAsyncReady& slot, Mount::MountFlags flags) + const SlotAsyncReady& slot, MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -830,7 +830,7 @@ File::mount_mountable(const Glib::RefPtr& mount_operation, } void -File::mount_mountable(const SlotAsyncReady& slot, Mount::MountFlags flags) +File::mount_mountable(const SlotAsyncReady& slot, MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -842,7 +842,7 @@ File::mount_mountable(const SlotAsyncReady& slot, Mount::MountFlags flags) } void -File::mount_mountable(Mount::MountFlags flags) +File::mount_mountable(MountMountFlags flags) { g_file_mount_mountable( gobj(), static_cast(flags), nullptr, nullptr, nullptr, nullptr); @@ -850,7 +850,7 @@ File::mount_mountable(Mount::MountFlags flags) void File::unmount_mountable( - const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags) + const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -862,7 +862,7 @@ File::unmount_mountable( } void -File::unmount_mountable(const SlotAsyncReady& slot, Mount::UnmountFlags flags) +File::unmount_mountable(const SlotAsyncReady& slot, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -874,7 +874,7 @@ File::unmount_mountable(const SlotAsyncReady& slot, Mount::UnmountFlags flags) } void -File::unmount_mountable(Mount::UnmountFlags flags) +File::unmount_mountable(MountUnmountFlags flags) { g_file_unmount_mountable_with_operation( gobj(), static_cast(flags), nullptr, nullptr, nullptr, nullptr); @@ -882,7 +882,7 @@ File::unmount_mountable(Mount::UnmountFlags flags) void File::unmount_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags) + const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -896,7 +896,7 @@ File::unmount_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags) + const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -909,7 +909,7 @@ File::unmount_mountable(const SlotAsyncReady& slot, void File::unmount_mountable( - const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags) + const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { g_file_unmount_mountable_with_operation(gobj(), static_cast(flags), Glib::unwrap(mount_operation), nullptr, nullptr, nullptr); @@ -917,7 +917,7 @@ File::unmount_mountable( void File::mount_enclosing_volume(const Glib::RefPtr& mount_operation, - const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::MountFlags flags) + const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -931,7 +931,7 @@ File::mount_enclosing_volume(const Glib::RefPtr& mount_operation void File::mount_enclosing_volume(const Glib::RefPtr& mount_operation, - const SlotAsyncReady& slot, Mount::MountFlags flags) + const SlotAsyncReady& slot, MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -943,7 +943,7 @@ File::mount_enclosing_volume(const Glib::RefPtr& mount_operation } void -File::mount_enclosing_volume(const SlotAsyncReady& slot, Mount::MountFlags flags) +File::mount_enclosing_volume(const SlotAsyncReady& slot, MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -955,7 +955,7 @@ File::mount_enclosing_volume(const SlotAsyncReady& slot, Mount::MountFlags flags } void -File::mount_enclosing_volume(Mount::MountFlags flags) +File::mount_enclosing_volume(MountMountFlags flags) { g_file_mount_enclosing_volume( gobj(), static_cast(flags), nullptr, nullptr, nullptr, nullptr); @@ -963,7 +963,7 @@ File::mount_enclosing_volume(Mount::MountFlags flags) void File::eject_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags) + const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -977,7 +977,7 @@ File::eject_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags) + const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -989,7 +989,7 @@ File::eject_mountable(const SlotAsyncReady& slot, } void -File::eject_mountable(const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags) +File::eject_mountable(const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { g_file_eject_mountable_with_operation(gobj(), static_cast(flags), Glib::unwrap(mount_operation), nullptr, nullptr, nullptr); @@ -997,7 +997,7 @@ File::eject_mountable(const Glib::RefPtr& mount_operation, Mount void File::eject_mountable( - const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags) + const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1009,7 +1009,7 @@ File::eject_mountable( } void -File::eject_mountable(const SlotAsyncReady& slot, Mount::UnmountFlags flags) +File::eject_mountable(const SlotAsyncReady& slot, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1021,7 +1021,7 @@ File::eject_mountable(const SlotAsyncReady& slot, Mount::UnmountFlags flags) } void -File::eject_mountable(Mount::UnmountFlags flags) +File::eject_mountable(MountUnmountFlags flags) { g_file_eject_mountable_with_operation( gobj(), static_cast(flags), nullptr, nullptr, nullptr, nullptr); @@ -1089,7 +1089,7 @@ File::load_partial_contents_async( void File::replace_contents(const char* contents, gsize length, const std::string& etag, std::string& new_etag, const Glib::RefPtr& cancellable, bool make_backup, - CreateFlags flags) + FileCreateFlags flags) { GError* gerror = nullptr; gchar* c_etag_new = nullptr; @@ -1107,7 +1107,7 @@ File::replace_contents(const char* contents, gsize length, const std::string& et void File::replace_contents(const char* contents, gsize length, const std::string& etag, - std::string& new_etag, bool make_backup, CreateFlags flags) + std::string& new_etag, bool make_backup, FileCreateFlags flags) { GError* gerror = nullptr; gchar* c_etag_new = nullptr; @@ -1124,7 +1124,7 @@ File::replace_contents(const char* contents, gsize length, const std::string& et void File::replace_contents(const std::string& contents, const std::string& etag, std::string& new_etag, - const Glib::RefPtr& cancellable, bool make_backup, CreateFlags flags) + const Glib::RefPtr& cancellable, bool make_backup, FileCreateFlags flags) { GError* gerror = nullptr; gchar* c_etag_new = nullptr; @@ -1142,7 +1142,7 @@ File::replace_contents(const std::string& contents, const std::string& etag, std void File::replace_contents(const std::string& contents, const std::string& etag, std::string& new_etag, - bool make_backup, CreateFlags flags) + bool make_backup, FileCreateFlags flags) { GError* gerror = nullptr; gchar* c_etag_new = nullptr; @@ -1160,7 +1160,7 @@ File::replace_contents(const std::string& contents, const std::string& etag, std void File::replace_contents_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const char* contents, gsize length, - const std::string& etag, bool make_backup, CreateFlags flags) + const std::string& etag, bool make_backup, FileCreateFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1174,7 +1174,7 @@ File::replace_contents_async(const SlotAsyncReady& slot, void File::replace_contents_async(const SlotAsyncReady& slot, const char* contents, gsize length, - const std::string& etag, bool make_backup, CreateFlags flags) + const std::string& etag, bool make_backup, FileCreateFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1188,7 +1188,7 @@ File::replace_contents_async(const SlotAsyncReady& slot, const char* contents, g void File::replace_contents_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& contents, - const std::string& etag, bool make_backup, CreateFlags flags) + const std::string& etag, bool make_backup, FileCreateFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1202,7 +1202,7 @@ File::replace_contents_async(const SlotAsyncReady& slot, void File::replace_contents_async(const SlotAsyncReady& slot, const std::string& contents, - const std::string& etag, bool make_backup, CreateFlags flags) + const std::string& etag, bool make_backup, FileCreateFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1241,7 +1241,7 @@ File::replace_contents_finish(const Glib::RefPtr& result) void File::replace_contents_bytes_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& contents, - const std::string& etag, bool make_backup, CreateFlags flags) + const std::string& etag, bool make_backup, FileCreateFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1256,7 +1256,7 @@ File::replace_contents_bytes_async(const SlotAsyncReady& slot, void File::replace_contents_bytes_async(const SlotAsyncReady& slot, const Glib::RefPtr& contents, const std::string& etag, bool make_backup, - CreateFlags flags) + FileCreateFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1270,7 +1270,7 @@ File::replace_contents_bytes_async(const SlotAsyncReady& slot, Glib::RefPtr File::replace(const Glib::RefPtr& cancellable, const std::string& etag, - bool make_backup, CreateFlags flags) + bool make_backup, FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = Glib::wrap(g_file_replace(gobj(), Glib::c_str_or_nullptr(etag), @@ -1283,7 +1283,7 @@ File::replace(const Glib::RefPtr& cancellable, const std::string& e } Glib::RefPtr -File::replace(const std::string& etag, bool make_backup, CreateFlags flags) +File::replace(const std::string& etag, bool make_backup, FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = Glib::wrap(g_file_replace(gobj(), Glib::c_str_or_nullptr(etag), @@ -1296,7 +1296,7 @@ File::replace(const std::string& etag, bool make_backup, CreateFlags flags) Glib::RefPtr File::replace_readwrite(const Glib::RefPtr& cancellable, const std::string& etag, - bool make_backup, CreateFlags flags) + bool make_backup, FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = Glib::wrap(g_file_replace_readwrite(gobj(), Glib::c_str_or_nullptr(etag), @@ -1309,7 +1309,7 @@ File::replace_readwrite(const Glib::RefPtr& cancellable, const std: } Glib::RefPtr -File::replace_readwrite(const std::string& etag, bool make_backup, CreateFlags flags) +File::replace_readwrite(const std::string& etag, bool make_backup, FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = Glib::wrap(g_file_replace_readwrite(gobj(), Glib::c_str_or_nullptr(etag), @@ -1395,7 +1395,7 @@ File::monitor(FileMonitorFlags flags) void File::measure_disk_usage(const Glib::RefPtr& cancellable, const SlotFileMeasureProgress& slot_progress, guint64& disk_usage, guint64& num_dirs, - guint64& num_files, MeasureFlags flags) + guint64& num_files, FileMeasureFlags flags) { GError* gerror = nullptr; g_file_measure_disk_usage(gobj(), ((GFileMeasureFlags)(flags)), @@ -1410,7 +1410,7 @@ File::measure_disk_usage(const Glib::RefPtr& cancellable, void File::measure_disk_usage_async(const SlotAsyncReady& slot_ready, const Glib::RefPtr& cancellable, const SlotFileMeasureProgress& slot_progress, - MeasureFlags flags, int io_priority) + FileMeasureFlags flags, int io_priority) { // Create a new pair which will hold copies of passed slots. // This will be deleted in the SignalProxy_file_measure_async_callback() callback @@ -1430,7 +1430,7 @@ File::measure_disk_usage_async(const SlotAsyncReady& slot_ready, void File::start_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - const Glib::RefPtr& start_operation, Drive::StartFlags flags) + const Glib::RefPtr& start_operation, DriveStartFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1443,7 +1443,7 @@ File::start_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& start_operation, Drive::StartFlags flags) + const Glib::RefPtr& start_operation, DriveStartFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1456,7 +1456,7 @@ File::start_mountable(const SlotAsyncReady& slot, void File::stop_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - const Glib::RefPtr& start_operation, Mount::UnmountFlags flags) + const Glib::RefPtr& start_operation, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1469,7 +1469,7 @@ File::stop_mountable(const SlotAsyncReady& slot, const Glib::RefPtr void File::stop_mountable(const SlotAsyncReady& slot, - const Glib::RefPtr& start_operation, Mount::UnmountFlags flags) + const Glib::RefPtr& start_operation, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -1555,7 +1555,7 @@ File::set_attributes_from_info(const Glib::RefPtr& info, FileQueryInfo bool File::copy_attributes(const Glib::RefPtr& destination, - const Glib::RefPtr& cancellable, CopyFlags flags) + const Glib::RefPtr& cancellable, FileCopyFlags flags) { GError* gerror = nullptr; bool res; @@ -1570,7 +1570,7 @@ File::copy_attributes(const Glib::RefPtr& destination, } bool -File::copy_attributes(const Glib::RefPtr& destination, CopyFlags flags) +File::copy_attributes(const Glib::RefPtr& destination, FileCopyFlags flags) { GError* gerror = nullptr; bool res; @@ -1585,7 +1585,7 @@ File::copy_attributes(const Glib::RefPtr& destination, CopyFlags flags) } Glib::RefPtr -File::create_file(const Glib::RefPtr& cancellable, CreateFlags flags) +File::create_file(const Glib::RefPtr& cancellable, FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = Glib::wrap(g_file_create(gobj(), ((GFileCreateFlags)(flags)), @@ -1597,7 +1597,7 @@ File::create_file(const Glib::RefPtr& cancellable, CreateFlags flag } Glib::RefPtr -File::create_file(CreateFlags flags) +File::create_file(FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = @@ -1609,7 +1609,7 @@ File::create_file(CreateFlags flags) } Glib::RefPtr -File::create_file_readwrite(const Glib::RefPtr& cancellable, CreateFlags flags) +File::create_file_readwrite(const Glib::RefPtr& cancellable, FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = Glib::wrap(g_file_create_readwrite(gobj(), ((GFileCreateFlags)(flags)), @@ -1621,7 +1621,7 @@ File::create_file_readwrite(const Glib::RefPtr& cancellable, Create } Glib::RefPtr -File::create_file_readwrite(CreateFlags flags) +File::create_file_readwrite(FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = @@ -1633,7 +1633,7 @@ File::create_file_readwrite(CreateFlags flags) } Glib::RefPtr -File::append_to(const Glib::RefPtr& cancellable, CreateFlags flags) +File::append_to(const Glib::RefPtr& cancellable, FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = Glib::wrap(g_file_append_to(gobj(), ((GFileCreateFlags)(flags)), @@ -1645,7 +1645,7 @@ File::append_to(const Glib::RefPtr& cancellable, CreateFlags flags) } Glib::RefPtr -File::append_to(CreateFlags flags) +File::append_to(FileCreateFlags flags) { GError* gerror = nullptr; auto retvalue = diff --git a/gio/src/file.hg b/gio/src/file.hg index 9e3a9f5..7fb60af 100644 --- a/gio/src/file.hg +++ b/gio/src/file.hg @@ -44,7 +44,10 @@ class Mount; class Volume; _WRAP_ENUM(FileQueryInfoFlags, GFileQueryInfoFlags, NO_GTYPE) +_WRAP_ENUM(FileCreateFlags, GFileCreateFlags, NO_GTYPE) +_WRAP_ENUM(FileCopyFlags, GFileCopyFlags, NO_GTYPE) _WRAP_ENUM(FileMonitorFlags, GFileMonitorFlags, NO_GTYPE) +_WRAP_ENUM(FileMeasureFlags, GFileMeasureFlags, NO_GTYPE) /** File and directory handling. @@ -76,9 +79,6 @@ class File : public Glib::Interface _CLASS_INTERFACE(File, GFile, G_FILE, GFileIface) public: - _WRAP_ENUM(CreateFlags, GFileCreateFlags, NO_GTYPE) - _WRAP_ENUM(CopyFlags, GFileCopyFlags, NO_GTYPE) - _WRAP_ENUM(MeasureFlags, GFileMeasureFlags, NO_GTYPE) _IGNORE(g_file_icon_new) //g_file_icon_new is not a GFile method. @@ -221,7 +221,7 @@ public: * the file doesn't already exist it is created. * * By default files created are generally readable by everyone, - * but if you pass CreateFlags::PRIVATE in @a flags the file + * but if you pass FILE_CREATE_PRIVATE in @a flags the file * will be made readable only to the current user, to the level that * is supported on the target filesystem. * @@ -234,17 +234,17 @@ public: * If the file is a directory a Gio::Error with IS_DIRECTORY will be * thrown. Other errors are possible too, and depend on what kind of * filesystem the file is on. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @param cancellable Optional Cancellable object. * @return A FileOutputStream. */ - Glib::RefPtr append_to(const Glib::RefPtr& cancellable, CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr append_to(const Glib::RefPtr& cancellable, FileCreateFlags flags = FILE_CREATE_NONE); /** Gets an output stream for appending data to the file. If * the file doesn't already exist it is created. * * By default files created are generally readable by everyone, - * but if you pass CreateFlags::PRIVATE in @a flags the file + * but if you pass FILE_CREATE_PRIVATE in @a flags the file * will be made readable only to the current user, to the level that * is supported on the target filesystem. * @@ -253,10 +253,10 @@ public: * If the file is a directory a Gio::Error with IS_DIRECTORY will be * thrown. Other errors are possible too, and depend on what kind of * filesystem the file is on. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @return A FileOutputStream. */ - Glib::RefPtr append_to(CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr append_to(FileCreateFlags flags = FILE_CREATE_NONE); _IGNORE(g_file_append_to) //We renamed this to create_file from (g_file_create() and g_file_create_readwrite), to avoid confusion with static create() methods, @@ -266,7 +266,7 @@ public: * The file must not already exist. * * By default files created are generally readable by everyone, - * but if you pass CreateFlags::PRIVATE in @a flags the file + * but if you pass FILE_CREATE_PRIVATE in @a flags the file * will be made readable only to the current user, to the level that * is supported on the target filesystem. * @@ -284,16 +284,16 @@ public: * filesystem the file is on. * * @param cancellable A Cancellable object which can be used to cancel the operation. - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @return A FileOutputStream for the newly created file. */ - Glib::RefPtr create_file(const Glib::RefPtr& cancellable, CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr create_file(const Glib::RefPtr& cancellable, FileCreateFlags flags = FILE_CREATE_NONE); /** Creates a new file and returns an output stream for writing to it. * The file must not already exist. * * By default files created are generally readable by everyone, - * but if you pass CreateFlags::PRIVATE in @a flags the file + * but if you pass FILE_CREATE_PRIVATE in @a flags the file * will be made readable only to the current user, to the level that * is supported on the target filesystem. * @@ -307,17 +307,17 @@ public: * Other errors are possible too, and depend on what kind of * filesystem the file is on. * - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @return A FileOutputStream for the newly created file. */ - Glib::RefPtr create_file(CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr create_file(FileCreateFlags flags = FILE_CREATE_NONE); _IGNORE(g_file_create) /** Creates a new file and returns a stream for reading and writing to it. * The file must not already exist. * * By default files created are generally readable by everyone, - * but if you pass CreateFlags::PRIVATE in @a flags the file + * but if you pass FILE_CREATE_PRIVATE in @a flags the file * will be made readable only to the current user, to the level that * is supported on the target filesystem. * @@ -339,16 +339,16 @@ public: * rather than just opening for reading or writing. * * @param cancellable A Cancellable object which can be used to cancel the operation. - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @return A FileOutputStream for the newly created file. */ - Glib::RefPtr create_file_readwrite(const Glib::RefPtr& cancellable, CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr create_file_readwrite(const Glib::RefPtr& cancellable, FileCreateFlags flags = FILE_CREATE_NONE); /** Creates a new file and returns a stream for reading and writing to it. * The file must not already exist. * * By default files created are generally readable by everyone, - * but if you pass CreateFlags::PRIVATE in @a flags the file + * but if you pass FILE_CREATE_PRIVATE in @a flags the file * will be made readable only to the current user, to the level that * is supported on the target filesystem. * @@ -366,10 +366,10 @@ public: * supported, so make sure you really need to do read and write streaming, * rather than just opening for reading or writing. * - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @return A FileOutputStream for the newly created file. */ - Glib::RefPtr create_file_readwrite(CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr create_file_readwrite(FileCreateFlags flags = FILE_CREATE_NONE); _IGNORE(g_file_create_readwrite) @@ -379,7 +379,7 @@ public: * not affect an already existing copy of the file. For instance, for local files it may write to a * temporary file and then atomically rename over the destination when the stream is closed. * - * By default files created are generally readable by everyone, but if you pass CreateFlags::PRIVATE in + * By default files created are generally readable by everyone, but if you pass FILE_CREATE_PRIVATE in * @a flags the file will be made readable only to the current user, to the level that is supported on the * target filesystem. * @@ -405,10 +405,10 @@ public: * @param cancellable A Cancellable object which can be used to cancel the operation. * @param etag An optional entity tag for the current Glib::File. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @return A FileOutputStream. */ - Glib::RefPtr replace(const Glib::RefPtr& cancellable, const std::string& etag = std::string(), bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr replace(const Glib::RefPtr& cancellable, const std::string& etag = std::string(), bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); /** Returns an output stream for overwriting the file, possibly creating a backup copy of the file first. @@ -416,7 +416,7 @@ public: * not affect an already existing copy of the file. For instance, for local files it may write to a * temporary file and then atomically rename over the destination when the stream is closed. * - * By default files created are generally readable by everyone, but if you pass CreateFlags::PRIVATE in + * By default files created are generally readable by everyone, but if you pass FILE_CREATE_PRIVATE in * @a flags the file will be made readable only to the current user, to the level that is supported on the * target filesystem. * @@ -438,10 +438,10 @@ public: * * @param etag An optional entity tag for the current Glib::File. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @return A FileOutputStream. */ - Glib::RefPtr replace(const std::string& etag = std::string(), bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr replace(const std::string& etag = std::string(), bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); _IGNORE(g_file_replace) @@ -452,20 +452,20 @@ public: * When the operation is finished, @a slot will be called. You can then call append_to_finish() to get the result of the operation. * @param slot A callback slot which will be called when the request is satisfied. * @param cancellable A Cancellable object which can be used to cancel the operation. - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @param io_priority The I/O priority of the request. */ - void append_to_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void append_to_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Asynchronously opens the file for appending. * For more details, see append_to() which is the synchronous version of this call. * * When the operation is finished, @a slot will be called. You can then call append_to_finish() to get the result of the operation. * @param slot A callback slot which will be called when the request is satisfied. - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @param io_priority The I/O priority of the request. */ - void append_to_async(const SlotAsyncReady& slot, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void append_to_async(const SlotAsyncReady& slot, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_append_to_async) _WRAP_METHOD(Glib::RefPtr append_to_finish(const Glib::RefPtr& res), @@ -482,10 +482,10 @@ public: * * @param slot A callback slot which will be called when the request is satisfied. * @param cancellable A Cancellable object which can be used to cancel the operation. - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @param io_priority The I/O priority of the request. */ - void create_file_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void create_file_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Asynchronously creates a new file and returns an output stream for writing to it. The file must not already exist. * For more details, see create_file() which is the synchronous version of this call. @@ -493,10 +493,10 @@ public: * When the operation is finished, @a slot will be called. You can then call create_file_finish() to get the result of the operation. * * @param slot A callback slot which will be called when the request is satisfied. - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @param io_priority The I/O priority of the request. */ - void create_file_async(const SlotAsyncReady& slot, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void create_file_async(const SlotAsyncReady& slot, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_create_async) _WRAP_METHOD(Glib::RefPtr create_file_finish(const Glib::RefPtr& res), @@ -513,12 +513,12 @@ public: * * @param slot A callback slot which will be called when the request is satisfied. * @param cancellable A Cancellable object which can be used to cancel the operation. - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @param io_priority The I/O priority of the request. * * @newin{2,24} */ - void create_file_readwrite_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void create_file_readwrite_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Asynchronously creates a new file and returns a stream for reading and * writing to it. The file must not already exist. @@ -528,12 +528,12 @@ public: * When the operation is finished, @a slot will be called. You can then call create_file_readwrite_finish() to get the result of the operation. * * @param slot A callback slot which will be called when the request is satisfied. - * @param flags a set of CreateFlags. + * @param flags a set of FileCreateFlags. * @param io_priority The I/O priority of the request. * * @newin{2,24} */ - void create_file_readwrite_async(const SlotAsyncReady& slot, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void create_file_readwrite_async(const SlotAsyncReady& slot, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_create_readwrite_async) _WRAP_METHOD(Glib::RefPtr create_file_readwrite_finish(const Glib::RefPtr& res), @@ -548,10 +548,10 @@ public: * @param cancellable A Cancellable object which can be used to cancel the operation. * @param etag An entity tag for the current Gio::File. * @param make_backup true if a backup of the existing file should be made. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @param io_priority The I/O priority of the request. */ - void replace_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& etag = std::string(), bool make_backup = false, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void replace_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& etag = std::string(), bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Asyncronously overwrites the file, replacing the contents, possibly creating a backup copy of the file first. * For more details, see replace() which is the synchronous version of this call. @@ -560,10 +560,10 @@ public: * @param slot A callback slot which will be called when the request is satisfied. * @param etag An entity tag for the current Gio::File. * @param make_backup true if a backup of the existing file should be made. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @param io_priority The I/O priority of the request. */ - void replace_async(const SlotAsyncReady& slot, const std::string& etag = std::string(), bool make_backup = false, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void replace_async(const SlotAsyncReady& slot, const std::string& etag = std::string(), bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_replace_async) _WRAP_METHOD(Glib::RefPtr replace_finish(const Glib::RefPtr& res), @@ -633,12 +633,12 @@ public: * @param cancellable A Cancellable object which can be used to cancel the operation. * @param etag An optional entity tag for the current Glib::File. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @return A FileOutputStream. * * @newin{2,24} */ - Glib::RefPtr replace_readwrite(const Glib::RefPtr& cancellable, const std::string& etag = std::string(), bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr replace_readwrite(const Glib::RefPtr& cancellable, const std::string& etag = std::string(), bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); /** Returns an output stream for overwriting the file in readwrite mode, possibly creating a backup copy of the file first. @@ -653,12 +653,12 @@ public: * * @param etag An optional entity tag for the current Glib::File. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @return A FileOutputStream. * * @newin{2,24} */ - Glib::RefPtr replace_readwrite(const std::string& etag = std::string(), bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + Glib::RefPtr replace_readwrite(const std::string& etag = std::string(), bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); _IGNORE(g_file_replace_readwrite) @@ -673,12 +673,12 @@ public: * @param cancellable A Cancellable object which can be used to cancel the operation. * @param etag An entity tag for the current Gio::File. * @param make_backup true if a backup of the existing file should be made. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @param io_priority The I/O priority of the request. * * @newin{2,24} */ - void replace_readwrite_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& etag = std::string(), bool make_backup = false, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void replace_readwrite_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& etag = std::string(), bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Asyncronously overwrites the file in read-write mode, replacing the contents, possibly creating a backup copy of the file first. * @@ -688,12 +688,12 @@ public: * @param slot A callback slot which will be called when the request is satisfied. * @param etag An entity tag for the current Gio::File. * @param make_backup true if a backup of the existing file should be made. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @param io_priority The I/O priority of the request. * * @newin{2,24} */ - void replace_readwrite_async(const SlotAsyncReady& slot, const std::string& etag = std::string(), bool make_backup = false, CreateFlags flags = CreateFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void replace_readwrite_async(const SlotAsyncReady& slot, const std::string& etag = std::string(), bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_replace_readwrite_async) _WRAP_METHOD(Glib::RefPtr replace_readwrite_finish(const Glib::RefPtr& res), @@ -718,7 +718,7 @@ public: * * For symlinks, normally the information about the target of the * symlink is returned, rather than information about the symlink itself. - * However if you pass FileQueryInfoFlags::NOFOLLOW_SYMLINKS in @a flags the + * However if you pass FILE_QUERY_INFO_NOFOLLOW_SYMLINKS in @a flags the * information about the symlink itself will be returned. Also, for symlinks * that point to non-existing files the information about the symlink itself * will be returned. @@ -731,7 +731,7 @@ public: * @param flags: A set of FileQueryInfoFlags. * @result a FileInfo for the file, or an empty RefPtr on error. */ - Glib::RefPtr query_info(const Glib::RefPtr& cancellable, const std::string& attributes = "*", FileQueryInfoFlags flags = FileQueryInfoFlags::NONE) const; + Glib::RefPtr query_info(const Glib::RefPtr& cancellable, const std::string& attributes = "*", FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE) const; /** Gets the requested information about the file. The result * is a FileInfo object that contains key-value attributes (such as the type or size @@ -747,7 +747,7 @@ public: * * For symlinks, normally the information about the target of the * symlink is returned, rather than information about the symlink itself. - * However if you pass FileQueryInfoFlags::NOFOLLOW_SYMLINKS in @a flags the + * However if you pass FILE_QUERY_INFO_NOFOLLOW_SYMLINKS in @a flags the * information about the symlink itself will be returned. Also, for symlinks * that point to non-existing files the information about the symlink itself * will be returned. @@ -759,7 +759,7 @@ public: * @param flags: A set of FileQueryInfoFlags. * @result a FileInfo for the file, or an empty RefPtr on error. */ - Glib::RefPtr query_info(const std::string& attributes = "*", FileQueryInfoFlags flags = FileQueryInfoFlags::NONE) const; + Glib::RefPtr query_info(const std::string& attributes = "*", FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE) const; _IGNORE(g_file_query_info) @@ -779,7 +779,7 @@ public: * * @newin{2,18} */ - FileType query_file_type(FileQueryInfoFlags flags = FileQueryInfoFlags::NONE) const; + FileType query_file_type(FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE) const; /** Asynchronously gets the requested information about specified file. The result is a FileInfo object that contains key-value attributes (such as type or size for the file). * @@ -792,7 +792,7 @@ public: * @param flags A set of FileQueryInfoFlags. * @param io_priority The I/O priority of the request. */ - void query_info_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& attributes = "*", FileQueryInfoFlags flags = FileQueryInfoFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT) const; + void query_info_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& attributes = "*", FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE, int io_priority = Glib::PRIORITY_DEFAULT) const; /** Asynchronously gets the requested information about specified file. The result is a FileInfo object that contains key-value attributes (such as type or size for the file). * @@ -804,7 +804,7 @@ public: * @param flags A set of FileQueryInfoFlags. * @param io_priority The I/O priority of the request. */ - void query_info_async(const SlotAsyncReady& slot, const std::string& attributes = "*", FileQueryInfoFlags flags = FileQueryInfoFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT) const; + void query_info_async(const SlotAsyncReady& slot, const std::string& attributes = "*", FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE, int io_priority = Glib::PRIORITY_DEFAULT) const; _IGNORE(g_file_query_info_async) @@ -958,7 +958,7 @@ public: * @param flags A set of FileQueryInfoFlags. * @return A FileEnumerator if successful. */ - Glib::RefPtr enumerate_children(const Glib::RefPtr& cancellable, const std::string& attributes = "*", FileQueryInfoFlags flags = FileQueryInfoFlags::NONE); + Glib::RefPtr enumerate_children(const Glib::RefPtr& cancellable, const std::string& attributes = "*", FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE); _IGNORE(g_file_enumerate_children) /** Gets the requested information about the files in a directory. The result @@ -981,7 +981,7 @@ public: * @param flags A set of FileQueryInfoFlags. * @return A FileEnumerator if successful. */ - Glib::RefPtr enumerate_children(const std::string& attributes = "*", FileQueryInfoFlags flags = FileQueryInfoFlags::NONE); + Glib::RefPtr enumerate_children(const std::string& attributes = "*", FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE); _IGNORE(g_file_enumerate_children) @@ -997,7 +997,7 @@ public: * @param flags A set of FileQueryInfoFlags. * @param io_priority The I/O priority of the request. */ - void enumerate_children_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& attributes = "*", FileQueryInfoFlags flags = FileQueryInfoFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void enumerate_children_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& attributes = "*", FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Asynchronously gets the requested information about the files in a directory. The result is a GFileEnumerator object that will give out GFileInfo objects for all the files in the directory. * @@ -1009,7 +1009,7 @@ public: * @param flags A set of FileQueryInfoFlags. * @param io_priority The I/O priority of the request. */ - void enumerate_children_async(const SlotAsyncReady& slot, const std::string& attributes = "*", FileQueryInfoFlags flags = FileQueryInfoFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void enumerate_children_async(const SlotAsyncReady& slot, const std::string& attributes = "*", FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_enumerate_children_async) _WRAP_METHOD(Glib::RefPtr enumerate_children_finish(const Glib::RefPtr& res), @@ -1117,11 +1117,11 @@ public: /** A signal handler would be, for instance: * void on_file_progress(goffset current_num_bytes, goffset total_num_bytes); */ - using SlotFileProgress = sigc::slot; + using SlotFileProgress = sigc::slot; /** Copies the file source to the location specified by destination. Can not handle recursive copies of directories. - * If the flag CopyFlags::OVERWRITE is specified an already existing destination file is overwritten. - * If the flag CopyFlags::NOFOLLOW_SYMLINKS is specified then symlinks will be copied as symlinks, otherwise the target of the source symlink will be copied. + * If the flag FILE_COPY_OVERWRITE is specified an already existing destination file is overwritten. + * If the flag FILE_COPY_NOFOLLOW_SYMLINKS is specified then symlinks will be copied as symlinks, otherwise the target of the source symlink will be copied. * * The operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, a Gio::Error with CANCELLED will be thrown. * @@ -1129,55 +1129,55 @@ public: * * If the source file does not exist then a Gio::Error with NOT_FOUND will be thrown, independent on the status of the destination. * - * If CopyFlags::OVERWRITE is not specified and the target exists, then a Gio::Error with EXISTS will be thrown. + * If FILE_COPY_OVERWRITE is not specified and the target exists, then a Gio::Error with EXISTS will be thrown. * * If trying to overwrite a file over a directory a Gio::Error with IS_DIRECTORY will be thrown. * If trying to overwrite a directory with a directory a Gio::Error with WOULD_MERGE will be thrown. * - * If the source is a directory and the target does not exist, or CopyFlags::OVERWRITE is specified and the target is a file, + * If the source is a directory and the target does not exist, or FILE_COPY_OVERWRITE is specified and the target is a file, * then a Gio::Error with WOULD_RECURSE will be thrown. * * If you are interested in copying the Gio::File object itself (not the on-disk file), see File::dup(). */ - bool copy(const Glib::RefPtr& destination, const SlotFileProgress& slot, const Glib::RefPtr& cancellable, CopyFlags flags = CopyFlags::NONE); + bool copy(const Glib::RefPtr& destination, const SlotFileProgress& slot, const Glib::RefPtr& cancellable, FileCopyFlags flags = FILE_COPY_NONE); /** Copies the file source to the location specified by destination. Can not handle recursive copies of directories. - * If the flag CopyFlags::OVERWRITE is specified an already existing destination file is overwritten. - * If the flag CopyFlags::NOFOLLOW_SYMLINKS is specified then symlinks will be copied as symlinks, otherwise the target of the source symlink will be copied. + * If the flag FILE_COPY_OVERWRITE is specified an already existing destination file is overwritten. + * If the flag FILE_COPY_NOFOLLOW_SYMLINKS is specified then symlinks will be copied as symlinks, otherwise the target of the source symlink will be copied. * * The operation can be monitored via the @a slot callback. * * If the source file does not exist then a Gio::Error with NOT_FOUND will be thrown, independent on the status of the destination. * - * If CopyFlags::OVERWRITE is not specified and the target exists, then a Gio::Error with EXISTS will be thrown. + * If FILE_COPY_OVERWRITE is not specified and the target exists, then a Gio::Error with EXISTS will be thrown. * * If trying to overwrite a file over a directory a Gio::Error with IS_DIRECTORY will be thrown. * If trying to overwrite a directory with a directory a Gio::Error with WOULD_MERGE will be thrown. * - * If the source is a directory and the target does not exist, or CopyFlags::OVERWRITE is specified and the target is a file, + * If the source is a directory and the target does not exist, or FILE_COPY_OVERWRITE is specified and the target is a file, * then a Gio::Error with WOULD_RECURSE will be thrown. * * If you are interested in copying the Gio::File object itself (not the on-disk file), see File::dup(). */ - bool copy(const Glib::RefPtr& destination, const SlotFileProgress& slot, CopyFlags flags = CopyFlags::NONE); + bool copy(const Glib::RefPtr& destination, const SlotFileProgress& slot, FileCopyFlags flags = FILE_COPY_NONE); /** Copies the file source to the location specified by destination. Can not handle recursive copies of directories. - * If the flag CopyFlags::OVERWRITE is specified an already existing destination file is overwritten. - * If the flag CopyFlags::NOFOLLOW_SYMLINKS is specified then symlinks will be copied as symlinks, otherwise the target of the source symlink will be copied. + * If the flag FILE_COPY_OVERWRITE is specified an already existing destination file is overwritten. + * If the flag FILE_COPY_NOFOLLOW_SYMLINKS is specified then symlinks will be copied as symlinks, otherwise the target of the source symlink will be copied. * * If the source file does not exist then a Gio::Error with NOT_FOUND will be thrown, independent on the status of the destination. * - * If CopyFlags::OVERWRITE is not specified and the target exists, then a Gio::Error with EXISTS will be thrown. + * If FILE_COPY_OVERWRITE is not specified and the target exists, then a Gio::Error with EXISTS will be thrown. * * If trying to overwrite a file over a directory a Gio::Error with IS_DIRECTORY will be thrown. * If trying to overwrite a directory with a directory a Gio::Error with WOULD_MERGE will be thrown. * - * If the source is a directory and the target does not exist, or CopyFlags::OVERWRITE is specified and the target is a file, + * If the source is a directory and the target does not exist, or FILE_COPY_OVERWRITE is specified and the target is a file, * then a Gio::Error with WOULD_RECURSE will be thrown. * * If you are interested in copying the Gio::File object itself (not the on-disk file), see File::dup(). */ - bool copy(const Glib::RefPtr& destination, CopyFlags flags = CopyFlags::NONE); + bool copy(const Glib::RefPtr& destination, FileCopyFlags flags = FILE_COPY_NONE); _IGNORE(g_file_copy) /** Copies the file to the location specified by @a destination asynchronously. @@ -1194,10 +1194,10 @@ public: * @param slot_progress The callback slot to be called with progress information * @param slot_ready A SlotAsyncReady to call when the request is satisfied * @param cancellable A Cancellable object which can be used to cancel the operation - * @param flags Set of CopyFlags + * @param flags Set of FileCopyFlags * @param io_priority The I/O priority of the request */ - void copy_async(const Glib::RefPtr& destination, const SlotFileProgress& slot_progress, const SlotAsyncReady& slot_ready, const Glib::RefPtr& cancellable, CopyFlags flags = CopyFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void copy_async(const Glib::RefPtr& destination, const SlotFileProgress& slot_progress, const SlotAsyncReady& slot_ready, const Glib::RefPtr& cancellable, FileCopyFlags flags = FILE_COPY_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Copies the file to the location specified by @a destination asynchronously. * For details of the behaviour, see copy(). @@ -1208,10 +1208,10 @@ public: * @param destination Destination File * @param slot_ready A SlotAsyncReady to call when the request is satisfied * @param cancellable A Cancellable object which can be used to cancel the operation - * @param flags Set of CopyFlags + * @param flags Set of FileCopyFlags * @param io_priority The I/O priority of the request */ - void copy_async(const Glib::RefPtr& destination, const SlotAsyncReady& slot_ready, const Glib::RefPtr& cancellable, CopyFlags flags = CopyFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void copy_async(const Glib::RefPtr& destination, const SlotAsyncReady& slot_ready, const Glib::RefPtr& cancellable, FileCopyFlags flags = FILE_COPY_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Copies the file to the location specified by @a destination asynchronously. * For details of the behaviour, see copy(). @@ -1226,10 +1226,10 @@ public: * @param destination Destination File * @param slot_progress The callback slot to be called with progress information * @param slot_ready A SlotAsyncReady to call when the request is satisfied - * @param flags Set of CopyFlags + * @param flags Set of FileCopyFlags * @param io_priority The I/O priority of the request */ - void copy_async(const Glib::RefPtr& destination, const SlotFileProgress& slot_progress, const SlotAsyncReady& slot_ready, CopyFlags flags = CopyFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void copy_async(const Glib::RefPtr& destination, const SlotFileProgress& slot_progress, const SlotAsyncReady& slot_ready, FileCopyFlags flags = FILE_COPY_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Copies the file to the location specified by @a destination asynchronously. * For details of the behaviour, see copy(). @@ -1239,10 +1239,10 @@ public: * * @param destination Destination File * @param slot_ready A SlotAsyncReady to call when the request is satisfied - * @param flags Set of CopyFlags + * @param flags Set of FileCopyFlags * @param io_priority The I/O priority of the request */ - void copy_async(const Glib::RefPtr& destination, const SlotAsyncReady& slot_ready, CopyFlags flags = CopyFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void copy_async(const Glib::RefPtr& destination, const SlotAsyncReady& slot_ready, FileCopyFlags flags = FILE_COPY_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_copy_async) _WRAP_METHOD(bool copy_finish(const Glib::RefPtr& res), @@ -1253,27 +1253,27 @@ public: * used, otherwise a copy and delete fallback is used. The native implementation may support moving directories (for instance on moves inside * the same filesystem), but the fallback code does not. * - * If the flag CopyFlags::OVERWRITE is specified an already existing destination file is overwritten. + * If the flag FILE_COPY_OVERWRITE is specified an already existing destination file is overwritten. * - * If the flag CopyFlags::NOFOLLOW_SYMLINKS is specified then symlinks will be copied as symlinks, otherwise the target of the source symlink will be copied. + * If the flag FILE_COPY_NOFOLLOW_SYMLINKS is specified then symlinks will be copied as symlinks, otherwise the target of the source symlink will be copied. * * The operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, a Gio::Error with CANCELLED will be thrown. * * The operation can be monitored via the @a slot callback. * If the source file does not exist then a Gio::Error with NOT_FOUND will be thrown, independent on the status of the destination. * - * If G_CopyFlags::OVERWRITE is not specified and the target exists, then a Gio::Error with EXISTS will be thrown. + * If G_FILE_COPY_OVERWRITE is not specified and the target exists, then a Gio::Error with EXISTS will be thrown. * * If trying to overwrite a file over a directory a Gio::Error with IS_DIRECTORY will be thrown. * If trying to overwrite a directory with a directory a Gio::Error with WOULD_MERGE will be thrown. * - * If the source is a directory and the target does not exist, or CopyFlags::OVERWRITE is specified and the target is a file, then a Gio::Error with WOULD_RECURSE may be thrown (if the native move operation isn't available). + * If the source is a directory and the target does not exist, or FILE_COPY_OVERWRITE is specified and the target is a file, then a Gio::Error with WOULD_RECURSE may be thrown (if the native move operation isn't available). */ - bool move(const Glib::RefPtr& destination, const SlotFileProgress& slot, const Glib::RefPtr& cancellable, CopyFlags flags = CopyFlags::NONE); + bool move(const Glib::RefPtr& destination, const SlotFileProgress& slot, const Glib::RefPtr& cancellable, FileCopyFlags flags = FILE_COPY_NONE); - bool move(const Glib::RefPtr& destination, const SlotFileProgress& slot, CopyFlags flags = CopyFlags::NONE); + bool move(const Glib::RefPtr& destination, const SlotFileProgress& slot, FileCopyFlags flags = FILE_COPY_NONE); - bool move(const Glib::RefPtr& destination, CopyFlags flags = CopyFlags::NONE); + bool move(const Glib::RefPtr& destination, FileCopyFlags flags = FILE_COPY_NONE); _IGNORE(g_file_move) _WRAP_METHOD(bool make_directory(const Glib::RefPtr& cancellable{?}), @@ -1347,7 +1347,7 @@ public: * @param flags A set of FileQueryInfoFlags. * @return true if there was any error, false otherwise. */ - bool set_attributes_from_info(const Glib::RefPtr& info, const Glib::RefPtr& cancellable, FileQueryInfoFlags flags = FileQueryInfoFlags::NONE); + bool set_attributes_from_info(const Glib::RefPtr& info, const Glib::RefPtr& cancellable, FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE); /** Tries to set all attributes in the FileInfo on the target values, * not stopping on the first error. @@ -1365,7 +1365,7 @@ public: * @param flags A set of FileQueryInfoFlags. * @return true if there was any error, false otherwise. */ - bool set_attributes_from_info(const Glib::RefPtr& info, FileQueryInfoFlags flags = FileQueryInfoFlags::NONE); + bool set_attributes_from_info(const Glib::RefPtr& info, FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE); _IGNORE(g_file_set_attributes_from_info) @@ -1380,7 +1380,7 @@ public: * @param flags A set of FileQueryInfoFlags. * @param io_priority The I/O priority of the request. */ - void set_attributes_async(const Glib::RefPtr& info, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, FileQueryInfoFlags flags = FileQueryInfoFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void set_attributes_async(const Glib::RefPtr& info, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Asynchronously sets the attributes of file with info. * @@ -1392,13 +1392,13 @@ public: * @param flags A set of FileQueryInfoFlags. * @param io_priority The I/O priority of the request. */ - void set_attributes_async(const Glib::RefPtr& info, const SlotAsyncReady& slot, FileQueryInfoFlags flags = FileQueryInfoFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void set_attributes_async(const Glib::RefPtr& info, const SlotAsyncReady& slot, FileQueryInfoFlags flags = FILE_QUERY_INFO_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_set_attributes_async) _IGNORE(g_file_set_attributes_finish) // takes GFileInfo** bool set_attributes_finish(const Glib::RefPtr& result, const Glib::RefPtr& info); - _WRAP_METHOD(bool set_attribute_string(const std::string& attribute, const Glib::ustring& value, FileQueryInfoFlags flags, const Glib::RefPtr& cancellable{?}), + _WRAP_METHOD(bool set_attribute_string(const std::string& attribute, const std::string& value, FileQueryInfoFlags flags, const Glib::RefPtr& cancellable{?}), g_file_set_attribute_string, errthrow) @@ -1435,7 +1435,7 @@ public: * @param cancellable A Cancellable object. * @param flags Flags affecting the operation. */ - void mount_enclosing_volume(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount_enclosing_volume(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Starts a @a mount_operation, mounting the volume that contains the file. * @@ -1446,7 +1446,7 @@ public: * @param slot A callback slot which will be called when the request is satisfied. * @param flags Flags affecting the operation. */ - void mount_enclosing_volume(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount_enclosing_volume(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Starts a @a mount_operation, mounting the volume that contains the file. * @@ -1456,14 +1456,14 @@ public: * @param slot A callback slot which will be called when the request is satisfied. * @param flags Flags affecting the operation. */ - void mount_enclosing_volume(const SlotAsyncReady& slot, Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount_enclosing_volume(const SlotAsyncReady& slot, MountMountFlags flags = MOUNT_MOUNT_NONE); _IGNORE(g_file_mount_enclosing_volume) /** Starts a @a mount_operation, mounting the volume that contains the file. * * @param flags Flags affecting the operation. */ - void mount_enclosing_volume(Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount_enclosing_volume(MountMountFlags flags = MOUNT_MOUNT_NONE); _IGNORE(g_file_mount_enclosing_volume) _WRAP_METHOD(bool mount_enclosing_volume_finish(const Glib::RefPtr& result), @@ -1483,7 +1483,7 @@ public: * @param slot A callback slot which will be called when the request is satisfied. * @param flags Flags affecting the operation. */ - void mount_mountable(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount_mountable(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Mounts a file of type FILE_TYPE_MOUNTABLE. Using @a mount_operation, you can request callbacks when, for instance, * passwords are needed during authentication. @@ -1494,7 +1494,7 @@ public: * @param slot A callback slot which will be called when the request is satisfied. * @param flags Flags affecting the operation. */ - void mount_mountable(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount_mountable(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Mounts a file of type FILE_TYPE_MOUNTABLE without user interaction. * @@ -1503,13 +1503,13 @@ public: * @param slot A callback slot which will be called when the request is satisfied. * @param flags Flags affecting the operation. */ - void mount_mountable(const SlotAsyncReady& slot, Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount_mountable(const SlotAsyncReady& slot, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Mounts a file of type FILE_TYPE_MOUNTABLE without user interaction. * * @param flags Flags affecting the operation. */ - void mount_mountable(Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount_mountable(MountMountFlags flags = MOUNT_MOUNT_NONE); _IGNORE(g_file_mount_mountable) _WRAP_METHOD(Glib::RefPtr mount_mountable_finish(const Glib::RefPtr& result), @@ -1527,7 +1527,7 @@ public: * @param cancellable A Cancellable object which can be used to cancel the operation. * @param flags Flags affecting the operation. */ - void unmount_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void unmount_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Unmounts a file of type FILE_TYPE_MOUNTABLE. * @@ -1536,13 +1536,13 @@ public: * @param slot A callback slot which will be called when the request is satisfied. * @param flags Flags affecting the operation. */ - void unmount_mountable(const SlotAsyncReady& slot, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void unmount_mountable(const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Unmounts a file of type FILE_TYPE_MOUNTABLE. * * @param flags Flags affecting the operation. */ - void unmount_mountable(Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void unmount_mountable(MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Unmounts a file of type FILE_TYPE_MOUNTABLE. * @@ -1558,7 +1558,7 @@ public: * * @newin{2,24} */ - void unmount_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void unmount_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Unmounts a file of type FILE_TYPE_MOUNTABLE. * @@ -1570,7 +1570,7 @@ public: * * @newin{2,24} */ - void unmount_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void unmount_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Unmounts a file of type FILE_TYPE_MOUNTABLE. * @@ -1579,7 +1579,7 @@ public: * * @newin{2,24} */ - void unmount_mountable(const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void unmount_mountable(const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); _IGNORE(g_file_unmount_mountable, g_file_unmount_mountable_finish, g_file_unmount_mountable_with_operation) @@ -1598,7 +1598,7 @@ public: * @param cancellable A Cancellable object which can be used to cancel the operation. * @param flags Flags affecting the operation. */ - void eject_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Starts an asynchronous eject on a mountable. * @@ -1607,13 +1607,13 @@ public: * @param slot A callback slot which will be called when the request is satisfied. * @param flags Flags affecting the operation. */ - void eject_mountable(const SlotAsyncReady& slot, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject_mountable(const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Starts an asynchronous eject on a mountable. * * @param flags Flags affecting the operation. */ - void eject_mountable(Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject_mountable(MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Starts an asynchronous eject on a mountable. * @@ -1629,7 +1629,7 @@ public: * * @newin{2,24} */ - void eject_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Starts an asynchronous eject on a mountable. * @@ -1641,7 +1641,7 @@ public: * * @newin{2,24} */ - void eject_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Starts an asynchronous eject on a mountable. * @@ -1650,7 +1650,7 @@ public: * * @newin{2,24} */ - void eject_mountable(const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject_mountable(const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); _IGNORE(g_file_eject_mountable, g_file_eject_mountable_finish, g_file_eject_mountable_with_operation) @@ -1664,7 +1664,7 @@ public: * Normally only a subset of the file attributes are copied, * those that are copies in a normal file copy operation * (which for instance does not include e.g. mtime). However - * if CopyFlags::ALL_METADATA is specified in @a flags, then + * if FILE_COPY_ALL_METADATA is specified in @a flags, then * all the metadata that is possible to copy is copied. * * @param destination A File to copy attributes to. @@ -1672,21 +1672,21 @@ public: * @param flags A set of FileMonitorFlags. * @result true if the attributes were copied successfully, false otherwise. */ - bool copy_attributes(const Glib::RefPtr& destination, const Glib::RefPtr& cancellable, CopyFlags flags = CopyFlags::NONE); + bool copy_attributes(const Glib::RefPtr& destination, const Glib::RefPtr& cancellable, FileCopyFlags flags = FILE_COPY_NONE); /** Copies the file attributes from @a source to @a destination. * * Normally only a subset of the file attributes are copied, * those that are copies in a normal file copy operation * (which for instance does not include e.g. mtime). However - * if CopyFlags::ALL_METADATA is specified in @a flags, then + * if FILE_COPY_ALL_METADATA is specified in @a flags, then * all the metadata that is possible to copy is copied. * * @param destination A File to copy attributes to. * @param flags A set of FileMonitorFlags. * @result true if the attributes were copied successfully, false otherwise. */ - bool copy_attributes(const Glib::RefPtr& destination, CopyFlags flags = CopyFlags::NONE); + bool copy_attributes(const Glib::RefPtr& destination, FileCopyFlags flags = FILE_COPY_NONE); _IGNORE(g_file_copy_attributes) /** Obtains a directory monitor for the given file. @@ -1699,7 +1699,7 @@ public: * @param flags A set of FileMonitorFlags. * @return A FileMonitor for the file. */ - Glib::RefPtr monitor_directory(const Glib::RefPtr& cancellable, FileMonitorFlags flags = FileMonitorFlags::NONE); + Glib::RefPtr monitor_directory(const Glib::RefPtr& cancellable, FileMonitorFlags flags = FILE_MONITOR_NONE); /** Obtains a directory monitor for the given file. * This may fail if directory monitoring is not supported. @@ -1707,7 +1707,7 @@ public: * @param flags A set of FileMonitorFlags. * @return A FileMonitor for the file. */ - Glib::RefPtr monitor_directory(FileMonitorFlags flags = FileMonitorFlags::NONE); + Glib::RefPtr monitor_directory(FileMonitorFlags flags = FILE_MONITOR_NONE); _IGNORE(g_file_monitor_directory) /** Obtains a file monitor for the given file. If no file notification @@ -1720,7 +1720,7 @@ public: * @param flags A set of FileMonitorFlags. * @return A FileMonitor for the file. */ - Glib::RefPtr monitor_file(const Glib::RefPtr& cancellable, FileMonitorFlags flags = FileMonitorFlags::NONE); + Glib::RefPtr monitor_file(const Glib::RefPtr& cancellable, FileMonitorFlags flags = FILE_MONITOR_NONE); /** Obtains a file monitor for the given file. If no file notification * mechanism exists, then regular polling of the file is used. @@ -1731,7 +1731,7 @@ public: * @param flags A set of FileMonitorFlags. * @return A FileMonitor for the file. */ - Glib::RefPtr monitor_file(FileMonitorFlags flags = FileMonitorFlags::NONE); + Glib::RefPtr monitor_file(FileMonitorFlags flags = FILE_MONITOR_NONE); _IGNORE(g_file_monitor_file) @@ -1747,7 +1747,7 @@ public: * * @newin{2,18} */ - Glib::RefPtr monitor(const Glib::RefPtr& cancellable, FileMonitorFlags flags = FileMonitorFlags::NONE); + Glib::RefPtr monitor(const Glib::RefPtr& cancellable, FileMonitorFlags flags = FILE_MONITOR_NONE); /** Obtains a file monitor for the given file. If no file notification * mechanism exists, then regular polling of the file is used. @@ -1760,7 +1760,7 @@ public: * * @newin{2,18} */ - Glib::RefPtr monitor(FileMonitorFlags flags = FileMonitorFlags::NONE); + Glib::RefPtr monitor(FileMonitorFlags flags = FILE_MONITOR_NONE); _IGNORE(g_file_monitor) @@ -1802,7 +1802,7 @@ public: * * @newin{2,38} */ - using SlotFileMeasureProgress = sigc::slot; + using SlotFileMeasureProgress = sigc::slot; //We do not use the {callback} syntax with _WRAP_METHOD here, because it expects to use user_data rather than progress_data. //We ignore the gboolean result, because we throw an exception if it is false. @@ -1832,9 +1832,9 @@ public: * @param disk_usage The number of bytes of disk space used. * @param num_dirs The number of directories encountered. * @param num_files The number of non-directories encountered. - * @param flags Set of MeasureFlags. + * @param flags Set of FileMeasureFlags. */ - void measure_disk_usage(const Glib::RefPtr& cancellable, const SlotFileMeasureProgress& slot_progress, guint64& disk_usage, guint64& num_dirs, guint64& num_files, MeasureFlags flags = MeasureFlags::NONE); + void measure_disk_usage(const Glib::RefPtr& cancellable, const SlotFileMeasureProgress& slot_progress, guint64& disk_usage, guint64& num_dirs, guint64& num_files, FileMeasureFlags flags = FILE_MEASURE_NONE); _IGNORE(g_file_measure_disk_usage) /** Recursively measures the disk usage of the file. @@ -1848,10 +1848,10 @@ public: * @param slot_ready A SlotAsyncReady to call when the request is satisfied * @param cancellable A Cancellable object which can be used to cancel the operation * @param slot_progress The callback slot to be called with progress information - * @param flags Set of MeasureFlags + * @param flags Set of FileMeasureFlags * @param io_priority The I/O priority of the request */ - void measure_disk_usage_async(const SlotAsyncReady& slot_ready, const Glib::RefPtr& cancellable, const SlotFileMeasureProgress& slot_progress, MeasureFlags flags = MeasureFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void measure_disk_usage_async(const SlotAsyncReady& slot_ready, const Glib::RefPtr& cancellable, const SlotFileMeasureProgress& slot_progress, FileMeasureFlags flags = FILE_MEASURE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_measure_disk_usage_async) _WRAP_METHOD(bool measure_disk_usage_finish(const Glib::RefPtr& result, guint64& disk_usage, guint64& num_dirs, guint64& num_files), g_file_measure_disk_usage_finish, errthrow) @@ -1878,7 +1878,7 @@ public: * * @newin{2,24} */ - void start_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& start_operation, Drive::StartFlags flags = Drive::StartFlags::NONE); + void start_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& start_operation, DriveStartFlags flags = DRIVE_START_NONE); /** Starts a file of type Mountable. * Using @a start_operation, you can request callbacks when, for instance, @@ -1897,7 +1897,7 @@ public: * * @newin{2,24} */ - void start_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& start_operation, Drive::StartFlags flags = Drive::StartFlags::NONE); + void start_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& start_operation, DriveStartFlags flags = DRIVE_START_NONE); _IGNORE(g_file_start_mountable) _WRAP_METHOD(bool start_mountable_finish(const Glib::RefPtr& result), @@ -1922,7 +1922,7 @@ public: * * @newin{2,24} */ - void stop_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& start_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void stop_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& start_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); /** Stops a file of type Mountable. @@ -1942,7 +1942,7 @@ public: * * @newin{2,24} */ - void stop_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& start_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void stop_mountable(const SlotAsyncReady& slot, const Glib::RefPtr& start_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); _IGNORE(g_file_stop_mountable) _WRAP_METHOD(bool stop_mountable_finish(const Glib::RefPtr& result), @@ -2096,7 +2096,7 @@ public: /** A signal handler would be, for instance: * bool on_read_more(const char* file_contents, goffset file_size); */ - using SlotReadMore = sigc::slot; + using SlotReadMore = sigc::slot; //Note that slot_read_more can be nullptr but that would not be a useful method overload, because the documentation says that it would //then be equivalent to load_contents_async. @@ -2171,12 +2171,12 @@ public: * @param etag The old entity tag * for the document. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @param new_etag A location to a new entity tag * for the document. * @param cancellable A Cancellable object. */ - void replace_contents(const char* contents, gsize length, const std::string& etag, std::string& new_etag, const Glib::RefPtr& cancellable, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents(const char* contents, gsize length, const std::string& etag, std::string& new_etag, const Glib::RefPtr& cancellable, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); /** Replaces the contents of the file with @a contents of @a length bytes. * @@ -2192,11 +2192,11 @@ public: * @param etag The old entity tag * for the document. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @param new_etag A location to a new entity tag * for the document. */ - void replace_contents(const char* contents, gsize length, const std::string& etag, std::string& new_etag, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents(const char* contents, gsize length, const std::string& etag, std::string& new_etag, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); /** Replaces the contents of the file with @a contents. * @@ -2215,12 +2215,12 @@ public: * @param etag The old entity tag * for the document. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @param new_etag A location to a new entity tag * for the document. * @param cancellable A Cancellable object. */ - void replace_contents(const std::string& contents, const std::string& etag, std::string& new_etag, const Glib::RefPtr& cancellable, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents(const std::string& contents, const std::string& etag, std::string& new_etag, const Glib::RefPtr& cancellable, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); /** Replaces the contents of the file with @a contents. * @@ -2235,11 +2235,11 @@ public: * @param etag The old entity tag * for the document. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. * @param new_etag A location to a new entity tag * for the document. */ - void replace_contents(const std::string& contents, const std::string& etag, std::string& new_etag, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents(const std::string& contents, const std::string& etag, std::string& new_etag, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); _IGNORE(g_file_replace_contents) @@ -2266,9 +2266,9 @@ public: * @param length The length of @a contents in bytes. * @param etag a new entity tag for the file. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. */ - void replace_contents_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const char* contents, gsize length, const std::string& etag, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const char* contents, gsize length, const std::string& etag, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); /** Starts an asynchronous replacement of the file with the given * @a contents of @a length bytes. @a etag will replace the document's @@ -2285,9 +2285,9 @@ public: * @param length The length of @a contents in bytes. * @param etag a new entity tag for the file. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. */ - void replace_contents_async(const SlotAsyncReady& slot, const char* contents, gsize length, const std::string& etag, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents_async(const SlotAsyncReady& slot, const char* contents, gsize length, const std::string& etag, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); /** Starts an asynchronous replacement of the file with the given * @a contents of @a length bytes. @a etag will replace the document's @@ -2308,9 +2308,9 @@ public: * @param contents String of contents to replace the file with. * @param etag a new entity tag for the file. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. */ - void replace_contents_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& contents, const std::string& etag, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const std::string& contents, const std::string& etag, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); /** Starts an asynchronous replacement of the file with the given * @a contents. @a etag will replace the document's @@ -2330,9 +2330,9 @@ public: * @param contents String of contents to replace the file with. * @param etag a new entity tag for the file. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. */ - void replace_contents_async(const SlotAsyncReady& slot, const std::string& contents, const std::string& etag, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents_async(const SlotAsyncReady& slot, const std::string& contents, const std::string& etag, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); _IGNORE(g_file_replace_contents_async) @@ -2372,9 +2372,9 @@ public: * @param contents Bytes of contents to replace the file with. * @param etag a new entity tag for the file. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. */ - void replace_contents_bytes_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& contents, const std::string& etag, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents_bytes_async(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, const Glib::RefPtr& contents, const std::string& etag, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); /** Same as replace_contents_async() but takes a Gio::Bytes input instead. * @@ -2392,9 +2392,9 @@ public: * @param contents Bytes of contents to replace the file with. * @param etag a new entity tag for the file. * @param make_backup true if a backup should be created. - * @param flags A set of CreateFlags. + * @param flags A set of FileCreateFlags. */ - void replace_contents_bytes_async(const SlotAsyncReady& slot, const Glib::RefPtr& contents, const std::string& etag, bool make_backup = false, CreateFlags flags = CreateFlags::NONE); + void replace_contents_bytes_async(const SlotAsyncReady& slot, const Glib::RefPtr& contents, const std::string& etag, bool make_backup = false, FileCreateFlags flags = FILE_CREATE_NONE); _IGNORE(g_file_replace_contents_async) diff --git a/gio/src/fileattributeinfo.ccg b/gio/src/fileattributeinfo.ccg index 63ed535..a3884e6 100644 --- a/gio/src/fileattributeinfo.ccg +++ b/gio/src/fileattributeinfo.ccg @@ -22,7 +22,7 @@ namespace Gio FileAttributeInfo::FileAttributeInfo(const GFileAttributeInfo* ginfo) : m_name(ginfo->name ? ginfo->name : ""), m_type(static_cast(ginfo->type)), - m_flags(static_cast(ginfo->flags)) + m_flags(static_cast(ginfo->flags)) { } @@ -73,7 +73,7 @@ FileAttributeInfo::get_type() const return m_type; } -FileAttributeInfo::Flags +FileAttributeInfoFlags FileAttributeInfo::get_flags() const { return m_flags; diff --git a/gio/src/fileattributeinfo.hg b/gio/src/fileattributeinfo.hg index 0c9c9a5..846c568 100644 --- a/gio/src/fileattributeinfo.hg +++ b/gio/src/fileattributeinfo.hg @@ -24,6 +24,7 @@ namespace Gio { _WRAP_ENUM(FileAttributeType, GFileAttributeType) +_WRAP_ENUM(FileAttributeInfoFlags, GFileAttributeInfoFlags) _WRAP_ENUM(FileAttributeStatus, GFileAttributeStatus) @@ -35,8 +36,6 @@ class FileAttributeInfo { _CLASS_GENERIC(FileAttributeInfo, GFileAttributeInfo) public: - _WRAP_ENUM(Flags, GFileAttributeInfoFlags) - explicit FileAttributeInfo(const GFileAttributeInfo* ginfo); FileAttributeInfo(const FileAttributeInfo& other); @@ -49,12 +48,12 @@ public: std::string get_name() const; FileAttributeType get_type() const; - Flags get_flags() const; + FileAttributeInfoFlags get_flags() const; protected: std::string m_name; FileAttributeType m_type; - Flags m_flags; + FileAttributeInfoFlags m_flags; }; } // namespace Gio diff --git a/gio/src/fileattributeinfolist.hg b/gio/src/fileattributeinfolist.hg index 2ea1dc7..5578b5b 100644 --- a/gio/src/fileattributeinfolist.hg +++ b/gio/src/fileattributeinfolist.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or @@ -29,7 +31,7 @@ namespace Gio * e.g. "standard::*" will return all of the keys in the "standard" namespace. * * Values are stored within the list in Gio::FileAttributeValue structures. Values can store different types, listed in the enum - * Gio::FileAttributeType. Upon creation of a Gio::FileAttributeValue, the type will be set to Gio::FileAttributeType::INVALID. + * Gio::FileAttributeType. Upon creation of a Gio::FileAttributeValue, the type will be set to Gio::FILE_ATTRIBUTE_TYPE_INVALID. * * The list of possible attributes for a filesystem (pointed to by a Gio::File) is availible as a Gio::FileAttributeInfoList. * This list is queryable by key names as indicated earlier. @@ -70,7 +72,7 @@ public: _WRAP_METHOD(Glib::RefPtr dup() const, g_file_attribute_info_list_dup) - _WRAP_METHOD(void add(const std::string& name, FileAttributeType type, FileAttributeInfo::Flags flags = FileAttributeInfo::Flags::NONE), g_file_attribute_info_list_add) + _WRAP_METHOD(void add(const std::string& name, FileAttributeType type, FileAttributeInfoFlags flags = FILE_ATTRIBUTE_INFO_NONE), g_file_attribute_info_list_add) }; } // namespace Gio diff --git a/gio/src/filedescriptorbased.hg b/gio/src/filedescriptorbased.hg deleted file mode 100644 index 9d8308e..0000000 --- a/gio/src/filedescriptorbased.hg +++ /dev/null @@ -1,50 +0,0 @@ -/* Copyright (C) 2017 The giomm Development Team - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library. If not, see . - */ - -#include - -_DEFS(giomm,gio) -_PINCLUDE(glibmm/private/interface_p.h) - -#ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _GFileDescriptorBasedIface GFileDescriptorBasedIface; -#endif /* DOXYGEN_SHOULD_SKIP_THIS */ - -namespace Gio -{ - -/** Interface for file descriptor based IO. - * - * %FileDescriptorBased is implemented by streams (implementations of - * Gio::InputStream or Gio::OutputStream) that are based on file descriptors. - * - * @ingroup Streams - * - * @newin{2,54} - */ -class FileDescriptorBased : public Glib::Interface -{ - _CLASS_INTERFACE(FileDescriptorBased, GFileDescriptorBased, G_FILE_DESCRIPTOR_BASED, GFileDescriptorBasedIface) - _GTKMMPROC_WIN32_NO_WRAP - -public: - _WRAP_METHOD(int get_fd() const, g_file_descriptor_based_get_fd, newin "2,54") - -protected: - _WRAP_VFUNC(int get_fd() const, "get_fd") -}; - -} // namespace Gio diff --git a/gio/src/fileenumerator.hg b/gio/src/fileenumerator.hg index 6e59340..f6e0568 100644 --- a/gio/src/fileenumerator.hg +++ b/gio/src/fileenumerator.hg @@ -15,6 +15,8 @@ */ #include +#include +#include #include #include #include @@ -94,8 +96,8 @@ public: void next_files_async(const SlotAsyncReady& slot, int num_files = 1, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_file_enumerator_next_files_async) -#m4 _CONVERSION(`GList*',`std::vector>', `Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector> next_files_finish(const Glib::RefPtr& result), +#m4 _CONVERSION(`GList*',`Glib::ListHandle< Glib::RefPtr >', `$2(($3), Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(Glib::ListHandle< Glib::RefPtr > next_files_finish(const Glib::RefPtr& result), g_file_enumerator_next_files_finish, errthrow) diff --git a/gio/src/fileicon.hg b/gio/src/fileicon.hg index dd4d3d6..24c3982 100644 --- a/gio/src/fileicon.hg +++ b/gio/src/fileicon.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or @@ -31,11 +33,10 @@ namespace Gio */ class FileIcon : public Glib::Object, - public Icon, + //Already derived by LoadableIcon: public Icon, public LoadableIcon { _CLASS_GOBJECT(FileIcon, GFileIcon, G_FILE_ICON, Glib::Object, GObject) - _IMPLEMENTS_INTERFACE(Icon) _IMPLEMENTS_INTERFACE(LoadableIcon) protected: diff --git a/gio/src/fileinfo.hg b/gio/src/fileinfo.hg index ae22d38..80399c3 100644 --- a/gio/src/fileinfo.hg +++ b/gio/src/fileinfo.hg @@ -14,6 +14,7 @@ * License along with this library. If not, see . */ +#include #include #include #include @@ -25,7 +26,17 @@ _PINCLUDE(glibmm/private/object_p.h) namespace Gio { -_WRAP_ENUM(FileType, GFileType, NO_GTYPE) + +// Rename FILE_TYPE_UNKNOWN to FILE_TYPE_NOT_KNOWN because the former is a +// define in a Windows header (winbase.h, included from windows.h). +_WRAP_ENUM(FileType, GFileType, NO_GTYPE, s#FILE_TYPE_UNKNOWN#FILE_TYPE_NOT_KNOWN#) + +// Provide FILE_TYPE_UNKNOWN for backwards compatibility. +#ifndef DOXYGEN_SHOULD_SKIP_THIS +#ifndef FILE_TYPE_UNKNOWN +const FileType FILE_TYPE_UNKNOWN = FILE_TYPE_NOT_KNOWN; +#endif +#endif //TODO: attribute strings @@ -84,8 +95,8 @@ public: _WRAP_METHOD(bool has_namespace(const std::string& name_space) const, g_file_info_has_namespace) - #m4 _CONVERSION(`char**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector list_attributes(const std::string& name_space{?}) const, + #m4 _CONVERSION(`char**',`Glib::StringArrayHandle',`Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(Glib::StringArrayHandle list_attributes(const std::string& name_space{?}) const, g_file_info_list_attributes) _WRAP_METHOD(FileAttributeType get_attribute_type(const std::string& attribute) const, @@ -95,7 +106,8 @@ public: _WRAP_METHOD(FileAttributeStatus get_attribute_status(const std::string& attribute) const, g_file_info_get_attribute_status) - _WRAP_METHOD(Glib::ustring get_attribute_string(const std::string& attribute) const, + //TODO: This should return a ustring instead: https://bugzilla.gnome.org/show_bug.cgi?id=615950#c7 + _WRAP_METHOD(std::string get_attribute_string(const std::string& attribute) const, g_file_info_get_attribute_string) #m4 _CONVERSION(`char**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_NONE)') @@ -120,7 +132,8 @@ public: _WRAP_METHOD(bool set_attribute_status(const std::string& attribute, FileAttributeStatus status), g_file_info_set_attribute_status) - _WRAP_METHOD(void set_attribute_string(const std::string& attribute, const Glib::ustring& attr_value), + //TODO: This should take a ustring value instead: https://bugzilla.gnome.org/show_bug.cgi?id=615950#c7 + _WRAP_METHOD(void set_attribute_string(const std::string& attribute, const std::string& attr_value), g_file_info_set_attribute_string) #m4 _CONVERSION(`const std::vector&',`char**',`const_cast(Glib::ArrayHandler::vector_to_array($3).data())') @@ -151,9 +164,11 @@ public: _WRAP_METHOD(bool is_symlink() const, g_file_info_get_is_symlink) _WRAP_METHOD(std::string get_name() const, g_file_info_get_name) - _WRAP_METHOD(Glib::ustring get_display_name() const, g_file_info_get_display_name) + //TODO: This should return a ustring instead. See https://bugzilla.gnome.org/show_bug.cgi?id=615950#c4 + _WRAP_METHOD(std::string get_display_name() const, g_file_info_get_display_name) - _WRAP_METHOD(Glib::ustring get_edit_name() const, g_file_info_get_edit_name) + //TODO: This should return a ustring instead. See https://bugzilla.gnome.org/show_bug.cgi?id=615950#c4 + _WRAP_METHOD(std::string get_edit_name() const, g_file_info_get_edit_name) _WRAP_METHOD(Glib::RefPtr get_icon(), g_file_info_get_icon, refreturn) _WRAP_METHOD(Glib::RefPtr get_icon() const, g_file_info_get_icon, refreturn, constversion) @@ -161,7 +176,8 @@ public: _WRAP_METHOD(Glib::RefPtr get_symbolic_icon(), g_file_info_get_symbolic_icon, refreturn) _WRAP_METHOD(Glib::RefPtr get_symbolic_icon() const, g_file_info_get_symbolic_icon, refreturn, constversion) - _WRAP_METHOD(Glib::ustring get_content_type() const, g_file_info_get_content_type) + //TODO: This should return a ustring instead. See https://bugzilla.gnome.org/show_bug.cgi?id=615950#c4 + _WRAP_METHOD(std::string get_content_type() const, g_file_info_get_content_type) _WRAP_METHOD(goffset get_size() const, g_file_info_get_size) @@ -170,7 +186,8 @@ public: _WRAP_METHOD(std::string get_symlink_target() const, g_file_info_get_symlink_target) - _WRAP_METHOD(Glib::ustring get_etag() const, g_file_info_get_etag) + //TODO: This should return a ustring instead. See https://bugzilla.gnome.org/show_bug.cgi?id=615950#c4 + _WRAP_METHOD(std::string get_etag() const, g_file_info_get_etag) _WRAP_METHOD(gint32 get_sort_order() const, g_file_info_get_sort_order) _WRAP_METHOD(void set_attribute_mask(const Glib::RefPtr& mask), @@ -184,14 +201,17 @@ public: _WRAP_METHOD(void set_is_symlink(bool symlink = true), g_file_info_set_is_symlink) _WRAP_METHOD(void set_name(const std::string& name), g_file_info_set_name) - _WRAP_METHOD(void set_display_name(const Glib::ustring& display_name), g_file_info_set_display_name) + //TODO: This should take a ustring instead. See https://bugzilla.gnome.org/show_bug.cgi?id=615950#c4 + _WRAP_METHOD(void set_display_name(const std::string& display_name), g_file_info_set_display_name) - _WRAP_METHOD(void set_edit_name(const Glib::ustring& edit_name), g_file_info_set_edit_name) + //TODO: This should take a ustring instead. See https://bugzilla.gnome.org/show_bug.cgi?id=615950#c4 + _WRAP_METHOD(void set_edit_name(const std::string& edit_name), g_file_info_set_edit_name) _WRAP_METHOD(void set_icon(const Glib::RefPtr& icon), g_file_info_set_icon) _WRAP_METHOD(void set_symbolic_icon(const Glib::RefPtr& icon), g_file_info_set_symbolic_icon) - _WRAP_METHOD(void set_content_type(const Glib::ustring& content_type), g_file_info_set_content_type) + //TODO: This should take a ustring instead. See https://bugzilla.gnome.org/show_bug.cgi?id=615950#c4 + _WRAP_METHOD(void set_content_type(const std::string& content_type), g_file_info_set_content_type) _WRAP_METHOD(void set_size(goffset size), g_file_info_set_size) diff --git a/gio/src/fileiostream.hg b/gio/src/fileiostream.hg index e6f66ce..80c2ea7 100644 --- a/gio/src/fileiostream.hg +++ b/gio/src/fileiostream.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or @@ -97,7 +99,7 @@ public: _WRAP_METHOD(Glib::RefPtr query_info_finish(const Glib::RefPtr& result), g_file_io_stream_query_info_finish, errthrow) - _WRAP_METHOD(Glib::ustring get_etag() const, g_file_io_stream_get_etag) + _WRAP_METHOD(std::string get_etag() const, g_file_io_stream_get_etag) }; diff --git a/gio/src/filelist.am b/gio/src/filelist.am index c126eb7..92b94bb 100644 --- a/gio/src/filelist.am +++ b/gio/src/filelist.am @@ -94,7 +94,6 @@ giomm_files_any_hg = \ permission.hg \ pollableinputstream.hg \ pollableoutputstream.hg \ - propertyaction.hg \ proxy.hg \ proxyaddress.hg \ proxyresolver.hg \ @@ -137,7 +136,6 @@ giomm_files_any_hg = \ zlibcompressor.hg giomm_files_posix_hg = \ - filedescriptorbased.hg \ unixconnection.hg \ unixcredentialsmessage.hg \ unixfdlist.hg \ @@ -149,17 +147,6 @@ giomm_files_posix_hg = \ giomm_files_not_mac = \ desktopappinfo.hg -if HOST_WINDOWS_NATIVE -giomm_files_arch_hg = -else -if OS_COCOA -giomm_files_arch_hg = $(giomm_files_posix_hg) -else -giomm_files_arch_hg = $(giomm_files_not_mac) $(giomm_files_posix_hg) -endif -endif -giomm_files_used_hg = $(giomm_files_any_hg) $(giomm_files_arch_hg) - giomm_files_hg = \ $(giomm_files_any_hg) \ $(giomm_files_posix_hg) \ diff --git a/gio/src/filelist.gmake.am b/gio/src/filelist.gmake.am new file mode 100644 index 0000000..c9660ca --- /dev/null +++ b/gio/src/filelist.gmake.am @@ -0,0 +1,21 @@ +## This file is part of glibmm. + +include $(top_srcdir)/gio/src/filelist.am + +# Split out from $(top_srcdir)/gio/src/filelist.am +if HOST_WINDOWS_NATIVE +giomm_files_arch_hg = +else +if OS_COCOA +giomm_files_arch_hg = $(giomm_files_posix_hg) +else +giomm_files_arch_hg = $(giomm_files_not_mac) $(giomm_files_posix_hg) +endif +endif +giomm_files_used_hg = $(giomm_files_any_hg) $(giomm_files_arch_hg) + +giomm_files_hg = \ + $(giomm_files_any_hg) \ + $(giomm_files_posix_hg) \ + $(giomm_files_not_mac) +giomm_files_ccg = $(giomm_files_hg:.hg=.ccg) diff --git a/gio/src/filemonitor.ccg b/gio/src/filemonitor.ccg index 150291f..3901af9 100644 --- a/gio/src/filemonitor.ccg +++ b/gio/src/filemonitor.ccg @@ -18,8 +18,6 @@ #include #include -using Event = Gio::FileMonitor::Event; - namespace Gio { diff --git a/gio/src/filemonitor.hg b/gio/src/filemonitor.hg index e51eddf..2318595 100644 --- a/gio/src/filemonitor.hg +++ b/gio/src/filemonitor.hg @@ -24,6 +24,7 @@ _PINCLUDE(gio/gio.h) namespace Gio { +_WRAP_ENUM(FileMonitorEvent, GFileMonitorEvent, NO_GTYPE) class File; @@ -43,8 +44,6 @@ protected: public: - _WRAP_ENUM(Event, GFileMonitorEvent, NO_GTYPE) - _WRAP_METHOD(bool cancel(), g_file_monitor_cancel) _WRAP_METHOD(bool is_cancelled() const, g_file_monitor_is_cancelled) _WRAP_METHOD(void set_rate_limit(int limit_msecs), g_file_monitor_set_rate_limit) @@ -53,7 +52,7 @@ public: _IGNORE(g_file_monitor_emit_event) #m4 _CONVERSION(`GFile*',`const Glib::RefPtr&',`Glib::wrap($3, true)') - _WRAP_SIGNAL(void changed(const Glib::RefPtr& file, const Glib::RefPtr& other_file, Event event_type), "changed") + _WRAP_SIGNAL(void changed(const Glib::RefPtr& file, const Glib::RefPtr& other_file, FileMonitorEvent event_type), "changed") //_WRAP_VFUNC(bool cancel(), cancel); diff --git a/gio/src/filenamecompleter.hg b/gio/src/filenamecompleter.hg index 5115c4f..676d196 100644 --- a/gio/src/filenamecompleter.hg +++ b/gio/src/filenamecompleter.hg @@ -15,6 +15,7 @@ */ //#include +#include #include _DEFS(giomm,gio) @@ -42,8 +43,8 @@ public: _WRAP_METHOD(std::string get_completion_suffix(const std::string& initial_text) const, g_filename_completer_get_completion_suffix) - #m4 _CONVERSION(`char**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector get_completions(const std::string& initial_text) const, g_filename_completer_get_completions) + #m4 _CONVERSION(`char**',`Glib::StringArrayHandle',`Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(Glib::StringArrayHandle get_completions(const std::string& initial_text) const, g_filename_completer_get_completions) _WRAP_METHOD(void set_dirs_only(bool dirs_only = true), g_filename_completer_set_dirs_only) _WRAP_SIGNAL(void got_completion_data(), got_completion_data) diff --git a/gio/src/fileoutputstream.hg b/gio/src/fileoutputstream.hg index f8682ab..dc82d8d 100644 --- a/gio/src/fileoutputstream.hg +++ b/gio/src/fileoutputstream.hg @@ -134,7 +134,7 @@ public: g_file_output_stream_query_info_finish, refreturn, errthrow) - _WRAP_METHOD(Glib::ustring get_etag() const, g_file_output_stream_get_etag) + _WRAP_METHOD(std::string get_etag() const, g_file_output_stream_get_etag) }; } // namespace Gio diff --git a/gio/src/gio_docs_override.xml b/gio/src/gio_docs_override.xml index 9731c27..9d757d3 100644 --- a/gio/src/gio_docs_override.xml +++ b/gio/src/gio_docs_override.xml @@ -1,90 +1,4 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gio/src/gio_enums.defs b/gio/src/gio_enums.defs index 7fcc9d3..7b75b8b 100644 --- a/gio/src/gio_enums.defs +++ b/gio/src/gio_enums.defs @@ -498,7 +498,7 @@ '("busy" "G_IO_ERROR_BUSY" "26") '("would-block" "G_IO_ERROR_WOULD_BLOCK" "27") '("host-not-found" "G_IO_ERROR_HOST_NOT_FOUND" "28") - '("host-was-not-found" "G_IO_ERROR_HOST_WAS_NOT_FOUND" "28") + '("host-not-found" "G_IO_ERROR_HOST_WAS_NOT_FOUND" "28") '("would-merge" "G_IO_ERROR_WOULD_MERGE" "29") '("failed-handled" "G_IO_ERROR_FAILED_HANDLED" "30") '("too-many-open-files" "G_IO_ERROR_TOO_MANY_OPEN_FILES" "31") diff --git a/gio/src/gio_enums.defs.patch b/gio/src/gio_enums.defs.patch index 4ef9701..4d64a58 100644 --- a/gio/src/gio_enums.defs.patch +++ b/gio/src/gio_enums.defs.patch @@ -6,7 +6,7 @@ '("busy" "G_IO_ERROR_BUSY" "26") '("would-block" "G_IO_ERROR_WOULD_BLOCK" "27") '("host-not-found" "G_IO_ERROR_HOST_NOT_FOUND" "28") -+ '("host-was-not-found" "G_IO_ERROR_HOST_WAS_NOT_FOUND" "28") ++ '("host-not-found" "G_IO_ERROR_HOST_WAS_NOT_FOUND" "28") '("would-merge" "G_IO_ERROR_WOULD_MERGE" "29") '("failed-handled" "G_IO_ERROR_FAILED_HANDLED" "30") '("too-many-open-files" "G_IO_ERROR_TOO_MANY_OPEN_FILES" "31") diff --git a/gio/src/gio_signals.defs b/gio/src/gio_signals.defs index 0f875dd..c0eae3c 100644 --- a/gio/src/gio_signals.defs +++ b/gio/src/gio_signals.defs @@ -593,6 +593,7 @@ (readable #t) (writable #t) (construct-only #t) + (deprecated #t) (default-value "FALSE") ) @@ -2348,6 +2349,7 @@ (readable #t) (writable #t) (construct-only #f) + (deprecated #t) (default-value "TRUE") ) diff --git a/gio/src/gio_signals.defs.patch b/gio/src/gio_signals.defs.patch index f3db90f..bf5d51a 100644 --- a/gio/src/gio_signals.defs.patch +++ b/gio/src/gio_signals.defs.patch @@ -1,5 +1,5 @@ ---- ./../../gio/src/gio_signals.defs.orig 2017-09-11 09:52:55.272837455 +0200 -+++ ./../../gio/src/gio_signals.defs 2017-09-11 14:56:39.662521043 +0200 +--- ./../../gio/src/gio_signals.defs.orig 2017-09-12 17:06:06.023464567 +0200 ++++ ./../../gio/src/gio_signals.defs 2017-09-13 08:41:32.428298292 +0200 @@ -87,11 +87,11 @@ (return-type "void") (flags "Run Last, Must Collect") @@ -13,7 +13,19 @@ ;; From GApplication -@@ -738,11 +738,11 @@ +@@ -591,10 +591,11 @@ + (prop-type "GParamBoolean") + (docs "Whether or not this is an abstract address") + (readable #t) + (writable #t) + (construct-only #t) ++ (deprecated #t) + (default-value "FALSE") + ) + + (define-property address-type + (of-object "GUnixSocketAddress") +@@ -738,11 +739,11 @@ (of-object "GMountOperation") (return-type "void") (flags "Run Last") @@ -26,7 +38,7 @@ (define-signal reply (of-object "GMountOperation") -@@ -1106,11 +1106,11 @@ +@@ -1106,11 +1107,11 @@ (define-signal writable-change-event (of-object "GSettings") (return-type "gboolean") @@ -39,7 +51,7 @@ (define-property settings-schema (of-object "GSettings") -@@ -1190,20 +1190,20 @@ +@@ -1190,20 +1191,20 @@ (define-signal activate (of-object "GSimpleAction") (return-type "void") @@ -62,7 +74,7 @@ (define-property name (of-object "GSimpleAction") -@@ -1850,11 +1850,11 @@ +@@ -1850,11 +1851,11 @@ (define-signal writable-change-event (of-object "GSettings") (return-type "gboolean") @@ -75,7 +87,19 @@ (define-property settings-schema (of-object "GSettings") -@@ -2723,23 +2723,23 @@ +@@ -2345,10 +2346,11 @@ + (prop-type "GParamBoolean") + (docs "Whether to verify peer certificates against the system certificate database") + (readable #t) + (writable #t) + (construct-only #f) ++ (deprecated #t) + (default-value "TRUE") + ) + + (define-property database + (of-object "GTlsConnection") +@@ -2723,23 +2725,23 @@ (define-signal g-properties-changed (of-object "GDBusProxy") (return-type "void") diff --git a/gio/src/gio_vfuncs.defs b/gio/src/gio_vfuncs.defs index 8dfac73..4bcfa1e 100644 --- a/gio/src/gio_vfuncs.defs +++ b/gio/src/gio_vfuncs.defs @@ -311,23 +311,9 @@ (return-type "void") ) -(define-vfunc dbus_register - (of-object "GApplication") - (return-type "gboolean") - (parameters - '("GDBusConnection*" "connection") - '("const-gchar*" "object_path") - '("GError**" "error") - ) -) - -(define-vfunc dbus_unregister +(define-vfunc shutdown (of-object "GApplication") (return-type "void") - (parameters - '("GDBusConnection*" "connection") - '("const-gchar*" "object_path") - ) ) ; GAsyncInitable @@ -359,14 +345,6 @@ (return-type "GObject*") ) -(define-vfunc is_tagged - (of-object "GAsyncResult") - (return-type "gboolean") - (parameters - '("gpointer" "source_tag") - ) -) - ; GBufferedInputStream (define-vfunc fill @@ -577,13 +555,6 @@ ) ) -; GFileDescriptorBased - -(define-vfunc get_fd - (of-object "GFileDescriptorBased") - (return-type "int") -) - ; GFileInputStream (define-vfunc tell diff --git a/gio/src/inetsocketaddress.hg b/gio/src/inetsocketaddress.hg index 4177cb5..59c9fca 100644 --- a/gio/src/inetsocketaddress.hg +++ b/gio/src/inetsocketaddress.hg @@ -54,13 +54,10 @@ public: _WRAP_METHOD(guint32 get_flowinfo() const, g_inet_socket_address_get_flowinfo) _WRAP_METHOD(guint32 get_scope_id() const, g_inet_socket_address_get_scope_id) - _WRAP_PROPERTY("address", Glib::RefPtr) - // Don't use guint16 or guint32 in _WRAP_PROPERTY(). - // There are no Glib::Value<> specializations for those types. - // Glib::Value exists, and guint is a typedef of unsigned int. - _WRAP_PROPERTY("port", guint) - _WRAP_PROPERTY("flowinfo", guint) - _WRAP_PROPERTY("scope-id", guint) + _WRAP_PROPERTY("address", Glib::RefPtr) + _WRAP_PROPERTY("port", guint16) + _WRAP_PROPERTY("flowinfo", guint32) + _WRAP_PROPERTY("scope-id", guint32) }; } // namespace Gio diff --git a/gio/src/inputstream.hg b/gio/src/inputstream.hg index 1618043..d122710 100644 --- a/gio/src/inputstream.hg +++ b/gio/src/inputstream.hg @@ -389,10 +389,11 @@ protected: _WRAP_METHOD(bool set_pending(), g_input_stream_set_pending, errthrow, newin "2,50") _WRAP_METHOD(void clear_pending(), g_input_stream_clear_pending, newin "2,50") + //TODO: When we can break ABI, add vfuncs. See https://bugzilla.gnome.org/show_bug.cgi?id=572471 #m4 _CONVERSION(`GCancellable*', `const Glib::RefPtr&', `Glib::wrap($3, true)') - _WRAP_VFUNC(gssize read(void* buffer, gsize count, const Glib::RefPtr& cancellable), read_fn, errthrow, err_return_value -1) - _WRAP_VFUNC(gssize skip(gsize count, const Glib::RefPtr& cancellable), skip, errthrow, err_return_value -1) - _WRAP_VFUNC(bool close(const Glib::RefPtr& cancellable), close_fn, errthrow) + //_WRAP_VFUNC(gssize read(void* buffer, gsize count, const Glib::RefPtr& cancellable), read_fn, errthrow, err_return_value -1) + //_WRAP_VFUNC(gssize skip(gsize count, const Glib::RefPtr& cancellable), skip, errthrow, err_return_value -1) + //_WRAP_VFUNC(bool close(const Glib::RefPtr& cancellable), close_fn, errthrow) }; } // namespace Gio diff --git a/gio/src/iostream.ccg b/gio/src/iostream.ccg index 800932d..5807215 100644 --- a/gio/src/iostream.ccg +++ b/gio/src/iostream.ccg @@ -48,7 +48,7 @@ IOStream::close_async(const SlotAsyncReady& slot, int io_priority) void IOStream::splice_async(const Glib::RefPtr& stream2, const SlotAsyncReady& slot, - const Glib::RefPtr& cancellable, SpliceFlags flags, int io_priority) + const Glib::RefPtr& cancellable, IOStreamSpliceFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -61,7 +61,7 @@ IOStream::splice_async(const Glib::RefPtr& stream2, const SlotAsyncRea void IOStream::splice_async(const Glib::RefPtr& stream2, const SlotAsyncReady& slot, - SpliceFlags flags, int io_priority) + IOStreamSpliceFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter diff --git a/gio/src/iostream.hg b/gio/src/iostream.hg index f52fe17..b53be02 100644 --- a/gio/src/iostream.hg +++ b/gio/src/iostream.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2007 The giomm Development Team * * This library is free software; you can redistribute it and/or @@ -27,6 +29,8 @@ _PINCLUDE(glibmm/private/object_p.h) namespace Gio { +_WRAP_ENUM(IOStreamSpliceFlags, GIOStreamSpliceFlags, NO_GTYPE) + /** IOStream - Base class for implementing read/write streams. * IOStream represents an object that has both read and write streams. * Generally the two streams acts as separate input and output streams, but @@ -62,8 +66,6 @@ class IOStream : public Glib::Object public: - _WRAP_ENUM(SpliceFlags, GIOStreamSpliceFlags, NO_GTYPE) - /** Asyncronously splice the output stream to the input stream of @a * stream2, and splice the output stream of @a stream2 to the input stream of * this stream. @@ -74,21 +76,21 @@ public: * @param stream2 The second IOStream. * @param slot A SlotAsyncReady slot. * @param cancellable A Cancellable object. - * @param flags A set of SpliceFlags. + * @param flags A set of IOStreamSpliceFlags. * @param io_priority The io priority of the request. * * @newin{2,34} */ void splice_async(const Glib::RefPtr& stream2, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, - SpliceFlags flags = SpliceFlags::NONE, + IOStreamSpliceFlags flags = Gio::IO_STREAM_SPLICE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_io_stream_splice_async) /// A non-cancellable version of splice_async(). void splice_async(const Glib::RefPtr& stream2, const SlotAsyncReady& slot, - SpliceFlags flags = SpliceFlags::NONE, + IOStreamSpliceFlags flags = Gio::IO_STREAM_SPLICE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _WRAP_METHOD(static bool splice_finish(const Glib::RefPtr& result), g_io_stream_splice_finish, errthrow) diff --git a/gio/src/liststore.hg b/gio/src/liststore.hg index 8c93c85..16b8cdd 100644 --- a/gio/src/liststore.hg +++ b/gio/src/liststore.hg @@ -62,7 +62,7 @@ public: * * @newin{2,50} */ - using SlotCompare = sigc::slot&, const Glib::RefPtr&)>; + using SlotCompare = sigc::slot&, const Glib::RefPtr&>; _WRAP_METHOD(guint insert_sorted(const Glib::RefPtr& item, const SlotCompare& slot{compare_func}), g_list_store_insert_sorted, @@ -174,7 +174,7 @@ public: * * @newin{2,50} */ - using SlotCompare = sigc::slot&, const Glib::RefPtr&)>; + using SlotCompare = sigc::slot&, const Glib::RefPtr&>; /** Inserts @a item at a position to be determined by the @a slot. * @@ -243,13 +243,13 @@ ListStore::ListStore() template Glib::RefPtr> ListStore::create() { - return Glib::make_refptr_for_instance>(new ListStore()); + return Glib::RefPtr>(new ListStore()); } template Glib::RefPtr ListStore::get_item(guint position) { - return std::dynamic_pointer_cast(ListModel::get_object(position)); + return Glib::RefPtr::cast_dynamic(ListModel::get_object(position)); } template @@ -309,9 +309,9 @@ int ListStore::compare_data_func(gconstpointer a, gconstpointer b, gpoin // cast_dynamic is necessary if T_item is a user-derived class, such as // class MyObject : public Glib::Object - const Glib::RefPtr item_a = std::dynamic_pointer_cast( + const Glib::RefPtr item_a = Glib::RefPtr::cast_dynamic( Glib::wrap(static_cast(const_cast(a)), true)); - const Glib::RefPtr item_b = std::dynamic_pointer_cast( + const Glib::RefPtr item_b = Glib::RefPtr::cast_dynamic( Glib::wrap(static_cast(const_cast(b)), true)); return (*slot)(item_a, item_b); diff --git a/gio/src/loadableicon.ccg b/gio/src/loadableicon.ccg index 22f6950..10ddbe8 100644 --- a/gio/src/loadableicon.ccg +++ b/gio/src/loadableicon.ccg @@ -16,6 +16,7 @@ #include #include +#include #include "slot_async.h" namespace Gio diff --git a/gio/src/loadableicon.hg b/gio/src/loadableicon.hg index a706f24..0d7a485 100644 --- a/gio/src/loadableicon.hg +++ b/gio/src/loadableicon.hg @@ -14,11 +14,12 @@ * License along with this library. If not, see . */ -#include +#include #include +#include _DEFS(giomm,gio) -_PINCLUDE(glibmm/private/interface_p.h) +_PINCLUDE(giomm/private/icon_p.h) #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GLoadableIconIface GLoadableIconIface; @@ -31,9 +32,9 @@ namespace Gio * * @newin{2,16} */ -class LoadableIcon : public Glib::Interface +class LoadableIcon : public Icon { - _CLASS_INTERFACE(LoadableIcon, GLoadableIcon, G_LOADABLE_ICON, GLoadableIconIface) + _CLASS_INTERFACE(LoadableIcon, GLoadableIcon, G_LOADABLE_ICON, GLoadableIconIface, Icon, GIcon) public: /** diff --git a/gio/src/memoryinputstream.ccg b/gio/src/memoryinputstream.ccg index 920e616..1388d7f 100644 --- a/gio/src/memoryinputstream.ccg +++ b/gio/src/memoryinputstream.ccg @@ -27,9 +27,6 @@ public: { } - SlotWithData(const SlotWithData& src) = delete; - SlotWithData& operator=(const SlotWithData& src) = delete; - ~SlotWithData() { delete m_slot; } void operator()() { (*m_slot)(m_data); } @@ -62,6 +59,29 @@ destroy_data_callback(void* user_data) namespace Gio { +_DEPRECATE_IFDEF_START +void +MemoryInputStream::add_data(const std::string& data) +{ + char* data_copy = g_strdup(data.c_str()); + g_memory_input_stream_add_data(gobj(), data_copy, -1, g_free); +} + +void +MemoryInputStream::add_data(const void* data, gssize len) +{ + char* data_copy = nullptr; + + // copy the data so that the caller doesn't need to keep the data alive + if (len < 0) + data_copy = g_strdup(static_cast(data)); + else + data_copy = static_cast(g_memdup(data, len)); + + g_memory_input_stream_add_data(gobj(), data_copy, len, g_free); +} +_DEPRECATE_IFDEF_END + void MemoryInputStream::add_data(const void* data, gssize len, const SlotDestroyData& destroy_slot) { diff --git a/gio/src/memoryinputstream.hg b/gio/src/memoryinputstream.hg index 1485256..9fed8da 100644 --- a/gio/src/memoryinputstream.hg +++ b/gio/src/memoryinputstream.hg @@ -18,7 +18,6 @@ _CONFIGINCLUDE(giommconfig.h) #include #include -#include _DEFS(giomm,gio) _PINCLUDE(giomm/private/inputstream_p.h) @@ -34,12 +33,10 @@ namespace Gio */ class MemoryInputStream : public Gio::InputStream, - public Seekable, - public PollableInputStream + public Seekable { _CLASS_GOBJECT(MemoryInputStream, GMemoryInputStream, G_MEMORY_INPUT_STREAM, Gio::InputStream, GInputStream) _IMPLEMENTS_INTERFACE(Seekable) - _IMPLEMENTS_INTERFACE(PollableInputStream) protected: _CTOR_DEFAULT @@ -48,6 +45,27 @@ protected: public: _WRAP_CREATE() +_DEPRECATE_IFDEF_START + /** Appends to data that can be read from the input stream. + * + * @param data Input data. + * + * @deprecated Use add_data() with SlotDestroyData or GDestroyNotify instead. + */ + void add_data(const std::string& data); + + /** Appends to data that can be read from the input stream. + * + * Note that the data will be copied internally and freed when no longer needed. + * + * @param data Input data. + * @param len Length of the data, may be -1 if data is a null-terminated string. + * + * @deprecated Use add_data() with SlotDestroyData or GDestroyNotify instead. + */ + void add_data(const void* data, gssize len); +_DEPRECATE_IFDEF_END + _WRAP_METHOD(void add_data(const void* data, gssize len, GDestroyNotify destroy), g_memory_input_stream_add_data) /** For example, @@ -57,7 +75,7 @@ public: * * @newin{2,40} */ - using SlotDestroyData = sigc::slot; + using SlotDestroyData = sigc::slot; /** Appends to data that can be read from the input stream. * diff --git a/gio/src/memoryoutputstream.hg b/gio/src/memoryoutputstream.hg index 310caec..329329e 100644 --- a/gio/src/memoryoutputstream.hg +++ b/gio/src/memoryoutputstream.hg @@ -16,7 +16,6 @@ #include #include -#include #include // TODO: remove this if possible -- it's here for the GReallocFunc definition #include @@ -45,12 +44,10 @@ namespace Gio */ class MemoryOutputStream : public OutputStream, - public Seekable, - public PollableOutputStream + public Seekable { _CLASS_GOBJECT(MemoryOutputStream, GMemoryOutputStream, G_MEMORY_OUTPUT_STREAM, Gio::OutputStream, GOutputStream) _IMPLEMENTS_INTERFACE(Seekable) - _IMPLEMENTS_INTERFACE(PollableOutputStream) protected: // Hand-coded because it's equivalent to g_memory_output_stream_new_resizable(), diff --git a/gio/src/menu.hg b/gio/src/menu.hg index 99d5ff1..c5d3831 100644 --- a/gio/src/menu.hg +++ b/gio/src/menu.hg @@ -47,9 +47,10 @@ public: _WRAP_METHOD(void freeze(), g_menu_freeze) - _WRAP_METHOD(void insert_item(int position, const Glib::RefPtr& item), g_menu_insert_item) - _WRAP_METHOD(void prepend_item(const Glib::RefPtr& item), g_menu_prepend_item) - _WRAP_METHOD(void append_item(const Glib::RefPtr& item), g_menu_append_item) + //TODO: Make the item "const Glib::RefPtr&" when we can break ABI? The function is documented as just copying its attributes. + _WRAP_METHOD(void insert_item(int position, const Glib::RefPtr& item), g_menu_insert_item) + _WRAP_METHOD(void prepend_item(const Glib::RefPtr& item), g_menu_prepend_item) + _WRAP_METHOD(void append_item(const Glib::RefPtr& item), g_menu_append_item) _WRAP_METHOD(void remove(int position), g_menu_remove) _WRAP_METHOD(void remove_all(), g_menu_remove_all) @@ -61,7 +62,6 @@ public: _WRAP_METHOD(void prepend(const Glib::ustring& label, const Glib::ustring& detailed_action{?}), g_menu_prepend) _WRAP_METHOD(void append(const Glib::ustring& label, const Glib::ustring& detailed_action{?}), g_menu_append) -// TODO: Should the MenuModel be const too? _WRAP_METHOD(void insert_section(int position, const Glib::ustring& label{?}, const Glib::RefPtr& section), g_menu_insert_section) _WRAP_METHOD(void prepend_section(const Glib::ustring& label{?}, const Glib::RefPtr& section), g_menu_prepend_section) _WRAP_METHOD(void append_section(const Glib::ustring& label{?}, const Glib::RefPtr& section), g_menu_append_section) diff --git a/gio/src/menuattributeiter.hg b/gio/src/menuattributeiter.hg index 558c240..16bfb3b 100644 --- a/gio/src/menuattributeiter.hg +++ b/gio/src/menuattributeiter.hg @@ -38,7 +38,10 @@ public: _WRAP_METHOD(Glib::ustring get_name() const, g_menu_attribute_iter_get_name) - _WRAP_METHOD(Glib::VariantBase get_value() const, g_menu_attribute_iter_get_value) + //TODO: When we can break ABI, remove the method overload and just make it const. + //It makes no sense to return const by value. + _WRAP_METHOD(Glib::VariantBase get_value(), g_menu_attribute_iter_get_value) + _WRAP_METHOD(const Glib::VariantBase get_value() const, g_menu_attribute_iter_get_value, constversion) _WRAP_METHOD(bool next(), g_menu_attribute_iter_next) }; diff --git a/gio/src/menuitem.ccg b/gio/src/menuitem.ccg index 4db5c4d..a9a3ee5 100644 --- a/gio/src/menuitem.ccg +++ b/gio/src/menuitem.ccg @@ -42,6 +42,14 @@ MenuItem::MenuItem(const Glib::RefPtr& submenu) : _CONSTRUCT() set_submenu(submenu); } +_DEPRECATE_IFDEF_START +void +MenuItem::set_action_and_target(const Glib::ustring& action) +{ + g_menu_item_set_action_and_target_value(gobj(), action.c_str(), nullptr); +} +_DEPRECATE_IFDEF_END + void MenuItem::set_action(const Glib::ustring& action) { diff --git a/gio/src/menuitem.hg b/gio/src/menuitem.hg index 0fff756..3215ec1 100644 --- a/gio/src/menuitem.hg +++ b/gio/src/menuitem.hg @@ -101,6 +101,7 @@ GMenuItem * g_menu_item_new_section (const Glib::ustring& label, //void set_attribute(const Glib::ustring& attribute, const T_Value& value) const; _WRAP_METHOD(void set_attribute_value(const Glib::ustring& attribute, const Glib::VariantBase& value), g_menu_item_set_attribute_value) + _WRAP_METHOD(void set_attribute(const Glib::ustring& attribute, const Glib::VariantBase& value), g_menu_item_set_attribute_value, deprecated "Use set_attribute() instead.") _IGNORE(g_menu_item_set_attribute) //These are documented as transfer-full, so we don't need to use refreturn. @@ -118,11 +119,19 @@ GMenuItem * g_menu_item_new_section (const Glib::ustring& label, //void get_attribute(const Glib::ustring& attribute, T_Value& value) const; //_WRAP_METHOD(Glib::VariantBase get_attribute_value(const Glib::ustring& attribute, const Glib::VariantType& expected_type{?}) const, g_menu_item_get_attribute_value) + _WRAP_METHOD(Glib::VariantBase get_attribute(const Glib::ustring& attribute, const Glib::VariantType& expected_type{?}) const, g_menu_item_get_attribute_value, deprecated "Use get_attribute_value() instead.") _WRAP_METHOD(Glib::VariantBase get_attribute_value(const Glib::ustring& attribute, const Glib::VariantType& expected_type{?}) const, g_menu_item_get_attribute_value) // Ignore varargs function. _IGNORE(g_menu_item_get_attribute) +_DEPRECATE_IFDEF_START + /** Unsets the target for the specified @a action. + * @deprecated Use set_action() or unset_target() instead. + */ + void set_action_and_target(const Glib::ustring& action); +_DEPRECATE_IFDEF_END + /** Sets the action for the menu item. * See set_action_and_target(). * diff --git a/gio/src/menumodel.hg b/gio/src/menumodel.hg index 81fb877..36a5ea7 100644 --- a/gio/src/menumodel.hg +++ b/gio/src/menumodel.hg @@ -131,13 +131,16 @@ public: #m4begin dnl See the .ccg implementation for how this conversion works. + //TODO: When we can break ABI, remove the method overload and just make it const. + //It makes no sense to return const by value. _CONVERSION(`MenuAttribute',`const gchar*',`giomm_get_menu_attribute($3)') #m4end //TODO: Add a get_item_attribute() templated method to get values directly //instead of returning a Glib::VariantBase? - _WRAP_METHOD(Glib::VariantBase get_item_attribute(int item_index, MenuAttribute attribute, const Glib::VariantType& expected_type) const, g_menu_model_get_item_attribute_value) + _WRAP_METHOD(Glib::VariantBase get_item_attribute(int item_index, MenuAttribute attribute, const Glib::VariantType& expected_type), g_menu_model_get_item_attribute_value) + _WRAP_METHOD(const Glib::VariantBase get_item_attribute(int item_index, MenuAttribute attribute, const Glib::VariantType& expected_type) const, g_menu_model_get_item_attribute_value, constversion) // Ignore varargs function _IGNORE(g_menu_model_get_item_attribute) diff --git a/gio/src/mount.ccg b/gio/src/mount.ccg index 6a4fd36..939931d 100644 --- a/gio/src/mount.ccg +++ b/gio/src/mount.ccg @@ -26,7 +26,7 @@ namespace Gio void Mount::unmount( - const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, UnmountFlags flags) + const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -39,7 +39,7 @@ Mount::unmount( } void -Mount::unmount(const SlotAsyncReady& slot, UnmountFlags flags) +Mount::unmount(const SlotAsyncReady& slot, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -53,7 +53,7 @@ Mount::unmount(const SlotAsyncReady& slot, UnmountFlags flags) } void -Mount::unmount(UnmountFlags flags) +Mount::unmount(MountUnmountFlags flags) { g_mount_unmount_with_operation(gobj(), GMountUnmountFlags(flags), nullptr, // mount_operation @@ -64,7 +64,7 @@ Mount::unmount(UnmountFlags flags) void Mount::unmount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - const Glib::RefPtr& cancellable, UnmountFlags flags) + const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -77,7 +77,7 @@ Mount::unmount(const Glib::RefPtr& mount_operation, const SlotAs void Mount::unmount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - UnmountFlags flags) + MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -90,7 +90,7 @@ Mount::unmount(const Glib::RefPtr& mount_operation, const SlotAs } void -Mount::unmount(const Glib::RefPtr& mount_operation, UnmountFlags flags) +Mount::unmount(const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { g_mount_unmount_with_operation(gobj(), GMountUnmountFlags(flags), Glib::unwrap(mount_operation), nullptr, // cancellable @@ -100,7 +100,7 @@ Mount::unmount(const Glib::RefPtr& mount_operation, UnmountFlags void Mount::remount(const Glib::RefPtr& operation, const SlotAsyncReady& slot, - const Glib::RefPtr& cancellable, MountFlags flags) + const Glib::RefPtr& cancellable, MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -113,7 +113,7 @@ Mount::remount(const Glib::RefPtr& operation, const SlotAsyncRea void Mount::remount( - const Glib::RefPtr& operation, const SlotAsyncReady& slot, MountFlags flags) + const Glib::RefPtr& operation, const SlotAsyncReady& slot, MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -125,21 +125,21 @@ Mount::remount( } void -Mount::remount(const Glib::RefPtr& operation, MountFlags flags) +Mount::remount(const Glib::RefPtr& operation, MountMountFlags flags) { g_mount_remount(gobj(), static_cast(flags), Glib::unwrap(operation), nullptr, nullptr, nullptr); } void -Mount::remount(MountFlags flags) +Mount::remount(MountMountFlags flags) { g_mount_remount(gobj(), static_cast(flags), nullptr, nullptr, nullptr, nullptr); } void Mount::eject( - const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, UnmountFlags flags) + const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -152,7 +152,7 @@ Mount::eject( } void -Mount::eject(const SlotAsyncReady& slot, UnmountFlags flags) +Mount::eject(const SlotAsyncReady& slot, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -166,7 +166,7 @@ Mount::eject(const SlotAsyncReady& slot, UnmountFlags flags) } void -Mount::eject(UnmountFlags flags) +Mount::eject(MountUnmountFlags flags) { g_mount_eject_with_operation(gobj(), GMountUnmountFlags(flags), nullptr, // mount_operation @@ -177,7 +177,7 @@ Mount::eject(UnmountFlags flags) void Mount::eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - const Glib::RefPtr& cancellable, UnmountFlags flags) + const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -190,7 +190,7 @@ Mount::eject(const Glib::RefPtr& mount_operation, const SlotAsyn void Mount::eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - UnmountFlags flags) + MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -203,7 +203,7 @@ Mount::eject(const Glib::RefPtr& mount_operation, const SlotAsyn } void -Mount::eject(const Glib::RefPtr& mount_operation, UnmountFlags flags) +Mount::eject(const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { g_mount_eject_with_operation(gobj(), GMountUnmountFlags(flags), Glib::unwrap(mount_operation), nullptr, // cancellable diff --git a/gio/src/mount.hg b/gio/src/mount.hg index d4d93e0..6078d7d 100644 --- a/gio/src/mount.hg +++ b/gio/src/mount.hg @@ -34,6 +34,8 @@ typedef struct _GMountIface GMountIface; namespace Gio { +_WRAP_ENUM(MountUnmountFlags, GMountUnmountFlags, NO_GTYPE) +_WRAP_ENUM(MountMountFlags, GMountMountFlags, NO_GTYPE) class File; class Drive; @@ -56,8 +58,6 @@ class Mount : public Glib::Interface _CLASS_INTERFACE(Mount, GMount, G_MOUNT, GMountIface) public: - _WRAP_ENUM(UnmountFlags, GMountUnmountFlags, NO_GTYPE) - _WRAP_ENUM(MountFlags, GMountMountFlags, NO_GTYPE) _WRAP_METHOD(Glib::RefPtr get_root(), g_mount_get_root, refreturn) _WRAP_METHOD(Glib::RefPtr get_root() const, g_mount_get_root, refreturn, constversion) @@ -81,12 +81,12 @@ public: _WRAP_METHOD(bool can_unmount() const, g_mount_can_unmount) _WRAP_METHOD(bool can_eject() const, g_mount_can_eject) - void unmount(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, UnmountFlags flags = UnmountFlags::NONE); - void unmount(const SlotAsyncReady& slot, UnmountFlags flags = UnmountFlags::NONE); - void unmount(UnmountFlags flags = UnmountFlags::NONE); - void unmount(const Glib::RefPtr& mount_operation, UnmountFlags flags = UnmountFlags::NONE); - void unmount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, UnmountFlags flags = UnmountFlags::NONE); - void unmount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, UnmountFlags flags = UnmountFlags::NONE); + void unmount(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void unmount(const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void unmount(MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void unmount(const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void unmount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void unmount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); _IGNORE(g_mount_unmount) _IGNORE(g_mount_unmount_with_operation) @@ -105,7 +105,7 @@ public: * @param cancellable A cancellable object which can be used to cancel the operation. * @param flags Flags affecting the operation. */ - void remount(const Glib::RefPtr& operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountFlags flags = MountFlags::NONE); + void remount(const Glib::RefPtr& operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Remounts a mount. * This is an asynchronous operation, and is finished by calling mount_finish() with the AsyncResult data returned in the callback slot. @@ -118,7 +118,7 @@ public: * @param slot A callback which will be called when the operation is completed or canceled. * @param flags Flags affecting the operation. */ - void remount(const Glib::RefPtr& operation, const SlotAsyncReady& slot, MountFlags flags = MountFlags::NONE); + void remount(const Glib::RefPtr& operation, const SlotAsyncReady& slot, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Remounts a mount. * @@ -129,7 +129,7 @@ public: * @param operation A mount operation. * @param flags Flags affecting the operation. */ - void remount(const Glib::RefPtr& operation, MountFlags flags = MountFlags::NONE); + void remount(const Glib::RefPtr& operation, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Remounts a mount, without user interaction. * @@ -139,18 +139,18 @@ public: * * @param flags Flags affecting the operation. */ - void remount(MountFlags flags = MountFlags::NONE); + void remount(MountMountFlags flags = MOUNT_MOUNT_NONE); _IGNORE(g_mount_remount) _WRAP_METHOD(bool remount_finish(const Glib::RefPtr& result), g_mount_remount_finish, errthrow) - void eject(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, UnmountFlags flags = UnmountFlags::NONE); - void eject(const SlotAsyncReady& slot, UnmountFlags flags = UnmountFlags::NONE); - void eject(UnmountFlags flags = UnmountFlags::NONE); - void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, UnmountFlags flags = UnmountFlags::NONE); - void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, UnmountFlags flags = UnmountFlags::NONE); - void eject(const Glib::RefPtr& mount_operation, UnmountFlags flags = UnmountFlags::NONE); + void eject(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); _IGNORE(g_mount_eject) _IGNORE(g_mount_eject_with_operation) @@ -206,7 +206,7 @@ public: void guess_content_type_sync(bool force_rescan = true); _IGNORE(g_mount_guess_content_type_sync) - #m4 _CONVERSION(`gchar**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') + #m4 _CONVERSION(`gchar**',`Glib::StringArrayHandle',`Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') /** Finishes guessing content types of the Mount. * If any errors occurred during the operation, an exception will be thrown. @@ -219,7 +219,7 @@ public: * @return An array of content types. * @throw Glib::Error */ - _WRAP_METHOD(std::vector guess_content_type_finish(const Glib::RefPtr& result), g_mount_guess_content_type_finish, errthrow) + _WRAP_METHOD(Glib::StringArrayHandle guess_content_type_finish(const Glib::RefPtr& result), g_mount_guess_content_type_finish, errthrow) _WRAP_METHOD(bool is_shadowed() const, g_mount_is_shadowed) _WRAP_METHOD(void shadow(), g_mount_shadow) @@ -231,7 +231,7 @@ public: _WRAP_SIGNAL(void changed(), changed) _WRAP_SIGNAL(void unmounted(), unmounted) - _WRAP_SIGNAL(void pre_unmount(), pre_unmount) + _WRAP_SIGNAL(void pre_unmount(), pre_unmount, no_default_handler) //There are no properties. }; diff --git a/gio/src/mountoperation.hg b/gio/src/mountoperation.hg index 17b74a8..1e12852 100644 --- a/gio/src/mountoperation.hg +++ b/gio/src/mountoperation.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or @@ -15,6 +17,7 @@ */ #include +#include _DEFS(giomm,gio) _PINCLUDE(glibmm/private/object_p.h) @@ -77,18 +80,20 @@ public: #m4 _CONVERSION(`const char*',`const Glib::ustring&',__GCHARP_TO_USTRING) _WRAP_SIGNAL(void ask_password(const Glib::ustring& message, const Glib::ustring& default_user, const Glib::ustring& default_domain, AskPasswordFlags flags), ask_password) - //TODO: We really need some test to make sure that our use of ArrayHandler is correct. murrayc. -#m4 _CONVERSION(`const std::vector&',`const gchar**',`const_cast(Glib::ArrayHandler::vector_to_array($3).data())') -#m4 _CONVERSION(`const gchar**',`const std::vector&',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_SIGNAL(void ask_question(const Glib::ustring& message, const std::vector& choices), ask_question) + //TODO: We really need some test to make sure that our use of StringArrayHandle is correct. murrayc. +#m4 _CONVERSION(`const Glib::StringArrayHandle&',`const gchar**',`const_cast(($3).data())') +#m4 _CONVERSION(`const gchar**',`const Glib::StringArrayHandle&',`Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') + _WRAP_SIGNAL(void ask_question(const Glib::ustring& message, const Glib::StringArrayHandle& choices), ask_question) _WRAP_SIGNAL(void reply(MountOperationResult result), reply) - _WRAP_SIGNAL(void aborted(), aborted) + + //TODO: Remove no_default_handler when we can break ABI: + _WRAP_SIGNAL(void aborted(), aborted, no_default_handler) //TODO: The array of char* is not very pleasant to wrap: //_WRAP_SIGNAL( void show_processes(const Glib::ustring& message, GArray* processes, const gchar *choices[]); - _WRAP_SIGNAL(void show_unmount_progress(const Glib::ustring& message, gint64 time_left, gint64 bytes_left), "show_unmount_progress") + _WRAP_SIGNAL(void show_unmount_progress(const Glib::ustring& message, gint64 time_left, gint64 bytes_left), "show_unmount_progress", no_default_handler) _WRAP_PROPERTY("username", Glib::ustring) _WRAP_PROPERTY("password", Glib::ustring) diff --git a/gio/src/networkmonitor.hg b/gio/src/networkmonitor.hg index d46cbba..4ed6fc9 100644 --- a/gio/src/networkmonitor.hg +++ b/gio/src/networkmonitor.hg @@ -34,15 +34,8 @@ namespace Gio _WRAP_ENUM(NetworkConnectivity, GNetworkConnectivity, NO_GTYPE) -/** Network status monitor. +/** TODO * - * %NetworkMonitor provides an easy-to-use cross-platform API - * for monitoring network connectivity. On Linux, the available - * implementations are based on the kernel's netlink interface and - * on NetworkManager. - * - * There is also an implementation for use inside Flatpak sandboxes. - * @newin{2,44} */ class NetworkMonitor : public Glib::Interface diff --git a/gio/src/notification.hg b/gio/src/notification.hg index 2ab0384..df9a7ee 100644 --- a/gio/src/notification.hg +++ b/gio/src/notification.hg @@ -27,6 +27,7 @@ namespace Gio { class Icon; +_WRAP_ENUM(NotificationPriority, GNotificationPriority, newin "2,44") /** User Notifications (pop up messages). * @@ -64,16 +65,14 @@ protected: _IGNORE(g_notification_new) public: - _WRAP_ENUM(Priority, GNotificationPriority, newin "2,44") - _WRAP_METHOD_DOCS_ONLY(g_notification_new) _WRAP_CREATE(const Glib::ustring& title) _WRAP_METHOD(void set_title(const Glib::ustring& title), g_notification_set_title) _WRAP_METHOD(void set_body(const Glib::ustring& body), g_notification_set_body) _WRAP_METHOD(void set_icon(const Glib::RefPtr& icon), g_notification_set_icon) - _IGNORE(g_notification_set_urgent) - _WRAP_METHOD(void set_priority(Priority priority = Priority::NORMAL), g_notification_set_priority, newin "2,44") + _WRAP_METHOD(void set_urgent(bool urgent = true), g_notification_set_urgent, deprecated "Use set_priority() instead.") + _WRAP_METHOD(void set_priority(NotificationPriority priority = NOTIFICATION_PRIORITY_NORMAL), g_notification_set_priority, newin "2,44") _WRAP_METHOD(void add_button(const Glib::ustring& label, const Glib::ustring& detailed_action), g_notification_add_button) diff --git a/gio/src/outputstream.ccg b/gio/src/outputstream.ccg index da48f7d..6ba8fe4 100644 --- a/gio/src/outputstream.ccg +++ b/gio/src/outputstream.ccg @@ -19,8 +19,6 @@ #include #include "slot_async.h" -using SpliceFlags = Gio::OutputStream::SpliceFlags; - namespace Gio { @@ -78,7 +76,7 @@ OutputStream::write_all_async( void OutputStream::splice_async(const Glib::RefPtr& source, const SlotAsyncReady& slot, - const Glib::RefPtr& cancellable, SpliceFlags flags, int io_priority) + const Glib::RefPtr& cancellable, OutputStreamSpliceFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -92,7 +90,7 @@ OutputStream::splice_async(const Glib::RefPtr& source, const SlotAs void OutputStream::splice_async(const Glib::RefPtr& source, const SlotAsyncReady& slot, - SpliceFlags flags, int io_priority) + OutputStreamSpliceFlags flags, int io_priority) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -228,7 +226,7 @@ OutputStream::write_bytes_async( gssize OutputStream::splice(const Glib::RefPtr& source, - const Glib::RefPtr& cancellable, SpliceFlags flags) + const Glib::RefPtr& cancellable, OutputStreamSpliceFlags flags) { GError* gerror = nullptr; gssize retvalue = g_output_stream_splice(gobj(), Glib::unwrap(source), @@ -240,7 +238,7 @@ OutputStream::splice(const Glib::RefPtr& source, } gssize -OutputStream::splice(const Glib::RefPtr& source, SpliceFlags flags) +OutputStream::splice(const Glib::RefPtr& source, OutputStreamSpliceFlags flags) { GError* gerror = nullptr; gssize retvalue = g_output_stream_splice( diff --git a/gio/src/outputstream.hg b/gio/src/outputstream.hg index c87f23f..835a0a5 100644 --- a/gio/src/outputstream.hg +++ b/gio/src/outputstream.hg @@ -26,6 +26,7 @@ _PINCLUDE(gio/gio.h) // for GOutputStreamSpliceFlags namespace Gio { +_WRAP_ENUM(OutputStreamSpliceFlags, GOutputStreamSpliceFlags, NO_GTYPE) /** Base class for implementing streaming output. * @@ -41,7 +42,6 @@ protected: _CTOR_DEFAULT public: - _WRAP_ENUM(SpliceFlags, GOutputStreamSpliceFlags, NO_GTYPE) _WRAP_METHOD(gssize write(const void* buffer, gsize count, const Glib::RefPtr& cancellable{?}), g_output_stream_write, @@ -204,21 +204,21 @@ public: /** Splices an input stream into an output stream. * * @param source An InputStream. - * @param flags A set of SpliceFlags. + * @param flags A set of OutputStreamSpliceFlags. * @param cancellable A Cancellable object. * ignore. * @return A #gssize containing the size of the data spliced. */ - gssize splice(const Glib::RefPtr& source, const Glib::RefPtr& cancellable, SpliceFlags flags = SpliceFlags::NONE); + gssize splice(const Glib::RefPtr& source, const Glib::RefPtr& cancellable, OutputStreamSpliceFlags flags = OUTPUT_STREAM_SPLICE_NONE); /** Splices an input stream into an output stream. * * @param source An InputStream. - * @param flags A set of SpliceFlags. + * @param flags A set of OutputStreamSpliceFlags. * ignore. * @return A #gssize containing the size of the data spliced. */ - gssize splice(const Glib::RefPtr& source, SpliceFlags flags = SpliceFlags::NONE); + gssize splice(const Glib::RefPtr& source, OutputStreamSpliceFlags flags = OUTPUT_STREAM_SPLICE_NONE); _IGNORE(g_output_stream_splice) _WRAP_METHOD(bool flush(const Glib::RefPtr& cancellable{?}), @@ -410,10 +410,10 @@ public: * @param source An InputStream. * @param slot Callback slot to call when the request is satisfied. * @param cancellable Cancellable object. - * @param flags A set of SpliceFlags. + * @param flags A set of OutputStreamSpliceFlags. * @param io_priority The io priority of the request. */ - void splice_async(const Glib::RefPtr& source, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, SpliceFlags flags = SpliceFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void splice_async(const Glib::RefPtr& source, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, OutputStreamSpliceFlags flags = OUTPUT_STREAM_SPLICE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); /** Splices a stream asynchronously. * When the operation is finished @a slot will be called. @@ -425,10 +425,10 @@ public: * * @param source An InputStream. * @param slot Callback slot to call when the request is satisfied. - * @param flags A set of SpliceFlags. + * @param flags A set of OutputStreamSpliceFlags. * @param io_priority The io priority of the request. */ - void splice_async(const Glib::RefPtr& source, const SlotAsyncReady& slot, SpliceFlags flags = SpliceFlags::NONE, int io_priority = Glib::PRIORITY_DEFAULT); + void splice_async(const Glib::RefPtr& source, const SlotAsyncReady& slot, OutputStreamSpliceFlags flags = OUTPUT_STREAM_SPLICE_NONE, int io_priority = Glib::PRIORITY_DEFAULT); _IGNORE(g_output_stream_splice_async) @@ -502,12 +502,13 @@ protected: _WRAP_METHOD(bool set_pending(), g_output_stream_set_pending, errthrow, newin "2,50") _WRAP_METHOD(void clear_pending(), g_output_stream_clear_pending, newin "2,50") + //TODO: When we can break ABI, add vfuncs. See https://bugzilla.gnome.org/show_bug.cgi?id=572471 #m4 _CONVERSION(`GCancellable*', `const Glib::RefPtr&', `Glib::wrap($3, true)') #m4 _CONVERSION(`GInputStream*', `const Glib::RefPtr&', `Glib::wrap($3, true)') - _WRAP_VFUNC(gssize write(const void* buffer, gsize count, const Glib::RefPtr& cancellable), write_fn, errthrow, err_return_value -1) - _WRAP_VFUNC(gssize splice(const Glib::RefPtr& source, const Glib::RefPtr& cancellable{.}, SpliceFlags flags{.}), splice, errthrow, err_return_value -1) - _WRAP_VFUNC(bool flush(const Glib::RefPtr& cancellable), flush, errthrow) - _WRAP_VFUNC(bool close(const Glib::RefPtr& cancellable), close_fn, errthrow) + //_WRAP_VFUNC(gssize write(const void* buffer, gsize count, const Glib::RefPtr& cancellable), write_fn, errthrow, err_return_value -1) + //_WRAP_VFUNC(gssize splice(const Glib::RefPtr& source, const Glib::RefPtr& cancellable{.}, OutputStreamSpliceFlags flags{.}), splice, errthrow, err_return_value -1) + //_WRAP_VFUNC(bool flush(const Glib::RefPtr& cancellable), flush, errthrow) + //_WRAP_VFUNC(bool close(const Glib::RefPtr& cancellable), close_fn, errthrow) }; } // namespace Gio diff --git a/gio/src/pollableinputstream.hg b/gio/src/pollableinputstream.hg index 0000620..7dc7a45 100644 --- a/gio/src/pollableinputstream.hg +++ b/gio/src/pollableinputstream.hg @@ -29,12 +29,9 @@ namespace Gio class Cancellable; -// GPollableInputStream requires GInputStream (a GObject), but Gio::PollableInputStream -// shall not be derived from Gio::InputStream, like the Gio::Tls[Client|Server]Connection -// interfaces are derived from Gio::TlsConnection. The unusual Gio::TlsConnection class -// hierarchy is possible only because no subclass of Glib::Object implements -// Gio::Tls[Client|Server]Connection. -// See https://bugzilla.gnome.org/show_bug.cgi?id=776537 +//TODO: Instead derive from InputStream, when we can break ABI, +//because the GPollableInputStream interface requires the GInputStream interface. +//LoadableIcon does a similar thing correctly, for instance. /** PollableInputStream - Interface for pollable input streams. * PollableInputStream is implemented by InputStreams that can be polled for diff --git a/gio/src/pollableoutputstream.hg b/gio/src/pollableoutputstream.hg index d285824..88915c1 100644 --- a/gio/src/pollableoutputstream.hg +++ b/gio/src/pollableoutputstream.hg @@ -29,12 +29,9 @@ namespace Gio class Cancellable; -// GPollableOutputStream requires GOutputStream (a GObject), but Gio::PollableOutputStream -// shall not be derived from Gio::OutputStream, like the Gio::Tls[Client|Server]Connection -// interfaces are derived from Gio::TlsConnection. The unusual Gio::TlsConnection class -// hierarchy is possible only because no subclass of Glib::Object implements -// Gio::Tls[Client|Server]Connection. -// See https://bugzilla.gnome.org/show_bug.cgi?id=776537 +//TODO: Instead derive from OutputStream, when we can break ABI, +//because the GPollableOutputStream interface requires the GOutputStream interface. +//LoadableIcon does a similar thing correctly, for instance. /** PollableOutputStream - Interface for pollable output streams. * PollableOutputStream is implemented by OutputStreams that can be polled for diff --git a/gio/src/propertyaction.hg b/gio/src/propertyaction.hg deleted file mode 100644 index 5037146..0000000 --- a/gio/src/propertyaction.hg +++ /dev/null @@ -1,121 +0,0 @@ -/* Copyright (C) 2017 The giomm Development Team - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library. If not, see . - */ - -#include -#include -#include - -_DEFS(giomm,gio) -_PINCLUDE(glibmm/private/object_p.h) - -namespace Gio -{ -/** An Action reflecting a Glib::Object property. - * - * A %PropertyAction is a way to get an Action with a state value - * reflecting and controlling the value of a Glib::Object property. - * - * The state of the action will correspond to the value of the property. - * Changing it will change the property (assuming the requested value - * matches the requirements as specified in the GParamSpec, used when the - * property was installed). - * - * Only the most common types are presently supported. Booleans are - * mapped to booleans, strings to strings, signed/unsigned integers to - * int32/uint32 and floats and doubles to doubles. - * - * If the property is an enum then the state will be string-typed and - * conversion will automatically be performed between the enum value and - * "nick" string as per the GEnumValue table. - * - * Flags types are not currently supported. - * - * Properties of object types, boxed types and pointer types are not - * supported and probably never will be. - * - * Properties of Glib::Variant types are not currently supported. - * - * If the property is boolean-valued then the action will have a nullptr - * parameter type, and activating the action (with no parameter) will - * toggle the value of the property. - * - * In all other cases, the parameter type will correspond to the type of - * the property. - * - * The general idea here is to reduce the number of locations where a - * particular piece of state is kept (and therefore has to be synchronised - * between). %PropertyAction does not have a separate state that is kept - * in sync with the property value -- its state is the property value. - * - * For example, it might be useful to create an Action corresponding to - * property_visible_child_name() of a Gtk::Stack so that the current - * page can be switched from a menu. The active radio indication in the - * menu is then directly determined from the active page of the Gtk::Stack. - * - * An anti-example would be binding property_active_id() on a Gtk::ComboBox. - * This is because the state of the combobox itself is probably uninteresting - * and is actually being used to control something else. - * - * Another anti-example would be to bind to property_visible_child_name() - * of a Gtk::Stack if this value is actually stored in Gio::Settings. - * In that case, the real source of the value is - * Gio::Settings. If you want an Action to control a setting stored in - * Gio::Settings, see Gio::Settings::create_action() instead, and possibly - * combine its use with Gio::Settings::bind(). - * - * @newin{2,52} - */ -class PropertyAction : public Glib::Object, public Action -{ - _CLASS_GOBJECT(PropertyAction, GPropertyAction, G_PROPERTY_ACTION, Glib::Object, GObject) - _IMPLEMENTS_INTERFACE(Action) - -protected: - PropertyAction(const Glib::ustring& name, const Glib::PropertyProxy_Base& property_proxy, - bool invert_boolean = false); - -public: - /** Creates an Action corresponding to the value of property @a property_proxy. - * - * The property must be existent and readable and writable (and not construct-only). - * - * This function takes a reference on the property's object and doesn't - * release it until the action is destroyed. - * - * @param name The name of the action to create. - * @param property_proxy The property to bind. - * @param invert_boolean If true, the state of the action will be - * the negation of the property value, provided the property is boolean. - * @return A new %PropertyAction. - * - * @newin{2,52} - */ - _WRAP_CREATE(const Glib::ustring& name, const Glib::PropertyProxy_Base& property_proxy, - bool invert_boolean = false) - - _WRAP_PROPERTY("name", Glib::ustring, newin "2,52") - _WRAP_PROPERTY("parameter-type", Glib::VariantType, newin "2,52") - _WRAP_PROPERTY("enabled", bool, newin "2,52") - _WRAP_PROPERTY("state-type", Glib::VariantType, newin "2,52") - _WRAP_PROPERTY("state", Glib::VariantBase, newin "2,52") - //_WRAP_PROPERTY("object", Glib::ObjectBase) // write-only, construct-only - //_WRAP_PROPERTY("property-name", Glib::ustring) // write-only, construct-only - _WRAP_PROPERTY("invert-boolean", bool, newin "2,52") - - // There are no methods (apart from ctor and create), signals or vfuncs. -}; - -} // namespace Gio diff --git a/gio/src/proxyaddress.hg b/gio/src/proxyaddress.hg index 44a9835..5d64bdd 100644 --- a/gio/src/proxyaddress.hg +++ b/gio/src/proxyaddress.hg @@ -65,10 +65,10 @@ public: _WRAP_PROPERTY("protocol", Glib::ustring) _WRAP_PROPERTY("destination_protocol", Glib::ustring) _WRAP_PROPERTY("destination_hostname", Glib::ustring) - // Don't use guint16 in _WRAP_PROPERTY(). - // There is no Glib::Value<> specialization for guint16. - // Glib::Value exists, and guint is a typedef of unsigned int. - _WRAP_PROPERTY("destination_port", guint) + +//TODO: This should really be a guint16: + _WRAP_PROPERTY("destination_port", Glib::ustring) + _WRAP_PROPERTY("username", Glib::ustring) _WRAP_PROPERTY("password", Glib::ustring) _WRAP_PROPERTY("uri", Glib::ustring) diff --git a/gio/src/proxyresolver.hg b/gio/src/proxyresolver.hg index fb2d047..43c2af4 100644 --- a/gio/src/proxyresolver.hg +++ b/gio/src/proxyresolver.hg @@ -49,7 +49,7 @@ public: _WRAP_METHOD(bool is_supported() const, g_proxy_resolver_is_supported) - //TODO: Use std::string instead of ustring?: + //TODO: Use std::string instead of ustring (StringArrayHandle uses ustring)?: #m4 _CONVERSION(`gchar**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') _WRAP_METHOD(std::vector lookup(const Glib::ustring& uri, const Glib::RefPtr& cancellable), g_proxy_resolver_lookup, errthrow) diff --git a/gio/src/remoteactiongroup.hg b/gio/src/remoteactiongroup.hg index 77c3fe2..e3b3cd6 100644 --- a/gio/src/remoteactiongroup.hg +++ b/gio/src/remoteactiongroup.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2012 The giomm Development Team * * This library is free software; you can redistribute it and/or @@ -27,6 +29,12 @@ typedef struct _GRemoteActionGroupInterface GRemoteActionGroupInterface; namespace Gio { + +//TODO: Instead derive from ActionGroup, when we can break ABI, +//because the GRemoteActionGroup interface requires the GActionGroup interface. +//LoadableIcon does a similar thing correctly, for instance. + + /** RemoteActionGroup - a ActionGroup that interacts with other processes. * The RemoteActionGroup interface is implemented by ActionGroup instances that * either transmit action invocations to other processes or receive action @@ -58,8 +66,8 @@ public: #m4 _CONVERSION(`GVariant*',`const Glib::VariantBase&',`Glib::wrap($3, true)') - _WRAP_VFUNC(void activate_action_full(const Glib::ustring& action_name, const Glib::VariantBase& parameter, const Glib::VariantBase& platform_data), "activate_action_full") - _WRAP_VFUNC(void change_action_state_full(const Glib::ustring& action_name, const Glib::VariantBase& value, const Glib::VariantBase& platform_data), "change_action_state_full") + _WRAP_VFUNC(void activate_action(const Glib::ustring& action_name, const Glib::VariantBase& parameter, const Glib::VariantBase& platform_data), "activate_action_full") + _WRAP_VFUNC(void change_action_state(const Glib::ustring& action_name, const Glib::VariantBase& value, const Glib::VariantBase& platform_data), "change_action_state_full") }; } // namespace Gio diff --git a/gio/src/resolver.ccg b/gio/src/resolver.ccg index 6efdf6b..77b6f5e 100644 --- a/gio/src/resolver.ccg +++ b/gio/src/resolver.ccg @@ -18,22 +18,6 @@ #include #include "slot_async.h" -namespace { - -struct SrvTargetListTraits -{ - using CppType = Gio::SrvTarget; - using CType = const GSrvTarget*; - using CTypeNonConst = GSrvTarget*; - - static CType to_c_type(const CppType& item) { return item.gobj(); } - static CType to_c_type(CType ptr) { return ptr; } - static CppType to_cpp_type(CType item) { return CppType(const_cast(item), true /* take_copy */); } - static void release_c_type(CType item) { g_srv_target_free(const_cast(item)); } -}; - -} // anonymous namespace - namespace Gio { @@ -110,7 +94,7 @@ Resolver::lookup_service_async(const Glib::ustring& service, const Glib::ustring } void -Resolver::lookup_records_async(const Glib::ustring& rrname, RecordType record_type, +Resolver::lookup_records_async(const Glib::ustring& rrname, ResolverRecordType record_type, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable) { auto slot_copy = new SlotAsyncReady(slot); @@ -122,7 +106,7 @@ Resolver::lookup_records_async(const Glib::ustring& rrname, RecordType record_ty void Resolver::lookup_records_async( - const Glib::ustring& rrname, RecordType record_type, const SlotAsyncReady& slot) + const Glib::ustring& rrname, ResolverRecordType record_type, const SlotAsyncReady& slot) { auto slot_copy = new SlotAsyncReady(slot); diff --git a/gio/src/resolver.hg b/gio/src/resolver.hg index 52d7fe2..e01be3c 100644 --- a/gio/src/resolver.hg +++ b/gio/src/resolver.hg @@ -35,6 +35,8 @@ class VariantContainerBase; namespace Gio { +_WRAP_ENUM(ResolverRecordType, GResolverRecordType) + /** Asynchronous and cancellable DNS resolver * * Resolver provides cancellable synchronous and asynchronous DNS resolution, @@ -56,8 +58,6 @@ class Resolver protected: public: - _WRAP_ENUM(RecordType, GResolverRecordType) - static Glib::RefPtr get_default(); _IGNORE(g_resolver_get_default) static void set_default(const Glib::RefPtr& resolver); @@ -66,8 +66,8 @@ public: // g_resolver_free_addresses is just a C convenience function _IGNORE(g_resolver_free_addresses) -#m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector> lookup_by_name(const Glib::ustring& hostname, const Glib::RefPtr& cancellable{?}), g_resolver_lookup_by_name, errthrow) +#m4 _CONVERSION(`GList*',`Glib::ListHandle< Glib::RefPtr >',`$2($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(Glib::ListHandle< Glib::RefPtr > lookup_by_name(const Glib::ustring& hostname, const Glib::RefPtr& cancellable{?}), g_resolver_lookup_by_name, errthrow) /** Begins asynchronously resolving hostname to determine its associated IP address(es), and eventually calls @a slot, which must call * lookup_by_name_finish() to get the result. See lookup_by_name() for more details. @@ -87,7 +87,7 @@ public: void lookup_by_name_async(const Glib::ustring& hostname, const SlotAsyncReady& slot); _IGNORE(g_resolver_lookup_by_name_async) - _WRAP_METHOD(std::vector> lookup_by_name_finish(const Glib::RefPtr& result), g_resolver_lookup_by_name_finish, errthrow) + _WRAP_METHOD(Glib::ListHandle< Glib::RefPtr > lookup_by_name_finish(const Glib::RefPtr& result), g_resolver_lookup_by_name_finish, errthrow) _WRAP_METHOD(Glib::ustring lookup_by_address(const Glib::RefPtr& address, const Glib::RefPtr& cancellable{?}), g_resolver_lookup_by_address, errthrow) @@ -111,8 +111,8 @@ public: _WRAP_METHOD(Glib::ustring lookup_by_address_finish(const Glib::RefPtr& result), g_resolver_lookup_by_address_finish, errthrow) -#m4 _CONVERSION(`GList*',`std::vector',`Glib::ListHandler::list_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector lookup_service(const Glib::ustring& service, const Glib::ustring& protocol, const Glib::ustring& domain, const Glib::RefPtr& cancellable{?}), g_resolver_lookup_service, errthrow) +#m4 _CONVERSION(`GList*',`ListHandle_SrvTarget',`$2($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(ListHandle_SrvTarget lookup_service(const Glib::ustring& service, const Glib::ustring& protocol, const Glib::ustring& domain, const Glib::RefPtr& cancellable{?}), g_resolver_lookup_service, errthrow) /** Begins asynchronously performing a DNS SRV lookup for the given service and protocol in the given domain, and eventually calls callback, * which must call lookup_service_finish() to get the final result. See glookup_service() for more details. @@ -136,11 +136,11 @@ public: void lookup_service_async(const Glib::ustring& service, const Glib::ustring& protocol, const Glib::ustring& domain, const SlotAsyncReady& slot); _IGNORE(g_resolver_lookup_service_async) - _WRAP_METHOD(std::vector lookup_service_finish(const Glib::RefPtr& result), g_resolver_lookup_service_finish, errthrow) + _WRAP_METHOD(ListHandle_SrvTarget lookup_service_finish(const Glib::RefPtr& result), g_resolver_lookup_service_finish, errthrow) #m4 _CONVERSION(`GList*',`std::vector',`Glib::ListHandler::list_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector lookup_records(const Glib::ustring& rrname, RecordType record_type, const Glib::RefPtr& cancellable{?}), g_resolver_lookup_records, errthrow) + _WRAP_METHOD(std::vector lookup_records(const Glib::ustring& rrname, ResolverRecordType record_type, const Glib::RefPtr& cancellable{?}), g_resolver_lookup_records, errthrow) /** Begins asynchronously performing a DNS lookup for the given @a rrname, * and eventually calls @a slot, which must call lookup_records_finish() to @@ -153,17 +153,18 @@ public: * @newin{2,36} */ void lookup_records_async(const Glib::ustring& rrname, - RecordType record_type, const SlotAsyncReady& slot, + ResolverRecordType record_type, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable); _IGNORE(g_resolver_lookup_records_async) /// A non-cancellable version of lookup_records_async(). void lookup_records_async(const Glib::ustring& rrname, - RecordType record_type, const SlotAsyncReady& slot); + ResolverRecordType record_type, const SlotAsyncReady& slot); _WRAP_METHOD(std::vector lookup_records_finish(const Glib::RefPtr& result), g_resolver_lookup_records_finish, errthrow) - _WRAP_SIGNAL(void reload(), reload) + //TODO: Remove no_default_handler when we can break ABI: + _WRAP_SIGNAL(void reload(), reload, no_default_handler) }; std::string hostname_to_ascii (const Glib::ustring& hostname); diff --git a/gio/src/resource.ccg b/gio/src/resource.ccg index d8305b3..78479de 100644 --- a/gio/src/resource.ccg +++ b/gio/src/resource.ccg @@ -18,10 +18,10 @@ namespace Gio { -// Hand-coded because we want Flags& instead of guint32&. +// Hand-coded because we want ResourceFlags& instead of guint32&. void -Resource::get_info(const std::string& path, gsize& size, Flags& flags, - LookupFlags lookup_flags) const +Resource::get_info(const std::string& path, gsize& size, ResourceFlags& flags, + ResourceLookupFlags lookup_flags) const { guint32 file_flags = 0; GError* gerror = nullptr; @@ -31,11 +31,11 @@ Resource::get_info(const std::string& path, gsize& size, Flags& flags, (GResourceLookupFlags)lookup_flags, &size, &file_flags, &gerror); if (gerror) ::Glib::Error::throw_exception(gerror); - flags = static_cast(file_flags); + flags = static_cast(file_flags); } void -Resource::get_file_exists(const std::string& path, LookupFlags lookup_flags) const +Resource::get_file_exists(const std::string& path, ResourceLookupFlags lookup_flags) const { GError* gerror = nullptr; g_resource_get_info(const_cast(gobj()), path.c_str(), @@ -45,17 +45,17 @@ Resource::get_file_exists(const std::string& path, LookupFlags lookup_flags) con } bool -Resource::get_file_exists_nothrow(const std::string& path, LookupFlags lookup_flags) const +Resource::get_file_exists_nothrow(const std::string& path, ResourceLookupFlags lookup_flags) const { return g_resource_get_info(const_cast(gobj()), path.c_str(), (GResourceLookupFlags)lookup_flags, nullptr, nullptr, nullptr); } -// Hand-coded because we want Flags& instead of guint32&. +// Hand-coded because we want ResourceFlags& instead of guint32&. // static void Resource::get_info_global( - const std::string& path, gsize& size, Flags& flags, LookupFlags lookup_flags) + const std::string& path, gsize& size, ResourceFlags& flags, ResourceLookupFlags lookup_flags) { guint32 file_flags = 0; GError* gerror = nullptr; @@ -65,12 +65,12 @@ Resource::get_info_global( path.c_str(), (GResourceLookupFlags)lookup_flags, &size, &file_flags, &gerror); if (gerror) ::Glib::Error::throw_exception(gerror); - flags = static_cast(file_flags); + flags = static_cast(file_flags); } // static void -Resource::get_file_exists_global(const std::string& path, LookupFlags lookup_flags) +Resource::get_file_exists_global(const std::string& path, ResourceLookupFlags lookup_flags) { GError* gerror = nullptr; g_resources_get_info(path.c_str(), (GResourceLookupFlags)lookup_flags, nullptr, nullptr, &gerror); @@ -80,7 +80,7 @@ Resource::get_file_exists_global(const std::string& path, LookupFlags lookup_fla // static bool -Resource::get_file_exists_global_nothrow(const std::string& path, LookupFlags lookup_flags) +Resource::get_file_exists_global_nothrow(const std::string& path, ResourceLookupFlags lookup_flags) { return g_resources_get_info( path.c_str(), (GResourceLookupFlags)lookup_flags, nullptr, nullptr, nullptr); diff --git a/gio/src/resource.hg b/gio/src/resource.hg index fda236b..be41fac 100644 --- a/gio/src/resource.hg +++ b/gio/src/resource.hg @@ -34,6 +34,9 @@ namespace Gio */ _WRAP_GERROR(ResourceError, GResourceError, G_RESOURCE_ERROR, NO_GTYPE, newin "2,34") +_WRAP_ENUM(ResourceFlags, GResourceFlags, newin "2,44") +_WRAP_ENUM(ResourceLookupFlags, GResourceLookupFlags, newin "2,44") + /** %Resource framework. * * Applications and libraries often contain binary or textual data that is @@ -130,16 +133,13 @@ class Resource final _IGNORE(g_resource_ref, g_resource_unref) public: - _WRAP_ENUM(Flags, GResourceFlags, newin "2,44") - _WRAP_ENUM(LookupFlags, GResourceLookupFlags, newin "2,44") - - _WRAP_METHOD(static Glib::RefPtr create_from_data(const Glib::RefPtr& data), g_resource_new_from_data, errthrow "Glib::FileError", newin "2,44") - _WRAP_METHOD(static Glib::RefPtr create_from_file(const std::string& filename), g_resource_load, errthrow "Glib::FileError", newin "2,44") - _WRAP_METHOD(Glib::RefPtr open_stream(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE) const, g_resource_open_stream, errthrow "Gio::ResourceError", newin "2,44") - _WRAP_METHOD(Glib::RefPtr lookup_data(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE) const, g_resource_lookup_data, errthrow "Gio::ResourceError", newin "2,44") + _WRAP_METHOD(static Glib::RefPtr create_from_data(const Glib::RefPtr& data), g_resource_new_from_data, errthrow, newin "2,44") + _WRAP_METHOD(static Glib::RefPtr create_from_file(const std::string& filename), g_resource_load, errthrow, newin "2,44") + _WRAP_METHOD(Glib::RefPtr open_stream(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE) const, g_resource_open_stream, errthrow, newin "2,44") + _WRAP_METHOD(Glib::RefPtr lookup_data(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE) const, g_resource_lookup_data, errthrow, newin "2,44") #m4 _CONVERSION(`char**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector enumerate_children(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE) const, g_resource_enumerate_children, errthrow "Gio::ResourceError", newin "2,44") + _WRAP_METHOD(std::vector enumerate_children(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE) const, g_resource_enumerate_children, errthrow, newin "2,44") /** Looks for a file at the specified @a path in the resource and * if found returns information about it. @@ -151,10 +151,10 @@ public: * @param path A pathname inside the resource. * @param[out] size A location to place the length of the contents of the file. * @param[out] flags A location to place the flags about the file. - * @param lookup_flags A LookupFlags. + * @param lookup_flags A ResourceLookupFlags. * @throw Gio::ResourceError if the file was not found. */ - void get_info(const std::string& path, gsize& size, Flags& flags, LookupFlags lookup_flags = LookupFlags::NONE) const; + void get_info(const std::string& path, gsize& size, ResourceFlags& flags, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE) const; _IGNORE(g_resource_get_info) /** Looks for a file at the specified @a path in the resource. @@ -164,10 +164,10 @@ public: * @newin{2,44} * * @param path A pathname inside the resource. - * @param lookup_flags A LookupFlags. + * @param lookup_flags A ResourceLookupFlags. * @throw Gio::ResourceError if the file was not found. */ - void get_file_exists(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE) const; + void get_file_exists(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE) const; /** Looks for a file at the specified @a path in the resource. * @@ -177,17 +177,17 @@ public: * @newin{2,44} * * @param path A pathname inside the resource. - * @param lookup_flags A LookupFlags. + * @param lookup_flags A ResourceLookupFlags. * @return true if the file was found, false if there were errors. */ - bool get_file_exists_nothrow(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE) const; + bool get_file_exists_nothrow(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE) const; // 'register' is a keyword. Can't be the name of a method. _WRAP_METHOD(void register_global(), g_resources_register, newin "2,44") _WRAP_METHOD(void unregister_global(), g_resources_unregister, newin "2,44") - _WRAP_METHOD(static Glib::RefPtr open_stream_global(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE), g_resources_open_stream, errthrow "Gio::ResourceError", newin "2,44") - _WRAP_METHOD(static Glib::RefPtr lookup_data_global(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE), g_resources_lookup_data, errthrow "Gio::ResourceError", newin "2,44") - _WRAP_METHOD(static std::vector enumerate_children_global(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE), g_resources_enumerate_children, errthrow "Gio::ResourceError", newin "2,44") + _WRAP_METHOD(static Glib::RefPtr open_stream_global(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE), g_resources_open_stream, errthrow, newin "2,44") + _WRAP_METHOD(static Glib::RefPtr lookup_data_global(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE), g_resources_lookup_data, errthrow, newin "2,44") + _WRAP_METHOD(static std::vector enumerate_children_global(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE), g_resources_enumerate_children, errthrow, newin "2,44") /** Looks for a file at the specified @a path in the set of * globally registered resources and if found returns information about it. @@ -199,10 +199,10 @@ public: * @param path A pathname inside the resource. * @param[out] size A location to place the length of the contents of the file. * @param[out] flags A location to place the flags about the file. - * @param lookup_flags A LookupFlags. + * @param lookup_flags A ResourceLookupFlags. * @throw Gio::ResourceError if the file was not found. */ - static void get_info_global(const std::string& path, gsize& size, Flags& flags, LookupFlags lookup_flags = LookupFlags::NONE); + static void get_info_global(const std::string& path, gsize& size, ResourceFlags& flags, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE); _IGNORE(g_resources_get_info) /** Looks for a file at the specified @a path in the set of @@ -213,10 +213,10 @@ public: * @newin{2,44} * * @param path A pathname inside the resource. - * @param lookup_flags A LookupFlags. + * @param lookup_flags A ResourceLookupFlags. * @throw Gio::ResourceError if the file was not found. */ - static void get_file_exists_global(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE); + static void get_file_exists_global(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE); /** Looks for a file at the specified @a path in the set of * globally registered resources. @@ -227,10 +227,10 @@ public: * @newin{2,44} * * @param path A pathname inside the resource. - * @param lookup_flags A LookupFlags. + * @param lookup_flags A ResourceLookupFlags. * @return true if the file was found, false if there were errors. */ - static bool get_file_exists_global_nothrow(const std::string& path, LookupFlags lookup_flags = LookupFlags::NONE); + static bool get_file_exists_global_nothrow(const std::string& path, ResourceLookupFlags lookup_flags = RESOURCE_LOOKUP_FLAGS_NONE); _IGNORE(g_static_resource_init, g_static_resource_fini, g_static_resource_get_resource)dnl//Used only by the glib-compile-resources command }; diff --git a/gio/src/settings.ccg b/gio/src/settings.ccg index 05ff5e2..05595ac 100644 --- a/gio/src/settings.ccg +++ b/gio/src/settings.ccg @@ -17,7 +17,6 @@ #include #include #include -#include namespace Gio { @@ -54,7 +53,7 @@ Settings::get_default_value(const Glib::ustring& key, Glib::VariantBase& value) } void Settings::bind( - const Glib::ustring& key, const Glib::PropertyProxy_Base& property_proxy, BindFlags flags) + const Glib::ustring& key, const Glib::PropertyProxy_Base& property_proxy, SettingsBindFlags flags) { bind(key, property_proxy.get_object(), property_proxy.get_name(), flags); } @@ -66,4 +65,14 @@ Settings::bind_writable( bind_writable(key, property_proxy.get_object(), property_proxy.get_name(), inverted); } +_DEPRECATE_IFDEF_START +G_GNUC_BEGIN_IGNORE_DEPRECATIONS +std::vector +Settings::list_schemas() +{ + return Glib::ArrayHandler::array_to_vector( + g_settings_list_schemas(), Glib::OWNERSHIP_NONE); +} +G_GNUC_END_IGNORE_DEPRECATIONS +_DEPRECATE_IFDEF_END } diff --git a/gio/src/settings.hg b/gio/src/settings.hg index c0abb31..029eb6a 100644 --- a/gio/src/settings.hg +++ b/gio/src/settings.hg @@ -16,6 +16,7 @@ _CONFIGINCLUDE(giommconfig.h) +#include #include #include #include @@ -25,7 +26,8 @@ _PINCLUDE(glibmm/private/object_p.h) namespace Gio { -class SettingsSchema; + + _WRAP_ENUM(SettingsBindFlags, GSettingsBindFlags) /** A high-level API for application settings * @@ -38,22 +40,17 @@ class Settings : public Glib::Object { _CLASS_GOBJECT(Settings, GSettings, G_SETTINGS, Glib::Object, GObject) -public: - _WRAP_ENUM(BindFlags, GSettingsBindFlags) - protected: _WRAP_CTOR(Settings(const Glib::ustring& schema_id), g_settings_new) _WRAP_CTOR(Settings(const Glib::ustring& schema_id, const Glib::ustring& path), g_settings_new_with_path) //TODO: Requires SettingsBackend: _WRAP_CTOR(Settings(const Glib::ustring& schema_id, const Glib::RefPtr& backend), g_settings_new_with_backend) //TODO: Requires SettingsBackend: _WRAP_CTOR(Settings(const Glib::ustring& schema_id, const Glib::RefPtr& backend, const Glib::ustring& path), g_settings_new_with_backend_and_path) - //TODO: Requires SettingsBackend: _WRAP_CTOR(Settings(const Glib::RefPtr& settings_schema, const Glib::RefPtr& backend, const Glib::ustring& path), g_settings_new_full) public: _WRAP_CREATE(const Glib::ustring& schema_id) _WRAP_CREATE(const Glib::ustring& schema_id, const Glib::ustring& path) //TODO: Requires SettingsBackend: _WRAP_CREATE(const Glib::ustring& schema_id, const Glib::RefPtr& backend) //TODO: Requires SettingsBackend: _WRAP_CREATE(const Glib::ustring& schema_id, const Glib::RefPtr& backend, const Glib::ustring& path) - //TODO: Requires SettingsBackend: _WRAP_CREATE(const Glib::RefPtr& settings_schema, const Glib::RefPtr& backend, const Glib::ustring& path) //TODO: Rename these to get/set_*_value_variant() and add templated get/set_*_value() methods as elsewhere? _WRAP_METHOD(bool set_value(const Glib::ustring& key, const Glib::VariantBase& value), g_settings_set_value) @@ -134,28 +131,33 @@ public: _IGNORE(g_settings_get_default_value) _WRAP_METHOD(int get_int(const Glib::ustring& key) const, g_settings_get_int) - _WRAP_METHOD(bool set_int(const Glib::ustring& key, int value), g_settings_set_int) + _WRAP_METHOD(void set_int(const Glib::ustring& key, int value), g_settings_set_int) _WRAP_METHOD(gint64 get_int64(const Glib::ustring& key) const, g_settings_get_int64) - _WRAP_METHOD(bool set_int64(const Glib::ustring& key, gint64 value), g_settings_set_int64) + _WRAP_METHOD(void set_int64(const Glib::ustring& key, gint64 value), g_settings_set_int64) _WRAP_METHOD(guint get_uint(const Glib::ustring& key) const, g_settings_get_uint) - _WRAP_METHOD(bool set_uint(const Glib::ustring& key, guint value), g_settings_set_uint) + _WRAP_METHOD(void set_uiint(const Glib::ustring& key, guint value), g_settings_set_uint, deprecated "Use set_uint() instead.") + _WRAP_METHOD(void set_uint(const Glib::ustring& key, guint value), g_settings_set_uint) _WRAP_METHOD(guint64 get_uint64(const Glib::ustring& key) const, g_settings_get_uint64) - _WRAP_METHOD(bool set_uint64(const Glib::ustring& key, guint64 value), g_settings_set_uint64) + _WRAP_METHOD(void set_uint64(const Glib::ustring& key, guint64 value), g_settings_set_uint64) _WRAP_METHOD(bool get_boolean(const Glib::ustring& key) const, g_settings_get_boolean) - _WRAP_METHOD(bool set_boolean(const Glib::ustring& key, bool value), g_settings_set_boolean) + _WRAP_METHOD(void set_boolean(const Glib::ustring& key, bool value), g_settings_set_boolean) _WRAP_METHOD(Glib::ustring get_string(const Glib::ustring& key) const, g_settings_get_string) - _WRAP_METHOD(bool set_string(const Glib::ustring& key, const Glib::ustring& value), g_settings_set_string) + _WRAP_METHOD(void set_string(const Glib::ustring& key, const Glib::ustring& value), g_settings_set_string) _WRAP_METHOD(double get_double(const Glib::ustring& key) const, g_settings_get_double) - _WRAP_METHOD(bool set_double(const Glib::ustring& key, double value), g_settings_set_double) + _WRAP_METHOD(void set_double(const Glib::ustring& key, double value), g_settings_set_double) - #m4 _CONVERSION(`gchar**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector get_string_array(const Glib::ustring& key) const, g_settings_get_strv) + #m4 _CONVERSION(`gchar**',`Glib::StringArrayHandle',`Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(Glib::StringArrayHandle get_string_array(const Glib::ustring& key) const, g_settings_get_strv) - _WRAP_METHOD(bool set_string_array(const Glib::ustring& key, const std::vector& value), g_settings_set_strv) + _WRAP_METHOD(bool set_string_array(const Glib::ustring& key, const Glib::StringArrayHandle& value), g_settings_set_strv) _WRAP_METHOD(int get_enum(const Glib::ustring& key) const, g_settings_get_enum) + _WRAP_METHOD(bool get_enum(const Glib::ustring& key, int value), g_settings_set_enum, + deprecated "This method is misnamed. Use set_enum() instead.") _WRAP_METHOD(bool set_enum(const Glib::ustring& key, int value), g_settings_set_enum) _WRAP_METHOD(guint get_flags(const Glib::ustring& key) const, g_settings_get_flags) + _WRAP_METHOD(bool get_flags(const Glib::ustring& key, guint value), g_settings_set_flags, + deprecated "This method is misnamed. Use set_flags() instead.") _WRAP_METHOD(bool set_flags(const Glib::ustring& key, guint value), g_settings_set_flags) // Ignore varargs functions. @@ -172,17 +174,27 @@ public: _WRAP_METHOD(void reset(const Glib::ustring& key), g_settings_reset) +_DEPRECATE_IFDEF_START +//We must hand-code this because gmmproc is confused by the static keyword with the vector. +//#m4 _CONVERSION(`const gchar*const*',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_NONE)') + _WRAP_METHOD_DOCS_ONLY(g_settings_list_schemas) + static std::vector list_schemas(); + _IGNORE(g_settings_list_schemas) +_DEPRECATE_IFDEF_END + #m4 _CONVERSION(`gchar**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') _WRAP_METHOD(std::vector list_children() const, g_settings_list_children) - _IGNORE(g_settings_list_keys) + _WRAP_METHOD(std::vector list_keys() const, g_settings_list_keys, deprecated "Use SettingsSchema::list_kes().") _IGNORE(g_settings_get_range, g_settings_list_relocatable_schemas) // deprecated - _IGNORE(g_settings_range_check) + _WRAP_METHOD(bool range_check(const Glib::ustring& key, const Glib::VariantBase& value) const, g_settings_range_check, + deprecated "Use g_settings_schema_key_range_check() instead.") + //TODO: Wrap GSettingsSchema #m4 _CONVERSION(`Glib::ObjectBase*',`gpointer',(gpointer)$3->gobj()) - _WRAP_METHOD(void bind(const Glib::ustring& key, Glib::ObjectBase* object, const Glib::ustring& property, BindFlags flags = BindFlags::DEFAULT), g_settings_bind) - void bind(const Glib::ustring& key, const Glib::PropertyProxy_Base& property_proxy, BindFlags flags = BindFlags::DEFAULT); + _WRAP_METHOD(void bind(const Glib::ustring& key, Glib::ObjectBase* object, const Glib::ustring& property, SettingsBindFlags flags=SETTINGS_BIND_DEFAULT), g_settings_bind) + void bind(const Glib::ustring& key, const Glib::PropertyProxy_Base& property_proxy, SettingsBindFlags flags=SETTINGS_BIND_DEFAULT); // TODO: implement bind_with_mapping _WRAP_METHOD(void bind_writable(const Glib::ustring& key, Glib::ObjectBase* object, const Glib::ustring& property, bool inverted=false), g_settings_bind_writable) void bind_writable(const Glib::ustring& key, const Glib::PropertyProxy_Base& property_proxy, bool inverted=false); @@ -195,18 +207,19 @@ public: _WRAP_PROPERTY("delay-apply", bool) _WRAP_PROPERTY("has-unapplied", bool) _WRAP_PROPERTY("path", std::string) - _IGNORE_PROPERTY("schema") + _WRAP_PROPERTY("schema", Glib::ustring, deprecated "Use the 'schema-id' property instead. In a future version, this property may instead refer to a SettingsSchema.") _WRAP_PROPERTY("schema-id", Glib::ustring) - _WRAP_PROPERTY("settings-schema", Glib::RefPtr, newin "2,52") + //TODO: _WRAP_PROPERTY("settings-schema", Glib::RefPtr) - //TODO?: _WRAP_SIGNAL(bool change_event(const std::vector& keys, int n_keys), "change-event") + //TODO?: _WRAP_SIGNAL(bool change_event(const Glib::ArrayHandle& keys, int n_keys), "change-event") + //TODO: Remove two_signal_methods when we can break ABI. #m4 _CONVERSION(`const char*',`const Glib::ustring&',__GCHARP_TO_USTRING) - _WRAP_SIGNAL(void changed(const Glib::ustring& key), "changed", detail_name key) + _WRAP_SIGNAL(void changed(const Glib::ustring& key), "changed", detail_name key, two_signal_methods) _WRAP_SIGNAL(bool writable_change_event(GQuark key), "writable-change-event") - _WRAP_SIGNAL(void writable_changed(const Glib::ustring& key), writable_changed, detail_name key) + _WRAP_SIGNAL(void writable_changed(const Glib::ustring& key), writable_changed, detail_name key, two_signal_methods) }; } // namespace Gio diff --git a/gio/src/settingsschema.hg b/gio/src/settingsschema.hg index cae4b99..843f96d 100644 --- a/gio/src/settingsschema.hg +++ b/gio/src/settingsschema.hg @@ -17,6 +17,7 @@ _CONFIGINCLUDE(giommconfig.h) #include +#include _DEFS(giomm,gio) _PINCLUDE(glibmm/private/object_p.h) diff --git a/gio/src/simpleactiongroup.hg b/gio/src/simpleactiongroup.hg index d12e4a1..770b029 100644 --- a/gio/src/simpleactiongroup.hg +++ b/gio/src/simpleactiongroup.hg @@ -48,7 +48,11 @@ public: _WRAP_METHOD_DOCS_ONLY(g_simple_action_group_new) _WRAP_CREATE() - _IGNORE(g_simple_action_group_lookup, g_simple_action_group_insert, g_simple_action_group_remove) + _WRAP_METHOD(Glib::RefPtr lookup(const Glib::ustring& action_name), g_simple_action_group_lookup, refreturn, deprecated "Use ActionMap::lookup_action() instead") + _WRAP_METHOD(Glib::RefPtr lookup(const Glib::ustring& action_name) const, g_simple_action_group_lookup, refreturn, constversion, deprecated "Use ActionMap::lookup_action() instead") + + _WRAP_METHOD(void insert(const Glib::RefPtr& action), g_simple_action_group_insert, deprecated "Use ActionMap::add_action() instead") + _WRAP_METHOD(void remove(const Glib::ustring& action_name), g_simple_action_group_remove, deprecated "Use ActionMap::remove_action() instead") _IGNORE(g_simple_action_group_add_entries) // deprecated }; diff --git a/gio/src/socket.ccg b/gio/src/socket.ccg index 31cf240..767882e 100644 --- a/gio/src/socket.ccg +++ b/gio/src/socket.ccg @@ -20,13 +20,10 @@ #include #include "slot_async.h" -using Type = Gio::Socket::Type; -using Protocol = Gio::Socket::Protocol; - namespace Gio { -Socket::Socket(SocketFamily family, Type type, Protocol protocol, +Socket::Socket(SocketFamily family, SocketType type, SocketProtocol protocol, const Glib::RefPtr& cancellable) : _CONSTRUCT("family", int(family), "type", int(type), "protocol", int(protocol)) { @@ -40,17 +37,17 @@ Socket::Socket(int fd, const Glib::RefPtr& cancellable) : _CONSTRUC // static Glib::RefPtr -Socket::create(SocketFamily family, Type type, Protocol protocol, +Socket::create(SocketFamily family, SocketType type, SocketProtocol protocol, const Glib::RefPtr& cancellable) { - return Glib::make_refptr_for_instance(new Socket(family, type, protocol, cancellable)); + return Glib::RefPtr(new Socket(family, type, protocol, cancellable)); } // static Glib::RefPtr Socket::create_from_fd(int fd, const Glib::RefPtr& cancellable) { - return Glib::make_refptr_for_instance(new Socket(fd, cancellable)); + return Glib::RefPtr(new Socket(fd, cancellable)); } gssize @@ -114,7 +111,10 @@ Socket::send_with_blocking( Glib::RefPtr Socket::create_source(Glib::IOCondition condition, const Glib::RefPtr& cancellable) { - return SocketSource::create(gobj(), condition, cancellable); + // The corresponding unreference() takes place in the dtor + // of the Glib::RefPtr object below. + reference(); + return SocketSource::create(Glib::RefPtr(this), condition, cancellable); } } // namespace Gio diff --git a/gio/src/socket.hg b/gio/src/socket.hg index 233e20a..b3b0e29 100644 --- a/gio/src/socket.hg +++ b/gio/src/socket.hg @@ -30,6 +30,9 @@ namespace Gio { class SocketSource; +_WRAP_ENUM(SocketType, GSocketType) +_WRAP_ENUM(SocketProtocol, GSocketProtocol) +_WRAP_ENUM(SocketMsgFlags, GSocketMsgFlags) /** @defgroup NetworkIO Portable Network I/O Functionality */ @@ -87,13 +90,8 @@ class Socket : public Glib::Object, public Initable _CLASS_GOBJECT(Socket, GSocket, G_SOCKET, Glib::Object, GObject) _IMPLEMENTS_INTERFACE(Initable) -public: - _WRAP_ENUM(Type, GSocketType) - _WRAP_ENUM(Protocol, GSocketProtocol) - _WRAP_ENUM(MsgFlags, GSocketMsgFlags) - protected: - Socket(SocketFamily family, Type type, Protocol protocol, + Socket(SocketFamily family, SocketType type, SocketProtocol protocol, const Glib::RefPtr& cancellable); Socket(int fd, const Glib::RefPtr& cancellable); @@ -105,7 +103,7 @@ public: * @throw Glib::Error */ static Glib::RefPtr - create(SocketFamily family, Type type, Protocol protocol, + create(SocketFamily family, SocketType type, SocketProtocol protocol, const Glib::RefPtr& cancellable = Glib::RefPtr()); // gmmproc thinks that this function should be wrapped in this class because @@ -279,8 +277,8 @@ public: _WRAP_METHOD(int get_fd() const, g_socket_get_fd) _WRAP_METHOD(Glib::RefPtr get_local_address() const, g_socket_get_local_address, errthrow) _WRAP_METHOD(Glib::RefPtr get_remote_address() const, g_socket_get_remote_address, errthrow) - _WRAP_METHOD(Protocol get_protocol() const, g_socket_get_protocol) - _WRAP_METHOD(Type get_socket_type() const, g_socket_get_socket_type) + _WRAP_METHOD(SocketProtocol get_protocol() const, g_socket_get_protocol) + _WRAP_METHOD(SocketType get_socket_type() const, g_socket_get_socket_type) _WRAP_METHOD(bool speaks_ipv4() const, g_socket_speaks_ipv4) _WRAP_METHOD(Glib::RefPtr get_credentials(), g_socket_get_credentials, errthrow) @@ -321,9 +319,9 @@ public: _WRAP_PROPERTY("local-address", Glib::RefPtr) _WRAP_PROPERTY("remote-address", Glib::RefPtr) _WRAP_PROPERTY("timeout", guint) - _WRAP_PROPERTY("protocol", Protocol) + _WRAP_PROPERTY("protocol", SocketProtocol) _WRAP_PROPERTY("broadcast", bool) - _WRAP_PROPERTY("type", Type) + _WRAP_PROPERTY("type", SocketType) _WRAP_PROPERTY("ttl", guint) _WRAP_PROPERTY("multicast-loopback", bool) _WRAP_PROPERTY("multicast-ttl", guint) diff --git a/gio/src/socketclient.hg b/gio/src/socketclient.hg index 1722b65..152b06f 100644 --- a/gio/src/socketclient.hg +++ b/gio/src/socketclient.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2010 Jonathon Jongsma * * This library is free software; you can redistribute it and/or @@ -60,10 +62,10 @@ public: _WRAP_CREATE() _WRAP_METHOD(SocketFamily get_family() const, g_socket_client_get_family) _WRAP_METHOD(void set_family(SocketFamily family), g_socket_client_set_family) - _WRAP_METHOD(Socket::Type get_socket_type() const, g_socket_client_get_socket_type) - _WRAP_METHOD(void set_socket_type(Socket::Type type), g_socket_client_set_socket_type) - _WRAP_METHOD(Socket::Protocol get_protocol() const, g_socket_client_get_protocol) - _WRAP_METHOD(void set_protocol(Socket::Protocol protocol), g_socket_client_set_protocol) + _WRAP_METHOD(SocketType get_socket_type() const, g_socket_client_get_socket_type) + _WRAP_METHOD(void set_socket_type(SocketType type), g_socket_client_set_socket_type) + _WRAP_METHOD(SocketProtocol get_protocol() const, g_socket_client_get_protocol) + _WRAP_METHOD(void set_protocol(SocketProtocol protocol), g_socket_client_set_protocol) _WRAP_METHOD(Glib::RefPtr get_local_address(), g_socket_client_get_local_address) _WRAP_METHOD(Glib::RefPtr get_local_address() const, g_socket_client_get_local_address, constversion) _WRAP_METHOD(void set_local_address(const Glib::RefPtr& address), g_socket_client_set_local_address) @@ -158,17 +160,17 @@ public: _WRAP_PROPERTY("family", SocketFamily) _WRAP_PROPERTY("local-address", Glib::RefPtr) - _WRAP_PROPERTY("protocol", Socket::Protocol) - _WRAP_PROPERTY("type", Socket::Type) + _WRAP_PROPERTY("protocol", SocketProtocol) + _WRAP_PROPERTY("type", SocketType) _WRAP_PROPERTY("timeout", guint) _WRAP_PROPERTY("enable-proxy", bool) _WRAP_PROPERTY("tls", bool) _WRAP_PROPERTY("tls-validation-flags", TlsCertificateFlags) _WRAP_PROPERTY("proxy-resolver", Glib::RefPtr) -#m4 _CONVERSION(`GSocketConnectable*',`const Glib::RefPtr&',`Glib::wrap($3)') -#m4 _CONVERSION(`GIOStream*',`const Glib::RefPtr&',`Glib::wrap($3)') - _WRAP_SIGNAL(void event(SocketClientEvent event, const Glib::RefPtr& connectable, const Glib::RefPtr& connection), event) +#m4 _CONVERSION(`GSocketConnectable*',`const Glib::RefPtr&',`Glib::wrap($3, true)') +#m4 _CONVERSION(`GIOStream*',`const Glib::RefPtr&',`Glib::wrap($3, true)') + _WRAP_SIGNAL(void event(SocketClientEvent event, const Glib::RefPtr& connectable, const Glib::RefPtr& connection), event, no_default_handler) }; } // namespace Gio diff --git a/gio/src/socketlistener.ccg b/gio/src/socketlistener.ccg index c85394e..c48dbb8 100644 --- a/gio/src/socketlistener.ccg +++ b/gio/src/socketlistener.ccg @@ -33,8 +33,8 @@ SocketListener::add_socket(const Glib::RefPtr& socket) } bool -SocketListener::add_address(const Glib::RefPtr& address, Socket::Type type, - Socket::Protocol protocol, const Glib::RefPtr& source_object, +SocketListener::add_address(const Glib::RefPtr& address, SocketType type, + SocketProtocol protocol, const Glib::RefPtr& source_object, Glib::RefPtr& effective_address) { GError* gerror = nullptr; @@ -52,8 +52,8 @@ SocketListener::add_address(const Glib::RefPtr& address, Socket:: } bool -SocketListener::add_address(const Glib::RefPtr& address, Socket::Type type, - Socket::Protocol protocol, Glib::RefPtr& effective_address) +SocketListener::add_address(const Glib::RefPtr& address, SocketType type, + SocketProtocol protocol, Glib::RefPtr& effective_address) { GError* gerror = nullptr; GSocketAddress* retaddr = nullptr; diff --git a/gio/src/socketlistener.hg b/gio/src/socketlistener.hg index 0db6398..4520635 100644 --- a/gio/src/socketlistener.hg +++ b/gio/src/socketlistener.hg @@ -63,11 +63,11 @@ public: bool add_socket(const Glib::RefPtr& socket); _WRAP_METHOD_DOCS_ONLY(g_socket_listener_add_address) -bool add_address(const Glib::RefPtr& address, Socket::Type type, Socket::Protocol protocol, const Glib::RefPtr& source_object, Glib::RefPtr& effective_address); +bool add_address(const Glib::RefPtr& address, SocketType type, SocketProtocol protocol, const Glib::RefPtr& source_object, Glib::RefPtr& effective_address); _IGNORE(g_socket_listener_add_address) _WRAP_METHOD_DOCS_ONLY(g_socket_listener_add_address) - bool add_address(const Glib::RefPtr& address, Socket::Type type, Socket::Protocol protocol, Glib::RefPtr& effective_address); + bool add_address(const Glib::RefPtr& address, SocketType type, SocketProtocol protocol, Glib::RefPtr& effective_address); _WRAP_METHOD(bool add_inet_port(guint16 port, const Glib::RefPtr& source_object), g_socket_listener_add_inet_port, errthrow) diff --git a/gio/src/srvtarget.hg b/gio/src/srvtarget.hg index 727182d..5ca8f60 100644 --- a/gio/src/srvtarget.hg +++ b/gio/src/srvtarget.hg @@ -14,7 +14,11 @@ * License along with this library. If not, see . */ -#include +#include + +// unfortunately we need to include the C header for the type traits +// implementation +#include _DEFS(giomm,gio) @@ -54,6 +58,23 @@ public: }; +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +struct SrvTargetListTraits +{ + using CppType = Gio::SrvTarget; + using CType = const GSrvTarget*; + using CTypeNonConst = GSrvTarget*; + + static CType to_c_type(const CppType& item) { return item.gobj(); } + static CType to_c_type(CType ptr) { return ptr; } + static CppType to_cpp_type(CType item) { return CppType(const_cast(item), true /* take_copy */); } + static void release_c_type(CType item) { g_srv_target_free(const_cast(item)); } +}; + +#endif // DOXYGEN_SHOULD_SKIP_THIS + +using ListHandle_SrvTarget = Glib::ListHandle; } // namespace Gio diff --git a/gio/src/themedicon.hg b/gio/src/themedicon.hg index 4d3616a..ab0bed1 100644 --- a/gio/src/themedicon.hg +++ b/gio/src/themedicon.hg @@ -77,8 +77,8 @@ public: _WRAP_METHOD(void prepend_name(const std::string& iconname), g_themed_icon_prepend_name) _WRAP_METHOD(void append_name(const std::string& iconname), g_themed_icon_append_name) - #m4 _CONVERSION(`const gchar* const*',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector get_names() const, g_themed_icon_get_names) + #m4 _CONVERSION(`const gchar* const*',`Glib::StringArrayHandle',`Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(Glib::StringArrayHandle get_names() const, g_themed_icon_get_names) //There are no signals. diff --git a/gio/src/tlscertificate.ccg b/gio/src/tlscertificate.ccg index 3cb4910..57fdd6a 100644 --- a/gio/src/tlscertificate.ccg +++ b/gio/src/tlscertificate.ccg @@ -24,7 +24,7 @@ namespace Gio Glib::RefPtr TlsCertificate::create_from_pem(const std::string& data, gssize length) { - return Glib::make_refptr_for_instance(new TlsCertificate(data, length)); + return Glib::RefPtr(new TlsCertificate(data, length)); } } // namesapce Gio diff --git a/gio/src/tlsclientconnection.hg b/gio/src/tlsclientconnection.hg index 6eb87d9..c1e338f 100644 --- a/gio/src/tlsclientconnection.hg +++ b/gio/src/tlsclientconnection.hg @@ -31,10 +31,6 @@ namespace Gio class SocketConnectable; -// It's unusual that a subclass of Glib::Object is a base class of an interface. -// For a discussion, see https://bugzilla.gnome.org/show_bug.cgi?id=776537 -// especially the last paragraph of comment 6. - /** TlsClientConnection - TLS client-side connection. * TlsClientConnection is the client-side subclass of TlsConnection, * representing a client-side TLS connection. @@ -48,8 +44,8 @@ class TlsClientConnection _CUSTOM_CTOR_CAST public: - // It's not possible to use _WRAP_CTOR/_WRAP_CREATE to wrap the new - // function because this is an interface. + //TODO: It's not possible to use _WRAP_CTOR/_WRAP_CREATE to wrap the new + //function because this is an interface. #m4 _CONVERSION(`GIOStream*',`Glib::RefPtr',`Glib::wrap(G_TLS_CLIENT_CONNECTION($3))') _WRAP_METHOD(static Glib::RefPtr create(const Glib::RefPtr& base_io_stream, const Glib::RefPtr& server_identity{?}), g_tls_client_connection_new, errthrow) @@ -61,7 +57,10 @@ public: _WRAP_METHOD(void set_validation_flags(TlsCertificateFlags flags), g_tls_client_connection_set_validation_flags) _WRAP_METHOD(TlsCertificateFlags get_validation_flags() const, g_tls_client_connection_get_validation_flags) - _IGNORE(g_tls_client_connection_set_use_ssl3, g_tls_client_connection_get_use_ssl3) dnl// deprecated + _WRAP_METHOD(void set_use_ssl3(bool use_ssl3 = true), g_tls_client_connection_set_use_ssl3, + deprecated "SSL 3.0 is insecure, and this function does not generally enable or disable it, despite its name.") + _WRAP_METHOD(bool get_use_ssl3() const, g_tls_client_connection_get_use_ssl3, + deprecated "SSL 3.0 is insecure, and this function does not actually indicate whether it is enabled.") #m4 _CONVERSION(`GList*',`std::vector< Glib::RefPtr >',`Glib::ListHandler< Glib::RefPtr >::list_to_vector($3, Glib::OWNERSHIP_DEEP)') _WRAP_METHOD(std::vector< Glib::RefPtr > get_accepted_cas(), g_tls_client_connection_get_accepted_cas) @@ -74,8 +73,8 @@ public: _WRAP_PROPERTY("accepted-cas", std::vector< Glib::RefPtr >) _WRAP_PROPERTY("server-identity", Glib::RefPtr) + _WRAP_PROPERTY("use-ssl3", bool, deprecated "SSL 3.0 is insecure, and this property does not generally enable or disable it, despite its name.") _WRAP_PROPERTY("validation-flags", TlsCertificateFlags) - _IGNORE_PROPERTY(use-ssl3) dnl// deprecated }; } // namespace Gio diff --git a/gio/src/tlsconnection.hg b/gio/src/tlsconnection.hg index 8206c1f..bee6d66 100644 --- a/gio/src/tlsconnection.hg +++ b/gio/src/tlsconnection.hg @@ -63,7 +63,10 @@ public: _WRAP_METHOD(void set_rehandshake_mode(TlsRehandshakeMode mode), g_tls_connection_set_rehandshake_mode) _WRAP_METHOD(TlsRehandshakeMode get_rehandshake_mode() const, g_tls_connection_get_rehandshake_mode) - _IGNORE(g_tls_connection_set_use_system_certdb, g_tls_connection_get_use_system_certdb) + _WRAP_METHOD(void set_use_system_certdb(bool use_system_certdb = true), g_tls_connection_set_use_system_certdb, + deprecated "Use set_database() instead.") + _WRAP_METHOD(bool get_use_system_certdb() const, g_tls_connection_get_use_system_certdb, + deprecated "Use get_database() instead.") _WRAP_METHOD(Glib::RefPtr get_database(), g_tls_connection_get_database) _WRAP_METHOD(Glib::RefPtr get_database() const, g_tls_connection_get_database, constversion) @@ -90,7 +93,7 @@ public: _WRAP_PROPERTY("peer-certificate-errors", TlsCertificateFlags) _WRAP_PROPERTY("rehandshake-mode", TlsRehandshakeMode) _WRAP_PROPERTY("require-close-notify", bool) - _IGNORE_PROPERTY("use-system-certdb") + _WRAP_PROPERTY("use-system-certdb", bool, deprecated "Use property_database() instead.") #m4 _CONVERSION(`GTlsCertificate*',`const Glib::RefPtr&',`Glib::wrap($3, true)') _WRAP_SIGNAL(bool accept_certificate(const Glib::RefPtr& peer_cert, TlsCertificateFlags errors), "accept_certificate") diff --git a/gio/src/tlsdatabase.ccg b/gio/src/tlsdatabase.ccg index 4b36057..e464c17 100644 --- a/gio/src/tlsdatabase.ccg +++ b/gio/src/tlsdatabase.ccg @@ -20,7 +20,3 @@ #include #include #include "slot_async.h" - - -using VerifyFlags = Gio::TlsDatabase::VerifyFlags; -using LookupFlags = Gio::TlsDatabase::LookupFlags; diff --git a/gio/src/tlsdatabase.hg b/gio/src/tlsdatabase.hg index c53ef51..52d1a25 100644 --- a/gio/src/tlsdatabase.hg +++ b/gio/src/tlsdatabase.hg @@ -32,6 +32,9 @@ class ByteArray; namespace Gio { +_WRAP_ENUM(TlsDatabaseVerifyFlags, GTlsDatabaseVerifyFlags) +_WRAP_ENUM(TlsDatabaseLookupFlags, GTlsDatabaseLookupFlags) + class Cancellable; class SocketConnectable; class TlsCertificate; @@ -57,70 +60,64 @@ public: //TODO?: Have a constant for the C macro G_TLS_DATABASE_PURPOSE_AUTHENTICATE_SERVER (which is a string)? //TODO?: Have a constant for the C macro G_TLS_DATABASE_PURPOSE_AUTHENTICATE_CLIENT (which is a string)? - _WRAP_ENUM(VerifyFlags, GTlsDatabaseVerifyFlags) - _WRAP_ENUM(LookupFlags, GTlsDatabaseLookupFlags) - - _WRAP_METHOD(TlsCertificateFlags verify_chain(const Glib::RefPtr& chain, const Glib::ustring& purpose, const Glib::RefPtr& identity{?}, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, VerifyFlags flags{.} = VerifyFlags::NONE) const, g_tls_database_verify_chain, errthrow) - _WRAP_METHOD(void verify_chain_async(const Glib::RefPtr& chain, const Glib::ustring& purpose, const Glib::RefPtr& identity{?}, const Glib::RefPtr& interaction{?}, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, VerifyFlags flags{.} = VerifyFlags::NONE) const, g_tls_database_verify_chain_async, slot_name slot, slot_callback SignalProxy_async_callback) + _WRAP_METHOD(TlsCertificateFlags verify_chain(const Glib::RefPtr& chain, const Glib::ustring& purpose, const Glib::RefPtr& identity{?}, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseVerifyFlags flags{.} = TLS_DATABASE_VERIFY_NONE) const, g_tls_database_verify_chain, errthrow) + _WRAP_METHOD(void verify_chain_async(const Glib::RefPtr& chain, const Glib::ustring& purpose, const Glib::RefPtr& identity{?}, const Glib::RefPtr& interaction{?}, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseVerifyFlags flags{.} = TLS_DATABASE_VERIFY_NONE) const, g_tls_database_verify_chain_async, slot_name slot, slot_callback SignalProxy_async_callback) _WRAP_METHOD(TlsCertificateFlags verify_chain_finish(const Glib::RefPtr& result), g_tls_database_verify_chain_finish, errthrow) - _WRAP_METHOD(Glib::RefPtr lookup_certificate_issuer(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.} = LookupFlags::NONE), g_tls_database_lookup_certificate_issuer, errthrow) - _WRAP_METHOD(Glib::RefPtr lookup_certificate_issuer(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.} = LookupFlags::NONE) const, g_tls_database_lookup_certificate_issuer, errthrow, constversion) + _WRAP_METHOD(Glib::RefPtr lookup_certificate_issuer(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.} = TLS_DATABASE_LOOKUP_NONE), g_tls_database_lookup_certificate_issuer, errthrow) + _WRAP_METHOD(Glib::RefPtr lookup_certificate_issuer(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.} = TLS_DATABASE_LOOKUP_NONE) const, g_tls_database_lookup_certificate_issuer, errthrow, constversion) - _WRAP_METHOD(void lookup_certificate_issuer_async(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction{?}, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.} = LookupFlags::NONE), g_tls_database_lookup_certificate_issuer_async, slot_name slot, slot_callback SignalProxy_async_callback) + _WRAP_METHOD(void lookup_certificate_issuer_async(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction{?}, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.} = TLS_DATABASE_LOOKUP_NONE), g_tls_database_lookup_certificate_issuer_async, slot_name slot, slot_callback SignalProxy_async_callback) _WRAP_METHOD(Glib::RefPtr lookup_certificate_issuer_finish(const Glib::RefPtr& result), g_tls_database_lookup_certificate_issuer_finish, errthrow) #m4 _CONVERSION(`GList*',`std::vector< Glib::RefPtr >',`Glib::ListHandler< Glib::RefPtr >::list_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector< Glib::RefPtr > lookup_certificates_issued_by(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.} = LookupFlags::NONE), g_tls_database_lookup_certificates_issued_by, errthrow) + _WRAP_METHOD(std::vector< Glib::RefPtr > lookup_certificates_issued_by(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.} = Gio::TLS_DATABASE_LOOKUP_NONE), g_tls_database_lookup_certificates_issued_by, errthrow) #m4 _CONVERSION(`GList*',`std::vector< Glib::RefPtr >',`Glib::ListHandler< Glib::RefPtr >::list_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector< Glib::RefPtr > lookup_certificates_issued_by(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.} = LookupFlags::NONE) const, g_tls_database_lookup_certificates_issued_by, errthrow) + _WRAP_METHOD(std::vector< Glib::RefPtr > lookup_certificates_issued_by(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.} = Gio::TLS_DATABASE_LOOKUP_NONE) const, g_tls_database_lookup_certificates_issued_by, errthrow) - _WRAP_METHOD(void lookup_certificates_issued_by_async(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction{?}, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.} = LookupFlags::NONE), g_tls_database_lookup_certificates_issued_by_async, slot_name slot, slot_callback SignalProxy_async_callback) + _WRAP_METHOD(void lookup_certificates_issued_by_async(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction{?}, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.} = Gio::TLS_DATABASE_LOOKUP_NONE), g_tls_database_lookup_certificates_issued_by_async, slot_name slot, slot_callback SignalProxy_async_callback) _WRAP_METHOD(std::vector< Glib::RefPtr > lookup_certificates_issued_by_finish(const Glib::RefPtr& result), g_tls_database_lookup_certificates_issued_by_finish, errthrow) _WRAP_METHOD(Glib::ustring create_certificate_handle(const Glib::RefPtr& certificate) const, g_tls_database_create_certificate_handle) - _WRAP_METHOD(Glib::RefPtr lookup_certificate_for_handle(const Glib::ustring& handle, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.} = LookupFlags::NONE), g_tls_database_lookup_certificate_for_handle, errthrow) - _WRAP_METHOD(Glib::RefPtr lookup_certificate_for_handle(const Glib::ustring& handle, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.} = LookupFlags::NONE) const, g_tls_database_lookup_certificate_for_handle, errthrow, constversion) + _WRAP_METHOD(Glib::RefPtr lookup_certificate_for_handle(const Glib::ustring& handle, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.} = TLS_DATABASE_LOOKUP_NONE), g_tls_database_lookup_certificate_for_handle, errthrow) + _WRAP_METHOD(Glib::RefPtr lookup_certificate_for_handle(const Glib::ustring& handle, const Glib::RefPtr& interaction{?}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.} = TLS_DATABASE_LOOKUP_NONE) const, g_tls_database_lookup_certificate_for_handle, errthrow, constversion) - _WRAP_METHOD(void lookup_certificate_for_handle_async(const Glib::ustring& handle, const Glib::RefPtr& interaction{?}, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.} = LookupFlags::NONE), g_tls_database_lookup_certificate_for_handle_async, slot_name slot, slot_callback SignalProxy_async_callback) + _WRAP_METHOD(void lookup_certificate_for_handle_async(const Glib::ustring& handle, const Glib::RefPtr& interaction{?}, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.} = TLS_DATABASE_LOOKUP_NONE), g_tls_database_lookup_certificate_for_handle_async, slot_name slot, slot_callback SignalProxy_async_callback) _WRAP_METHOD(Glib::RefPtr lookup_certificate_for_handle_finish(const Glib::RefPtr& result), g_tls_database_lookup_certificate_for_handle_finish, errthrow) #m4 _CONVERSION(`GTlsCertificate*',`const Glib::RefPtr&',`Glib::wrap($3, true)') #m4 _CONVERSION(`GSocketConnectable*',`const Glib::RefPtr&',`Glib::wrap($3, true)') #m4 _CONVERSION(`GTlsInteraction*',`const Glib::RefPtr&',`Glib::wrap($3, true)') - _WRAP_VFUNC(TlsCertificateFlags verify_chain(const Glib::RefPtr& chain, const Glib::ustring& purpose, const Glib::RefPtr& identity, const Glib::RefPtr& interaction, const Glib::RefPtr& cancellable{.?}, VerifyFlags flags{.}) const, "verify_chain", errthrow) - _WRAP_VFUNC(void verify_chain_async(const Glib::RefPtr& chain, const Glib::ustring& purpose, const Glib::RefPtr& identity, const Glib::RefPtr& interaction, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, VerifyFlags flags{.}) const, "verify_chain_async", slot_name slot, slot_callback SignalProxy_async_callback) + _WRAP_VFUNC(TlsCertificateFlags verify_chain(const Glib::RefPtr& chain, const Glib::ustring& purpose, const Glib::RefPtr& identity, const Glib::RefPtr& interaction, const Glib::RefPtr& cancellable{.?}, TlsDatabaseVerifyFlags flags{.}) const, "verify_chain", errthrow) + _WRAP_VFUNC(void verify_chain_async(const Glib::RefPtr& chain, const Glib::ustring& purpose, const Glib::RefPtr& identity, const Glib::RefPtr& interaction, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseVerifyFlags flags{.}) const, "verify_chain_async", slot_name slot, slot_callback SignalProxy_async_callback) #m4 _CONVERSION(`GAsyncResult*',`const Glib::RefPtr&',`Glib::wrap($3, true)') _WRAP_VFUNC(TlsCertificateFlags verify_chain_finish(const Glib::RefPtr& result), "verify_chain_finish", errthrow) dnl// create_certificate_handle_vfunc() shall return a newly allocated string. -dnl// Also, ensure that create_certificate_handle_vfunc() never returns an empty char[], -dnl// because that could be caused by an intermediate empty ustring from an initial null char*. #m4 _CONVERSION(`GTlsCertificate*',`const Glib::RefPtr&',`Glib::wrap($3, true)') -#m4 _CONVERSION(`Glib::ustring',`gchar*',`g_strdup(Glib::c_str_or_nullptr($3))') #m4 _CONVERSION(`gchar*',`Glib::ustring',`Glib::convert_return_gchar_ptr_to_ustring($3)') _WRAP_VFUNC(Glib::ustring create_certificate_handle(const Glib::RefPtr& certificate) const, "create_certificate_handle") #m4 _CONVERSION(`Glib::RefPtr',`GTlsCertificate*',`G_TLS_CERTIFICATE(g_object_ref(Glib::unwrap($3)))') - _WRAP_VFUNC(Glib::RefPtr lookup_certificate_for_handle(const Glib::ustring& handle, const Glib::RefPtr& interaction, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.}), "lookup_certificate_for_handle", errthrow) - _WRAP_VFUNC(void lookup_certificate_for_handle_async(const Glib::ustring& handle, const Glib::RefPtr& interaction, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.}), "lookup_certificate_for_handle_async", slot_name slot, slot_callback SignalProxy_async_callback) + _WRAP_VFUNC(Glib::RefPtr lookup_certificate_for_handle(const Glib::ustring& handle, const Glib::RefPtr& interaction, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.}), "lookup_certificate_for_handle", errthrow) + _WRAP_VFUNC(void lookup_certificate_for_handle_async(const Glib::ustring& handle, const Glib::RefPtr& interaction, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.}), "lookup_certificate_for_handle_async", slot_name slot, slot_callback SignalProxy_async_callback) _WRAP_VFUNC(Glib::RefPtr lookup_certificate_for_handle_finish(const Glib::RefPtr& result), "lookup_certificate_for_handle_finish", errthrow) - _WRAP_VFUNC(Glib::RefPtr lookup_certificate_issuer(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.}), "lookup_certificate_issuer", errthrow) - _WRAP_VFUNC(void lookup_certificate_issuer_async(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.}), "lookup_certificate_issuer_async", slot_name slot, slot_callback SignalProxy_async_callback) + _WRAP_VFUNC(Glib::RefPtr lookup_certificate_issuer(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.}), "lookup_certificate_issuer", errthrow) + _WRAP_VFUNC(void lookup_certificate_issuer_async(const Glib::RefPtr& certificate, const Glib::RefPtr& interaction, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.}), "lookup_certificate_issuer_async", slot_name slot, slot_callback SignalProxy_async_callback) _WRAP_VFUNC(Glib::RefPtr lookup_certificate_issuer_finish(const Glib::RefPtr& result), "lookup_certificate_issuer_finish", errthrow) #m4 _CONVERSION(`std::vector< Glib::RefPtr >',`GList*',`g_list_copy(Glib::ListHandler< Glib::RefPtr >::vector_to_list($3).data())') #m4 _CONVERSION(`GByteArray*',`const Glib::RefPtr&',`Glib::wrap($3, true)') - _WRAP_VFUNC(std::vector< Glib::RefPtr > lookup_certificates_issued_by(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.}), "lookup_certificates_issued_by", errthrow) - _WRAP_VFUNC(void lookup_certificates_issued_by_async(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, LookupFlags flags{.}), "lookup_certificates_issued_by_async", slot_name slot, slot_callback SignalProxy_async_callback) + _WRAP_VFUNC(std::vector< Glib::RefPtr > lookup_certificates_issued_by(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.}), "lookup_certificates_issued_by", errthrow) + _WRAP_VFUNC(void lookup_certificates_issued_by_async(const Glib::RefPtr& issuer_raw_dn, const Glib::RefPtr& interaction, const SlotAsyncReady& slot{callback}, const Glib::RefPtr& cancellable{.?}, TlsDatabaseLookupFlags flags{.}), "lookup_certificates_issued_by_async", slot_name slot, slot_callback SignalProxy_async_callback) _WRAP_VFUNC(std::vector< Glib::RefPtr > lookup_certificates_issued_by_finish(const Glib::RefPtr& result), "lookup_certificates_issued_by_finish", errthrow) }; diff --git a/gio/src/tlsfiledatabase.hg b/gio/src/tlsfiledatabase.hg index 0113229..bed39f8 100644 --- a/gio/src/tlsfiledatabase.hg +++ b/gio/src/tlsfiledatabase.hg @@ -28,9 +28,6 @@ typedef struct _GTlsFileDatabaseInterface GTlsFileDatabaseInterface; namespace Gio { -// It's unusual that a subclass of Glib::Object is a base class of an interface. -// For a discussion, see https://bugzilla.gnome.org/show_bug.cgi?id=776537 -// especially the last paragraph of comment 6. /** TlsFileDatabase - TLS file based database type. * TlsFileDatabase is implemented by TlsDatabase objects which load their @@ -46,8 +43,9 @@ class TlsFileDatabase _CLASS_INTERFACE(TlsFileDatabase, GTlsFileDatabase, G_TLS_FILE_DATABASE, GTlsFileDatabaseInterface) public: - // It's not possible to use _WRAP_CTOR/_WRAP_CREATE to wrap the new - // function because this is an interface. + //TODO: It is not possible to use _WRAP_CTOR()/WRAP_CREATE() here because this + //class is an interface. + // So, should we make it possible to use them? murrayc. #m4 _CONVERSION(`GTlsDatabase*',`Glib::RefPtr',`Glib::wrap(G_TLS_FILE_DATABASE($3))') _WRAP_METHOD(static Glib::RefPtr create(const std::string& anchors), g_tls_file_database_new, errthrow) diff --git a/gio/src/tlspassword.ccg b/gio/src/tlspassword.ccg index c51f24b..8cba83c 100644 --- a/gio/src/tlspassword.ccg +++ b/gio/src/tlspassword.ccg @@ -15,5 +15,3 @@ */ #include - -using Flags = Gio::TlsPassword::Flags; diff --git a/gio/src/tlspassword.hg b/gio/src/tlspassword.hg index 917061c..28a5413 100644 --- a/gio/src/tlspassword.hg +++ b/gio/src/tlspassword.hg @@ -22,6 +22,7 @@ _PINCLUDE(glibmm/private/object_p.h) namespace Gio { +_WRAP_ENUM(TlsPasswordFlags, GTlsPasswordFlags) /** TlsPassword - TLS Passwords for prompting. * Holds a password used in TLS. @@ -31,15 +32,12 @@ class TlsPassword : public Glib::Object { _CLASS_GOBJECT(TlsPassword, GTlsPassword, G_TLS_PASSWORD, Glib::Object, GObject) -public: - _WRAP_ENUM(Flags, GTlsPasswordFlags) - protected: - _WRAP_CTOR(TlsPassword(const Glib::ustring& description{.}, Flags flags{.} = Flags::NONE), g_tls_password_new) + _WRAP_CTOR(TlsPassword(const Glib::ustring& description{.}, TlsPasswordFlags flags{.} = Gio::TLS_PASSWORD_NONE), g_tls_password_new) public: _WRAP_METHOD_DOCS_ONLY(g_tls_password_new) - _WRAP_CREATE(const Glib::ustring& description{.}, Flags flags{.} = Flags::NONE) + _WRAP_CREATE(const Glib::ustring& description{.}, TlsPasswordFlags flags{.} = Gio::TLS_PASSWORD_NONE) _WRAP_METHOD(const guchar* get_value(gsize& length{?}) const, g_tls_password_get_value) @@ -52,14 +50,14 @@ public: _WRAP_METHOD(Glib::ustring get_description() const, g_tls_password_get_description) _WRAP_METHOD(void set_description(const Glib::ustring& description), g_tls_password_set_description) - _WRAP_METHOD(Flags get_flags() const, g_tls_password_get_flags) - _WRAP_METHOD(void set_flags(Flags flags), g_tls_password_set_flags) + _WRAP_METHOD(TlsPasswordFlags get_flags() const, g_tls_password_get_flags) + _WRAP_METHOD(void set_flags(TlsPasswordFlags flags), g_tls_password_set_flags) _WRAP_METHOD(Glib::ustring get_warning() const, g_tls_password_get_warning) _WRAP_METHOD(void set_warning(const Glib::ustring& warning), g_tls_password_set_warning) _WRAP_PROPERTY("description", Glib::ustring) - _WRAP_PROPERTY("flags", Flags) + _WRAP_PROPERTY("flags", TlsPasswordFlags) _WRAP_PROPERTY("warning", Glib::ustring) #m4 _CONVERSION(`gsize*', `gsize&', `*($3)') diff --git a/gio/src/tlsserverconnection.hg b/gio/src/tlsserverconnection.hg index 67bd0a9..a9b52a4 100644 --- a/gio/src/tlsserverconnection.hg +++ b/gio/src/tlsserverconnection.hg @@ -28,9 +28,6 @@ typedef struct _GTlsServerConnectionInterface GTlsServerConnectionInterface; namespace Gio { -// It's unusual that a subclass of Glib::Object is a base class of an interface. -// For a discussion, see https://bugzilla.gnome.org/show_bug.cgi?id=776537 -// especially the last paragraph of comment 6. /** TlsServerConnection - TLS server-side connection. * TlsServerConnection is the server-side subclass of TlsConnection, @@ -43,8 +40,8 @@ class TlsServerConnection : public Glib::Interface, public TlsConnection _CUSTOM_CTOR_CAST public: - // It's not possible to use _WRAP_CTOR/_WRAP_CREATE to wrap the new - // function because this is an interface. + //TODO: It's not possible to use _WRAP_CTOR/_WRAP_CREATE to wrap the new + //function because this is an interface. #m4 _CONVERSION(`GIOStream*',`Glib::RefPtr',`Glib::wrap(G_TLS_SERVER_CONNECTION($3))') _WRAP_METHOD(static Glib::RefPtr create(const Glib::RefPtr& base_io_stream, const Glib::RefPtr& certificate), g_tls_server_connection_new, errthrow) diff --git a/gio/src/unixfdlist.ccg b/gio/src/unixfdlist.ccg index 5a66bd2..f35d700 100644 --- a/gio/src/unixfdlist.ccg +++ b/gio/src/unixfdlist.ccg @@ -20,7 +20,7 @@ namespace Gio { -UnixFDList::UnixFDList(const std::vector& fds) +UnixFDList::UnixFDList(const Glib::ArrayHandle& fds) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(nullptr), // g_unix_fd_list_new_from_array() must be called. @@ -28,11 +28,11 @@ UnixFDList::UnixFDList(const std::vector& fds) // _CONSTRUCT() + g_unit_fd_list_append() is not an alternative. // g_unit_fd_list_append() duplicates the file descriptor, // but g_unix_fd_list_new_from_array() does not. - Glib::Object((GObject*)g_unix_fd_list_new_from_array(Glib::ArrayHandler::vector_to_array(fds).data(), fds.size())) + Glib::Object((GObject*)g_unix_fd_list_new_from_array(fds.data(), fds.size())) { } -UnixFDList::UnixFDList(const std::vector& fds, int n_fds) +UnixFDList::UnixFDList(const Glib::ArrayHandle& fds, int n_fds) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(nullptr), // g_unix_fd_list_new_from_array() must be called. @@ -40,28 +40,28 @@ UnixFDList::UnixFDList(const std::vector& fds, int n_fds) // _CONSTRUCT() + g_unit_fd_list_append() is not an alternative. // g_unit_fd_list_append() duplicates the file descriptor, // but g_unix_fd_list_new_from_array() does not. - Glib::Object((GObject*)g_unix_fd_list_new_from_array(Glib::ArrayHandler::vector_to_array(fds).data(), n_fds)) + Glib::Object((GObject*)g_unix_fd_list_new_from_array(fds.data(), n_fds)) { } -const std::vector +const Glib::ArrayHandle UnixFDList::peek_fds() const { int length = 0; const auto fds = g_unix_fd_list_peek_fds(const_cast(gobj()), &length); // The array is terminated with a -1, but that terminating element is // not included in the length that g_unix_fd_list_peek_fds() returns. - return Glib::ArrayHandler::array_to_vector(fds, length, Glib::OWNERSHIP_NONE); + return Glib::ArrayHandle(fds, length, Glib::OWNERSHIP_NONE); } -std::vector +Glib::ArrayHandle UnixFDList::steal_fds() { int length = 0; const auto fds = g_unix_fd_list_steal_fds(gobj(), &length); // The array is terminated with a -1, but that terminating element is // not included in the length that g_unix_fd_list_steal_fds() returns. - return Glib::ArrayHandler::array_to_vector(fds, length, Glib::OWNERSHIP_DEEP); + return Glib::ArrayHandle(fds, length, Glib::OWNERSHIP_DEEP); } } // namespace Gio diff --git a/gio/src/unixfdlist.hg b/gio/src/unixfdlist.hg index f3885a1..838793f 100644 --- a/gio/src/unixfdlist.hg +++ b/gio/src/unixfdlist.hg @@ -15,6 +15,7 @@ */ #include +#include _DEFS(giomm,gio) _PINCLUDE(glibmm/private/object_p.h) @@ -42,9 +43,9 @@ protected: _CTOR_DEFAULT _IGNORE(g_unix_fd_list_new) - explicit UnixFDList(const std::vector& fds); + explicit UnixFDList(const Glib::ArrayHandle& fds); - explicit UnixFDList(const std::vector& fds, int n_fds); + explicit UnixFDList(const Glib::ArrayHandle& fds, int n_fds); _IGNORE(g_unix_fd_list_new_from_array) public: @@ -59,13 +60,13 @@ public: * @param fds The list of file descriptors to use for creation. * @return A new UnixFDList. */ - _WRAP_CREATE(const std::vector& fds) + _WRAP_CREATE(const Glib::ArrayHandle& fds) _WRAP_METHOD_DOCS_ONLY(g_unix_fd_list_new_from_array) - _WRAP_CREATE(const std::vector& fds, int n_fds) + _WRAP_CREATE(const Glib::ArrayHandle& fds, int n_fds) _WRAP_METHOD(int get_length() const, g_unix_fd_list_get_length) - _WRAP_METHOD(int get(int index) const, g_unix_fd_list_get, errthrow "Gio::Error") + _WRAP_METHOD(int get(int index) const, g_unix_fd_list_get, errthrow) /** Returns the array of file descriptors that is contained in this object. * @@ -76,7 +77,7 @@ public: * * @newin{2,28} */ - const std::vector peek_fds() const; + const Glib::ArrayHandle peek_fds() const; _IGNORE(g_unix_fd_list_peek_fds) /** Returns the array of file descriptors that is contained in this object. @@ -91,12 +92,12 @@ public: * * @newin{2,28} */ - std::vector steal_fds(); + Glib::ArrayHandle steal_fds(); _IGNORE(g_unix_fd_list_steal_fds) _WRAP_METHOD_DOCS_ONLY(g_unix_fd_list_append) ///@throw Glib::Error. - _WRAP_METHOD(int append(int fd), g_unix_fd_list_append, errthrow "Gio::Error") + _WRAP_METHOD(int append(int fd), g_unix_fd_list_append, errthrow) }; } // namespace Gio diff --git a/gio/src/unixfdmessage.ccg b/gio/src/unixfdmessage.ccg index 53ea803..b7b6f55 100644 --- a/gio/src/unixfdmessage.ccg +++ b/gio/src/unixfdmessage.ccg @@ -21,14 +21,14 @@ namespace Gio { -std::vector +Glib::ArrayHandle UnixFDMessage::steal_fds() { int length = 0; const auto fds = g_unix_fd_message_steal_fds(gobj(), &length); // The array is terminated with a -1, but that terminating element is // not included in the length that g_unix_fd_message_steal_fds() returns. - return Glib::ArrayHandler::array_to_vector(fds, length, Glib::OWNERSHIP_DEEP); + return Glib::ArrayHandle(fds, length, Glib::OWNERSHIP_DEEP); } } // namespace Gio diff --git a/gio/src/unixfdmessage.hg b/gio/src/unixfdmessage.hg index 3398a0c..f418f94 100644 --- a/gio/src/unixfdmessage.hg +++ b/gio/src/unixfdmessage.hg @@ -14,6 +14,7 @@ * License along with this library. If not, see . */ +#include #include _DEFS(giomm,gio) @@ -56,7 +57,7 @@ public: _WRAP_METHOD(Glib::RefPtr get_fd_list(), g_unix_fd_message_get_fd_list, refreturn) _WRAP_METHOD(Glib::RefPtr get_fd_list() const, g_unix_fd_message_get_fd_list, refreturn, constversion) - _WRAP_METHOD(bool append_fd(int fd), g_unix_fd_message_append_fd, errthrow "Gio::Error") + _WRAP_METHOD(bool append_fd(int fd), g_unix_fd_message_append_fd, errthrow) /** Returns the array of file descriptors that is contained in this object. * @@ -70,7 +71,7 @@ public: * * @newin{2,28} */ - std::vector steal_fds(); + Glib::ArrayHandle steal_fds(); _IGNORE(g_unix_fd_message_steal_fds) _WRAP_PROPERTY("fd-list", Glib::RefPtr) diff --git a/gio/src/unixinputstream.hg b/gio/src/unixinputstream.hg index b3521cd..de00b22 100644 --- a/gio/src/unixinputstream.hg +++ b/gio/src/unixinputstream.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or @@ -15,8 +17,6 @@ */ #include -#include -#include _DEFS(giomm,gio) _PINCLUDE(giomm/private/inputstream_p.h) @@ -33,12 +33,9 @@ namespace Gio * * @newin{2,16} */ -class UnixInputStream -: public Gio::InputStream, public PollableInputStream, public FileDescriptorBased +class UnixInputStream : public Gio::InputStream { _CLASS_GOBJECT(UnixInputStream, GUnixInputStream, G_UNIX_INPUT_STREAM, Gio::InputStream, GInputStream) - _IMPLEMENTS_INTERFACE(PollableInputStream) - _IMPLEMENTS_INTERFACE(FileDescriptorBased) _GTKMMPROC_WIN32_NO_WRAP protected: diff --git a/gio/src/unixoutputstream.hg b/gio/src/unixoutputstream.hg index 5f00910..be49ac4 100644 --- a/gio/src/unixoutputstream.hg +++ b/gio/src/unixoutputstream.hg @@ -1,3 +1,5 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or @@ -15,8 +17,6 @@ */ #include -#include -#include _DEFS(giomm,gio) _PINCLUDE(giomm/private/outputstream_p.h) @@ -32,12 +32,9 @@ namespace Gio * * @newin{2,16} */ -class UnixOutputStream -: public Gio::OutputStream, public PollableOutputStream, public FileDescriptorBased +class UnixOutputStream : public Gio::OutputStream { _CLASS_GOBJECT(UnixOutputStream, GUnixOutputStream, G_UNIX_OUTPUT_STREAM, Gio::OutputStream, GOutputStream) - _IMPLEMENTS_INTERFACE(PollableOutputStream) - _IMPLEMENTS_INTERFACE(FileDescriptorBased) _GTKMMPROC_WIN32_NO_WRAP protected: diff --git a/gio/src/unixsocketaddress.ccg b/gio/src/unixsocketaddress.ccg index b3751af..9c8b042 100644 --- a/gio/src/unixsocketaddress.ccg +++ b/gio/src/unixsocketaddress.ccg @@ -16,13 +16,11 @@ #include -using Type = Gio::UnixSocketAddress::Type; - namespace Gio { Glib::RefPtr -UnixSocketAddress::create(const std::string& path, Type type, int path_len) +UnixSocketAddress::create(const std::string& path, UnixSocketAddressType type, int path_len) { return Glib::wrap(reinterpret_cast(g_unix_socket_address_new_with_type( path.c_str(), path_len, static_cast(type)))); diff --git a/gio/src/unixsocketaddress.hg b/gio/src/unixsocketaddress.hg index 8be2922..5cfdc94 100644 --- a/gio/src/unixsocketaddress.hg +++ b/gio/src/unixsocketaddress.hg @@ -24,6 +24,8 @@ _PINCLUDE(giomm/private/socketaddress_p.h) namespace Gio { +_WRAP_ENUM(UnixSocketAddressType, GUnixSocketAddressType) + class ByteArray; /** UnixSocketAddress - UNIX SocketAddress. @@ -49,15 +51,12 @@ class UnixSocketAddress _CLASS_GOBJECT(UnixSocketAddress, GUnixSocketAddress, G_UNIX_SOCKET_ADDRESS, SocketAddress, GSocketAddress) _GTKMMPROC_WIN32_NO_WRAP -public: - _WRAP_ENUM(Type, GUnixSocketAddressType) - protected: _WRAP_CTOR(UnixSocketAddress(const std::string& path), g_unix_socket_address_new) //TODO: Possibly add when g_unix_socket_address_new_with_type() does not do //more than call g_object_new() (maybe file a bug). - //_WRAP_CTOR(UnixSocketAddress(const std::string& path, int path_len = -1, Type type = Type::PATH), g_unix_socket_address_new_with_type) + //_WRAP_CTOR(UnixSocketAddress(const std::string& path, int path_len = -1, UnixSocketAddressType type = Gio::UNIX_SOCKET_ADDRESS_PATH), g_unix_socket_address_new_with_type) public: _WRAP_METHOD_DOCS_ONLY(g_unix_socket_address_new) @@ -66,23 +65,23 @@ public: //TODO: Add when the above constructor is included, removing the handwritten //create() method for it below. //_WRAP_METHOD_DOCS_ONLY(g_unix_socket_address_new_with_type) - //_WRAP_CREATE(const std::string& path, int path_len = -1, Type type = Type::PATH) + //_WRAP_CREATE(const std::string& path, int path_len = -1, UnixSocketAddressType type = Gio::UNIX_SOCKET_ADDRESS_PATH) _WRAP_METHOD_DOCS_ONLY(g_unix_socket_address_new_with_type) static Glib::RefPtr create(const std::string& path, - Type type, int path_len = -1); + UnixSocketAddressType type, int path_len = -1); // Deprecated. _IGNORE(g_unix_socket_address_get_is_abstract) - _WRAP_METHOD(Type get_address_type() const, g_unix_socket_address_get_address_type) + _WRAP_METHOD(UnixSocketAddressType get_address_type() const, g_unix_socket_address_get_address_type) _WRAP_METHOD(std::string get_path() const, g_unix_socket_address_get_path) _IGNORE(g_unix_socket_address_get_path_len) _WRAP_METHOD(static bool abstract_names_supported(), g_unix_socket_address_abstract_names_supported) - _IGNORE_PROPERTY("abstract") - _WRAP_PROPERTY("address-type", Type) + _WRAP_PROPERTY("abstract", bool, deprecated "Use property_address_type() instead, which distinguishes between zero-padded and non-zero-padded abstract addresses.") + _WRAP_PROPERTY("address-type", UnixSocketAddressType) _WRAP_PROPERTY("path", std::string) _WRAP_PROPERTY("path-as-array", Glib::RefPtr) }; diff --git a/gio/src/volume.ccg b/gio/src/volume.ccg index e0ad7c4..2d1d01a 100644 --- a/gio/src/volume.ccg +++ b/gio/src/volume.ccg @@ -26,7 +26,7 @@ namespace Gio void Volume::mount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - const Glib::RefPtr& cancellable, Mount::MountFlags flags) + const Glib::RefPtr& cancellable, MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -39,7 +39,7 @@ Volume::mount(const Glib::RefPtr& mount_operation, const SlotAsy void Volume::mount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - Mount::MountFlags flags) + MountMountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -52,7 +52,7 @@ Volume::mount(const Glib::RefPtr& mount_operation, const SlotAsy } void -Volume::mount(const Glib::RefPtr& mount_operation, Mount::MountFlags flags) +Volume::mount(const Glib::RefPtr& mount_operation, MountMountFlags flags) { g_volume_mount(gobj(), static_cast(flags), Glib::unwrap(mount_operation), nullptr, // cancellable @@ -60,7 +60,7 @@ Volume::mount(const Glib::RefPtr& mount_operation, Mount::MountF } void -Volume::mount(Mount::MountFlags flags) +Volume::mount(MountMountFlags flags) { g_volume_mount(gobj(), static_cast(flags), nullptr, nullptr, // cancellable @@ -69,7 +69,7 @@ Volume::mount(Mount::MountFlags flags) void Volume::eject( - const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags) + const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -82,7 +82,7 @@ Volume::eject( } void -Volume::eject(const SlotAsyncReady& slot, Mount::UnmountFlags flags) +Volume::eject(const SlotAsyncReady& slot, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -96,7 +96,7 @@ Volume::eject(const SlotAsyncReady& slot, Mount::UnmountFlags flags) } void -Volume::eject(Mount::UnmountFlags flags) +Volume::eject(MountUnmountFlags flags) { g_volume_eject_with_operation(gobj(), static_cast(flags), nullptr, // mount_operation @@ -107,7 +107,7 @@ Volume::eject(Mount::UnmountFlags flags) void Volume::eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - const Glib::RefPtr& cancellable, Mount::UnmountFlags flags) + const Glib::RefPtr& cancellable, MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -121,7 +121,7 @@ Volume::eject(const Glib::RefPtr& mount_operation, const SlotAsy void Volume::eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, - Mount::UnmountFlags flags) + MountUnmountFlags flags) { // Create a copy of the slot. // A pointer to it will be passed through the callback's data parameter @@ -135,7 +135,7 @@ Volume::eject(const Glib::RefPtr& mount_operation, const SlotAsy } void -Volume::eject(const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags) +Volume::eject(const Glib::RefPtr& mount_operation, MountUnmountFlags flags) { g_volume_eject_with_operation(gobj(), static_cast(flags), Glib::unwrap(mount_operation), diff --git a/gio/src/volume.hg b/gio/src/volume.hg index 37b51e2..a1488d8 100644 --- a/gio/src/volume.hg +++ b/gio/src/volume.hg @@ -97,7 +97,7 @@ public: * @param cancellable A cancellable object which can be used to cancel the operation. * @param flags Flags affecting the operation. */ - void mount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Mounts a volume. * This is an asynchronous operation, and is finished by calling mount_finish() with the AsyncResult data returned in the callback slot. @@ -106,20 +106,20 @@ public: * @param slot A callback which will be called when the operation is completed or canceled. * @param flags Flags affecting the operation. */ - void mount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Mounts a volume. * * @param mount_operation A mount operation. * @param flags Flags affecting the operation. */ - void mount(const Glib::RefPtr& mount_operation, Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount(const Glib::RefPtr& mount_operation, MountMountFlags flags = MOUNT_MOUNT_NONE); /** Mounts a volume. * * @param flags Flags affecting the operation. */ - void mount(Mount::MountFlags flags = Mount::MountFlags::NONE); + void mount(MountMountFlags flags = MOUNT_MOUNT_NONE); _IGNORE(g_volume_mount) @@ -127,12 +127,12 @@ public: g_volume_mount_finish, errthrow) - void eject(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); - void eject(const SlotAsyncReady& slot, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); - void eject(Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); - void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); - void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); - void eject(const Glib::RefPtr& mount_operation, Mount::UnmountFlags flags = Mount::UnmountFlags::NONE); + void eject(const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, const Glib::RefPtr& cancellable, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const Glib::RefPtr& mount_operation, const SlotAsyncReady& slot, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); + void eject(const Glib::RefPtr& mount_operation, MountUnmountFlags flags = MOUNT_UNMOUNT_NONE); _IGNORE(g_volume_eject) _IGNORE(g_volume_eject_with_operation) @@ -144,8 +144,8 @@ public: _WRAP_METHOD(std::string get_identifier(const std::string& kind) const, g_volume_get_identifier) - #m4 _CONVERSION(`char**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(std::vector enumerate_identifiers() const, + #m4 _CONVERSION(`char**',`Glib::StringArrayHandle',`Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') + _WRAP_METHOD(Glib::StringArrayHandle enumerate_identifiers() const, g_volume_enumerate_identifiers) _WRAP_METHOD(Glib::RefPtr get_activation_root(), g_volume_get_activation_root) diff --git a/gio/src/volumemonitor.hg b/gio/src/volumemonitor.hg index d36e0d3..24c62fb 100644 --- a/gio/src/volumemonitor.hg +++ b/gio/src/volumemonitor.hg @@ -42,19 +42,20 @@ public: _WRAP_METHOD(static Glib::RefPtr get(), g_volume_monitor_get) -#m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_SHALLOW)') - _WRAP_METHOD(std::vector> get_connected_drives(), g_volume_monitor_get_connected_drives) +#m4 _CONVERSION(`GList*',`Glib::ListHandle< Glib::RefPtr >',`$2($3, Glib::OWNERSHIP_SHALLOW)') + _WRAP_METHOD(Glib::ListHandle< Glib::RefPtr > get_connected_drives(), g_volume_monitor_get_connected_drives) -#m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_SHALLOW)') - _WRAP_METHOD(std::vector> get_volumes(), g_volume_monitor_get_volumes) +#m4 _CONVERSION(`GList*',`Glib::ListHandle< Glib::RefPtr >',`$2($3, Glib::OWNERSHIP_SHALLOW)') + _WRAP_METHOD(Glib::ListHandle< Glib::RefPtr > get_volumes(), g_volume_monitor_get_volumes) -#m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_SHALLOW)') - _WRAP_METHOD(std::vector> get_mounts(), g_volume_monitor_get_mounts) +#m4 _CONVERSION(`GList*',`Glib::ListHandle< Glib::RefPtr >',`$2($3, Glib::OWNERSHIP_SHALLOW)') + _WRAP_METHOD(Glib::ListHandle< Glib::RefPtr > get_mounts(), g_volume_monitor_get_mounts) _WRAP_METHOD(Glib::RefPtr get_volume_for_uuid(const std::string& uuid), g_volume_monitor_get_volume_for_uuid, refreturn) _WRAP_METHOD(Glib::RefPtr get_mount_for_uuid(const std::string& uuid), g_volume_monitor_get_mount_for_uuid, refreturn) - _IGNORE(g_volume_monitor_adopt_orphan_mount) + _WRAP_METHOD(static Glib::RefPtr adopt_orphan_mount(const Glib::RefPtr& mount), g_volume_monitor_adopt_orphan_mount, + deprecated "Instead of using this function, create shadow mounts with the URI of the mount you intend to adopt.") #m4 _CONVERSION(`GVolume*',`const Glib::RefPtr&',`Glib::wrap($3, true)') _WRAP_SIGNAL(void volume_added(const Glib::RefPtr& volume), volume_added) @@ -72,8 +73,9 @@ public: _WRAP_SIGNAL(void drive_disconnected(const Glib::RefPtr& drive), drive_disconnected) _WRAP_SIGNAL(void drive_changed(const Glib::RefPtr& drive), drive_changed) - _WRAP_SIGNAL(void drive_eject_button(const Glib::RefPtr& drive), drive_eject_button) - _WRAP_SIGNAL(void drive_stop_button(const Glib::RefPtr& drive), drive_stop_button) + //TODO: Remove no_default_handler when we can break ABI: + _WRAP_SIGNAL(void drive_eject_button(const Glib::RefPtr& drive), drive_eject_button, no_default_handler) + _WRAP_SIGNAL(void drive_stop_button(const Glib::RefPtr& drive), drive_stop_button, no_default_handler) //TODO: Use ListHandle? //_WRAP_VFUNC(GList* get_volumes(), get_volumes) diff --git a/glib/glibmm.h b/glib/glibmm.h index c4d18a2..ac753ce 100644 --- a/glib/glibmm.h +++ b/glib/glibmm.h @@ -64,12 +64,12 @@ * * If your source file is @c program.cc, you can compile it with: * @code - * g++ program.cc -o program `pkg-config --cflags --libs glibmm-2.58 giomm-2.58` + * g++ program.cc -o program `pkg-config --cflags --libs glibmm-2.4 giomm-2.4` * @endcode * * Alternatively, if using autoconf, use the following in @c configure.ac: * @code - * PKG_CHECK_MODULES([GLIBMM], [glibmm-2.58 giomm-2.58]) + * PKG_CHECK_MODULES([GLIBMM], [glibmm-2.4 giomm-2.4]) * @endcode * Then use the generated @c GLIBMM_CFLAGS and @c GLIBMM_LIBS variables in the * project Makefile.am files. For example: @@ -83,6 +83,13 @@ //#include //This must be included by the application, after system headers such as //. +// Include this first because we need it to be the first thing to include , +// so we can do an undef trick to still use deprecated API in the header: +#include + +#include + +#include #include #include #ifndef GLIBMM_INCLUDED_FROM_WRAP_INIT_CC @@ -103,10 +110,13 @@ #include #include #include +#include #include #include #include #include +#include +#include #include #include #include @@ -126,19 +136,23 @@ #include #include #include +#include #include #include +#include #include #include #include #include #include #include +#include #include #include #include #include #include +#include #include #endif /* _GLIBMM_H */ diff --git a/glib/glibmm.pc.in b/glib/glibmm.pc.in index 25e6c16..b08f62d 100644 --- a/glib/glibmm.pc.in +++ b/glib/glibmm.pc.in @@ -16,6 +16,6 @@ Name: glibmm Description: C++ wrapper for GLib Version: @PACKAGE_VERSION@ URL: http://www.gtkmm.org/ -Requires: gobject-2.0 sigc++-3.0 +Requires: gobject-2.0 sigc++-2.0 Libs: -L${libdir} -lglibmm-@GLIBMM_API_VERSION@ Cflags: -I${includedir}/@GLIBMM_MODULE_NAME@ -I${libdir}/@GLIBMM_MODULE_NAME@/include diff --git a/glib/glibmm/Makefile.am b/glib/glibmm/Makefile.am index 2b6daa9..5afbbe0 100644 --- a/glib/glibmm/Makefile.am +++ b/glib/glibmm/Makefile.am @@ -18,7 +18,7 @@ lib_LTLIBRARIES = libglibmm-@GLIBMM_API_VERSION@.la include $(srcdir)/../src/filelist.am -include $(srcdir)/filelist.am +include $(srcdir)/filelist.gmake.am files_built_cc = $(glibmm_files_built_cc) files_built_h = $(glibmm_files_built_h) diff --git a/glib/glibmm/arrayhandle.cc b/glib/glibmm/arrayhandle.cc new file mode 100644 index 0000000..3a388b6 --- /dev/null +++ b/glib/glibmm/arrayhandle.cc @@ -0,0 +1,37 @@ +/* Copyright (C) 2011 The glibmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include + +namespace Glib +{ + +ArrayHandle>::~ArrayHandle() noexcept +{ + if (parray_ && ownership_ != Glib::OWNERSHIP_NONE) + { + if (ownership_ != Glib::OWNERSHIP_SHALLOW) + { + // Deep ownership: release each container element. + const CType* const pend = parray_ + size_; + for (const CType* p = parray_; p != pend; ++p) + Tr::release_c_type(*p); + } + g_free(const_cast(parray_)); + } +} + +} // namespace Glib diff --git a/glib/glibmm/arrayhandle.h b/glib/glibmm/arrayhandle.h new file mode 100644 index 0000000..735b661 --- /dev/null +++ b/glib/glibmm/arrayhandle.h @@ -0,0 +1,754 @@ +#ifndef _GLIBMM_ARRAYHANDLE_H +#define _GLIBMM_ARRAYHANDLE_H + +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include + +namespace Glib +{ + +namespace Container_Helpers +{ + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +/* Count the number of elements in a 0-terminated sequence. + */ +template +inline std::size_t +compute_array_size(const T* array) +{ + const T* pend = array; + + while (*pend) + ++pend; + + return (pend - array); +} + +/* Allocate and fill a 0-terminated array. The size argument + * specifies the number of elements in the input sequence. + */ +template +typename Tr::CType* +create_array(For pbegin, std::size_t size, Tr) +{ + using CType = typename Tr::CType; + + CType* const array = static_cast(g_malloc((size + 1) * sizeof(CType))); + CType* const array_end = array + size; + + for (CType* pdest = array; pdest != array_end; ++pdest) + { + // Use & to force a warning if the iterator returns a temporary object. + *pdest = Tr::to_c_type(*&*pbegin); + ++pbegin; + } + + *array_end = CType(); + return array; +} + +template +gboolean* +create_bool_array(For pbegin, std::size_t size) +{ + gboolean* const array(static_cast(g_malloc((size + 1) * sizeof(gboolean)))); + gboolean* const array_end(array + size); + + for (gboolean* pdest(array); pdest != array_end; ++pdest) + { + *pdest = *pbegin; + ++pbegin; + } + + *array_end = false; + return array; +} + +/* Convert from any container that supports forward + * iterators and has a size() method. + */ +template +struct ArraySourceTraits +{ + using CType = typename Tr::CType; + + static std::size_t get_size(const Cont& cont) { return cont.size(); } + + static const CType* get_data(const Cont& cont, std::size_t size) + { + return Glib::Container_Helpers::create_array(cont.begin(), size, Tr()); + } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_SHALLOW; +}; + +// source traits for bools. +template +struct BoolArraySourceTraits +{ + using CType = gboolean; + + static std::size_t get_size(const Cont& cont) { return cont.size(); } + + static const CType* get_data(const Cont& cont, std::size_t size) + { + return Glib::Container_Helpers::create_bool_array(cont.begin(), size); + } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_SHALLOW; +}; +/* Convert from a 0-terminated array. The Cont argument must be a pointer + * to the first element. Note that only arrays of the C type are supported. + */ +template +struct ArraySourceTraits +{ + using CType = typename Tr::CType; + + static std::size_t get_size(const CType* array) + { + return (array) ? Glib::Container_Helpers::compute_array_size(array) : 0; + } + + static const CType* get_data(const CType* array, std::size_t) { return array; } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_NONE; +}; + +template +struct ArraySourceTraits : ArraySourceTraits +{ +}; + +/* Convert from a 0-terminated array. The Cont argument must be a pointer + * to the first element. Note that only arrays of the C type are supported. + * For consistency, the array must be 0-terminated, even though the array + * size is known at compile time. + */ +template +struct ArraySourceTraits +{ + using CType = typename Tr::CType; + + static std::size_t get_size(const CType*) { return (N - 1); } + + static const CType* get_data(const CType* array, std::size_t) { return array; } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_NONE; +}; + +template +struct ArraySourceTraits : ArraySourceTraits +{ +}; + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +/** + * @ingroup ContHelpers + */ +template +class ArrayHandleIterator +{ +public: + using CppType = typename Tr::CppType; + using CType = typename Tr::CType; + + using iterator_category = std::random_access_iterator_tag; + using value_type = CppType; + using difference_type = std::ptrdiff_t; + using reference = value_type; + using pointer = void; + + explicit inline ArrayHandleIterator(const CType* pos); + + inline value_type operator*() const; + inline value_type operator[](difference_type offset) const; + + inline ArrayHandleIterator& operator++(); + inline const ArrayHandleIterator operator++(int); + // these are needed by msvc 2005 when using deque. + inline ArrayHandleIterator& operator--(); + inline const ArrayHandleIterator operator--(int); + + // All this random access stuff is only there because STL algorithms + // usually have optimized specializations for random access iterators, + // and we don't want to give away efficiency for nothing. + // + inline ArrayHandleIterator& operator+=(difference_type rhs); + inline ArrayHandleIterator& operator-=(difference_type rhs); + inline const ArrayHandleIterator operator+(difference_type rhs) const; + inline const ArrayHandleIterator operator-(difference_type rhs) const; + inline difference_type operator-(const ArrayHandleIterator& rhs) const; + + inline bool operator==(const ArrayHandleIterator& rhs) const; + inline bool operator!=(const ArrayHandleIterator& rhs) const; + inline bool operator<(const ArrayHandleIterator& rhs) const; + inline bool operator>(const ArrayHandleIterator& rhs) const; + inline bool operator<=(const ArrayHandleIterator& rhs) const; + inline bool operator>=(const ArrayHandleIterator& rhs) const; + +private: + const CType* pos_; +}; + +} // namespace Container_Helpers + +// TODO: When we can break ABI, remove this and replace uses of it with std::vector. +// We cannot deprecate it yet, because we cannot easily deprecate methods that use it +//- for instance, we cannot just override methods that use it as a return type. + +/** This is an intermediate type. When a method takes this, or returns this, you + * should use a standard C++ container of your choice, such as std::list or + * std::vector. + * + * However, this is not used in new API. We now prefer to just use std::vector, + * which is less flexibile, but makes the API clearer. + * + * @ingroup ContHandles + */ +template > +class ArrayHandle +{ +public: + using CppType = typename Tr::CppType; + using CType = typename Tr::CType; + + using value_type = CppType; + using size_type = std::size_t; + using difference_type = std::ptrdiff_t; + + using const_iterator = Glib::Container_Helpers::ArrayHandleIterator; + using iterator = Glib::Container_Helpers::ArrayHandleIterator; + + template + inline ArrayHandle(const Cont& container); + + // Take over ownership of an array created by GTK+ functions. + inline ArrayHandle(const CType* array, std::size_t array_size, Glib::OwnershipType ownership); + inline ArrayHandle(const CType* array, Glib::OwnershipType ownership); + + // Copying clears the ownership flag of the source handle. + inline ArrayHandle(const ArrayHandle& other); + + ~ArrayHandle() noexcept; + + inline const_iterator begin() const; + inline const_iterator end() const; + + template + inline operator std::vector() const; + template + inline operator std::deque() const; + template + inline operator std::list() const; + + template + inline void assign_to(Cont& container) const; + + template + inline void copy(Out pdest) const; + + inline const CType* data() const; + inline std::size_t size() const; + inline bool empty() const; + +private: + std::size_t size_; + const CType* parray_; + mutable Glib::OwnershipType ownership_; + + // No copy assignment. + ArrayHandle& operator=(const ArrayHandle&); +}; + +template <> +class ArrayHandle> +{ +public: + using Me = ArrayHandle>; + using Tr = Container_Helpers::TypeTraits; + + using CppType = Tr::CppType; + using CType = Tr::CType; + + using value_type = CppType; + using size_type = std::size_t; + using difference_type = std::ptrdiff_t; + + using const_iterator = Glib::Container_Helpers::ArrayHandleIterator; + using iterator = Glib::Container_Helpers::ArrayHandleIterator; + + template + inline ArrayHandle(const Cont& container); + + // Take over ownership of an array created by GTK+ functions. + inline ArrayHandle(const CType* array, std::size_t array_size, Glib::OwnershipType ownership); + inline ArrayHandle(const CType* array, Glib::OwnershipType ownership); + + // Copying clears the ownership flag of the source handle. + inline ArrayHandle(const Me& other); + + ~ArrayHandle() noexcept; + + inline const_iterator begin() const; + inline const_iterator end() const; + + // this is inside class definition, so msvc 2005, 2008 and 2010 can compile this code. + template + inline operator std::vector() const + { +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::vector(this->begin(), this->end()); +#else + std::vector temp; + temp.reserve(this->size()); + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif + } + + // this is inside class definition, so msvc 2005, 2008 and 2010 can compile this code. + template + inline operator std::deque() const + { +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::deque(this->begin(), this->end()); +#else + std::deque temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif + } + + // this is inside class definition, so msvc 2005, 2008 and 2010 can compile this code. + template + inline operator std::list() const + { +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::list(this->begin(), this->end()); +#else + std::list temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif + } + + template + inline void assign_to(Cont& container) const; + + template + inline void copy(Out pdest) const; + + inline const CType* data() const; + inline std::size_t size() const; + inline bool empty() const; + +private: + std::size_t size_; + const CType* parray_; + mutable Glib::OwnershipType ownership_; + + // No copy assignment. + Me& operator=(const Me&); +}; + +// TODO: Remove this when we can break glibmm API. +/** If a method takes this as an argument, or has this as a return type, then you can use a standard + * container such as std::list or std::vector. + * + * + * However, this is not used in new API. We now prefer to just use std::vector, + * which is less flexibile, but makes the API clearer. + * + * @ingroup ContHandles + */ +using StringArrayHandle = ArrayHandle; + +/***************************************************************************/ +/* Inline implementation */ +/***************************************************************************/ + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +namespace Container_Helpers +{ + +/**** Glib::Container_Helpers::ArrayHandleIterator<> ***********************/ + +template +inline ArrayHandleIterator::ArrayHandleIterator(const CType* pos) : pos_(pos) +{ +} + +template +inline typename ArrayHandleIterator::value_type ArrayHandleIterator::operator*() const +{ + return Tr::to_cpp_type(*pos_); +} + +template +inline typename ArrayHandleIterator::value_type ArrayHandleIterator::operator[]( + difference_type offset) const +{ + return Tr::to_cpp_type(pos_[offset]); +} + +template +inline ArrayHandleIterator& ArrayHandleIterator::operator++() +{ + ++pos_; + return *this; +} + +template +inline const ArrayHandleIterator ArrayHandleIterator::operator++(int) +{ + return ArrayHandleIterator(pos_++); +} + +template +inline ArrayHandleIterator& ArrayHandleIterator::operator--() +{ + --pos_; + return *this; +} + +template +inline const ArrayHandleIterator ArrayHandleIterator::operator--(int) +{ + return ArrayHandleIterator(pos_--); +} + +template +inline ArrayHandleIterator& +ArrayHandleIterator::operator+=(typename ArrayHandleIterator::difference_type rhs) +{ + pos_ += rhs; + return *this; +} + +template +inline ArrayHandleIterator& +ArrayHandleIterator::operator-=(typename ArrayHandleIterator::difference_type rhs) +{ + pos_ -= rhs; + return *this; +} + +template +inline const ArrayHandleIterator +ArrayHandleIterator::operator+(typename ArrayHandleIterator::difference_type rhs) const +{ + return ArrayHandleIterator(pos_ + rhs); +} + +template +inline const ArrayHandleIterator +ArrayHandleIterator::operator-(typename ArrayHandleIterator::difference_type rhs) const +{ + return ArrayHandleIterator(pos_ - rhs); +} + +template +inline typename ArrayHandleIterator::difference_type +ArrayHandleIterator::operator-(const ArrayHandleIterator& rhs) const +{ + return (pos_ - rhs.pos_); +} + +template +inline bool +ArrayHandleIterator::operator==(const ArrayHandleIterator& rhs) const +{ + return (pos_ == rhs.pos_); +} + +template +inline bool +ArrayHandleIterator::operator!=(const ArrayHandleIterator& rhs) const +{ + return (pos_ != rhs.pos_); +} + +template +inline bool +ArrayHandleIterator::operator<(const ArrayHandleIterator& rhs) const +{ + return (pos_ < rhs.pos_); +} + +template +inline bool +ArrayHandleIterator::operator>(const ArrayHandleIterator& rhs) const +{ + return (pos_ > rhs.pos_); +} + +template +inline bool +ArrayHandleIterator::operator<=(const ArrayHandleIterator& rhs) const +{ + return (pos_ <= rhs.pos_); +} + +template +inline bool +ArrayHandleIterator::operator>=(const ArrayHandleIterator& rhs) const +{ + return (pos_ >= rhs.pos_); +} + +} // namespace Container_Helpers + +/**** Glib::ArrayHandle<> **************************************************/ + +template +template +inline ArrayHandle::ArrayHandle(const Cont& container) +: size_(Glib::Container_Helpers::ArraySourceTraits::get_size(container)), + parray_(Glib::Container_Helpers::ArraySourceTraits::get_data(container, size_)), + ownership_(Glib::Container_Helpers::ArraySourceTraits::initial_ownership) +{ +} + +template +inline ArrayHandle::ArrayHandle(const typename ArrayHandle::CType* array, + std::size_t array_size, Glib::OwnershipType ownership) +: size_((array) ? array_size : 0), parray_(array), ownership_(ownership) +{ +} + +template +inline ArrayHandle::ArrayHandle( + const typename ArrayHandle::CType* array, Glib::OwnershipType ownership) +: size_((array) ? Glib::Container_Helpers::compute_array_size(array) : 0), + parray_(array), + ownership_(ownership) +{ +} + +template +inline ArrayHandle::ArrayHandle(const ArrayHandle& other) +: size_(other.size_), parray_(other.parray_), ownership_(other.ownership_) +{ + other.ownership_ = Glib::OWNERSHIP_NONE; +} + +template +ArrayHandle::~ArrayHandle() noexcept +{ + if (parray_ && ownership_ != Glib::OWNERSHIP_NONE) + { + if (ownership_ != Glib::OWNERSHIP_SHALLOW) + { + // Deep ownership: release each container element. + const CType* const pend = parray_ + size_; + for (const CType* p = parray_; p != pend; ++p) + Tr::release_c_type(*p); + } + g_free(const_cast(parray_)); + } +} + +template +inline typename ArrayHandle::const_iterator +ArrayHandle::begin() const +{ + return Glib::Container_Helpers::ArrayHandleIterator(parray_); +} + +template +inline typename ArrayHandle::const_iterator +ArrayHandle::end() const +{ + return Glib::Container_Helpers::ArrayHandleIterator(parray_ + size_); +} + +template +template +inline ArrayHandle::operator std::vector() const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::vector(this->begin(), this->end()); +#else + std::vector temp; + temp.reserve(this->size()); + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif +} + +template +template +inline ArrayHandle::operator std::deque() const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::deque(this->begin(), this->end()); +#else + std::deque temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif +} + +template +template +inline ArrayHandle::operator std::list() const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::list(this->begin(), this->end()); +#else + std::list temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif +} + +template +template +inline void +ArrayHandle::assign_to(Cont& container) const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + container.assign(this->begin(), this->end()); +#else + Cont temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + container.swap(temp); +#endif +} + +template +template +inline void +ArrayHandle::copy(Out pdest) const +{ + std::copy(this->begin(), this->end(), pdest); +} + +template +inline const typename ArrayHandle::CType* +ArrayHandle::data() const +{ + return parray_; +} + +template +inline std::size_t +ArrayHandle::size() const +{ + return size_; +} + +template +inline bool +ArrayHandle::empty() const +{ + return (size_ == 0); +} + +/**** Glib::ArrayHandle **********************************************/ + +template +inline ArrayHandle>::ArrayHandle(const Cont& container) +: size_(Glib::Container_Helpers::BoolArraySourceTraits::get_size(container)), + parray_(Glib::Container_Helpers::BoolArraySourceTraits::get_data(container, size_)), + ownership_(Glib::Container_Helpers::BoolArraySourceTraits::initial_ownership) +{ +} + +inline ArrayHandle>::ArrayHandle( + const gboolean* array, std::size_t array_size, Glib::OwnershipType ownership) +: size_((array) ? array_size : 0), parray_(array), ownership_(ownership) +{ +} + +inline ArrayHandle>::ArrayHandle( + const gboolean* array, Glib::OwnershipType ownership) +: size_((array) ? Glib::Container_Helpers::compute_array_size(array) : 0), + parray_(array), + ownership_(ownership) +{ +} + +inline ArrayHandle>::ArrayHandle( + const ArrayHandle>& other) +: size_(other.size_), parray_(other.parray_), ownership_(other.ownership_) +{ + other.ownership_ = Glib::OWNERSHIP_NONE; +} + +inline ArrayHandle>::const_iterator +ArrayHandle>::begin() const +{ + return Glib::Container_Helpers::ArrayHandleIterator(parray_); +} + +inline ArrayHandle>::const_iterator +ArrayHandle>::end() const +{ + return Glib::Container_Helpers::ArrayHandleIterator(parray_ + size_); +} + +template +inline void +ArrayHandle>::assign_to(Cont& container) const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + container.assign(this->begin(), this->end()); +#else + Cont temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + container.swap(temp); +#endif +} + +template +inline void +ArrayHandle>::copy(Out pdest) const +{ + std::copy(this->begin(), this->end(), pdest); +} + +inline const gboolean* +ArrayHandle>::data() const +{ + return parray_; +} + +inline std::size_t +ArrayHandle>::size() const +{ + return size_; +} + +inline bool +ArrayHandle>::empty() const +{ + return (size_ == 0); +} + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +} // namespace Glib + +#endif /* _GLIBMM_ARRAYHANDLE_H */ diff --git a/glib/glibmm/class.cc b/glib/glibmm/class.cc index 36c3c4b..29219a6 100644 --- a/glib/glibmm/class.cc +++ b/glib/glibmm/class.cc @@ -84,9 +84,14 @@ Class::register_derived_type(GType base_type, GTypeModule* module) } GType +Class::clone_custom_type(const char* custom_type_name) const +{ + return clone_custom_type(custom_type_name, interface_class_vector_type()); +} + +GType Class::clone_custom_type( - const char* custom_type_name, const interface_classes_type* interface_classes, - const class_init_funcs_type* class_init_funcs, GInstanceInitFunc instance_init_func) const + const char* custom_type_name, const interface_class_vector_type& interface_classes) const { std::string full_name("gtkmm__CustomObject_"); Glib::append_canonical_typename(full_name, custom_type_name); @@ -112,43 +117,30 @@ Class::clone_custom_type( // GTypeQuery::instance_size is guint but GTypeInfo::instance_size is guint16. const guint16 instance_size = (guint16)base_query.instance_size; - // Let the wrapper's class_init_function() be the first one to call. - auto all_class_init_funcs = new class_init_funcs_type( - 1, std::tuple(class_init_func_, nullptr)); - if (class_init_funcs) - all_class_init_funcs->insert(all_class_init_funcs->end(), - class_init_funcs->begin(), class_init_funcs->end()); - const GTypeInfo derived_info = { class_size, nullptr, // base_init &Class::custom_class_base_finalize_function, // base_finalize &Class::custom_class_init_function, nullptr, // class_finalize - all_class_init_funcs, // class_data + this, // class_data instance_size, 0, // n_preallocs - instance_init_func, // instance_init + nullptr, // instance_init nullptr, // value_table }; - // custom_class_init_function() is called when the first object of the custom - // class is created, which is after clone_custom_type() has returned. - // Let custom_class_init_function() delete all_class_init_funcs. - custom_type = g_type_register_static(base_type, full_name.c_str(), &derived_info, GTypeFlags(0)); // Add derived versions of interfaces, if the C type implements any interfaces. // For instance, TreeModel_Class::add_interface(). - if (interface_classes) + for (interface_class_vector_type::size_type i = 0; i < interface_classes.size(); i++) { - for (auto interface_class : *interface_classes) + const Interface_Class* interface_class = interface_classes[i]; + if (interface_class) { - if (interface_class) - { - interface_class->add_interface(custom_type); - } + interface_class->add_interface(custom_type); } } } @@ -184,36 +176,19 @@ Class::custom_class_base_finalize_function(void* g_class) void Class::custom_class_init_function(void* g_class, void* class_data) { - // clone_custom_type() sets the class data pointer to a pointer to a vector - // of pointers to functions to be called. - const class_init_funcs_type& class_init_funcs = - *static_cast(class_data); + // The class_data pointer is set to 'this' by clone_custom_type(). + const Class* const self = static_cast(class_data); - g_return_if_fail(!class_init_funcs.empty() && std::get(class_init_funcs[0]) != nullptr); + g_return_if_fail(self->class_init_func_ != nullptr); // Call the wrapper's class_init_function() to redirect // the vfunc and default signal handler callbacks. - auto init_func = std::get(class_init_funcs[0]); - (*init_func)(g_class, nullptr); + (*self->class_init_func_)(g_class, nullptr); GObjectClass* const gobject_class = static_cast(g_class); gobject_class->get_property = &Glib::custom_get_property_callback; gobject_class->set_property = &Glib::custom_set_property_callback; - // Call extra class init functions, if any. - for (std::size_t i = 1; i < class_init_funcs.size(); ++i) - { - if (auto extra_init_func = std::get(class_init_funcs[i])) - { - auto extra_class_data = std::get(class_init_funcs[i]); - (*extra_init_func)(g_class, extra_class_data); - } - } - - // Assume that this function is called exactly once for each type. - // Delete the class_init_funcs_type that was created in clone_custom_type(). - delete static_cast(class_data); - // Override the properties of implemented interfaces, if any. const GType object_type = G_TYPE_FROM_CLASS(g_class); diff --git a/glib/glibmm/class.h b/glib/glibmm/class.h index 127b9c9..3ffc51e 100644 --- a/glib/glibmm/class.h +++ b/glib/glibmm/class.h @@ -1,6 +1,9 @@ +// -*- c++ -*- #ifndef _GLIBMM_CLASS_H #define _GLIBMM_CLASS_H +/* $Id$ */ + /* Copyright 2001 Free Software Foundation * Copyright (C) 1998-2002 The gtkmm Development Team * @@ -22,7 +25,6 @@ #include //Include this here so that the /private/*.h classes have access to GLIBMM_VFUNCS_ENABLED #include //For interface properties that custom types might override. -#include #ifndef DOXYGEN_SHOULD_SKIP_THIS @@ -51,13 +53,20 @@ public: inline GType get_type() const; - /// The type that holds pointers to the interfaces of custom types. - using interface_classes_type = std::vector; - /** The type that holds pointers to extra class init functions of custom types. - * The std::tuple contains a function pointer and a pointer to class data. - * The class data pointer can be nullptr, if the function does not need it. + // TODO: Remove this method at the next ABI/API break. + /** Register a static custom GType, derived from the parent of this class's type. + * The parent type of the registered custom type is the same C class as the parent + * of the get_type() type. If a type with the specified name is already registered, + * nothing is done. register_derived_type() must have been called. + * @param custom_type_name The name of the registered type is + * "gtkmm__CustomObject_" + canonic(custom_type_name), where canonic() + * replaces special characters with '+'. + * @return The registered type. */ - using class_init_funcs_type = std::vector>; + GType clone_custom_type(const char* custom_type_name) const; + + /// The type that holds pointers to the interfaces of custom types. + using interface_class_vector_type = std::vector; /** Register a static custom GType, derived from the parent of this class's type. * The parent type of the registered custom type is the same C class as the parent @@ -66,16 +75,11 @@ public: * @param custom_type_name The name of the registered type is * "gtkmm__CustomObject_" + canonic(custom_type_name), where canonic() * replaces special characters with '+'. - * @param interface_classes Interfaces that the custom type implements (can be nullptr). - * @param class_init_funcs Extra class init functions (can be nullptr). These - * functions, if any, are called after the class init function of this - * class's type, e.g. Gtk::Widget. - * @param instance_init_func Instance init function (can be nullptr). + * @param interface_classes Interfaces that the custom type implements. * @return The registered type. */ GType clone_custom_type( - const char* custom_type_name, const interface_classes_type* interface_classes, - const class_init_funcs_type* class_init_funcs, GInstanceInitFunc instance_init_func) const; + const char* custom_type_name, const interface_class_vector_type& interface_classes) const; protected: GType gtype_; diff --git a/glib/glibmm/containerhandle_shared.h b/glib/glibmm/containerhandle_shared.h index e8bfd7b..851df9c 100644 --- a/glib/glibmm/containerhandle_shared.h +++ b/glib/glibmm/containerhandle_shared.h @@ -53,6 +53,43 @@ enum OwnershipType OWNERSHIP_DEEP /*!< Release the list, and its elements, when the container is deleted. */ }; +/** Utility class holding an iterator sequence. + * @ingroup ContHandles + * This can be used to initialize a Glib container handle (such as + * Glib::ArrayHandle) with an iterator sequence. Use the helper + * function Glib::sequence() to create a Sequence<> object. + */ +template +class Sequence +{ +private: + Iterator pbegin_; + Iterator pend_; + +public: + Sequence(Iterator pbegin, Iterator pend) : pbegin_(pbegin), pend_(pend) {} + + Iterator begin() const { return pbegin_; } + Iterator end() const { return pend_; } + std::size_t size() const { return std::distance(pbegin_, pend_); } +}; + +/** Helper function to create a Glib::Sequence<> object, which + * in turn can be used to initialize a container handle. + * @ingroup ContHandles + * + * @par Usage example: + * @code + * combo.set_popdown_strings(Glib::sequence(foo_begin, foo_end)); + * @endcode + */ +template +inline Sequence +sequence(Iterator pbegin, Iterator pend) +{ + return Sequence(pbegin, pend); +} + namespace Container_Helpers { @@ -84,8 +121,7 @@ struct TypeTraits // be next to the objects that they use. #ifdef GLIBMM_CAN_USE_DYNAMIC_CAST_IN_UNUSED_TEMPLATE_WITHOUT_DEFINITION -/** Partial specialization for pointers to GObject instances. - * The C++ type is not a Glib::RefPtr<>. It can be a gtkmm widget. +/** Partial specialization for pointers to GtkObject instances. * @ingroup ContHelpers */ template @@ -117,8 +153,7 @@ struct TypeTraits // This confuse the SUN Forte compiler, so we ifdef it out: #ifdef GLIBMM_HAVE_DISAMBIGUOUS_CONST_TEMPLATE_SPECIALIZATIONS -/** Partial specialization for pointers to const GObject instances. - * The C++ type is not a Glib::RefPtr<>. It can be a gtkmm widget. +/** Partial specialization for pointers to const GtkObject instances. * @ingroup ContHelpers */ template @@ -170,7 +205,7 @@ struct TypeTraits> // because that would be "dependent", and g++ 3.4 does not allow that. // The specific Glib::wrap() overloads don't do anything special anyway. GObject* cobj = (GObject*)(ptr); - return Glib::make_refptr_for_instance(dynamic_cast(Glib::wrap_auto(cobj, true /* take_copy */))); + return Glib::RefPtr(dynamic_cast(Glib::wrap_auto(cobj, true /* take_copy */))); // We use dynamic_cast<> in case of multiple inheritance. } @@ -206,7 +241,7 @@ struct TypeTraits> // because that would be "dependent", and g++ 3.4 does not allow that. // The specific Glib::wrap() overloads don't do anything special anyway. GObject* cobj = (GObject*)const_cast(ptr); - return Glib::make_refptr_for_instance( + return Glib::RefPtr( dynamic_cast(Glib::wrap_auto(cobj, true /* take_copy */))); // We use dynamic_cast<> in case of multiple inheritance. } diff --git a/glib/glibmm/extraclassinit.cc b/glib/glibmm/containers.cc similarity index 57% rename from glib/glibmm/extraclassinit.cc rename to glib/glibmm/containers.cc index 343fc6f..bb19f45 100644 --- a/glib/glibmm/extraclassinit.cc +++ b/glib/glibmm/containers.cc @@ -1,4 +1,6 @@ -/* Copyright (C) 2017 The glibmm Development Team +/* containers.h + * + * Copyright (C) 1998-2002 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -11,22 +13,14 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library. If not, see . + * License along with this library. If not, see . */ -#include +#include namespace Glib { -ExtraClassInit::ExtraClassInit(GClassInitFunc class_init_func, void* class_data, - GInstanceInitFunc instance_init_func) -{ - if (class_init_func) - add_custom_class_init_function(class_init_func, class_data); - - if (instance_init_func) - set_custom_instance_init_function(instance_init_func); -} +gpointer glibmm_null_pointer = nullptr; } // namespace Glib diff --git a/glib/glibmm/containers.h b/glib/glibmm/containers.h new file mode 100644 index 0000000..55fc2c5 --- /dev/null +++ b/glib/glibmm/containers.h @@ -0,0 +1,360 @@ +#ifndef _GLIBMM_CONTAINERS_H +#define _GLIBMM_CONTAINERS_H + +/* containers.h + * + * Copyright (C) 1998-2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include /* for backward compatibility */ +#include +#include +#include +#include + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +namespace Glib +{ + +template +class List_Iterator; +template +class List_ConstIterator; +template +class List_ReverseIterator; + +// Most of these methods in the non-template classes needs to be moved +// to implementation. + +// Daniel Elstner has ideas about generating these per-widget with m4. murrayc. + +extern GLIBMM_API gpointer glibmm_null_pointer; + +template +class List_Iterator_Base +{ +public: + using value_type = T; + using pointer = T*; + using reference = T&; +}; + +/// For instance, List_Iterator< Gtk::Widget > +template +class List_Iterator : public List_Iterator_Base +{ +public: + using iterator_category = std::bidirectional_iterator_tag; + using size_type = std::size_t; + using difference_type = std::ptrdiff_t; + + using pointer = typename List_Iterator_Base::pointer; + using reference = typename List_Iterator_Base::reference; + + GList* const* head_; + GList* node_; + + using Self = List_Iterator; + + List_Iterator(GList* const& head, GList* node) : head_(&head), node_(node) {} + + List_Iterator() : head_(nullptr), node_(nullptr) {} + + List_Iterator(const Self& src) : head_(src.head_), node_(src.node_) {} + + bool operator==(const Self& src) const { return node_ == src.node_; } + bool operator!=(const Self& src) const { return node_ != src.node_; } + + Self& operator++() + { + if (!node_) + node_ = g_list_first(*head_); + else + node_ = (GList*)g_list_next(node_); + return *this; + } + + Self operator++(int) + { + Self tmp = *this; + ++*this; + return tmp; + } + + Self& operator--() + { + if (!node_) + node_ = g_list_last(*head_); + else + node_ = (GList*)g_list_previous(node_); + + return *this; + } + + Self operator--(int) + { + Self tmp = *this; + --*this; + return tmp; + } + + reference operator*() const { return *(pointer)(node_ ? node_->data : glibmm_null_pointer); } + + pointer operator->() const { return &**this; } +}; + +/// For instance, SList_Iterator< Gtk::Widget > +template +class SList_Iterator : public List_Iterator_Base +{ +public: + using iterator_category = std::forward_iterator_tag; + using size_type = std::size_t; + using difference_type = std::ptrdiff_t; + + using pointer = typename List_Iterator_Base::pointer; + using reference = typename List_Iterator_Base::reference; + + GSList* node_; + using Self = SList_Iterator; + + SList_Iterator(GSList* node) : node_(node) {} + + SList_Iterator() : node_(nullptr) {} + + SList_Iterator(const Self& src) : node_(src.node_) {} + + bool operator==(const Self& src) const { return node_ == src.node_; } + bool operator!=(const Self& src) const { return node_ != src.node_; } + + Self& operator++() + { + node_ = g_slist_next(node_); + return *this; + } + + Self operator++(int) + { + Self tmp = *this; + ++*this; + return tmp; + } + + reference operator*() const + { + return reinterpret_cast(node_ ? node_->data : glibmm_null_pointer); + } + + pointer operator->() const { return &**this; } +}; + +// This iterator variation returns T_IFace (wrapped from T_Impl) +// For instance, List_Cpp_Iterator is +// a little like std::list::iterator +template +class List_Cpp_Iterator : public List_Iterator_Base +{ +public: + using iterator_category = std::bidirectional_iterator_tag; + using size_type = std::size_t; + using difference_type = std::ptrdiff_t; + + using pointer = typename List_Iterator_Base::pointer; + using reference = typename List_Iterator_Base::reference; + + using Self = List_Cpp_Iterator; + + GList** head_; + GList* node_; + + bool operator==(const Self& src) const { return node_ == src.node_; } + bool operator!=(const Self& src) const { return node_ != src.node_; } + + List_Cpp_Iterator(GList*& head, GList* node) : head_(&head), node_(node) {} + + List_Cpp_Iterator() : head_(nullptr), node_(nullptr) {} + + List_Cpp_Iterator(const Self& src) : head_(src.head_), node_(src.node_) {} + + reference operator*() const + { + if (node_ && node_->data) + { + // We copy/paste the widget wrap() implementation here, + // because we can not use a specific Glib::wrap(T_Impl) overload here, + // because that would be "dependent", and g++ 3.4 does not allow that. + // The specific Glib::wrap() overloads don't do anything special anyway. + GObject* cobj = static_cast(node_->data); + +#ifdef GLIBMM_CAN_USE_DYNAMIC_CAST_IN_UNUSED_TEMPLATE_WITHOUT_DEFINITION + return *dynamic_cast(Glib::wrap_auto(cobj, false)); +#else + // We really do need to use dynamic_cast<>, so I expect problems if this code is used. + // murrayc. + return *static_cast(Glib::wrap_auto(cobj, false)); +#endif + } + return *static_cast(nullptr); // boom! + } + + pointer operator->() const { return &**this; } + + Self& operator++() + { + if (!node_) + node_ = g_list_first(*head_); + else + node_ = (GList*)g_list_next(node_); + + return *this; + } + + Self operator++(int) + { + Self tmp = *this; + ++*this; + return tmp; + } + + Self& operator--() + { + if (!node_) + node_ = g_list_last(*head_); + else + node_ = (GList*)g_list_previous(node_); + + return *this; + } + + Self operator--(int) + { + Self tmp = *this; + --*this; + return tmp; + } +}; + +template +class List_ReverseIterator : private T_Base +{ +public: + using iterator_category = typename T_Base::iterator_category; + using size_type = typename T_Base::size_type; + using difference_type = typename T_Base::difference_type; + + using value_type = typename T_Base::value_type; + using pointer = typename T_Base::pointer; + using reference = typename T_Base::reference; + + using Self = List_ReverseIterator; + + bool operator==(const Self& src) const { return T_Base::operator==(src); } + bool operator!=(const Self& src) const { return T_Base::operator!=(src); } + + List_ReverseIterator(GList* const& head, GList* node) : T_Base(head, node) {} + + List_ReverseIterator() : T_Base() {} + + List_ReverseIterator(const Self& src) : T_Base(src) {} + + List_ReverseIterator(const T_Base& src) : T_Base(src) { ++(*this); } + + Self& operator++() + { + T_Base::operator--(); + return *this; + } + Self& operator--() + { + T_Base::operator++(); + return *this; + } + Self operator++(int) + { + Self src = *this; + T_Base::operator--(); + return src; + } + Self operator--(int) + { + Self src = *this; + T_Base::operator++(); + return src; + } + + reference operator*() const { return T_Base::operator*(); } + pointer operator->() const { return T_Base::operator->(); } +}; + +template +class List_ConstIterator : public T_Base +{ +public: + using iterator_category = typename T_Base::iterator_category; + using size_type = typename T_Base::size_type; + using difference_type = typename T_Base::difference_type; + + using value_type = const typename T_Base::value_type; + using pointer = const typename T_Base::pointer; + using reference = const typename T_Base::reference; + + using Self = List_ConstIterator; + + bool operator==(const Self& src) const { return T_Base::operator==(src); } + bool operator!=(const Self& src) const { return T_Base::operator!=(src); } + + List_ConstIterator(GList* const& head, GList* node) : T_Base(head, node) {} + + List_ConstIterator() : T_Base() {} + + List_ConstIterator(const Self& src) : T_Base(src) {} + + List_ConstIterator(const T_Base& src) : T_Base(src) {} + + Self& operator++() + { + T_Base::operator++(); + return *this; + } + Self& operator--() + { + T_Base::operator--(); + return *this; + } + Self operator++(int) + { + Self src = *this; + T_Base::operator++(); + return src; + } + Self operator--(int) + { + Self src = *this; + T_Base::operator--(); + return src; + } + + reference operator*() const { return T_Base::operator*(); } + pointer operator->() const { return T_Base::operator->(); } +}; + +} // namespace Glib + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +#endif /* _GLIBMM_CONTAINERS_H */ diff --git a/glib/glibmm/dispatcher.cc b/glib/glibmm/dispatcher.cc index d5a96de..601e99e 100644 --- a/glib/glibmm/dispatcher.cc +++ b/glib/glibmm/dispatcher.cc @@ -14,6 +14,10 @@ * License along with this library. If not, see . */ +#ifndef GLIBMM_CAN_USE_THREAD_LOCAL +#include +#endif + #include #include #include @@ -22,8 +26,7 @@ #include #include #include -#include -#include +#include #include // For std::move() #ifdef G_OS_WIN32 @@ -47,26 +50,17 @@ #define EINTR 0 /* TODO: should use the real define */ #endif -namespace Glib -{ -class DispatchNotifier; -} - namespace { struct DispatchNotifyData { - Glib::Dispatcher::Impl* dispatcher_impl; + Glib::Dispatcher* dispatcher; Glib::DispatchNotifier* notifier; - DispatchNotifyData() - : dispatcher_impl(nullptr), notifier(nullptr) - {} + DispatchNotifyData() : dispatcher(nullptr), notifier(nullptr) {} - DispatchNotifyData(Glib::Dispatcher::Impl* d, Glib::DispatchNotifier* n) - : dispatcher_impl(d), notifier(n) - {} + DispatchNotifyData(Glib::Dispatcher* d, Glib::DispatchNotifier* n) : dispatcher(d), notifier(n) {} }; static void @@ -126,33 +120,11 @@ fd_close_and_invalidate(int& fd) } #endif /* !G_OS_WIN32 */ -void warn_dropped_dispatcher_message() -{ - g_warning("Dropped dispatcher message as the dispatcher no longer exists."); -} - } // anonymous namespace namespace Glib { -// The most important reason for having the dispatcher implementation in a separate -// class is that its deletion can be delayed until it's safe to delete it. -// Deletion is safe when the pipe does not contain any message to the dispatcher -// to delete. When the pipe is empty, it's surely safe. -struct Dispatcher::Impl -{ -public: - sigc::signal signal_; - DispatchNotifier* notifier_; - - explicit Impl(const Glib::RefPtr& context); - - // noncopyable - Impl(const Impl&) = delete; - Impl& operator=(const Impl&) = delete; -}; - class DispatchNotifier : public sigc::trackable { public: @@ -162,10 +134,11 @@ public: DispatchNotifier(const DispatchNotifier&) = delete; DispatchNotifier& operator=(const DispatchNotifier&) = delete; - static DispatchNotifier* reference_instance(const Glib::RefPtr& context); - static void unreference_instance(DispatchNotifier* notifier, Dispatcher::Impl* dispatcher_impl); + static DispatchNotifier* reference_instance( + const Glib::RefPtr& context, const Dispatcher* dispatcher); + static void unreference_instance(DispatchNotifier* notifier, const Dispatcher* dispatcher); - void send_notification(Dispatcher::Impl* dispatcher_impl); + void send_notification(Dispatcher* dispatcher); protected: // Only used by reference_instance(). Should be private, but that triggers @@ -173,10 +146,14 @@ protected: explicit DispatchNotifier(const Glib::RefPtr& context); private: +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL static thread_local DispatchNotifier* thread_specific_instance_; +#else + static Glib::Threads::Private thread_specific_instance_; +#endif + + std::set deleted_dispatchers_; - using UniqueImplPtr = std::unique_ptr; - std::forward_list orphaned_dispatcher_impl_; long ref_count_; Glib::RefPtr context_; #ifdef G_OS_WIN32 @@ -195,10 +172,16 @@ private: /**** Glib::DispatchNotifier ***********************************************/ +// static + +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL thread_local DispatchNotifier* DispatchNotifier::thread_specific_instance_ = nullptr; +#else +Glib::Threads::Private DispatchNotifier::thread_specific_instance_; +#endif DispatchNotifier::DispatchNotifier(const Glib::RefPtr& context) -: orphaned_dispatcher_impl_(), +: deleted_dispatchers_(), ref_count_(0), context_(context), #ifdef G_OS_WIN32 @@ -221,10 +204,10 @@ DispatchNotifier::DispatchNotifier(const Glib::RefPtr& context) // The following code is equivalent to // context_->signal_io().connect( - // sigc::mem_fun(*this, &DispatchNotifier::pipe_io_handler), fd, Glib::IOCondition::IO_IN); + // sigc::mem_fun(*this, &DispatchNotifier::pipe_io_handler), fd, Glib::IO_IN); // except for source->set_can_recurse(true). - const auto source = IOSource::create(fd, Glib::IOCondition::IO_IN); + const auto source = IOSource::create(fd, Glib::IO_IN); // If the signal emission in pipe_io_handler() starts a new main loop, // the event source shall not be blocked while that loop runs. (E.g. while @@ -294,20 +277,40 @@ DispatchNotifier::create_pipe() } // static -DispatchNotifier* DispatchNotifier::reference_instance( - const Glib::RefPtr& context) +DispatchNotifier* +DispatchNotifier::reference_instance( + const Glib::RefPtr& context, const Dispatcher* dispatcher) { +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL DispatchNotifier* instance = thread_specific_instance_; +#else + DispatchNotifier* instance = thread_specific_instance_.get(); +#endif if (!instance) { instance = new DispatchNotifier(context); +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL thread_specific_instance_ = instance; +#else + thread_specific_instance_.replace(instance); +#endif } else { // Prevent massive mess-up. g_return_val_if_fail(instance->context_ == context, nullptr); + + // In the possible but unlikely case that a new dispatcher gets the same + // address as a newly deleted one, if the pipe still contains messages to + // the deleted dispatcher, those messages will be delivered to the new one. + // Not ideal, but perhaps the best that can be done without breaking ABI. + // The alternative would be to remove the following erase(), and risk not + // delivering messages sent to the new dispatcher. + // TODO: When we can break ABI, a better solution without this drawback can + // be implemented. See https://bugzilla.gnome.org/show_bug.cgi?id=651942 + // especially comment 16. + instance->deleted_dispatchers_.erase(dispatcher); } ++instance->ref_count_; // initially 0 @@ -316,49 +319,48 @@ DispatchNotifier* DispatchNotifier::reference_instance( } // static -void DispatchNotifier::unreference_instance( - DispatchNotifier* notifier, Dispatcher::Impl* dispatcher_impl) +void +DispatchNotifier::unreference_instance(DispatchNotifier* notifier, const Dispatcher* dispatcher) { +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL DispatchNotifier* const instance = thread_specific_instance_; +#else + DispatchNotifier* const instance = thread_specific_instance_.get(); +#endif // Yes, the notifier argument is only used to check for sanity. g_return_if_fail(instance == notifier); if (instance->pipe_is_empty()) - { - // No messages in the pipe. Delete the Dispatcher::Impl immediately. - delete dispatcher_impl; - instance->orphaned_dispatcher_impl_.clear(); - } + // No messages in the pipe. No need to keep track of deleted dispatchers. + instance->deleted_dispatchers_.clear(); else - { - // There are messages in the pipe, possibly to the orphaned Dispatcher::Impl. - // Keep it around until it can safely be deleted. - // Delete all slots connected to the Dispatcher. Then the signal emission - // in pipe_io_handler() will do nothing. - dispatcher_impl->signal_.clear(); - // Add a slot that will warn that a message has been dropped. - dispatcher_impl->signal_.connect(sigc::ptr_fun(warn_dropped_dispatcher_message)); - instance->orphaned_dispatcher_impl_.push_front(UniqueImplPtr(dispatcher_impl)); - } + // There are messages in the pipe, possibly to the deleted dispatcher. + // Keep its address, so pipe_io_handler() can avoid delivering messages to it. + instance->deleted_dispatchers_.insert(dispatcher); if (--instance->ref_count_ <= 0) { g_return_if_fail(instance->ref_count_ == 0); // could be < 0 if messed up +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL delete thread_specific_instance_; thread_specific_instance_ = nullptr; +#else + thread_specific_instance_.replace(nullptr); +#endif } } -void DispatchNotifier::send_notification(Dispatcher::Impl* dispatcher_impl) +void +DispatchNotifier::send_notification(Dispatcher* dispatcher) { #ifdef G_OS_WIN32 { const std::lock_guard lock(mutex_); const bool was_empty = notify_queue_.empty(); - notify_queue_.emplace_back(DispatchNotifyData(dispatcher_impl, this)); + notify_queue_.emplace_back(DispatchNotifyData(dispatcher, this)); if (was_empty) { @@ -370,7 +372,7 @@ void DispatchNotifier::send_notification(Dispatcher::Impl* dispatcher_impl) } #else /* !G_OS_WIN32 */ - DispatchNotifyData data(dispatcher_impl, this); + DispatchNotifyData data(dispatcher, this); gssize n_written; do @@ -403,10 +405,10 @@ DispatchNotifier::pipe_is_empty() #ifdef G_OS_WIN32 return notify_queue_.empty(); #else - PollFD poll_fd(fd_receiver_, Glib::IOCondition::IO_IN); + PollFD poll_fd(fd_receiver_, Glib::IO_IN); // GPollFD*, number of file descriptors to poll, timeout (ms) g_poll(poll_fd.gobj(), 1, 0); - return static_cast(poll_fd.get_revents() & Glib::IOCondition::IO_IN) == 0; + return (poll_fd.get_revents() & Glib::IO_IN) == 0; #endif } @@ -464,69 +466,75 @@ bool DispatchNotifier::pipe_io_handler(Glib::IOCondition) g_return_val_if_fail(data.notifier == this, true); + // Drop the received message, if it is addressed to a deleted dispatcher. + const bool drop_message = + (deleted_dispatchers_.find(data.dispatcher) != deleted_dispatchers_.end()); + + // If the pipe is empty, there can be no messages to deleted dispatchers. + // No reason to keep track of them any more. + if (!deleted_dispatchers_.empty() && pipe_is_empty()) + deleted_dispatchers_.clear(); + + if (drop_message) + { + g_warning("Dropped dispatcher message as the dispatcher no longer exists"); + return true; + } + // Actually, we wouldn't need the try/catch block because the Glib::Source // C callback already does it for us. However, we do it anyway because the // default return value is 'false', which is not what we want. try { - data.dispatcher_impl->signal_(); // emit + data.dispatcher->signal_(); // emit } catch (...) { Glib::exception_handlers_invoke(); } - if (!orphaned_dispatcher_impl_.empty() && pipe_is_empty()) - orphaned_dispatcher_impl_.clear(); - return true; } -/**** Glib::Dispatcher and Glib::Dispatcher::Impl **************************/ +/**** Glib::Dispatcher *****************************************************/ -Dispatcher::Impl::Impl(const Glib::RefPtr& context) -: signal_(), - notifier_(DispatchNotifier::reference_instance(context)) +Dispatcher::Dispatcher() +: signal_(), notifier_(DispatchNotifier::reference_instance(MainContext::get_default(), this)) { } -Dispatcher::Dispatcher() -: impl_(new Dispatcher::Impl(MainContext::get_default())) -{} - - Dispatcher::Dispatcher(const Glib::RefPtr& context) -: impl_(new Dispatcher::Impl(context)) +: signal_(), notifier_(DispatchNotifier::reference_instance(context, this)) { } Dispatcher::~Dispatcher() noexcept { - DispatchNotifier::unreference_instance(impl_->notifier_, impl_); + DispatchNotifier::unreference_instance(notifier_, this); } void Dispatcher::emit() { - impl_->notifier_->send_notification(impl_); + notifier_->send_notification(this); } void Dispatcher::operator()() { - impl_->notifier_->send_notification(impl_); + notifier_->send_notification(this); } sigc::connection -Dispatcher::connect(const sigc::slot& slot) +Dispatcher::connect(const sigc::slot& slot) { - return impl_->signal_.connect(slot); + return signal_.connect(slot); } sigc::connection -Dispatcher::connect(sigc::slot&& slot) +Dispatcher::connect(sigc::slot&& slot) { - return impl_->signal_.connect(std::move(slot)); + return signal_.connect(std::move(slot)); } } // namespace Glib diff --git a/glib/glibmm/dispatcher.h b/glib/glibmm/dispatcher.h index 00c6384..9b7b967 100644 --- a/glib/glibmm/dispatcher.h +++ b/glib/glibmm/dispatcher.h @@ -23,9 +23,13 @@ namespace Glib { +#ifndef DOXYGEN_SHOULD_SKIP_THIS +class DispatchNotifier; +#endif + /** Signal class for inter-thread communication. * @ingroup Threads - * Glib::Dispatcher works similar to sigc::signal. But unlike normal + * Glib::Dispatcher works similar to sigc::signal. But unlike normal * signals, the notification happens asynchronously through a pipe. This is * a simple and efficient way of communicating between threads, and especially * useful in a thread model with a single GUI thread. @@ -83,17 +87,18 @@ public: void emit(); void operator()(); - sigc::connection connect(const sigc::slot& slot); + sigc::connection connect(const sigc::slot& slot); /** @newin{2,48} */ - sigc::connection connect(sigc::slot&& slot); - - #ifndef DOXYGEN_SHOULD_SKIP_THIS - struct Impl; - #endif + sigc::connection connect(sigc::slot&& slot); private: - Impl* impl_; // hidden implementation + sigc::signal signal_; + DispatchNotifier* notifier_; + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + friend class Glib::DispatchNotifier; +#endif }; /*! A Glib::Dispatcher example. diff --git a/glib/glibmm/exceptionhandler.cc b/glib/glibmm/exceptionhandler.cc index 3c15f8c..023c204 100644 --- a/glib/glibmm/exceptionhandler.cc +++ b/glib/glibmm/exceptionhandler.cc @@ -16,6 +16,9 @@ * License along with this library. If not, see . */ +#ifndef GLIBMM_CAN_USE_THREAD_LOCAL +#include +#endif #include #include #include @@ -30,7 +33,11 @@ using HandlerList = std::list>; // Each thread has its own list of exception handlers // to avoid thread synchronization problems. +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL static thread_local HandlerList* thread_specific_handler_list = nullptr; +#else +static Glib::Threads::Private thread_specific_handler_list; +#endif static void glibmm_exception_warning(const GError* error) @@ -80,14 +87,22 @@ namespace Glib { sigc::connection -add_exception_handler(const sigc::slot& slot) +add_exception_handler(const sigc::slot& slot) { +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL HandlerList* handler_list = thread_specific_handler_list; +#else + HandlerList* handler_list = thread_specific_handler_list.get(); +#endif if (!handler_list) { handler_list = new HandlerList(); +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL thread_specific_handler_list = handler_list; +#else + thread_specific_handler_list.set(handler_list); +#endif } handler_list->emplace_back(slot); @@ -112,7 +127,11 @@ exception_handlers_invoke() noexcept // handled. If there are no more handlers in the list and the exception // is still unhandled, call glibmm_unexpected_exception(). +#ifdef GLIBMM_CAN_USE_THREAD_LOCAL if (HandlerList* const handler_list = thread_specific_handler_list) +#else + if(HandlerList *const handler_list = thread_specific_handler_list.get()) +#endif { HandlerList::iterator pslot = handler_list->begin(); diff --git a/glib/glibmm/exceptionhandler.h b/glib/glibmm/exceptionhandler.h index a34fdbf..34a0250 100644 --- a/glib/glibmm/exceptionhandler.h +++ b/glib/glibmm/exceptionhandler.h @@ -27,7 +27,7 @@ namespace Glib /** Specify a slot to be called when an exception is thrown by a signal handler. */ -sigc::connection add_exception_handler(const sigc::slot& slot); +sigc::connection add_exception_handler(const sigc::slot& slot); #ifndef DOXYGEN_SHOULD_SKIP_THIS // internal diff --git a/glib/glibmm/extraclassinit.h b/glib/glibmm/extraclassinit.h deleted file mode 100644 index 9d2fc60..0000000 --- a/glib/glibmm/extraclassinit.h +++ /dev/null @@ -1,97 +0,0 @@ -#ifndef _GLIBMM_EXTRACLASSINIT_H -#define _GLIBMM_EXTRACLASSINIT_H -/* Copyright (C) 2017 The glibmm Development Team - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library. If not, see . - */ - -#include - -namespace Glib -{ - -/** A convenience class for named custom types. - * - * Use it if you need to add code to GType's class init function and/or - * need an instance init function. - * Example: - * @code - * #include - * - * class MyExtraInit : public Glib::ExtraClassInit - * { - * public: - * MyExtraInit(const Glib::ustring& css_name) - * : - * Glib::ExtraClassInit(my_extra_class_init_function, &m_css_name, my_instance_init_function), - * m_css_name(css_name) - * { } - * - * private: - * static void my_extra_class_init_function(void* g_class, void* class_data) - * { - * const auto klass = static_cast(g_class); - * const auto css_name = static_cast(class_data); - * gtk_widget_class_set_css_name(klass, css_name->c_str()); - * } - * static void my_instance_init_function(GTypeInstance* instance, void* g_class) - * { - * gtk_widget_set_has_window(GTK_WIDGET(instance), true); - * } - * - * Glib::ustring m_css_name; - * }; - * - * class MyWidget : public Gtk::WidgetCustomDraw, public MyExtraInit, public Gtk::Widget - * { - * public: - * MyWidget() - * : - * // The GType name will be gtkmm__CustomObject_MyMidget - * Glib::ObjectBase("MyWidget"), // Unique class name - * Gtk::WidgetCustomDraw(), - * MyExtraInit("my-widget"), - * Gtk::Widget() - * { - * // ... - * } - * // ... - * }; - * @endcode - * - * @note Classes derived from %ExtraClassInit (Gtk::WidgetCustomDraw and MyExtraInit - * in the example) must be listed before Glib::Object or a class derived from - * %Glib::Object (Gtk::Widget in the example) in the list of base classes. - * - * @newin{2,52} - */ -class ExtraClassInit : virtual public ObjectBase -{ -protected: - /** Constructor. - * - * @param class_init_func Pointer to an extra class init function. - * nullptr, if no extra class init function is needed. - * @param class_data Class data pointer, passed to the class init function. - * Can be nullptr, if the class init function does not need it. - * @param instance_init_func Pointer to an instance init function. - * nullptr, if no instance init function is needed. - */ - explicit ExtraClassInit(GClassInitFunc class_init_func, void* class_data = nullptr, - GInstanceInitFunc instance_init_func = nullptr); -}; - -} // namespace Glib - -#endif /* _GLIBMM_EXTRACLASSINIT_H */ diff --git a/glib/glibmm/filelist.am b/glib/glibmm/filelist.am index 0218b17..32d5e84 100644 --- a/glib/glibmm/filelist.am +++ b/glib/glibmm/filelist.am @@ -2,17 +2,17 @@ glibmm_files_built_cc = $(glibmm_files_used_hg:.hg=.cc) $(glibmm_files_cc_m4:.m4=) wrap_init.cc glibmm_files_built_h = $(glibmm_files_used_hg:.hg=.h) $(glibmm_files_h_m4:.m4=) -glibmm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(glibmm_files_used_hg)) glibmm_files_extra_cc = \ + arrayhandle.cc \ base64.cc \ class.cc \ + containers.cc \ debug.cc \ dispatcher.cc \ error.cc \ exception.cc \ exceptionhandler.cc \ - extraclassinit.cc \ init.cc \ interface.cc \ main.cc \ @@ -24,9 +24,12 @@ glibmm_files_extra_cc = \ propertyproxy_base.cc \ quark.cc \ random.cc \ + sarray.cc \ signalproxy.cc \ signalproxy_connectionnode.cc \ + streamiochannel.cc \ stringutils.cc \ + threadpool.cc \ timer.cc \ timeval.cc \ ustring.cc \ @@ -38,19 +41,22 @@ glibmm_files_extra_cc = \ wrap.cc glibmm_files_extra_h = \ + arrayhandle.h \ base64.h \ class.h \ containerhandle_shared.h \ + containers.h \ debug.h \ dispatcher.h \ error.h \ exception.h \ exceptionhandler.h \ - extraclassinit.h \ + helperlist.h \ i18n-lib.h \ i18n.h \ init.h \ interface.h \ + listhandle.h \ main.h \ object.h \ objectbase.h \ @@ -62,9 +68,13 @@ glibmm_files_extra_h = \ quark.h \ random.h \ refptr.h \ + sarray.h \ signalproxy.h \ signalproxy_connectionnode.h \ + slisthandle.h \ + streamiochannel.h \ stringutils.h \ + threadpool.h \ timer.h \ timeval.h \ ustring.h \ @@ -73,6 +83,7 @@ glibmm_files_extra_h = \ value_custom.h \ variantdbusstring.h \ vectorutils.h \ + weakref.h \ wrap.h \ wrap_init.h diff --git a/glib/glibmm/filelist.gmake.am b/glib/glibmm/filelist.gmake.am new file mode 100644 index 0000000..8068dc8 --- /dev/null +++ b/glib/glibmm/filelist.gmake.am @@ -0,0 +1,6 @@ +## This file is part of glibmm. + +include $(top_srcdir)/glib/glibmm/filelist.am + +# Split out from $(top_srcdir)/glib/glimm/filelist.am +glibmm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(glibmm_files_used_hg)) diff --git a/glib/glibmm/helperlist.h b/glib/glibmm/helperlist.h new file mode 100644 index 0000000..751b42d --- /dev/null +++ b/glib/glibmm/helperlist.h @@ -0,0 +1,151 @@ +#ifndef _GLIBMM_HELPERLIST_H +#define _GLIBMM_HELPERLIST_H + +/* helperlist.h + * + * Copyright 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +// This is not hidden by GLIBMM_DISABLE_DEPRECATED +// because gtkmm-2.24 still uses this type in its public API. +// Note that gtkmm-2.24 itself is completely deprecated, so we really +// can remove this whole class some time soon. +//#ifndef GLIBMM_DISABLE_DEPRECATED + +#include + +namespace Glib +{ + +// This class has some pure virtual methods which need to be implemented by derived classes. + +/** + * @deprecated This class should no longer be necessary. It has not been used + * by glibmm or gtkmm since gtkmm-2.4. + */ +template +class HelperList +{ +public: + HelperList() : gparent_(nullptr) {} + + HelperList(GObject* + gp) // We use gp instead of gparent because that can cause warnings about a shadowed member. + : gparent_(gp) + { + } + + virtual ~HelperList() noexcept {} + + using value_type = T_Child; + using reference = value_type&; + using const_reference = const value_type&; + + using iterator = T_Iterator; + using const_iterator = List_ConstIterator; + using reverse_iterator = List_ReverseIterator; + using const_reverse_iterator = List_ConstIterator; + + using element_type = T_CppElement; + + using difference_type = std::size_t; // TODO Why not std::ptrdiff_t? + using size_type = std::size_t; + + // These are implemented differently for each Helper List. + virtual iterator erase(iterator) = 0; + + virtual void erase(iterator start, iterator stop) + { + while (start != stop) + start = erase(start); // Implemented in derived class. + } + + virtual void remove(const_reference) = 0; + + size_type size() const { return g_list_length(glist()); } + + inline size_type max_size() { return size_type(-1); } + inline bool empty() { return glist() == nullptr; } + + inline iterator begin() { return begin_(); } + inline iterator end() { return end_(); } + + inline const_iterator begin() const { return const_iterator(begin_()); } + inline const_iterator end() const { return const_iterator(end_()); } + + inline reverse_iterator rbegin() { return reverse_iterator(end_()); } + inline reverse_iterator rend() { return reverse_iterator(begin_()); } + + inline const_reverse_iterator rbegin() const + { + return const_reverse_iterator(reverse_iterator(end_())); + } + inline const_reverse_iterator rend() const + { + return const_reverse_iterator(reverse_iterator(begin_())); + } + + reference front() const { return *begin(); } + + reference back() const { return *(--end()); } + + reference operator[](size_type l) const + { + size_type j = 0; + iterator i; + for (i = begin(), j = 0; i != end() && j < l; ++i, ++j) + ; + return (*i); + } + + // iterator find(const_reference w) + // { + // iterator i = begin(); + // for(i = begin(); i != end() && (*i != w); i++); + // return i; + // } + // + // iterator find(Widget& w) + // { + // iterator i; + // for (i = begin(); i != end() && ((*i)->$1() != &w); i++); + // return i; + // } + + // Derived classes might choose to reimplement these as public: + inline void pop_front() { erase(begin()); } + inline void pop_back() { erase(--end()); } + + void clear() { erase(begin(), end()); } + + GObject* gparent() { return gparent_; }; + const GObject* gparent() const { return gparent_; }; + +protected: + virtual GList*& glist() const = 0; // front of list + + iterator begin_() const { return iterator(glist(), glist()); } + + iterator end_() const { return iterator(glist(), (GList*)nullptr); } + + GObject* gparent_; +}; + +} /* namespace Glib */ + +//#endif //GLIBMM_DISABLE_DEPRECATED + +#endif /* _GLIBMM_HELPERLIST_H */ diff --git a/glib/glibmm/init.cc b/glib/glibmm/init.cc index 0b34447..ab96892 100644 --- a/glib/glibmm/init.cc +++ b/glib/glibmm/init.cc @@ -16,67 +16,15 @@ #include #include -#include -#include -#include - -namespace -{ - bool init_to_users_preferred_locale = true; - -} // anonymous namespace namespace Glib { -void set_init_to_users_preferred_locale(bool state) -{ - init_to_users_preferred_locale = state; -} - -bool get_init_to_users_preferred_locale() -{ - return init_to_users_preferred_locale; -} -void init() +void +init() { - static bool is_initialized = false; - - if (is_initialized) - return; - - if (init_to_users_preferred_locale) - { - try - { - // Set the global locale for C++ functions and the locale for C functions - // to the user-preferred locale. - std::locale::global(std::locale("")); - } - catch (const std::runtime_error& ex) - { - g_warning("Can't set the global locale to the user's preferred locale.\n" - " %s\n The environment variable LANG may be wrong.\n", ex.what()); - } - } - else - { - try - { - // Make the C++ locale equal to the C locale. - std::locale::global(std::locale(std::setlocale(LC_ALL, nullptr))); - } - catch (const std::runtime_error& ex) - { - g_warning("Can't make the global C++ locale equal to the C locale.\n" - " %s\n C locale = %s\n", ex.what(), std::setlocale(LC_ALL, nullptr)); - } - } - // Also calls Glib::wrap_register_init() and Glib::wrap_init(). Glib::Error::register_init(); - - is_initialized = true; } } // namespace Glib diff --git a/glib/glibmm/init.h b/glib/glibmm/init.h index ac89d22..1245cd3 100644 --- a/glib/glibmm/init.h +++ b/glib/glibmm/init.h @@ -1,6 +1,9 @@ +// -*- c++ -*- #ifndef _GLIBMM_INIT_H #define _GLIBMM_INIT_H +/* $Id$ */ + /* Copyright (C) 2002 The gtkmm Development Team * * This library is free software; you can redistribute it and/or @@ -21,50 +24,12 @@ namespace Glib { /** Initialize glibmm. - * - * You may call this more than once. Calls after the first one have no effect. - * Sets the global locale as specified by set_init_to_users_preferred_locale(). - * You do not need to call %Glib::init() if you are using Gtk::Application, - * because it calls %Glib::init() for you. - * - * @see set_init_to_users_preferred_locale() + * You may call this more than once. + * You do not need to call this if you are using Glib::MainLoop or Gtk::Main, + * because they call it for you. */ void init(); -/** Instruct Glib::init() which global locale to set. - * - * To have the intended effect, this function must be called before init() is called. - * Not calling it has the same effect as calling it with @a state = true. - * - * Note the confusing difference between C locale and "C" locale. - * The C locale is the locale used by C code, set by std::setlocale(LC_ALL, locale_name). - * The "C" locale is the classic locale, set by std::setlocale(LC_ALL, "C") - * or std::locale::global(std::locale::classic()). It's the default global locale - * in a C or C++ program. - * - * In a mixed C and C++ program, like a program using glibmm, having the C global - * locale differ from std::locale::global() is error prone. Glib::init() tries - * to avoid that. - * - * @param state If true, init() will set the C and C++ global locale - * to the user's preferred locale (std::locale::global(std::locale(""))). - * The user's preferred locale is set in the program's environment, - * usually with the LANG environment variable.
- * If false, init() will set the C++ global locale to the C global locale - * (std::locale::global(std::locale(std::setlocale(LC_ALL, nullptr)))). - * - * @newin{2,52} - */ -void set_init_to_users_preferred_locale(bool state = true); - -/** Get the state, set with set_init_to_users_preferred_locale(). - * @returns The state, set with set_init_to_users_preferred_locale(); true - * if set_init_to_users_preferred_locale() has not been called. - * - * @newin{2,52} - */ -bool get_init_to_users_preferred_locale(); - } // namespace Glib #endif /* _GLIBMM_INIT_H */ diff --git a/glib/glibmm/interface.cc b/glib/glibmm/interface.cc index f01f13d..d13c5d8 100644 --- a/glib/glibmm/interface.cc +++ b/glib/glibmm/interface.cc @@ -95,9 +95,10 @@ Interface::Interface(const Interface_Class& interface_class) } else // gobject_ == nullptr { - // The GObject is not instantiated yet. Add to the stored custom interface - // classes, and add the interface to the GType in the Glib::Object constructor. - add_custom_interface_class(&interface_class); + // The GObject is not instantiated yet. Add to the custom_interface_classes + // and add the interface in the Glib::Object constructor. + std::lock_guard lock(extra_object_base_data_mutex); + extra_object_base_data[this].custom_interface_classes.emplace_back(&interface_class); } } } @@ -155,7 +156,7 @@ Interface::get_base_type() RefPtr wrap_interface(GObject* object, bool take_copy) { - return Glib::make_refptr_for_instance(wrap_auto(object, take_copy)); + return Glib::RefPtr(wrap_auto(object, take_copy)); } } // namespace Glib diff --git a/glib/glibmm/listhandle.h b/glib/glibmm/listhandle.h new file mode 100644 index 0000000..d9ffeb1 --- /dev/null +++ b/glib/glibmm/listhandle.h @@ -0,0 +1,412 @@ +#ifndef _GLIBMM_LISTHANDLE_H +#define _GLIBMM_LISTHANDLE_H + +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include +#include + +namespace Glib +{ + +namespace Container_Helpers +{ + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +/* Create and fill a GList as efficient as possible. + * This requires bidirectional iterators. + */ +template +GList* +create_list(Bi pbegin, Bi pend, Tr) +{ + GList* head = nullptr; + + while (pend != pbegin) + { + // Use & to force a warning if the iterator returns a temporary object. + const void* const item = Tr::to_c_type(*&*--pend); + head = g_list_prepend(head, const_cast(item)); + } + + return head; +} + +/* Create a GList from a 0-terminated input sequence. + * Build it in reverse order and reverse the whole list afterwards, + * because appending to the list would be horribly inefficient. + */ +template +GList* +create_list(For pbegin, Tr) +{ + GList* head = nullptr; + + while (*pbegin) + { + // Use & to force a warning if the iterator returns a temporary object. + const void* const item = Tr::to_c_type(*&*pbegin); + head = g_list_prepend(head, const_cast(item)); + ++pbegin; + } + + return g_list_reverse(head); +} + +/* Convert from any container that supports bidirectional iterators. + */ +template +struct ListSourceTraits +{ + static GList* get_data(const Cont& cont) + { + return Glib::Container_Helpers::create_list(cont.begin(), cont.end(), Tr()); + } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_SHALLOW; +}; + +/* Convert from a 0-terminated array. The Cont + * argument must be a pointer to the first element. + */ +template +struct ListSourceTraits +{ + static GList* get_data(const Cont* array) + { + return (array) ? Glib::Container_Helpers::create_list(array, Tr()) : nullptr; + } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_SHALLOW; +}; + +template +struct ListSourceTraits : ListSourceTraits +{ +}; + +/* Convert from a 0-terminated array. The Cont argument must be a pointer + * to the first element. For consistency, the array must be 0-terminated, + * even though the array size is known at compile time. + */ +template +struct ListSourceTraits +{ + static GList* get_data(const Cont* array) + { + return Glib::Container_Helpers::create_list(array, array + (N - 1), Tr()); + } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_SHALLOW; +}; + +template +struct ListSourceTraits : ListSourceTraits +{ +}; + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +/** + * @ingroup ContHelpers + */ +template +class ListHandleIterator +{ +public: + using CppType = typename Tr::CppType; + using CType = typename Tr::CType; + + using iterator_category = std::forward_iterator_tag; + using value_type = CppType; + using difference_type = std::ptrdiff_t; + using reference = value_type; + using pointer = void; + + explicit inline ListHandleIterator(const GList* node); + + inline value_type operator*() const; + inline ListHandleIterator& operator++(); + inline const ListHandleIterator operator++(int); + + inline bool operator==(const ListHandleIterator& rhs) const; + inline bool operator!=(const ListHandleIterator& rhs) const; + +private: + const GList* node_; +}; + +} // namespace Container_Helpers + +// TODO: Remove this when we can break glibmm API. +/** This is an intermediate type. When a method takes this, or returns this, you + * should use a standard C++ container of your choice, such as std::list or + * std::vector. + * + * However, this is not used in new API. We now prefer to just use std::vector, + * which is less flexibile, but makes the API clearer. + * + * @ingroup ContHandles + */ +template > +class ListHandle +{ +public: + using CppType = typename Tr::CppType; + using CType = typename Tr::CType; + + using value_type = CppType; + using size_type = std::size_t; + using difference_type = std::ptrdiff_t; + + using const_iterator = Glib::Container_Helpers::ListHandleIterator; + using iterator = Glib::Container_Helpers::ListHandleIterator; + + template + inline ListHandle(const Cont& container); + + // Take over ownership of an array created by GTK+ functions. + inline ListHandle(GList* glist, Glib::OwnershipType ownership); + + // Copying clears the ownership flag of the source handle. + inline ListHandle(const ListHandle& other); + + ~ListHandle() noexcept; + + inline const_iterator begin() const; + inline const_iterator end() const; + + template + inline operator std::vector() const; + template + inline operator std::deque() const; + template + inline operator std::list() const; + + template + inline void assign_to(Cont& container) const; + + template + inline void copy(Out pdest) const; + + inline GList* data() const; + inline std::size_t size() const; + inline bool empty() const; + +private: + GList* plist_; + mutable Glib::OwnershipType ownership_; + + // No copy assignment. + ListHandle& operator=(const ListHandle&); +}; + +/***************************************************************************/ +/* Inline implementation */ +/***************************************************************************/ + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +namespace Container_Helpers +{ + +/**** Glib::Container_Helpers::ListHandleIterator<> ************************/ + +template +inline ListHandleIterator::ListHandleIterator(const GList* node) : node_(node) +{ +} + +template +inline typename ListHandleIterator::value_type ListHandleIterator::operator*() const +{ + return Tr::to_cpp_type(static_cast(node_->data)); +} + +template +inline ListHandleIterator& ListHandleIterator::operator++() +{ + node_ = node_->next; + return *this; +} + +template +inline const ListHandleIterator ListHandleIterator::operator++(int) +{ + const ListHandleIterator tmp(*this); + node_ = node_->next; + return tmp; +} + +template +inline bool +ListHandleIterator::operator==(const ListHandleIterator& rhs) const +{ + return (node_ == rhs.node_); +} + +template +inline bool +ListHandleIterator::operator!=(const ListHandleIterator& rhs) const +{ + return (node_ != rhs.node_); +} + +} // namespace Container_Helpers + +/**** Glib::ListHandle<> ***************************************************/ + +template +template +inline ListHandle::ListHandle(const Cont& container) +: plist_(Glib::Container_Helpers::ListSourceTraits::get_data(container)), + ownership_(Glib::Container_Helpers::ListSourceTraits::initial_ownership) +{ +} + +template +inline ListHandle::ListHandle(GList* glist, Glib::OwnershipType ownership) +: plist_(glist), ownership_(ownership) +{ +} + +template +inline ListHandle::ListHandle(const ListHandle& other) +: plist_(other.plist_), ownership_(other.ownership_) +{ + other.ownership_ = Glib::OWNERSHIP_NONE; +} + +template +ListHandle::~ListHandle() noexcept +{ + if (ownership_ != Glib::OWNERSHIP_NONE) + { + if (ownership_ != Glib::OWNERSHIP_SHALLOW) + { + // Deep ownership: release each container element. + for (GList* node = plist_; node != nullptr; node = node->next) + Tr::release_c_type(static_cast(node->data)); + } + g_list_free(plist_); + } +} + +template +inline typename ListHandle::const_iterator +ListHandle::begin() const +{ + return Glib::Container_Helpers::ListHandleIterator(plist_); +} + +template +inline typename ListHandle::const_iterator +ListHandle::end() const +{ + return Glib::Container_Helpers::ListHandleIterator(nullptr); +} + +template +template +inline ListHandle::operator std::vector() const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::vector(this->begin(), this->end()); +#else + std::vector temp; + temp.reserve(this->size()); + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif +} + +template +template +inline ListHandle::operator std::deque() const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::deque(this->begin(), this->end()); +#else + std::deque temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif +} + +template +template +inline ListHandle::operator std::list() const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::list(this->begin(), this->end()); +#else + std::list temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif +} + +template +template +inline void +ListHandle::assign_to(Cont& container) const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + container.assign(this->begin(), this->end()); +#else + Cont temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + container.swap(temp); +#endif +} + +template +template +inline void +ListHandle::copy(Out pdest) const +{ + std::copy(this->begin(), this->end(), pdest); +} + +template +inline GList* +ListHandle::data() const +{ + return plist_; +} + +template +inline std::size_t +ListHandle::size() const +{ + return g_list_length(plist_); +} + +template +inline bool +ListHandle::empty() const +{ + return (plist_ == nullptr); +} + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +} // namespace Glib + +#endif /* _GLIBMM_LISTHANDLE_H */ diff --git a/glib/glibmm/main.cc b/glib/glibmm/main.cc index 7edb8f4..cffa0e0 100644 --- a/glib/glibmm/main.cc +++ b/glib/glibmm/main.cc @@ -14,28 +14,61 @@ * License along with this library. If not, see . */ +#include // May define GLIBMM_DISABLE_DEPRECATED + +#ifndef GLIBMM_DISABLE_DEPRECATED +// Include glibmm/thread.h first because we need it to be first to include , +// so we can do an undef trick to still use deprecated API in the header: +#include +#include +#endif // GLIBMM_DISABLE_DEPRECATED + #include #include #include #include +#include #include +#include // Needed until the next ABI break. namespace { -// Convert an interval from milliseconds to microseconds, -// suitable for adding to Source::get_time(). -inline gint64 ms2us(unsigned int ms) -{ - return static_cast(ms) * 1000; -} +void +time64_to_time_val(gint64 time64, Glib::TimeVal& time_val) +{ + // This function is not guaranteed to convert correctly if time64 is negative. + const long seconds = static_cast(time64 / G_GINT64_CONSTANT(1000000)); + const long microseconds = + static_cast(time64 - static_cast(seconds) * G_GINT64_CONSTANT(1000000)); + time_val = Glib::TimeVal(seconds, microseconds); +} + +// TODO: At the next ABI break, replace ExtraSourceData by new data members in Source. +// Then the mutex is not necessary, but to keep the code thread-safe, use the +// g_atomic_*() functions on these data elements. +// These are new data members that can't be added to Glib::Source now, +// because it would break ABI. +struct ExtraSourceData +{ + ExtraSourceData() : ref_count(1), keep_wrapper(2) {} + int ref_count; + // When both Source::unreference() and SourceCallbackData::destroy_notify_callback() + // have decreased keep_wrapper, it's time to delete the C++ wrapper. + int keep_wrapper; +}; + +std::map extra_source_data; +// Source instances may be used in different threads. +// Accesses to extra_source_data must be thread-safe. +std::mutex extra_source_data_mutex; -class SourceConnectionNode : public sigc::notifiable +class SourceConnectionNode { public: explicit inline SourceConnectionNode(const sigc::slot_base& slot); - static void notify(sigc::notifiable* data); - static void destroy_notify_callback(sigc::notifiable* data); + static void* notify(void* data); + static void destroy_notify_callback(void* data); inline void install(GSource* source); inline sigc::slot_base* get_slot(); @@ -51,8 +84,8 @@ inline SourceConnectionNode::SourceConnectionNode(const sigc::slot_base& slot) slot_.set_parent(this, &SourceConnectionNode::notify); } -void -SourceConnectionNode::notify(sigc::notifiable* data) +void* +SourceConnectionNode::notify(void* data) { SourceConnectionNode* const self = static_cast(data); @@ -67,11 +100,13 @@ SourceConnectionNode::notify(sigc::notifiable* data) // Destroying the object triggers execution of destroy_notify_handler(), // either immediately or later, so we leave that to do the deletion. } + + return nullptr; } // static void -SourceConnectionNode::destroy_notify_callback(sigc::notifiable* data) +SourceConnectionNode::destroy_notify_callback(void* data) { SourceConnectionNode* const self = static_cast(data); @@ -137,8 +172,17 @@ SourceCallbackData::destroy_notify_callback(void* data) if (self->node) SourceConnectionNode::destroy_notify_callback(self->node); - // destroy_notify_callback2() does nothing if self->wrapper == nullptr. - Glib::Source::destroy_notify_callback2(self->wrapper); + if (self->wrapper) + { + std::unique_lock lock(extra_source_data_mutex); + if (--extra_source_data[self->wrapper].keep_wrapper == 0) + { + // No other reference exists to the wrapper. Delete it! + extra_source_data.erase(self->wrapper); + lock.unlock(); + Glib::Source::destroy_notify_callback(self->wrapper); + } + } delete self; } @@ -186,7 +230,7 @@ glibmm_source_callback(void* data) try { // Recreate the specific slot from the generic slot node. - return (*static_cast*>(conn_data->get_slot()))(); + return (*static_cast*>(conn_data->get_slot()))(); } catch (...) { @@ -207,7 +251,7 @@ glibmm_source_callback_once(void* data) try { // Recreate the specific slot from the generic slot node. - (*static_cast*>(conn_data->get_slot()))(); + (*static_cast*>(conn_data->get_slot()))(); } catch (...) { @@ -216,13 +260,6 @@ glibmm_source_callback_once(void* data) return 0; // Destroy the event source after one call } -static void -glibmm_source_destroy_notify_callback(void* data) -{ - SourceConnectionNode* const conn_data = static_cast(data); - SourceConnectionNode::destroy_notify_callback(conn_data); -} - static gboolean glibmm_iosource_callback(GIOChannel*, GIOCondition condition, void* data) { @@ -232,7 +269,7 @@ glibmm_iosource_callback(GIOChannel*, GIOCondition condition, void* data) try { // Recreate the specific slot from the generic slot node. - return (*static_cast*>(callback_data->node->get_slot()))( + return (*static_cast*>(callback_data->node->get_slot()))( (Glib::IOCondition)condition); } catch (...) @@ -254,7 +291,7 @@ glibmm_child_watch_callback(GPid pid, gint child_status, void* data) try { // Recreate the specific slot from the generic slot node. - (*static_cast*>(conn_data->get_slot()))(pid, child_status); + (*static_cast*>(conn_data->get_slot()))(pid, child_status); } catch (...) { @@ -265,7 +302,7 @@ glibmm_child_watch_callback(GPid pid, gint child_status, void* data) static void glibmm_signal_connect_once( - const sigc::slot& slot, int priority, GSource* source, GMainContext* context) + const sigc::slot& slot, int priority, GSource* source, GMainContext* context) { SourceConnectionNode* const conn_node = new SourceConnectionNode(slot); @@ -273,7 +310,7 @@ glibmm_signal_connect_once( g_source_set_priority(source, priority); g_source_set_callback(source, &glibmm_source_callback_once, conn_node, - &glibmm_source_destroy_notify_callback); + &SourceConnectionNode::destroy_notify_callback); conn_node->install(source); g_source_attach(source, context); @@ -288,7 +325,7 @@ glibmm_main_context_invoke_callback(void* data) try { // Recreate the specific slot from the generic slot node. - return (*static_cast*>(slot))(); + return (*static_cast*>(slot))(); } catch (...) { @@ -328,7 +365,7 @@ PollFD::PollFD(PollFD::fd_t fd) PollFD::PollFD(PollFD::fd_t fd, IOCondition events) { gobject_.fd = fd; - gobject_.events = static_cast(events); + gobject_.events = events; gobject_.revents = 0; } @@ -340,7 +377,7 @@ inline SignalTimeout::SignalTimeout(GMainContext* context) : context_(context) /* Note that this is our equivalent of g_timeout_add(). */ sigc::connection -SignalTimeout::connect(const sigc::slot& slot, unsigned int interval, int priority) +SignalTimeout::connect(const sigc::slot& slot, unsigned int interval, int priority) { SourceConnectionNode* const conn_node = new SourceConnectionNode(slot); const sigc::connection connection(*conn_node->get_slot()); @@ -351,8 +388,7 @@ SignalTimeout::connect(const sigc::slot& slot, unsigned int interval, in g_source_set_priority(source, priority); g_source_set_callback( - source, &glibmm_source_callback, conn_node, - &glibmm_source_destroy_notify_callback); + source, &glibmm_source_callback, conn_node, &SourceConnectionNode::destroy_notify_callback); conn_node->install(source); g_source_attach(source, context_); @@ -362,7 +398,7 @@ SignalTimeout::connect(const sigc::slot& slot, unsigned int interval, in } void -SignalTimeout::connect_once(const sigc::slot& slot, unsigned int interval, int priority) +SignalTimeout::connect_once(const sigc::slot& slot, unsigned int interval, int priority) { GSource* const source = g_timeout_source_new(interval); glibmm_signal_connect_once(slot, priority, source, context_); @@ -370,7 +406,7 @@ SignalTimeout::connect_once(const sigc::slot& slot, unsigned int interva /* Note that this is our equivalent of g_timeout_add_seconds(). */ sigc::connection -SignalTimeout::connect_seconds(const sigc::slot& slot, unsigned int interval, int priority) +SignalTimeout::connect_seconds(const sigc::slot& slot, unsigned int interval, int priority) { SourceConnectionNode* const conn_node = new SourceConnectionNode(slot); const sigc::connection connection(*conn_node->get_slot()); @@ -381,8 +417,7 @@ SignalTimeout::connect_seconds(const sigc::slot& slot, unsigned int inte g_source_set_priority(source, priority); g_source_set_callback( - source, &glibmm_source_callback, conn_node, - &glibmm_source_destroy_notify_callback); + source, &glibmm_source_callback, conn_node, &SourceConnectionNode::destroy_notify_callback); conn_node->install(source); g_source_attach(source, context_); @@ -393,7 +428,7 @@ SignalTimeout::connect_seconds(const sigc::slot& slot, unsigned int inte void SignalTimeout::connect_seconds_once( - const sigc::slot& slot, unsigned int interval, int priority) + const sigc::slot& slot, unsigned int interval, int priority) { GSource* const source = g_timeout_source_new_seconds(interval); glibmm_signal_connect_once(slot, priority, source, context_); @@ -412,7 +447,7 @@ inline SignalIdle::SignalIdle(GMainContext* context) : context_(context) } sigc::connection -SignalIdle::connect(const sigc::slot& slot, int priority) +SignalIdle::connect(const sigc::slot& slot, int priority) { SourceConnectionNode* const conn_node = new SourceConnectionNode(slot); const sigc::connection connection(*conn_node->get_slot()); @@ -423,8 +458,7 @@ SignalIdle::connect(const sigc::slot& slot, int priority) g_source_set_priority(source, priority); g_source_set_callback( - source, &glibmm_source_callback, conn_node, - &glibmm_source_destroy_notify_callback); + source, &glibmm_source_callback, conn_node, &SourceConnectionNode::destroy_notify_callback); conn_node->install(source); g_source_attach(source, context_); @@ -434,7 +468,7 @@ SignalIdle::connect(const sigc::slot& slot, int priority) } void -SignalIdle::connect_once(const sigc::slot& slot, int priority) +SignalIdle::connect_once(const sigc::slot& slot, int priority) { GSource* const source = g_idle_source_new(); glibmm_signal_connect_once(slot, priority, source, context_); @@ -454,7 +488,7 @@ inline SignalIO::SignalIO(GMainContext* context) : context_(context) sigc::connection SignalIO::connect( - const sigc::slot& slot, PollFD::fd_t fd, IOCondition condition, int priority) + const sigc::slot& slot, PollFD::fd_t fd, IOCondition condition, int priority) { const auto source = IOSource::create(fd, condition); @@ -469,7 +503,7 @@ SignalIO::connect( } sigc::connection -SignalIO::connect(const sigc::slot& slot, const Glib::RefPtr& channel, +SignalIO::connect(const sigc::slot& slot, const Glib::RefPtr& channel, IOCondition condition, int priority) { const auto source = IOSource::create(channel, condition); @@ -497,7 +531,7 @@ inline SignalChildWatch::SignalChildWatch(GMainContext* context) : context_(cont } sigc::connection -SignalChildWatch::connect(const sigc::slot& slot, GPid pid, int priority) +SignalChildWatch::connect(const sigc::slot& slot, GPid pid, int priority) { SourceConnectionNode* const conn_node = new SourceConnectionNode(slot); const sigc::connection connection(*conn_node->get_slot()); @@ -507,9 +541,8 @@ SignalChildWatch::connect(const sigc::slot& slot, GPid pid, int if (priority != G_PRIORITY_DEFAULT) g_source_set_priority(source, priority); - g_source_set_callback(source, (GSourceFunc)&glibmm_child_watch_callback, - conn_node, - &glibmm_source_destroy_notify_callback); + g_source_set_callback(source, Glib::function_pointer_cast(&glibmm_child_watch_callback), + conn_node, &SourceConnectionNode::destroy_notify_callback); conn_node->install(source); g_source_attach(source, context_); @@ -530,7 +563,7 @@ signal_child_watch() Glib::RefPtr MainContext::create() { - return Glib::make_refptr_for_instance(reinterpret_cast(g_main_context_new())); + return Glib::RefPtr(reinterpret_cast(g_main_context_new())); } // static @@ -564,6 +597,22 @@ MainContext::acquire() return g_main_context_acquire(gobj()); } +#ifndef GLIBMM_DISABLE_DEPRECATED +G_GNUC_BEGIN_IGNORE_DEPRECATIONS +bool +MainContext::wait(Glib::Cond& cond, Glib::Mutex& mutex) +{ + return g_main_context_wait(gobj(), cond.gobj(), mutex.gobj()); +} + +bool +MainContext::wait(Glib::Threads::Cond& cond, Glib::Threads::Mutex& mutex) +{ + return g_main_context_wait(gobj(), cond.gobj(), mutex.gobj()); +} +G_GNUC_END_IGNORE_DEPRECATIONS +#endif // GLIBMM_DISABLE_DEPRECATED + void MainContext::release() { @@ -642,10 +691,10 @@ MainContext::remove_poll(PollFD& fd) } void -MainContext::invoke(const sigc::slot& slot, int priority) +MainContext::invoke(const sigc::slot& slot, int priority) { // Make a copy of slot on the heap. - sigc::slot_base* const slot_copy = new sigc::slot(slot); + sigc::slot_base* const slot_copy = new sigc::slot(slot); g_main_context_invoke_full(gobj(), priority, glibmm_main_context_invoke_callback, slot_copy, glibmm_main_context_invoke_destroy_notify_callback); @@ -712,7 +761,7 @@ wrap(GMainContext* gobject, bool take_copy) if (take_copy && gobject) g_main_context_ref(gobject); - return Glib::make_refptr_for_instance(reinterpret_cast(gobject)); + return Glib::RefPtr(reinterpret_cast(gobject)); } /**** Glib::MainLoop *******************************************************/ @@ -720,13 +769,13 @@ wrap(GMainContext* gobject, bool take_copy) Glib::RefPtr MainLoop::create(bool is_running) { - return Glib::make_refptr_for_instance(reinterpret_cast(g_main_loop_new(nullptr, is_running))); + return Glib::RefPtr(reinterpret_cast(g_main_loop_new(nullptr, is_running))); } Glib::RefPtr MainLoop::create(const Glib::RefPtr& context, bool is_running) { - return Glib::make_refptr_for_instance( + return Glib::RefPtr( reinterpret_cast(g_main_loop_new(Glib::unwrap(context), is_running))); } @@ -798,7 +847,7 @@ wrap(GMainLoop* gobject, bool take_copy) if (take_copy && gobject) g_main_loop_ref(gobject); - return Glib::make_refptr_for_instance(reinterpret_cast(gobject)); + return Glib::RefPtr(reinterpret_cast(gobject)); } /**** Glib::Source *********************************************************/ @@ -877,17 +926,30 @@ Source::gobj_copy() const void Source::reference() const { - ++ref_count_; + std::lock_guard lock(extra_source_data_mutex); + ++extra_source_data[this].ref_count; } void Source::unreference() const { - if (--ref_count_ == 0) + std::unique_lock lock(extra_source_data_mutex); + if (--extra_source_data[this].ref_count == 0) { GSource* const tmp_gobject = gobject_; - destroy_notify_callback2(const_cast(this)); + if (--extra_source_data[this].keep_wrapper == 0) + { + // The last reference from a RefPtr has been deleted, and + // SourceCallbackData::destroy_notify_callback() has been called while + // extra_source_data[this].keep_wrapper was > 1. + // Delete the wrapper! + extra_source_data.erase(this); + lock.unlock(); + destroy_notify_callback(const_cast(this)); + } + else + lock.unlock(); // Drop the one and only GSource reference held by the C++ wrapper. // If the GSource instance is attached to a main context, the GMainContext @@ -957,6 +1019,16 @@ Source::remove_poll(Glib::PollFD& poll_fd) g_source_remove_poll(gobject_, poll_fd.gobj()); } +#ifndef GLIBMM_DISABLE_DEPRECATED +G_GNUC_BEGIN_IGNORE_DEPRECATIONS +void +Source::get_current_time(Glib::TimeVal& current_time) +{ + g_source_get_current_time(gobject_, ¤t_time); +} +G_GNUC_END_IGNORE_DEPRECATIONS +#endif // GLIBMM_DISABLE_DEPRECATED + gint64 Source::get_time() const { @@ -1031,19 +1103,17 @@ Source::dispatch_vfunc(GSource*, GSourceFunc callback, void* user_data) // static void -Source::destroy_notify_callback2(void* data) +Source::destroy_notify_callback(void* data) { if (data) { Source* const self = static_cast(data); - if (--self->keep_wrapper_ == 0) - { - // gobject_ is already invalid at this point. - self->gobject_ = nullptr; - // No exception checking: if the dtor throws, you're out of luck anyway. - delete self; - } + // gobject_ is already invalid at this point. + self->gobject_ = nullptr; + + // No exception checking: if the dtor throws, you're out of luck anyway. + delete self; } } @@ -1059,8 +1129,7 @@ Source::attach_signal_source(const sigc::slot_base& slot, int priority, GSource* g_source_set_priority(source, priority); g_source_set_callback( - source, callback_func, conn_node, - &glibmm_source_destroy_notify_callback); + source, callback_func, conn_node, &SourceConnectionNode::destroy_notify_callback); conn_node->install(source); g_source_attach(source, context); @@ -1091,18 +1160,19 @@ Source::get_slot_from_callback_data(void* data) Glib::RefPtr TimeoutSource::create(unsigned int interval) { - return Glib::make_refptr_for_instance(new TimeoutSource(interval)); + return Glib::RefPtr(new TimeoutSource(interval)); } sigc::connection -TimeoutSource::connect(const sigc::slot& slot) +TimeoutSource::connect(const sigc::slot& slot) { return connect_generic(slot); } TimeoutSource::TimeoutSource(unsigned int interval) : interval_(interval) { - expiration_ = get_time() + ms2us(interval_); + time64_to_time_val(get_time(), expiration_); + expiration_.add_milliseconds(std::min(G_MAXLONG, interval_)); } TimeoutSource::~TimeoutSource() noexcept @@ -1112,24 +1182,33 @@ TimeoutSource::~TimeoutSource() noexcept bool TimeoutSource::prepare(int& timeout) { - gint64 remaining = expiration_ - get_time(); + Glib::TimeVal current_time; + time64_to_time_val(get_time(), current_time); - if (remaining <= 0) + Glib::TimeVal remaining = expiration_; + remaining.subtract(current_time); + + if (remaining.negative()) { // Already expired. timeout = 0; } else { + const unsigned long milliseconds = static_cast(remaining.tv_sec) * 1000U + + static_cast(remaining.tv_usec) / 1000U; + // Set remaining milliseconds. - timeout = std::min(G_MAXINT, remaining / 1000); + timeout = std::min(G_MAXINT, milliseconds); // Check if the system time has been set backwards. (remaining > interval) - if (remaining > ms2us(interval_)) + remaining.add_milliseconds(-std::min(G_MAXLONG, interval_) - 1); + if (!remaining.negative()) { // Oh well. Reset the expiration time to now + interval; // this at least avoids hanging for long periods of time. - expiration_ = get_time() + ms2us(interval_); + expiration_ = current_time; + expiration_.add_milliseconds(interval_); timeout = std::min(G_MAXINT, interval_); } } @@ -1140,16 +1219,22 @@ TimeoutSource::prepare(int& timeout) bool TimeoutSource::check() { - return expiration_ <= get_time(); + Glib::TimeVal current_time; + time64_to_time_val(get_time(), current_time); + + return (expiration_ <= current_time); } bool TimeoutSource::dispatch(sigc::slot_base* slot) { - const bool again = (*static_cast*>(slot))(); + const bool again = (*static_cast*>(slot))(); if (again) - expiration_ = get_time() + ms2us(interval_); + { + time64_to_time_val(get_time(), expiration_); + expiration_.add_milliseconds(std::min(G_MAXLONG, interval_)); + } return again; } @@ -1160,11 +1245,11 @@ TimeoutSource::dispatch(sigc::slot_base* slot) Glib::RefPtr IdleSource::create() { - return Glib::make_refptr_for_instance(new IdleSource()); + return Glib::RefPtr(new IdleSource()); } sigc::connection -IdleSource::connect(const sigc::slot& slot) +IdleSource::connect(const sigc::slot& slot) { return connect_generic(slot); } @@ -1194,7 +1279,7 @@ IdleSource::check() bool IdleSource::dispatch(sigc::slot_base* slot) { - return (*static_cast*>(slot))(); + return (*static_cast*>(slot))(); } /**** Glib::IOSource *******************************************************/ @@ -1203,23 +1288,17 @@ IdleSource::dispatch(sigc::slot_base* slot) Glib::RefPtr IOSource::create(PollFD::fd_t fd, IOCondition condition) { - return Glib::make_refptr_for_instance(new IOSource(fd, condition)); + return Glib::RefPtr(new IOSource(fd, condition)); } Glib::RefPtr IOSource::create(const Glib::RefPtr& channel, IOCondition condition) { - return Glib::make_refptr_for_instance(new IOSource(channel, condition)); -} - -Glib::RefPtr -IOSource::create(GIOChannel* channel, IOCondition condition) -{ - return Glib::make_refptr_for_instance(new IOSource(channel, condition)); + return Glib::RefPtr(new IOSource(channel, condition)); } sigc::connection -IOSource::connect(const sigc::slot& slot) +IOSource::connect(const sigc::slot& slot) { return connect_generic(slot); } @@ -1231,13 +1310,7 @@ IOSource::IOSource(PollFD::fd_t fd, IOCondition condition) : poll_fd_(fd, condit IOSource::IOSource(const Glib::RefPtr& channel, IOCondition condition) : Source(g_io_create_watch(channel->gobj(), (GIOCondition)condition), - (GSourceFunc)&glibmm_iosource_callback) -{ -} - -IOSource::IOSource(GIOChannel* channel, IOCondition condition) -: Source(g_io_create_watch(channel, (GIOCondition)condition), - (GSourceFunc)&glibmm_iosource_callback) + Glib::function_pointer_cast(&glibmm_iosource_callback)) { } @@ -1259,13 +1332,13 @@ IOSource::prepare(int& timeout) bool IOSource::check() { - return static_cast(poll_fd_.get_revents() & poll_fd_.get_events()) != 0; + return ((poll_fd_.get_revents() & poll_fd_.get_events()) != 0); } bool IOSource::dispatch(sigc::slot_base* slot) { - return (*static_cast*>(slot))(poll_fd_.get_revents()); + return (*static_cast*>(slot))(poll_fd_.get_revents()); } } // namespace Glib diff --git a/glib/glibmm/main.h b/glib/glibmm/main.h index c2f799c..cfed125 100644 --- a/glib/glibmm/main.h +++ b/glib/glibmm/main.h @@ -17,17 +17,29 @@ * License along with this library. If not, see . */ +#include #include +#include #include #include #include #include #include -#include namespace Glib { +#ifndef GLIBMM_DISABLE_DEPRECATED +class Cond; +class Mutex; + +namespace Threads +{ +class Cond; +class Mutex; +} +#endif // GLIBMM_DISABLE_DEPRECATED + /** @defgroup MainLoop The Main Event Loop * Manages all available sources of events. * @{ @@ -45,10 +57,10 @@ public: void set_fd(fd_t fd) { gobject_.fd = fd; } fd_t get_fd() const { return gobject_.fd; } - void set_events(IOCondition events) { gobject_.events = static_cast(events); } + void set_events(IOCondition events) { gobject_.events = events; } IOCondition get_events() const { return static_cast(gobject_.events); } - void set_revents(IOCondition revents) { gobject_.revents = static_cast(revents); } + void set_revents(IOCondition revents) { gobject_.revents = revents; } IOCondition get_revents() const { return static_cast(gobject_.revents); } GPollFD* gobj() { return &gobject_; } @@ -58,6 +70,16 @@ private: GPollFD gobject_; }; +// Concerning SignalTimeout::connect_once(), SignalTimeout::connect_seconds_once() +// and SignalIdle::connect_once(): +// See https://bugzilla.gnome.org/show_bug.cgi?id=396963 and +// http://bugzilla.gnome.org/show_bug.cgi?id=512348 about the sigc::trackable issue. +// It's recommended to replace sigc::slot& by std::function& in +// Threads::Thread::create() and ThreadPool::push() at the next ABI break. +// Such a replacement would be a mixed blessing in SignalTimeout and SignalIdle. +// In a single-threaded program auto-disconnection of trackable slots is safe +// and can be useful. + class SignalTimeout { public: @@ -101,7 +123,7 @@ public: * @return A connection handle, which can be used to disconnect the handler. */ sigc::connection connect( - const sigc::slot& slot, unsigned int interval, int priority = PRIORITY_DEFAULT); + const sigc::slot& slot, unsigned int interval, int priority = PRIORITY_DEFAULT); /** Connects a timeout handler that runs only once. * This method takes a function pointer to a function with a void return @@ -123,7 +145,7 @@ public: * @param priority The priority of the new event source. */ void connect_once( - const sigc::slot& slot, unsigned int interval, int priority = PRIORITY_DEFAULT); + const sigc::slot& slot, unsigned int interval, int priority = PRIORITY_DEFAULT); /** Connects a timeout handler with whole second granularity. * @@ -161,7 +183,7 @@ public: * @newin{2,14} */ sigc::connection connect_seconds( - const sigc::slot& slot, unsigned int interval, int priority = PRIORITY_DEFAULT); + const sigc::slot& slot, unsigned int interval, int priority = PRIORITY_DEFAULT); /** Connects a timeout handler that runs only once with whole second * granularity. @@ -185,7 +207,7 @@ public: * @param priority The priority of the new event source. */ void connect_seconds_once( - const sigc::slot& slot, unsigned int interval, int priority = PRIORITY_DEFAULT); + const sigc::slot& slot, unsigned int interval, int priority = PRIORITY_DEFAULT); private: GMainContext* context_; @@ -223,7 +245,7 @@ public: * @param priority The priority of the new event source. * @return A connection handle, which can be used to disconnect the handler. */ - sigc::connection connect(const sigc::slot& slot, int priority = PRIORITY_DEFAULT_IDLE); + sigc::connection connect(const sigc::slot& slot, int priority = PRIORITY_DEFAULT_IDLE); /** Connects an idle handler that runs only once. * This method takes a function pointer to a function with a void return @@ -243,7 +265,7 @@ public: * @endcode * @param priority The priority of the new event source. */ - void connect_once(const sigc::slot& slot, int priority = PRIORITY_DEFAULT_IDLE); + void connect_once(const sigc::slot& slot, int priority = PRIORITY_DEFAULT_IDLE); private: GMainContext* context_; @@ -284,7 +306,7 @@ public: * @param priority The priority of the new event source. * @return A connection handle, which can be used to disconnect the handler. */ - sigc::connection connect(const sigc::slot& slot, PollFD::fd_t fd, IOCondition condition, + sigc::connection connect(const sigc::slot& slot, PollFD::fd_t fd, IOCondition condition, int priority = PRIORITY_DEFAULT); /** Connects an I/O handler that watches an I/O channel. @@ -313,7 +335,7 @@ public: * @param priority The priority of the new event source. * @return A connection handle, which can be used to disconnect the handler. */ - sigc::connection connect(const sigc::slot& slot, + sigc::connection connect(const sigc::slot& slot, const Glib::RefPtr& channel, IOCondition condition, int priority = PRIORITY_DEFAULT); private: @@ -345,7 +367,7 @@ public: * @return A connection handle, which can be used to disconnect the handler. */ sigc::connection connect( - const sigc::slot& slot, GPid pid, int priority = PRIORITY_DEFAULT); + const sigc::slot& slot, GPid pid, int priority = PRIORITY_DEFAULT); private: GMainContext* context_; @@ -432,6 +454,34 @@ public: */ bool acquire(); +#ifndef GLIBMM_DISABLE_DEPRECATED + /** Tries to become the owner of the specified context, as with acquire(). + * But if another thread is the owner, atomically drop mutex and wait on cond + * until that owner releases ownership or until cond is signaled, then try + * again (once) to become the owner. + * @param cond A condition variable. + * @param mutex A mutex, currently held. + * @return true if the operation succeeded, and this thread is now the owner of context. + * + * @deprecated Use the underlying g_main_context_is_owner() function + * and separate locking, if you really need this functionality. + */ + bool wait(Glib::Cond& cond, Glib::Mutex& mutex); + + /** Tries to become the owner of the specified context, as with acquire(). + * But if another thread is the owner, atomically drop mutex and wait on cond + * until that owner releases ownership or until cond is signaled, then try + * again (once) to become the owner. + * @param cond A condition variable. + * @param mutex A mutex, currently held. + * @return true if the operation succeeded, and this thread is now the owner of context. + * + * @deprecated Use the underlying g_main_context_is_owner() function + * and separate locking, if you really need this functionality. + */ + bool wait(Glib::Threads::Cond& cond, Glib::Threads::Mutex& mutex); +#endif // GLIBMM_DISABLE_DEPRECATED + /** Releases ownership of a context previously acquired by this thread with acquire(). If the * context was acquired * multiple times, the only release ownership when release() is called as many times as it was @@ -532,7 +582,7 @@ public: * * @newin{2,38} */ - void invoke(const sigc::slot& slot, int priority = PRIORITY_DEFAULT); + void invoke(const sigc::slot& slot, int priority = PRIORITY_DEFAULT); /** Timeout signal, attached to this MainContext. * @return A signal proxy; you want to use SignalTimeout::connect(). @@ -737,6 +787,16 @@ protected: */ void remove_poll(PollFD& poll_fd); +#ifndef GLIBMM_DISABLE_DEPRECATED + /** Gets the "current time" to be used when checking this source. + * + * @param[out] current_time Glib::TimeVal in which to store current time. + * + * @deprecated Use get_time() instead. + */ + void get_current_time(Glib::TimeVal& current_time); +#endif // GLIBMM_DISABLE_DEPRECATED + // TODO: Remove mention of g_get_monotonic time when we wrap it in C++. /** Gets the time to be used when checking this source. The advantage of * calling this function over calling g_get_monotonic_time() directly is @@ -759,13 +819,6 @@ protected: private: GSource* gobject_; - mutable std::atomic_int ref_count_ {1}; - // The C++ wrapper (the Source instance) is deleted, when both Source::unreference() - // and SourceCallbackData::destroy_notify_callback() have decreased keep_wrapper_ - // by calling destroy_notify_callback2(). - // https://bugzilla.gnome.org/show_bug.cgi?id=561885 - std::atomic_int keep_wrapper_ {2}; - #ifndef DOXYGEN_SHOULD_SKIP_THIS static inline Source* get_wrapper(GSource* source); @@ -776,8 +829,7 @@ private: static gboolean dispatch_vfunc(GSource* source, GSourceFunc callback, void* user_data); public: - // Really destroys the object during the second call. See keep_wrapper_. - static void destroy_notify_callback2(void* data); + static void destroy_notify_callback(void* data); // Used by SignalXyz, possibly in other files. static sigc::connection attach_signal_source(const sigc::slot_base& slot, int priority, GSource* source, GMainContext* context, GSourceFunc callback_func); @@ -794,7 +846,7 @@ public: using CppObjectType = Glib::TimeoutSource; static Glib::RefPtr create(unsigned int interval); - sigc::connection connect(const sigc::slot& slot); + sigc::connection connect(const sigc::slot& slot); protected: explicit TimeoutSource(unsigned int interval); @@ -805,8 +857,10 @@ protected: bool dispatch(sigc::slot_base* slot) override; private: - gint64 expiration_; // microseconds - unsigned int interval_; // milliseconds + // TODO: Replace with gint64, because TimeVal is deprecated, when we can break ABI. + Glib::TimeVal expiration_; + + unsigned int interval_; }; class IdleSource : public Glib::Source @@ -815,7 +869,7 @@ public: using CppObjectType = Glib::IdleSource; static Glib::RefPtr create(); - sigc::connection connect(const sigc::slot& slot); + sigc::connection connect(const sigc::slot& slot); protected: IdleSource(); @@ -834,7 +888,7 @@ public: static Glib::RefPtr create(PollFD::fd_t fd, IOCondition condition); static Glib::RefPtr create( const Glib::RefPtr& channel, IOCondition condition); - sigc::connection connect(const sigc::slot& slot); + sigc::connection connect(const sigc::slot& slot); protected: IOSource(PollFD::fd_t fd, IOCondition condition); @@ -854,14 +908,6 @@ protected: bool dispatch(sigc::slot_base* slot) override; private: - friend IOChannel; - - // This is just to avoid the need for Gio::Socket to create a RefPtr<> to itself. - static Glib::RefPtr create(GIOChannel* channel, IOCondition condition); - - // This is just to avoid the need for Gio::Socket to create a RefPtr<> to itself. - IOSource(GIOChannel* channel, IOCondition condition); - PollFD poll_fd_; }; diff --git a/glib/glibmm/object.cc b/glib/glibmm/object.cc index 4dc73b3..9169846 100644 --- a/glib/glibmm/object.cc +++ b/glib/glibmm/object.cc @@ -26,11 +26,33 @@ #include +// Weak references: +// I'm not sure what the point of these are apart from being a hacky way out of circular references, +// but maybe we could make it easier to use them by making a Java Reference Object -style class like +// so: +// Glib::WeakRef weakrefSomeObject(object1); +// ... +// if(weakrefSomeObject->isStillAlive()) +// { +// weakrefSomeObject->some_method(); +// } +// else +// { +// //Deal with it, maybe recreating the object. +// } +// +// Without this, the coder has to define his own signal handler which sets his own isStillAlive +// boolean. +// weakrefSomeObject<> could still have its own signal_destroyed signal so that coders can choose to +// deal +// with the destruction as soon as it happens instead of just checking later before they try to use +// it. + namespace Glib { ConstructParams::ConstructParams(const Glib::Class& glibmm_class_) -: glibmm_class(glibmm_class_), n_parameters(0), parameter_names(nullptr), parameter_values(nullptr) +: glibmm_class(glibmm_class_), n_parameters(0), parameters(nullptr) { } @@ -46,7 +68,7 @@ ConstructParams::ConstructParams(const Glib::Class& glibmm_class_) */ ConstructParams::ConstructParams( const Glib::Class& glibmm_class_, const char* first_property_name, ...) -: glibmm_class(glibmm_class_), n_parameters(0), parameter_names(nullptr), parameter_values(nullptr) +: glibmm_class(glibmm_class_), n_parameters(0), parameters(nullptr) { va_list var_args; va_start(var_args, first_property_name); @@ -69,26 +91,23 @@ ConstructParams::ConstructParams( break; } - if (n_parameters >= n_alloced_params) { - n_alloced_params += 8; - parameter_names = g_renew(const char*, parameter_names, n_alloced_params); - parameter_values = g_renew(GValue, parameter_values, n_alloced_params); - } + if (n_parameters >= n_alloced_params) + parameters = g_renew(GParameter, parameters, n_alloced_params += 8); + + GParameter& param = parameters[n_parameters]; - auto& param_name = parameter_names[n_parameters]; - auto& param_value = parameter_values[n_parameters]; - param_name = name; - param_value.g_type = 0; + param.name = name; + param.value.g_type = 0; // Fill the GValue with the current vararg, and move on to the next one. - g_value_init(¶m_value, G_PARAM_SPEC_VALUE_TYPE(pspec)); - G_VALUE_COLLECT(¶m_value, var_args, 0, &collect_error); + g_value_init(¶m.value, G_PARAM_SPEC_VALUE_TYPE(pspec)); + G_VALUE_COLLECT(¶m.value, var_args, 0, &collect_error); if (collect_error) { g_warning("Glib::ConstructParams::ConstructParams(): %s", collect_error); g_free(collect_error); - g_value_unset(¶m_value); + g_value_unset(¶m.value); break; } @@ -102,13 +121,30 @@ ConstructParams::ConstructParams( ConstructParams::~ConstructParams() noexcept { - while (n_parameters > 0) { - auto& param_value = parameter_values[--n_parameters]; - g_value_unset(¶m_value); - } + while (n_parameters > 0) + g_value_unset(¶meters[--n_parameters].value); - g_free(parameter_names); - g_free(parameter_values); + g_free(parameters); +} + +/* + * Some compilers require the existence of a copy constructor in certain + * usage contexts. This implementation is fully functional, but unlikely + * to be ever actually called due to optimization. + */ +ConstructParams::ConstructParams(const ConstructParams& other) +: glibmm_class(other.glibmm_class), + n_parameters(other.n_parameters), + parameters(g_new(GParameter, n_parameters)) +{ + for (unsigned int i = 0; i < n_parameters; ++i) + { + parameters[i].name = other.parameters[i].name; + parameters[i].value.g_type = 0; + + g_value_init(¶meters[i].value, G_VALUE_TYPE(&other.parameters[i].value)); + g_value_copy(&other.parameters[i].value, ¶meters[i].value); + } } /**** Glib::Object_Class ***************************************************/ @@ -157,19 +193,27 @@ Object::Object() if (custom_type_name_ && !is_anonymous_custom_()) { - object_class_.init(); + Class::interface_class_vector_type custom_interface_classes; + + { + std::lock_guard lock(extra_object_base_data_mutex); + const extra_object_base_data_type::iterator iter = extra_object_base_data.find(this); + if (iter != extra_object_base_data.end()) + { + custom_interface_classes = iter->second.custom_interface_classes; + extra_object_base_data.erase(iter); + } + } + object_class_.init(); // This creates a type that is derived (indirectly) from GObject. - object_type = object_class_.clone_custom_type(custom_type_name_, - get_custom_interface_classes(), get_custom_class_init_functions(), - get_custom_instance_init_function()); - custom_class_init_finished(); + object_type = object_class_.clone_custom_type(custom_type_name_, custom_interface_classes); } - GObject* const new_object = g_object_new_with_properties(object_type, 0, nullptr, nullptr); + void* const new_object = g_object_new(object_type, nullptr); // Connect the GObject and Glib::Object instances. - ObjectBase::initialize(new_object); + ObjectBase::initialize(static_cast(new_object)); } Object::Object(const Glib::ConstructParams& construct_params) @@ -182,22 +226,36 @@ Object::Object(const Glib::ConstructParams& construct_params) if (custom_type_name_ && !is_anonymous_custom_()) { + Class::interface_class_vector_type custom_interface_classes; + + { + std::lock_guard lock(extra_object_base_data_mutex); + const extra_object_base_data_type::iterator iter = extra_object_base_data.find(this); + if (iter != extra_object_base_data.end()) + { + custom_interface_classes = iter->second.custom_interface_classes; + extra_object_base_data.erase(iter); + } + } + object_type = - construct_params.glibmm_class.clone_custom_type(custom_type_name_, - get_custom_interface_classes(), get_custom_class_init_functions(), - get_custom_instance_init_function()); - custom_class_init_finished(); + construct_params.glibmm_class.clone_custom_type(custom_type_name_, custom_interface_classes); } // Create a new GObject with the specified array of construct properties. // This works with custom types too, since those inherit the properties of // their base class. - GObject* const new_object = - g_object_new_with_properties(object_type, construct_params.n_parameters, construct_params.parameter_names, construct_params.parameter_values); + G_GNUC_BEGIN_IGNORE_DEPRECATIONS + //TODO: Replace g_object_newv() by g_object_new_with_properties() when we can + // require glib 2.54. GParameter is also deprecated (only mentioned in a comment). + // Don't use it in ConstructParams when we can break ABI. + void* const new_object = + g_object_newv(object_type, construct_params.n_parameters, construct_params.parameters); + G_GNUC_END_IGNORE_DEPRECATIONS // Connect the GObject and Glib::Object instances. - ObjectBase::initialize(new_object); + ObjectBase::initialize(static_cast(new_object)); } Object::Object(GObject* castitem) diff --git a/glib/glibmm/object.h b/glib/glibmm/object.h index cda1552..79b37b5 100644 --- a/glib/glibmm/object.h +++ b/glib/glibmm/object.h @@ -53,9 +53,8 @@ class GSigConnectionNode; /* ConstructParams::ConstructParams() takes a varargs list of properties * and values, like g_object_new() does. This list will then be converted - * to an array of parameter names and an array of parameter values, - * for use with g_object_new_with_properties(). No overhead is - * involved, since g_object_new() is just a wrapper around g_object_new_with_properties() + * to a GParameter array, for use with g_object_newv(). No overhead is + * involved, since g_object_new() is just a wrapper around g_object_newv() * as well. * * The advantage of an auxiliary ConstructParams object over g_object_new() @@ -71,16 +70,22 @@ class ConstructParams public: const Glib::Class& glibmm_class; unsigned int n_parameters; - const char ** parameter_names; - GValue* parameter_values; + GParameter* parameters; explicit ConstructParams(const Glib::Class& glibmm_class_); ConstructParams(const Glib::Class& glibmm_class_, const char* first_property_name, ...) G_GNUC_NULL_TERMINATED; // warn if called without a trailing NULL pointer ~ConstructParams() noexcept; - ConstructParams(const ConstructParams& other) = delete; - ConstructParams& operator=(const ConstructParams&) = delete; + // The copy constructor is semantically required by the C++ compiler + // (since g++ 3.4) to be able to create temporary instances, depending + // on the usage context. Apparently the compiler will actually optimize + // away the copy, though. See bug #132300. + ConstructParams(const ConstructParams& other); + +private: + // no copy assignment + ConstructParams& operator=(const ConstructParams&); }; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -180,7 +185,7 @@ struct TypeTraits> // because that would be "dependent", and g++ 3.4 does not allow that. // The specific Glib::wrap() overloads don't do anything special anyway. GObject* cobj = (GObject*)const_cast(ptr); - return Glib::make_refptr_for_instance(dynamic_cast(Glib::wrap_auto(cobj, true /* take_copy */))); + return Glib::RefPtr(dynamic_cast(Glib::wrap_auto(cobj, true /* take_copy */))); // We use dynamic_cast<> in case of multiple inheritance. } @@ -216,7 +221,7 @@ struct TypeTraits> // because that would be "dependent", and g++ 3.4 does not allow that. // The specific Glib::wrap() overloads don't do anything special anyway. GObject* cobj = (GObject*)(ptr); - return Glib::make_refptr_for_instance( + return Glib::RefPtr( dynamic_cast(Glib::wrap_auto(cobj, true /* take_copy */))); // We use dynamic_cast<> in case of multiple inheritance. } @@ -232,9 +237,9 @@ struct TypeTraits> } // namespace Container_Helpers -template +template inline PtrT -Value_Pointer::get_(Glib::Object*) const +Value_Pointer::get_(Glib::Object*) const { return dynamic_cast(get_object()); } @@ -251,8 +256,8 @@ public: static GType value_type() { return T::get_base_type(); } - void set(const CppType& data) { set_object(data.get()); } - CppType get() const { return std::dynamic_pointer_cast(get_object_copy()); } + void set(const CppType& data) { set_object(data.operator->()); } + CppType get() const { return Glib::RefPtr::cast_dynamic(get_object_copy()); } }; // The SUN Forte Compiler has a problem with this: @@ -270,8 +275,8 @@ public: static GType value_type() { return T::get_base_type(); } - void set(const CppType& data) { set_object(const_cast(data.get())); } - CppType get() const { return std::dynamic_pointer_cast(get_object_copy()); } + void set(const CppType& data) { set_object(const_cast(data.operator->())); } + CppType get() const { return Glib::RefPtr::cast_dynamic(get_object_copy()); } }; #endif /* GLIBMM_HAVE_DISAMBIGUOUS_CONST_TEMPLATE_SPECIALIZATIONS */ diff --git a/glib/glibmm/objectbase.cc b/glib/glibmm/objectbase.cc index 9be57e7..19fda47 100644 --- a/glib/glibmm/objectbase.cc +++ b/glib/glibmm/objectbase.cc @@ -39,16 +39,9 @@ namespace Glib /**** Glib::ObjectBase *****************************************************/ -// Used only during the construction of named custom types. -struct ObjectBase::PrivImpl -{ - // Pointers to the interfaces of custom types. - Class::interface_classes_type custom_interface_classes; - // Pointers to extra class init functions. - Class::class_init_funcs_type custom_class_init_functions; - // Pointer to the instance init function. - GInstanceInitFunc custom_instance_init_function = nullptr; -}; +// static data members +ObjectBase::extra_object_base_data_type ObjectBase::extra_object_base_data; +std::mutex ObjectBase::extra_object_base_data_mutex; ObjectBase::ObjectBase() : gobject_(nullptr), @@ -58,14 +51,12 @@ ObjectBase::ObjectBase() } ObjectBase::ObjectBase(const char* custom_type_name) -: gobject_(nullptr), custom_type_name_(custom_type_name), - cpp_destruction_in_progress_(false) +: gobject_(nullptr), custom_type_name_(custom_type_name), cpp_destruction_in_progress_(false) { } ObjectBase::ObjectBase(const std::type_info& custom_type_info) -: gobject_(nullptr), custom_type_name_(custom_type_info.name()), - cpp_destruction_in_progress_(false) +: gobject_(nullptr), custom_type_name_(custom_type_info.name()), cpp_destruction_in_progress_(false) { } @@ -162,6 +153,14 @@ ObjectBase::~ObjectBase() noexcept // we have to call g_object_unref() on our own. // + // Just a precaution. Unless a derived class's ctor has thrown an exception, + // 'this' should have been erased from extra_object_base_data by + // Glib::Object's constructor. + { + std::lock_guard lock(extra_object_base_data_mutex); + extra_object_base_data.erase(this); + } + if (GObject* const gobject = gobject_) { #ifdef GLIBMM_DEBUG_REFCOUNTING @@ -279,9 +278,9 @@ ObjectBase::destroy_notify_callback_(void* data) (void*)cppObject, (void*)cppObject->gobject_, G_OBJECT_TYPE_NAME(cppObject->gobject_)); #endif - if (cppObject) // This will be nullptr if the C++ destructor has already run. + if (cppObject) // This will be 0 if the C++ destructor has already run. { - cppObject->destroy_notify_(); // Virtual - it does different things for Glib::ObjectBase and Gtk::Object. + cppObject->destroy_notify_(); // Virtual - it does different things for GObject and GtkObject. } } @@ -290,13 +289,13 @@ ObjectBase::destroy_notify_() { // The C instance is about to be disposed, making it unusable. Now is a // good time to delete the C++ wrapper of the C instance. There is no way -// to force the disposal of the GObject (though Gtk::Object::destroy_notify_() -// can call g_object_run_dispose()), so this is the *only* place where we delete -// the C++ wrapper. +// to force the disposal of the GObject (though GtkObject has +// gtk_object_destroy()), So this is the *only* place where we delete the +// C++ wrapper. // // This will only happen after the last unreference(), which will be done by // the RefPtr<> destructor. There should be no way to access the wrapper or -// the underlying object instance after that, so it's OK to delete this. +// the undobjecterlying instance after that, so it's OK to delete this. #ifdef GLIBMM_DEBUG_REFCOUNTING g_warning("Glib::ObjectBase::destroy_notify_: gobject_ = %p", (void*)gobject_); @@ -351,9 +350,22 @@ ObjectBase::get_property_value(const Glib::ustring& property_name, Glib::ValueBa g_object_get_property(const_cast(gobj()), property_name.c_str(), value.gobj()); } -sigc::connection +void ObjectBase::connect_property_changed( - const Glib::ustring& property_name, const sigc::slot& slot) + const Glib::ustring& property_name, const sigc::slot& slot) +{ + connect_property_changed_with_return(property_name, slot); +} + +void +ObjectBase::connect_property_changed(const Glib::ustring& property_name, sigc::slot&& slot) +{ + connect_property_changed_with_return(property_name, std::move(slot)); +} + +sigc::connection +ObjectBase::connect_property_changed_with_return( + const Glib::ustring& property_name, const sigc::slot& slot) { // Create a proxy to hold our connection info // This will be deleted by destroy_notify_handler. @@ -365,8 +377,8 @@ ObjectBase::connect_property_changed( } sigc::connection -ObjectBase::connect_property_changed( - const Glib::ustring& property_name, sigc::slot&& slot) +ObjectBase::connect_property_changed_with_return( + const Glib::ustring& property_name, sigc::slot&& slot) { // Create a proxy to hold our connection info // This will be deleted by destroy_notify_handler. @@ -389,49 +401,6 @@ ObjectBase::thaw_notify() g_object_thaw_notify(gobj()); } -void ObjectBase::add_custom_interface_class(const Interface_Class* iface_class) -{ - if (!priv_pimpl_) - priv_pimpl_ = std::make_unique(); - priv_pimpl_->custom_interface_classes.emplace_back(iface_class); -} - -void ObjectBase::add_custom_class_init_function(GClassInitFunc class_init_func, void* class_data) -{ - if (!priv_pimpl_) - priv_pimpl_ = std::make_unique(); - priv_pimpl_->custom_class_init_functions.emplace_back( - std::make_tuple(class_init_func, class_data)); -} - -void ObjectBase::set_custom_instance_init_function(GInstanceInitFunc instance_init_func) -{ - if (!priv_pimpl_) - priv_pimpl_ = std::make_unique(); - priv_pimpl_->custom_instance_init_function = instance_init_func; -} - -const Class::interface_classes_type* ObjectBase::get_custom_interface_classes() const -{ - return priv_pimpl_ ? &priv_pimpl_->custom_interface_classes : nullptr; -} - -const Class::class_init_funcs_type* ObjectBase::get_custom_class_init_functions() const -{ - return priv_pimpl_ ? &priv_pimpl_->custom_class_init_functions : nullptr; -} - -GInstanceInitFunc ObjectBase::get_custom_instance_init_function() const -{ - return priv_pimpl_ ? priv_pimpl_->custom_instance_init_function : nullptr; -} - -void ObjectBase::custom_class_init_finished() -{ - priv_pimpl_.reset(); -} - -/**** Global function *****************************************************/ bool _gobject_cppinstance_already_deleted(GObject* gobject) { diff --git a/glib/glibmm/objectbase.h b/glib/glibmm/objectbase.h index 6beaa59..198f295 100644 --- a/glib/glibmm/objectbase.h +++ b/glib/glibmm/objectbase.h @@ -27,7 +27,9 @@ #include #include #include -#include +#include // Needed until the next ABI break. +#include // Not used by ObjectBase any more, but user code may rely on it being here. +#include #ifndef DOXYGEN_SHOULD_SKIP_THIS extern "C" { @@ -117,19 +119,34 @@ public: template void get_property(const Glib::ustring& property_name, PropertyType& value) const; - /// You probably want to use a specific property_*() accessor method instead. - template - PropertyType get_property(const Glib::ustring& property_name) const; + // TODO: At the next ABI break, delete connect_property_changed_with_return() + // and let connect_property_changed() return sigc::connection. + /** You can use the signal_changed() signal of the property proxy instead. + * + * See also connect_property_changed_with_return(). + */ + void connect_property_changed(const Glib::ustring& property_name, const sigc::slot& slot); /** You can use the signal_changed() signal of the property proxy instead. + * + * @newin{2,48} + */ + void connect_property_changed(const Glib::ustring& property_name, sigc::slot&& slot); + + /** You can use the signal_changed() signal of the property proxy instead. + * + * This method was added because connect_property_changed() does not return a sigc::connection, + * and we could not break the ABI by changing that function. */ - sigc::connection connect_property_changed(const Glib::ustring& property_name, const sigc::slot& slot); + sigc::connection connect_property_changed_with_return( + const Glib::ustring& property_name, const sigc::slot& slot); /** You can use the signal_changed() signal of the property proxy instead. * * @newin{2,48} */ - sigc::connection connect_property_changed(const Glib::ustring& property_name, sigc::slot&& slot); + sigc::connection connect_property_changed_with_return( + const Glib::ustring& property_name, sigc::slot&& slot); /** Increases the freeze count on object. If the freeze count is non-zero, the * emission of "notify" signals on object is stopped. The signals are queued @@ -202,15 +219,20 @@ protected: bool is_anonymous_custom_() const; - // The following 7 methods are used by Glib::ExtraClassInit, Glib::Interface - // and Glib::Object during construction of a named custom type. - void add_custom_interface_class(const Interface_Class* iface_class); - void add_custom_class_init_function(GClassInitFunc class_init_func, void* class_data = nullptr); - void set_custom_instance_init_function(GInstanceInitFunc instance_init_func); - const Class::interface_classes_type* get_custom_interface_classes() const; - const Class::class_init_funcs_type* get_custom_class_init_functions() const; - GInstanceInitFunc get_custom_instance_init_function() const; - void custom_class_init_finished(); + // TODO: At the next ABI break, replace extra_object_base_data by a non-static + // data member. + // This is a new data member that can't be added as instance data to + // ObjectBase now, because it would break ABI. + struct ExtraObjectBaseData + { + Class::interface_class_vector_type custom_interface_classes; + }; + + using extra_object_base_data_type = std::map; + static extra_object_base_data_type extra_object_base_data; + // ObjectBase instances may be used in different threads. + // Accesses to extra_object_base_data must be thread-safe. + static std::mutex extra_object_base_data_mutex; public: // is_derived_() must be public, so that overridden vfuncs and signal handlers can call it @@ -238,15 +260,12 @@ protected: private: #ifndef DOXYGEN_SHOULD_SKIP_THIS - // Private part of implementation. - // Used only during construction of named custom types. - struct PrivImpl; - std::unique_ptr priv_pimpl_; - virtual void set_manage(); // calls g_error() +#endif // DOXYGEN_SHOULD_SKIP_THIS +#ifndef DOXYGEN_SHOULD_SKIP_THIS friend class Glib::GSigConnectionNode; // for GSigConnectionNode::notify() -#endif // DOXYGEN_SHOULD_SKIP_THIS +#endif }; #ifndef DOXYGEN_SHOULD_SKIP_THIS @@ -274,16 +293,6 @@ ObjectBase::get_property(const Glib::ustring& property_name, PropertyType& value value = property_value.get(); } -template -inline PropertyType -ObjectBase::get_property(const Glib::ustring& property_name) const -{ - PropertyType value; - get_property(property_name, value); - - return value; -} - #endif /* DOXYGEN_SHOULD_SKIP_THIS */ bool _gobject_cppinstance_already_deleted(GObject* gobject); diff --git a/glib/glibmm/property.h b/glib/glibmm/property.h index 0b7835b..593fba1 100644 --- a/glib/glibmm/property.h +++ b/glib/glibmm/property.h @@ -131,9 +131,9 @@ private: * * This Property class currently supports the name, nick name, description default value and flags. * The minimum and maximum bounds are set to the full range of the value. - * Because of internal implementation, flags shouldn't be set to values: Glib::ParamFlags::STATIC_NAME, - * Glib::ParamFlags::STATIC_NICK, Glib::ParamFlags::STATIC_BLURB, Glib::ParamFlags::CONSTRUCT and - * Glib::ParamFlags::CONSTRUCT_ONLY. + * Because of internal implementation, flags shouldn't be set to values: Glib::PARAM_STATIC_NAME, + * Glib::PARAM_STATIC_NICK, Glib::PARAM_STATIC_BLURB, Glib::PARAM_CONSTRUCT and + * Glib::PARAM_CONSTRUCT_ONLY. * * The class information must be installed into the GObject system once per * property, but this is handled automatically. @@ -331,7 +331,7 @@ public: template Property::Property(Glib::Object& object, const Glib::ustring& name) -: Property(object, name, Glib::ustring(), Glib::ustring(), Glib::ParamFlags::READWRITE) +: Property(object, name, Glib::ustring(), Glib::ustring(), Glib::PARAM_READWRITE) { } @@ -339,7 +339,7 @@ template Property::Property(Glib::Object& object, const Glib::ustring& name, const typename Property::PropertyType& default_value) : Property(object, name, default_value, Glib::ustring(), - Glib::ustring(), Glib::ParamFlags::READWRITE) + Glib::ustring(), Glib::PARAM_READWRITE) { } @@ -348,7 +348,7 @@ Property::Property(Glib::Object& object, const Glib::ustring& name, const Glib::ustring& nick, const Glib::ustring& blurb, Glib::ParamFlags flags) : PropertyBase(object, ValueType::value_type()) { - flags |= Glib::ParamFlags::READWRITE; + flags |= Glib::PARAM_READWRITE; if (!lookup_property(name)) install_property(static_cast(value_).create_param_spec(name, nick, blurb, flags)); @@ -360,7 +360,7 @@ Property::Property(Glib::Object& object, const Glib::ustring& name, const Pro : PropertyBase(object, ValueType::value_type()) { - flags |= Glib::ParamFlags::READWRITE; + flags |= Glib::PARAM_READWRITE; static_cast(value_).set(default_value); @@ -409,7 +409,7 @@ Property::get_proxy() template Property_ReadOnly::Property_ReadOnly(Glib::Object& object, const Glib::ustring& name) -: Property_ReadOnly(object, name, Glib::ustring(), Glib::ustring(), Glib::ParamFlags::READABLE) +: Property_ReadOnly(object, name, Glib::ustring(), Glib::ustring(), Glib::PARAM_READABLE) { } @@ -417,7 +417,7 @@ template Property_ReadOnly::Property_ReadOnly(Glib::Object& object, const Glib::ustring& name, const typename Property_ReadOnly::PropertyType& default_value) : Property_ReadOnly(object, name, default_value, Glib::ustring(), Glib::ustring(), - Glib::ParamFlags::READABLE) + Glib::PARAM_READABLE) { } @@ -426,8 +426,8 @@ Property_ReadOnly::Property_ReadOnly(Glib::Object& object, const Glib::ustrin const Glib::ustring& nick, const Glib::ustring& blurb, Glib::ParamFlags flags) : PropertyBase(object, ValueType::value_type()) { - flags |= Glib::ParamFlags::READABLE; - flags &= ~Glib::ParamFlags::WRITABLE; + flags |= Glib::PARAM_READABLE; + flags &= ~Glib::PARAM_WRITABLE; if (!lookup_property(name)) install_property(static_cast(value_).create_param_spec(name, nick, blurb, flags)); @@ -438,8 +438,8 @@ Property_ReadOnly::Property_ReadOnly(Glib::Object& object, const Glib::ustrin const Glib::ustring& nick, const Glib::ustring& blurb, Glib::ParamFlags flags) : PropertyBase(object, ValueType::value_type()) { - flags |= Glib::ParamFlags::READABLE; - flags &= ~Glib::ParamFlags::WRITABLE; + flags |= Glib::PARAM_READABLE; + flags &= ~Glib::PARAM_WRITABLE; static_cast(value_).set(default_value); @@ -472,7 +472,7 @@ Property_ReadOnly::get_proxy() template Property_WriteOnly::Property_WriteOnly(Glib::Object& object, const Glib::ustring& name) : Property_WriteOnly(object, name, Glib::ustring(), - Glib::ustring(), Glib::ParamFlags::WRITABLE) + Glib::ustring(), Glib::PARAM_WRITABLE) { } @@ -480,7 +480,7 @@ template Property_WriteOnly::Property_WriteOnly(Glib::Object& object, const Glib::ustring& name, const typename Property_WriteOnly::PropertyType& default_value) : Property_WriteOnly(object, name, default_value, Glib::ustring(), - Glib::ustring(), Glib::ParamFlags::WRITABLE) + Glib::ustring(), Glib::PARAM_WRITABLE) { } @@ -489,8 +489,8 @@ Property_WriteOnly::Property_WriteOnly(Glib::Object& object, const Glib::ustr const Glib::ustring& nick, const Glib::ustring& blurb, Glib::ParamFlags flags) : PropertyBase(object, ValueType::value_type()) { - flags |= Glib::ParamFlags::WRITABLE; - flags &= ~Glib::ParamFlags::READABLE; + flags |= Glib::PARAM_WRITABLE; + flags &= ~Glib::PARAM_READABLE; if (!lookup_property(name)) install_property(static_cast(value_).create_param_spec(name, nick, blurb, flags)); @@ -502,8 +502,8 @@ Property_WriteOnly::Property_WriteOnly(Glib::Object& object, const Glib::ustr const Glib::ustring& nick, const Glib::ustring& blurb, Glib::ParamFlags flags) : PropertyBase(object, ValueType::value_type()) { - flags |= Glib::ParamFlags::WRITABLE; - flags &= ~Glib::ParamFlags::READABLE; + flags |= Glib::PARAM_WRITABLE; + flags &= ~Glib::PARAM_READABLE; static_cast(value_).set(default_value); diff --git a/glib/glibmm/propertyproxy_base.cc b/glib/glibmm/propertyproxy_base.cc index d473c63..21f01fe 100644 --- a/glib/glibmm/propertyproxy_base.cc +++ b/glib/glibmm/propertyproxy_base.cc @@ -57,7 +57,7 @@ void PropertyProxyConnectionNode::callback(GObject*, GParamSpec* pspec, gpointer if (pspec && data) { if (sigc::slot_base* const slot = SignalProxyBase::data_to_slot(data)) - (*static_cast*>(slot))(); + (*static_cast*>(slot))(); } } diff --git a/glib/glibmm/propertyproxy_base.h b/glib/glibmm/propertyproxy_base.h index 1e84070..bc76c32 100644 --- a/glib/glibmm/propertyproxy_base.h +++ b/glib/glibmm/propertyproxy_base.h @@ -38,7 +38,7 @@ public: SignalProxyProperty(Glib::ObjectBase* obj, const gchar* property_name); ~SignalProxyProperty() noexcept; - using SlotType = sigc::slot; + using SlotType = sigc::slot; sigc::connection connect(const SlotType& slot); /** @newin{2,48} */ diff --git a/glib/glibmm/refptr.h b/glib/glibmm/refptr.h index c77b21d..74ed041 100644 --- a/glib/glibmm/refptr.h +++ b/glib/glibmm/refptr.h @@ -19,28 +19,19 @@ #include #include -#include +#include namespace Glib { -#ifndef DOXYGEN_SHOULD_SKIP_THIS -template -void RefPtrDeleter(T_CppObject* object) -{ - if (!object) - return; - - object->unreference(); -} -#endif // DOXYGEN_SHOULD_SKIP_THIS - /** RefPtr<> is a reference-counting shared smartpointer. * * Some objects in gtkmm are obtained from a shared * store. Consequently you cannot instantiate them yourself. Instead they * return a RefPtr which behaves much like an ordinary pointer in that members * can be reached with the usual object_ptr->member notation. + * Unlike most other smart pointers, RefPtr doesn't support dereferencing + * through *object_ptr. * * Reference counting means that a shared reference count is incremented each * time a RefPtr is copied, and decremented each time a RefPtr is destroyed, @@ -48,41 +39,481 @@ void RefPtrDeleter(T_CppObject* object) * zero, the contained object is deleted, meaning you don't need to remember * to delete the object. * + * RefPtr<> can store any class that has reference() and unreference() methods, + * and whose destructor is noexcept (the default for destructors). + * In gtkmm, that is anything derived from Glib::ObjectBase, such as + * Gdk::Pixbuf. + * * See the "Memory Management" section in the "Programming with gtkmm" * book for further information. */ template -using RefPtr = std::shared_ptr; +class RefPtr +{ +private: +#ifndef DOXYGEN_SHOULD_SKIP_THIS + /** Helper class for disallowing use of Glib::RefPtr with certain classes. + * + * Disallow for instance in Gtk::Widget and its subclasses. + * Glib::RefPtr::is_allowed_type::value is false if + * T:dont_allow_use_in_glib_refptr_ is a public type, else it's true. + * Example: + * @code + * using dont_allow_use_in_glib_refptr_ = int; + * @endcode + */ + class is_allowed_type + { + private: + struct big + { + int memory[64]; + }; -/* This would not be useful, - * because application code should not new these objects anyway. - * And it is not useful inside glibmm or gtkmm code because - * the constructors are protected, so can't be called from this utilility - * function. - * -template -RefPtr -make_refptr(T_Arg... arg) + static big check(...); + + // If X::dont_allow_use_in_glib_refptr_ is not a type, this check() overload + // is ignored because of the SFINAE rule (Substitution Failure Is Not An Error). + template + static typename X::dont_allow_use_in_glib_refptr_ check(X* obj); + + public: + static const bool value = sizeof(check(static_cast(nullptr))) == sizeof(big); + }; + + static_assert(is_allowed_type::value, "Glib::RefPtr must not be used with this class."); +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +public: + /** Default constructor + * + * Afterwards it will be null and use of -> will invoke undefined behaviour. + */ + inline RefPtr() noexcept; + + /// Destructor - decrements reference count. + inline ~RefPtr() noexcept; + + /// For use only by the \::create() methods. + explicit inline RefPtr(T_CppObject* pCppObject) noexcept; + + /** Copy constructor + * + * This increments the shared reference count. + */ + inline RefPtr(const RefPtr& src) noexcept; + + /** Move constructor + */ + inline RefPtr(RefPtr&& src) noexcept; + + /** Move constructor (from different, but castable type). + */ + template + inline RefPtr(RefPtr&& src) noexcept; + + /** Copy constructor (from different, but castable type). + * + * Increments the reference count. + */ + template + inline RefPtr(const RefPtr& src) noexcept; + + /** Swap the contents of two RefPtr<>. + * This method swaps the internal pointers to T_CppObject. This can be + * done safely without involving a reference/unreference cycle and is + * therefore highly efficient. + */ + inline void swap(RefPtr& other) noexcept; + + /// Copy from another RefPtr: + inline RefPtr& operator=(const RefPtr& src) noexcept; + + /// Move assignment operator: + inline RefPtr& operator=(RefPtr&& src) noexcept; + + /// Move assignment operator (from different, but castable type): + template + inline RefPtr& operator=(RefPtr&& src) noexcept; + + /** Copy from different, but castable type. + * + * Increments the reference count. + */ + template + inline RefPtr& operator=(const RefPtr& src) noexcept; + + /// Tests whether the RefPtr<> point to the same underlying instance. + inline bool operator==(const RefPtr& src) const noexcept; + + /// See operator==(). + inline bool operator!=(const RefPtr& src) const noexcept; + + /** Dereferencing. + * + * Use the methods of the underlying instance like so: + * refptr->memberfun(). + */ + inline T_CppObject* operator->() const noexcept; + + /** Returns the stored pointer. + * + * @newin{2,56} + */ + inline T_CppObject* get() const noexcept; + + /** Test whether the RefPtr<> points to any underlying instance. + * + * Mimics usage of ordinary pointers: + * @code + * if (ptr) + * do_something(); + * @endcode + */ + inline explicit operator bool() const noexcept; + +#ifndef GLIBMM_DISABLE_DEPRECATED + /// @deprecated Use reset() instead because this leads to confusion with clear() methods on the + /// underlying class. For instance, people use .clear() when they mean ->clear(). + inline void clear() noexcept; +#endif // GLIBMM_DISABLE_DEPRECATED + + /** Set underlying instance to nullptr, decrementing reference count of existing instance + * appropriately. + * @newin{2,16} + */ + inline void reset() noexcept; + + /** Release the ownership of underlying instance. + * + * RefPtr's underlying instance is set to nullptr, therefore underlying object can't be accessed + * through this RefPtr anymore. + * @return an underlying instance. + * + * Most users should not use release(). It can spoil the automatic destruction + * of the managed object. A legitimate use is if you immediately give RefPtr's + * reference to another object. + */ + inline T_CppObject* release() noexcept G_GNUC_WARN_UNUSED_RESULT; + + /** Dynamic cast to derived class. + * + * The RefPtr can't be cast with the usual notation so instead you can use + * @code + * ptr_derived = RefPtr::cast_dynamic(ptr_base); + * @endcode + */ + template + static inline RefPtr cast_dynamic(const RefPtr& src) noexcept; + + /** Static cast to derived class. + * + * Like the dynamic cast; the notation is + * @code + * ptr_derived = RefPtr::cast_static(ptr_base); + * @endcode + */ + template + static inline RefPtr cast_static(const RefPtr& src) noexcept; + + /** Cast to non-const. + * + * The RefPtr can't be cast with the usual notation so instead you can use + * @code + * ptr_unconst = RefPtr::cast_const(ptr_const); + * @endcode + */ + template + static inline RefPtr cast_const(const RefPtr& src) noexcept; + + /** Compare based on the underlying instance address. + * + * This is needed in code that requires an ordering on + * RefPtr instances, e.g. std::set >. + * + * Without these, comparing two RefPtr instances + * is still syntactically possible, but the result is semantically + * wrong, as p1 REL_OP p2 is interpreted as (bool)p1 REL_OP (bool)p2. + */ + inline bool operator<(const RefPtr& src) const noexcept; + + /// See operator<(). + inline bool operator<=(const RefPtr& src) const noexcept; + + /// See operator<(). + inline bool operator>(const RefPtr& src) const noexcept; + + /// See operator<(). + inline bool operator>=(const RefPtr& src) const noexcept; + +private: + T_CppObject* pCppObject_; +}; + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +// RefPtr<>::operator->() comes first here since it's used by other methods. +// If it would come after them it wouldn't be inlined. + +template +inline T_CppObject* RefPtr::operator->() const noexcept { - return RefPtr(new T_CppObject(arg...)); + return pCppObject_; } -*/ -/** Create a RefPtr<> to an instance of any class that has reference() and - * unreference() methods, and whose destructor is noexcept (the default for destructors). - * - * In gtkmm, that is anything derived from Glib::ObjectBase, such as - * Gdk::Pixbuf. - * - * Normal application code should not need to use this. However, this is necessary - * when implementing create() methods for derived Glib::ObjectBase-derived - * (not Gtk::Widget-derived) classes, such as derived Gtk::TreeModels. - */ template -RefPtr -make_refptr_for_instance(T_CppObject* object) +inline RefPtr::RefPtr() noexcept : pCppObject_(nullptr) +{ +} + +template +inline RefPtr::~RefPtr() noexcept +{ + if (pCppObject_) + pCppObject_->unreference(); // This could cause pCppObject to be deleted. +} + +template +inline RefPtr::RefPtr(T_CppObject* pCppObject) noexcept : pCppObject_(pCppObject) +{ +} + +template +inline RefPtr::RefPtr(const RefPtr& src) noexcept : pCppObject_(src.pCppObject_) +{ + if (pCppObject_) + pCppObject_->reference(); +} + +template +inline RefPtr::RefPtr(RefPtr&& src) noexcept : pCppObject_(src.pCppObject_) +{ + src.pCppObject_ = nullptr; +} + +template +template +inline RefPtr::RefPtr(RefPtr&& src) noexcept : pCppObject_(src.release()) +{ +} + +// The templated ctor allows copy construction from any object that's +// castable. Thus, it does downcasts: +// base_ref = derived_ref +template +template +inline RefPtr::RefPtr(const RefPtr& src) noexcept : + // A different RefPtr<> will not allow us access to pCppObject_. We need + // to add a get_underlying() for this, but that would encourage incorrect + // use, so we use the less well-known operator->() accessor: + pCppObject_(src.operator->()) +{ + if (pCppObject_) + pCppObject_->reference(); +} + +template +inline void +RefPtr::swap(RefPtr& other) noexcept +{ + T_CppObject* const temp = pCppObject_; + pCppObject_ = other.pCppObject_; + other.pCppObject_ = temp; +} + +template +inline RefPtr& +RefPtr::operator=(const RefPtr& src) noexcept +{ + // In case you haven't seen the swap() technique to implement copy + // assignment before, here's what it does: + // + // 1) Create a temporary RefPtr<> instance via the copy ctor, thereby + // increasing the reference count of the source object. + // + // 2) Swap the internal object pointers of *this and the temporary + // RefPtr<>. After this step, *this already contains the new pointer, + // and the old pointer is now managed by temp. + // + // 3) The destructor of temp is executed, thereby unreferencing the + // old object pointer. + // + // This technique is described in Herb Sutter's "Exceptional C++", and + // has a number of advantages over conventional approaches: + // + // - Code reuse by calling the copy ctor. + // - Strong exception safety for free. + // - Self assignment is handled implicitely. + // - Simplicity. + // - It just works and is hard to get wrong; i.e. you can use it without + // even thinking about it to implement copy assignment whereever the + // object data is managed indirectly via a pointer, which is very common. + + RefPtr temp(src); + this->swap(temp); + return *this; +} + +template +inline RefPtr& +RefPtr::operator=(RefPtr&& src) noexcept +{ + RefPtr temp(std::move(src)); + this->swap(temp); + src.pCppObject_ = nullptr; + + return *this; +} + +template +template +inline RefPtr& +RefPtr::operator=(RefPtr&& src) noexcept +{ + if (pCppObject_) + pCppObject_->unreference(); + pCppObject_ = src.release(); + + return *this; +} + +template +template +inline RefPtr& +RefPtr::operator=(const RefPtr& src) noexcept +{ + RefPtr temp(src); + this->swap(temp); + return *this; +} + +template +inline bool +RefPtr::operator==(const RefPtr& src) const noexcept +{ + return (pCppObject_ == src.pCppObject_); +} + +template +inline bool +RefPtr::operator!=(const RefPtr& src) const noexcept +{ + return (pCppObject_ != src.pCppObject_); +} + +template +inline T_CppObject* RefPtr::get() const noexcept +{ + return pCppObject_; +} + +template +inline RefPtr::operator bool() const noexcept +{ + return (pCppObject_ != nullptr); +} + +#ifndef GLIBMM_DISABLE_DEPRECATED +template +inline void +RefPtr::clear() noexcept +{ + reset(); +} +#endif // GLIBMM_DISABLE_DEPRECATED + +template +inline void +RefPtr::reset() noexcept +{ + RefPtr temp; // swap with an empty RefPtr<> to clear *this + this->swap(temp); +} + +template +inline T_CppObject* +RefPtr::release() noexcept +{ + T_CppObject* tmp = pCppObject_; + pCppObject_ = nullptr; + return tmp; +} + +template +template +inline RefPtr +RefPtr::cast_dynamic(const RefPtr& src) noexcept +{ + T_CppObject* const pCppObject = dynamic_cast(src.operator->()); + + if (pCppObject) + pCppObject->reference(); + + return RefPtr(pCppObject); +} + +template +template +inline RefPtr +RefPtr::cast_static(const RefPtr& src) noexcept +{ + T_CppObject* const pCppObject = static_cast(src.operator->()); + + if (pCppObject) + pCppObject->reference(); + + return RefPtr(pCppObject); +} + +template +template +inline RefPtr +RefPtr::cast_const(const RefPtr& src) noexcept +{ + T_CppObject* const pCppObject = const_cast(src.operator->()); + + if (pCppObject) + pCppObject->reference(); + + return RefPtr(pCppObject); +} + +template +inline bool +RefPtr::operator<(const RefPtr& src) const noexcept +{ + return (pCppObject_ < src.pCppObject_); +} + +template +inline bool +RefPtr::operator<=(const RefPtr& src) const noexcept +{ + return (pCppObject_ <= src.pCppObject_); +} + +template +inline bool +RefPtr::operator>(const RefPtr& src) const noexcept +{ + return (pCppObject_ > src.pCppObject_); +} + +template +inline bool +RefPtr::operator>=(const RefPtr& src) const noexcept +{ + return (pCppObject_ >= src.pCppObject_); +} + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +/** @relates Glib::RefPtr */ +template +inline void +swap(RefPtr& lhs, RefPtr& rhs) noexcept { - return RefPtr(object, &RefPtrDeleter); + lhs.swap(rhs); } } // namespace Glib diff --git a/gio/src/filedescriptorbased.ccg b/glib/glibmm/sarray.cc similarity index 76% rename from gio/src/filedescriptorbased.ccg rename to glib/glibmm/sarray.cc index 84882c1..69958a7 100644 --- a/gio/src/filedescriptorbased.ccg +++ b/glib/glibmm/sarray.cc @@ -1,4 +1,6 @@ -/* Copyright (C) 2017 The giomm Development Team +/* sarray.cc + * + * Copyright (C) 2002 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -11,8 +13,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library. If not, see . + * License along with this library. If not, see . */ -#include -#include +#include diff --git a/gio/src/propertyaction.ccg b/glib/glibmm/sarray.h similarity index 54% rename from gio/src/propertyaction.ccg rename to glib/glibmm/sarray.h index 85da4a8..dbd0b5c 100644 --- a/gio/src/propertyaction.ccg +++ b/glib/glibmm/sarray.h @@ -1,4 +1,9 @@ -/* Copyright (C) 2017 The giomm Development Team +#ifndef _GLIBMM_SARRAY_H +#define _GLIBMM_SARRAY_H + +/* array.h + * + * Copyright (C) 2002 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -11,21 +16,24 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library. If not, see . + * License along with this library. If not, see . */ -#include +#include -namespace Gio -{ +#ifndef GLIBMM_DISABLE_DEPRECATED +#include +#include -PropertyAction::PropertyAction(const Glib::ustring& name, - const Glib::PropertyProxy_Base& property_proxy, bool invert_boolean) -: -_CONSTRUCT("name", name.c_str(), "object", property_proxy.get_object()->gobj(), - "property-name", property_proxy.get_name(), - "invert-boolean", invert_boolean) +namespace Glib { + +/** + * @deprecated Use a std::vector instead. + */ +using SArray = Glib::ArrayHandle; } -} // namespace Gio +#endif // GLIBMM_DISABLE_DEPRECATED + +#endif // _GLIBMM_SARRAY_H diff --git a/glib/glibmm/signalproxy.cc b/glib/glibmm/signalproxy.cc index c36d713..04ab68d 100644 --- a/glib/glibmm/signalproxy.cc +++ b/glib/glibmm/signalproxy.cc @@ -42,7 +42,19 @@ SignalProxyNormal::~SignalProxyNormal() noexcept } sigc::slot_base& -SignalProxyNormal::connect_impl_(bool notify, const sigc::slot_base& slot, bool after) +SignalProxyNormal::connect_(const sigc::slot_base& slot, bool after) +{ + return connect_impl_(info_->callback, slot, after); +} + +sigc::slot_base& +SignalProxyNormal::connect_notify_(const sigc::slot_base& slot, bool after) +{ + return connect_impl_(info_->notify_callback, slot, after); +} + +sigc::slot_base& +SignalProxyNormal::connect_impl_(GCallback callback, const sigc::slot_base& slot, bool after) { // create a proxy to hold our connection info auto pConnectionNode = new SignalProxyConnectionNode(slot, obj_->gobj()); @@ -50,9 +62,8 @@ SignalProxyNormal::connect_impl_(bool notify, const sigc::slot_base& slot, bool // connect it to glib // pConnectionNode will be passed in the data argument to the callback. pConnectionNode->connection_id_ = g_signal_connect_data(obj_->gobj(), info_->signal_name, - notify ? info_->notify_callback : info_->callback, pConnectionNode, - &SignalProxyConnectionNode::destroy_notify_handler, - static_cast(after ? G_CONNECT_AFTER : 0)); + callback, pConnectionNode, &SignalProxyConnectionNode::destroy_notify_handler, + static_cast((after) ? G_CONNECT_AFTER : 0)); return pConnectionNode->slot_; } @@ -89,7 +100,7 @@ SignalProxyNormal::slot0_void_callback(GObject* self, void* data) try { if (sigc::slot_base* const slot = data_to_slot(data)) - (*static_cast*>(slot))(); + (*static_cast*>(slot))(); } catch (...) { @@ -98,9 +109,9 @@ SignalProxyNormal::slot0_void_callback(GObject* self, void* data) } } -// SignalProxyDetailedBase implementation: +// SignalProxyDetailed implementation: -SignalProxyDetailedBase::SignalProxyDetailedBase( +SignalProxyDetailed::SignalProxyDetailed( Glib::ObjectBase* obj, const SignalProxyInfo* info, const Glib::ustring& detail_name) : SignalProxyBase(obj), info_(info), @@ -109,12 +120,12 @@ SignalProxyDetailedBase::SignalProxyDetailedBase( { } -SignalProxyDetailedBase::~SignalProxyDetailedBase() noexcept +SignalProxyDetailed::~SignalProxyDetailed() noexcept { } sigc::slot_base& -SignalProxyDetailedBase::connect_impl_(bool notify, const sigc::slot_base& slot, bool after) +SignalProxyDetailed::connect_impl_(bool notify, const sigc::slot_base& slot, bool after) { // create a proxy to hold our connection info auto pConnectionNode = new SignalProxyConnectionNode(slot, obj_->gobj()); @@ -130,7 +141,7 @@ SignalProxyDetailedBase::connect_impl_(bool notify, const sigc::slot_base& slot, } sigc::slot_base& -SignalProxyDetailedBase::connect_impl_(bool notify, sigc::slot_base&& slot, bool after) +SignalProxyDetailed::connect_impl_(bool notify, sigc::slot_base&& slot, bool after) { // create a proxy to hold our connection info auto pConnectionNode = new SignalProxyConnectionNode(std::move(slot), obj_->gobj()); @@ -146,7 +157,7 @@ SignalProxyDetailedBase::connect_impl_(bool notify, sigc::slot_base&& slot, bool } void -SignalProxyDetailedBase::emission_stop() +SignalProxyDetailed::emission_stop() { g_signal_stop_emission_by_name(obj_->gobj(), detailed_name_.c_str()); } diff --git a/glib/glibmm/signalproxy.h b/glib/glibmm/signalproxy.h index 0f2022b..8820d40 100644 --- a/glib/glibmm/signalproxy.h +++ b/glib/glibmm/signalproxy.h @@ -46,7 +46,7 @@ struct SignalProxyInfo #endif // DOXYGEN_SHOULD_SKIP_THIS -// This base class is used by SignalProxyNormal, SignalProxyDetailedBase and SignalProxyProperty. +// This base class is used by SignalProxyNormal, SignalProxyDetailed and SignalProxyProperty. class SignalProxyBase { public: @@ -66,7 +66,7 @@ protected: ObjectBase* obj_; private: - SignalProxyBase& operator=(const SignalProxyBase&) = delete; + SignalProxyBase& operator=(const SignalProxyBase&); // not implemented }; // Shared portion of a Signal without detail @@ -78,7 +78,7 @@ private: * the template derivatives, which serve as gatekeepers for the * types allowed on a particular signal. * - * For signals with a detailed name (signal_name::detail_name) see SignalProxyDetailedBase. + * For signals with a detailed name (signal_name::detail_name) see SignalProxyDetailed. */ class SignalProxyNormal : public SignalProxyBase { @@ -89,7 +89,7 @@ public: void emission_stop(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - // This callback for SignalProxy + // This callback for SignalProxy // is defined here to avoid code duplication. static void slot0_void_callback(GObject*, void* data); #endif @@ -102,20 +102,28 @@ protected: */ SignalProxyNormal(Glib::ObjectBase* obj, const SignalProxyInfo* info); - /** Connects a signal handler to a signal. - * This is called by connect() and connect_notify() in derived SignalProxy classes. + /** Connects a generic signal handler to a signal. + * This is called by connect() in derived SignalProxy classes. * - * @param notify Whether this method is called by connect_notify() or by connect(). * @param slot The signal handler, usually created with sigc::mem_fun() or sigc::ptr_fun(). * @param after Whether this signal handler should be called before or after the default signal * handler. + */ + sigc::slot_base& connect_(const sigc::slot_base& slot, bool after); + + /** Connects a signal handler without a return value to a signal. + * This is called by connect_notify() in derived SignalProxy classes. * - * @newin{2,52} + * @param slot The signal handler, which should have a @c void return type, + * usually created with sigc::mem_fun() or sigc::ptr_fun(). + * @param after Whether this signal handler should be called before or after the default signal + * handler. */ - sigc::slot_base& connect_impl_(bool notify, const sigc::slot_base& slot, bool after); + sigc::slot_base& connect_notify_(const sigc::slot_base& slot, bool after); /** Connects a signal handler to a signal. - * @see connect_impl_(bool notify, const sigc::slot_base& slot, bool after). + * @see connect_(const sigc::slot_base& slot, bool after) and + * connect_notify_(const sigc::slot_base& slot, bool after). * * @newin{2,48} */ @@ -124,56 +132,42 @@ protected: private: const SignalProxyInfo* info_; + // TODO: We could maybe replace both connect_() and connect_notify_() with this in future, because + // they don't do anything extra. + /** This is called by connect_() and connect_notify_(). + */ + sigc::slot_base& connect_impl_(GCallback callback, const sigc::slot_base& slot, bool after); + // no copy assignment - SignalProxyNormal& operator=(const SignalProxyNormal&) = delete; + SignalProxyNormal& operator=(const SignalProxyNormal&); }; /**** Glib::SignalProxy ***************************************************/ -#ifndef DOXYGEN_SHOULD_SKIP_THIS -template -class SignalProxy; -#endif // DOXYGEN_SHOULD_SKIP_THIS - /** Proxy for signals with any number of arguments. * Use the connect() or connect_notify() method, with sigc::mem_fun() or sigc::ptr_fun() * to connect signal handlers to signals. - * - * This is the primary template. There is a specialization for signal handlers - * that return @c void. The specialization has no %connect_notify() method, and - * the @a after parameter in its %connect() method has a default value. */ template -class SignalProxy : public SignalProxyNormal +class SignalProxy : public SignalProxyNormal { public: - using SlotType = sigc::slot; - using VoidSlotType = sigc::slot; + using SlotType = sigc::slot; + using VoidSlotType = sigc::slot; SignalProxy(ObjectBase* obj, const SignalProxyInfo* info) : SignalProxyNormal(obj, info) {} /** Connects a signal handler to a signal. * - * For instance, connect(sigc::mem_fun(*this, &TheClass::on_something), false); - * - * For some signal handlers that return a value, it can make a big difference - * whether you connect before or after the default signal handler. - * Examples: - * - Gio::Application::signal_command_line() calls only one signal handler. - * A handler connected after the default handler will never be called. - * - X event signals, such as Gtk::Widget::signal_button_press_event(), stop - * calling signal handlers as soon as a called handler returns true. - * If the default handler returns true, a handler connected after it - * will not be called. + * For instance, connect( sigc::mem_fun(*this, &TheClass::on_something) ); * * @param slot The signal handler, usually created with sigc::mem_fun() or sigc::ptr_fun(). * @param after Whether this signal handler should be called before or after the default signal * handler. - * @return A sigc::connection. */ - sigc::connection connect(const SlotType& slot, bool after) + sigc::connection connect(const SlotType& slot, bool after = true) { - return sigc::connection(connect_impl_(false, slot, after)); + return sigc::connection(connect_(slot, after)); } /** Connects a signal handler to a signal. @@ -181,7 +175,7 @@ public: * * @newin{2,48} */ - sigc::connection connect(SlotType&& slot, bool after) + sigc::connection connect(SlotType&& slot, bool after = true) { return sigc::connection(connect_impl_(false, std::move(slot), after)); } @@ -191,23 +185,27 @@ public: * * For instance, connect_notify( sigc::mem_fun(*this, &TheClass::on_something) ); * + * If the signal requires signal handlers with a @c void return type, + * the only difference between connect() and connect_notify() is the default + * value of @a after. + * * If the signal requires signal handlers with a return value of type T, - * %connect_notify() binds return T() to the connected signal handler. + * connect_notify() binds return T() to the connected signal handler. * For instance, if the return type is @c bool, the following two calls are equivalent. * @code - * connect_notify(sigc::mem_fun(*this, &TheClass::on_something)); - * connect(sigc::bind_return(sigc::mem_fun(*this, &TheClass::on_something), false), false); + * connect_notify( sigc::mem_fun(*this, &TheClass::on_something) ); + * connect( sigc::bind_return(sigc::mem_fun(*this, &TheClass::on_something), false), false + * ); * @endcode * * @param slot The signal handler, which should have a @c void return type, * usually created with sigc::mem_fun() or sigc::ptr_fun(). * @param after Whether this signal handler should be called before or after the default signal * handler. - * @return A sigc::connection. */ sigc::connection connect_notify(const VoidSlotType& slot, bool after = false) { - return sigc::connection(connect_impl_(true, slot, after)); + return sigc::connection(connect_notify_(slot, after)); } /** Connects a signal handler without a return value to a signal. @@ -221,47 +219,28 @@ public: } }; -/** Proxy for signals with any number of arguments. - * Use the connect() method, with sigc::mem_fun() or sigc::ptr_fun() - * to connect signal handlers to signals. - * - * This is a specialization for signal handlers that return @c void. +/* Templates below has been added to avoid API break, and should not be + * used in a newly created code. SignalProxy class should be used instead + * of SignalProxy# class. */ -template -class SignalProxy : public SignalProxyNormal -{ -public: - using SlotType = sigc::slot; - - SignalProxy(ObjectBase* obj, const SignalProxyInfo* info) : SignalProxyNormal(obj, info) {} - - /** Connects a signal handler to a signal. - * - * For instance, connect( sigc::mem_fun(*this, &TheClass::on_something) ); - * - * By default, the signal handler will be called after the default signal handler. - * This is usually fine for signal handlers that don't return a value. - * - * @param slot The signal handler, usually created with sigc::mem_fun() or sigc::ptr_fun(). - * @param after Whether this signal handler should be called before or after the default signal - * handler. - * @return A sigc::connection. - */ - sigc::connection connect(const SlotType& slot, bool after = true) - { - return sigc::connection(connect_impl_(false, slot, after)); - } - - /** Connects a signal handler to a signal. - * @see connect(const SlotType& slot, bool after). - * - * @newin{2,48} - */ - sigc::connection connect(SlotType&& slot, bool after = true) - { - return sigc::connection(connect_impl_(false, std::move(slot), after)); - } -}; +template +using SignalProxy0 = SignalProxy; +template +using SignalProxy1 = SignalProxy; +template +using SignalProxy2 = SignalProxy; +template +using SignalProxy3 = SignalProxy; +template +using SignalProxy4 = SignalProxy; +template +using SignalProxy5 = SignalProxy; +template +using SignalProxy6 = SignalProxy; + +// TODO: When we can break ABI, consider renaming +// SignalProxyDetailed => SignalProxyDetailedBase +// SignalProxyDetailedAnyType => SignalProxyDetailed // Shared portion of a Signal with detail /** The SignalProxy provides an API similar to sigc::signal that can be used to @@ -272,10 +251,10 @@ public: * the template derivatives, which serve as gatekeepers for the * types allowed on a particular signal. */ -class SignalProxyDetailedBase : public SignalProxyBase +class SignalProxyDetailed : public SignalProxyBase { public: - ~SignalProxyDetailedBase() noexcept; + ~SignalProxyDetailed() noexcept; /// Stops the current signal emission (not in libsigc++) void emission_stop(); @@ -287,11 +266,11 @@ protected: * and the C callbacks that should be called by glib. * @param detail_name The detail name, if any. */ - SignalProxyDetailedBase( + SignalProxyDetailed( Glib::ObjectBase* obj, const SignalProxyInfo* info, const Glib::ustring& detail_name); /** Connects a signal handler to a signal. - * This is called by connect() and connect_notify() in derived SignalProxyDetailed classes. + * This is called by connect() and connect_notify() in derived SignalProxyDetailedAnyType classes. * * @param notify Whether this method is called by connect_notify() or by connect(). * @param slot The signal handler, usually created with sigc::mem_fun() or sigc::ptr_fun(). @@ -312,57 +291,35 @@ private: const Glib::ustring detailed_name_; // signal_name[::detail_name] // no copy assignment - SignalProxyDetailedBase& operator=(const SignalProxyDetailedBase&) = delete; + SignalProxyDetailed& operator=(const SignalProxyDetailed&); }; -/**** Glib::SignalProxyDetailed **********************************************/ - -#ifndef DOXYGEN_SHOULD_SKIP_THIS -template -class SignalProxyDetailed; -#endif // DOXYGEN_SHOULD_SKIP_THIS - /** Proxy for signals with any number of arguments and possibly a detailed name. * Use the connect() or connect_notify() method, with sigc::mem_fun() or sigc::ptr_fun() * to connect signal handlers to signals. - * - * This is the primary template. There is a specialization for signal handlers - * that return @c void. The specialization has no %connect_notify() method, and - * the @a after parameter in its %connect() method has a default value. */ template -class SignalProxyDetailed : public SignalProxyDetailedBase +class SignalProxyDetailedAnyType : public SignalProxyDetailed { public: - using SlotType = sigc::slot; - using VoidSlotType = sigc::slot; + using SlotType = sigc::slot; + using VoidSlotType = sigc::slot; - SignalProxyDetailed( + SignalProxyDetailedAnyType( ObjectBase* obj, const SignalProxyInfo* info, const Glib::ustring& detail_name) - : SignalProxyDetailedBase(obj, info, detail_name) + : SignalProxyDetailed(obj, info, detail_name) { } /** Connects a signal handler to a signal. * - * For instance, connect(sigc::mem_fun(*this, &TheClass::on_something), false); - * - * For some signal handlers that return a value, it can make a big difference - * whether you connect before or after the default signal handler. - * Examples: - * - Gio::Application::signal_command_line() calls only one signal handler. - * A handler connected after the default handler will never be called. - * - X event signals, such as Gtk::Widget::signal_button_press_event(), stop - * calling signal handlers as soon as a called handler returns true. - * If the default handler returns true, a handler connected after it - * will not be called. + * For instance, connect( sigc::mem_fun(*this, &TheClass::on_something) ); * * @param slot The signal handler, usually created with sigc::mem_fun() or sigc::ptr_fun(). * @param after Whether this signal handler should be called before or after the default signal * handler. - * @return A sigc::connection. */ - sigc::connection connect(const SlotType& slot, bool after) + sigc::connection connect(const SlotType& slot, bool after = true) { return sigc::connection(connect_impl_(false, slot, after)); } @@ -372,7 +329,7 @@ public: * * @newin{2,48} */ - sigc::connection connect(SlotType&& slot, bool after) + sigc::connection connect(SlotType&& slot, bool after = true) { return sigc::connection(connect_impl_(false, std::move(slot), after)); } @@ -382,19 +339,23 @@ public: * * For instance, connect_notify( sigc::mem_fun(*this, &TheClass::on_something) ); * + * If the signal requires signal handlers with a @c void return type, + * the only difference between connect() and connect_notify() is the default + * value of @a after. + * * If the signal requires signal handlers with a return value of type T, - * %connect_notify() binds return T() to the connected signal handler. + * connect_notify() binds return T() to the connected signal handler. * For instance, if the return type is @c bool, the following two calls are equivalent. * @code - * connect_notify(sigc::mem_fun(*this, &TheClass::on_something)); - * connect(sigc::bind_return(sigc::mem_fun(*this, &TheClass::on_something), false), false); + * connect_notify( sigc::mem_fun(*this, &TheClass::on_something) ); + * connect( sigc::bind_return(sigc::mem_fun(*this, &TheClass::on_something), false), false + * ); * @endcode * * @param slot The signal handler, which should have a @c void return type, * usually created with sigc::mem_fun() or sigc::ptr_fun(). * @param after Whether this signal handler should be called before or after the default signal * handler. - * @return A sigc::connection. */ sigc::connection connect_notify(const VoidSlotType& slot, bool after = false) { @@ -412,51 +373,24 @@ public: } }; -/** Proxy for signals with any number of arguments and possibly a detailed name. - * Use the connect() method, with sigc::mem_fun() or sigc::ptr_fun() - * to connect signal handlers to signals. - * - * This is a specialization for signal handlers that return @c void. +/* Templates below has been added to avoid API break, and should not be + * used in a newly created code. SignalProxyDetailedAnyType class should be + * used instead of SignalProxyDetailed# class. */ -template -class SignalProxyDetailed : public SignalProxyDetailedBase -{ -public: - using SlotType = sigc::slot; - - SignalProxyDetailed( - ObjectBase* obj, const SignalProxyInfo* info, const Glib::ustring& detail_name) - : SignalProxyDetailedBase(obj, info, detail_name) - { - } - - /** Connects a signal handler to a signal. - * - * For instance, connect( sigc::mem_fun(*this, &TheClass::on_something) ); - * - * By default, the signal handler will be called after the default signal handler. - * This is usually fine for signal handlers that don't return a value. - * - * @param slot The signal handler, usually created with sigc::mem_fun() or sigc::ptr_fun(). - * @param after Whether this signal handler should be called before or after the default signal - * handler. - * @return A sigc::connection. - */ - sigc::connection connect(const SlotType& slot, bool after = true) - { - return sigc::connection(connect_impl_(false, slot, after)); - } - - /** Connects a signal handler to a signal. - * @see connect(const SlotType& slot, bool after). - * - * @newin{2,48} - */ - sigc::connection connect(SlotType&& slot, bool after = true) - { - return sigc::connection(connect_impl_(false, std::move(slot), after)); - } -}; +template +using SignalProxyDetailed0 = SignalProxyDetailedAnyType; +template +using SignalProxyDetailed1 = SignalProxyDetailedAnyType; +template +using SignalProxyDetailed2 = SignalProxyDetailedAnyType; +template +using SignalProxyDetailed3 = SignalProxyDetailedAnyType; +template +using SignalProxyDetailed4 = SignalProxyDetailedAnyType; +template +using SignalProxyDetailed5 = SignalProxyDetailedAnyType; +template +using SignalProxyDetailed6 = SignalProxyDetailedAnyType; } // namespace Glib diff --git a/glib/glibmm/signalproxy_connectionnode.cc b/glib/glibmm/signalproxy_connectionnode.cc index af50254..2d51630 100644 --- a/glib/glibmm/signalproxy_connectionnode.cc +++ b/glib/glibmm/signalproxy_connectionnode.cc @@ -40,8 +40,8 @@ SignalProxyConnectionNode::SignalProxyConnectionNode(sigc::slot_base&& slot, GOb // notify is a message coming up from the slot to be passed back to Gtk+ // disconnect is a message coming up from the Gtk+ to be passed down to SigC++ // static -void -SignalProxyConnectionNode::notify(sigc::notifiable* data) +void* +SignalProxyConnectionNode::notify(void* data) { // notification from libsigc++. SignalProxyConnectionNode* conn = static_cast(data); @@ -72,6 +72,8 @@ SignalProxyConnectionNode::notify(sigc::notifiable* data) g_signal_handler_disconnect(o, connection_id); } } + + return nullptr; // apparently unused in libsigc++ } // static diff --git a/glib/glibmm/signalproxy_connectionnode.h b/glib/glibmm/signalproxy_connectionnode.h index da82bdf..30da5c0 100644 --- a/glib/glibmm/signalproxy_connectionnode.h +++ b/glib/glibmm/signalproxy_connectionnode.h @@ -36,7 +36,7 @@ namespace Glib * It lives between the layer of Gtk+ and libsigc++. * It is very much an internal class. */ -class SignalProxyConnectionNode : public sigc::notifiable +class SignalProxyConnectionNode { public: /** @param slot The signal handler for the glib signal. @@ -55,7 +55,7 @@ public: * This callback is registered in the slot. * @param data The SignalProxyConnectionNode object (@p this). */ - static void notify(sigc::notifiable* data); + static void* notify(void* data); /** Callback that is executed when the glib closure is destroyed. * @param data The SignalProxyConnectionNode object (@p this). diff --git a/glib/glibmm/slisthandle.h b/glib/glibmm/slisthandle.h new file mode 100644 index 0000000..7b95279 --- /dev/null +++ b/glib/glibmm/slisthandle.h @@ -0,0 +1,410 @@ +#ifndef _GLIBMM_SLISTHANDLE_H +#define _GLIBMM_SLISTHANDLE_H + +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include +#include + +namespace Glib +{ + +namespace Container_Helpers +{ + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +/* Create and fill a GSList as efficient as possible. + * This requires bidirectional iterators. + */ +template +GSList* +create_slist(Bi pbegin, Bi pend, Tr) +{ + GSList* head = nullptr; + + while (pend != pbegin) + { + // Use & to force a warning if the iterator returns a temporary object. + const void* const item = Tr::to_c_type(*&*--pend); + head = g_slist_prepend(head, const_cast(item)); + } + + return head; +} + +/* Create a GSList from a 0-terminated input sequence. + * Build it in reverse order and reverse the whole list afterwards, + * because appending to the list would be horribly inefficient. + */ +template +GSList* +create_slist(For pbegin, Tr) +{ + GSList* head = nullptr; + + while (*pbegin) + { + // Use & to force a warning if the iterator returns a temporary object. + const void* const item = Tr::to_c_type(*&*pbegin); + head = g_slist_prepend(head, const_cast(item)); + ++pbegin; + } + + return g_slist_reverse(head); +} + +/* Convert from any container that supports bidirectional iterators. + */ +template +struct SListSourceTraits +{ + static GSList* get_data(const Cont& cont) + { + return Glib::Container_Helpers::create_slist(cont.begin(), cont.end(), Tr()); + } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_SHALLOW; +}; + +/* Convert from a 0-terminated array. The Cont + * argument must be a pointer to the first element. + */ +template +struct SListSourceTraits +{ + static GSList* get_data(const Cont* array) + { + return (array) ? Glib::Container_Helpers::create_slist(array, Tr()) : nullptr; + } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_SHALLOW; +}; + +template +struct SListSourceTraits : SListSourceTraits +{ +}; + +/* Convert from a 0-terminated array. The Cont argument must be a pointer + * to the first element. For consistency, the array must be 0-terminated, + * even though the array size is known at compile time. + */ +template +struct SListSourceTraits +{ + static GSList* get_data(const Cont* array) + { + return Glib::Container_Helpers::create_slist(array, array + (N - 1), Tr()); + } + + static const Glib::OwnershipType initial_ownership = Glib::OWNERSHIP_SHALLOW; +}; + +template +struct SListSourceTraits : SListSourceTraits +{ +}; + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +/** + * @ingroup ContHelpers + */ +template +class SListHandleIterator +{ +public: + using CppType = typename Tr::CppType; + using CType = typename Tr::CType; + + using iterator_category = std::forward_iterator_tag; + using value_type = CppType; + using difference_type = std::ptrdiff_t; + using reference = value_type; + using pointer = void; + + explicit inline SListHandleIterator(const GSList* node); + + inline value_type operator*() const; + inline SListHandleIterator& operator++(); + inline const SListHandleIterator operator++(int); + + inline bool operator==(const SListHandleIterator& rhs) const; + inline bool operator!=(const SListHandleIterator& rhs) const; + +private: + const GSList* node_; +}; + +} // namespace Container_Helpers + +// TODO: Remove this when we can break glibmm API. +/** This is an intermediate type. When a method takes this, or returns this, you + * should use a standard C++ container of your choice, such as std::list or + * std::vector. + * + * However, this is not used in new API. We now prefer to just use std::vector, + * which is less flexibile, but makes the API clearer. + * @ingroup ContHandles + */ +template > +class SListHandle +{ +public: + using CppType = typename Tr::CppType; + using CType = typename Tr::CType; + + using value_type = CppType; + using size_type = std::size_t; + using difference_type = std::ptrdiff_t; + + using const_iterator = Glib::Container_Helpers::SListHandleIterator; + using iterator = Glib::Container_Helpers::SListHandleIterator; + + template + inline SListHandle(const Cont& container); + + // Take over ownership of a GSList created by GTK+ functions. + inline SListHandle(GSList* glist, Glib::OwnershipType ownership); + + // Copying clears the ownership flag of the source handle. + inline SListHandle(const SListHandle& other); + + ~SListHandle() noexcept; + + inline const_iterator begin() const; + inline const_iterator end() const; + + template + inline operator std::vector() const; + template + inline operator std::deque() const; + template + inline operator std::list() const; + + template + inline void assign_to(Cont& container) const; + template + inline void copy(Out pdest) const; + + inline GSList* data() const; + inline std::size_t size() const; + inline bool empty() const; + +private: + GSList* pslist_; + mutable Glib::OwnershipType ownership_; + + // No copy assignment. + SListHandle& operator=(const SListHandle&); +}; + +/***************************************************************************/ +/* Inline implementation */ +/***************************************************************************/ + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +namespace Container_Helpers +{ + +/**** Glib::Container_Helpers::SListHandleIterator<> ***********************/ + +template +inline SListHandleIterator::SListHandleIterator(const GSList* node) : node_(node) +{ +} + +template +inline typename SListHandleIterator::value_type SListHandleIterator::operator*() const +{ + return Tr::to_cpp_type(static_cast(node_->data)); +} + +template +inline SListHandleIterator& SListHandleIterator::operator++() +{ + node_ = node_->next; + return *this; +} + +template +inline const SListHandleIterator SListHandleIterator::operator++(int) +{ + const SListHandleIterator tmp(*this); + node_ = node_->next; + return tmp; +} + +template +inline bool +SListHandleIterator::operator==(const SListHandleIterator& rhs) const +{ + return (node_ == rhs.node_); +} + +template +inline bool +SListHandleIterator::operator!=(const SListHandleIterator& rhs) const +{ + return (node_ != rhs.node_); +} + +} // namespace Container_Helpers + +/**** Glib::SListHandle<> **************************************************/ + +template +template +inline SListHandle::SListHandle(const Cont& container) +: pslist_(Glib::Container_Helpers::SListSourceTraits::get_data(container)), + ownership_(Glib::Container_Helpers::SListSourceTraits::initial_ownership) +{ +} + +template +inline SListHandle::SListHandle(GSList* gslist, Glib::OwnershipType ownership) +: pslist_(gslist), ownership_(ownership) +{ +} + +template +inline SListHandle::SListHandle(const SListHandle& other) +: pslist_(other.pslist_), ownership_(other.ownership_) +{ + other.ownership_ = Glib::OWNERSHIP_NONE; +} + +template +SListHandle::~SListHandle() noexcept +{ + if (ownership_ != Glib::OWNERSHIP_NONE) + { + if (ownership_ != Glib::OWNERSHIP_SHALLOW) + { + // Deep ownership: release each container element. + for (GSList* node = pslist_; node != nullptr; node = node->next) + Tr::release_c_type(static_cast(node->data)); + } + g_slist_free(pslist_); + } +} + +template +inline typename SListHandle::const_iterator +SListHandle::begin() const +{ + return Glib::Container_Helpers::SListHandleIterator(pslist_); +} + +template +inline typename SListHandle::const_iterator +SListHandle::end() const +{ + return Glib::Container_Helpers::SListHandleIterator(nullptr); +} + +template +template +inline SListHandle::operator std::vector() const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::vector(this->begin(), this->end()); +#else + std::vector temp; + temp.reserve(this->size()); + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif +} + +template +template +inline SListHandle::operator std::deque() const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::deque(this->begin(), this->end()); +#else + std::deque temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif +} + +template +template +inline SListHandle::operator std::list() const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + return std::list(this->begin(), this->end()); +#else + std::list temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + return temp; +#endif +} + +template +template +inline void +SListHandle::assign_to(Cont& container) const +{ +#ifdef GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS + container.assign(this->begin(), this->end()); +#else + Cont temp; + Glib::Container_Helpers::fill_container(temp, this->begin(), this->end()); + container.swap(temp); +#endif +} + +template +template +inline void +SListHandle::copy(Out pdest) const +{ + std::copy(this->begin(), this->end(), pdest); +} + +template +inline GSList* +SListHandle::data() const +{ + return pslist_; +} + +template +inline std::size_t +SListHandle::size() const +{ + return g_slist_length(pslist_); +} + +template +inline bool +SListHandle::empty() const +{ + return (pslist_ == nullptr); +} + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +} // namespace Glib + +#endif /* _GLIBMM_SLISTHANDLE_H */ diff --git a/glib/glibmm/streamiochannel.cc b/glib/glibmm/streamiochannel.cc new file mode 100644 index 0000000..f82a279 --- /dev/null +++ b/glib/glibmm/streamiochannel.cc @@ -0,0 +1,207 @@ +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include //For Source +#include +#include +#include + +namespace Glib +{ + +#ifndef GLIBMM_DISABLE_DEPRECATED + +// static +Glib::RefPtr +StreamIOChannel::create(std::istream& stream) +{ + return Glib::RefPtr(new StreamIOChannel(&stream, nullptr)); +} + +// static +Glib::RefPtr +StreamIOChannel::create(std::ostream& stream) +{ + return Glib::RefPtr(new StreamIOChannel(nullptr, &stream)); +} + +// static +Glib::RefPtr +StreamIOChannel::create(std::iostream& stream) +{ + return Glib::RefPtr(new StreamIOChannel(&stream, &stream)); +} + +StreamIOChannel::StreamIOChannel(std::istream* stream_in, std::ostream* stream_out) +: stream_in_(stream_in), stream_out_(stream_out) +{ + get_flags_vfunc(); // initialize GIOChannel flag bits +} + +StreamIOChannel::~StreamIOChannel() noexcept +{ +} + +IOStatus +StreamIOChannel::read_vfunc(char* buf, gsize count, gsize& bytes_read) +{ + g_return_val_if_fail(stream_in_ != nullptr, IO_STATUS_ERROR); + + stream_in_->clear(); + stream_in_->read(buf, count); + bytes_read = stream_in_->gcount(); + + if (stream_in_->eof()) + return IO_STATUS_EOF; + + if (stream_in_->fail()) + { + throw Glib::Error(G_IO_CHANNEL_ERROR, G_IO_CHANNEL_ERROR_FAILED, "Reading from stream failed"); + } + + return IO_STATUS_NORMAL; +} + +IOStatus +StreamIOChannel::write_vfunc(const char* buf, gsize count, gsize& bytes_written) +{ + g_return_val_if_fail(stream_out_ != nullptr, IO_STATUS_ERROR); + + bytes_written = 0; + + stream_out_->clear(); + stream_out_->write(buf, count); + + if (stream_out_->fail()) + { + throw Glib::Error(G_IO_CHANNEL_ERROR, G_IO_CHANNEL_ERROR_FAILED, "Writing to stream failed"); + } + + bytes_written = count; // all or nothing ;) + + return IO_STATUS_NORMAL; +} + +IOStatus +StreamIOChannel::seek_vfunc(gint64 offset, SeekType type) +{ + std::ios::seekdir direction = std::ios::beg; + + switch (type) + { + case SEEK_TYPE_SET: + direction = std::ios::beg; + break; + case SEEK_TYPE_CUR: + direction = std::ios::cur; + break; + case SEEK_TYPE_END: + direction = std::ios::end; + break; + } + + bool failed = false; + + if (stream_in_) + { + stream_in_->clear(); + stream_in_->seekg(offset, direction); + failed = stream_in_->fail(); + } + if (stream_out_) + { + stream_out_->clear(); + stream_out_->seekp(offset, direction); + failed = (failed || stream_out_->fail()); + } + + if (failed) + { + throw Glib::Error(G_IO_CHANNEL_ERROR, G_IO_CHANNEL_ERROR_FAILED, "Seeking into stream failed"); + } + + return Glib::IO_STATUS_NORMAL; +} + +IOStatus +StreamIOChannel::close_vfunc() +{ + bool failed = false; + + if (std::fstream* const fstream = dynamic_cast(stream_in_)) + { + fstream->clear(); + fstream->close(); + failed = fstream->fail(); + } + else if (std::ifstream* const ifstream = dynamic_cast(stream_in_)) + { + ifstream->clear(); + ifstream->close(); + failed = ifstream->fail(); + } + else if (std::ofstream* const ofstream = dynamic_cast(stream_out_)) + { + ofstream->clear(); + ofstream->close(); + failed = ofstream->fail(); + } + else + { + throw Glib::Error( + G_IO_CHANNEL_ERROR, G_IO_CHANNEL_ERROR_FAILED, "Attempt to close non-file stream"); + } + + if (failed) + { + throw Glib::Error(G_IO_CHANNEL_ERROR, G_IO_CHANNEL_ERROR_FAILED, "Failed to close stream"); + } + + return IO_STATUS_NORMAL; +} + +IOStatus StreamIOChannel::set_flags_vfunc(IOFlags) +{ + return IO_STATUS_NORMAL; +} + +IOFlags +StreamIOChannel::get_flags_vfunc() +{ + gobj()->is_seekable = 1; + gobj()->is_readable = (stream_in_ != nullptr); + gobj()->is_writeable = (stream_out_ != nullptr); + + IOFlags flags = IO_FLAG_IS_SEEKABLE; + + if (stream_in_) + flags |= IO_FLAG_IS_READABLE; + if (stream_out_) + flags |= IO_FLAG_IS_WRITEABLE; + + return flags; +} + +Glib::RefPtr StreamIOChannel::create_watch_vfunc(IOCondition) +{ + g_warning("Glib::StreamIOChannel::create_watch_vfunc() not implemented"); + return Glib::RefPtr(); +} + +#endif // GLIBMM_DISABLE_DEPRECATED + +} // namespace Glib diff --git a/glib/glibmm/streamiochannel.h b/glib/glibmm/streamiochannel.h new file mode 100644 index 0000000..28a1ae7 --- /dev/null +++ b/glib/glibmm/streamiochannel.h @@ -0,0 +1,60 @@ +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#ifndef _GLIBMM_STREAMIOCHANNEL_H +#define _GLIBMM_STREAMIOCHANNEL_H + +#include +#include +#include + +namespace Glib +{ + +#ifndef GLIBMM_DISABLE_DEPRECATED + +/** @deprecated This whole class was deprecated in glibmm 2.2 - See the Glib::IOChannel + * documentation for an explanation. + */ +class StreamIOChannel : public Glib::IOChannel +{ +public: + ~StreamIOChannel() noexcept override; + + static Glib::RefPtr create(std::istream& stream); + static Glib::RefPtr create(std::ostream& stream); + static Glib::RefPtr create(std::iostream& stream); + +protected: + std::istream* stream_in_; + std::ostream* stream_out_; + + StreamIOChannel(std::istream* stream_in, std::ostream* stream_out); + + IOStatus read_vfunc(char* buf, gsize count, gsize& bytes_read) override; + IOStatus write_vfunc(const char* buf, gsize count, gsize& bytes_written) override; + IOStatus seek_vfunc(gint64 offset, SeekType type) override; + IOStatus close_vfunc() override; + IOStatus set_flags_vfunc(IOFlags flags) override; + IOFlags get_flags_vfunc() override; + Glib::RefPtr create_watch_vfunc(IOCondition cond) override; +}; + +#endif //#GLIBMM_DISABLE_DEPRECATED + +} // namespace Glib + +#endif /* _GLIBMM_STREAMIOCHANNEL_H */ diff --git a/glib/glibmm/threadpool.cc b/glib/glibmm/threadpool.cc new file mode 100644 index 0000000..7bc93dd --- /dev/null +++ b/glib/glibmm/threadpool.cc @@ -0,0 +1,254 @@ +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#ifndef GLIBMM_DISABLE_DEPRECATED + +#include +#include +#include +#include +#include + +namespace Glib +{ + +// internal +class ThreadPool::SlotList +{ +public: + SlotList(); + ~SlotList() noexcept; + + // noncopyable + SlotList(const ThreadPool::SlotList&) = delete; + ThreadPool::SlotList& operator=(const ThreadPool::SlotList&) = delete; + + sigc::slot* push(const sigc::slot& slot); + sigc::slot pop(sigc::slot* slot_ptr); + + void lock_and_unlock(); + +private: + Glib::Threads::Mutex mutex_; + std::list> list_; +}; + +ThreadPool::SlotList::SlotList() +{ +} + +ThreadPool::SlotList::~SlotList() noexcept +{ +} + +sigc::slot* +ThreadPool::SlotList::push(const sigc::slot& slot) +{ + Threads::Mutex::Lock lock(mutex_); + + list_.emplace_back(slot); + return &list_.back(); +} + +sigc::slot +ThreadPool::SlotList::pop(sigc::slot* slot_ptr) +{ + sigc::slot slot; + + { + Threads::Mutex::Lock lock(mutex_); + + std::list>::iterator pslot = list_.begin(); + while (pslot != list_.end() && slot_ptr != &*pslot) + ++pslot; + + if (pslot != list_.end()) + { + slot = *pslot; + list_.erase(pslot); + } + } + + return slot; +} + +void +ThreadPool::SlotList::lock_and_unlock() +{ + mutex_.lock(); + mutex_.unlock(); +} + +} // namespace Glib + +namespace +{ + +static void +call_thread_entry_slot(void* data, void* user_data) +{ + try + { + Glib::ThreadPool::SlotList* const slot_list = + static_cast(user_data); + + sigc::slot slot(slot_list->pop(static_cast*>(data))); + + slot(); + } + catch (Glib::Threads::Thread::Exit&) + { + // Just exit from the thread. The Thread::Exit exception + // is our sane C++ replacement of g_thread_exit(). + } + catch (...) + { + Glib::exception_handlers_invoke(); + } +} + +} // anonymous namespace + +namespace Glib +{ + +ThreadPool::ThreadPool(int max_threads, bool exclusive) +: gobject_(nullptr), slot_list_(new SlotList()) +{ + GError* error = nullptr; + + gobject_ = g_thread_pool_new(&call_thread_entry_slot, slot_list_, max_threads, exclusive, &error); + + if (error) + { + delete slot_list_; + slot_list_ = nullptr; + Glib::Error::throw_exception(error); + } +} + +ThreadPool::~ThreadPool() noexcept +{ + if (gobject_) + g_thread_pool_free(gobject_, 1, 1); + + if (slot_list_) + { + slot_list_->lock_and_unlock(); + delete slot_list_; + } +} + +void +ThreadPool::push(const sigc::slot& slot) +{ + sigc::slot* const slot_ptr = slot_list_->push(slot); + + GError* error = nullptr; + g_thread_pool_push(gobject_, slot_ptr, &error); + + if (error) + { + slot_list_->pop(slot_ptr); + Glib::Error::throw_exception(error); + } +} + +void +ThreadPool::set_max_threads(int max_threads) +{ + GError* error = nullptr; + g_thread_pool_set_max_threads(gobject_, max_threads, &error); + + if (error) + Glib::Error::throw_exception(error); +} + +int +ThreadPool::get_max_threads() const +{ + return g_thread_pool_get_max_threads(gobject_); +} + +unsigned int +ThreadPool::get_num_threads() const +{ + return g_thread_pool_get_num_threads(gobject_); +} + +unsigned int +ThreadPool::unprocessed() const +{ + return g_thread_pool_unprocessed(gobject_); +} + +bool +ThreadPool::get_exclusive() const +{ + g_return_val_if_fail(gobject_ != nullptr, false); + + return gobject_->exclusive; +} + +void +ThreadPool::shutdown(bool immediately) +{ + if (gobject_) + { + g_thread_pool_free(gobject_, immediately, 1); + gobject_ = nullptr; + } + + if (slot_list_) + { + slot_list_->lock_and_unlock(); + delete slot_list_; + slot_list_ = nullptr; + } +} + +// static +void +ThreadPool::set_max_unused_threads(int max_threads) +{ + g_thread_pool_set_max_unused_threads(max_threads); +} + +// static +int +ThreadPool::get_max_unused_threads() +{ + return g_thread_pool_get_max_unused_threads(); +} + +// static +unsigned int +ThreadPool::get_num_unused_threads() +{ + return g_thread_pool_get_num_unused_threads(); +} + +// static +void +ThreadPool::stop_unused_threads() +{ + g_thread_pool_stop_unused_threads(); +} + +} // namespace Glib + +#endif // GLIBMM_DISABLE_DEPRECATED diff --git a/glib/glibmm/threadpool.h b/glib/glibmm/threadpool.h new file mode 100644 index 0000000..684fcbc --- /dev/null +++ b/glib/glibmm/threadpool.h @@ -0,0 +1,199 @@ +#ifndef _GLIBMM_THREADPOOL_H +#define _GLIBMM_THREADPOOL_H + +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include + +#ifndef GLIBMM_DISABLE_DEPRECATED + +#include + +extern "C" { +using GThreadPool = struct _GThreadPool; +} + +namespace Glib +{ + +/** @defgroup ThreadPools Thread Pools + * Pools of threads to execute work concurrently. + * + * @deprecated This is deprecated in favor of the standard C++ concurrency API in C++11 and C++14. + * + * @{ + */ + +// TODO: Is std::async() an appropriate replacement to mention for this deprecated API? + +/** A pool of threads to execute work concurrently. + * + * @deprecated This is deprecated in favor of the standard C++ concurrency API in C++11 and C++14. + */ +class ThreadPool +{ +public: + /** Constructs a new thread pool. + * Whenever you call ThreadPool::push(), either a new thread is created or an + * unused one is reused. At most @a max_threads threads are running + * concurrently for this thread pool. @a max_threads = -1 allows + * unlimited threads to be created for this thread pool. + * + * The parameter @a exclusive determines, whether the thread pool owns all + * threads exclusive or whether the threads are shared globally. If @a + * exclusive is true, @a max_threads threads are started immediately + * and they will run exclusively for this thread pool until it is destroyed + * by ~ThreadPool(). If @a exclusive is false, threads are created + * when needed and shared between all non-exclusive thread pools. This + * implies that @a max_threads may not be -1 for exclusive thread pools. + * + * @param max_threads The maximal number of threads to execute concurrently + * in the new thread pool, -1 means no limit. + * @param exclusive Should this thread pool be exclusive? + * @throw Glib::ThreadError An error can only occur when @a exclusive is + * set to true and not all @a max_threads threads could be created. + */ + explicit ThreadPool(int max_threads = -1, bool exclusive = false); + virtual ~ThreadPool() noexcept; + + // See http://bugzilla.gnome.org/show_bug.cgi?id=512348 about the sigc::trackable issue. + // TODO: At the next ABI break, consider changing const sigc::slot& slot + // to const std::function& func, if it can be assumed that all supported + // compilers understand the C++11 template class std::function<>. + /** Inserts @a slot into the list of tasks to be executed by the pool. + * When the number of currently running threads is lower than the maximal + * allowed number of threads, a new thread is started (or reused). Otherwise + * @a slot stays in the queue until a thread in this pool finishes its + * previous task and processes @a slot. + * + * Because sigc::trackable is not thread-safe, if the slot represents a + * non-static class method and is created by sigc::mem_fun(), the class concerned + * should not derive from sigc::trackable. You can use, say, boost::bind() or, + * in C++11, std::bind() or a C++11 lambda expression instead of sigc::mem_fun(). + * + * @param slot A new task for the thread pool. + * @throw Glib::ThreadError An error can only occur when a new thread + * couldn't be created. In that case @a slot is simply appended to the + * queue of work to do. + */ + void push(const sigc::slot& slot); + + /** Sets the maximal allowed number of threads for the pool. + * A value of -1 means that the maximal number of threads is unlimited. + * Setting @a max_threads to 0 means stopping all work for pool. It is + * effectively frozen until @a max_threads is set to a non-zero value again. + * + * A thread is never terminated while it is still running. Instead the + * maximal number of threads only has effect for the allocation of new + * threads in ThreadPool::push(). A new thread is allocated whenever the + * number of currently running threads in the pool is smaller than the + * maximal number. + * + * @param max_threads A new maximal number of threads for the pool. + * @throw Glib::ThreadError An error can only occur when a new thread + * couldn't be created. + */ + void set_max_threads(int max_threads); + + /** Returns the maximal number of threads for the pool. + * @return The maximal number of threads. + */ + int get_max_threads() const; + + /** Returns the number of threads currently running in the pool. + * @return The number of threads currently running. + */ + unsigned int get_num_threads() const; + + /** Returns the number of tasks still unprocessed in the pool. + * @return The number of unprocessed tasks. + */ + unsigned int unprocessed() const; + + /** Returns whether all threads are exclusive to this pool. + * @return Whether all threads are exclusive to this pool. + */ + bool get_exclusive() const; + + /** Frees all resources allocated for the pool. + * If @a immediately is true, no new task is processed. Otherwise the + * pool is not freed before the last task is processed. Note however, that no + * thread of this pool is interrupted while processing a task. Instead at least + * all still running threads can finish their tasks before the pool is freed. + * + * This method does not return before all tasks to be processed (dependent on + * @a immediately, whether all or only the currently running) are ready. + * After calling shutdown() the pool must not be used anymore. + * + * @param immediately Should the pool shut down immediately? + */ + void shutdown(bool immediately = false); + + /** Sets the maximal number of unused threads to @a max_threads. + * If @a max_threads is -1, no limit is imposed on the number of unused threads. + * @param max_threads Maximal number of unused threads. + */ + static void set_max_unused_threads(int max_threads); + + /** Returns the maximal allowed number of unused threads. + * @return The maximal number of unused threads. + */ + static int get_max_unused_threads(); + + /** Returns the number of currently unused threads. + * @return The number of currently unused threads. + */ + static unsigned int get_num_unused_threads(); + + /** Stops all currently unused threads. + * This does not change the maximal number of unused threads. This function can + * be used to regularly stop all unused threads e.g. from Glib::signal_timeout(). + */ + static void stop_unused_threads(); + + GThreadPool* gobj() { return gobject_; } + const GThreadPool* gobj() const { return gobject_; } + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + class SlotList; +#endif + +private: + GThreadPool* gobject_; + SlotList* slot_list_; + + ThreadPool(const ThreadPool&); + ThreadPool& operator=(const ThreadPool&); +}; + +/** @} group ThreadPools */ + +/***************************************************************************/ +/* inline implementation */ +/***************************************************************************/ + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +/**** Glib::Private ********************************************************/ + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +} // namespace Glib + +#endif // GLIBMM_DISABLE_DEPRECATED + +#endif /* _GLIBMM_THREADPOOL_H */ diff --git a/glib/glibmm/ustring.cc b/glib/glibmm/ustring.cc index 976289f..abd1b58 100644 --- a/glib/glibmm/ustring.cc +++ b/glib/glibmm/ustring.cc @@ -1218,12 +1218,6 @@ ustring::validate(ustring::const_iterator& first_invalid) const return (is_valid != 0); } -ustring -ustring::make_valid() const -{ - return ustring(g_utf8_make_valid(string_.data(), string_.size())); -} - bool ustring::is_ascii() const { @@ -1288,13 +1282,13 @@ ustring::casefold_collate_key() const // static ustring -ustring::compose_private(const Glib::ustring& fmt, std::initializer_list const ilist) +ustring::compose_argv(const Glib::ustring& fmt, int argc, const ustring* const* argv) { std::string::size_type result_size = fmt.raw().size(); // Guesstimate the final string size. - for (auto const it: ilist) - result_size += it->raw().size(); + for (int i = 0; i < argc; ++i) + result_size += argv[i]->raw().size(); std::string result; result.reserve(result_size); @@ -1312,12 +1306,11 @@ ustring::compose_private(const Glib::ustring& fmt, std::initializer_list= 0 && index < size) + if (index >= 0 && index < argc) { result.append(start, stop - start); - result += (*(ilist.begin() + index))->raw(); + result += argv[index]->raw(); start = stop + 2; } else @@ -1371,7 +1364,7 @@ ustring::FormatStream::to_string() const #ifdef GLIBMM_HAVE_WIDE_STREAM const std::wstring str = stream_.str(); -#if defined(__STDC_ISO_10646__) && SIZEOF_WCHAR_T == 4 +#if (defined(__STDC_ISO_10646__) || defined(_LIBCPP_VERSION)) && SIZEOF_WCHAR_T == 4 // Avoid going through iconv if wchar_t always contains UCS-4. glong n_bytes = 0; const auto buf = make_unique_ptr_gfree(g_ucs4_to_utf8( @@ -1459,7 +1452,7 @@ operator>>(std::wistream& is, ustring& utf8_string) std::wstring wstr; is >> wstr; -#if defined(__STDC_ISO_10646__) && SIZEOF_WCHAR_T == 4 +#if (defined(__STDC_ISO_10646__) || defined(_LIBCPP_VERSION)) && SIZEOF_WCHAR_T == 4 // Avoid going through iconv if wchar_t always contains UCS-4. glong n_bytes = 0; const auto buf = make_unique_ptr_gfree(g_ucs4_to_utf8( @@ -1490,7 +1483,7 @@ operator<<(std::wostream& os, const ustring& utf8_string) { GError* error = nullptr; -#if defined(__STDC_ISO_10646__) && SIZEOF_WCHAR_T == 4 +#if (defined(__STDC_ISO_10646__) || defined(_LIBCPP_VERSION)) && SIZEOF_WCHAR_T == 4 // Avoid going through iconv if wchar_t always contains UCS-4. const auto buf = make_unique_ptr_gfree( g_utf8_to_ucs4(utf8_string.raw().data(), utf8_string.raw().size(), nullptr, nullptr, &error)); diff --git a/glib/glibmm/ustring.h b/glib/glibmm/ustring.h index 0b2a279..532a78f 100644 --- a/glib/glibmm/ustring.h +++ b/glib/glibmm/ustring.h @@ -21,12 +21,13 @@ #include #include -#include // for std::size_t and optionally std::ptrdiff_t -#include #include #include #include #include +#ifndef GLIBMM_HAVE_STD_ITERATOR_TRAITS +#include /* for std::ptrdiff_t */ +#endif namespace Glib { @@ -182,9 +183,7 @@ gunichar get_unichar_from_std_iterator(std::string::const_iterator pos) G_GNUC_P * If you're using std::ostringstream to build strings for display in the * user interface, you must convert the result back to UTF-8 as shown below: * @code - * std::locale::global(std::locale("")); // Set the global locale to the user's preferred locale. - * // Usually unnecessary here, because Glib::init() - * // does it for you. + * std::locale::global(std::locale("")); // set the global locale to the user's preferred locale * std::ostringstream output; * output << percentage << " % done"; * label->set_text(Glib::locale_to_utf8(output.str())); @@ -594,12 +593,6 @@ public: /*! Check whether the string is valid UTF-8. */ bool validate(const_iterator& first_invalid) const; - /*! Return a copy that is a valid UTF-8 string replacing invalid bytes in the - * original with Unicode replacement character (U+FFFD). - * If the string is valid - return it's copy. - */ - ustring make_valid() const; - /*! Check whether the string is plain 7-bit ASCII. @par * Unlike any other ustring method, is_ascii() is safe to use on invalid * UTF-8 strings. If the string isn't valid UTF-8, it cannot be valid @@ -609,7 +602,7 @@ public: bool is_ascii() const; /*! "Normalize" the %Unicode character representation of the string. */ - ustring normalize(NormalizeMode mode = NormalizeMode::DEFAULT_COMPOSE) const; + ustring normalize(NormalizeMode mode = NORMALIZE_DEFAULT_COMPOSE) const; //! @} //! @name Character case conversion. @@ -645,75 +638,170 @@ public: /* Returns fmt as is, but checks for invalid references in the format string. * @newin{2,18} */ + template static inline ustring compose(const ustring& fmt); /*! Substitute placeholders in a format string with the referenced arguments. - * - * The template string uses a similar format to Qt’s QString class, in that - * %1, %2, and so on to %9 are used as placeholders - * to be substituted with the string representation of the @a args 1–9, while - * %% inserts a literal % in the output. Placeholders do not - * have to appear in the same order as their corresponding function arguments. - * + * The template string should be in qt-format, that is + * "%1", "%2", ..., "%9" are used as placeholders + * and "%%" denotes a literal "%". Substitutions may be + * reordered. * @par Example: * @code * using Glib::ustring; * const int percentage = 50; * const ustring text = ustring::compose("%1%% done", percentage); * @endcode - * - * @param fmt The template string, in the format described above. - * @param args 1 to 9 arguments to substitute for %1 to %9 - * respectively. - * + * @param fmt A template string in qt-format. + * @param a1 The argument to substitute for "%1". * @return The substituted message string. - * * @throw Glib::ConvertError * - * @newin{2,56} + * @newin{2,16} */ - template - static inline ustring compose(const ustring& fmt, const Ts&... args); + template + static inline ustring compose(const ustring& fmt, const T1& a1); - /*! Format the argument(s) to a string representation. - * + /* See the documentation for compose(const ustring& fmt, const T1& a1). + * @newin{2,16} + */ + template + static inline ustring compose(const ustring& fmt, const T1& a1, const T2& a2); + + /* See the documentation for compose(const ustring& fmt, const T1& a1). + * @newin{2,16} + */ + template + static inline ustring compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3); + + /* See the documentation for compose(const ustring& fmt, const T1& a1). + * @newin{2,16} + */ + template + static inline ustring compose( + const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, const T4& a4); + + /* See the documentation for compose(const ustring& fmt, const T1& a1). + * @newin{2,16} + */ + template + static inline ustring compose( + const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5); + + /* See the documentation for compose(const ustring& fmt, const T1& a1). + * @newin{2,16} + */ + template + static inline ustring compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, + const T4& a4, const T5& a5, const T6& a6); + + /* See the documentation for compose(const ustring& fmt, const T1& a1). + * @newin{2,16} + */ + template + static inline ustring compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, + const T4& a4, const T5& a5, const T6& a6, const T7& a7); + + /* See the documentation for compose(const ustring& fmt, const T1& a1). + * @newin{2,16} + */ + template + static inline ustring compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, + const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8); + + /* See the documentation for compose(const ustring& fmt, const T1& a1). + * @newin{2,16} + */ + template + static inline ustring compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, + const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9); + + /*! Format the argument to its string representation. * Applies the arguments in order to an std::wostringstream and returns the * resulting string. I/O manipulators may also be used as arguments. This * greatly simplifies the common task of converting a number to a string, as * demonstrated by the example below. The format() methods can also be used * in conjunction with compose() to facilitate localization of user-visible * messages. - * * @code * using Glib::ustring; * double value = 22.0 / 7.0; * ustring text = ustring::format(std::fixed, std::setprecision(2), value); * @endcode - * * @note The use of a wide character stream in the implementation of format() * is almost completely transparent. However, one of the instances where the * use of wide streams becomes visible is when the std::setfill() stream * manipulator is used. In order for std::setfill() to work the argument * must be of type wchar_t. This can be achieved by using the * L prefix with a character literal, as shown in the example. - * * @code * using Glib::ustring; * // Insert leading zeroes to fill in at least six digits * ustring text = ustring::format(std::setfill(L'0'), std::setw(6), 123); * @endcode * - * @param args One or more streamable values or I/O manipulators. - * + * @param a1 A streamable value or an I/O manipulator. * @return The string representation of the argument stream. - * * @throw Glib::ConvertError * - * @newin{2,56} + * @newin{2,16} + */ + template + static inline ustring format(const T1& a1); + + /* See the documentation for format(const T1& a1). + * + * @newin{2,16} + */ + template + static inline ustring format(const T1& a1, const T2& a2); + + /* See the documentation for format(const T1& a1). + * + * @newin{2,16} + */ + template + static inline ustring format(const T1& a1, const T2& a2, const T3& a3); + + /* See the documentation for format(const T1& a1). + * + * @newin{2,16} + */ + template + static inline ustring format(const T1& a1, const T2& a2, const T3& a3, const T4& a4); + + /* See the documentation for format(const T1& a1). + * + * @newin{2,16} + */ + template + static inline ustring format( + const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5); + + /* See the documentation for format(const T1& a1). + * + * @newin{2,16} */ - template - static inline ustring format(const Ts&... args); + template + static inline ustring format( + const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6); + /* See the documentation for format(const T1& a1). + * + * @newin{2,16} + */ + template + static inline ustring format(const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, + const T6& a6, const T7& a7); + + /* See the documentation for format(const T1& a1). + * + * @newin{2,16} + */ + template + static inline ustring format(const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, + const T6& a6, const T7& a7, const T8& a8); //! @} private: @@ -735,16 +823,9 @@ private: template class Stringify; - - static ustring compose_private(const ustring& fmt, std::initializer_list ilist); - class FormatStream; - template - static inline void format_private(FormatStream& buf, const T& arg); - - template - static inline void format_private(FormatStream& buf, const T1& a1, const Ts&... args); + static ustring compose_argv(const ustring& fmt, int argc, const ustring* const* argv); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -1059,30 +1140,114 @@ ustring::raw() const return string_; } -template +template +inline // static + ustring + ustring::format(const T1& a1) +{ + ustring::FormatStream buf; + buf.stream(a1); + return buf.to_string(); +} + +template inline // static - void - ustring::format_private(FormatStream& buf, const T& arg) + ustring + ustring::format(const T1& a1, const T2& a2) { - buf.stream(arg); + ustring::FormatStream buf; + buf.stream(a1); + buf.stream(a2); + return buf.to_string(); } -template +template inline // static - void - ustring::format_private(FormatStream& buf, const T1& a1, const Ts&... args) + ustring + ustring::format(const T1& a1, const T2& a2, const T3& a3) { + ustring::FormatStream buf; buf.stream(a1); - return format_private(buf, args...); + buf.stream(a2); + buf.stream(a3); + return buf.to_string(); } -template +template inline // static ustring - ustring::format(const Ts&... args) + ustring::format(const T1& a1, const T2& a2, const T3& a3, const T4& a4) { ustring::FormatStream buf; - format_private(buf, args...); + buf.stream(a1); + buf.stream(a2); + buf.stream(a3); + buf.stream(a4); + return buf.to_string(); +} + +template +inline // static + ustring + ustring::format(const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5) +{ + ustring::FormatStream buf; + buf.stream(a1); + buf.stream(a2); + buf.stream(a3); + buf.stream(a4); + buf.stream(a5); + return buf.to_string(); +} + +template +inline // static + ustring + ustring::format( + const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6) +{ + ustring::FormatStream buf; + buf.stream(a1); + buf.stream(a2); + buf.stream(a3); + buf.stream(a4); + buf.stream(a5); + buf.stream(a6); + return buf.to_string(); +} + +template +inline // static + ustring + ustring::format(const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, + const T6& a6, const T7& a7) +{ + ustring::FormatStream buf; + buf.stream(a1); + buf.stream(a2); + buf.stream(a3); + buf.stream(a4); + buf.stream(a5); + buf.stream(a6); + buf.stream(a7); + return buf.to_string(); +} + +template +inline // static + ustring + ustring::format(const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, + const T6& a6, const T7& a7, const T8& a8) +{ + ustring::FormatStream buf; + buf.stream(a1); + buf.stream(a2); + buf.stream(a3); + buf.stream(a4); + buf.stream(a5); + buf.stream(a6); + buf.stream(a7); + buf.stream(a8); return buf.to_string(); } @@ -1182,22 +1347,155 @@ public: inline const ustring* ptr() const { return &string_; } }; +template inline // static ustring ustring::compose(const ustring& fmt) { - return ustring::compose_private(fmt, {}); + return ustring::compose_argv(fmt, 0, nullptr); } -template +template inline // static ustring - ustring::compose(const ustring& fmt, const Ts&... args) + ustring::compose(const ustring& fmt, const T1& a1) { - static_assert(sizeof...(Ts) <= 9, - "ustring::compose only supports up to 9 placeholders."); + const ustring::Stringify s1(a1); - return compose_private(fmt, { Stringify(args).ptr()... }); + const ustring* const argv[] = { s1.ptr() }; + return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv); +} + +template +inline // static + ustring + ustring::compose(const ustring& fmt, const T1& a1, const T2& a2) +{ + const ustring::Stringify s1(a1); + const ustring::Stringify s2(a2); + + const ustring* const argv[] = { s1.ptr(), s2.ptr() }; + return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv); +} + +template +inline // static + ustring + ustring::compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3) +{ + const ustring::Stringify s1(a1); + const ustring::Stringify s2(a2); + const ustring::Stringify s3(a3); + + const ustring* const argv[] = { s1.ptr(), s2.ptr(), s3.ptr() }; + return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv); +} + +template +inline // static + ustring + ustring::compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, const T4& a4) +{ + const ustring::Stringify s1(a1); + const ustring::Stringify s2(a2); + const ustring::Stringify s3(a3); + const ustring::Stringify s4(a4); + + const ustring* const argv[] = { s1.ptr(), s2.ptr(), s3.ptr(), s4.ptr() }; + return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv); +} + +template +inline // static + ustring + ustring::compose( + const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5) +{ + const ustring::Stringify s1(a1); + const ustring::Stringify s2(a2); + const ustring::Stringify s3(a3); + const ustring::Stringify s4(a4); + const ustring::Stringify s5(a5); + + const ustring* const argv[] = { s1.ptr(), s2.ptr(), s3.ptr(), s4.ptr(), s5.ptr() }; + return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv); +} + +template +inline // static + ustring + ustring::compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, const T4& a4, + const T5& a5, const T6& a6) +{ + const ustring::Stringify s1(a1); + const ustring::Stringify s2(a2); + const ustring::Stringify s3(a3); + const ustring::Stringify s4(a4); + const ustring::Stringify s5(a5); + const ustring::Stringify s6(a6); + + const ustring* const argv[] = { s1.ptr(), s2.ptr(), s3.ptr(), s4.ptr(), s5.ptr(), s6.ptr() }; + return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv); +} + +template +inline // static + ustring + ustring::compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, const T4& a4, + const T5& a5, const T6& a6, const T7& a7) +{ + const ustring::Stringify s1(a1); + const ustring::Stringify s2(a2); + const ustring::Stringify s3(a3); + const ustring::Stringify s4(a4); + const ustring::Stringify s5(a5); + const ustring::Stringify s6(a6); + const ustring::Stringify s7(a7); + + const ustring* const argv[] = { s1.ptr(), s2.ptr(), s3.ptr(), s4.ptr(), s5.ptr(), s6.ptr(), + s7.ptr() }; + return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv); +} + +template +inline // static + ustring + ustring::compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, const T4& a4, + const T5& a5, const T6& a6, const T7& a7, const T8& a8) +{ + const ustring::Stringify s1(a1); + const ustring::Stringify s2(a2); + const ustring::Stringify s3(a3); + const ustring::Stringify s4(a4); + const ustring::Stringify s5(a5); + const ustring::Stringify s6(a6); + const ustring::Stringify s7(a7); + const ustring::Stringify s8(a8); + + const ustring* const argv[] = { s1.ptr(), s2.ptr(), s3.ptr(), s4.ptr(), s5.ptr(), s6.ptr(), + s7.ptr(), s8.ptr() }; + return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv); +} + +template +inline // static + ustring + ustring::compose(const ustring& fmt, const T1& a1, const T2& a2, const T3& a3, const T4& a4, + const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9) +{ + const ustring::Stringify s1(a1); + const ustring::Stringify s2(a2); + const ustring::Stringify s3(a3); + const ustring::Stringify s4(a4); + const ustring::Stringify s5(a5); + const ustring::Stringify s6(a6); + const ustring::Stringify s7(a7); + const ustring::Stringify s8(a8); + const ustring::Stringify s9(a9); + + const ustring* const argv[] = { s1.ptr(), s2.ptr(), s3.ptr(), s4.ptr(), s5.ptr(), s6.ptr(), + s7.ptr(), s8.ptr(), s9.ptr() }; + return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv); } #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff --git a/glib/glibmm/utility.h b/glib/glibmm/utility.h index 9d65d65..0f1e9ef 100644 --- a/glib/glibmm/utility.h +++ b/glib/glibmm/utility.h @@ -24,11 +24,65 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS +#ifndef GLIBMM_DISABLE_DEPRECATED +/* Occasionally, a struct variable has to be initialized after its definition, + * i.e. when using structs as class member data. For convenience, the macro + * GLIBMM_INITIALIZE_STRUCT(Var, Type) is provided. It even avoids creating + * a temporary if the compiler is GCC. + * + * @deprecated Use e.g. std::memset() instead. + * It's not used any more in the code generated by _CLASS_BOXEDTYPE_STATIC. + * It generates compiler warnings if __STRICT_ANSI__ is defined. + */ +#if ((__GNUC__ >= 3) || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)) && !defined(__STRICT_ANSI__) + +#define GLIBMM_INITIALIZE_STRUCT(Var, Type) __builtin_memset(&(Var), 0, sizeof(Type)) + +#else + +// TODO: This causes warnings like this: +//"missing initializer for member" +#define GLIBMM_INITIALIZE_STRUCT(Var, Type) \ + G_STMT_START \ + { \ + Type const temp_initializer__ = { \ + 0, \ + }; \ + (Var) = temp_initializer__; \ + } \ + G_STMT_END + +#endif +#endif // GLIBMM_DISABLE_DEPRECATED + namespace Glib { // These are used by gmmproc-generated type conversions: +#ifndef GLIBMM_DISABLE_DEPRECATED +/** Helper to deal with memory allocated + * by GLib functions in an exception-safe manner. + * + * @deprecated Use make_unique_ptr_gfree() instead. + */ +template +class ScopedPtr +{ +private: + T* ptr_; + ScopedPtr(const ScopedPtr&); + ScopedPtr& operator=(const ScopedPtr&); + +public: + ScopedPtr() : ptr_(nullptr) {} + explicit ScopedPtr(T* ptr) : ptr_(ptr) {} + ~ScopedPtr() noexcept { g_free(ptr_); } + T* get() const { return ptr_; } + T** addr() { return &ptr_; } +}; +#endif // GLIBMM_DISABLE_DEPRECATED + /** Helper to deal with memory allocated * by GLib functions in an exception-safe manner. * @@ -41,6 +95,17 @@ make_unique_ptr_gfree(T* p) return std::unique_ptr(p, &g_free); } +// TODO: Deprecate this? We don't use it ourselves. +/** Removes the const nature of a ptr + * + */ +template +inline T* +unconst(const T* t) +{ + return const_cast(t); +} + // Convert const gchar* to ustring, while treating NULL as empty string. inline Glib::ustring convert_const_gchar_ptr_to_ustring(const char* str) @@ -93,6 +158,28 @@ destroy_notify_delete(void* data) delete static_cast(data); } +// Conversion between different types of function pointers with +// reinterpret_cast can make gcc8 print a warning. +// https://github.com/libsigcplusplus/libsigcplusplus/issues/1 +// https://github.com/libsigcplusplus/libsigcplusplus/issues/8 +/** Returns the supplied function pointer, cast to a pointer to another function type. + * + * When a single reinterpret_cast between function pointer types causes a + * compiler warning or error, this function may work. + * + * Qualify calls with namespace names: sigc::internal::function_pointer_cast<>(). + * If you don't, indirect calls from another library that also contains a + * function_pointer_cast<>() (perhaps glibmm), can be ambiguous due to ADL + * (argument-dependent lookup). + */ +template +inline T_out function_pointer_cast(T_in in) +{ + // The double reinterpret_cast suppresses a warning from gcc8 with the + // -Wcast-function-type option. + return reinterpret_cast(reinterpret_cast(in)); +} + } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff --git a/glib/glibmm/value.cc b/glib/glibmm/value.cc index 34de309..3eece8f 100644 --- a/glib/glibmm/value.cc +++ b/glib/glibmm/value.cc @@ -134,7 +134,7 @@ Glib::RefPtr ValueBase_Object::get_object_copy() const { GObject* const data = static_cast(g_value_get_object(&gobject_)); - return Glib::make_refptr_for_instance(Glib::wrap_auto(data, true)); + return Glib::RefPtr(Glib::wrap_auto(data, true)); } GParamSpec* diff --git a/glib/glibmm/value.h b/glib/glibmm/value.h index c423029..fc8205c 100644 --- a/glib/glibmm/value.h +++ b/glib/glibmm/value.h @@ -139,6 +139,7 @@ protected: class ValueBase_Enum : public ValueBase { public: + using CType = gint; static GType value_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS @@ -159,6 +160,7 @@ protected: class ValueBase_Flags : public ValueBase { public: + using CType = guint; static GType value_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS @@ -179,6 +181,7 @@ protected: class ValueBase_String : public ValueBase { public: + using CType = const gchar*; static GType value_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS @@ -212,53 +215,31 @@ class Value_Boxed : public ValueBase_Boxed { public: using CppType = T; + using CType = typename T::BaseObjectType*; static GType value_type() { return T::get_type(); } void set(const CppType& data) { set_boxed(data.gobj()); } - CppType get() const { return CppType(static_cast(get_boxed())); } + CppType get() const { return CppType(static_cast(get_boxed())); } }; // More spec-compliant compilers (such as Tru64) need this to be near Glib::Object instead. #ifdef GLIBMM_CAN_USE_DYNAMIC_CAST_IN_UNUSED_TEMPLATE_WITHOUT_DEFINITION -namespace Traits { - -template -struct HasGetBaseType; - -template -struct HasGetBaseType { - template - struct Check; - - template - static std::true_type - Test(Check*); - - template - static std::false_type Test(...); - - static const bool value = decltype(Test(0))::value; - //using type = decltype(Test(0)); -}; - -} // namespace Traits - /** Partial specialization for RefPtr<> to Glib::Object. * @ingroup glibmmValue */ template -class Value, typename std::enable_if::value>::type> -: public ValueBase_Object +class Value> : public ValueBase_Object { public: using CppType = Glib::RefPtr; + using CType = typename T::BaseObjectType*; static GType value_type() { return T::get_base_type(); } - void set(const CppType& data) { set_object(const_cast*>(data.get())); } - CppType get() const { return std::dynamic_pointer_cast(get_object_copy()); } + void set(const CppType& data) { set_object(data.operator->()); } + CppType get() const { return Glib::RefPtr::cast_dynamic(get_object_copy()); } }; // The SUN Forte Compiler has a problem with this: @@ -267,19 +248,18 @@ public: /** Partial specialization for RefPtr<> to const Glib::Object. * @ingroup glibmmValue */ -/* template -class Value, typename std::enable_if::value>::type> : public ValueBase_Object +class Value> : public ValueBase_Object { public: using CppType = Glib::RefPtr; + using CType = typename T::BaseObjectType*; static GType value_type() { return T::get_base_type(); } - void set(const CppType& data) { set_object(const_cast(data.get())); } - CppType get() const { return std::dynamic_pointer_cast(get_object_copy()); } + void set(const CppType& data) { set_object(const_cast(data.operator->())); } + CppType get() const { return Glib::RefPtr::cast_dynamic(get_object_copy()); } }; -*/ #endif // GLIBMM_HAVE_DISAMBIGUOUS_CONST_TEMPLATE_SPECIALIZATIONS #endif // GLIBMM_CAN_USE_DYNAMIC_CAST_IN_UNUSED_TEMPLATE_WITHOUT_DEFINITION @@ -330,7 +310,7 @@ class Value_Enum : public ValueBase_Enum public: using CppType = T; - void set(CppType data) { set_enum(static_cast(data)); } + void set(CppType data) { set_enum(data); } CppType get() const { return CppType(get_enum()); } }; @@ -343,7 +323,7 @@ class Value_Flags : public ValueBase_Flags public: using CppType = T; - void set(CppType data) { set_flags(static_cast(data)); } + void set(CppType data) { set_flags(data); } CppType get() const { return CppType(get_flags()); } }; diff --git a/glib/glibmm/value_custom.h b/glib/glibmm/value_custom.h index 7c23a8d..d2ea01c 100644 --- a/glib/glibmm/value_custom.h +++ b/glib/glibmm/value_custom.h @@ -56,12 +56,12 @@ GType custom_pointer_type_register(const char* type_name); /** * @ingroup glibmmValue */ -template +template class Value_Pointer : public ValueBase_Object { public: - using T = std::remove_cv_t>; using CppType = PtrT; + using CType = void*; static inline GType value_type() G_GNUC_CONST; @@ -95,11 +95,12 @@ private: * cannot ensure that no exceptions will be thrown, consider using either * a normal pointer or a smart pointer to hold your objects indirectly. */ -template +template class Value : public ValueBase_Boxed { public: using CppType = T; + using CType = T*; static GType value_type() G_GNUC_CONST; @@ -119,8 +120,8 @@ private: * No attempt is made to manage the memory associated with the * pointer, you must take care of that yourself. */ -template -class Value : public Value_Pointer +template +class Value : public Value_Pointer { }; @@ -129,37 +130,37 @@ class Value : public Value_Pointer * No attempt is made to manage the memory associated with the * pointer, you must take care of that yourself. */ -template -class Value : public Value_Pointer +template +class Value : public Value_Pointer { }; #ifndef DOXYGEN_SHOULD_SKIP_THIS -/**** Glib::Value_Pointer *****************************************/ +/**** Glib::Value_Pointer *****************************************/ /** Implementation for Glib::Object pointers **/ // static -template +template inline GType -Value_Pointer::value_type_(Glib::Object*) +Value_Pointer::value_type_(Glib::Object*) { return T::get_base_type(); } -template +template inline void -Value_Pointer::set_(PtrT data, Glib::Object*) +Value_Pointer::set_(PtrT data, Glib::Object*) { set_object(const_cast(data)); } // More spec-compliant compilers (such as Tru64) need this to be near Glib::Object instead. #ifdef GLIBMM_CAN_USE_DYNAMIC_CAST_IN_UNUSED_TEMPLATE_WITHOUT_DEFINITION -template +template inline PtrT -Value_Pointer::get_(Glib::Object*) const +Value_Pointer::get_(Glib::Object*) const { return dynamic_cast(get_object()); } @@ -168,9 +169,9 @@ Value_Pointer::get_(Glib::Object*) const /** Implementation for custom pointers **/ // static -template +template GType -Value_Pointer::value_type_(void*) +Value_Pointer::value_type_(void*) { static GType custom_type = 0; @@ -180,16 +181,16 @@ Value_Pointer::value_type_(void*) return custom_type; } -template +template inline void -Value_Pointer::set_(PtrT data, void*) +Value_Pointer::set_(PtrT data, void*) { gobject_.data[0].v_pointer = const_cast(data); } -template +template inline PtrT -Value_Pointer::get_(void*) const +Value_Pointer::get_(void*) const { return static_cast(gobject_.data[0].v_pointer); } @@ -197,25 +198,25 @@ Value_Pointer::get_(void*) const /** Public forwarding interface **/ // static -template +template inline GType -Value_Pointer::value_type() +Value_Pointer::value_type() { // Dispatch to the specific value_type_() overload. - return Value_Pointer::value_type_(static_cast(nullptr)); + return Value_Pointer::value_type_(static_cast(nullptr)); } -template +template inline void -Value_Pointer::set(PtrT data) +Value_Pointer::set(PtrT data) { // Dispatch to the specific set_() overload. this->set_(data, static_cast(nullptr)); } -template +template inline PtrT -Value_Pointer::get() const +Value_Pointer::get() const { // Dispatch to the specific get_() overload. return this->get_(static_cast(nullptr)); @@ -224,29 +225,29 @@ Value_Pointer::get() const /**** Glib::Value *******************************************************/ // Static data, specific to each template instantiation. -template -GType Value::custom_type_ = 0; +template +GType Value::custom_type_ = 0; -template +template inline void -Value::set(const typename Value::CppType& data) +Value::set(const typename Value::CppType& data) { // Assume the value is already default-initialized. See value_init_func(). *static_cast(gobject_.data[0].v_pointer) = data; } -template -inline typename Value::CppType -Value::get() const +template +inline typename Value::CppType +Value::get() const { // Assume the pointer is not NULL. See value_init_func(). return *static_cast(gobject_.data[0].v_pointer); } // static -template +template GType -Value::value_type() +Value::value_type() { if (!custom_type_) { @@ -257,26 +258,26 @@ Value::value_type() } // static -template +template void -Value::value_init_func(GValue* value) +Value::value_init_func(GValue* value) { // Never store a NULL pointer (unless we're out of memory). value->data[0].v_pointer = new (std::nothrow) T(); } // static -template +template void -Value::value_free_func(GValue* value) +Value::value_free_func(GValue* value) { delete static_cast(value->data[0].v_pointer); } // static -template +template void -Value::value_copy_func(const GValue* src_value, GValue* dest_value) +Value::value_copy_func(const GValue* src_value, GValue* dest_value) { // Assume the source is not NULL. See value_init_func(). const T& source = *static_cast(src_value->data[0].v_pointer); diff --git a/glib/glibmm/weakref.h b/glib/glibmm/weakref.h new file mode 100644 index 0000000..f4226cf --- /dev/null +++ b/glib/glibmm/weakref.h @@ -0,0 +1,465 @@ +#ifndef _GLIBMM_WEAKREF_H +#define _GLIBMM_WEAKREF_H + +/* Copyright (C) 2015 The glibmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include +#include +#include // std::is_base_of<> +#include // std::swap<>, std::forward<> + +namespace Glib +{ + +/** WeakRef<> is a weak reference smartpointer. + * + * WeakRef can store a pointer to any class that is derived from Glib::ObjectBase, + * and whose reference() method is noexcept. + * In glibmm and gtkmm, that is anything derived from Glib::ObjectBase. + * + * Unlike a RefPtr, a WeakRef does not contribute to the reference counting of + * the underlying object. + * + * @newin{2,46} + */ +template +class WeakRef +{ + static_assert(std::is_base_of::value, + "Glib::WeakRef can be used only for classes derived from Glib::ObjectBase."); + +public: + /** Default constructor. + * + * Create an empty weak reference. + */ + inline WeakRef() noexcept; + + /// Copy constructor. + inline WeakRef(const WeakRef& src) noexcept; + + /// Move constructor. + inline WeakRef(WeakRef&& src) noexcept; + + /// Copy constructor from different, but castable type. + template + inline WeakRef(const WeakRef& src) noexcept; + + /// Move constructor from different, but castable type. + template + inline WeakRef(WeakRef&& src) noexcept; + + /** Constructor from a RefPtr of the same or a castable type. + * + * Create a weak reference from a RefPtr of the same or a castable type. + * If the RefPtr references nothing, an empty weak reference will be constructed. + */ + template + inline WeakRef(const RefPtr& src) noexcept; + + /// Destructor. + inline ~WeakRef() noexcept; + + /// Swap the contents of two WeakRef<>. + inline void swap(WeakRef& other) noexcept; + + /// Copy assignment operator. + inline WeakRef& operator=(const WeakRef& src) noexcept; + + /// Move assignment operator. + inline WeakRef& operator=(WeakRef&& src) noexcept; + + /// Copy assignment from different, but castable type. + template + inline WeakRef& operator=(const WeakRef& src) noexcept; + + /// Move assignment from different, but castable type. + template + inline WeakRef& operator=(WeakRef&& src) noexcept; + + /// Assignment from a RefPtr of the same or a castable type. + template + inline WeakRef& operator=(const RefPtr& src) noexcept; + + /** Test whether the WeakRef<> points to any underlying instance. + * + * Mimics usage of ordinary pointers: + * @code + * if (ptr) + * do_something(); + * @endcode + * + * In a multi-threaded program a true return value can become + * obsolete at any time, even before the caller has a chance to test it, + * because the underlying instance may lose its last reference in another + * thread. Use get() if this is not acceptable. + */ + inline explicit operator bool() const noexcept; + + /** Create a strong reference to the underlying object. + * + * This is a thread-safe way to acquire a strong reference to the underlying + * object. If the WeakRef is empty, the returned RefPtr will reference nothing. + */ + inline RefPtr get() const noexcept; + + /// Make this WeakRef empty. + inline void reset() noexcept; + + /** Dynamic cast to derived class. + * + * The WeakRef can't be cast with the usual notation so instead you can use + * @code + * ptr_derived = Glib::WeakRef::cast_dynamic(ptr_base); + * @endcode + */ + template + static inline WeakRef cast_dynamic(const WeakRef& src) noexcept; + + /** Static cast to derived class. + * + * The WeakRef can't be cast with the usual notation so instead you can use + * @code + * ptr_derived = Glib::WeakRef::cast_static(ptr_base); + * @endcode + */ + template + static inline WeakRef cast_static(const WeakRef& src) noexcept; + + /** Cast to non-const. + * + * The WeakRef can't be cast with the usual notation so instead you can use + * @code + * ptr_nonconst = Glib::WeakRef::cast_const(ptr_const); + * @endcode + */ + template + static inline WeakRef cast_const(const WeakRef& src) noexcept; + +private: + // Let all instantiations of WeakRef access private data. + template + friend class WeakRef; + + // If pCppObject != nullptr && gobject == nullptr, + // then the caller holds a strong reference. + void set(T_CppObject* pCppObject, GWeakRef* gobject) noexcept; + + // WeakRef owns *gobject_, but it does not own *pCppObject_. + // Invariant: (!pCppObject_ || gobject_), + // i.e. if pCppObject_ != nullptr then also gobject_ != nullptr. + T_CppObject* pCppObject_; + GWeakRef* gobject_; + + // Some methods would be simpler if gobject_ were a GWeakRef instead of + // a GWeakRef*, but then the move constructor and the move assignment + // operation would not be efficient. + +}; // end class WeakRef + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +template +WeakRef::WeakRef() noexcept : pCppObject_(nullptr), gobject_(nullptr) +{ +} + +template +WeakRef::WeakRef(const WeakRef& src) noexcept : pCppObject_(src.pCppObject_), + gobject_(nullptr) +{ + if (pCppObject_) + { + // We must own a strong reference to the underlying GObject while + // calling g_weak_ref_init(). + gpointer ptr = g_weak_ref_get(src.gobject_); + if (ptr) + { + gobject_ = new GWeakRef; + g_weak_ref_init(gobject_, pCppObject_->gobj()); + g_object_unref(ptr); + } + else + pCppObject_ = nullptr; + } +} + +template +WeakRef::WeakRef(WeakRef&& src) noexcept : pCppObject_(src.pCppObject_), + gobject_(src.gobject_) +{ + src.pCppObject_ = nullptr; + src.gobject_ = nullptr; +} + +// The templated ctor allows copy construction from any object that's +// castable. Thus, it does downcasts: +// base_ref = derived_ref +template +template +WeakRef::WeakRef(const WeakRef& src) noexcept + : pCppObject_(src.pCppObject_), + gobject_(nullptr) +{ + if (pCppObject_) + { + // We must own a strong reference to the underlying GObject while + // calling g_weak_ref_init(). + gpointer ptr = g_weak_ref_get(src.gobject_); + if (ptr) + { + gobject_ = new GWeakRef; + g_weak_ref_init(gobject_, pCppObject_->gobj()); + g_object_unref(ptr); + } + else + pCppObject_ = nullptr; + } +} + +// The templated ctor allows move construction from any object that's +// castable. Thus, it does downcasts: +// base_ref = std::move(derived_ref) +template +template +WeakRef::WeakRef(WeakRef&& src) noexcept : pCppObject_(src.pCppObject_), + gobject_(src.gobject_) +{ + src.pCppObject_ = nullptr; + src.gobject_ = nullptr; +} + +template +template +WeakRef::WeakRef(const RefPtr& src) noexcept + : pCppObject_(src.operator->()), + gobject_(nullptr) +{ + if (pCppObject_) + { + gobject_ = new GWeakRef; + g_weak_ref_init(gobject_, pCppObject_->gobj()); + } +} + +template +WeakRef::~WeakRef() noexcept +{ + if (gobject_) + { + g_weak_ref_clear(gobject_); + delete gobject_; + } +} + +template +void +WeakRef::swap(WeakRef& other) noexcept +{ + std::swap(pCppObject_, other.pCppObject_); + std::swap(gobject_, other.gobject_); +} + +template +WeakRef& +WeakRef::operator=(const WeakRef& src) noexcept +{ + set(src.pCppObject_, src.gobject_); + return *this; +} + +template +WeakRef& +WeakRef::operator=(WeakRef&& src) noexcept +{ + // See RefPtr for an explanation of the swap() technique to implement + // copy assignment and move assignment. + // This technique is inefficient for copy assignment of WeakRef, + // because it involves copy construction + destruction, i.e. in a typical + // case g_weak_ref_init() + g_weak_ref_clear(), when a g_weak_ref_set() + // would be enough. For move assignment, the swap technique is fine. + WeakRef temp(std::forward>(src)); + this->swap(temp); + return *this; +} + +template +template +WeakRef& +WeakRef::operator=(const WeakRef& src) noexcept +{ + set(src.pCppObject_, src.gobject_); + return *this; +} + +template +template +WeakRef& +WeakRef::operator=(WeakRef&& src) noexcept +{ + WeakRef temp(std::forward>(src)); + this->swap(temp); + return *this; +} + +template +template +WeakRef& +WeakRef::operator=(const RefPtr& src) noexcept +{ + T_CppObject* pCppObject = src.operator->(); + set(pCppObject, nullptr); + return *this; +} + +template +WeakRef::operator bool() const noexcept +{ + if (!pCppObject_) + return false; + + gpointer ptr = g_weak_ref_get(gobject_); + if (!ptr) + return false; + + g_object_unref(ptr); + return true; +} + +template +RefPtr +WeakRef::get() const noexcept +{ + RefPtr ret; + + if (!pCppObject_) + return ret; + + gpointer ptr = g_weak_ref_get(gobject_); + if (!ptr) + return ret; + + // A RefPtr constructed from pointer expects reference to be done externally. + pCppObject_->reference(); + ret = RefPtr(pCppObject_); + + g_object_unref(ptr); + + return ret; +} + +template +void +WeakRef::reset() noexcept +{ + set(nullptr, nullptr); +} + +template +template +WeakRef +WeakRef::cast_dynamic(const WeakRef& src) noexcept +{ + WeakRef ret; + + if (!src.pCppObject_) + return ret; + + gpointer ptr = g_weak_ref_get(src.gobject_); + if (!ptr) + return ret; + + // Don't call dynamic_cast<>() unless we know that the referenced object + // still exists. + T_CppObject* const pCppObject = dynamic_cast(src.pCppObject_); + ret.set(pCppObject, nullptr); + g_object_unref(ptr); + + return ret; +} + +template +template +WeakRef +WeakRef::cast_static(const WeakRef& src) noexcept +{ + T_CppObject* const pCppObject = static_cast(src.pCppObject_); + + WeakRef ret; + ret.set(pCppObject, src.gobject_); + return ret; +} + +template +template +WeakRef +WeakRef::cast_const(const WeakRef& src) noexcept +{ + T_CppObject* const pCppObject = const_cast(src.pCppObject_); + + WeakRef ret; + ret.set(pCppObject, src.gobject_); + return ret; +} + +template +void +WeakRef::set(T_CppObject* pCppObject, GWeakRef* gobject) noexcept +{ + // We must own a strong reference to the underlying GObject while + // calling g_weak_ref_init() or g_weak_ref_set(). + // If pCppObject != nullptr && gobject == nullptr, + // then the caller holds a strong reference. + + // An aim with this moderately complicated method is to keep the same + // GWeakRef, calling g_weak_ref_set() when possible, instead of using swap(), + // which implies creating a new WeakRef, swapping with *this, and deleting + // the new WeakRef. + + gpointer ptr = nullptr; + if (pCppObject && gobject) + ptr = g_weak_ref_get(gobject); + + pCppObject_ = (ptr || !gobject) ? pCppObject : nullptr; + if (pCppObject_ && !gobject_) + { + gobject_ = new GWeakRef; + g_weak_ref_init(gobject_, pCppObject_->gobj()); + } + else if (gobject_) + g_weak_ref_set(gobject_, pCppObject_ ? pCppObject_->gobj() : nullptr); + + if (ptr) + g_object_unref(ptr); +} + +#endif // DOXYGEN_SHOULD_SKIP_THIS + +/** Swap the contents of two WeakRef<>. + * @relates Glib::WeakRef + */ +template +inline void +swap(WeakRef& lhs, WeakRef& rhs) noexcept +{ + lhs.swap(rhs); +} + +} // namespace Glib + +#endif // _GLIBMM_WEAKREF_H diff --git a/glib/glibmm/wrap.cc b/glib/glibmm/wrap.cc index 08f0309..3e78c3b 100644 --- a/glib/glibmm/wrap.cc +++ b/glib/glibmm/wrap.cc @@ -212,7 +212,7 @@ wrap_auto(GObject* object, bool take_copy) Glib::RefPtr wrap(GObject* object, bool take_copy /* = false */) { - return Glib::make_refptr_for_instance(dynamic_cast(wrap_auto(object, take_copy))); + return Glib::RefPtr(dynamic_cast(wrap_auto(object, take_copy))); } } /* namespace Glib */ diff --git a/glib/src/balancedtree.hg b/glib/src/balancedtree.hg index 31be6e4..ce69ace 100644 --- a/glib/src/balancedtree.hg +++ b/glib/src/balancedtree.hg @@ -19,8 +19,7 @@ _DEFS(glibmm,glib) #include #include #include -#include -#include +#include #include namespace Glib @@ -57,8 +56,8 @@ class BalancedTree { _CLASS_GENERIC(BalancedTree, GTree) public: - using TraverseFunc = sigc::slot; - using CompareFunc = sigc::slot; + using TraverseFunc = sigc::slot; + using CompareFunc = sigc::slot; protected: BalancedTree() : @@ -67,7 +66,7 @@ protected: gobject_ = g_tree_new_full(on_compare_tree, &key_compare_slot, on_destroy_key, on_destroy_value); } - explicit BalancedTree(const CompareFunc &key_compare_slot_) : + BalancedTree(const CompareFunc &key_compare_slot_) : key_compare_slot(key_compare_slot_) { gobject_ = g_tree_new_full(on_compare_tree, &key_compare_slot, on_destroy_key, on_destroy_value); @@ -78,12 +77,12 @@ protected: public: static Glib::RefPtr< BalancedTree > create() { - return Glib::make_refptr_for_instance< BalancedTree >(new BalancedTree()); + return Glib::RefPtr< BalancedTree >(new BalancedTree()); } static Glib::RefPtr< BalancedTree > create(const CompareFunc &key_compare_slot) { - return Glib::make_refptr_for_instance< BalancedTree >(new BalancedTree(key_compare_slot)); + return Glib::RefPtr< BalancedTree >(new BalancedTree(key_compare_slot)); } ~BalancedTree() @@ -235,8 +234,8 @@ public: */ V* search(const CompareFunc &search_func, const K& key) { - sigc::slot real_slot = sigc::ptr_fun(on_compare_key); - sigc::slot bound_slot = sigc::bind(real_slot, search_func, key); + sigc::slot real_slot = sigc::ptr_fun(on_compare_key); + sigc::slot bound_slot = sigc::bind(real_slot, search_func, key); gpointer value = g_tree_search(gobj(), c_callback_search, reinterpret_cast(&bound_slot)); return reinterpret_cast(value); @@ -278,7 +277,7 @@ private: /// Wrapper for invoking GCompareFunc. static gint c_callback_search(gconstpointer a, gconstpointer b) { - const auto slot = reinterpret_cast *>(b); + const sigc::slot* slot = reinterpret_cast *>(b); return (*slot)(*reinterpret_cast(a)); } diff --git a/glib/src/binding.ccg b/glib/src/binding.ccg index dfad8a6..576b64f 100644 --- a/glib/src/binding.ccg +++ b/glib/src/binding.ccg @@ -14,8 +14,6 @@ * License along with this library. If not, see . */ -using Flags = Glib::Binding::Flags; - #include #include @@ -82,7 +80,7 @@ namespace Glib // static Glib::RefPtr Binding::bind_property_value(const PropertyProxy_Base& source_property, - const PropertyProxy_Base& target_property, Flags flags, const SlotTransform& transform_to, + const PropertyProxy_Base& target_property, BindingFlags flags, const SlotTransform& transform_to, const SlotTransform& transform_from) { GBinding* binding = nullptr; @@ -114,7 +112,7 @@ Binding::bind_property_value(const PropertyProxy_Base& source_property, // either the source object or the target object is finalized. // The GBinding object must not be destroyed while there are RefPtrs around. g_object_ref(binding); - return Glib::make_refptr_for_instance(new Binding(binding)); + return Glib::RefPtr(new Binding(binding)); } void diff --git a/glib/src/binding.hg b/glib/src/binding.hg index c99c8ca..b30cba1 100644 --- a/glib/src/binding.hg +++ b/glib/src/binding.hg @@ -24,6 +24,7 @@ _PINCLUDE(glibmm/private/object_p.h) namespace Glib { +_WRAP_ENUM(BindingFlags, GBindingFlags, newin "2,44") /** Bind two object properties. * @@ -100,14 +101,12 @@ class Binding : public Glib::Object _CLASS_GOBJECT(Binding, GBinding, G_BINDING, Glib::Object, GObject) public: - _WRAP_ENUM(Flags, GBindingFlags, newin "2,44") - /** For instance,
* bool on_transform_to(const GValue* from_value, GValue* to_value); * * @return true if the transformation was successful, and false otherwise. */ - using SlotTransform = sigc::slot; + using SlotTransform = sigc::slot; /** Creates a binding between @a source_property and @a target_property, * allowing you to set the transformation functions to be used by the binding. @@ -141,7 +140,7 @@ public: static Glib::RefPtr bind_property_value( const PropertyProxy_Base& source_property, const PropertyProxy_Base& target_property, - Flags flags = Flags::DEFAULT, + BindingFlags flags = BINDING_DEFAULT, const SlotTransform& transform_to = SlotTransform(), const SlotTransform& transform_from = SlotTransform()); @@ -162,7 +161,7 @@ public: static Glib::RefPtr bind_property( const PropertyProxy_Base& source_property, const PropertyProxy_Base& target_property, - Flags flags = Flags::DEFAULT) + BindingFlags flags = BINDING_DEFAULT) { return bind_property_value(source_property, target_property, flags); } @@ -184,7 +183,7 @@ public: * stored in a Glib::Value object. * @tparam T_functor_to Type of functor that translates from the source to the target. * Must be convertible to
- * sigc::slot. + * sigc::slot. * * @see bind_property_value() * @@ -194,10 +193,10 @@ public: static Glib::RefPtr bind_property( const PropertyProxy& source_property, const PropertyProxy& target_property, - Flags flags, + BindingFlags flags, const T_functor_to& transform_to) { - sigc::slot slot_transform_to = transform_to; + sigc::slot slot_transform_to = transform_to; return bind_property_value(source_property, target_property, flags, slot_transform_to.empty() ? SlotTransform() : TransformProp(slot_transform_to)); @@ -220,7 +219,7 @@ public: * stored in a Glib::Value object. * @tparam T_functor_to Type of functor that translates from the source to the target. * Must be convertible to
- * sigc::slot. + * sigc::slot. * * @see bind_property_value() * @@ -230,10 +229,10 @@ public: static Glib::RefPtr bind_property( const PropertyProxy& source_property, const PropertyProxy_WriteOnly& target_property, - Flags flags, + BindingFlags flags, const T_functor_to& transform_to) { - sigc::slot slot_transform_to = transform_to; + sigc::slot slot_transform_to = transform_to; return bind_property_value(source_property, target_property, flags, slot_transform_to.empty() ? SlotTransform() : TransformProp(slot_transform_to)); @@ -256,7 +255,7 @@ public: * stored in a Glib::Value object. * @tparam T_functor_to Type of functor that translates from the source to the target. * Must be convertible to
- * sigc::slot. + * sigc::slot. * * @see bind_property_value() * @@ -266,10 +265,10 @@ public: static Glib::RefPtr bind_property( const PropertyProxy_ReadOnly& source_property, const PropertyProxy& target_property, - Flags flags, + BindingFlags flags, const T_functor_to& transform_to) { - sigc::slot slot_transform_to = transform_to; + sigc::slot slot_transform_to = transform_to; return bind_property_value(source_property, target_property, flags, slot_transform_to.empty() ? SlotTransform() : TransformProp(slot_transform_to)); @@ -292,7 +291,7 @@ public: * stored in a Glib::Value object. * @tparam T_functor_to Type of functor that translates from the source to the target. * Must be convertible to
- * sigc::slot. + * sigc::slot. * * @see bind_property_value() * @@ -302,10 +301,10 @@ public: static Glib::RefPtr bind_property( const PropertyProxy_ReadOnly& source_property, const PropertyProxy_WriteOnly& target_property, - Flags flags, + BindingFlags flags, const T_functor_to& transform_to) { - sigc::slot slot_transform_to = transform_to; + sigc::slot slot_transform_to = transform_to; return bind_property_value(source_property, target_property, flags, slot_transform_to.empty() ? SlotTransform() : TransformProp(slot_transform_to)); @@ -330,10 +329,10 @@ public: * stored in a Glib::Value object. * @tparam T_functor_to Type of functor that translates from the source to the target. * Must be convertible to
- * sigc::slot. + * sigc::slot. * @tparam T_functor_from Type of functor that translates from the target to the source. * Must be convertible to
- * sigc::slot. + * sigc::slot. * * @see bind_property_value() * @@ -343,12 +342,12 @@ public: static Glib::RefPtr bind_property( const PropertyProxy& source_property, const PropertyProxy& target_property, - Flags flags, + BindingFlags flags, const T_functor_to& transform_to, const T_functor_from& transform_from) { - sigc::slot slot_transform_to = transform_to; - sigc::slot slot_transform_from = transform_from; + sigc::slot slot_transform_to = transform_to; + sigc::slot slot_transform_from = transform_from; return bind_property_value(source_property, target_property, flags, slot_transform_to.empty() ? SlotTransform() : TransformProp(slot_transform_to), @@ -361,7 +360,7 @@ public: _WRAP_METHOD(Glib::RefPtr get_target(), g_binding_get_target, refreturn, newin "2,44") _WRAP_METHOD(Glib::RefPtr get_target() const, g_binding_get_target, refreturn, constversion, newin "2,44") _WRAP_METHOD(Glib::ustring get_target_property() const, g_binding_get_target_property, newin "2,44") - _WRAP_METHOD(Flags get_flags() const, g_binding_get_flags, newin "2,44") + _WRAP_METHOD(BindingFlags get_flags() const, g_binding_get_flags, newin "2,44") /** Explicitly releases the binding between the source and the target * property expressed by this Binding instance. @@ -375,7 +374,7 @@ public: void unbind(); _IGNORE(g_binding_unbind) - _WRAP_PROPERTY("flags", Flags, newin "2,44") + _WRAP_PROPERTY("flags", Glib::BindingFlags, newin "2,44") _WRAP_PROPERTY("source", Glib::RefPtr, newin "2,44") _WRAP_PROPERTY("source-property", Glib::ustring, newin "2,44") _WRAP_PROPERTY("target", Glib::RefPtr, newin "2,44") @@ -392,12 +391,13 @@ private: // The functor TransformProp can be implicitly converted to a SlotTransform // and used in a call to bind_property_value(). template - class TransformProp + class TransformProp : public sigc::functor_base { public: - using SlotTypedTransform = sigc::slot; + using result_type = bool; + using SlotTypedTransform = sigc::slot; - explicit TransformProp(const SlotTypedTransform& slot) : typed_transform(slot) {} + TransformProp(const SlotTypedTransform& slot) : typed_transform(slot) {} bool operator()(const GValue* from_value, GValue* to_value) { diff --git a/glib/src/bytearray.hg b/glib/src/bytearray.hg index ebf385b..9dac5e2 100644 --- a/glib/src/bytearray.hg +++ b/glib/src/bytearray.hg @@ -57,7 +57,7 @@ public: * int compare(const guint8* first, const guint8* second); * */ - using SlotCompare = sigc::slot; + using SlotCompare = sigc::slot; _WRAP_METHOD(static Glib::RefPtr create(), g_byte_array_new) @@ -103,7 +103,7 @@ class Value< Glib::RefPtr > : public ValueBase_Boxed public: static GType value_type() { return Glib::ByteArray::get_type(); } void set(const Glib::RefPtr& array) { set_boxed(Glib::unwrap(array)); } - Glib::RefPtr get() { return make_refptr_for_instance(reinterpret_cast(get_boxed())); } + Glib::RefPtr get() { return Glib::RefPtr(reinterpret_cast(get_boxed())); } }; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff --git a/glib/src/bytes.hg b/glib/src/bytes.hg index 60b92d1..867b99c 100644 --- a/glib/src/bytes.hg +++ b/glib/src/bytes.hg @@ -20,6 +20,7 @@ _DEFS(glibmm,glib) #include #include #include +#include #include #ifndef DOXYGEN_SHOULD_SKIP_THIS diff --git a/glib/src/checksum.ccg b/glib/src/checksum.ccg index c612049..f38e2fc 100644 --- a/glib/src/checksum.ccg +++ b/glib/src/checksum.ccg @@ -20,7 +20,7 @@ namespace Glib { -Checksum::Checksum(Type type) : gobject_(g_checksum_new((GChecksumType)type)) +Checksum::Checksum(ChecksumType type) : gobject_(g_checksum_new((GChecksumType)type)) { } @@ -30,13 +30,13 @@ Checksum::operator bool() const } gssize -Checksum::get_length(Type checksum_type) +Checksum::get_length(ChecksumType checksum_type) { return g_checksum_type_get_length((GChecksumType)checksum_type); } std::string -Checksum::compute_checksum(Type checksum_type, const std::string& data) +Checksum::compute_checksum(ChecksumType checksum_type, const std::string& data) { return Glib::convert_return_gchar_ptr_to_ustring( g_compute_checksum_for_string(((GChecksumType)checksum_type), data.c_str(), data.size())); diff --git a/glib/src/checksum.hg b/glib/src/checksum.hg index 4785470..a4a4d49 100644 --- a/glib/src/checksum.hg +++ b/glib/src/checksum.hg @@ -42,16 +42,16 @@ class Checksum _IGNORE(g_checksum_copy, g_checksum_free) public: - _WRAP_ENUM(Type, GChecksumType, NO_GTYPE) + _WRAP_ENUM(ChecksumType, GChecksumType, NO_GTYPE) -#m4 _CONVERSION(`Type', `GChecksumType', `(static_cast<$2>($3))') +#m4 _CONVERSION(`ChecksumType', `GChecksumType', `(($2)$3)') /** Creates a new Checksum, using the checksum algorithm @a checksum_type. * If the checksum_type is not known, then operator bool() will return false. * * @param checksum_type Checksum type, one of defined above. */ - explicit Checksum(Type checksum_type); + explicit Checksum(ChecksumType checksum_type); /** Returns true if the Checksum object is valid. * This will return false, for instance, if an unsupported checksum type was provided to the constructor. @@ -60,7 +60,9 @@ public: _WRAP_METHOD(void reset(), g_checksum_reset) - _WRAP_METHOD(void update(const guchar* data, gssize length), g_checksum_update) + //TODO: length should really be gssize, not gsize, when we can break ABI: +#m4 _CONVERSION(`gsize',`gssize',`(gssize)($3)') + _WRAP_METHOD(void update(const guchar* data, gsize length), g_checksum_update) /** Feeds data into an existing Checksum. * The checksum must still be open, that is get_string() or get_digest() must not have been called on the checksum. @@ -74,25 +76,26 @@ public: _WRAP_METHOD(std::string get_string() const, g_checksum_get_string) - _WRAP_METHOD(static std::string compute_checksum(Type checksum_type, const guchar* data, gsize length), g_compute_checksum_for_data) + _WRAP_METHOD(static std::string compute_checksum(ChecksumType checksum_type, const guchar* data, gsize length), g_compute_checksum_for_data) /** Computes the checksum of a string. * - * @param checksum_type A Type + * @param checksum_type A ChecksumType * @param str The string to compute the checksum of. * @result The checksum as a hexadecimal string. */ - static std::string compute_checksum(Type checksum_type, const std::string& str); + static std::string compute_checksum(ChecksumType checksum_type, const std::string& str); _IGNORE(g_compute_checksum_for_string) //We don't use _WRAP_METHOD because this is not really a GCheckSum function: /** Gets the length in bytes of digests of type @a checksum_type. * - * @param checksum_type A Type. + * @param checksum_type A ChecksumType. * @result The checksum length, or -1 if @a checksum_type is not supported. */ - static gssize get_length(Type checksum_type); + static gssize get_length(ChecksumType checksum_type); }; } //namespace Glib + diff --git a/glib/src/date.ccg b/glib/src/date.ccg index 75f240b..7e62718 100644 --- a/glib/src/date.ccg +++ b/glib/src/date.ccg @@ -75,6 +75,24 @@ Date::set_parse(const Glib::ustring& str) g_date_set_parse(&gobject_, str.c_str()); } +_DEPRECATE_IFDEF_START + +// Avoid a build problem in the case that std::time_t is equivalent to gint32 (GTime is also gint32) +// That would make the set_time() method overload impossible. +#ifdef GLIBMM_HAVE_C_STD_TIME_T_IS_NOT_INT32 +void +Date::set_time(GTime time) +{ + // This method, and the C function g_date_set_time() that it wraps, are deprecated. + //(::time_t is used here instead of std::time_t, since the C function is declared + // with ::time_t. It's not important. The C++ standard requires that ::time_t + // and std::time_t shall be identical when both are defined.) + g_date_set_time_t(&gobject_, static_cast(time)); +} +#endif // GLIBMM_HAVE_C_STD_TIME_T_IS_NOT_INT32 + +_DEPRECATE_IFDEF_END + void Date::set_time(std::time_t timet) { @@ -229,22 +247,12 @@ Date::get_weekday() const return (Date::Weekday)g_date_get_weekday(&gobject_); } -int Date::get_weekday_as_int() const -{ - return g_date_get_weekday(&gobject_); -} - Date::Month Date::get_month() const { return (Date::Month)g_date_get_month(&gobject_); } -int Date::get_month_as_int() const -{ - return g_date_get_month(&gobject_); -} - Date::Year Date::get_year() const { diff --git a/glib/src/date.hg b/glib/src/date.hg index f3f9442..64d4e9e 100644 --- a/glib/src/date.hg +++ b/glib/src/date.hg @@ -36,9 +36,9 @@ public: using Day = guint8 ; using Year = guint16; - _WRAP_ENUM(Month, GDateMonth, NO_GTYPE) - _WRAP_ENUM(Weekday, GDateWeekday, NO_GTYPE) - _WRAP_ENUM(DMY, GDateDMY, NO_GTYPE) + _WRAP_ENUM(Month, GDateMonth, s#^DATE_##, NO_GTYPE, get_type_func=) + _WRAP_ENUM(Weekday, GDateWeekday, s#^DATE_##, NO_GTYPE) + _WRAP_ENUM(DMY, GDateDMY, s#^DATE_##, NO_GTYPE) static const Day BAD_DAY = 0; static const Year BAD_YEAR = 0; @@ -108,6 +108,24 @@ public: */ void set_parse (const Glib::ustring& str); + + _DEPRECATE_IFDEF_START + + //Avoid a build problem in the case that std::time_t is equivalent to gint32 (GTime is also gint32) + //That would make the set_time() method overload impossible. + #ifdef GLIBMM_HAVE_C_STD_TIME_T_IS_NOT_INT32 + /** Sets the value of a date from a GTime value. + * + * @param time GTime value to set. + * + * @deprecated Please use set_time(std::time_t) or set_time(const GTimeVal&). + */ + void set_time(GTime time); + #endif //GLIBMM_HAVE_C_STD_TIME_T_IS_NOT_INT32 + + _DEPRECATE_IFDEF_END + + /** Sets the value of a date from a std::time_t value. * * @param timet std::time_t value to set @@ -276,21 +294,11 @@ public: */ Weekday get_weekday() const; - /** Returns the day of the week for a Date. The date must be valid. - * @return Day of the week as an int. Monday=1 .. Sunday=7. - */ - int get_weekday_as_int() const; - /** Returns the month of the year. The date must be valid. * @return Month of the year as a Date::Month. */ Month get_month() const; - /** Returns the month of the year. The date must be valid. - * @return Month of the year as an int. January=1 .. December=12. - */ - int get_month_as_int() const; - /** Returns the year of a Date. The date must be valid. * @return Year in which the date falls. */ diff --git a/glib/src/filelist.am b/glib/src/filelist.am index 162eec3..bab18c1 100644 --- a/glib/src/filelist.am +++ b/glib/src/filelist.am @@ -36,9 +36,12 @@ glibmm_files_any_hg = \ regex.hg \ shell.hg \ spawn.hg \ + thread.hg \ + threads.hg \ timezone.hg \ unicode.hg \ uriutils.hg \ + valuearray.hg \ variant.hg \ variantdict.hg \ variantiter.hg \ diff --git a/glib/src/fileutils.hg b/glib/src/fileutils.hg index 3aa76d7..3abb38b 100644 --- a/glib/src/fileutils.hg +++ b/glib/src/fileutils.hg @@ -62,79 +62,146 @@ _WRAP_GERROR(FileError, GFileError, G_FILE_ERROR, NO_GTYPE, s#^PERM$#NOT_OWNER# ) +/** @enum FileError::Code + * Values corresponding to errno codes returned from file operations + * on UNIX. + * Unlike errno codes, FileError::Code values are available on all + * systems, even Windows. The exact meaning of each code depends on what sort + * of file operation you were performing; the UNIX documentation gives more + * details. The following error code descriptions come from the GNU C Library + * manual, and are under the copyright of that manual. + * + * It's not very portable to make detailed assumptions about exactly which + * errors will be returned from a given operation. Some errors don't occur on + * some systems, etc., sometimes there are subtle differences in when a system + * will report a given error, etc. + */ + /** @var FileError::Code FileError::EXISTS - * (EEXIST) - * - * @var FileError::Code FileError::IS_DIRECTORY - * (EISDIR) - * - * @var FileError::Code FileError::ACCESS_DENIED - * (EACCES) - * - * @var FileError::Code FileError::NAME_TOO_LONG - * (ENAMETOOLONG) - * - * @var FileError::Code FileError::NO_SUCH_ENTITY - * (ENOENT) - * - * @var FileError::Code FileError::NOT_DIRECTORY - * (ENOTDIR) - * - * @var FileError::Code FileError::NO_SUCH_DEVICE - * (ENXIO) - * - * @var FileError::Code FileError::NOT_DEVICE - * (ENODEV) - * - * @var FileError::Code FileError::READONLY_FILESYSTEM - * (EROFS) - * - * @var FileError::Code FileError::TEXT_FILE_BUSY - * (ETXTBSY) - * - * @var FileError::Code FileError::FAULTY_ADDRESS - * (EFAULT) - * - * @var FileError::Code FileError::SYMLINK_LOOP - * (ELOOP) - * - * @var FileError::Code FileError::NO_SPACE_LEFT - * (ENOSPC) - * - * @var FileError::Code FileError::NOT_ENOUGH_MEMORY - * (ENOMEM) - * - * @var FileError::Code FileError::TOO_MANY_OPEN_FILES - * (EMFILE) - * - * @var FileError::Code FileError::FILE_TABLE_OVERFLOW - * (ENFILE) - * - * @var FileError::Code FileError::BAD_FILE_DESCRIPTOR - * (EBADF) - * - * @var FileError::Code FileError::INVALID_ARGUMENT - * (EINVAL) - * - * @var FileError::Code FileError::BROKEN_PIPE - * (EPIPE) - * - * @var FileError::Code FileError::TRYAGAIN - * (EAGAIN) - * - * We use TRYAGAIN instead of TRY_AGAIN, because that is defined as a macro by a Unix header. - * - * @var FileError::Code FileError::INTERRUPTED - * (EINTR) - * - * @var FileError::Code FileError::IO_ERROR - * (EIO) - * - * @var FileError::Code FileError::NOT_OWNER - * (EPERM) - * - * @var FileError::Code FileError::FAILED - * Returned if no specific code applies. + * (EEXIST) Operation not permitted; only the owner of the file (or + * other resource) or processes with special privileges can perform the operation. + *

+ */ +/** @var FileError::Code FileError::IS_DIRECTORY + * (EISDIR) File is a directory; you cannot open a directory for writing, + * or create or remove hard links to it. + *

+ */ +/** @var FileError::Code FileError::ACCESS_DENIED + * (EACCES) Permission denied; the file permissions do not allow the + * attempted operation. + *

+ */ +/** @var FileError::Code FileError::NAME_TOO_LONG + * (ENAMETOOLONG) Filename too long. + *

+ */ +/** @var FileError::Code FileError::NO_SUCH_ENTITY + * (ENOENT) No such file or directory. This is a "file doesn't exist" + * error for ordinary files that are referenced in contexts where they are expected + * to already exist. + *

+ */ +/** @var FileError::Code FileError::NOT_DIRECTORY + * (ENOTDIR) A file that isn't a directory was specified when a directory + * is required. + *

+ */ +/** @var FileError::Code FileError::NO_SUCH_DEVICE + * (ENXIO) No such device or address. The system tried to use the device + * represented by a file you specified, and it couldn't find the device. This can + * mean that the device file was installed incorrectly, or that the physical device + * is missing or not correctly attached to the computer. + *

+ */ +/** @var FileError::Code FileError::NOT_DEVICE + * (ENODEV) This file is of a type that doesn't support mapping. + *

+ */ +/** @var FileError::Code FileError::READONLY_FILESYSTEM + * (EROFS) The directory containing the new link can't be modified + * because it's on a read-only file system. + *

+ */ +/** @var FileError::Code FileError::TEXT_FILE_BUSY + * (ETXTBSY) Text file busy. + *

+ */ +/** @var FileError::Code FileError::FAULTY_ADDRESS + * (EFAULT) You passed in a pointer to bad memory. (Glib won't + * reliably return this, don't pass in pointers to bad memory.) + *

+ */ +/** @var FileError::Code FileError::SYMLINK_LOOP + * (ELOOP) Too many levels of symbolic links were encountered in + * looking up a file name. This often indicates a cycle of symbolic links. + *

+ */ +/** @var FileError::Code FileError::NO_SPACE_LEFT + * (ENOSPC) No space left on device; write operation on a file failed + * because the disk is full. + *

+ */ +/** @var FileError::Code FileError::NOT_ENOUGH_MEMORY + * (ENOMEM) No memory available. The system cannot allocate more + * virtual memory because its capacity is full. + *

+ */ +/** @var FileError::Code FileError::TOO_MANY_OPEN_FILES + * (EMFILE) The current process has too many files open and can't + * open any more. Duplicate descriptors do count toward this limit. + *

+ */ +/** @var FileError::Code FileError::FILE_TABLE_OVERFLOW + * (ENFILE) There are too many distinct file openings in the + * entire system. + *

+ */ +/** @var FileError::Code FileError::BAD_FILE_DESCRIPTOR + * (EBADF) Bad file descriptor; for example, I/O on a descriptor + * that has been closed or reading from a descriptor open only for writing + * (or vice versa). + *

+ */ +/** @var FileError::Code FileError::INVALID_ARGUMENT + * (EINVAL) Invalid argument. This is used to indicate various kinds + * of problems with passing the wrong argument to a library function. + *

+ */ +/** @var FileError::Code FileError::BROKEN_PIPE + * (EPIPE) Broken pipe; there is no process reading from the other + * end of a pipe. Every library function that returns this error code also + * generates a SIGPIPE signal; this signal terminates the program + * if not handled or blocked. Thus, your program will never actually see + * this code unless it has handled or blocked SIGPIPE. + *

+ */ +/** @var FileError::Code FileError::TRYAGAIN + * (EAGAIN) Resource temporarily unavailable; the call might work + * if you try again later. + * We used TRYAGAIN instead of TRY_AGAIN, because that is a defined as a macro by a Unix header. + *

+ */ +/** @var FileError::Code FileError::INTERRUPTED + * (EINTR) Interrupted function call; an asynchronous signal occurred + * and prevented completion of the call. When this happens, you should try + * the call again. + *

+ */ +/** @var FileError::Code FileError::IO_ERROR + * (EIO) Input/output error; usually used for physical read or write + * errors. I.e. the disk or other physical device hardware is returning errors. + *

+ */ +/** @var FileError::Code FileError::NOT_OWNER + * (EPERM) Operation not permitted; only the owner of the file (or other + * resource) or processes with special privileges can perform the operation. + *

+ */ +/** @var FileError::Code FileError::FAILED + * Does not correspond to a UNIX error code; this is the standard "failed for + * unspecified reason" error code present in all Glib::Error error code + * enumerations. Returned if no specific code applies. */ class Dir; diff --git a/glib/src/glib_docs_override.xml b/glib/src/glib_docs_override.xml index a64a435..469c90a 100644 --- a/glib/src/glib_docs_override.xml +++ b/glib/src/glib_docs_override.xml @@ -1,27 +1,8 @@ - - - - - - - - - - - - - - - - - - - - + diff --git a/glib/src/glib_extra_objects.defs b/glib/src/glib_extra_objects.defs index 2171e9e..cfb6876 100644 --- a/glib/src/glib_extra_objects.defs +++ b/glib/src/glib_extra_objects.defs @@ -44,11 +44,6 @@ (gtype-id "G_TYPE_MATCH_INFO") ) -(define-object NodeTree - (in-module "Glib") - (c-name "GNode") -) - (define-object Object (in-module "Glib") (c-name "GObject") @@ -78,11 +73,6 @@ (c-name "GTimeZone") ) -(define-object Tree - (in-module "Glib") - (c-name "GTree") -) - (define-object Variant (in-module "Glib") (c-name "GVariant") diff --git a/glib/src/iochannel.ccg b/glib/src/iochannel.ccg index 5e8113f..b9d100f 100644 --- a/glib/src/iochannel.ccg +++ b/glib/src/iochannel.ccg @@ -34,7 +34,9 @@ namespace // g_io_channel_new_file(). Neither is there a way to hook up a wrapper // object in an existing GIOChannel, nor exists any destroy notification. // -// So that means: If the IOChannel backend is unknown (normal case), then the +// So that means: If the IOChannel is implemented in C++ -- that is, our +// GlibmmIOChannel backend is used -- we use the GIOChannel reference +// counting mechanism. If the IOChannel backend is unknown, then the // wrapper instance holds always exactly one reference to the GIOChannel. // The wrapper object itself is then managed via our own refcounting // mechanism. To do that a utility class ForeignIOChannel is introduced to @@ -73,8 +75,51 @@ ForeignIOChannel::unreference() const namespace Glib { +class GlibmmIOChannel +{ +public: + GIOChannel base; + Glib::IOChannel* wrapper; + + static const GIOFuncs vfunc_table; + + static GIOStatus io_read( + GIOChannel* channel, char* buf, gsize count, gsize* bytes_read, GError** err); + + static GIOStatus io_write( + GIOChannel* channel, const char* buf, gsize count, gsize* bytes_written, GError** err); + + static GIOStatus io_seek(GIOChannel* channel, gint64 offset, GSeekType type, GError** err); + static GIOStatus io_close(GIOChannel* channel, GError** err); + + static GSource* io_create_watch(GIOChannel* channel, GIOCondition condition); + static void io_free(GIOChannel* channel); + + static GIOStatus io_set_flags(GIOChannel* channel, GIOFlags flags, GError** err); + static GIOFlags io_get_flags(GIOChannel* channel); +}; + +// static +const GIOFuncs GlibmmIOChannel::vfunc_table = { + &GlibmmIOChannel::io_read, &GlibmmIOChannel::io_write, &GlibmmIOChannel::io_seek, + &GlibmmIOChannel::io_close, &GlibmmIOChannel::io_create_watch, &GlibmmIOChannel::io_free, + &GlibmmIOChannel::io_set_flags, &GlibmmIOChannel::io_get_flags, +}; + /**** GLib::IOChannel ******************************************************/ +/* Construct a custom C++-implemented IOChannel. GlibmmIOChannel is an + * extended GIOChannel struct which allows us to hook up a pointer to this + * persistent wrapper instance. + */ +IOChannel::IOChannel() : gobject_(static_cast(g_malloc(sizeof(GlibmmIOChannel)))) +{ + g_io_channel_init(gobject_); + gobject_->funcs = const_cast(&GlibmmIOChannel::vfunc_table); + + reinterpret_cast(gobject_)->wrapper = this; +} + IOChannel::IOChannel(IOChannel&& other) noexcept : sigc::trackable(std::move(other)), gobject_(std::move(other.gobject_)) { @@ -100,7 +145,9 @@ IOChannel::operator=(IOChannel&& other) noexcept */ IOChannel::IOChannel(GIOChannel* gobject, bool take_copy) : gobject_(gobject) { + // This ctor should never be called for GlibmmIOChannel instances. g_assert(gobject != nullptr); + g_assert(gobject->funcs != &GlibmmIOChannel::vfunc_table); if (take_copy) g_io_channel_ref(gobject_); @@ -111,6 +158,19 @@ IOChannel::release_gobject() { if (gobject_) { + // Check whether this IOChannel is implemented in C++, i.e. whether it + // uses our GlibmmIOChannel forwarding backend. Normally, this will never + // be true because the wrapper should only be deleted in the io_free() + // callback, which clears gobject_ before deleting. But in case the ctor + // of a derived class threw an exception the GIOChannel must be destroyed + // prematurely. + // + if (gobject_->funcs == &GlibmmIOChannel::vfunc_table) + { + // Disconnect the wrapper object so that it won't be deleted twice. + reinterpret_cast(gobject_)->wrapper = nullptr; + } + const auto tmp_gobject = gobject_; gobject_ = nullptr; @@ -275,7 +335,56 @@ IOChannel::get_line_term() const Glib::RefPtr IOChannel::create_watch(IOCondition condition) { - return IOSource::create(gobj(), condition); + // The corresponding unreference() takes place in the dtor + // of the Glib::RefPtr object below. + reference(); + return IOSource::create(Glib::RefPtr(this), condition); +} + +IOStatus +IOChannel::read_vfunc(char*, gsize, gsize&) +{ + g_assert_not_reached(); + return IO_STATUS_ERROR; +} + +IOStatus +IOChannel::write_vfunc(const char*, gsize, gsize&) +{ + g_assert_not_reached(); + return IO_STATUS_ERROR; +} + +IOStatus IOChannel::seek_vfunc(gint64, SeekType) +{ + g_assert_not_reached(); + return IO_STATUS_ERROR; +} + +IOStatus +IOChannel::close_vfunc() +{ + g_assert_not_reached(); + return IO_STATUS_ERROR; +} + +Glib::RefPtr IOChannel::create_watch_vfunc(IOCondition) +{ + g_assert_not_reached(); + return Glib::RefPtr(); +} + +IOStatus IOChannel::set_flags_vfunc(IOFlags) +{ + g_assert_not_reached(); + return IO_STATUS_ERROR; +} + +IOFlags +IOChannel::get_flags_vfunc() +{ + g_assert_not_reached(); + return IOFlags(0); } void @@ -297,11 +406,180 @@ wrap(GIOChannel* gobject, bool take_copy) if (gobject) { - cpp_object = new ForeignIOChannel(gobject, take_copy); - cpp_object->reference(); // the refcount is initially 0 + if (gobject->funcs == &GlibmmIOChannel::vfunc_table) + { + cpp_object = reinterpret_cast(gobject)->wrapper; + + if (take_copy && cpp_object) + cpp_object->reference(); + } + else + { + cpp_object = new ForeignIOChannel(gobject, take_copy); + cpp_object->reference(); // the refcount is initially 0 + } + } + + return Glib::RefPtr(cpp_object); +} + +/**** Glib::GlibmmIOChannel ************************************************/ + +GIOStatus +GlibmmIOChannel::io_read( + GIOChannel* channel, char* buf, gsize count, gsize* bytes_read, GError** err) +{ + const auto wrapper = reinterpret_cast(channel)->wrapper; + + try + { + return (GIOStatus)wrapper->read_vfunc(buf, count, *bytes_read); + } + catch (Glib::Error& error) + { + error.propagate(err); + } + catch (...) + { + Glib::exception_handlers_invoke(); + } + + return G_IO_STATUS_ERROR; +} + +GIOStatus +GlibmmIOChannel::io_write( + GIOChannel* channel, const char* buf, gsize count, gsize* bytes_written, GError** err) +{ + const auto wrapper = reinterpret_cast(channel)->wrapper; + + try + { + return (GIOStatus)wrapper->write_vfunc(buf, count, *bytes_written); + } + catch (Glib::Error& error) + { + error.propagate(err); + } + catch (...) + { + Glib::exception_handlers_invoke(); + } + + return G_IO_STATUS_ERROR; +} + +GIOStatus +GlibmmIOChannel::io_seek(GIOChannel* channel, gint64 offset, GSeekType type, GError** err) +{ + const auto wrapper = reinterpret_cast(channel)->wrapper; + + try + { + return (GIOStatus)wrapper->seek_vfunc(offset, (SeekType)type); + } + catch (Glib::Error& error) + { + error.propagate(err); + } + catch (...) + { + Glib::exception_handlers_invoke(); + } + + return G_IO_STATUS_ERROR; +} + +GIOStatus +GlibmmIOChannel::io_close(GIOChannel* channel, GError** err) +{ + const auto wrapper = reinterpret_cast(channel)->wrapper; + + try + { + return (GIOStatus)wrapper->close_vfunc(); + } + catch (Glib::Error& error) + { + error.propagate(err); + } + catch (...) + { + Glib::exception_handlers_invoke(); + } + + return G_IO_STATUS_ERROR; +} + +// static +GSource* +GlibmmIOChannel::io_create_watch(GIOChannel* channel, GIOCondition condition) +{ + const auto wrapper = reinterpret_cast(channel)->wrapper; + + try + { + const auto source = wrapper->create_watch_vfunc((IOCondition)condition); + return (source) ? source->gobj_copy() : nullptr; + } + catch (...) + { + Glib::exception_handlers_invoke(); + } + + return nullptr; +} + +// static +void +GlibmmIOChannel::io_free(GIOChannel* channel) +{ + if (IOChannel* const wrapper = reinterpret_cast(channel)->wrapper) + { + wrapper->gobject_ = nullptr; + delete wrapper; + } + + g_free(channel); +} + +GIOStatus +GlibmmIOChannel::io_set_flags(GIOChannel* channel, GIOFlags flags, GError** err) +{ + const auto wrapper = reinterpret_cast(channel)->wrapper; + + try + { + return (GIOStatus)wrapper->set_flags_vfunc((IOFlags)flags); + } + catch (Glib::Error& error) + { + error.propagate(err); + } + catch (...) + { + Glib::exception_handlers_invoke(); + } + + return G_IO_STATUS_ERROR; +} + +// static +GIOFlags +GlibmmIOChannel::io_get_flags(GIOChannel* channel) +{ + const auto wrapper = reinterpret_cast(channel)->wrapper; + + try + { + return (GIOFlags)wrapper->get_flags_vfunc(); + } + catch (...) + { + Glib::exception_handlers_invoke(); } - return Glib::make_refptr_for_instance(cpp_object); + return GIOFlags(0); } } // namespace Glib diff --git a/glib/src/iochannel.hg b/glib/src/iochannel.hg index 2cc840f..5df0ebc 100644 --- a/glib/src/iochannel.hg +++ b/glib/src/iochannel.hg @@ -17,7 +17,7 @@ _DEFS(glibmm,glib) #include -#include //For the GIOCondition enum values. +#include //For the GIOChannel enum values. #include #include #include @@ -34,32 +34,22 @@ namespace Glib class Source; class IOSource; -_WRAP_ENUM(SeekType, GSeekType, NO_GTYPE) -_WRAP_ENUM(IOStatus, GIOStatus, NO_GTYPE, s#^EOF$#ENDOFFILE#) +_WRAP_ENUM(SeekType, GSeekType, NO_GTYPE, s#^SEEK_#SEEK_TYPE_#) +_WRAP_ENUM(IOStatus, GIOStatus, NO_GTYPE) _WRAP_ENUM(IOFlags, GIOFlags, NO_GTYPE) -// Glib::IOCondition::IN and Glib::IOCondition::OUT would be problematic. -// IN and OUT can be preprocessor macros. -// See https://bugzilla.gnome.org/show_bug.cgi?id=786717 -/** @enum IOCondition - * A bitwise combination representing an I/O condition to watch for on an +/** A bitwise combination representing an I/O condition to watch for on an * event source. * The flags correspond to those used by the %poll() system call * on UNIX (see man 2 poll). To test for individual flags, do * something like this: * @code - * if ((condition & Glib::IOCondition::IO_OUT) == Glib::IOCondition::IO_OUT) + * if((condition & Glib::IO_OUT) != 0) * do_some_output(); * @endcode */ -_WRAP_ENUM(IOCondition, GIOCondition, NO_GTYPE, - s#^IN$#IO_IN#, - s#^OUT$#IO_OUT#, - s#^PRI$#IO_PRI#, - s#^ERR$#IO_ERR#, - s#^HUP$#IO_HUP#, - s#^NVAL$#IO_NVAL#) +_WRAP_ENUM(IOCondition, GIOCondition, NO_GTYPE) /** Exception class for IOChannel errors. */ @@ -212,8 +202,8 @@ public: /** Reads all the remaining data from the file. * @retval str The resulting string. - * @return Glib::IOStatus::NORMAL on success. This function never - * returns Glib::IOStatus::ENDOFFILE. + * @return Glib::IO_STATUS_NORMAL on success. This function never + * returns Glib::IO_STATUS_EOF. * @throw Glib::IOChannelError * @throw Glib::ConvertError */ @@ -223,7 +213,7 @@ public: /** Write a string to the I/O channel. * Note that this method does not return the number of characters written. * If the channel is blocking and the returned value is - * Glib::IOStatus::NORMAL, the whole string was written. + * Glib::IO_STATUS_NORMAL, the whole string was written. * @param str the string to write. * @return The status of the operation. * @throw Glib::IOChannelError @@ -252,14 +242,14 @@ public: /** Seek the I/O channel to a specific position. * @param offset The offset in bytes from the position specified by @a type. - * @param type A SeekType. The type Glib::SeekType::CUR is only allowed in + * @param type A SeekType. The type Glib::SEEK_TYPE_CUR is only allowed in * those cases where a call to set_encoding() is allowed. See the * documentation for set_encoding() for details. * @return The status of the operation. * @throw Glib::IOChannelError * @throw Glib::ConvertError */ - _WRAP_METHOD(IOStatus seek(gint64 offset, SeekType type = SeekType::SET), + _WRAP_METHOD(IOStatus seek(gint64 offset, SeekType type = SEEK_TYPE_SET), g_io_channel_seek_position, errthrow) /** Flush the buffers of the I/O channel. @@ -315,10 +305,10 @@ public: * * A buffered channel can only be set unbuffered if the channel's internal * buffers have been flushed. Newly created channels or channels which have - * returned Glib::IOStatus::ENDOFFILE not require such a flush. For write-only + * returned Glib::IO_STATUS_EOF not require such a flush. For write-only * channels, a call to flush() is sufficient. For all other channels, the * buffers may be flushed by a call to seek(). This includes the possibility - * of seeking with seek type Glib::SeekType::CUR and an offset of zero. Note + * of seeking with seek type Glib::SEEK_TYPE_CUR and an offset of zero. Note * that this means that socket-based channels cannot be set unbuffered once * they have had data read from them. * @@ -371,21 +361,21 @@ public: * -# The channel is a file, and the file pointer was just repositioned by a * call to seek_position(). (This flushes all the internal buffers.) * -# The current encoding is "" or UTF-8. - * -# One of the read methods has just returned Glib::IOStatus::ENDOFFILE (or, in - * the case of read_to_end(), Glib::IOStatus::NORMAL). - * -# The read() method has returned Glib::IOStatus::AGAIN or thrown + * -# One of the read methods has just returned Glib::IO_STATUS_EOF (or, in + * the case of read_to_end(), Glib::IO_STATUS_NORMAL). + * -# The read() method has returned Glib::IO_STATUS_AGAIN or thrown * a Glib::Error exception. This may be useful in the case of * ConvertError::ILLEGAL_SEQUENCE. Returning one of these statuses * from read_line() or read_to_end() does not guarantee that * the encoding can be changed. * * Channels which do not meet one of the above conditions cannot call - * seek_position() with a seek type of Glib::SeekType::CUR and, if they + * seek_position() with a seek type of Glib::SEEK_TYPE_CUR and, if they * are "seekable", cannot call write() after calling one of the API * "read" methods. * * @param encoding The encoding name, or "" for binary. - * @return Glib::IOStatus::NORMAL if the encoding was successfully set. + * @return Glib::IO_STATUS_NORMAL if the encoding was successfully set. * @throw Glib::IOChannelError */ IOStatus set_encoding(const std::string& encoding = std::string()); @@ -428,12 +418,61 @@ public: protected: GIOChannel* gobject_; + /** Constructor that should be used by derived classes. + * Use this constructor if you want to inherit from IOChannel. + * It will set up a GIOChannel that will call the vfuncs of your + * class even if it is being used from C code, and it will keep + * a reference to the C++ code while the GIOChannel exists. + */ + IOChannel(); _IGNORE(g_io_channel_init) #ifndef DOXYGEN_SHOULD_SKIP_THIS IOChannel(GIOChannel* gobject, bool take_copy); #endif + //We don't put GLIBMM_DISABLE_DEPRECATED around these deprecated methods + //because they are virtual and that would make the ABI dependent on the ifdef. + + /** + * @deprecated Custom Glib::IOChannel implementation was never really supported. + */ + virtual IOStatus read_vfunc(char* buf, gsize count, gsize& bytes_read); + + /** + * @deprecated Custom Glib::IOChannel implementation was never really supported. + */ + virtual IOStatus write_vfunc(const char* buf, gsize count, gsize& bytes_written); + + /** + * @deprecated Custom Glib::IOChannel implementation was never really supported. + */ + virtual IOStatus seek_vfunc(gint64 offset, SeekType type); + + /** + * @deprecated Custom Glib::IOChannel implementation was never really supported. + */ + virtual IOStatus close_vfunc(); + + /** + * @deprecated Custom Glib::IOChannel implementation was never really supported. + */ + virtual IOStatus set_flags_vfunc(IOFlags flags); + + /** + * @deprecated Custom Glib::IOChannel implementation was never really supported. + */ + virtual IOFlags get_flags_vfunc(); + + /** + * @deprecated Custom Glib::IOChannel implementation was never really supported. + */ + virtual Glib::RefPtr create_watch_vfunc(IOCondition cond); + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + friend class Glib::GlibmmIOChannel; +#endif + private: void release_gobject(); }; diff --git a/glib/src/keyfile.ccg b/glib/src/keyfile.ccg index 2f86b55..08572fd 100644 --- a/glib/src/keyfile.ccg +++ b/glib/src/keyfile.ccg @@ -60,7 +60,7 @@ KeyFile::~KeyFile() } bool -KeyFile::load_from_data(const Glib::ustring& data, Flags flags) +KeyFile::load_from_data(const Glib::ustring& data, KeyFileFlags flags) { GError* gerror = nullptr; @@ -74,7 +74,7 @@ KeyFile::load_from_data(const Glib::ustring& data, Flags flags) } bool -KeyFile::load_from_data_dirs(const std::string& file, std::string& full_path, Flags flags) +KeyFile::load_from_data_dirs(const std::string& file, std::string& full_path, KeyFileFlags flags) { GError* gerror = nullptr; char* full_path_c = nullptr; @@ -94,14 +94,14 @@ KeyFile::load_from_data_dirs(const std::string& file, std::string& full_path, Fl } bool -KeyFile::load_from_dirs(const std::string& file, const std::vector& search_dirs, - std::string& full_path, Flags flags) +KeyFile::load_from_dirs(const std::string& file, const Glib::ArrayHandle& search_dirs, + std::string& full_path, KeyFileFlags flags) { GError* gerror = nullptr; char* full_path_c = nullptr; const gboolean result = - g_key_file_load_from_dirs(gobj(), file.c_str(), const_cast(Glib::ArrayHandler::vector_to_array(search_dirs).data()), + g_key_file_load_from_dirs(gobj(), file.c_str(), const_cast(search_dirs.data()), &full_path_c, static_cast(unsigned(flags)), &gerror); if (gerror) @@ -133,16 +133,16 @@ KeyFile::to_data() return Glib::convert_return_gchar_ptr_to_ustring(str); } -std::vector +Glib::ArrayHandle KeyFile::get_groups() const { gsize length = 0; char** const array = g_key_file_get_groups(const_cast(gobj()), &length); - return Glib::ArrayHandler::array_to_vector(array, length, Glib::OWNERSHIP_DEEP); + return Glib::ArrayHandle(array, length, Glib::OWNERSHIP_DEEP); } -std::vector +Glib::ArrayHandle KeyFile::get_keys(const Glib::ustring& group_name) const { gsize length = 0; @@ -154,7 +154,7 @@ KeyFile::get_keys(const Glib::ustring& group_name) const if (gerror) Glib::Error::throw_exception(gerror); - return Glib::ArrayHandler::array_to_vector(array, length, Glib::OWNERSHIP_DEEP); + return Glib::ArrayHandle(array, length, Glib::OWNERSHIP_DEEP); } Glib::ustring @@ -246,7 +246,7 @@ KeyFile::set_double(const Glib::ustring& key, double value) if (err) \ Glib::Error::throw_exception(err) -std::vector +Glib::ArrayHandle KeyFile::get_string_list( const Glib::ustring& group_name, const Glib::ustring& key GLIBMM_ERROR_ARG) const { @@ -258,10 +258,10 @@ KeyFile::get_string_list( GLIBMM_THROW(gerror); - return Glib::ArrayHandler::array_to_vector(array, length, Glib::OWNERSHIP_DEEP); + return Glib::ArrayHandle(array, length, Glib::OWNERSHIP_DEEP); } -std::vector +Glib::ArrayHandle KeyFile::get_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale GLIBMM_ERROR_ARG) const { @@ -273,10 +273,10 @@ KeyFile::get_locale_string_list(const Glib::ustring& group_name, const Glib::ust GLIBMM_THROW(gerror); - return Glib::ArrayHandler::array_to_vector(array, length, Glib::OWNERSHIP_DEEP); + return Glib::ArrayHandle(array, length, Glib::OWNERSHIP_DEEP); } -std::vector +Glib::ArrayHandle KeyFile::get_boolean_list( const Glib::ustring& group_name, const Glib::ustring& key GLIBMM_ERROR_ARG) const { @@ -288,10 +288,10 @@ KeyFile::get_boolean_list( GLIBMM_THROW(gerror); - return Glib::ArrayHandler::array_to_vector(array, length, Glib::OWNERSHIP_SHALLOW); + return Glib::ArrayHandle(array, length, Glib::OWNERSHIP_SHALLOW); } -std::vector +Glib::ArrayHandle KeyFile::get_integer_list( const Glib::ustring& group_name, const Glib::ustring& key GLIBMM_ERROR_ARG) const { @@ -303,10 +303,10 @@ KeyFile::get_integer_list( GLIBMM_THROW(gerror); - return Glib::ArrayHandler::array_to_vector(array, length, Glib::OWNERSHIP_SHALLOW); + return Glib::ArrayHandle(array, length, Glib::OWNERSHIP_SHALLOW); } -std::vector +Glib::ArrayHandle KeyFile::get_double_list( const Glib::ustring& group_name, const Glib::ustring& key GLIBMM_ERROR_ARG) const { @@ -317,47 +317,47 @@ KeyFile::get_double_list( const_cast(gobj()), group_name.c_str(), key.c_str(), &length, &gerror); GLIBMM_THROW(gerror); - return Glib::ArrayHandler::array_to_vector(array, length, Glib::OWNERSHIP_SHALLOW); + return Glib::ArrayHandle(array, length, Glib::OWNERSHIP_SHALLOW); } void KeyFile::set_string_list(const Glib::ustring& group_name, const Glib::ustring& key, - const std::vector& list) + const Glib::ArrayHandle& list) { g_key_file_set_string_list( - gobj(), Glib::c_str_or_nullptr(group_name), key.c_str(), Glib::ArrayHandler::vector_to_array(list).data(), list.size()); + gobj(), Glib::c_str_or_nullptr(group_name), key.c_str(), list.data(), list.size()); } void KeyFile::set_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key, - const Glib::ustring& locale, const std::vector& list) + const Glib::ustring& locale, const Glib::ArrayHandle& list) { g_key_file_set_locale_string_list(gobj(), Glib::c_str_or_nullptr(group_name), key.c_str(), - locale.c_str(), Glib::ArrayHandler::vector_to_array(list).data(), list.size()); + locale.c_str(), list.data(), list.size()); } void KeyFile::set_integer_list( - const Glib::ustring& group_name, const Glib::ustring& key, const std::vector& list) + const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ArrayHandle& list) { g_key_file_set_integer_list(gobj(), Glib::c_str_or_nullptr(group_name), key.c_str(), - const_cast(Glib::ArrayHandler::vector_to_array(list).data()), list.size()); + const_cast(list.data()), list.size()); } void KeyFile::set_double_list( - const Glib::ustring& group_name, const Glib::ustring& key, const std::vector& list) + const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ArrayHandle& list) { g_key_file_set_double_list( - gobj(), group_name.c_str(), key.c_str(), const_cast(Glib::ArrayHandler::vector_to_array(list).data()), list.size()); + gobj(), group_name.c_str(), key.c_str(), const_cast(list.data()), list.size()); } void KeyFile::set_boolean_list( - const Glib::ustring& group_name, const Glib::ustring& key, const std::vector& list) + const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ArrayHandle& list) { g_key_file_set_boolean_list(gobj(), Glib::c_str_or_nullptr(group_name), key.c_str(), - const_cast(Glib::ArrayHandler::vector_to_array(list).data()), list.size()); + const_cast(list.data()), list.size()); } Glib::ustring diff --git a/glib/src/keyfile.hg b/glib/src/keyfile.hg index 584b9d3..80cd0ba 100644 --- a/glib/src/keyfile.hg +++ b/glib/src/keyfile.hg @@ -18,10 +18,10 @@ _DEFS(glibmm,glib) #include #include +#include #include #include #include -#include #ifndef DOXYGEN_SHOULD_SKIP_THIS extern "C" { typedef struct _GKeyFile GKeyFile; } @@ -30,6 +30,8 @@ extern "C" { typedef struct _GKeyFile GKeyFile; } namespace Glib { + _WRAP_ENUM(KeyFileFlags, GKeyFileFlags, NO_GTYPE) + /** Exception class for KeyFile errors. */ _WRAP_GERROR(KeyFileError, GKeyFileError, G_KEY_FILE_ERROR, NO_GTYPE) @@ -94,8 +96,6 @@ class KeyFile _CLASS_GENERIC(KeyFile, GKeyFile) public: - _WRAP_ENUM(Flags, GKeyFileFlags, NO_GTYPE) - //TODO: GKeyFile now seems to be a reference-counted type. //TODO: Maybe replace all the get_*/set_* methods with some generic get/set @@ -127,7 +127,7 @@ public: KeyFile(GKeyFile* castitem, bool takes_ownership = false); public: - _WRAP_METHOD(bool load_from_file(const std::string& file, Flags flags = Flags::NONE), g_key_file_load_from_file, errthrow) + _WRAP_METHOD(bool load_from_file(const std::string& file, KeyFileFlags flags = Glib::KEY_FILE_NONE), g_key_file_load_from_file, errthrow) /** Loads a KeyFile from memory * @param data The data to use as a KeyFile @@ -135,15 +135,17 @@ public: * @return true if the KeyFile was successfully loaded, false otherwise * @throw Glib::KeyFileError */ - bool load_from_data(const Glib::ustring& data, Flags flags = Flags::NONE); + bool load_from_data(const Glib::ustring& data, KeyFileFlags flags = Glib::KEY_FILE_NONE); _IGNORE(g_key_file_load_from_data) -#m4 _CONVERSION(`const std::vector& ', `const gchar**', `const_cast($3.data())') +#m4 _CONVERSION(`const Glib::ArrayHandle&', `const gchar**', `const_cast($3.data())') +#m4 _CONVERSION(`Glib::ArrayHandle&', `gchar**', `const_cast($3.data())') - _IGNORE(g_key_file_load_from_dirs) + _WRAP_METHOD(bool load_from_dirs(const std::string& file, const Glib::ArrayHandle& search_dirs, Glib::ArrayHandle& full_path, KeyFileFlags flags = Glib::KEY_FILE_NONE), + g_key_file_load_from_dirs, errthrow "Glib::KeyFileError, Glib::FileError", errthrow, deprecated "Use the load_from_dirs() method that takes a std::string& full_path.") _WRAP_METHOD_DOCS_ONLY(g_key_file_load_from_dirs, errthrow "Glib::KeyFileError, Glib::FileError") - bool load_from_dirs(const std::string& file, const std::vector& search_dirs, std::string& full_path, Flags flags = Flags::NONE); + bool load_from_dirs(const std::string& file, const Glib::ArrayHandle& search_dirs, std::string& full_path, KeyFileFlags flags = Glib::KEY_FILE_NONE); /** Looks for a KeyFile named @a file in the paths returned from * g_get_user_data_dir() and g_get_system_data_dirs() and loads them @@ -156,7 +158,7 @@ public: * @throw Glib::KeyFileError * @throw Glib::FileError */ - bool load_from_data_dirs(const std::string& file, std::string& full_path, Flags flags = Flags::NONE); + bool load_from_data_dirs(const std::string& file, std::string& full_path, KeyFileFlags flags = Glib::KEY_FILE_NONE); _IGNORE(g_key_file_load_from_data_dirs) /** Outputs the KeyFile as a string @@ -166,14 +168,14 @@ public: Glib::ustring to_data(); _IGNORE(g_key_file_to_data) - _WRAP_METHOD(bool save_to_file(const std::string& filename), g_key_file_save_to_file, errthrow "Glib::FileError") + _WRAP_METHOD(bool save_to_file(const std::string& filename), g_key_file_save_to_file, errthrow "Glib::FileError", errthrow) _WRAP_METHOD(Glib::ustring get_start_group() const, g_key_file_get_start_group) /** Gets a list of all groups in the KeyFile * @returns A list containing the names of the groups */ - std::vector get_groups() const; + Glib::ArrayHandle get_groups() const; _IGNORE(g_key_file_get_groups) /** Gets a list of all keys from the group @a group_name. @@ -181,7 +183,7 @@ public: * @returns A list containing the names of the keys in @a group_name * @throw Glib::KeyFileError */ - std::vector get_keys(const Glib::ustring& group_name) const; + Glib::ArrayHandle get_keys(const Glib::ustring& group_name) const; _IGNORE(g_key_file_get_keys) _WRAP_METHOD(bool has_group(const Glib::ustring& group_name) const, g_key_file_has_group) @@ -233,7 +235,7 @@ public: */ gint64 get_int64(const Glib::ustring& key) const; - _WRAP_METHOD(gint64 get_int64(const Glib::ustring& group_name, const Glib::ustring& key) const, g_key_file_get_int64, errthrow "Glib::KeyFileError") + _WRAP_METHOD(gint64 get_int64(const Glib::ustring& group_name, const Glib::ustring& key) const, g_key_file_get_int64, errthrow "Glib::KeyFileError", errthrow) /** Gets the value in the first group, under @a key, interpreting it as * an unsigned 64-bit integer. This is similar to get_integer() but can @@ -246,7 +248,7 @@ public: */ guint64 get_uint64(const Glib::ustring& key) const; - _WRAP_METHOD(guint64 get_uint64(const Glib::ustring& group_name, const Glib::ustring& key) const, g_key_file_get_uint64, errthrow "Glib::KeyFileError") + _WRAP_METHOD(guint64 get_uint64(const Glib::ustring& group_name, const Glib::ustring& key) const, g_key_file_get_uint64, errthrow "Glib::KeyFileError", errthrow) /** Gets the value in the first group, under @a key, interpreting it as * a double. @@ -278,7 +280,7 @@ public: * @return A list containing the values requested * @throw Glib::KeyFileError */ - std::vector get_string_list(const Glib::ustring& group_name, const Glib::ustring& key) const; + Glib::ArrayHandle get_string_list(const Glib::ustring& group_name, const Glib::ustring& key) const; _IGNORE(g_key_file_get_string_list) /** Returns the values associated with @a key under @a group_name @@ -288,7 +290,7 @@ public: * @return A list containing the values requested * @throw Glib::KeyFileError */ - std::vector get_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key) const; + Glib::ArrayHandle get_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key) const; /** Returns the values associated with @a key under @a group_name * translated into @a locale, if available. @@ -298,7 +300,7 @@ public: * @return A list containing the values requested * @throw Glib::KeyFileError */ - std::vector get_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale) const; + Glib::ArrayHandle get_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale) const; _IGNORE(g_key_file_get_locale_string_list) /** Returns the values associated with @a key under @a group_name @@ -307,7 +309,7 @@ public: * @return A list of booleans * @throw Glib::KeyFileError */ - std::vector get_boolean_list(const Glib::ustring& group_name, const Glib::ustring& key) const; + Glib::ArrayHandle get_boolean_list(const Glib::ustring& group_name, const Glib::ustring& key) const; _IGNORE(g_key_file_get_boolean_list) /** Returns the values associated with @a key under @a group_name @@ -316,7 +318,7 @@ public: * @return A list of integers * @throw Glib::KeyFileError */ - std::vector get_integer_list(const Glib::ustring& group_name, const Glib::ustring& key) const; + Glib::ArrayHandle get_integer_list(const Glib::ustring& group_name, const Glib::ustring& key) const; _IGNORE(g_key_file_get_integer_list) /** Returns the values associated with @a key under @a group_name @@ -325,7 +327,7 @@ public: * @return A list of doubles * @throw Glib::KeyFileError */ - std::vector get_double_list(const Glib::ustring& group_name, const Glib::ustring& key) const; + Glib::ArrayHandle get_double_list(const Glib::ustring& group_name, const Glib::ustring& key) const; _IGNORE(g_key_file_get_double_list) /** Get comment from top of file @@ -359,7 +361,7 @@ public: * @param key The name of a key * @param list A list holding objects of type Glib::ustring */ - void set_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const std::vector& list); + void set_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ArrayHandle& list); _IGNORE(g_key_file_set_string_list) /** Sets a list of string values for the @a key under @a group_name and marks @@ -370,7 +372,7 @@ public: * @param locale A locale * @param list A list holding objects of type Glib::ustring */ - void set_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale, const std::vector& list); + void set_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale, const Glib::ArrayHandle& list); _IGNORE(g_key_file_set_locale_string_list) /** Sets a list of booleans for the @a key under @a group_name. @@ -379,7 +381,7 @@ public: * @param key The name of a key * @param list A list holding object of type bool */ - void set_boolean_list(const Glib::ustring& group_name, const Glib::ustring& key, const std::vector& list); + void set_boolean_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ArrayHandle& list); _IGNORE(g_key_file_set_boolean_list) /** Sets a list of integers for the @a key under @a group_name. @@ -388,7 +390,7 @@ public: * @param key The name of a key * @param list A list holding object of type int */ - void set_integer_list(const Glib::ustring& group_name, const Glib::ustring& key, const std::vector& list); + void set_integer_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ArrayHandle& list); _IGNORE(g_key_file_set_integer_list) /** Sets a list of doubles for the @a key under @a group_name. @@ -399,7 +401,7 @@ public: * * @newin{2,14} */ - void set_double_list(const Glib::ustring& group_name, const Glib::ustring& key, const std::vector& list); + void set_double_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ArrayHandle& list); _IGNORE(g_key_file_set_double_list) diff --git a/glib/src/markup.hg b/glib/src/markup.hg index 8e014ba..bd1d24b 100644 --- a/glib/src/markup.hg +++ b/glib/src/markup.hg @@ -109,7 +109,17 @@ using Error = Glib::MarkupError; */ Glib::ustring escape_text(const Glib::ustring& text); -_WRAP_ENUM(ParseFlags, GMarkupParseFlags, NO_GTYPE) + +/** There are no flags right now. Pass Glib::Markup::ParseFlags(0) for + * the flags argument to all functions (this should be the default argument + * anyway). + */ +_WRAP_ENUM(ParseFlags, GMarkupParseFlags, NO_GTYPE, s#^MARKUP_##) + +/*! @var Markup::ParseFlags DO_NOT_USE_THIS_UNSUPPORTED_FLAG + * Flag you should not use. + */ + /** Binary predicate used by Markup::Parser::AttributeMap. * @ingroup Markup diff --git a/glib/src/miscutils.ccg b/glib/src/miscutils.ccg index 90043af..f11326d 100644 --- a/glib/src/miscutils.ccg +++ b/glib/src/miscutils.ccg @@ -74,10 +74,16 @@ unsetenv(const std::string& variable) g_unsetenv(variable.c_str()); } -std::vector +Glib::ArrayHandle listenv() { - return Glib::ArrayHandler::array_to_vector(g_listenv(), Glib::OWNERSHIP_DEEP); + char** value = g_listenv(); + char** end = value; + while (*end) + { + ++end; + } + return Glib::ArrayHandle(value, end - value, Glib::OWNERSHIP_DEEP); } std::string @@ -110,6 +116,14 @@ get_current_dir() return convert_return_gchar_ptr_to_stdstring(g_get_current_dir()); } +#ifndef GLIBMM_DISABLE_DEPRECATED +std::string +get_user_special_dir(GUserDirectory directory) +{ + return convert_const_gchar_ptr_to_stdstring(g_get_user_special_dir(directory)); +} +#endif // GLIBMM_DISABLE_DEPRECATED + std::string get_user_special_dir(UserDirectory directory) { @@ -131,13 +145,35 @@ get_user_config_dir() std::vector get_system_data_dirs() { - return Glib::ArrayHandler::array_to_vector(g_get_system_data_dirs(), Glib::OWNERSHIP_NONE); + // TODO: Use a utility function: + std::vector result; + const char* const* cresult = g_get_system_data_dirs(); + if (!cresult) + return result; + + for (const gchar* const* iter = cresult; *iter != nullptr; ++iter) + { + result.emplace_back(convert_const_gchar_ptr_to_stdstring(*iter)); + } + + return result; } std::vector get_system_config_dirs() { - return Glib::ArrayHandler::array_to_vector(g_get_system_config_dirs(), Glib::OWNERSHIP_NONE); + // TODO: Use a utility function: + std::vector result; + const char* const* cresult = g_get_system_config_dirs(); + if (!cresult) + return result; + + for (const gchar* const* iter = cresult; *iter != nullptr; ++iter) + { + result.emplace_back(convert_const_gchar_ptr_to_stdstring(*iter)); + } + + return result; } std::string @@ -173,10 +209,10 @@ path_get_dirname(const std::string& filename) } std::string -build_filename(const std::vector& elements) +build_filename(const Glib::ArrayHandle& elements) { return convert_return_gchar_ptr_to_stdstring( - g_build_filenamev(const_cast(Glib::ArrayHandler::vector_to_array(elements).data()))); + g_build_filenamev(const_cast(elements.data()))); } std::string @@ -247,10 +283,10 @@ build_filename(const std::string& elem1, const std::string& elem2, const std::st } std::string -build_path(const std::string& separator, const std::vector& elements) +build_path(const std::string& separator, const Glib::ArrayHandle& elements) { return convert_return_gchar_ptr_to_stdstring( - g_build_pathv(separator.c_str(), const_cast(Glib::ArrayHandler::vector_to_array(elements).data()))); + g_build_pathv(separator.c_str(), const_cast(elements.data()))); } std::string diff --git a/glib/src/miscutils.hg b/glib/src/miscutils.hg index ffc87f3..5b0ba58 100644 --- a/glib/src/miscutils.hg +++ b/glib/src/miscutils.hg @@ -16,12 +16,12 @@ _DEFS(glibmm,glib) +#include #include -#include namespace Glib { -_WRAP_ENUM(UserDirectory, GUserDirectory, NO_GTYPE, s#^DIRECTORY_##) +_WRAP_ENUM(UserDirectory, GUserDirectory, NO_GTYPE) _WRAP_ENUM(FormatSizeFlags, GFormatSizeFlags, NO_GTYPE) /** @defgroup MiscUtils Miscellaneous Utility Functions @@ -139,7 +139,7 @@ void unsetenv(const std::string& variable); * @return Array of environment names (The generic ArrayHandle will be * implicitly converted to any STL compatible container type). */ -std::vector listenv(); +Glib::ArrayHandle listenv(); /** Gets the user name of the current user. * @@ -181,6 +181,28 @@ std::string get_tmp_dir(); */ std::string get_current_dir(); +#ifndef GLIBMM_DISABLE_DEPRECATED +/** Returns the full path of a special directory using its logical id. + * + * On Unix this is done using the XDG special user directories. + * For compatibility with existing practise, G_USER_DIRECTORY_DESKTOP + * falls back to `$HOME/Desktop` when XDG special user directories have + * not been set up. + * + * Depending on the platform, the user might be able to change the path + * of the special directory without requiring the session to restart; GLib + * will not reflect any change once the special directories are loaded. + * + * @param directory The logical id of special directory. + * @return The path to the specified special directory, or an empty string + * if the logical id was not found. + * + * @newin{2,14} + * @deprecated Use get_user_special_dir(Glib::UserDirectory directory) instead. + */ +std::string get_user_special_dir(GUserDirectory directory); +#endif // GLIBMM_DISABLE_DEPRECATED + /** Returns the full path of a special directory using its logical id. * * On Unix this is done using the XDG special user directories. @@ -283,7 +305,7 @@ std::string path_get_dirname(const std::string& filename); * Any STL compatible container type is accepted. * @return The resulting path. */ -std::string build_filename(const std::vector& elements); +std::string build_filename(const Glib::ArrayHandle& elements); /** Creates a filename from two elements using the correct separator for filenames. * No attempt is made to force the resulting filename to be an absolute path. @@ -449,7 +471,7 @@ std::string build_filename(const std::string& elem1, const std::string& elem2, * @return The resulting path. */ std::string build_path(const std::string& separator, - const std::vector& elements); + const Glib::ArrayHandle& elements); /** Locates the first executable named @a program in the user's path, in the * same way that execvp() would locate it. @@ -480,7 +502,7 @@ std::string find_program_in_path(const std::string& program); * 3292528 bytes will be converted into the string "3.2 MB". * * The prefix units base is 1000 (i.e. 1 kB is 1000 bytes), unless the - * Glib::FormatSizeFlags::IEC_UNITS flag is set. + * Glib::FORMAT_SIZE_IEC_UNITS flag is set. * * @param size A size in bytes. * @param flags Flags to modify the output. @@ -488,7 +510,7 @@ std::string find_program_in_path(const std::string& program); * * @newin{2,46} */ -Glib::ustring format_size(guint64 size, FormatSizeFlags flags = FormatSizeFlags::DEFAULT); +Glib::ustring format_size(guint64 size, FormatSizeFlags flags = FORMAT_SIZE_DEFAULT); /** @} group MiscUtils */ diff --git a/glib/src/module.ccg b/glib/src/module.ccg index 6322cae..139e913 100644 --- a/glib/src/module.ccg +++ b/glib/src/module.ccg @@ -20,7 +20,7 @@ namespace Glib { -Module::Module(const std::string& file_name, Flags flags) +Module::Module(const std::string& file_name, ModuleFlags flags) : gobject_(g_module_open(file_name.c_str(), (GModuleFlags)flags)) { } diff --git a/glib/src/module.hg b/glib/src/module.hg index 89ddedf..ecfb202 100644 --- a/glib/src/module.hg +++ b/glib/src/module.hg @@ -25,6 +25,8 @@ extern "C" { typedef struct _GModule GModule; } namespace Glib { +_WRAP_ENUM(ModuleFlags, GModuleFlags, NO_GTYPE) + //TODO: Replace get_last_error() with exceptions? //Provide operator()? @@ -42,8 +44,6 @@ class Module public: - _WRAP_ENUM(Flags, GModuleFlags, NO_GTYPE) - /** Opens a module. * * First of all it tries to open file_name as a module. If that @@ -68,7 +68,7 @@ public: * @param file_name The library filename to open * @param flags Flags to configure the load process */ - explicit Module(const std::string& file_name, Flags flags = Flags(0)); + explicit Module(const std::string& file_name, ModuleFlags flags = ModuleFlags(0)); Module(const Module&) = delete; Module& operator=(const Module&) = delete; diff --git a/glib/src/nodetree.hg b/glib/src/nodetree.hg index 1db7f1a..cdd526b 100644 --- a/glib/src/nodetree.hg +++ b/glib/src/nodetree.hg @@ -20,16 +20,30 @@ _DEFS(glibmm,glib) #include #include -#include -#include #include #include #include +#include #include namespace Glib { +//Hand-written, instead of using _WRAP_ENUM, +//because the C enum values don't have a prefix. + +/** Specifies the type of traveral performed by methods such as NodeTree::_traverse() and NodeTree::find(). + * + * @ingroup glibmmEnums + */ +enum TraverseType +{ + TRAVERSE_IN_ORDER = G_IN_ORDER, /*!< Visits a node's left child first, then the node itself, then its right child. This is the one to use if you want the output sorted according to the compare function. */ + TRAVERSE_PRE_ORDER = G_PRE_ORDER, /*!< Visits a node, then its children. */ + TRAVERSE_POST_ORDER = G_POST_ORDER, /*!< Visits the node's children, then the node itself. */ + TRAVERSE_LEVEL_ORDER = G_LEVEL_ORDER /*!< For NodeTree, it vists the root node first, then its children, then its grandchildren, and so on. Note that this is less efficient than the other orders. This is not implemented for Glib::Tree. */ +}; + /** N-ary Trees - trees of data with any number of branches * The NodeTree class and its associated functions provide an N-ary tree data structure, in which nodes in the tree can contain arbitrary data. * @@ -54,10 +68,8 @@ class NodeTree { _CLASS_GENERIC(NodeTree, GNode) public: - _WRAP_ENUM(TraverseType, GTraverseType, NO_GTYPE) - - using TraverseFunc = sigc::slot&)>; - using ForeachFunc = sigc::slot&)>; + using TraverseFunc = sigc::slot&>; + using ForeachFunc = sigc::slot&>; private: static NodeTree* wrap(GNode* node) @@ -269,19 +281,18 @@ public: } _IGNORE(g_node_get_root) - // Can't use _WRAP_ENUM for a Flags-type enum in a template class. - // gmmproc would get the bitwise operators wrong. + /** Specifies which nodes are visited during several of the NodeTree methods, * including traverse() and find(). * * @ingroup glibmmEnums */ - enum class TraverseFlags + enum TraverseFlags { - LEAVES = G_TRAVERSE_LEAVES, /*!< Only leaf nodes should be visited. */ - NON_LEAVES = G_TRAVERSE_NON_LEAVES, /*!< Only non-leaf nodes should be visited. */ - ALL = G_TRAVERSE_ALL, /*!< All nodes should be visited. */ - MASK = G_TRAVERSE_MASK /*!< A mask of all traverse flags. */ + TRAVERSE_LEAVES = G_TRAVERSE_LEAVES, /*!< Only leaf nodes should be visited. */ + TRAVERSE_NON_LEAVES = G_TRAVERSE_NON_LEAVES, /*!< Only non-leaf nodes should be visited. */ + TRAVERSE_ALL = G_TRAVERSE_ALL, /*!< All nodes should be visited. */ + TRAVERSE_MASK = G_TRAVERSE_MASK /*!< A mask of all traverse flags. */ }; /** Traverses a tree starting at the current node. @@ -297,7 +308,7 @@ public: * If max_depth is 2, the root and its children are visited. And so on. * @param func the slot to invoke for each visited child */ - void traverse(const TraverseFunc& func, TraverseType order = TraverseType::IN_ORDER, TraverseFlags flags = TraverseFlags::ALL, int max_depth = -1) + void traverse(const TraverseFunc& func, TraverseType order = TRAVERSE_IN_ORDER, TraverseFlags flags = TRAVERSE_ALL, int max_depth = -1) { TraverseFunc func_copy = func; g_node_traverse(gobj(), (GTraverseType)order, (GTraverseFlags)flags, max_depth, c_callback_traverse, reinterpret_cast(&func_copy)); @@ -310,7 +321,7 @@ public: * @param flags Wwhich types of children are to be visited. * @param func The slot to invoke for each visited node. */ - void foreach(const ForeachFunc& func, TraverseFlags flags = TraverseFlags::ALL) + void foreach(const ForeachFunc& func, TraverseFlags flags = TRAVERSE_ALL) { ForeachFunc func_copy = func; g_node_children_foreach(gobj(), (GTraverseFlags)flags, c_callback_foreach, reinterpret_cast(&func_copy)); @@ -319,16 +330,16 @@ public: /** Finds the first child of a NodeTree with the given data. * - * @param flags Which types of children are to be visited, one of TraverseFlags::ALL, TraverseFlags::LEAVES or TraverseFlags::NON_LEAVES. + * @param flags Which types of children are to be visited, one of TRAVERSE_ALL, TRAVERSE_LEAVES and TRAVERSE_NON_LEAVES. * @param the_data The data for which to search. * @return the found child, or nullptr if the data is not found */ - NodeTree* find_child(const T& the_data, TraverseFlags flags = TraverseFlags::ALL) + NodeTree* find_child(const T& the_data, TraverseFlags flags = TRAVERSE_ALL) { - sigc::slot real_slot = sigc::ptr_fun(on_compare_child); + sigc::slot real_slot = sigc::ptr_fun(on_compare_child); GNode* child = nullptr; - using type_foreach_gnode_slot = sigc::slot; + using type_foreach_gnode_slot = sigc::slot; type_foreach_gnode_slot bound_slot = sigc::bind(real_slot, the_data, &child); g_node_children_foreach(gobj(), (GTraverseFlags)flags, c_callback_foreach_compare_child, reinterpret_cast(&bound_slot)); @@ -338,11 +349,11 @@ public: /** Finds the first child of a NodeTree with the given data. * - * @param flags Which types of children are to be visited, one of TraverseFlags::ALL, TraverseFlags::LEAVES or TraverseFlags::NON_LEAVES. + * @param flags Which types of children are to be visited, one of TRAVERSE_ALL, TRAVERSE_LEAVES and TRAVERSE_NON_LEAVES. * @param the_data The data for which to search. * @return the found child, or nullptr if the data is not found */ - const NodeTree* find_child(const T& the_data, TraverseFlags flags = TraverseFlags::ALL) const + const NodeTree* find_child(const T& the_data, TraverseFlags flags = TRAVERSE_ALL) const { return const_cast*>(this)->find_child(flags, the_data); } @@ -351,18 +362,18 @@ public: /** Finds a node in a tree. * - * @param order The order in which nodes are visited: TraverseType::IN_ORDER, TraverseType::PRE_ORDER, TraverseType::POST_ORDER, or TraverseType::LEVEL_ORDER - * @param flags Which types of children are to be visited: one of TraverseFlags::ALL, TraverseFlags::LEAVES or TraverseFlags::NON_LEAVES. + * @param order The order in which nodes are visited: IN_ORDER, TRAVERSE_PRE_ORDER, TRAVERSE_POST_ORDER, or TRAVERSE_LEVEL_ORDER + * @param flags Which types of children are to be visited: one of TRAVERSE_ALL, TRAVERSE_LEAVES and TRAVERSE_NON_LEAVES. * @param the_data The data for which to search. * @return The found node, or nullptr if the data is not found. */ - NodeTree* find(const T& the_data, TraverseType order = TraverseType::IN_ORDER, TraverseFlags flags = TraverseFlags::ALL) + NodeTree* find(const T& the_data, TraverseType order = TRAVERSE_IN_ORDER, TraverseFlags flags = TRAVERSE_ALL) { //We use a sigc::slot for the C callback, so we can bind some extra data. - sigc::slot real_slot = sigc::ptr_fun(on_compare_node); + sigc::slot real_slot = sigc::ptr_fun(on_compare_node); GNode* child = nullptr; - using type_traverse_gnode_slot = sigc::slot; + using type_traverse_gnode_slot = sigc::slot; type_traverse_gnode_slot bound_slot = sigc::bind(real_slot, the_data, &child); g_node_traverse(const_cast(gobj()), (GTraverseType)order, (GTraverseFlags)flags, -1, c_callback_traverse_compare_node, reinterpret_cast(&bound_slot)); @@ -377,7 +388,7 @@ public: * @param the_data The data for which to search. * @return The found node, or nullptr if the data is not found. */ - const NodeTree* find(const T& the_data, TraverseType order = TraverseType::IN_ORDER, TraverseFlags flags = TraverseFlags::ALL) const + const NodeTree* find(const T& the_data, TraverseType order = TRAVERSE_IN_ORDER, TraverseFlags flags = TRAVERSE_ALL) const { return const_cast*>(this)->find(order, flags, the_data); } @@ -580,10 +591,10 @@ public: /** Gets the number of nodes in a tree. * - * @param flags Which types of children are to be counted: one of TraverseFlags::ALL, TraverseFlags::LEAVES or TraverseFlags::NON_LEAVES + * @param flags Which types of children are to be counted: one of TRAVERSE_ALL, TRAVERSE_LEAVES and TRAVERSE_NON_LEAVES * @return The number of nodes in the tree. */ - guint node_count(TraverseFlags flags = TraverseFlags::ALL) const + guint node_count(TraverseFlags flags = TRAVERSE_ALL) const { return g_node_n_nodes(const_cast(gobj()), (GTraverseFlags)flags); } @@ -720,7 +731,7 @@ private: } } - /// Wrapper for invoking a sigc::slot (Internal use). + /// Wrapper for invoking a sigc::slot (Internal use). static void c_callback_foreach_compare_child(GNode* node, gpointer data) { const ForeachFunc* slot = reinterpret_cast(data); @@ -738,7 +749,7 @@ private: return FALSE; } - /// Wrapper for invoking a sigc::slot (Internal use). + /// Wrapper for invoking a sigc::slot (Internal use). static gboolean c_callback_traverse_compare_node(GNode* node, gpointer data) { const TraverseFunc* slot = reinterpret_cast(data); diff --git a/glib/src/optioncontext.ccg b/glib/src/optioncontext.ccg index b63434e..2b44a73 100644 --- a/glib/src/optioncontext.ccg +++ b/glib/src/optioncontext.ccg @@ -93,15 +93,15 @@ OptionContext::~OptionContext() void OptionContext::add_group(OptionGroup& group) { - // GObjectContext takes ownership of the GOptionGroup, unrefing it later. - g_option_context_add_group(gobj(), group.gobj_copy()); + // Strangely, GObjectContext actually takes ownership of the GOptionGroup, deleting it later. + g_option_context_add_group(gobj(), (group).gobj_give_ownership()); } void OptionContext::set_main_group(OptionGroup& group) { - // GObjectContext takes ownership of the GOptionGroup, unrefing it later. - g_option_context_set_main_group(gobj(), group.gobj_copy()); + // Strangely, GObjectContext actually takes ownership of the GOptionGroup, deleting it later. + g_option_context_set_main_group(gobj(), (group).gobj_give_ownership()); } /* diff --git a/glib/src/optioncontext.hg b/glib/src/optioncontext.hg index 9672650..7c66591 100644 --- a/glib/src/optioncontext.hg +++ b/glib/src/optioncontext.hg @@ -98,8 +98,9 @@ public: //so it should be used carefully. For instance you could not access data in a derived class via this second instance. explicit OptionContext(GOptionContext* castitem, bool take_ownership = false); - OptionContext(const OptionContext& other) = delete; - OptionContext& operator=(const OptionContext& other) = delete; + //TODO?: + //OptionContext(const OptionContext& other) = delete; + //OptionContext& operator=(const OptionContext& other) = delete; OptionContext(OptionContext&& other) noexcept; OptionContext& operator=(OptionContext&& other) noexcept; @@ -115,7 +116,7 @@ public: _WRAP_METHOD(bool get_strict_posix() const, g_option_context_get_strict_posix) #m4 _CONVERSION(`char**&',`gchar***',`&($3)') - _WRAP_METHOD(bool parse(int& argc, char**& argv), g_option_context_parse, errthrow "Glib::OptionError, Glib::ConvertError") + _WRAP_METHOD(bool parse(int& argc, char**& argv), g_option_context_parse, errthrow "Glib::OptionError, Glib::ConvertError", errthrow) /** Parses the command line arguments. * @@ -199,7 +200,7 @@ public: * This function is used to translate user-visible strings, for --help output. * The function takes an untranslated string and returns a translated string */ - using SlotTranslate = sigc::slot; + using SlotTranslate = sigc::slot; /** * Sets the function which is used to translate user-visible diff --git a/glib/src/optionentry.ccg b/glib/src/optionentry.ccg index 4e56b4d..3d320b3 100644 --- a/glib/src/optionentry.ccg +++ b/glib/src/optionentry.ccg @@ -20,8 +20,6 @@ namespace Glib { -using Flags = OptionEntry::Flags; - OptionEntry::OptionEntry() { gobject_ = g_new0(GOptionEntry, 1); @@ -99,4 +97,44 @@ OptionEntry::operator=(OptionEntry&& other) noexcept return *this; } +void +OptionEntry::set_long_name(const Glib::ustring& value) +{ + if (gobject_->long_name) + { + g_free((gchar*)(gobject_->long_name)); + gobject_->long_name = nullptr; + } + + // Note that we do not use nullptr for an empty string, + // because G_OPTION_REMAINING is actually a "", so it actually has a distinct meaning: + // TODO: Wrap G_OPTION_REMAINING in C++ somehow, maybe as an explicit set_long_name(void) or + // set_is_remaining()? murrayc. + gobj()->long_name = (value).c_str() ? g_strdup((value).c_str()) : nullptr; +} + +void +OptionEntry::set_description(const Glib::ustring& value) +{ + if (gobject_->description) + { + g_free((gchar*)(gobject_->description)); + gobject_->description = nullptr; + } + + gobj()->description = (value).empty() ? nullptr : g_strdup((value).c_str()); +} + +void +OptionEntry::set_arg_description(const Glib::ustring& value) +{ + if (gobject_->arg_description) + { + g_free((gchar*)(gobject_->arg_description)); + gobject_->arg_description = nullptr; + } + + gobj()->arg_description = (value).empty() ? nullptr : g_strdup((value).c_str()); +} + } // namespace Glib diff --git a/glib/src/optionentry.hg b/glib/src/optionentry.hg index bf9847d..d1f1ecc 100644 --- a/glib/src/optionentry.hg +++ b/glib/src/optionentry.hg @@ -22,6 +22,7 @@ _DEFS(glibmm,glib) extern "C" { typedef struct _GOptionEntry GOptionEntry; } #endif + namespace Glib { @@ -43,7 +44,17 @@ class OptionEntry _CLASS_GENERIC(OptionEntry, GOptionEntry) public: - _WRAP_ENUM(Flags, GOptionFlags, NO_GTYPE) + //Copied from goption.h, instead of generated, so that we can put it inside the class. + enum Flags + { + FLAG_HIDDEN = 1 << 0, + FLAG_IN_MAIN = 1 << 1, + FLAG_REVERSE = 1 << 2, + FLAG_NO_ARG = 1 << 3, + FLAG_FILENAME = 1 << 4, + FLAG_OPTIONAL_ARG = 1 << 5, + FLAG_NOALIAS = 1 << 6 + } GOptionFlags; OptionEntry(); OptionEntry(const OptionEntry& src); @@ -55,34 +66,30 @@ public: OptionEntry& operator=(const OptionEntry& src); - // We do not use nullptr for an empty string in set_long_name(), - // because G_OPTION_REMAINING is actually a "", so it has a distinct meaning. - // TODO: Wrap G_OPTION_REMAINING in C++ somehow, maybe as an overloaded - // set_long_name(void) or set_is_remaining()? murrayc. - #m4 _CONVERSION(`Glib::ustring',`const char*',`($3).c_str()') + //#m4 _CONVERSION(`Glib::ustring',`const gchar*',`($3).empty() ? nullptr : g_strdup(($3).c_str())') + _MEMBER_GET(long_name, long_name, Glib::ustring, const char*) - _MEMBER_SET_STR(long_name, long_name, Glib::ustring, const char*) + + void set_long_name(const Glib::ustring& value); _MEMBER_GET(short_name, short_name, gchar, gchar) _MEMBER_SET(short_name, short_name, gchar, gchar) -#m4 _CONVERSION(`int',`Flags',`static_cast($3)') - _MEMBER_GET(flags, flags, Flags, int) + _MEMBER_GET(flags, flags, int, int) -#m4 _CONVERSION(`Flags',`int',`static_cast($3)') /** Set one or more OptionEntry::Flags. - * Do not set Flags::FILENAME. Character encoding is chosen when the OptionEntry + * Do not set FLAG_FILENAME. Character encoding is chosen when the OptionEntry * is added to an OptionGroup. */ - _MEMBER_SET(flags, flags, Flags, int) + _MEMBER_SET(flags, flags, int, int) - // We use nullptr for an empty string in set_description() and set_arg_description(). - #m4 _CONVERSION(`Glib::ustring',`const char*',`Glib::c_str_or_nullptr($3)') _MEMBER_GET(description, description, Glib::ustring, const char*) - _MEMBER_SET_STR(description, description, Glib::ustring, const char*) + + void set_description(const Glib::ustring& value); _MEMBER_GET(arg_description, arg_description, Glib::ustring, const char*) - _MEMBER_SET_STR(arg_description, arg_description, Glib::ustring, const char*) + + void set_arg_description(const Glib::ustring& value); GOptionEntry* gobj() { return gobject_; } const GOptionEntry* gobj() const { return gobject_; } @@ -91,6 +98,7 @@ private: void release_gobject() noexcept; protected: + GOptionEntry* gobject_; }; diff --git a/glib/src/optiongroup.ccg b/glib/src/optiongroup.ccg index 1045849..f45c5a9 100644 --- a/glib/src/optiongroup.ccg +++ b/glib/src/optiongroup.ccg @@ -18,6 +18,7 @@ #include #include #include +//#include #include // g_malloc #include // std::memset() @@ -83,7 +84,7 @@ g_callback_pre_parse( try { - return option_group->on_pre_parse(cppContext); + return option_group->on_pre_parse(cppContext, *option_group); } catch (Glib::Error& err) { @@ -98,25 +99,18 @@ g_callback_pre_parse( static void g_callback_error( - GOptionContext* context, GOptionGroup* /* group */, gpointer data, GError** error) + GOptionContext* context, GOptionGroup* /* group */, gpointer data, GError** /* TODO error */) { - // GError** error is input data containing information on an error that - // has occurred before this function is called. + // TODO GError** error is input data containing information on an error that + // has occurred before this function is called. When API can be broken, + // the function prototype of on_error ought to be changed to + // void on_error(OptionContext& context, Error& error). OptionContext cppContext(context, false /* take_ownership */); auto option_group = static_cast(data); - if (option_group && error && *error) - { - try - { - Error::throw_exception(g_error_copy(*error)); - } - catch (const Error& err) - { - return option_group->on_error(cppContext, err); - } - } + if (option_group) + return option_group->on_error(cppContext, *option_group); } const gchar* @@ -173,7 +167,7 @@ OptionGroup::post_parse_callback( try { - return option_group->on_post_parse(cppContext); + return option_group->on_post_parse(cppContext, *option_group); } catch (Glib::Error& err) { @@ -275,7 +269,8 @@ OptionGroup::option_arg_callback( OptionGroup::OptionGroup(const Glib::ustring& name, const Glib::ustring& description, const Glib::ustring& help_description) : gobject_(g_option_group_new(name.c_str(), description.c_str(), help_description.c_str(), - this /* user_data */, nullptr /* destroy_func */)) + this /* user_data */, nullptr /* destroy_func */)), + has_ownership_(true) { // g_callback_pre_parse(), post_parse_callback(), g_callback_error(), and // option_arg_callback() depend on user_data being this. The first three @@ -288,11 +283,35 @@ OptionGroup::OptionGroup(const Glib::ustring& name, const Glib::ustring& descrip g_option_group_set_error_hook(gobj(), &g_callback_error); } -OptionGroup::OptionGroup(GOptionGroup* castitem) : gobject_(castitem) +OptionGroup::OptionGroup(GOptionGroup* castitem) : gobject_(castitem), has_ownership_(true) { // Always takes ownership - never takes copy. } +OptionGroup::OptionGroup(OptionGroup&& other) noexcept + : map_entries_(std::move(other.map_entries_)), + gobject_(std::move(other.gobject_)), + has_ownership_(std::move(other.has_ownership_)) +{ + other.gobject_ = nullptr; + other.has_ownership_ = false; +} + +OptionGroup& +OptionGroup::operator=(OptionGroup&& other) noexcept +{ + release_gobject(); + + map_entries_ = std::move(other.map_entries_); + gobject_ = std::move(other.gobject_); + has_ownership_ = std::move(other.has_ownership_); + + other.gobject_ = nullptr; + other.has_ownership_ = false; + + return *this; +} + void OptionGroup::release_gobject() noexcept { @@ -303,7 +322,7 @@ OptionGroup::release_gobject() noexcept cpp_entry.release_c_arg(); } - if (gobject_) + if (has_ownership_ && gobject_) { g_option_group_unref(gobj()); gobject_ = nullptr; @@ -377,7 +396,7 @@ OptionGroup::add_entry_filename(const OptionEntry& entry, vecstrings& arg) } // When the command argument value is to be parsed by a user-supplied function -// (indicated by G_OPTION_ARG_CALLBACK), the OptionEntry::Flags::FILENAME in 'entry' is ignored. +// (indicated by G_OPTION_ARG_CALLBACK), the FLAG_FILENAME in 'entry' is ignored. // set_c_arg_default() clears or sets it as required in a copy of 'entry'. // // The glib API is inconsistent here. The choice between UTF-8 and filename @@ -385,7 +404,7 @@ OptionGroup::add_entry_filename(const OptionEntry& entry, vecstrings& arg) // G_OPTION_ARG_STRING_ARRAY, and G_OPTION_ARG_FILENAME_ARRAY, which in glibmm // are set by OptionGroup::add_entry[_filename]. But when a callback function // is chosen, there is only G_OPTION_ARG_CALLBACK, and the encoding is chosen -// with OptionEntry::Flags::FILENAME. We do this automatiically in set_c_arg_default(). +// with G_OPTION_FLAG_FILENAME. We do this automatiically in set_c_arg_default(). // Other option flags are set by OptionEntry::set_flags(). void @@ -463,19 +482,19 @@ OptionGroup::add_entry_with_wrapper(const OptionEntry& entry, GOptionArg arg_typ } bool -OptionGroup::on_pre_parse(OptionContext& /* context */) +OptionGroup::on_pre_parse(OptionContext& /* context */, OptionGroup& /* group */) { return true; } bool -OptionGroup::on_post_parse(OptionContext& /* context */) +OptionGroup::on_post_parse(OptionContext& /* context */, OptionGroup& /* group */) { return true; } void -OptionGroup::on_error(OptionContext& /* context */, const Error& /* error */) +OptionGroup::on_error(OptionContext& /* context */, OptionGroup& /* group */) { } @@ -552,27 +571,20 @@ OptionGroup::CppOptionEntry::allocate_c_arg() case G_OPTION_ARG_CALLBACK: { // The C arg pointer is a function pointer, cast to void*. - union { - void* dp; - GOptionArgFunc fp; - } u; - u.fp = &OptionGroup::option_arg_callback; - carg_ = u.dp; - - // With all compiler warnings turned on and a high optimization level - // it's difficult to cast a function pointer to a void*. See bug 589197. - // A few results with g++ 4.4.5 with the flags -pedantic -O2 -Werror: - // - // carg_ = reinterpret_cast(&OptionGroup::option_arg_callback); - // error: ISO C++ forbids casting between pointer-to-function and pointer-to-object - // - // *reinterpret_cast(&carg_) = &OptionGroup::option_arg_callback; - // *(OptionArgFunc*)&carg_ = &OptionGroup::option_arg_callback; - // error: dereferencing type-punned pointer will break strict-aliasing rules // - // If any compiler dislikes the union, the following code is worth testing: - // carg_ = reinterpret_cast( - // reinterpret_cast(&OptionGroup::option_arg_callback)); + // carg_ = reinterpret_cast(&OptionGroup::option_arg_callback); + // or + // union { + // void* dp; + // GOptionArgFunc fp; + // } u; + // u.fp = &OptionGroup::option_arg_callback; + // carg_ = u.dp; + // ? See + // https://bugzilla.gnome.org/show_bug.cgi?id=589197 + // https://github.com/libsigcplusplus/libsigcplusplus/issues/1 + // https://github.com/libsigcplusplus/libsigcplusplus/issues/8 + carg_ = reinterpret_cast(&OptionGroup::option_arg_callback); break; } @@ -620,15 +632,15 @@ OptionGroup::CppOptionEntry::set_c_arg_default(void* cpp_arg) { // No value to set here. The arg pointer is a function pointer. - // Set or clear OptionEntry::Flags::FILENAME in *entry_. + // Set or clear FLAG_FILENAME in *entry_. const OptionArgCallback* const option_arg = static_cast(cpp_arg); if (option_arg->is_filename_option()) { - entry_->set_flags(entry_->get_flags() | OptionEntry::Flags::FILENAME); + entry_->set_flags(entry_->get_flags() | OptionEntry::FLAG_FILENAME); } else { - entry_->set_flags(entry_->get_flags() & ~OptionEntry::Flags::FILENAME); + entry_->set_flags(entry_->get_flags() & ~OptionEntry::FLAG_FILENAME); } break; } @@ -758,7 +770,7 @@ OptionGroup::CppOptionEntry::convert_c_to_cpp() typed_cpp_arg->clear(); // The C array is null-terminated. - // std::vector array_handle(*typed_arg, Glib::OWNERSHIP_NONE); + // Glib::StringArrayHandle array_handle(*typed_arg, Glib::OWNERSHIP_NONE); // The SUN Forte compiler complains about this: // "optiongroup.cc", line 354: Error: Cannot assign Glib::ArrayHandle(Glib::wrap_auto(cobj, false /* take_copy */)); - // for(auto iter = array_handle.begin(); iter != + // for(Glib::StringArrayHandle::iterator iter = array_handle.begin(); iter != // array_handle.end(); ++iter) //{ // typed_cpp_arg->emplace_back(*iter); @@ -828,9 +840,10 @@ OptionGroup::CppOptionEntry::convert_c_to_cpp() } GOptionGroup* -OptionGroup::gobj_copy() const +OptionGroup::gobj_give_ownership() { - return g_option_group_ref(gobject_); + has_ownership_ = false; + return gobj(); } } // namespace Glib diff --git a/glib/src/optiongroup.hg b/glib/src/optiongroup.hg index 6ef64cd..c1c8b40 100644 --- a/glib/src/optiongroup.hg +++ b/glib/src/optiongroup.hg @@ -16,7 +16,6 @@ _DEFS(glibmm,glib) -#include #include #include #include @@ -37,16 +36,8 @@ class OptionEntry; class OptionContext; #endif //DOXYGEN_SHOULD_SKIP_THIS -// GOptionGroup is now refcounted. See https://bugzilla.gnome.org/show_bug.cgi?id=743349 -// But Glib::OptionGroup can't be a _CLASS_OPAQUE_REFCOUNTED, because it has -// other data members than gobject_. The memory management would be more involved -// if Glib::OptionGroup were refcounted. It would need a separate refcount for the -// wrapper, like in Glib::IOChannel and Glib::Source. It's easier and good enough -// to let Glib::OptionGroup remain non-refcounted. GOptionGroup's refcount still helps. -// E.g. when GOptionContext takes ownership of a GOptionGroup, it's given a ref. -// A drawback with this approach is that it's possible to have more than one wrapper -// for one GOptionGroup, each wrapper with its own ref. - +//TODO: GOptionGroup is now refcounted. See https://bugzilla.gnome.org/show_bug.cgi?id=743349 +//When we can break API/ABI, make Glib::OptionGroup refcounted. _CLASS_OPAQUE_REFCOUNTED? /** An OptionGroup defines the options in a single group. * Libraries which need to parse commandline options are expected to provide a function that allows their OptionGroups to * be added to the application's OptionContext. @@ -57,17 +48,17 @@ class OptionGroup public: /** For example Glib::ustring on_translate(const Glib::ustring& original);. */ - using SlotTranslate = sigc::slot; + using SlotTranslate = sigc::slot; /** For example bool on_option_arg_string(const Glib::ustring& option_name, * const Glib::ustring& value, bool has_value);. */ - using SlotOptionArgString = sigc::slot; + using SlotOptionArgString = sigc::slot; /** For example bool on_option_arg_filename(const Glib::ustring& option_name, * const std::string& value, bool has_value);. */ - using SlotOptionArgFilename = sigc::slot; + using SlotOptionArgFilename = sigc::slot; OptionGroup(const Glib::ustring& name, const Glib::ustring& description, const Glib::ustring& help_description = Glib::ustring()); @@ -77,21 +68,16 @@ public: explicit OptionGroup(GOptionGroup* castitem); _IGNORE(g_option_group_new, g_option_group_ref) - // OptionGroup can't be copied or moved. The underlying GOptionGroup contains - // a pointer to the wrapper, set in the call to g_option_group_new(). - // That pointer can't be changed. - OptionGroup(const OptionGroup& other) = delete; - OptionGroup& operator=(const OptionGroup& other) = delete; - OptionGroup(OptionGroup&& other) = delete; - OptionGroup& operator=(OptionGroup&& other) = delete; + OptionGroup(OptionGroup&& other) noexcept; + OptionGroup& operator=(OptionGroup&& other) noexcept; virtual ~OptionGroup(); _IGNORE(g_option_group_free, g_option_group_unref) - virtual bool on_pre_parse(OptionContext& context); - virtual bool on_post_parse(OptionContext& context); - virtual void on_error(OptionContext& context, const Error& error); + virtual bool on_pre_parse(OptionContext& context, OptionGroup& group); + virtual bool on_post_parse(OptionContext& context, OptionGroup& group); + virtual void on_error(OptionContext& context, OptionGroup& group); _IGNORE(g_option_group_set_parse_hooks, g_option_group_set_error_hook) void add_entry(const OptionEntry& entry); @@ -180,14 +166,9 @@ public: _WRAP_METHOD(void set_translation_domain(const Glib::ustring& domain), g_option_group_set_translation_domain) - /// Provides access to the underlying C instance. GOptionGroup* gobj() { return gobject_; } - - /// Provides access to the underlying C instance. const GOptionGroup* gobj() const { return gobject_; } - - /// Provides access to the underlying C instance. The caller is responsible for unrefing it. - GOptionGroup* gobj_copy() const; + GOptionGroup* gobj_give_ownership(); protected: @@ -219,10 +200,11 @@ protected: gpointer data, GError** error); //Map of entry names to CppOptionEntry: - using type_map_entries = std::map; + typedef std::map type_map_entries; type_map_entries map_entries_; GOptionGroup* gobject_; + bool has_ownership_; //Whether the gobject_ belongs to this C++ instance. #endif //DOXYGEN_SHOULD_SKIP_THIS private: diff --git a/glib/src/regex.ccg b/glib/src/regex.ccg index 86272bc..9ceb1a3 100644 --- a/glib/src/regex.ccg +++ b/glib/src/regex.ccg @@ -16,15 +16,12 @@ #include -using CompileFlags = Glib::Regex::CompileFlags; -using MatchFlags = Glib::Regex::MatchFlags; - namespace Glib { Glib::RefPtr Regex::create( - const Glib::ustring& pattern, CompileFlags compile_options, MatchFlags match_options) + const Glib::ustring& pattern, RegexCompileFlags compile_options, RegexMatchFlags match_options) { GError* gerror = nullptr; auto regex = g_regex_new( @@ -46,7 +43,7 @@ Regex::escape_string(const Glib::ustring& string) bool Regex::match( - const Glib::ustring& string, Glib::MatchInfo& match_info, MatchFlags match_options) + const Glib::ustring& string, Glib::MatchInfo& match_info, RegexMatchFlags match_options) { GMatchInfo* ginfo = nullptr; bool const result = static_cast( @@ -56,14 +53,14 @@ Regex::match( } bool -Regex::match(const Glib::ustring& string, MatchFlags match_options) +Regex::match(const Glib::ustring& string, RegexMatchFlags match_options) { return g_regex_match(gobj(), string.c_str(), (GRegexMatchFlags)(match_options), nullptr); } bool Regex::match(const Glib::ustring& string, int start_position, Glib::MatchInfo& match_info, - MatchFlags match_options) + RegexMatchFlags match_options) { GError* gerror = nullptr; GMatchInfo* ginfo = nullptr; @@ -80,7 +77,7 @@ Regex::match(const Glib::ustring& string, int start_position, Glib::MatchInfo& m bool Regex::match(const Glib::ustring& string, gssize string_len, int start_position, - Glib::MatchInfo& match_info, MatchFlags match_options) + Glib::MatchInfo& match_info, RegexMatchFlags match_options) { GError* gerror = nullptr; GMatchInfo* ginfo = nullptr; @@ -96,7 +93,7 @@ Regex::match(const Glib::ustring& string, gssize string_len, int start_position, } bool -Regex::match(const Glib::ustring& string, int start_position, MatchFlags match_options) +Regex::match(const Glib::ustring& string, int start_position, RegexMatchFlags match_options) { GError* gerror = nullptr; bool retvalue = g_regex_match_full(gobj(), string.c_str(), -1, start_position, @@ -109,7 +106,7 @@ Regex::match(const Glib::ustring& string, int start_position, MatchFlags match_o bool Regex::match( - const Glib::ustring& string, gssize string_len, int start_position, MatchFlags match_options) + const Glib::ustring& string, gssize string_len, int start_position, RegexMatchFlags match_options) { GError* gerror = nullptr; bool retvalue = g_regex_match_full(gobj(), string.c_str(), string_len, start_position, @@ -122,7 +119,7 @@ Regex::match( bool Regex::match_all( - const Glib::ustring& string, Glib::MatchInfo& match_info, MatchFlags match_options) + const Glib::ustring& string, Glib::MatchInfo& match_info, RegexMatchFlags match_options) { GMatchInfo* ginfo = nullptr; bool const result = static_cast(g_regex_match_all( @@ -132,14 +129,14 @@ Regex::match_all( } bool -Regex::match_all(const Glib::ustring& string, MatchFlags match_options) +Regex::match_all(const Glib::ustring& string, RegexMatchFlags match_options) { return g_regex_match_all(gobj(), string.c_str(), ((GRegexMatchFlags)(match_options)), nullptr); } bool Regex::match_all(const Glib::ustring& string, int start_position, Glib::MatchInfo& match_info, - MatchFlags match_options) + RegexMatchFlags match_options) { GError* gerror = nullptr; GMatchInfo* ginfo = nullptr; @@ -156,7 +153,7 @@ Regex::match_all(const Glib::ustring& string, int start_position, Glib::MatchInf bool Regex::match_all(const Glib::ustring& string, gssize string_len, int start_position, - Glib::MatchInfo& match_info, MatchFlags match_options) + Glib::MatchInfo& match_info, RegexMatchFlags match_options) { GError* gerror = nullptr; GMatchInfo* ginfo = nullptr; @@ -172,7 +169,7 @@ Regex::match_all(const Glib::ustring& string, gssize string_len, int start_posit } bool -Regex::match_all(const Glib::ustring& string, int start_position, MatchFlags match_options) +Regex::match_all(const Glib::ustring& string, int start_position, RegexMatchFlags match_options) { GError* gerror = nullptr; bool retvalue = g_regex_match_all_full(gobj(), string.c_str(), -1, start_position, @@ -185,7 +182,7 @@ Regex::match_all(const Glib::ustring& string, int start_position, MatchFlags mat bool Regex::match_all( - const Glib::ustring& string, gssize string_len, int start_position, MatchFlags match_options) + const Glib::ustring& string, gssize string_len, int start_position, RegexMatchFlags match_options) { GError* gerror = nullptr; bool retvalue = g_regex_match_all_full(gobj(), string.c_str(), string_len, start_position, @@ -198,7 +195,7 @@ Regex::match_all( Glib::ustring Regex::replace(const Glib::ustring& string, int start_position, const Glib::ustring& replacement, - MatchFlags match_options) + RegexMatchFlags match_options) { GError* gerror = nullptr; auto retvalue = Glib::convert_return_gchar_ptr_to_ustring(g_regex_replace(gobj(), string.c_str(), @@ -211,7 +208,7 @@ Regex::replace(const Glib::ustring& string, int start_position, const Glib::ustr Glib::ustring Regex::replace_literal(const Glib::ustring& string, int start_position, - const Glib::ustring& replacement, MatchFlags match_options) + const Glib::ustring& replacement, RegexMatchFlags match_options) { GError* gerror = nullptr; auto retvalue = @@ -223,12 +220,12 @@ Regex::replace_literal(const Glib::ustring& string, int start_position, return retvalue; } -std::vector -Regex::split(const Glib::ustring& string, int start_position, MatchFlags match_options, +Glib::StringArrayHandle +Regex::split(const Glib::ustring& string, int start_position, RegexMatchFlags match_options, int max_tokens) const { GError* gerror = nullptr; - auto retvalue = Glib::ArrayHandler::array_to_vector( + auto retvalue = Glib::StringArrayHandle( g_regex_split_full(const_cast(gobj()), string.c_str(), -1, start_position, ((GRegexMatchFlags)(match_options)), max_tokens, &(gerror)), Glib::OWNERSHIP_DEEP); @@ -238,50 +235,50 @@ Regex::split(const Glib::ustring& string, int start_position, MatchFlags match_o return retvalue; } -MatchInfo::MatchInfo() : gobject_(nullptr), take_ownership_(false) +MatchInfo::MatchInfo() : gobject_(nullptr), take_ownership(false) { } -MatchInfo::MatchInfo(GMatchInfo* castitem, bool take_ownership) -: gobject_(castitem), take_ownership_(take_ownership) +MatchInfo::MatchInfo(GMatchInfo* castitem, bool take_the_ownership) +: gobject_(castitem), take_ownership(take_the_ownership) { } MatchInfo::MatchInfo(MatchInfo&& other) noexcept : gobject_(std::move(other.gobject_)), - take_ownership_(std::move(other.take_ownership_)) + take_ownership(std::move(other.take_ownership)) { other.gobject_ = nullptr; - other.take_ownership_ = false; + other.take_ownership = false; } MatchInfo& MatchInfo::operator=(MatchInfo&& other) noexcept { - if (take_ownership_ && gobject_) + if (take_ownership && gobject_) g_match_info_free(gobject_); gobject_ = std::move(other.gobject_); - take_ownership_ = std::move(other.take_ownership_); + take_ownership = std::move(other.take_ownership); other.gobject_ = nullptr; - other.take_ownership_ = false; + other.take_ownership = false; return *this; } void -MatchInfo::set_gobject(GMatchInfo* castitem, bool take_ownership) +MatchInfo::set_gobject(GMatchInfo* castitem, bool take_the_ownership) { - if (gobject_ && this->take_ownership_) + if (gobject_ && this->take_ownership) g_match_info_free(gobject_); gobject_ = castitem; - this->take_ownership_ = take_ownership; + this->take_ownership = take_the_ownership; } MatchInfo::~MatchInfo() { - if (take_ownership_ && gobject_) + if (take_ownership && gobject_) g_match_info_free(gobject_); } diff --git a/glib/src/regex.hg b/glib/src/regex.hg index 68bca08..0555885 100644 --- a/glib/src/regex.hg +++ b/glib/src/regex.hg @@ -20,8 +20,8 @@ _DEFS(glibmm,glib) #include #include #include +#include #include -#include #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GRegex GRegex; @@ -30,6 +30,8 @@ typedef struct _GRegex GRegex; namespace Glib { +_WRAP_ENUM(RegexCompileFlags, GRegexCompileFlags, NO_GTYPE) +_WRAP_ENUM(RegexMatchFlags, GRegexMatchFlags, NO_GTYPE) /** Exception class for Regex */ @@ -96,11 +98,8 @@ class Regex final _IGNORE(g_regex_ref, g_regex_unref) public: - _WRAP_ENUM(CompileFlags, GRegexCompileFlags, NO_GTYPE) - _WRAP_ENUM(MatchFlags, GRegexMatchFlags, NO_GTYPE) - /// @throws Glib::RegexError - static Glib::RefPtr create(const Glib::ustring& pattern, CompileFlags compile_options = static_cast(0), MatchFlags match_options = static_cast(0)); + static Glib::RefPtr create(const Glib::ustring& pattern, RegexCompileFlags compile_options = static_cast(0), RegexMatchFlags match_options = static_cast(0)); _WRAP_METHOD(Glib::ustring get_pattern() const, g_regex_get_pattern) _WRAP_METHOD(int get_max_backref() const, g_regex_get_max_backref) @@ -108,22 +107,22 @@ public: _WRAP_METHOD(bool get_has_cr_or_lf() const, g_regex_get_has_cr_or_lf) _WRAP_METHOD(int get_max_lookbehind() const, g_regex_get_max_lookbehind) _WRAP_METHOD(int get_string_number(const Glib::ustring& name) const, g_regex_get_string_number) - _WRAP_METHOD(CompileFlags get_compile_flags() const, g_regex_get_compile_flags) - _WRAP_METHOD(MatchFlags get_match_flags() const, g_regex_get_match_flags) + _WRAP_METHOD(RegexCompileFlags get_compile_flags() const, g_regex_get_compile_flags) + _WRAP_METHOD(RegexMatchFlags get_match_flags() const, g_regex_get_match_flags) static Glib::ustring escape_string(const Glib::ustring& string); - _WRAP_METHOD(static bool match_simple(const Glib::ustring& pattern, const Glib::ustring& string, CompileFlags compile_options = static_cast(0), MatchFlags match_options = static_cast(0)), g_regex_match_simple) + _WRAP_METHOD(static bool match_simple(const Glib::ustring& pattern, const Glib::ustring& string, RegexCompileFlags compile_options = static_cast(0), RegexMatchFlags match_options = static_cast(0)), g_regex_match_simple) _WRAP_METHOD_DOCS_ONLY(g_regex_match) bool match( const Glib::ustring& string, Glib::MatchInfo& match_info, - MatchFlags match_options = static_cast(0) + RegexMatchFlags match_options = static_cast(0) ); /// A match() method not requiring a Glib::MatchInfo. - bool match(const Glib::ustring& string, MatchFlags match_options = static_cast(0)); + bool match(const Glib::ustring& string, RegexMatchFlags match_options = static_cast(0)); /** A match() method with a start position and a Glib::MatchInfo. * @throws Glib::RegexError @@ -132,7 +131,7 @@ public: const Glib::ustring& string, int start_position, Glib::MatchInfo& match_info, - MatchFlags match_options = static_cast(0) + RegexMatchFlags match_options = static_cast(0) ); _WRAP_METHOD_DOCS_ONLY(g_regex_match_full, errthrow "Glib::RegexError") @@ -141,28 +140,28 @@ public: gssize string_len, int start_position, Glib::MatchInfo& match_info, - MatchFlags match_options = static_cast(0) + RegexMatchFlags match_options = static_cast(0) ); /** A match() method with a start position not requiring a Glib::MatchInfo. * @throws Glib::RegexError */ - bool match(const Glib::ustring& string, int start_position, MatchFlags match_options); + bool match(const Glib::ustring& string, int start_position, RegexMatchFlags match_options); /** A match() method with a string length and start position not requiring a * Glib::MatchInfo. */ - bool match(const Glib::ustring& string, gssize string_len, int start_position, MatchFlags match_options); + bool match(const Glib::ustring& string, gssize string_len, int start_position, RegexMatchFlags match_options); _WRAP_METHOD_DOCS_ONLY(g_regex_match_all) bool match_all( const Glib::ustring& string, Glib::MatchInfo& match_info, - MatchFlags match_options = static_cast(0) + RegexMatchFlags match_options = static_cast(0) ); /// A match_all() method not requiring a Glib::MatchInfo. - bool match_all(const Glib::ustring& string, MatchFlags match_options = static_cast(0)); + bool match_all(const Glib::ustring& string, RegexMatchFlags match_options = static_cast(0)); /** A match_all() method with a start positon and a Glib::MatchInfo. * @throws Glib::RegexError @@ -171,7 +170,7 @@ public: const Glib::ustring& string, int start_position, Glib::MatchInfo& match_info, - MatchFlags match_options = static_cast(0) + RegexMatchFlags match_options = static_cast(0) ); _WRAP_METHOD_DOCS_ONLY(g_regex_match_all_full, errthrow "Glib::RegexError") @@ -180,39 +179,40 @@ public: gssize string_len, int start_position, Glib::MatchInfo& match_info, - MatchFlags match_options = static_cast(0) + RegexMatchFlags match_options = static_cast(0) ); /** A match_all() method with a start position not requiring a Glib::MatchInfo. * @throws Glib::RegexError */ - bool match_all(const Glib::ustring& string, int start_position, MatchFlags match_options); + bool match_all(const Glib::ustring& string, int start_position, RegexMatchFlags match_options); /** A match_all() method with a start position and a string length not * requiring a Glib::MatchInfo. * @throws Glib::RegexError */ - bool match_all(const Glib::ustring& string, gssize string_len, int start_position, MatchFlags match_options); + bool match_all(const Glib::ustring& string, gssize string_len, int start_position, RegexMatchFlags match_options); + +#m4 _CONVERSION(`gchar**',`Glib::StringArrayHandle',`Glib::StringArrayHandle($3, Glib::OWNERSHIP_DEEP)') -#m4 _CONVERSION(`gchar**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') - _WRAP_METHOD(static std::vector split_simple(const Glib::ustring& pattern, const Glib::ustring& string, CompileFlags compile_options = static_cast(0), MatchFlags match_options = static_cast(0)), g_regex_split_simple) - _WRAP_METHOD(std::vector split(const Glib::ustring& string, MatchFlags match_options = static_cast(0)), g_regex_split) + _WRAP_METHOD(static Glib::StringArrayHandle split_simple(const Glib::ustring& pattern, const Glib::ustring& string, RegexCompileFlags compile_options = static_cast(0), RegexMatchFlags match_options = static_cast(0)), g_regex_split_simple) + _WRAP_METHOD(Glib::StringArrayHandle split(const Glib::ustring& string, RegexMatchFlags match_options = static_cast(0)), g_regex_split) - _WRAP_METHOD(std::vector split(const gchar* string, gssize string_len, int start_position, MatchFlags match_options = static_cast(0), int max_tokens = 0) const, g_regex_split_full, errthrow "Glib::RegexError") + _WRAP_METHOD(Glib::StringArrayHandle split(const gchar* string, gssize string_len, int start_position, RegexMatchFlags match_options = static_cast(0), int max_tokens = 0) const, g_regex_split_full, errthrow "Glib::RegexError", errthrow) /// @throws Glib::RegexError - std::vector split(const Glib::ustring& string, int start_position, MatchFlags match_options, int max_tokens) const; + Glib::StringArrayHandle split(const Glib::ustring& string, int start_position, RegexMatchFlags match_options, int max_tokens) const; - _WRAP_METHOD(Glib::ustring replace(const gchar* string, gssize string_len, int start_position, const Glib::ustring& replacement, MatchFlags match_options = static_cast(0)), g_regex_replace, errthrow "Glib::RegexError") + _WRAP_METHOD(Glib::ustring replace(const gchar* string, gssize string_len, int start_position, const Glib::ustring& replacement, RegexMatchFlags match_options = static_cast(0)), g_regex_replace, errthrow "Glib::RegexError", errthrow) /// @throws Glib::RegexError - Glib::ustring replace(const Glib::ustring& string, int start_position, const Glib::ustring& replacement, MatchFlags match_options); + Glib::ustring replace(const Glib::ustring& string, int start_position, const Glib::ustring& replacement, RegexMatchFlags match_options); - _WRAP_METHOD(Glib::ustring replace_literal(const gchar *string, gssize string_len, int start_position, const Glib::ustring& replacement, MatchFlags match_options = static_cast(0)), g_regex_replace_literal, errthrow "Glib::RegexError") + _WRAP_METHOD(Glib::ustring replace_literal(const gchar *string, gssize string_len, int start_position, const Glib::ustring& replacement, RegexMatchFlags match_options = static_cast(0)), g_regex_replace_literal, errthrow "Glib::RegexError", errthrow) /// @throws Glib::RegexError - Glib::ustring replace_literal(const Glib::ustring& string, int start_position, const Glib::ustring& replacement, MatchFlags match_options); + Glib::ustring replace_literal(const Glib::ustring& string, int start_position, const Glib::ustring& replacement, RegexMatchFlags match_options); - _WRAP_METHOD(Glib::ustring replace_eval(const Glib::ustring& string, gssize string_len, int start_position, MatchFlags match_options, GRegexEvalCallback eval, gpointer user_data), g_regex_replace_eval, errthrow "Glib::RegexError") - _WRAP_METHOD(static bool check_replacement(const Glib::ustring& replacement, gboolean* has_references), g_regex_check_replacement, errthrow "Glib::RegexError") + _WRAP_METHOD(Glib::ustring replace_eval(const Glib::ustring& string, gssize string_len, int start_position, RegexMatchFlags match_options, GRegexEvalCallback eval, gpointer user_data), g_regex_replace_eval, errthrow "Glib::RegexError", errthrow) + _WRAP_METHOD(static bool check_replacement(const Glib::ustring& replacement, gboolean* has_references), g_regex_check_replacement, errthrow "Glib::RegexError", errthrow) }; //TODO: Add C++ iterator like functionality for this class. @@ -231,9 +231,10 @@ public: /** C object constructor. * @param castitem The C object. - * @param take_ownership Whether to destroy the C object with the wrapper or not. + * @param take_the_ownership Whether to destroy the C object with the wrapper or + * not. */ - explicit MatchInfo(GMatchInfo* castitem, bool take_ownership = true); + explicit MatchInfo(GMatchInfo* castitem, bool take_the_ownership = true); //TODO: Rename to take_ownership when we can rename the member variable. MatchInfo(const MatchInfo& other) = delete; MatchInfo& operator=(const MatchInfo& other) = delete; @@ -264,12 +265,12 @@ public: _WRAP_METHOD(Glib::ustring get_string() const, g_match_info_get_string) _WRAP_METHOD(bool matches() const, g_match_info_matches) - _WRAP_METHOD(bool next(), g_match_info_next, errthrow "Glib::RegexError") + _WRAP_METHOD(bool next(), g_match_info_next, errthrow "Glib::RegexError", errthrow) _WRAP_METHOD(int get_match_count() const, g_match_info_get_match_count) _WRAP_METHOD(bool is_partial_match() const, g_match_info_is_partial_match) - _WRAP_METHOD(Glib::ustring expand_references(const Glib::ustring& string_to_expand), g_match_info_expand_references, errthrow "Glib::RegexError") + _WRAP_METHOD(Glib::ustring expand_references(const Glib::ustring& string_to_expand), g_match_info_expand_references, errthrow "Glib::RegexError", errthrow) _WRAP_METHOD(Glib::ustring fetch(int match_num), g_match_info_fetch) @@ -279,11 +280,11 @@ public: _WRAP_METHOD(bool fetch_named_pos(const Glib::ustring& name, int& start_pos, int& end_pos), g_match_info_fetch_named_pos) - _WRAP_METHOD(std::vector fetch_all(), g_match_info_fetch_all) + _WRAP_METHOD(Glib::StringArrayHandle fetch_all(), g_match_info_fetch_all) protected: GMatchInfo* gobject_; // The C object. - bool take_ownership_; // Bool signaling ownership. + bool take_ownership; // Bool signaling ownership. //TODO: Give this a _ suffix when we can break API. protected: // So that Glib::Regex::match() can set the C object. diff --git a/glib/src/shell.ccg b/glib/src/shell.ccg index 940a9a3..901a63b 100644 --- a/glib/src/shell.ccg +++ b/glib/src/shell.ccg @@ -21,7 +21,7 @@ namespace Glib /**** shell utility functions **********************************************/ -std::vector +Glib::ArrayHandle shell_parse_argv(const std::string& command_line) { char** argv = nullptr; @@ -33,7 +33,7 @@ shell_parse_argv(const std::string& command_line) if (error) Glib::Error::throw_exception(error); - return Glib::ArrayHandler::array_to_vector(argv, argc, Glib::OWNERSHIP_DEEP); + return Glib::ArrayHandle(argv, argc, Glib::OWNERSHIP_DEEP); } std::string diff --git a/glib/src/shell.hg b/glib/src/shell.hg index 50736ea..6f0e2fc 100644 --- a/glib/src/shell.hg +++ b/glib/src/shell.hg @@ -16,10 +16,10 @@ _DEFS(glibmm,glib) +#include #include #include #include -#include namespace Glib { @@ -46,7 +46,7 @@ _WRAP_GERROR(ShellError, GShellError, G_SHELL_ERROR, NO_GTYPE) * converted to any STL compatible container type). * @throw Glib::ShellError */ -std::vector shell_parse_argv(const std::string& command_line); +Glib::ArrayHandle shell_parse_argv(const std::string& command_line); /** Quotes a string so that the shell (/bin/sh) will interpret the quoted * string to mean @a unquoted_string. If you pass a filename to the shell, diff --git a/glib/src/spawn.ccg b/glib/src/spawn.ccg index 8475244..221c4da 100644 --- a/glib/src/spawn.ccg +++ b/glib/src/spawn.ccg @@ -63,7 +63,7 @@ namespace Glib void spawn_async_with_pipes(const std::string& working_directory, - const std::vector& argv, const std::vector& envp, + const Glib::ArrayHandle& argv, const Glib::ArrayHandle& envp, SpawnFlags flags, const SlotSpawnChildSetup& child_setup, Pid* child_pid, int* standard_input, int* standard_output, int* standard_error) { @@ -72,7 +72,7 @@ spawn_async_with_pipes(const std::string& working_directory, GError* gerror = nullptr; g_spawn_async_with_pipes(Glib::c_str_or_nullptr(working_directory), - const_cast(Glib::ArrayHandler::vector_to_array(argv).data()), const_cast(Glib::ArrayHandler::vector_to_array(envp).data()), + const_cast(argv.data()), const_cast(envp.data()), static_cast(unsigned(flags)), (setup_slot) ? &child_setup_callback : nullptr, (setup_slot) ? &child_setup_ : nullptr, child_pid, standard_input, standard_output, standard_error, &gerror); @@ -83,7 +83,7 @@ spawn_async_with_pipes(const std::string& working_directory, void spawn_async_with_pipes(const std::string& working_directory, - const std::vector& argv, SpawnFlags flags, + const Glib::ArrayHandle& argv, SpawnFlags flags, const SlotSpawnChildSetup& child_setup, Pid* child_pid, int* standard_input, int* standard_output, int* standard_error) { @@ -92,7 +92,7 @@ spawn_async_with_pipes(const std::string& working_directory, GError* gerror = nullptr; g_spawn_async_with_pipes(Glib::c_str_or_nullptr(working_directory), - const_cast(Glib::ArrayHandler::vector_to_array(argv).data()), nullptr, static_cast(unsigned(flags)), + const_cast(argv.data()), nullptr, static_cast(unsigned(flags)), (setup_slot) ? &child_setup_callback : nullptr, (setup_slot) ? &child_setup_ : nullptr, child_pid, standard_input, standard_output, standard_error, &gerror); @@ -101,16 +101,16 @@ spawn_async_with_pipes(const std::string& working_directory, } void -spawn_async(const std::string& working_directory, const std::vector& argv, - const std::vector& envp, SpawnFlags flags, +spawn_async(const std::string& working_directory, const Glib::ArrayHandle& argv, + const Glib::ArrayHandle& envp, SpawnFlags flags, const SlotSpawnChildSetup& child_setup, Pid* child_pid) { const bool setup_slot = !child_setup.empty(); auto child_setup_ = child_setup; GError* gerror = nullptr; - g_spawn_async(Glib::c_str_or_nullptr(working_directory), const_cast(Glib::ArrayHandler::vector_to_array(argv).data()), - const_cast(Glib::ArrayHandler::vector_to_array(envp).data()), static_cast(unsigned(flags)), + g_spawn_async(Glib::c_str_or_nullptr(working_directory), const_cast(argv.data()), + const_cast(envp.data()), static_cast(unsigned(flags)), (setup_slot) ? &child_setup_callback : nullptr, (setup_slot) ? &child_setup_ : nullptr, child_pid, &gerror); @@ -119,14 +119,14 @@ spawn_async(const std::string& working_directory, const std::vector } void -spawn_async(const std::string& working_directory, const std::vector& argv, +spawn_async(const std::string& working_directory, const Glib::ArrayHandle& argv, SpawnFlags flags, const SlotSpawnChildSetup& child_setup, Pid* child_pid) { const bool setup_slot = !child_setup.empty(); auto child_setup_ = child_setup; GError* gerror = nullptr; - g_spawn_async(Glib::c_str_or_nullptr(working_directory), const_cast(Glib::ArrayHandler::vector_to_array(argv).data()), nullptr, + g_spawn_async(Glib::c_str_or_nullptr(working_directory), const_cast(argv.data()), nullptr, static_cast(unsigned(flags)), (setup_slot) ? &child_setup_callback : nullptr, (setup_slot) ? &child_setup_ : nullptr, child_pid, &gerror); @@ -135,8 +135,8 @@ spawn_async(const std::string& working_directory, const std::vector } void -spawn_sync(const std::string& working_directory, const std::vector& argv, - const std::vector& envp, SpawnFlags flags, +spawn_sync(const std::string& working_directory, const Glib::ArrayHandle& argv, + const Glib::ArrayHandle& envp, SpawnFlags flags, const SlotSpawnChildSetup& child_setup, std::string* standard_output, std::string* standard_error, int* exit_status) { @@ -146,8 +146,8 @@ spawn_sync(const std::string& working_directory, const std::vector& GError* gerror = nullptr; char* pch_buf_standard_output = nullptr; char* pch_buf_standard_error = nullptr; - g_spawn_sync(Glib::c_str_or_nullptr(working_directory), const_cast(Glib::ArrayHandler::vector_to_array(argv).data()), - const_cast(Glib::ArrayHandler::vector_to_array(envp).data()), static_cast(unsigned(flags)), + g_spawn_sync(Glib::c_str_or_nullptr(working_directory), const_cast(argv.data()), + const_cast(envp.data()), static_cast(unsigned(flags)), (setup_slot) ? &child_setup_callback : nullptr, (setup_slot) ? &child_setup_ : nullptr, (standard_output) ? &pch_buf_standard_output : nullptr, (standard_error) ? &pch_buf_standard_error : nullptr, exit_status, &gerror); @@ -162,7 +162,7 @@ spawn_sync(const std::string& working_directory, const std::vector& } void -spawn_sync(const std::string& working_directory, const std::vector& argv, +spawn_sync(const std::string& working_directory, const Glib::ArrayHandle& argv, SpawnFlags flags, const SlotSpawnChildSetup& child_setup, std::string* standard_output, std::string* standard_error, int* exit_status) { @@ -173,7 +173,7 @@ spawn_sync(const std::string& working_directory, const std::vector& char* pch_buf_standard_error = nullptr; GError* gerror = nullptr; - g_spawn_sync(Glib::c_str_or_nullptr(working_directory), const_cast(Glib::ArrayHandler::vector_to_array(argv).data()), nullptr, + g_spawn_sync(Glib::c_str_or_nullptr(working_directory), const_cast(argv.data()), nullptr, static_cast(unsigned(flags)), (setup_slot) ? &child_setup_callback : nullptr, (setup_slot) ? &child_setup_ : nullptr, (standard_output) ? &pch_buf_standard_output : nullptr, (standard_error) ? &pch_buf_standard_error : nullptr, exit_status, &gerror); diff --git a/glib/src/spawn.hg b/glib/src/spawn.hg index b6a05d6..f0a8506 100644 --- a/glib/src/spawn.hg +++ b/glib/src/spawn.hg @@ -17,10 +17,10 @@ _DEFS(glibmm,glib) #include +#include #include #include #include -#include namespace Glib { @@ -41,7 +41,7 @@ _WRAP_GERROR(SpawnError, GSpawnError, G_SPAWN_ERROR, NO_GTYPE, s#^2BIG$#TOOBIG#) /** For instance,
* void on_child_setup(); */ -using SlotSpawnChildSetup = sigc::slot; +using SlotSpawnChildSetup = sigc::slot; /** Executes a child program asynchronously (your program will not * block waiting for the child to exit). The child program is @@ -49,7 +49,7 @@ using SlotSpawnChildSetup = sigc::slot; * The first string in @a argv is of * course the name of the program to execute. By default, the name of * the program must be a full path; the PATH shell variable - * will only be searched if you pass the SpawnFlags::SEARCH_PATH flag. + * will only be searched if you pass the SPAWN_SEARCH_PATH flag. * * On Windows, note that all the string or string vector arguments to * this function and the other spawn*() functions are in UTF-8, the @@ -91,7 +91,7 @@ using SlotSpawnChildSetup = sigc::slot; * the child's environment. * * @a flags should be the bitwise OR of any flags you want to affect the - * function's behaviour. The SpawnFlags::DO_NOT_REAP_CHILD flags means that + * function's behaviour. The SPAWN_DO_NOT_REAP_CHILD flags means that * the child will not automatically be reaped; you must use a * ChildWatch source to be notified about the death of the child * process. Eventually you must call spawn_close_pid() on the @@ -105,19 +105,19 @@ using SlotSpawnChildSetup = sigc::slot; * PAWN_LEAVE_DESCRIPTORS_OPEN means that the parent's open file * descriptors will be inherited by the child; otherwise all * descriptors except stdin/stdout/stderr will be closed before - * calling exec() in the child. SpawnFlags::SEARCH_PATH + * calling exec() in the child. SPAWN_SEARCH_PATH * means that argv[0] need not be an absolute path, it * will be looked for in the user's PATH. - * SpawnFlags::STDOUT_TO_DEV_NULL means that the child's standard output will + * SPAWN_STDOUT_TO_DEV_NULL means that the child's standard output will * be discarded, instead of going to the same location as the parent's * standard output. If you use this flag, @a standard_output must be nullptr. - * SpawnFlags::STDERR_TO_DEV_NULL means that the child's standard error + * SPAWN_STDERR_TO_DEV_NULL means that the child's standard error * will be discarded, instead of going to the same location as the parent's * standard error. If you use this flag, @a standard_error must be nullptr. - * SpawnFlags::CHILD_INHERITS_STDIN means that the child will inherit the parent's + * SPAWN_CHILD_INHERITS_STDIN means that the child will inherit the parent's * standard input (by default, the child's standard input is attached to * /dev/null). If you use this flag, @a standard_input must be nullptr. - * SpawnFlags::FILE_AND_ARGV_ZERO means that the first element of @a argv is + * G_SPAWN_FILE_AND_ARGV_ZERO means that the first element of @a argv is * the file to execute, while the remaining elements are the * actual argument vector to pass to the file. Normally * spawn_async_with_pipes() uses argv[0] as the file to execute, and @@ -140,9 +140,9 @@ using SlotSpawnChildSetup = sigc::slot; * If non-nullptr, @a child_pid will on Unix be filled with the child's * process ID. You can use the process ID to send signals to the * child, or to use child_watch_add() (or waitpid()) if you specified the - * SpawnFlags::DO_NOT_REAP_CHILD flag. On Windows, @a child_pid will be + * SPAWN_DO_NOT_REAP_CHILD flag. On Windows, @a child_pid will be * filled with a handle to the child process only if you specified the - * SpawnFlags::DO_NOT_REAP_CHILD flag. You can then access the child + * SPAWN_DO_NOT_REAP_CHILD flag. You can then access the child * process using the Win32 API, for example wait for its termination * with the WaitFor*() functions, or examine its * exit code with GetExitCodeProcess(). You should close the handle @@ -156,14 +156,14 @@ using SlotSpawnChildSetup = sigc::slot; * pipe won't be created. * * If @a standard_input is nullptr, the child's standard input is attached to - * /dev/null unless SpawnFlags::CHILD_INHERITS_STDIN is set. + * /dev/null unless SPAWN_CHILD_INHERITS_STDIN is set. * * If @a standard_error is nullptr, the child's standard error goes to the same - * location as the parent's standard error unless SpawnFlags::STDERR_TO_DEV_NULL + * location as the parent's standard error unless SPAWN_STDERR_TO_DEV_NULL * is set. * * If @a standard_output is nullptr, the child's standard output goes to the same - * location as the parent's standard output unless SpawnFlags::STDOUT_TO_DEV_NULL + * location as the parent's standard output unless SPAWN_STDOUT_TO_DEV_NULL * is set. * * If @a child_pid is not nullptr and an error does not occur then the returned @@ -192,9 +192,9 @@ using SlotSpawnChildSetup = sigc::slot; * and @a standard_error will not be filled with valid values. */ void spawn_async_with_pipes(const std::string& working_directory, - const std::vector& argv, - const std::vector& envp, - SpawnFlags flags = SpawnFlags::DEFAULT, + const Glib::ArrayHandle& argv, + const Glib::ArrayHandle& envp, + SpawnFlags flags = SPAWN_DEFAULT, const SlotSpawnChildSetup& child_setup = SlotSpawnChildSetup(), Pid* child_pid = nullptr, int* standard_input = nullptr, @@ -219,8 +219,8 @@ void spawn_async_with_pipes(const std::string& working_directory, * and @a standard_error will not be filled with valid values. */ void spawn_async_with_pipes(const std::string& working_directory, - const std::vector& argv, - SpawnFlags flags = SpawnFlags::DEFAULT, + const Glib::ArrayHandle& argv, + SpawnFlags flags = SPAWN_DEFAULT, const SlotSpawnChildSetup& child_setup = SlotSpawnChildSetup(), Pid* child_pid = nullptr, int* standard_input = nullptr, @@ -249,9 +249,9 @@ void spawn_async_with_pipes(const std::string& working_directory, * to users. */ void spawn_async(const std::string& working_directory, - const std::vector& argv, - const std::vector& envp, - SpawnFlags flags = SpawnFlags::DEFAULT, + const Glib::ArrayHandle& argv, + const Glib::ArrayHandle& envp, + SpawnFlags flags = SPAWN_DEFAULT, const SlotSpawnChildSetup& child_setup = SlotSpawnChildSetup(), Pid* child_pid = nullptr); @@ -269,21 +269,21 @@ void spawn_async(const std::string& working_directory, * to users. */ void spawn_async(const std::string& working_directory, - const std::vector& argv, - SpawnFlags flags = SpawnFlags::DEFAULT, + const Glib::ArrayHandle& argv, + SpawnFlags flags = SPAWN_DEFAULT, const SlotSpawnChildSetup& child_setup = SlotSpawnChildSetup(), Pid* child_pid = nullptr); /** Executes a child synchronously (waits for the child to exit before returning). * All output from the child is stored in @a standard_output and @a standard_error, * if those parameters are non-nullptr. Note that you must set the - * SpawnFlags::STDOUT_TO_DEV_NULL and SpawnFlags::STDERR_TO_DEV_NULL flags when + * SPAWN_STDOUT_TO_DEV_NULL and SPAWN_STDERR_TO_DEV_NULL flags when * passing nullptr for @a standard_output and @a standard_error. * If @a exit_status is non-nullptr, the exit status of the child is stored * there as it would be returned by waitpid(); standard UNIX macros such * as WIFEXITED() and WEXITSTATUS() must be used to evaluate the exit status. * Note that this function calls waitpid() even if @a exit_status is nullptr, and - * does not accept the SpawnFlags::DO_NOT_REAP_CHILD flag. + * does not accept the SPAWN_DO_NOT_REAP_CHILD flag. * If an error occurs, no data is returned in @a standard_output, * @a standard_error, or @a exit_status. * @@ -307,9 +307,9 @@ void spawn_async(const std::string& working_directory, * and @a standard_error will not be filled with valid values. */ void spawn_sync(const std::string& working_directory, - const std::vector& argv, - const std::vector& envp, - SpawnFlags flags = SpawnFlags::DEFAULT, + const Glib::ArrayHandle& argv, + const Glib::ArrayHandle& envp, + SpawnFlags flags = SPAWN_DEFAULT, const SlotSpawnChildSetup& child_setup = SlotSpawnChildSetup(), std::string* standard_output = nullptr, std::string* standard_error = nullptr, @@ -332,8 +332,8 @@ void spawn_sync(const std::string& working_directory, * and @a standard_error will not be filled with valid values. */ void spawn_sync(const std::string& working_directory, - const std::vector& argv, - SpawnFlags flags = SpawnFlags::DEFAULT, + const Glib::ArrayHandle& argv, + SpawnFlags flags = SPAWN_DEFAULT, const SlotSpawnChildSetup& child_setup = SlotSpawnChildSetup(), std::string* standard_output = nullptr, std::string* standard_error = nullptr, @@ -342,8 +342,8 @@ void spawn_sync(const std::string& working_directory, /** A simple version of spawn_async() that parses a command line with * shell_parse_argv() and passes it to spawn_async(). It runs a * command line in the background. Unlike spawn_async(), the - * SpawnFlags::SEARCH_PATH flag is enabled, other flags are not. Note - * that SpawnFlags::SEARCH_PATH can have security implications, so + * SPAWN_SEARCH_PATH flag is enabled, other flags are not. Note + * that SPAWN_SEARCH_PATH can have security implications, so * consider using spawn_async() directly if appropriate. * * The same concerns on Windows apply as for spawn_command_line_sync(). @@ -361,8 +361,8 @@ void spawn_command_line_async(const std::string& command_line); /** A simple version of spawn_sync() with little-used parameters * removed, taking a command line instead of an argument vector. See * spawn_sync() for full details. @a command_line will be parsed by - * shell_parse_argv(). Unlike spawn_sync(), the SpawnFlags::SEARCH_PATH flag - * is enabled. Note that SpawnFlags::SEARCH_PATH can have security + * shell_parse_argv(). Unlike spawn_sync(), the SPAWN_SEARCH_PATH flag + * is enabled. Note that SPAWN_SEARCH_PATH can have security * implications, so consider using spawn_sync() directly if * appropriate. * diff --git a/glib/src/thread.ccg b/glib/src/thread.ccg new file mode 100644 index 0000000..d6e81cf --- /dev/null +++ b/glib/src/thread.ccg @@ -0,0 +1,426 @@ +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include + +namespace +{ + +extern "C" { + +static void* +call_thread_entry_slot(void* data) +{ + const auto slot = reinterpret_cast(data); + + try + { + // Recreate the specific slot, and drop the reference obtained by create(). + (*static_cast*>(slot))(); + } + catch (Glib::Thread::Exit&) + { + // Just exit from the thread. The Thread::Exit exception + // is our sane C++ replacement of g_thread_exit(). + } + catch (...) + { + Glib::exception_handlers_invoke(); + } + + delete slot; + return nullptr; +} + +} // extern "C" + +} // anonymous namespace + +namespace Glib +{ + +// This was always meant as an internal method. It is no longer called, +// and no longer needs to be called. We are keeping it just to avoid +// breaking ABI, though hopefully nobody is using it anyway. +// TODO: Remove this when we can break ABI. +void +thread_init_impl() +{ + // Make sure the exception map is initialized before creating any thread. + Glib::Error::register_init(); +} + +/**** Glib::Thread *********************************************************/ + +// static +Thread* +Thread::create(const sigc::slot& slot, bool /* joinable */) +{ + // Make a copy of slot on the heap + const auto slot_copy = new sigc::slot(slot); + + GError* error = nullptr; + + const auto thread = g_thread_try_new(nullptr, &call_thread_entry_slot, slot_copy, &error); + + if (error) + { + delete slot_copy; + // Glib::Error::throw_exception() will probably wrap G_THREAD_ERROR in a + // Glib::Threads::ThreadError instance, but we want a Glib::ThreadError. + if (error->domain == G_THREAD_ERROR) + throw Glib::ThreadError(error); + else + Glib::Error::throw_exception(error); + } + + return reinterpret_cast(thread); +} + +// static +Thread* +Thread::create(const sigc::slot& slot, unsigned long stack_size, bool joinable, bool bound, + ThreadPriority priority) +{ + // Make a copy of slot on the heap + const auto slot_copy = new sigc::slot(slot); + + GError* error = nullptr; + + const auto thread = g_thread_create_full(&call_thread_entry_slot, slot_copy, stack_size, joinable, + bound, (GThreadPriority)priority, &error); + + if (error) + { + delete slot_copy; + // Glib::Error::throw_exception() will probably wrap G_THREAD_ERROR in a + // Glib::Threads::ThreadError instance, but we want a Glib::ThreadError. + if (error->domain == G_THREAD_ERROR) + throw Glib::ThreadError(error); + else + Glib::Error::throw_exception(error); + } + + return reinterpret_cast(thread); +} + +// static +Thread* +Thread::self() +{ + return reinterpret_cast(g_thread_self()); +} + +void +Thread::join() +{ + g_thread_join(&gobject_); +} + +bool +Thread::joinable() const +{ + return true; // An appropriate result now that this is deprecated because all threads are now + // joinable. +} + +void +Thread::set_priority(ThreadPriority priority) +{ + g_thread_set_priority(&gobject_, (GThreadPriority)priority); +} + +ThreadPriority +Thread::get_priority() const +{ + return THREAD_PRIORITY_NORMAL; // An appropriate result now that this is deprecated because the + // priority concept has been removed. +} + +void +thread_init(GThreadFunctions* /* vtable */) +{ + // g_thread_init() is deprecated and now does nothing, + // so we do not even call it. That avoids a need to link to gthread-2.0, + // which contains the empty g_thread_init() implementation. + // g_thread_init(vtable); + + Glib::thread_init_impl(); +} + +bool +thread_supported() +{ + // MSVC++ needs the != 0 to avoid an int -> bool cast warning. + return (g_thread_supported() != 0); +} + +// static +void +Thread::yield() +{ + g_thread_yield(); +} + +Thread* +wrap(GThread* gobject) +{ + return reinterpret_cast(gobject); +} + +/**** Glib::StaticMutex ****************************************************/ + +void +StaticMutex::lock() +{ + g_static_mutex_lock(&gobject_); +} + +bool +StaticMutex::trylock() +{ + return g_static_mutex_trylock(&gobject_); +} + +void +StaticMutex::unlock() +{ + g_static_mutex_unlock(&gobject_); +} + +StaticMutex::operator Mutex&() +{ + // If GStaticMutex is implemented as struct (e.g. on Linux), its first struct + // member (runtime_mutex) is a GMutex pointer. If the gthread implementation + // is native (i.e. the vtable pointer passed to g_thread_init() was 0), then + // the runtime_mutex pointer is unused, and the rest of the GStaticMutex + // struct resembles the mutex data. + // + // On Win32, GStaticMutex is just a typedef to struct _GMutex*. Either way, + // the first sizeof(GMutex*) bytes of GStaticMutex always resemble a GMutex + // pointer. The gthread implementation relies on that, and we'll also do so. + + GMutex*& runtime_mutex = reinterpret_cast(gobject_); + + // Fortunately, it cannot hurt if we set this to the GMutex pointer returned + // by g_static_mutex_get_mutex(). Either we just overwrite it with the same + // value, or it was unused anyway. Doing that allows casting the pointer + // location to a Glib::Mutex reference (its only data member is a GMutex*). + + runtime_mutex = g_static_mutex_get_mutex(&gobject_); + + return reinterpret_cast(runtime_mutex); +} + +/**** Glib::Mutex **********************************************************/ + +Mutex::Mutex() +: gobject_(g_mutex_new()) // TODO: Use a statically-allocated GMutext instead, with g_mutex_init(). +{ +} + +Mutex::~Mutex() +{ + g_mutex_free(gobject_); +} + +void +Mutex::lock() +{ + g_mutex_lock(gobject_); +} + +bool +Mutex::trylock() +{ + return g_mutex_trylock(gobject_); +} + +void +Mutex::unlock() +{ + g_mutex_unlock(gobject_); +} + +/**** Glib::StaticRecMutex *************************************************/ + +void +StaticRecMutex::lock() +{ + g_static_rec_mutex_lock(&gobject_); +} + +bool +StaticRecMutex::trylock() +{ + return g_static_rec_mutex_trylock(&gobject_); +} + +void +StaticRecMutex::unlock() +{ + g_static_rec_mutex_unlock(&gobject_); +} + +void +StaticRecMutex::lock_full(unsigned int depth) +{ + g_static_rec_mutex_lock_full(&gobject_, depth); +} + +unsigned int +StaticRecMutex::unlock_full() +{ + return g_static_rec_mutex_unlock_full(&gobject_); +} + +StaticRecMutex::operator RecMutex&() +{ + return static_cast(*this); +} + +/**** Glib::RecMutex *******************************************************/ + +RecMutex::RecMutex() +{ + g_static_rec_mutex_init(&gobject_); +} + +RecMutex::~RecMutex() +{ + g_static_rec_mutex_free(&gobject_); +} + +/**** Glib::StaticRWLock ***************************************************/ + +void +StaticRWLock::reader_lock() +{ + g_static_rw_lock_reader_lock(&gobject_); +} + +bool +StaticRWLock::reader_trylock() +{ + return g_static_rw_lock_reader_trylock(&gobject_); +} + +void +StaticRWLock::reader_unlock() +{ + g_static_rw_lock_reader_unlock(&gobject_); +} + +void +StaticRWLock::writer_lock() +{ + g_static_rw_lock_writer_lock(&gobject_); +} + +bool +StaticRWLock::writer_trylock() +{ + return g_static_rw_lock_writer_trylock(&gobject_); +} + +void +StaticRWLock::writer_unlock() +{ + g_static_rw_lock_writer_unlock(&gobject_); +} + +StaticRWLock::operator RWLock&() +{ + return static_cast(*this); +} + +/**** Glib::RWLock *********************************************************/ + +RWLock::RWLock() +{ + g_static_rw_lock_init(&gobject_); + + // GLib doesn't have GRWLock, only GStaticRWLock. Force initialization + // of the mutex and the condition variables now, to mimic the behaviour + // of a (hypothetical) GRWLock. + + if (g_static_mutex_get_mutex(&gobject_.mutex)) + { + gobject_.read_cond = g_cond_new(); + gobject_.write_cond = g_cond_new(); + } +} + +RWLock::~RWLock() +{ + g_static_rw_lock_free(&gobject_); +} + +/**** Glib::Cond ***********************************************************/ + +Cond::Cond() : gobject_(g_cond_new()) +{ +} + +Cond::~Cond() +{ + g_cond_free(gobject_); +} + +void +Cond::signal() +{ + g_cond_signal(gobject_); +} + +void +Cond::broadcast() +{ + g_cond_broadcast(gobject_); +} + +void +Cond::wait(Mutex& mutex) +{ + g_cond_wait(gobject_, mutex.gobj()); +} + +bool +Cond::timed_wait(Mutex& mutex, const Glib::TimeVal& abs_time) +{ + return g_cond_timed_wait(gobject_, mutex.gobj(), const_cast(&abs_time)); +} + +void* +StaticPrivate_get_helper(GStaticPrivate* private_key) +{ + return g_static_private_get(private_key); +} + +void +StaticPrivate_set_helper(GStaticPrivate* private_key, gpointer data, GDestroyNotify notify) +{ + return g_static_private_set(private_key, data, notify); +} + +GPrivate* +GPrivate_new_helper(GDestroyNotify notify) +{ + return g_private_new(notify); +} + +} // namespace Glib diff --git a/glib/src/thread.hg b/glib/src/thread.hg new file mode 100644 index 0000000..8763f87 --- /dev/null +++ b/glib/src/thread.hg @@ -0,0 +1,1084 @@ +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +_DEFS(glibmm,glib) +_CONFIGINCLUDE(glibmmconfig.h) + +_IS_DEPRECATED // This whole file is deprecated. + +#m4 _PUSH(SECTION_CC_PRE_INCLUDES) +//Stop the compiler warnings about using the deprecated API; +#define GLIB_DISABLE_DEPRECATION_WARNINGS 1 +#m4 _POP() + +// We use GThreadFunctions in the (deprecated) API, so we must temporarily undef G_DISABLE_DEPRECATED. +// Temporarily undef G_DISABLE_DEPRECATED, redefining it later if appropriate. +#if defined(G_DISABLE_DEPRECATED) && !defined(GLIBMM_G_DISABLE_DEPRECATED_UNDEFED) +//Stop the deprecation ifdef guards around the API declarations: +#undef G_DISABLE_DEPRECATED +#define GLIBMM_G_DISABLE_DEPRECATED_UNDEFED 1 +#endif + +#include + +// Redefine G_DISABLE_DEPRECATED if it was defined before we temporarily undefed it: +#if defined(GLIBMM_G_DISABLE_DEPRECATED_UNDEFED) +#define G_DISABLE_DEPRECATED 1 +#undef GLIBMM_G_DISABLE_DEPRECATED_UNDEFED +#endif + + +#include +#include +#include + +#include + +/* Shadow THREAD_PRIORITY_NORMAL macro (from winbase.h). + */ +#if defined(THREAD_PRIORITY_NORMAL) && !defined(GLIBMM_MACRO_SHADOW_THREAD_PRIORITY_NORMAL) +enum { GLIBMM_MACRO_DEFINITION_THREAD_PRIORITY_NORMAL = THREAD_PRIORITY_NORMAL }; +#undef THREAD_PRIORITY_NORMAL +enum { THREAD_PRIORITY_NORMAL = GLIBMM_MACRO_DEFINITION_THREAD_PRIORITY_NORMAL }; +#define THREAD_PRIORITY_NORMAL THREAD_PRIORITY_NORMAL +#define GLIBMM_MACRO_SHADOW_THREAD_PRIORITY_NORMAL 1 +#endif + + +/** Initializer macro for Glib::StaticRecMutex. + * @relates Glib::StaticRecMutex + * @hideinitializer + * + * @deprecated Glib::StaticRecMutex is deprecated in favour of Glib::Threads::RecMutex, which can be used statically. + */ +#define GLIBMM_STATIC_REC_MUTEX_INIT { G_STATIC_REC_MUTEX_INIT } + +/** Initializer macro for Glib::StaticRWLock. + * @relates Glib::StaticRWLock + * @hideinitializer + * + * @deprecated Glib::StaticRWLock is deprecated in favour of Glib::Threads::RWLock, which can be used statically. + */ +#define GLIBMM_STATIC_RW_LOCK_INIT { G_STATIC_RW_LOCK_INIT } + +/** Initializer macro for Glib::StaticPrivate. + * @relates Glib::StaticPrivate + * @hideinitializer + * + * @deprecated Glib::StaticPrivate is deprecated in favour of Glib::Threads::Private, which can be used statically. + */ +#define GLIBMM_STATIC_PRIVATE_INIT { G_STATIC_PRIVATE_INIT } + +namespace Glib +{ + +/** @deprecated Thread priorities no longer have any effect. + */ +_WRAP_ENUM(ThreadPriority, GThreadPriority, NO_GTYPE) + +/*! @var ThreadPriority THREAD_PRIORITY_LOW + * A priority lower than normal. + */ +/*! @var ThreadPriority THREAD_PRIORITY_NORMAL + * The default priority. + */ +/*! @var ThreadPriority THREAD_PRIORITY_HIGH + * A priority higher than normal. + */ +/*! @var ThreadPriority THREAD_PRIORITY_URGENT + * The highest priority. + */ + +/** Initializes the GLib thread system. + * @deprecated Calling thread_init() is no longer necessary and no longer has any effect. + */ +void thread_init(GThreadFunctions* vtable = nullptr); + +/** Returns whether the thread system is initialized. + * @return @c true, if the thread system is initialized. + * @deprecated This is no longer useful, because the thread system is always initialized. + */ +bool thread_supported(); + +/** + * @deprecated Use Glib::Threads::NotLock instead. + */ +enum NotLock { NOT_LOCK }; + +/** + * @deprecated Use Glib::Threads::TryLock instead. + */ +enum TryLock { TRY_LOCK }; + +class Mutex; +class RecMutex; +class RWLock; + +struct StaticRecMutex; +struct StaticRWLock; + + +/** Exception class for thread-related errors. + * @deprecated Use Glib::Threads::ThreadError instead. + */ +_WRAP_GERROR(ThreadError, GThreadError, G_THREAD_ERROR, NO_GTYPE) + + +/** Represents a running thread. + * An instance of this class can only be obtained with create(), self(), + * or wrap(GThread*). It's not possible to delete a Thread object. If the + * thread is @em not joinable, its resources will be freed automatically + * when it exits. Otherwise, if the thread @em is joinable, you must call + * join() to avoid a memory leak. + * + * @note g_thread_exit() is not wrapped, because that function exits a thread + * without any cleanup. That's especially dangerous in C++ code, since the + * destructors of automatic objects won't be invoked. Instead, you can throw + * a Thread::Exit exception, which will be caught by the internal thread + * entry function. + * + * @note You might have noticed that the thread entry slot doesn't have the + * usual void* return value. If you want to return any data from your thread + * you can pass an additional output argument to the thread's entry slot. + * + * @deprecated Use Glib::Threads::Thread instead. + */ +class Thread +{ +public: + + Thread(const Thread&) = delete; + Thread& operator=(const Thread&) = delete; + + class Exit; + + //See http://bugzilla.gnome.org/show_bug.cgi?id=512348 about the sigc::trackable issue. + /** Creates a new thread with the priority THREAD_PRIORITY_NORMAL. + * If @a joinable is @c true, you can wait for this thread's termination by + * calling join(). Otherwise the thread will just disappear, when ready. + * + * The new thread executes the function or method @a slot points to. You can + * pass additional arguments using sigc::bind(). If the thread was created + * successfully, it is returned, otherwise a ThreadError exception is thrown. + * + * Because sigc::trackable is not thread safe, if the slot represents a + * non-static class method (that is, it is created by sigc::mem_fun()), the + * class concerned should not derive from sigc::trackable. + * + * @param slot A slot to execute in the new thread. + * @param joinable This parameter is now ignored because Threads are now always joinable. + * @return The new Thread* on success. + * @throw Glib::ThreadError + */ + static Thread* create(const sigc::slot& slot, bool joinable = true); + + /** Returns the Thread* corresponding to the calling thread. + * @return The current thread. + */ + static Thread* self(); + + /** Waits until the thread finishes. + * Waits until the thread finishes, i.e. the slot, as given to create(), + * returns or g_thread_exit() is called by the thread. (Calling + * g_thread_exit() in a C++ program should be avoided.) All resources of + * the thread including the Glib::Thread object are released. The thread + * must have been created with joinable = true. + */ + void join(); + + //See http://bugzilla.gnome.org/show_bug.cgi?id=512348 about the sigc::trackable issue. + /** Creates a new thread with the priority @a priority. The stack gets the + * size @a stack_size or the default value for the current platform, if + * @a stack_size is 0. + * + * If @a joinable is @c true, you can wait for this thread's termination by + * calling join(). Otherwise the thread will just disappear, when ready. + * If @a bound is @c true, this thread will be scheduled in the system scope, + * otherwise the implementation is free to do scheduling in the process + * scope. The first variant is more expensive resource-wise, but generally + * faster. On some systems (e.g. Linux) all threads are bound. + * + * The new thread executes the function or method @a slot points to. You can + * pass additional arguments using sigc::bind(). If the thread was created + * successfully, it is returned. + * + * Because sigc::trackable is not thread safe, if the slot represents a + * non-static class method (that is, it is created by sigc::mem_fun()), the + * class concerned should not derive from sigc::trackable. + * + * @note It is not guaranteed, that threads with different priorities really + * behave accordingly. On some systems (e.g. Linux) only root can increase + * priorities. On other systems (e.g. Solaris) there doesn't seem to be + * different scheduling for different priorities. All in all try to avoid + * being dependent on priorities. Use Glib::THREAD_PRIORITY_NORMAL + * here as a default. + * + * @note Only use the extended + * create(const sigc::slot&, unsigned long, bool, bool, ThreadPriority) + * function, when you really can't use the simple + * create(const sigc::slot&, bool) + * instead. The latter overload does not take @a stack_size, @a bound and + * @a priority as arguments, as they should only be used for cases, where + * it is inevitable. + * + * @param slot A slot to execute in the new thread. + * @param stack_size A stack size for the new thread, or 0. + * @param joinable Should this thread be joinable? + * @param bound Should this thread be bound to a system thread? + * @param priority A priority for the thread. + * @return The new Thread* on success. + * @throw Glib::ThreadError + * + * @deprecated Use the simpler create() method instead, because all Threads + * are now joinable, and bounds and priority parameters now have no effect. + */ + static Thread* create(const sigc::slot& slot, unsigned long stack_size, + bool joinable, bool bound, ThreadPriority priority); + + /** Returns whether the thread is joinable. + * @return Whether the thread is joinable. + * + * @deprecated All threads are now joinable. + */ + bool joinable() const; + + /** Changes the priority of the thread to @a priority. + * @note It is not guaranteed, that threads with different priorities really + * behave accordingly. On some systems (e.g. Linux) only @c root can + * increase priorities. On other systems (e.g. Solaris) there doesn't seem + * to be different scheduling for different priorities. All in all try to + * avoid being dependent on priorities. + * @param priority A new priority for the thread. + * + * @deprecated Thread priorities no longer have any effect. + */ + void set_priority(ThreadPriority priority); + + /** Returns the priority of the thread. + * @return The thread's priority. + * + * @deprecated Thread priorities no longer have any effect. + */ + ThreadPriority get_priority() const; + + /** Gives way to other threads waiting to be scheduled. + * This function is often used as a method to make busy wait less evil. But + * in most cases, you will encounter, there are better methods to do that. + * So in general you shouldn't use this function. + */ + static void yield(); + + GThread* gobj() { return &gobject_; } + const GThread* gobj() const { return &gobject_; } + +private: + GThread gobject_; + + // Glib::Thread can neither be constructed nor deleted. + Thread(); + void operator delete(void*, std::size_t); +}; + +/** %Exception class used to exit from a thread. + * @code + * throw Glib::Thread::Exit(); + * @endcode + * Write this if you want to exit from a thread created by Thread::create(). + * Of course you must make sure not to catch Thread::Exit by accident, i.e. + * when using catch(...) somewhere in your code. + * + * @deprecated Use Glib::Threads::Thread::Exit instead. + */ +class Thread::Exit +{}; + + +//TODO: Make sure that Glib::wrap() uses Glib::Threads::wrap() instead. + +/** @relates Glib::Thread + * + * @deprecated Use Glib::Threads::wrap(GThread*) instead. + */ +Thread* wrap(GThread* gobject); + +struct StaticMutex; + +/** Like Glib::Mutex, but can be defined at compile time. + * Use @c GLIBMM_STATIC_MUTEX_INIT to initialize a StaticMutex: + * @code + * Glib::StaticMutex mutex = GLIBMM_STATIC_MUTEX_INIT; + * @endcode + * + * A StaticMutex can be used without calling Glib::thread_init(), it will + * silently do nothing then. That will also work when using the implicit + * conversion to Mutex&, thus you can safely use Mutex::Lock with a + * StaticMutex. + * + * @deprecated Use Glib::Threads::Mutex instead, which can be used statically. + */ +struct StaticMutex +{ + void lock(); + bool trylock(); + void unlock(); + + operator Mutex&(); + + GStaticMutex* gobj() { return &gobject_; } + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + // Must be public to allow initialization at compile time. + GStaticMutex gobject_; +#endif +}; + +/** Initializer macro for Glib::StaticMutex. + * @relates Glib::StaticMutex + * @hideinitializer + * + * @deprecated Glib::StaticMutex is deprecated in favour of Glib::Threads::Mutex, which can be used statically. + */ +#define GLIBMM_STATIC_MUTEX_INIT { G_STATIC_MUTEX_INIT } + +/** Represents a mutex (mutual exclusion). + * It can be used to protect data against shared access. Try to use + * Mutex::Lock instead of calling lock() and unlock() directly -- + * it will make your life much easier. + * + * @note Glib::Mutex is not recursive, i.e. a thread will deadlock, if it + * already has locked the mutex while calling lock(). Use Glib::RecMutex + * instead, if you need recursive mutexes. + * + * @deprecated Use Glib::Threads::Mutex instead. + */ +class Mutex +{ +public: + class Lock; + + Mutex(); + + Mutex(const Mutex&) = delete; + Mutex& operator=(const Mutex&) = delete; + + ~Mutex(); + + /** Locks the mutex. + * If mutex is already locked by another thread, the current thread will + * block until mutex is unlocked by the other thread. + * @see Mutex::Lock + */ + void lock(); + + /** Tries to lock the mutex. + * If the mutex is already locked by another thread, it immediately returns + * @c false. Otherwise it locks the mutex and returns @c true. + * @return Whether the mutex could be locked. + * @see Mutex::Lock + */ + bool trylock(); + + /** Unlocks the mutex. + * If another thread is blocked in a lock() call for this mutex, it will be + * woken and can lock the mutex itself. + * @see Mutex::Lock + */ + void unlock(); + + GMutex* gobj() { return gobject_; } + +private: + GMutex* gobject_; +}; + +/** Utility class for exception-safe mutex locking. + * @par Usage example: + * @code + * { + * Glib::Mutex::Lock lock (mutex); // calls mutex.lock() + * do_something(); + * } // the destructor calls mutex.unlock() + * @endcode + * As you can see, the compiler takes care of the unlocking. This is not + * only exception safe but also much less error-prone. You could even + * return while still holding the lock and it will be released + * properly. + * + * @deprecated Use Glib::Threads::Mutex::Lock instead. + */ +class Mutex::Lock +{ +public: + explicit inline Lock(Mutex& mutex); + inline Lock(Mutex& mutex, NotLock); + inline Lock(Mutex& mutex, TryLock); + inline ~Lock(); + + inline void acquire(); + inline bool try_acquire(); + inline void release(); + inline bool locked() const; + +private: + Mutex& mutex_; + bool locked_; + + +}; + + +/** Like Glib::RecMutex, but can be defined at compile time. + * Use @c GLIBMM_STATIC_REC_MUTEX_INIT to initialize a StaticRecMutex: + * @code + * Glib::StaticRecMutex mutex = GLIBMM_STATIC_REC_MUTEX_INIT; + * @endcode + * A StaticRecMutex can be used without calling Glib::thread_init(), it will + * silently do nothing then. That will also work when using the implicit + * conversion to RecMutex&, thus you can safely use RecMutex::Lock with a + * StaticRecMutex. + * + * @deprecated Use Glib::Threads::RecMutex instead, which can be used statically. + */ +struct StaticRecMutex +{ + void lock(); + bool trylock(); + void unlock(); + + void lock_full(unsigned int depth); + unsigned int unlock_full(); + + operator RecMutex&(); + + GStaticRecMutex* gobj() { return &gobject_; } + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + // Must be public to allow initialization at compile time. + GStaticRecMutex gobject_; +#endif +}; + +/** + * + * @deprecated Use Glib::Threads::RecMutex instead. + */ +class RecMutex : public StaticRecMutex +{ +public: + class Lock; + + RecMutex(); + ~RecMutex(); + +private: + // noncopyable + RecMutex(const RecMutex&); + RecMutex& operator=(const RecMutex&); +}; + +/** Utility class for exception-safe locking of recursive mutexes. + * + * @deprecated Use Glib::Threads::RecMutex instead. + */ +class RecMutex::Lock +{ +public: + explicit inline Lock(RecMutex& mutex); + inline Lock(RecMutex& mutex, NotLock); + inline Lock(RecMutex& mutex, TryLock); + + Lock(const RecMutex::Lock&) = delete; + RecMutex::Lock& operator=(const RecMutex::Lock&) = delete; + + inline ~Lock(); + + inline void acquire(); + inline bool try_acquire(); + inline void release(); + inline bool locked() const; + +private: + RecMutex& mutex_; + bool locked_; +}; + + +/** Like Glib::RWLock, but can be defined at compile time. + * Use @c GLIBMM_STATIC_RW_LOCK_INIT to initialize a StaticRWLock: + * @code + * Glib::StaticRWLock rw_lock = GLIBMM_STATIC_RW_LOCK_INIT; + * @endcode + * A StaticRWLock can be used without calling Glib::thread_init(), it will + * silently do nothing then. That will also work when using the implicit + * conversion to RWLock&, thus you can safely use RWLock::ReaderLock and + * RWLock::WriterLock with a StaticRWLock. + * + * @deprecated Use Glib::Threads::RWLock instead, which can be used statically. + */ +struct StaticRWLock +{ + void reader_lock(); + bool reader_trylock(); + void reader_unlock(); + + void writer_lock(); + bool writer_trylock(); + void writer_unlock(); + + operator RWLock&(); + + GStaticRWLock* gobj() { return &gobject_; } + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + // Must be public to allow initialization at compile time. + GStaticRWLock gobject_; +#endif +}; + +/** + * + * @deprecated Use Glib::Threads::RWLock instead. + */ +class RWLock : public StaticRWLock +{ +public: + class ReaderLock; + class WriterLock; + + RWLock(); + + RWLock(const RWLock&) = delete; + RWLock& operator=(const RWLock&) = delete; + + ~RWLock(); +}; + +/** Utility class for exception-safe locking of read/write locks. + * + * @deprecated Use Glib::Threads::RWLock::ReaderLock instead. + */ +class RWLock::ReaderLock +{ +public: + explicit inline ReaderLock(RWLock& rwlock); + inline ReaderLock(RWLock& rwlock, NotLock); + inline ReaderLock(RWLock& rwlock, TryLock); + + ReaderLock(const RWLock::ReaderLock&) = delete; + RWLock::ReaderLock& operator=(const RWLock::ReaderLock&) = delete; + + inline ~ReaderLock(); + + inline void acquire(); + inline bool try_acquire(); + inline void release(); + inline bool locked() const; + +private: + RWLock& rwlock_; + bool locked_; +}; + +/** Utility class for exception-safe locking of read/write locks. + * + * @deprecated Use Glib::Threads::RWLock::WriterLock instead. + */ +class RWLock::WriterLock +{ +public: + explicit inline WriterLock(RWLock& rwlock); + inline WriterLock(RWLock& rwlock, NotLock); + inline WriterLock(RWLock& rwlock, TryLock); + + WriterLock(const RWLock::WriterLock&) = delete; + RWLock::WriterLock& operator=(const RWLock::WriterLock&) = delete; + + inline ~WriterLock(); + + inline void acquire(); + inline bool try_acquire(); + inline void release(); + inline bool locked() const; + +private: + RWLock& rwlock_; + bool locked_; +}; + +/** An opaque data structure to represent a condition. + * A @a Cond is an object that threads can block on, if they find a certain + * condition to be false. If other threads change the state of this condition + * they can signal the @a Cond, such that the waiting thread is woken up. + * @par Usage example: + * @code + * Glib::Cond data_cond; + * Glib::Mutex data_mutex; + * void* current_data = nullptr; + * + * void push_data(void* data) + * { + * Glib::Mutex::Lock lock (data_mutex); + * + * current_data = data; + * data_cond.signal(); + * } + * + * void* pop_data() + * { + * Glib::Mutex::Lock lock (data_mutex); + * + * while (!current_data) + * data_cond.wait(data_mutex); + * + * void *const data = current_data; + * current_data = nullptr; + * + * return data; + * } + * @endcode + * + * @deprecated Use Glib::Threads::Cond instead. + */ +class Cond +{ +public: + Cond(); + + Cond(const Cond&) = delete; + Cond& operator=(const Cond&) = delete; + + ~Cond(); + + /** If threads are waiting for this @a Cond, exactly one of them is woken up. + * It is good practice to hold the same lock as the waiting thread, while calling + * this method, though not required. + * + */ + void signal(); + + /** If threads are waiting for this @a Cond, all of them are woken up. + * It is good practice to hold the same lock as the waiting thread, while calling + * this method, though not required. + */ + void broadcast(); + + /** Waits until this thread is woken up on this @a Cond. + * The mutex is unlocked before falling asleep and locked again before resuming. + * + * @param mutex a @a Mutex that is currently locked. + * + * @note It is important to use the @a wait() and @a timed_wait() methods + * only inside a loop, which checks for the condition to be true as it is not + * guaranteed that the waiting thread will find it fulfilled, even if the signaling + * thread left the condition in that state. This is because another thread can have + * altered the condition, before the waiting thread got the chance to be woken up, + * even if the condition itself is protected by a @a Mutex. + */ + void wait(Mutex& mutex); + + /** Waits until this thread is woken up on this @a Cond, but not longer than until the time, that is specified by @a abs_time. + * The mutex is unlocked before falling asleep and locked again before resuming. + * + * @param mutex a @a Mutex that is currently locked. + * @param abs_time a max time to wait. + * + * @note It is important to use the @a wait() and @a timed_wait() methods + * only inside a loop, which checks for the condition to be true as it is not + * guaranteed that the waiting thread will find it fulfilled, even if the signaling + * thread left the condition in that state. This is because another thread can have + * altered the condition, before the waiting thread got the chance to be woken up, + * even if the condition itself is protected by a @a Mutex. + */ + bool timed_wait(Mutex& mutex, const Glib::TimeVal& abs_time); + + GCond* gobj() { return gobject_; } + +private: + GCond* gobject_; +}; + + +/** Thread-local data pointer. + * + * @deprecated Use Glib::Threads::Private instead, which can be used statically. + */ +template +struct StaticPrivate +{ + using DestroyNotifyFunc = void (*) (void*); + + static void delete_ptr(void* data); + + inline T* get(); + inline void set(T* data, DestroyNotifyFunc notify_func = &StaticPrivate::delete_ptr); + + GStaticPrivate* gobj() { return &gobject_; } + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + // Must be public to allow initialization at compile time. + GStaticPrivate gobject_; +#endif +}; + +/** Thread-local data pointer. + * + * @deprecated Use Glib::Threads::Private instead. + */ +template +class Private +{ +public: + + Private(const Private&) = delete; + Private& operator=(const Private&) = delete; + + using DestructorFunc = void (*) (void*); + + static void delete_ptr(void* data); + + explicit inline Private(DestructorFunc destructor_func = &Private::delete_ptr); + inline T* get(); + inline void set(T* data); + + GPrivate* gobj() { return gobject_; } + +private: + GPrivate* gobject_; +}; + +/** @} group Threads */ + +/*! A glibmm thread example. + * @example thread/thread.cc + */ + + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +/***************************************************************************/ +/* inline implementation */ +/***************************************************************************/ + +// internal +/** @deprecated This was always for internal glibmm use and is now unecessary even inside glibmm. + */ +void thread_init_impl(); + +/**** Glib::Mutex::Lock ****************************************************/ + +inline +Mutex::Lock::Lock(Mutex& mutex) +: + mutex_ (mutex), + locked_ (true) +{ + mutex_.lock(); +} + +inline +Mutex::Lock::Lock(Mutex& mutex, NotLock) +: + mutex_ (mutex), + locked_ (false) +{} + +inline +Mutex::Lock::Lock(Mutex& mutex, TryLock) +: + mutex_ (mutex), + locked_ (mutex.trylock()) +{} + +inline +Mutex::Lock::~Lock() +{ + if(locked_) + mutex_.unlock(); +} + +inline +void Mutex::Lock::acquire() +{ + mutex_.lock(); + locked_ = true; +} + +inline +bool Mutex::Lock::try_acquire() +{ + locked_ = mutex_.trylock(); + return locked_; +} + +inline +void Mutex::Lock::release() +{ + mutex_.unlock(); + locked_ = false; +} + +inline +bool Mutex::Lock::locked() const +{ + return locked_; +} + + +/**** Glib::RecMutex::Lock *************************************************/ + +inline +RecMutex::Lock::Lock(RecMutex& mutex) +: + mutex_ (mutex), + locked_ (true) +{ + mutex_.lock(); +} + +inline +RecMutex::Lock::Lock(RecMutex& mutex, NotLock) +: + mutex_ (mutex), + locked_ (false) +{} + +inline +RecMutex::Lock::Lock(RecMutex& mutex, TryLock) +: + mutex_ (mutex), + locked_ (mutex.trylock()) +{} + +inline +RecMutex::Lock::~Lock() +{ + if(locked_) + mutex_.unlock(); +} + +inline +void RecMutex::Lock::acquire() +{ + mutex_.lock(); + locked_ = true; +} + +inline +bool RecMutex::Lock::try_acquire() +{ + locked_ = mutex_.trylock(); + return locked_; +} + +inline +void RecMutex::Lock::release() +{ + mutex_.unlock(); + locked_ = false; +} + +inline +bool RecMutex::Lock::locked() const +{ + return locked_; +} + + +/**** Glib::RWLock::ReaderLock *********************************************/ + +inline +RWLock::ReaderLock::ReaderLock(RWLock& rwlock) +: + rwlock_ (rwlock), + locked_ (true) +{ + rwlock_.reader_lock(); +} + +inline +RWLock::ReaderLock::ReaderLock(RWLock& rwlock, NotLock) +: + rwlock_ (rwlock), + locked_ (false) +{} + +inline +RWLock::ReaderLock::ReaderLock(RWLock& rwlock, TryLock) +: + rwlock_ (rwlock), + locked_ (rwlock.reader_trylock()) +{} + +inline +RWLock::ReaderLock::~ReaderLock() +{ + if(locked_) + rwlock_.reader_unlock(); +} + +inline +void RWLock::ReaderLock::acquire() +{ + rwlock_.reader_lock(); + locked_ = true; +} + +inline +bool RWLock::ReaderLock::try_acquire() +{ + locked_ = rwlock_.reader_trylock(); + return locked_; +} + +inline +void RWLock::ReaderLock::release() +{ + rwlock_.reader_unlock(); + locked_ = false; +} + +inline +bool RWLock::ReaderLock::locked() const +{ + return locked_; +} + + +/**** Glib::RWLock::WriterLock *********************************************/ + +inline +RWLock::WriterLock::WriterLock(RWLock& rwlock) +: + rwlock_ (rwlock), + locked_ (true) +{ + rwlock_.writer_lock(); +} + +inline +RWLock::WriterLock::WriterLock(RWLock& rwlock, NotLock) +: + rwlock_ (rwlock), + locked_ (false) +{} + +inline +RWLock::WriterLock::WriterLock(RWLock& rwlock, TryLock) +: + rwlock_ (rwlock), + locked_ (rwlock.writer_trylock()) +{} + +inline +RWLock::WriterLock::~WriterLock() +{ + if(locked_) + rwlock_.writer_unlock(); +} + +inline +void RWLock::WriterLock::acquire() +{ + rwlock_.writer_lock(); + locked_ = true; +} + +inline +bool RWLock::WriterLock::try_acquire() +{ + locked_ = rwlock_.writer_trylock(); + return locked_; +} + +inline +void RWLock::WriterLock::release() +{ + rwlock_.writer_unlock(); + locked_ = false; +} + +inline +bool RWLock::WriterLock::locked() const +{ + return locked_; +} + + +/**** Glib::StaticPrivate **************************************************/ + +// static +template +void StaticPrivate::delete_ptr(void* data) +{ + delete static_cast(data); +} + +/** This is only for use by glibmm itself. + */ +void* StaticPrivate_get_helper(GStaticPrivate *private_key); + +template inline +T* StaticPrivate::get() +{ + return static_cast(StaticPrivate_get_helper(&gobject_)); +} + +/** This is only for use by glibmm itself. + */ +void StaticPrivate_set_helper(GStaticPrivate *private_key, gpointer data, GDestroyNotify notify); + +template inline +void StaticPrivate::set(T* data, typename StaticPrivate::DestroyNotifyFunc notify_func) +{ + StaticPrivate_set_helper(&gobject_, data, notify_func); +} + + +/**** Glib::Private ********************************************************/ + +// static +template +void Private::delete_ptr(void* data) +{ + delete static_cast(data); +} + +/** This is only for use by glibmm itself. + */ +GPrivate* GPrivate_new_helper(GDestroyNotify notify); + +template inline +Private::Private(typename Private::DestructorFunc destructor_func) +: + gobject_ (GPrivate_new_helper(destructor_func)) +{} + +template inline +T* Private::get() +{ + return static_cast(g_private_get(gobject_)); +} + +template inline +void Private::set(T* data) +{ + g_private_set(gobject_, data); +} + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +} // namespace Glib + diff --git a/glib/src/threads.ccg b/glib/src/threads.ccg new file mode 100644 index 0000000..a478433 --- /dev/null +++ b/glib/src/threads.ccg @@ -0,0 +1,301 @@ +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include + +/* Why reinterpret_cast(gobject) is needed: + * + * A Thread instance is in fact always a GThread instance. + * Unfortunately, GThread cannot be a member of Thread, + * because it is an opaque struct. Also, the C interface does not provide + * any hooks to install a destroy notification handler, thus we cannot + * wrap it dynamically either. + * + * The cast works because Thread does not have any member data, and + * it is impossible to derive from it. This is ensured by not implementing + * the (private) default constructor. + * This trick is used also in classes declared as _CLASS_OPAQUE_REFCOUNTED. + */ + +namespace +{ + +extern "C" { + +static void* +call_thread_entry_slot(void* data) +{ + const auto slot = reinterpret_cast(data); + + try + { + // Recreate the specific slot. + (*static_cast*>(slot))(); + } + catch (Glib::Threads::Thread::Exit&) + { + // Just exit from the thread. The Threads::Thread::Exit exception + // is our sane C++ replacement of g_thread_exit(). + } + catch (...) + { + Glib::exception_handlers_invoke(); + } + + delete slot; + return nullptr; +} + +} // extern "C" + +} // anonymous namespace + +namespace Glib +{ + +namespace Threads +{ + +/**** Glib::Threads::Thread ************************************************/ + +// static +Thread* +Thread::create(const sigc::slot& slot, const std::string& name) +{ + // Make a copy of slot on the heap. + const auto slot_copy = new sigc::slot(slot); + + GError* error = nullptr; + auto thread = g_thread_try_new( + name.empty() ? nullptr : name.c_str(), &call_thread_entry_slot, slot_copy, &error); + + if (error) + { + delete slot_copy; + Glib::Error::throw_exception(error); + } + if (!thread) + { + delete slot_copy; + } + return reinterpret_cast(thread); +} + +// static +Thread* +Thread::create(const sigc::slot& slot) +{ + return create(slot, std::string()); +} + +// static +Thread* +Thread::self() +{ + return reinterpret_cast(g_thread_self()); +} + +void +Thread::join() +{ + g_thread_join(reinterpret_cast(this)); +} + +// static +void +Thread::yield() +{ + g_thread_yield(); +} + +GThread* +Thread::gobj() +{ + return reinterpret_cast(this); +} + +const GThread* +Thread::gobj() const +{ + return reinterpret_cast(this); +} + +Thread* +wrap(GThread* gobject) +{ + return reinterpret_cast(gobject); +} + +/**** Glib::Threads::Mutex *************************************************/ + +Mutex::Mutex() +{ + g_mutex_init(&gobject_); +} + +Mutex::~Mutex() +{ + g_mutex_clear(&gobject_); +} + +void +Mutex::lock() +{ + g_mutex_lock(&gobject_); +} + +bool +Mutex::trylock() +{ + return g_mutex_trylock(&gobject_); +} + +void +Mutex::unlock() +{ + g_mutex_unlock(&gobject_); +} + +Mutex* +wrap(GMutex* gobject) +{ + return reinterpret_cast(gobject); +} + +/**** Glib::Threads::RecMutex **********************************************/ + +RecMutex::RecMutex() +{ + g_rec_mutex_init(&gobject_); +} + +RecMutex::~RecMutex() +{ + g_rec_mutex_clear(&gobject_); +} + +void +RecMutex::lock() +{ + g_rec_mutex_lock(&gobject_); +} + +bool +RecMutex::trylock() +{ + return g_rec_mutex_trylock(&gobject_); +} + +void +RecMutex::unlock() +{ + g_rec_mutex_unlock(&gobject_); +} + +RecMutex* +wrap(GRecMutex* gobject) +{ + return reinterpret_cast(gobject); +} + +/**** Glib::Threads::RWLock ************************************************/ + +void +RWLock::reader_lock() +{ + g_rw_lock_reader_lock(&gobject_); +} + +bool +RWLock::reader_trylock() +{ + return g_rw_lock_reader_trylock(&gobject_); +} + +void +RWLock::reader_unlock() +{ + g_rw_lock_reader_unlock(&gobject_); +} + +void +RWLock::writer_lock() +{ + g_rw_lock_writer_lock(&gobject_); +} + +bool +RWLock::writer_trylock() +{ + return g_rw_lock_writer_trylock(&gobject_); +} + +void +RWLock::writer_unlock() +{ + g_rw_lock_writer_unlock(&gobject_); +} + +RWLock::RWLock() +{ + g_rw_lock_init(&gobject_); +} + +RWLock::~RWLock() +{ + g_rw_lock_clear(&gobject_); +} + +/**** Glib::Threads::Cond **************************************************/ + +Cond::Cond() +{ + g_cond_init(&gobject_); +} + +Cond::~Cond() +{ + g_cond_clear(&gobject_); +} + +void +Cond::signal() +{ + g_cond_signal(&gobject_); +} + +void +Cond::broadcast() +{ + g_cond_broadcast(&gobject_); +} + +void +Cond::wait(Mutex& mutex) +{ + g_cond_wait(&gobject_, mutex.gobj()); +} + +bool +Cond::wait_until(Mutex& mutex, gint64 end_time) +{ + return g_cond_wait_until(&gobject_, mutex.gobj(), end_time); +} + +} // namespace Threads + +} // namespace Glib diff --git a/glib/src/threads.hg b/glib/src/threads.hg new file mode 100644 index 0000000..c82a613 --- /dev/null +++ b/glib/src/threads.hg @@ -0,0 +1,931 @@ +/* Copyright (C) 2002 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +_DEFS(glibmm,glib) +_CONFIGINCLUDE(glibmmconfig.h) + +_IS_DEPRECATED // This whole file is deprecated. + +#m4 _PUSH(SECTION_CC_PRE_INCLUDES) +// Don't let glibmm.h include thread.h. Pretend that it's already included. +// glib.h can then be included with G_DISABLE_DEPRECATED defined, and +// the compiler can react if deprecated glib functions are used. +#define _GLIBMM_THREAD_H +#m4 _POP() + +#include +#include +#include +#include +#include + +namespace Glib +{ + +/** + * @deprecated The entire Glib::Threads API is deprecated in favor of the + * standard C++ concurrency API in C++11 and C++14. + */ +namespace Threads +{ +//The GMMPROC_EXTRA_NAMESPACE() macro is a hint to generate_wrap_init.pl to put it in the Threads sub-namespace +_GMMPROC_EXTRA_NAMESPACE(Threads) + +/** @defgroup Threads Threads + * %Thread abstraction; including threads, different mutexes, + * conditions and thread private data. + * + * @deprecated The entire Glib::Threads API is deprecated in favor of the + * standard C++ concurrency API in C++11 and C++14. + * @{ + */ + +/// @deprecated Please use std::lock_guard or std::unique_lock instead. +enum NotLock { NOT_LOCK }; + +/// @deprecated Please use std::lock_guard or std::unique_lock instead. +enum TryLock { TRY_LOCK }; + +class Mutex; +class RecMutex; +class RWLock; + +/** %Exception class for thread-related errors. + * + * @deprecated Please use std::lock_guard or std::unique_lock instead. + */ +_WRAP_GERROR(ThreadError, GThreadError, G_THREAD_ERROR, NO_GTYPE) + + +/** Represents a running thread. + * An instance of this class can only be obtained with create(), self(), + * or wrap(GThread*). It's not possible to delete a Thread object. + * You must call join() to avoid a memory leak. + * + * @note g_thread_exit() is not wrapped, because that function exits a thread + * without any cleanup. That's especially dangerous in C++ code, since the + * destructors of automatic objects won't be invoked. Instead, you can throw + * a Threads::Thread::Exit exception, which will be caught by the internal thread + * entry function. + * + * @note The thread entry slot doesn't have the void* return value that a + * GThreadFunc has. If you want to return any data from your thread, + * you can pass an additional output argument to the thread's entry slot. + * + * @deprecated Please use std::thread instead. + */ +class Thread +{ +public: + + Thread(const Thread&) = delete; + Thread& operator=(const Thread&) = delete; + + class Exit; + + //See http://bugzilla.gnome.org/show_bug.cgi?id=512348 about the sigc::trackable issue. + // TODO: At the next ABI break, consider changing const sigc::slot& slot + // to const std::function& func, if it can be assumed that all supported + // compilers understand the C++11 template class std::function<>. + /** Creates a new thread. + * You can wait for this thread's termination by calling join(). + * + * The new thread executes the function or method @a slot points to. You can + * pass additional arguments using sigc::bind(). If the thread was created + * successfully, it is returned, otherwise a Threads::ThreadError exception is thrown. + * + * Because sigc::trackable is not thread-safe, if the slot represents a + * non-static class method and is created by sigc::mem_fun(), the class concerned + * should not derive from sigc::trackable. You can use, say, boost::bind() or, + * in C++11, std::bind() or a C++11 lambda expression instead of sigc::mem_fun(). + * + * @param slot A slot to execute in the new thread. + * @return The new Thread* on success. + * @throw Glib::Threads::ThreadError + */ + static Thread* create(const sigc::slot& slot); + + // TODO: At next ABI break, remove the single parameter create + // method and default name to std::string() + + /** Creates a new named thread. + * You can wait for this thread's termination by calling join(). + * + * The new thread executes the function or method @a slot points to. You can + * pass additional arguments using sigc::bind(). If the thread was created + * successfully, it is returned, otherwise a Threads::ThreadError exception is thrown. + * + * Because sigc::trackable is not thread-safe, if the slot represents a + * non-static class method and is created by sigc::mem_fun(), the class concerned + * should not derive from sigc::trackable. You can use, say, boost::bind() or, + * in C++11, std::bind() or a C++11 lambda expression instead of sigc::mem_fun(). + * + * The @a name can be useful for discriminating threads in a debugger. + * It is not used for other purposes and does not have to be unique. + * Some systems restrict the length of @a name to 16 bytes. + * + * @param slot A slot to execute in the new thread. + * @param name A name for the new thread. + * @return The new Thread* on success. + * @throw Glib::Threads::ThreadError + * + * @newin{2,36} + */ + static Thread* create(const sigc::slot& slot, const std::string& name); + + /** Returns the Thread* corresponding to the calling thread. + * @return The current thread. + */ + static Thread* self(); + + /** Waits until the thread finishes. + * Waits until the thread finishes, i.e. the slot, as given to create(), + * returns or g_thread_exit() is called by the thread. (Calling + * g_thread_exit() in a C++ program should be avoided.) All resources of + * the thread including the Glib::Threads::Thread object are released. + */ + void join(); + + /** Gives way to other threads waiting to be scheduled. + * This function is often used as a method to make busy wait less evil. But + * in most cases, you will encounter, there are better methods to do that. + * So in general you shouldn't use this function. + */ + static void yield(); + + GThread* gobj(); + const GThread* gobj() const; + +private: + // Glib::Thread can neither be constructed nor deleted. + Thread(); + void operator delete(void*, std::size_t); +}; + +/** %Exception class used to exit from a thread. + * @code + * throw Glib::Threads::Thread::Exit(); + * @endcode + * Write this if you want to exit from a thread created by Threads::Thread::create(). + * Of course you must make sure not to catch Threads::Thread::Exit by accident, i.e. + * when using catch(...) somewhere in your code. + * + * @deprecated Please use std::thread instead. + */ +class Thread::Exit +{}; + +/** A C++ wrapper for the C object. + * + * @param gobject The C instance. + * @return The C++ wrapper. + * + * @relates Glib::Threads::Thread + * + * @deprecated Please use std::thread instead. + */ +Thread* wrap(GThread* gobject); + +/** Represents a mutex (mutual exclusion). + * It can be used to protect data against shared access. Try to use + * Mutex::Lock instead of calling lock() and unlock() directly -- + * it will make your life much easier. + * + * @note Glib::Threads::Mutex is not recursive, i.e. a thread will deadlock, if it + * already has locked the mutex while calling lock(). Use Glib::Threads::RecMutex + * instead, if you need recursive mutexes. + * + * @deprecated Please use std::mutex instead. + */ +class Mutex +{ +public: + class Lock; + + Mutex(); + + Mutex(const Mutex&) = delete; + Mutex& operator=(const Mutex&) = delete; + + ~Mutex(); + + /** Locks the mutex. + * If mutex is already locked by another thread, the current thread will + * block until mutex is unlocked by the other thread. + * @see Mutex::Lock + */ + void lock(); + + /** Tries to lock the mutex. + * If the mutex is already locked by another thread, it immediately returns + * @c false. Otherwise it locks the mutex and returns @c true. + * @return Whether the mutex could be locked. + * @see Mutex::Lock + */ + bool trylock(); + + /** Unlocks the mutex. + * If another thread is blocked in a lock() call for this mutex, it will be + * woken and can lock the mutex itself. + * @see Mutex::Lock + */ + void unlock(); + + GMutex* gobj() { return &gobject_; } + +private: + GMutex gobject_; +}; + +/** Utility class for exception-safe mutex locking. + * @par Usage example: + * @code + * { + * Glib::Threads::Mutex::Lock lock(mutex); // calls mutex.lock() + * do_something(); + * } // the destructor calls mutex.unlock() + * @endcode + * As you can see, the compiler takes care of the unlocking. This is not + * only exception-safe but also much less error-prone. You could even + * return while still holding the lock and it will be released + * properly. + * + * @deprecated Please use std::lock_guard or std::unique_lock instead. + */ +class Mutex::Lock +{ +public: + explicit inline Lock(Mutex& mutex); + inline Lock(Mutex& mutex, NotLock); + inline Lock(Mutex& mutex, TryLock); + + Lock(const Mutex::Lock&) = delete; + Mutex::Lock& operator=(const Mutex::Lock&) = delete; + + inline ~Lock(); + + inline void acquire(); + inline bool try_acquire(); + inline void release(); + inline bool locked() const; + +private: + Mutex& mutex_; + bool locked_; +}; + +/** A C++ wrapper for the C object. + * Do not use operator delete on the returned pointer. If the caller owns the + * GMutex object, the caller must destroy it in the same way as if this function + * had not been called. + * + * @param gobject The C instance. + * @result The GMutex* cast to a Glib::Threads::Mutex*. + * + * @relates Glib::Threads::Mutex + */ +Mutex* wrap(GMutex* gobject); + +/** This represents a recursive mutex. + * It is similar to a Mutex with the difference + * that it is possible to lock a RecMutex multiple times in the same + * thread without deadlock. When doing so, care has to be taken to + * unlock the recursive mutex as often as it has been locked. + * + * @deprecated Please use std::recursive_mutex instead. + */ +class RecMutex +{ +public: + class Lock; + + RecMutex(); + + RecMutex(const RecMutex&) = delete; + RecMutex& operator=(const RecMutex&) = delete; + + ~RecMutex(); + + void lock(); + bool trylock(); + void unlock(); + + GRecMutex* gobj() { return &gobject_; } + +private: + GRecMutex gobject_; +}; + +/** Utility class for exception-safe locking of recursive mutexes. + * + * @deprecated Please use std::lock_guard or std::unique_lock instead. + */ +class RecMutex::Lock +{ +public: + explicit inline Lock(RecMutex& mutex); + inline Lock(RecMutex& mutex, NotLock); + inline Lock(RecMutex& mutex, TryLock); + + Lock(const RecMutex::Lock&) = delete; + RecMutex::Lock& operator=(const RecMutex::Lock&) = delete; + + inline ~Lock(); + + inline void acquire(); + inline bool try_acquire(); + inline void release(); + inline bool locked() const; + +private: + RecMutex& mutex_; + bool locked_; +}; + +/** A C++ wrapper for the C object. + * Do not use operator delete on the returned pointer. If the caller owns the + * GRecMutex object, the caller must destroy it in the same way as if this function + * had not been called. + * + * @param gobject The C instance. + * @result The GRecMutex* cast to a Glib::Threads::RecMutex*. + * + * @relates Glib::Threads::RecMutex + */ +RecMutex* wrap(GRecMutex* gobject); + +/** This represents a reader-writer lock. + * It is similar to a Mutex in that it allows + * multiple threads to coordinate access to a shared resource. + * + * The difference to a mutex is that a reader-writer lock discriminates + * between read-only ('reader') and full ('writer') access. While only + * one thread at a time is allowed write access (by holding the 'writer' + * lock via writer_lock()), multiple threads can gain + * simultaneous read-only access (by holding the 'reader' lock via + * reader_lock()). + * + * @deprecated Please use std::lock_guard or std::unique_lock instead, with std::shared_timed_mutex. + */ +class RWLock +{ +public: + class ReaderLock; + class WriterLock; + + RWLock(); + + RWLock(const RWLock&) = delete; + RWLock& operator=(const RWLock&) = delete; + + ~RWLock(); + + void reader_lock(); + bool reader_trylock(); + void reader_unlock(); + + void writer_lock(); + bool writer_trylock(); + void writer_unlock(); + + GRWLock* gobj() { return &gobject_; } + +private: + GRWLock gobject_; +}; + +/** Utility class for exception-safe locking of read/write locks. + * + * @deprecated Please use std::lock_guard or std::unique_lock instead, with std::shared_timed_mutex. + */ +class RWLock::ReaderLock +{ +public: + explicit inline ReaderLock(RWLock& rwlock); + inline ReaderLock(RWLock& rwlock, NotLock); + inline ReaderLock(RWLock& rwlock, TryLock); + + ReaderLock(const RWLock::ReaderLock&) = delete; + RWLock::ReaderLock& operator=(const RWLock::ReaderLock&) = delete; + + inline ~ReaderLock(); + + inline void acquire(); + inline bool try_acquire(); + inline void release(); + inline bool locked() const; + +private: + RWLock& rwlock_; + bool locked_; +}; + +/** Utility class for exception-safe locking of read/write locks. + * + * @deprecated Please use std::lock_guard or std::unique_lock instead, with std::shared_timed_mutex. + */ +class RWLock::WriterLock +{ +public: + explicit inline WriterLock(RWLock& rwlock); + inline WriterLock(RWLock& rwlock, NotLock); + inline WriterLock(RWLock& rwlock, TryLock); + + WriterLock(const RWLock::WriterLock&) = delete; + RWLock::WriterLock& operator=(const RWLock::WriterLock&) = delete; + + inline ~WriterLock(); + + inline void acquire(); + inline bool try_acquire(); + inline void release(); + inline bool locked() const; + +private: + RWLock& rwlock_; + bool locked_; +}; + +/** An opaque data structure to represent a condition. + * A @a Cond is an object that threads can block on, if they find a certain + * condition to be false. If other threads change the state of this condition + * they can signal the @a Cond, such that the waiting thread is woken up. + * + * @deprecated Please use std::condition_variable instead. + * + * @par Usage example: + * @code + * Glib::Threads::Cond data_cond; + * Glib::Threads::Mutex data_mutex; + * void* current_data = nullptr; + * + * void push_data(void* data) + * { + * Glib::Threads::Mutex::Lock lock(data_mutex); + * + * current_data = data; + * data_cond.signal(); + * } + * + * void* pop_data() + * { + * Glib::Threads::Mutex::Lock lock(data_mutex); + * + * while (!current_data) + * data_cond.wait(data_mutex); + * + * void* const data = current_data; + * current_data = nullptr; + * + * return data; + * } + * @endcode + */ +class Cond +{ +public: + Cond(); + + Cond(const Cond&) = delete; + Cond& operator=(const Cond&) = delete; + + ~Cond(); + + /** If threads are waiting for this @a Cond, exactly one of them is woken up. + * It is good practice to hold the same lock as the waiting thread, while calling + * this method, though not required. + */ + void signal(); + + /** If threads are waiting for this @a Cond, all of them are woken up. + * It is good practice to hold the same lock as the waiting threads, while calling + * this method, though not required. + */ + void broadcast(); + + /** Waits until this thread is woken up on this @a Cond. + * The mutex is unlocked before falling asleep and locked again before resuming. + * + * @param mutex A @a Mutex that is currently locked. + * + * @note It is important to use the @a wait() and @a wait_until() methods + * only inside a loop, which checks for the condition to be true as it is not + * guaranteed that the waiting thread will find it fulfilled, even if the signaling + * thread left the condition in that state. This is because another thread can have + * altered the condition, before the waiting thread got the chance to be woken up, + * even if the condition itself is protected by a @a Mutex. + */ + void wait(Mutex& mutex); + + /** Waits until this thread is woken up on this @a Cond, but not longer + * than until the time specified by @a end_time. + * The mutex is unlocked before falling asleep and locked again before resuming. + * + * @par Usage example: + * Extending the example presented in the documentation of class Cond. + * @code + * void* pop_data_timed() + * { + * Glib::Threads::Mutex::Lock lock(data_mutex); + * + * // Wait at most 5 seconds. + * const gint64 end_time = g_get_monotonic_time() + 5 * G_TIME_SPAN_SECOND; + * while (!current_data) + * if (!data_cond.wait_until(data_mutex, end_time) + * return nullptr; // timeout + * + * void* const data = current_data; + * current_data = nullptr; + * + * return data; + * } + * @endcode + * The end time is calculated once, before entering the loop, and reused. + * This is the motivation behind the use of absolute time. If a relative time + * of 5 seconds were passed directly to the call and a spurious wakeup + * occurred, the program would have to start over waiting again, which would + * lead to a total wait time of more than 5 seconds. + * + * @param mutex A @a Mutex that is currently locked. + * @param end_time The monotonic time to wait until, in microseconds. + * See g_get_monotonic_time(). + * @return true if the condition variable was signalled (or in the case + * of a spurious wakeup), false if @a end_time has passed. + * + * @note It is important to use the @a wait() and @a wait_until() methods + * only inside a loop, which checks for the condition to be true as it is not + * guaranteed that the waiting thread will find it fulfilled, even if the signaling + * thread left the condition in that state. This is because another thread can have + * altered the condition, before the waiting thread got the chance to be woken up, + * even if the condition itself is protected by a @a Mutex. + */ + bool wait_until(Mutex& mutex, gint64 end_time); + + GCond* gobj() { return &gobject_; } + +private: + GCond gobject_; +}; + +/** Thread-local data pointer. + * + * It is recommended that all instances of this class are statically allocated. + * The first time an instance is used (get(), set() or replace() is called) + * glib allocates a scarce OS resource that cannot be deallocated. + * + * @deprecated Please use the thread_local keyword instead. + */ +template +class Private +{ +public: + Private(const Private&) = delete; + Private& operator=(const Private&) = delete; + + using DestructorFunc = void (*) (void*); + + /** Deletes static_cast(data) + */ + static void delete_ptr(void* data); + + /** Constructor. + * + * @param destructor_func Function pointer, or nullptr. If @a destructor_func is not nullptr + * and the stored data pointer is not nullptr, this function is called when replace() + * is called and when the thread exits. + */ + explicit inline Private(DestructorFunc destructor_func = &Private::delete_ptr); + + /** Gets the pointer stored in the calling thread. + * + * @return If no value has yet been set in this thread, nullptr is returned. + */ + inline T* get(); + + /** Sets the pointer in the calling thread without calling destructor_func(). + */ + inline void set(T* data); + + /** Sets the pointer in the calling thread and calls destructor_func(). + * If a function pointer (and not nullptr) was specified in the constructor, and + * the stored data pointer before the call to replace() is not nullptr, then + * destructor_func() is called with this old pointer value. + * + * @newin{2,32} + */ + inline void replace(T* data); + + GPrivate* gobj() { return &gobject_; } + +private: + GPrivate gobject_; +}; + +/** @} group Threads */ + +/*! A glibmm thread example. + * @example thread/thread.cc + */ + + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + +/***************************************************************************/ +/* inline implementation */ +/***************************************************************************/ + +/**** Glib::Threads::Mutex::Lock *******************************************/ + +inline +Mutex::Lock::Lock(Mutex& mutex) +: + mutex_ (mutex), + locked_ (true) +{ + mutex_.lock(); +} + +inline +Mutex::Lock::Lock(Mutex& mutex, NotLock) +: + mutex_ (mutex), + locked_ (false) +{} + +inline +Mutex::Lock::Lock(Mutex& mutex, TryLock) +: + mutex_ (mutex), + locked_ (mutex.trylock()) +{} + +inline +Mutex::Lock::~Lock() +{ + if(locked_) + mutex_.unlock(); +} + +inline +void Mutex::Lock::acquire() +{ + mutex_.lock(); + locked_ = true; +} + +inline +bool Mutex::Lock::try_acquire() +{ + locked_ = mutex_.trylock(); + return locked_; +} + +inline +void Mutex::Lock::release() +{ + mutex_.unlock(); + locked_ = false; +} + +inline +bool Mutex::Lock::locked() const +{ + return locked_; +} + + +/**** Glib::Threads::RecMutex::Lock ****************************************/ + +inline +RecMutex::Lock::Lock(RecMutex& mutex) +: + mutex_ (mutex), + locked_ (true) +{ + mutex_.lock(); +} + +inline +RecMutex::Lock::Lock(RecMutex& mutex, NotLock) +: + mutex_ (mutex), + locked_ (false) +{} + +inline +RecMutex::Lock::Lock(RecMutex& mutex, TryLock) +: + mutex_ (mutex), + locked_ (mutex.trylock()) +{} + +inline +RecMutex::Lock::~Lock() +{ + if(locked_) + mutex_.unlock(); +} + +inline +void RecMutex::Lock::acquire() +{ + mutex_.lock(); + locked_ = true; +} + +inline +bool RecMutex::Lock::try_acquire() +{ + locked_ = mutex_.trylock(); + return locked_; +} + +inline +void RecMutex::Lock::release() +{ + mutex_.unlock(); + locked_ = false; +} + +inline +bool RecMutex::Lock::locked() const +{ + return locked_; +} + + +/**** Glib::Threads::RWLock::ReaderLock ************************************/ + +inline +RWLock::ReaderLock::ReaderLock(RWLock& rwlock) +: + rwlock_ (rwlock), + locked_ (true) +{ + rwlock_.reader_lock(); +} + +inline +RWLock::ReaderLock::ReaderLock(RWLock& rwlock, NotLock) +: + rwlock_ (rwlock), + locked_ (false) +{} + +inline +RWLock::ReaderLock::ReaderLock(RWLock& rwlock, TryLock) +: + rwlock_ (rwlock), + locked_ (rwlock.reader_trylock()) +{} + +inline +RWLock::ReaderLock::~ReaderLock() +{ + if(locked_) + rwlock_.reader_unlock(); +} + +inline +void RWLock::ReaderLock::acquire() +{ + rwlock_.reader_lock(); + locked_ = true; +} + +inline +bool RWLock::ReaderLock::try_acquire() +{ + locked_ = rwlock_.reader_trylock(); + return locked_; +} + +inline +void RWLock::ReaderLock::release() +{ + rwlock_.reader_unlock(); + locked_ = false; +} + +inline +bool RWLock::ReaderLock::locked() const +{ + return locked_; +} + + +/**** Glib::Threads::RWLock::WriterLock ************************************/ + +inline +RWLock::WriterLock::WriterLock(RWLock& rwlock) +: + rwlock_ (rwlock), + locked_ (true) +{ + rwlock_.writer_lock(); +} + +inline +RWLock::WriterLock::WriterLock(RWLock& rwlock, NotLock) +: + rwlock_ (rwlock), + locked_ (false) +{} + +inline +RWLock::WriterLock::WriterLock(RWLock& rwlock, TryLock) +: + rwlock_ (rwlock), + locked_ (rwlock.writer_trylock()) +{} + +inline +RWLock::WriterLock::~WriterLock() +{ + if(locked_) + rwlock_.writer_unlock(); +} + +inline +void RWLock::WriterLock::acquire() +{ + rwlock_.writer_lock(); + locked_ = true; +} + +inline +bool RWLock::WriterLock::try_acquire() +{ + locked_ = rwlock_.writer_trylock(); + return locked_; +} + +inline +void RWLock::WriterLock::release() +{ + rwlock_.writer_unlock(); + locked_ = false; +} + +inline +bool RWLock::WriterLock::locked() const +{ + return locked_; +} + +/**** Glib::Threads::Private ********************************************/ + +// static +template +void Private::delete_ptr(void* data) +{ + delete static_cast(data); +} + +template inline +Private::Private(typename Private::DestructorFunc destructor_func) +{ + // gobject_ = G_PRIVATE_INIT(destructor_func); + // does not compile with --enable-warnings=fatal. + // GPrivate is a struct, and G_PRIVATE_INIT is an initializer of type { ... }. + // G_PRIVATE_INIT can be used only in initializations. + const GPrivate temp = G_PRIVATE_INIT(destructor_func); + gobject_ = temp; +} + +template inline +T* Private::get() +{ + return static_cast(g_private_get(&gobject_)); +} + +template inline +void Private::set(T* data) +{ + g_private_set(&gobject_, data); +} + +template inline +void Private::replace(T* data) +{ + g_private_replace(&gobject_, data); +} + +#endif /* DOXYGEN_SHOULD_SKIP_THIS */ + +} //namespace Threads + +} // namespace Glib diff --git a/glib/src/value_basictypes.cc.m4 b/glib/src/value_basictypes.cc.m4 index 5f52747..6dd549f 100644 --- a/glib/src/value_basictypes.cc.m4 +++ b/glib/src/value_basictypes.cc.m4 @@ -47,7 +47,7 @@ $1 Value<$1>::get() const GParamSpec* Value<$1>::create_param_spec(const Glib::ustring& name) const { return create_param_spec(name, Glib::ustring(), Glib::ustring(), - Glib::ParamFlags::READWRITE); + Glib::PARAM_READWRITE); } GParamSpec* Value<$1>::create_param_spec(const Glib::ustring& name, const Glib::ustring& nick, @@ -77,6 +77,9 @@ G_GNUC_EXTENSION typedef long long long_long; G_GNUC_EXTENSION typedef unsigned long long unsigned_long_long; GLIB_VALUE_BASIC(bool, boolean) +#ifndef GLIBMM_DISABLE_DEPRECATED +GLIB_VALUE_BASIC(char, char, -128, 127) +#endif // GLIBMM_DISABLE_DEPRECATED GLIB_VALUE_BASIC(signed char, schar, -128, 127) GLIB_VALUE_BASIC(unsigned char, uchar, 0, 255) GLIB_VALUE_BASIC(int, int, G_MININT, G_MAXINT) diff --git a/glib/src/value_basictypes.h.m4 b/glib/src/value_basictypes.h.m4 index b6a3c83..5381b8b 100644 --- a/glib/src/value_basictypes.h.m4 +++ b/glib/src/value_basictypes.h.m4 @@ -33,6 +33,7 @@ class Value<$1> : public ValueBase { public: using CppType = $1; + using CType = g$2; static GType value_type() G_GNUC_CONST; @@ -65,6 +66,10 @@ divert[]dnl namespace Glib { GLIB_VALUE_BASIC(bool, boolean) +#ifndef GLIBMM_DISABLE_DEPRECATED +/// @deprecated Use Value instead. +GLIB_VALUE_BASIC(char, char) +#endif // GLIBMM_DISABLE_DEPRECATED /// @newin{2,44} GLIB_VALUE_BASIC(signed char, int8) GLIB_VALUE_BASIC(unsigned char, uchar) diff --git a/glib/src/valuearray.ccg b/glib/src/valuearray.ccg new file mode 100644 index 0000000..7776acb --- /dev/null +++ b/glib/src/valuearray.ccg @@ -0,0 +1,98 @@ +/* Copyright (C) 2002-2009 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include + +static int +ValueArray_Compare_glibmm_callback(gconstpointer a, gconstpointer b, gpointer user_data) +{ + Glib::ValueArray::SlotCompare* the_slot = static_cast(user_data); + + try + { + return (*the_slot)( + *reinterpret_cast(a), *reinterpret_cast(b)); + } + catch (...) + { + Glib::exception_handlers_invoke(); + } + + return 0; +} + +namespace Glib +{ + +ValueArray::ValueArray() : gobject_(g_value_array_new(0)) +{ +} + +ValueArray::ValueArray(guint n_preallocated) : gobject_(g_value_array_new(n_preallocated)) +{ +} + +bool +ValueArray::get_nth(guint index, Glib::ValueBase& value) +{ + const auto g_value = g_value_array_get_nth(gobj(), index); + + if (g_value) + { + value.init(g_value); + return true; + } + else + return false; +} + +Glib::ValueArray& +ValueArray::append(const Glib::ValueBase& value) +{ + g_value_array_append(gobj(), value.gobj()); + return *this; +} + +Glib::ValueArray& +ValueArray::prepend(const Glib::ValueBase& value) +{ + g_value_array_prepend(gobj(), value.gobj()); + return *this; +} + +Glib::ValueArray& +ValueArray::insert(guint index, const Glib::ValueBase& value) +{ + g_value_array_insert(gobj(), index, value.gobj()); + return *this; +} + +Glib::ValueArray& +ValueArray::remove(guint index) +{ + g_value_array_remove(gobj(), index); + return *this; +} + +Glib::ValueArray& +ValueArray::sort(const SlotCompare& compare_func) +{ + SlotCompare slot_copy(compare_func); + g_value_array_sort_with_data(gobj(), &ValueArray_Compare_glibmm_callback, &slot_copy); + return *this; +} + +} // Glib namespace diff --git a/glib/src/valuearray.hg b/glib/src/valuearray.hg new file mode 100644 index 0000000..1e9bed0 --- /dev/null +++ b/glib/src/valuearray.hg @@ -0,0 +1,94 @@ +/* Copyright (C) 2002-2009 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +_CONFIGINCLUDE(glibmmconfig.h) + +_DEFS(glibmm,glib) + +#include +#include +#include + +#m4 _PUSH(SECTION_CC_PRE_INCLUDES) +#undef G_DISABLE_DEPRECATED +#define GLIB_DISABLE_DEPRECATION_WARNINGS 1 +#m4 _POP() + +_IS_DEPRECATED // This whole file is deprecated. + +namespace Glib +{ + +/** A container structure to maintain an array of generic values. + * The prime purpose of a ValueArray is for it to be used as an object property + * that holds an array of values. A ValueArray wraps an array of ValueBase + * elements. + * + * @newin{2,22} + * + * @deprecated Use std::vector or std::vector< Glib::Value<> > + * instead of Glib::ValueArray. + */ +class ValueArray +{ + _CLASS_BOXEDTYPE(ValueArray, GValueArray, NONE, g_value_array_copy, g_value_array_free) + _IGNORE(g_value_array_copy, g_value_array_free) + _CUSTOM_DEFAULT_CTOR + +public: + /** For example, + * int on_compare(const Glib::ValueBase& v1, const Glib::ValueBase& v2);. + * The compare function should return -1 if v1 < v2, 0 if v1 == v2, and 1 if + * v1 > v2. + */ + using SlotCompare = sigc::slot; + + /** Default constructor. Constructs a new array with no pre-allocation. + */ + ValueArray(); + + /** Constructs a new array with pre-allocation. + */ + ValueArray(guint n_preallocated); + + /** Return the value at @a index contained in the value array. + * @param index Index of the value of interest. + * @param value An uninitialized ValueBase in which to store the result. If + * the get is successful, @a value will be valid, otherwise it will remain + * uninitialized. + * @return whether the get was successful or not. + */ + bool get_nth(guint index, Glib::ValueBase& value); + _IGNORE(g_value_array_get_nth) + + _WRAP_METHOD_DOCS_ONLY(g_value_array_append) + Glib::ValueArray& append(const Glib::ValueBase& value); + + _WRAP_METHOD_DOCS_ONLY(g_value_array_prepend) + Glib::ValueArray& prepend(const Glib::ValueBase& value); + + _WRAP_METHOD_DOCS_ONLY(g_value_array_insert) + Glib::ValueArray& insert(guint index, const Glib::ValueBase& value); + + _WRAP_METHOD_DOCS_ONLY(g_value_array_remove) + Glib::ValueArray& remove(guint index); + + _WRAP_METHOD_DOCS_ONLY(g_value_array_sort) + Glib::ValueArray& sort(const SlotCompare& compare_func); + _IGNORE(g_value_array_sort_with_data) +}; + +} //namespace Glib diff --git a/glib/src/variant.ccg b/glib/src/variant.ccg index 086c797..998955c 100644 --- a/glib/src/variant.ccg +++ b/glib/src/variant.ccg @@ -22,8 +22,6 @@ namespace Glib { -/****************** VariantBase ***********************************/ - VariantBase::VariantBase(GVariant* castitem, bool make_a_copy /* = false */) { if (castitem) @@ -38,32 +36,6 @@ VariantBase::VariantBase(GVariant* castitem, bool make_a_copy /* = false */) gobject_ = castitem; } -VariantBase::operator bool() const -{ - return gobj(); -} - -void -VariantBase::init(const GVariant* cobject, bool take_a_reference) -{ - if (gobject_) - g_variant_unref(gobject_); - - gobject_ = const_cast(cobject); - if (take_a_reference) - g_variant_ref(gobject_); -} - -bool VariantBase::operator==(const VariantBase& other) const -{ - return equal(other); -} - -bool VariantBase::operator!=(const VariantBase& other) const -{ - return !equal(other); -} - void VariantBase::get_normal_form(VariantBase& result) const { @@ -136,8 +108,6 @@ VariantBase::is_castable_to(const VariantType& supertype) const return true; } -/****************** VariantStringBase ***********************************/ - VariantStringBase::VariantStringBase() : VariantBase() { } @@ -167,8 +137,6 @@ VariantStringBase::create_signature(VariantStringBase& output, const std::string output.init(result); } -/****************** VariantContainerBase ***********************************/ - VariantContainerBase::VariantContainerBase() : VariantBase() { } @@ -276,6 +244,29 @@ VariantContainerBase::get_iter(const VariantType& container_variant_type) const /****************** Specializations ***********************************/ +_DEPRECATE_IFDEF_START +VariantBase::operator const void*() const +{ + return gobj() ? GINT_TO_POINTER(1) : nullptr; +} +_DEPRECATE_IFDEF_END + +VariantBase::operator bool() const +{ + return gobj() != nullptr; +} + +void +VariantBase::init(const GVariant* cobject, bool take_a_reference) +{ + if (gobject_) + g_variant_unref(gobject_); + + gobject_ = const_cast(cobject); + if (take_a_reference) + g_variant_ref(gobject_); +} + /*--------------------Variant---------------------*/ Variant::Variant() : VariantContainerBase() @@ -339,6 +330,30 @@ Variant::get() const return convert_const_gchar_ptr_to_ustring(g_variant_get_string(gobject_, nullptr)); } +// Variant makes sense for multiple types. +// See http://library.gnome.org/devel/glib/unstable/glib-GVariant.html#g-variant-get-string +template <> +Variant +VariantBase::cast_dynamic>(const VariantBase& v) +{ + if (!v.gobj()) + { + return Variant(); + } + + const VariantType vtype = v.get_type(); + if (vtype.equal(VARIANT_TYPE_STRING) || vtype.equal(VARIANT_TYPE_OBJECT_PATH) || + vtype.equal(VARIANT_TYPE_SIGNATURE)) + { + return Variant(const_cast(v.gobj()), true); + } + else + { + // std::cerr << "vtype=" << v.get_type_string() << std::endl; + throw std::bad_cast(); + } +} + /*--------------------Variant---------------------*/ Variant::Variant() : VariantStringBase() @@ -428,6 +443,30 @@ Variant::create(const std::string& data) return result; } +// Variant makes sense for multiple types. +// See http://library.gnome.org/devel/glib/unstable/glib-GVariant.html#g-variant-get-string +template <> +Variant +VariantBase::cast_dynamic>(const VariantBase& v) +{ + if (!v.gobj()) + { + return Variant(); + } + + const VariantType vtype = v.get_type(); + if (vtype.equal(VARIANT_TYPE_STRING) || vtype.equal(VARIANT_TYPE_BYTESTRING) || + vtype.equal(VARIANT_TYPE_OBJECT_PATH) || vtype.equal(VARIANT_TYPE_SIGNATURE)) + { + return Variant(const_cast(v.gobj()), true); + } + else + { + // std::cerr << "vtype=" << v.get_type_string() << std::endl; + throw std::bad_cast(); + } +} + std::string Variant::get() const { diff --git a/glib/src/variant.hg b/glib/src/variant.hg index 95633c7..62f1bda 100644 --- a/glib/src/variant.hg +++ b/glib/src/variant.hg @@ -29,6 +29,7 @@ _DEFS(glibmm,glib) #include #include #include +#include namespace Glib { @@ -96,6 +97,29 @@ class VariantBase g_variant_get, g_variant_get_va) public: +_DEPRECATE_IFDEF_START + /** This typedef is just to make it more obvious that + * our operator const void* should be used like operator bool(). + * + * @deprecated Use the explicit operator bool() instead. + */ + using BoolExpr = const void*; + + /** Test whether the Variant has an underlying instance. + * + * Mimics usage of pointers: + * @code + * if (variant) + * do_something(); + * @endcode + * + * @deprecated Use the explicit operator bool() instead. + * + * @newin{2,36} + */ + operator BoolExpr() const; +_DEPRECATE_IFDEF_END + /** Test whether the Variant has an underlying instance. * * @newin{2,50} @@ -124,6 +148,7 @@ public: _WRAP_METHOD(GVariantClass classify() const, g_variant_classify) _WRAP_METHOD(gsize get_size() const, g_variant_get_size) + _WRAP_METHOD(gconstpointer get_data(), g_variant_get_data, deprecated "Use the const version instead.") _WRAP_METHOD(gconstpointer get_data() const, g_variant_get_data, newin "2,46") _WRAP_METHOD(Glib::RefPtr get_data_as_bytes() const, g_variant_get_data_as_bytes, newin "2,46") _WRAP_METHOD(void store(gpointer data) const, g_variant_store) @@ -143,39 +168,6 @@ public: */ _WRAP_METHOD(bool equal(const VariantBase& other) const, g_variant_equal) - /** Checks if @a *this and @a other have the same type and value. - * - * @newin{2,56} - * - * @param other The Variant to compare with. - * @return true if @a *this and @a other are equal. - */ - bool operator==(const VariantBase& other) const; - - /** Checks if @a *this and @a other have the same type and value. - * - * @newin{2,56} - * - * @param other The Variant to compare with. - * @return true if @a *this and @a other are not equal. - */ - bool operator!=(const VariantBase& other) const; - - /** Ordering relational operators. - * These are explicitly deleted to prevent the compiler from generating - * error messages containing long lists of operators that can't be used. - */ - bool operator<(const VariantBase& other) const = delete; - - /// See operator<(). - bool operator<=(const VariantBase& other) const = delete; - - /// See operator<(). - bool operator>(const VariantBase& other) const = delete; - - /// See operator<(). - bool operator>=(const VariantBase& other) const = delete; - /** Gets a VariantBase instance that has the same value as this variant and * is trusted to be in normal form. * @@ -256,6 +248,27 @@ protected: */ bool is_castable_to(const VariantType& supertype) const; #endif //DOXYGEN_SHOULD_SKIP_THIS + +private: + /** Relational operators are deleted to prevent invalid conversion + * to const void*. + */ + bool operator<(const VariantBase& src) const; + + /// See operator<(). + bool operator<=(const VariantBase& src) const; + + /// See operator<(). + bool operator>(const VariantBase& src) const; + + /// See operator<(). + bool operator>=(const VariantBase& src) const; + + /// See operator<(). + bool operator==(const VariantBase& src) const; + + /// See operator<(). + bool operator!=(const VariantBase& src) const; }; template @@ -585,6 +598,10 @@ public: _IGNORE(g_variant_get_string, g_variant_dup_string) }; +//TODO: When we can break ABI, remove this template specialization. +template<> +Variant VariantBase::cast_dynamic< Variant >(const VariantBase& v); + /** Specialization of Variant containing a Glib::DBusObjectPathString, * for variants of type object path. * @newin{2,54} @@ -721,6 +738,10 @@ public: _IGNORE(g_variant_get_bytestring, g_variant_dup_bytestring) }; +//TODO: When we can break ABI, remove this template specialization. +template<> +Variant VariantBase::cast_dynamic< Variant >(const VariantBase& v); + /** Specialization of Variant containing a dictionary entry. See also * Variant< std::map >. * @newin{2,28} @@ -1117,7 +1138,7 @@ public: }; /** Specialization of Variant containing a tuple. - * @newin{2,52} + * @newin{2,54} * @ingroup Variant */ template @@ -1143,13 +1164,13 @@ public: /** Creates a new Variant containing a tuple. * @param data The tuple to use for creation. * @return The new Variant holding a tuple. - * @newin{2,52} + * @newin{2,54} */ static Variant> create(const std::tuple& data); /** Gets the VariantType. * @return The VariantType. - * @newin{2,52} + * @newin{2,54} */ static const VariantType& variant_type() G_GNUC_CONST; @@ -1160,7 +1181,7 @@ public: * @param index The index of the element. * @return The tuple element at index @a index. * @throw std::out_of_range - * @newin{2,52} + * @newin{2,54} */ template T get_child(gsize index) const; @@ -1170,13 +1191,13 @@ public: /** Gets the tuple of the Variant. * @return The tuple. - * @newin{2,52} + * @newin{2,54} */ std::tuple get() const; /** Gets a VariantIter of the Variant. * @return The VariantIter. - * @newin{2,52} + * @newin{2,54} */ VariantIter get_iter() const; }; @@ -1488,9 +1509,69 @@ const VariantType& Variant>::variant_type() #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace detail { +// std::index_sequence and std::index_sequence_for are new in C++14, +// but this version of glibmm requires only C++11. +// The following code replaces std::index_sequence and std::index_sequence_for +// until we can require C++14 support. +// See https://bugzilla.gnome.org/show_bug.cgi?id=787648 + + /// Class template integer_sequence + template + struct integer_sequence + { + typedef T value_type; + static constexpr std::size_t size() { return sizeof...(Idx); } + }; + + // Concatenates two integer_sequences. + template struct iseq_cat; + + template + struct iseq_cat, integer_sequence> + { + using type = integer_sequence; + }; + + // Builds an integer_sequence. + template + struct make_intseq + : iseq_cat::type, + typename make_intseq::type> + { }; + + template + struct make_intseq + { + typedef integer_sequence type; + }; + + template + struct make_intseq + { + typedef integer_sequence type; + }; + + /// Alias template make_integer_sequence + template + using make_integer_sequence = typename make_intseq::type; + + /// Alias template index_sequence + template + using index_sequence = integer_sequence; + + /// Alias template make_index_sequence + template + using make_index_sequence = make_integer_sequence; + + /// Alias template index_sequence_for + template + using index_sequence_for = make_index_sequence; + +// End of code that replaces std::index_sequence and std::index_sequence_for + template void expand_tuple(std::vector &variants, const Tuple & t, - std::index_sequence) + detail::index_sequence) { using swallow = int[]; // ensures left to right order auto expander = [&variants](const VariantBase &variant) -> int @@ -1509,7 +1590,7 @@ Variant>::create(const std::tuple& data) { // create a vector containing all tuple values as variants std::vector variants; - detail::expand_tuple(variants, data, std::index_sequence_for{}); + detail::expand_tuple(variants, data, detail::index_sequence_for{}); using var_ptr = GVariant*; var_ptr* const var_array = new var_ptr[sizeof... (Types)]; @@ -1546,14 +1627,13 @@ namespace detail { // swallows any argument template -constexpr int any_arg(T&& arg) +constexpr int any_arg(T&& /* arg */) { - (void)arg; return 0; } template -void assign_tuple(std::vector &variants, Tuple & t, std::index_sequence) +void assign_tuple(std::vector &variants, Tuple & t, detail::index_sequence) { int i = 0; using swallow = int[]; // ensures left to right order @@ -1576,7 +1656,7 @@ std::tuple Variant>::get() const return i++; }; (void)swallow{(expander(get_child_variant(i)))...}; - detail::assign_tuple(variants, data, std::index_sequence_for{}); + detail::assign_tuple(variants, data, detail::index_sequence_for{}); return data; } diff --git a/glib/src/variantiter.ccg b/glib/src/variantiter.ccg index 7078951..f921b6c 100644 --- a/glib/src/variantiter.ccg +++ b/glib/src/variantiter.ccg @@ -20,7 +20,7 @@ namespace Glib { -VariantIter::VariantIter(const VariantContainerBase& variant) +VariantIter::VariantIter(const VariantBase& variant) : gobject_(g_variant_iter_new(const_cast(variant.gobj()))) { } diff --git a/glib/src/variantiter.hg b/glib/src/variantiter.hg index c81dc29..401bc4a 100644 --- a/glib/src/variantiter.hg +++ b/glib/src/variantiter.hg @@ -27,7 +27,7 @@ class VariantContainerBase; //because g_iter_value_get_next_value() both gets a value and changes the iterator. //GtkTextIter allows us to go forward and then separately get the current value. /** VariantIter - An opaque data structure used to iterate through - * VariantContainerBase containers such as arrays. + * VariantBase containers such as arrays. * @newin{2,28} */ class VariantIter @@ -35,7 +35,8 @@ class VariantIter _CLASS_OPAQUE_COPYABLE(VariantIter, GVariantIter, NONE, g_variant_iter_copy, g_variant_iter_free) _IGNORE(g_variant_iter_copy, g_variant_iter_free) public: - explicit VariantIter(const VariantContainerBase& variant); + //TODO: The variant parameter should be a VariantContainerBase. + explicit VariantIter(const VariantBase& variant); _WRAP_METHOD(gsize init(const VariantContainerBase& value), g_variant_iter_init) diff --git a/glib/src/varianttype.hg b/glib/src/varianttype.hg index ba16db7..4a8a355 100644 --- a/glib/src/varianttype.hg +++ b/glib/src/varianttype.hg @@ -125,8 +125,9 @@ public: _WRAP_METHOD(static VariantType create_dict_entry(const VariantType& key, const VariantType& value), g_variant_type_new_dict_entry) - _WRAP_METHOD(gsize get_string_length() const, g_variant_type_get_string_length) - dnl// wrapped by hand, because g_variant_type_peek_string does not return a nul-terminated C string. + //TODO: Use something instead of gsize? + _WRAP_METHOD(gsize _get_string_length() const, g_variant_type_get_string_length) + dnl wrapped by hand, because g_variant_type_peek_string does not return a C string. _WRAP_METHOD_DOCS_ONLY(g_variant_type_peek_string) std::string get_string() const; _IGNORE(g_variant_type_dup_string) @@ -164,6 +165,8 @@ public: // g_variant_type_value() because they don't do that already. #m4 _CONVERSION(`const GVariantType*',`VariantType',`Glib::wrap(const_cast($3), true)') _WRAP_METHOD(VariantType element() const, g_variant_type_element) + _WRAP_METHOD(VariantType first() const, g_variant_type_first, deprecated "Use get_item_types() instead.") + _WRAP_METHOD(VariantType next () const, g_variant_type_next, deprecated "Use get_item_types() instead.") _WRAP_METHOD(gsize n_items() const, g_variant_type_n_items) _WRAP_METHOD(VariantType key() const, g_variant_type_key) _WRAP_METHOD(VariantType value() const, g_variant_type_value) @@ -183,7 +186,6 @@ public: * @return The item types of this %VariantType, or an empty vector. */ std::vector get_item_types() const; - _IGNORE(g_variant_type_first, g_variant_type_next) // This function is part of unexposed API in gvarianttypeinfo.{h,c} for an // also unexposed GVariantTypeInfo structure of glib. diff --git a/tests/Makefile.am b/tests/Makefile.am index 7e04968..2cb35ab 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -22,7 +22,6 @@ check_PROGRAMS = \ giomm_ioerror_and_iodbuserror/test \ giomm_memoryinputstream/test \ giomm_simple/test \ - giomm_stream_vfuncs/test \ giomm_asyncresult_sourceobject/test \ giomm_tls_client/test \ giomm_listmodel/test \ @@ -34,21 +33,22 @@ check_PROGRAMS = \ glibmm_interface_move/test \ glibmm_mainloop/test \ glibmm_nodetree/test \ - glibmm_object/test \ glibmm_object_move/test \ - glibmm_objectbase/test \ glibmm_objectbase_move/test \ glibmm_ustring_compose/test \ glibmm_ustring_format/test \ glibmm_value/test \ + glibmm_valuearray/test \ glibmm_variant/test \ glibmm_vector/test \ glibmm_bool_vector/test \ + glibmm_bool_arrayhandle/test \ glibmm_null_vectorutils/test \ + glibmm_null_containerhandle/test \ glibmm_refptr/test \ glibmm_refptr_sigc_bind/test \ - glibmm_bytearray/test \ - glibmm_ustring_make_valid/test + glibmm_weakref/test \ + glibmm_bytearray/test TESTS = $(check_PROGRAMS) @@ -56,9 +56,8 @@ glibmm_includes = -I$(top_builddir)/glib $(if $(srcdir:.=),-I$(top_srcdir)/glib) giomm_includes = -I$(top_builddir)/gio $(if $(srcdir:.=),-I$(top_srcdir)/gio) local_cppflags = -I$(top_builddir) $(glibmm_includes) $(giomm_includes) -cxxflags_disable_deprecated = $(GLIBMM_WXXFLAGS) -DGLIBMM_DISABLE_DEPRECATED -DGIOMM_DISABLE_DEPRECATED AM_CPPFLAGS = $(local_cppflags) $(GIOMM_CFLAGS) -AM_CXXFLAGS = $(GLIBMM_WXXFLAGS) $(cxxflags_disable_deprecated) +AM_CXXFLAGS = $(GLIBMM_WXXFLAGS) -DGLIBMM_DISABLE_DEPRECATED -DGIOMM_DISABLE_DEPRECATED local_libglibmm = $(top_builddir)/glib/glibmm/libglibmm-$(GLIBMM_API_VERSION).la @@ -79,9 +78,6 @@ giomm_memoryinputstream_test_LDADD = $(giomm_ldadd) giomm_simple_test_SOURCES = giomm_simple/main.cc giomm_simple_test_LDADD = $(giomm_ldadd) -giomm_stream_vfuncs_test_SOURCES = giomm_stream_vfuncs/main.cc -giomm_stream_vfuncs_test_LDADD = $(giomm_ldadd) - giomm_asyncresult_sourceobject_test_SOURCES = giomm_asyncresult_sourceobject/main.cc giomm_asyncresult_sourceobject_test_LDADD = $(giomm_ldadd) @@ -100,30 +96,25 @@ glibmm_interface_implementation_test_SOURCES = glibmm_interface_implementation/m glibmm_interface_implementation_test_LDADD = $(giomm_ldadd) glibmm_interface_move_test_SOURCES = glibmm_interface_move/main.cc -glibmm_interface_move_test_CXXFLAGS = $(GLIBMM_INTERFACE_TEST_WXXFLAGS) $(cxxflags_disable_deprecated) - glibmm_mainloop_test_SOURCES = glibmm_mainloop/main.cc glibmm_nodetree_test_SOURCES = glibmm_nodetree/main.cc -glibmm_object_test_SOURCES = glibmm_object/main.cc \ - glibmm_object/test_derived_object.h -glibmm_object_move_test_SOURCES = glibmm_object_move/main.cc \ - glibmm_object/test_derived_object.h -glibmm_objectbase_test_SOURCES = glibmm_objectbase/main.cc \ - glibmm_objectbase/test_derived_objectbase.h \ - glibmm_object/test_derived_object.h -glibmm_objectbase_move_test_SOURCES = glibmm_objectbase_move/main.cc \ - glibmm_objectbase/test_derived_objectbase.h \ - glibmm_object/test_derived_object.h +glibmm_object_move_test_SOURCES = glibmm_object_move/main.cc +glibmm_objectbase_move_test_SOURCES = glibmm_objectbase_move/main.cc glibmm_ustring_compose_test_SOURCES = glibmm_ustring_compose/main.cc glibmm_ustring_format_test_SOURCES = glibmm_ustring_format/main.cc -glibmm_value_test_SOURCES = glibmm_value/main.cc +glibmm_value_test_SOURCES = glibmm_value/glibmm_value.cc glibmm_value/main.cc +glibmm_valuearray_test_SOURCES = glibmm_valuearray/main.cc glibmm_variant_test_SOURCES = glibmm_variant/main.cc glibmm_vector_test_SOURCES = glibmm_vector/main.cc glibmm_vector_test_LDADD = $(giomm_ldadd) glibmm_bool_vector_test_SOURCES = glibmm_bool_vector/main.cc +glibmm_bool_arrayhandle_test_SOURCES = glibmm_bool_arrayhandle/main.cc glibmm_null_vectorutils_test_SOURCES = glibmm_null_vectorutils/main.cc glibmm_null_vectorutils_test_LDADD = $(giomm_ldadd) +glibmm_null_containerhandle_test_SOURCES = glibmm_null_containerhandle/main.cc +glibmm_null_containerhandle_test_LDADD = $(giomm_ldadd) glibmm_refptr_test_SOURCES = glibmm_refptr/main.cc glibmm_refptr_sigc_bind_test_SOURCES = glibmm_refptr_sigc_bind/main.cc +glibmm_weakref_test_SOURCES = glibmm_weakref/main.cc +glibmm_weakref_test_LDADD = $(giomm_ldadd) glibmm_bytearray_test_SOURCES = glibmm_bytearray/main.cc -glibmm_ustring_make_valid_test_SOURCES = glibmm_ustring_make_valid/main.cc diff --git a/tests/giomm_listmodel/main.cc b/tests/giomm_listmodel/main.cc index 1024a05..f40a943 100644 --- a/tests/giomm_listmodel/main.cc +++ b/tests/giomm_listmodel/main.cc @@ -39,7 +39,7 @@ void test_store_boundaries() { auto store = Gio::ListStore::create(); auto item = Gio::MenuItem::create("", ""); - std::weak_ptr weakref_item = item; + auto weakref_item = Glib::WeakRef(item); // Remove an item from an empty list. store->remove(0); @@ -84,7 +84,7 @@ void test_store_boundaries() store.reset(); item.reset(); - if (weakref_item.lock()) + if (weakref_item) { result = EXIT_FAILURE; std::cerr << "test_store_boundaries(), 10: weakref_item is not null" << std::endl; @@ -116,16 +116,16 @@ void test_store_refcounts() const std::size_t n_items = 10; std::vector> items; - std::vector> weakref_items; + std::vector> weakref_items; for (std::size_t i = 0; i < n_items; ++i) { items.push_back(Gio::MenuItem::create("", "")); - weakref_items.emplace_back(items[i]); + weakref_items.push_back(Glib::WeakRef(items[i])); store->append(items[i]); } check_store_refcounts_n_items(2, store, n_items); - if (store->get_item(3).get() != items[3].get()) + if (store->get_item(3).operator->() != items[3].operator->()) { result = EXIT_FAILURE; std::cerr << "test_store_refcounts(), 3: get_item(3) != items[3]" << std::endl; @@ -134,15 +134,25 @@ void test_store_refcounts() for (std::size_t i = 0; i < n_items; ++i) { items[i].reset(); + if (!weakref_items[i]) + { + result = EXIT_FAILURE; + std::cerr << "test_store_refcounts(), 4: weakref_items[" << i << "] is null" << std::endl; + } } store->remove(4); + if (weakref_items[4]) + { + result = EXIT_FAILURE; + std::cerr << "test_store_refcounts(), 5: weakref_items[4] is not null" << std::endl; + } check_store_refcounts_n_items(6, store, n_items-1); store.reset(); for (std::size_t i = 0; i < n_items; ++i) { - if (weakref_items[i].lock()) + if (weakref_items[i]) { result = EXIT_FAILURE; std::cerr << "test_store_refcounts(), 7: weakref_items[" << i << "] is not null" << std::endl; @@ -168,8 +178,8 @@ gint32 get_next_number() int compare_items1(const Glib::RefPtr& a, const Glib::RefPtr& b) { - const auto action_a = std::dynamic_pointer_cast(a); - const auto action_b = std::dynamic_pointer_cast(b); + const auto action_a = Glib::RefPtr::cast_dynamic(a); + const auto action_b = Glib::RefPtr::cast_dynamic(b); if (!action_a || !action_b) { result = EXIT_FAILURE; @@ -218,7 +228,7 @@ void test_store_sorted1() result = EXIT_FAILURE; std::cerr << "test_store_sorted1(), 2: i=" << i << ", items are not equal" << std::endl; } - if (a.get() == b.get()) + if (a.operator->() == b.operator->()) { result = EXIT_FAILURE; std::cerr << "test_store_sorted1(), 3: i=" << i << ", items are the same" << std::endl; @@ -227,7 +237,7 @@ void test_store_sorted1() if (i > 0) { auto c = store->get_item(i * 2 - 1); - if (c.get() == a.get() || c.get() == b.get()) + if (c.operator->() == a.operator->() || c.operator->() == b.operator->()) { result = EXIT_FAILURE; std::cerr << "test_store_sorted1(), 4: i=" << i << ", items are the same" << std::endl; @@ -245,12 +255,12 @@ void test_store_sorted1() class MyObject : public Glib::Object { protected: - explicit MyObject(int id) : m_id(id) {} + MyObject(int id) : m_id(id) {} public: static Glib::RefPtr create(int id) { - return Glib::make_refptr_for_instance(new MyObject(id)); + return Glib::RefPtr(new MyObject(id)); } int get_id() const { return m_id; } @@ -301,7 +311,7 @@ void test_store_sorted2() result = EXIT_FAILURE; std::cerr << "test_store_sorted2(), 2: i=" << i << ", items are not equal" << std::endl; } - if (a.get() == b.get()) + if (a.operator->() == b.operator->()) { result = EXIT_FAILURE; std::cerr << "test_store_sorted2(), 3: i=" << i << ", items are the same" << std::endl; @@ -310,7 +320,7 @@ void test_store_sorted2() if (i > 0) { auto c = store->get_item(i * 2 - 1); - if (c.get() == a.get() || c.get() == b.get()) + if (c.operator->() == a.operator->() || c.operator->() == b.operator->()) { result = EXIT_FAILURE; std::cerr << "test_store_sorted2(), 4: i=" << i << ", items are the same" << std::endl; diff --git a/tests/giomm_stream_vfuncs/main.cc b/tests/giomm_stream_vfuncs/main.cc deleted file mode 100644 index df1cde2..0000000 --- a/tests/giomm_stream_vfuncs/main.cc +++ /dev/null @@ -1,170 +0,0 @@ -/* Copyright (C) 2016 The giomm Development Team - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library. If not, see . - */ - -#include -#include -#include -#include - -// A simple custom stream that base64 encodes data. -// Do not copy it to your code, because it's very slow. -class Base64OutputStream : public Gio::FilterOutputStream -{ -public: - unsigned get_column_width() const { return column_width; } - void set_column_width(unsigned cw) { column_width = cw; } - static Glib::RefPtr create(const Glib::RefPtr& base_stream) - { - return Glib::make_refptr_for_instance(new Base64OutputStream(base_stream)); - } - -protected: - explicit Base64OutputStream(const Glib::RefPtr& base_stream) - : Gio::FilterOutputStream(base_stream), column(0), bit_count(0), bit_buffer(0), column_width(72) {} - - gssize write_vfunc(const void* buffer, gsize count, const Glib::RefPtr& cancellable) override - { - char const *byte = (char const *) buffer; - for (unsigned i = 0; i < count; ++i, ++byte) - { - // kindergarten implementation, because the object is not performance :) - bit_buffer <<= 8; - bit_buffer |= (*byte & 0xff); - bit_count += 8; - - if (bit_count == 24) - { - clear_pending(); // TODO why is this necessary to avoid an outstanding op. exception? - flush(cancellable); - set_pending(); - bit_count = 0; - } - - if (cancellable && cancellable->is_cancelled()) - throw Gio::Error(Gio::Error::CANCELLED, "Operation cancelled"); - } - return count; - } - - bool flush_vfunc(const Glib::RefPtr& cancellable) override - { - if (bit_count != 24) - return true; - char to_write[5]; - gsize len = 4; - - for (unsigned i=0; i<4; ++i) - { - unsigned index = (bit_buffer & (0x3f<<(i*6))) >> (i*6); - to_write[3-i] = base64_encode_str[index]; - } - column += 4; - // Yes, I know this is completely wrong. - if (column >= column_width) - { - column = 0; - to_write[4] = '\n'; - ++len; - } - - get_base_stream()->write(&to_write, len, cancellable); - - bit_count = 0; - bit_buffer = 0; - - return true; - } - - bool close_vfunc(const Glib::RefPtr& cancellable) override - { - char to_write[5] = "===="; - //get any last bytes (1 or 2) out of the buffer - switch (bit_count) - { - case 16: - bit_buffer <<= 2; //pad to make 18 bits - to_write[0] = base64_encode_str[(bit_buffer & (0x3f << 12)) >> 12]; - to_write[1] = base64_encode_str[(bit_buffer & (0x3f << 6)) >> 6]; - to_write[2] = base64_encode_str[bit_buffer & 0x3f]; - break; - - case 8: - bit_buffer <<= 4; //pad to make 12 bits - to_write[0] = base64_encode_str[(bit_buffer & (0x3f << 6)) >> 6]; - to_write[1] = base64_encode_str[bit_buffer & 0x3f]; - break; - } - - if (bit_count > 0) - { - get_base_stream()->write(&to_write, 5, cancellable); - } - else - { - // null terminate output - get_base_stream()->write("", 1, cancellable); - } - if (get_close_base_stream()) - get_base_stream()->close(cancellable); - - return true; - } - -private: - static char const *const base64_encode_str; - unsigned column; - unsigned bit_count; - unsigned bit_buffer; - unsigned column_width; -}; - -char const *const Base64OutputStream::base64_encode_str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; - -int main(int, char**) -{ - Glib::init(); - Gio::init(); - - try - { - char result[256]; - Glib::RefPtr memory_chunk = Gio::MemoryOutputStream::create(result, 256, nullptr, nullptr); - Glib::RefPtr base64 = Base64OutputStream::create(memory_chunk); - - std::string data = "Custom GIO streams are cool!"; - - base64->set_close_base_stream(true); - base64->write(data); - base64->close(); - - const std::string base64_should_be("Q3VzdG9tIEdJTyBzdHJlYW1zIGFyZSBjb29sIQ=="); - std::cout << "Original data: " << data << std::endl; - std::cout << "base64-encoded data: " << result << std::endl; - std::cout << "base64 should be: " << base64_should_be << std::endl; - if (base64_should_be != result) - { - std::cout << "Not correct!" << std::endl; - return EXIT_FAILURE; - } - } - catch (Gio::Error e) - { - std::cout << "Gio error: " << e.what() << std::endl; - return EXIT_FAILURE; - } - - return EXIT_SUCCESS; -} diff --git a/tests/giomm_tls_client/main.cc b/tests/giomm_tls_client/main.cc index 703de75..5f13325 100644 --- a/tests/giomm_tls_client/main.cc +++ b/tests/giomm_tls_client/main.cc @@ -77,7 +77,7 @@ main(int, char**) << std::endl; auto socket = Gio::Socket::create( - first_inet_address->get_family(), Gio::Socket::Type::STREAM, Gio::Socket::Protocol::TCP); + first_inet_address->get_family(), Gio::SOCKET_TYPE_STREAM, Gio::SOCKET_PROTOCOL_TCP); auto address = Gio::InetSocketAddress::create(first_inet_address, 443); @@ -98,7 +98,7 @@ main(int, char**) << address->get_port() << "." << std::endl; } - auto conn = std::dynamic_pointer_cast(Gio::SocketConnection::create(socket)); + auto conn = Glib::RefPtr::cast_dynamic(Gio::SocketConnection::create(socket)); if (!conn || !conn->is_connected()) { @@ -115,7 +115,7 @@ main(int, char**) { auto tls_connection = Gio::TlsClientConnection::create(conn, address); - tls_connection->signal_accept_certificate().connect(sigc::ptr_fun(&on_accept_certificate), false); + tls_connection->signal_accept_certificate().connect(sigc::ptr_fun(&on_accept_certificate)); tls_connection->handshake(); diff --git a/tests/glibmm_bool_arrayhandle/main.cc b/tests/glibmm_bool_arrayhandle/main.cc new file mode 100644 index 0000000..5144d26 --- /dev/null +++ b/tests/glibmm_bool_arrayhandle/main.cc @@ -0,0 +1,96 @@ +/* Copyright (C) 2011 The glibmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ +#include +#include + +#include + +#include + +// Use this line if you want debug output: +// std::ostream& ostr = std::cout; + +// This seems nicer and more useful than putting an ifdef around the use of std::cout: +std::stringstream debug; +std::ostream& ostr = debug; + +const unsigned int magic_limit(5); + +void +setup_rand() +{ + static bool setup(false); + + if (!setup) + { + std::srand(std::time(nullptr)); + setup = true; + } +} + +gboolean* +c_get_bool_array() +{ + gboolean* array(static_cast(g_malloc((magic_limit + 1) * sizeof(gboolean)))); + + setup_rand(); + for (unsigned int iter(0); iter < magic_limit; ++iter) + { + array[iter] = std::rand() % 2 ? TRUE : FALSE; + } + array[magic_limit] = FALSE; + return array; +} + +void +c_print_bool_array(gboolean* array) +{ + for (unsigned int iter(0); iter < magic_limit; ++iter) + { + ostr << iter << ": " << (array[iter] ? "TRUE" : "FALSE") << "\n"; + } +} + +Glib::ArrayHandle +cxx_get_bool_array() +{ + return Glib::ArrayHandle(c_get_bool_array(), magic_limit, Glib::OWNERSHIP_SHALLOW); +} + +void +cxx_print_bool_array(const Glib::ArrayHandle& array) +{ + c_print_bool_array(const_cast(array.data())); +} + +int +main() +{ + Glib::init(); + + std::vector v(cxx_get_bool_array()); + std::list l(cxx_get_bool_array()); + std::deque d(cxx_get_bool_array()); + + ostr << "vector:\n"; + cxx_print_bool_array(v); + ostr << "list:\n"; + cxx_print_bool_array(l); + ostr << "deque:\n"; + cxx_print_bool_array(d); + + return EXIT_SUCCESS; +} diff --git a/tests/glibmm_date/main.cc b/tests/glibmm_date/main.cc index e92559c..1e6411d 100644 --- a/tests/glibmm_date/main.cc +++ b/tests/glibmm_date/main.cc @@ -17,7 +17,7 @@ main(int, char**) date.subtract_days(1); date.add_years(1); - ostr << "The date a year and a month from yesterday will be: " << date.get_month_as_int() << "/" + ostr << "The date a year and a month from yesterday will be: " << date.get_month() << "/" << (int)date.get_day() << "/" << date.get_year() << "." << std::endl; Glib::Date copy_date(date); @@ -25,7 +25,7 @@ main(int, char**) assigned_date = copy_date; - ostr << "The copied date is: " << copy_date.get_month_as_int() << "/" << (int)copy_date.get_day() << "/" + ostr << "The copied date is: " << copy_date.get_month() << "/" << (int)copy_date.get_day() << "/" << copy_date.get_year() << "." << std::endl; return EXIT_SUCCESS; diff --git a/tests/glibmm_interface_move/main.cc b/tests/glibmm_interface_move/main.cc index b1888fd..1c3b028 100644 --- a/tests/glibmm_interface_move/main.cc +++ b/tests/glibmm_interface_move/main.cc @@ -116,7 +116,7 @@ class TestInterface : public Glib::Interface protected: using CppClassType = TestInterface_Class; - TestInterface() : Glib::Interface(derived_interface_class_.init()), i_(0) {} + TestInterface() : Glib::Interface(derived_interface_class_.init()) {} public: // A real application would never make the constructor public. @@ -194,7 +194,7 @@ public: // A real application would never make the constructor public. // It would instead have a protected constructor and a public create() method. - explicit DerivedObject(int i) + DerivedObject(int i) : Glib::ObjectBase(nullptr), Glib::Object(Glib::ConstructParams(derived_object_class_.init())), i_(i) diff --git a/tests/glibmm_nodetree/main.cc b/tests/glibmm_nodetree/main.cc index fee12ff..0554c48 100644 --- a/tests/glibmm_nodetree/main.cc +++ b/tests/glibmm_nodetree/main.cc @@ -14,6 +14,7 @@ node_build_string(type_nodetree_string& node, std::string& string) int main() { + std::list alma; std::string tstring, cstring; type_nodetree_string* root; type_nodetree_string* node; @@ -49,16 +50,16 @@ main() g_assert(root->depth() == 1); g_assert(root->get_max_height() == 4); g_assert(node_G->first_child()->next_sibling()->depth() == 4); - g_assert(root->node_count(type_nodetree_string::TraverseFlags::LEAVES) == 7); - g_assert(root->node_count(type_nodetree_string::TraverseFlags::NON_LEAVES) == 4); - g_assert(root->node_count(type_nodetree_string::TraverseFlags::ALL) == 11); + g_assert(root->node_count(type_nodetree_string::TRAVERSE_LEAVES) == 7); + g_assert(root->node_count(type_nodetree_string::TRAVERSE_NON_LEAVES) == 4); + g_assert(root->node_count(type_nodetree_string::TRAVERSE_ALL) == 11); g_assert(node_F->get_max_height() == 3); g_assert(node_G->child_count() == 4); - g_assert(root->find_child("F", type_nodetree_string::TraverseFlags::ALL) == node_F); + g_assert(root->find_child("F", type_nodetree_string::TRAVERSE_ALL) == node_F); g_assert( - root->find("I", type_nodetree_string::TraverseType::LEVEL_ORDER, type_nodetree_string::TraverseFlags::NON_LEAVES) == NULL); + root->find("I", Glib::TRAVERSE_LEVEL_ORDER, type_nodetree_string::TRAVERSE_NON_LEAVES) == NULL); g_assert( - root->find("J", type_nodetree_string::TraverseType::IN_ORDER, type_nodetree_string::TraverseFlags::LEAVES) == node_J); + root->find("J", Glib::TRAVERSE_IN_ORDER, type_nodetree_string::TRAVERSE_LEAVES) == node_J); for (guint i = 0; i < node_B->child_count(); i++) { @@ -83,28 +84,28 @@ main() tstring.clear(); root->traverse(sigc::bind(sigc::ptr_fun(node_build_string), std::ref(tstring)), - type_nodetree_string::TraverseType::PRE_ORDER, type_nodetree_string::TraverseFlags::ALL, -1); + Glib::TRAVERSE_PRE_ORDER, type_nodetree_string::TRAVERSE_ALL, -1); g_assert(tstring == "ABCDEFGHIJK"); tstring.clear(); root->traverse(sigc::bind(sigc::ptr_fun(node_build_string), std::ref(tstring)), - type_nodetree_string::TraverseType::POST_ORDER, type_nodetree_string::TraverseFlags::ALL, -1); + Glib::TRAVERSE_POST_ORDER, type_nodetree_string::TRAVERSE_ALL, -1); g_assert(tstring == "CDEBHIJKGFA"); tstring.clear(); root->traverse(sigc::bind(sigc::ptr_fun(node_build_string), std::ref(tstring)), - type_nodetree_string::TraverseType::IN_ORDER, type_nodetree_string::TraverseFlags::ALL, -1); + Glib::TRAVERSE_IN_ORDER, type_nodetree_string::TRAVERSE_ALL, -1); g_assert(tstring == "CBDEAHGIJKF"); tstring.clear(); root->traverse(sigc::bind(sigc::ptr_fun(node_build_string), std::ref(tstring)), - type_nodetree_string::TraverseType::LEVEL_ORDER, type_nodetree_string::TraverseFlags::ALL, -1); + Glib::TRAVERSE_LEVEL_ORDER, type_nodetree_string::TRAVERSE_ALL, -1); g_assert(tstring == "ABFCDEGHIJK"); tstring.clear(); root->traverse(sigc::bind(sigc::ptr_fun(node_build_string), std::ref(tstring)), - type_nodetree_string::TraverseType::LEVEL_ORDER, type_nodetree_string::TraverseFlags::LEAVES, -1); + Glib::TRAVERSE_LEVEL_ORDER, type_nodetree_string::TRAVERSE_LEAVES, -1); g_assert(tstring == "CDEHIJK"); tstring.clear(); root->traverse(sigc::bind(sigc::ptr_fun(node_build_string), std::ref(tstring)), - type_nodetree_string::TraverseType::PRE_ORDER, type_nodetree_string::TraverseFlags::NON_LEAVES, -1); + Glib::TRAVERSE_PRE_ORDER, type_nodetree_string::TRAVERSE_NON_LEAVES, -1); g_assert(tstring == "ABFG"); tstring.clear(); @@ -112,18 +113,18 @@ main() node_G->reverse_children(); root->traverse(sigc::bind(sigc::ptr_fun(node_build_string), std::ref(tstring)), - type_nodetree_string::TraverseType::LEVEL_ORDER, type_nodetree_string::TraverseFlags::ALL, -1); + Glib::TRAVERSE_LEVEL_ORDER, type_nodetree_string::TRAVERSE_ALL, -1); g_assert(tstring == "ABFEDCGKJIH"); tstring.clear(); node = new type_nodetree_string(*root); // A deep copy. - g_assert(root->node_count(type_nodetree_string::TraverseFlags::ALL) == - node->node_count(type_nodetree_string::TraverseFlags::ALL)); + g_assert(root->node_count(type_nodetree_string::TRAVERSE_ALL) == + node->node_count(type_nodetree_string::TRAVERSE_ALL)); g_assert(root->get_max_height() == node->get_max_height()); root->traverse(sigc::bind(sigc::ptr_fun(node_build_string), std::ref(tstring)), - type_nodetree_string::TraverseType::IN_ORDER, type_nodetree_string::TraverseFlags::ALL, -1); + Glib::TRAVERSE_IN_ORDER, type_nodetree_string::TRAVERSE_ALL, -1); node->traverse(sigc::bind(sigc::ptr_fun(node_build_string), std::ref(cstring)), - type_nodetree_string::TraverseType::IN_ORDER, type_nodetree_string::TraverseFlags::ALL, -1); + Glib::TRAVERSE_IN_ORDER, type_nodetree_string::TRAVERSE_ALL, -1); g_assert(tstring == cstring); delete node; @@ -142,7 +143,7 @@ main() node = node->first_child()->next_sibling(); } g_assert(root->get_max_height() > 100); - g_assert(root->node_count(type_nodetree_string::TraverseFlags::ALL) == 1 + 2048); + g_assert(root->node_count(type_nodetree_string::TRAVERSE_ALL) == 1 + 2048); delete root; diff --git a/tests/glibmm_null_containerhandle/main.cc b/tests/glibmm_null_containerhandle/main.cc new file mode 100644 index 0000000..513daca --- /dev/null +++ b/tests/glibmm_null_containerhandle/main.cc @@ -0,0 +1,42 @@ +/* Copyright (C) 2011 The gtkmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include +#include + +#include +#include + +int +main() +{ + Gio::init(); + using CrePtr = Glib::RefPtr; + + std::vector v1(Glib::ArrayHandle(nullptr, Glib::OWNERSHIP_DEEP)); + std::vector v2(Glib::ArrayHandle(nullptr, 5, Glib::OWNERSHIP_DEEP)); + std::vector v3(Glib::ListHandle(nullptr, Glib::OWNERSHIP_DEEP)); + std::vector v4(Glib::SListHandle(nullptr, Glib::OWNERSHIP_DEEP)); + std::vector v5(Glib::ArrayHandle(nullptr, Glib::OWNERSHIP_DEEP)); + std::vector v6(Glib::ArrayHandle(nullptr, 5, Glib::OWNERSHIP_DEEP)); + + if (v1.empty() && v2.empty() && v3.empty() && v4.empty() && v5.empty() && v6.empty()) + { + return 0; + } + return 1; +} diff --git a/tests/glibmm_object/main.cc b/tests/glibmm_object/main.cc deleted file mode 100644 index 925b875..0000000 --- a/tests/glibmm_object/main.cc +++ /dev/null @@ -1,23 +0,0 @@ -#include "test_derived_object.h" -#include -#include -#include - -static void -test_object() -{ - GObject* gobject = G_OBJECT(g_object_new(TEST_TYPE_DERIVED, nullptr)); - DerivedObject derived(gobject, 5); - // std::cout << "debug: gobj(): " << derived.gobj() << std::endl; - g_assert(derived.gobj() == gobject); -} - -int -main(int, char**) -{ - Glib::init(); - - test_object(); - - return EXIT_SUCCESS; -} diff --git a/tests/glibmm_object/test_derived_object.h b/tests/glibmm_object/test_derived_object.h deleted file mode 100644 index 4c506b2..0000000 --- a/tests/glibmm_object/test_derived_object.h +++ /dev/null @@ -1,60 +0,0 @@ -#ifndef _GLIBMM_TEST_DERIVED_OBJECT_H -#define _GLIBMM_TEST_DERIVED_OBJECT_H - -#include - -// A basic derived GObject, just to test Glib::Object. -typedef struct -{ - GObject parent; -} TestDerived; - -typedef struct -{ - GObjectClass parent; -} TestDerivedClass; - -#define TEST_TYPE_DERIVED (test_derived_get_type()) -#define TEST_DERIVED(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), TEST_TYPE_DERIVED, TestDerived)) -#define TEST_DERIVED_CLASS(cls) \ - (G_TYPE_CHECK_CLASS_CAST((cls), TEST_TYPE_DERIVED, TestDerivedClass)) -#define TEST_DERIVED_GET_CLASS(obj) \ - (G_TYPE_INSTANCE_GET_CLASS((obj), TEST_TYPE_DERIVED, TestDerivedClass)) - -static void -test_derived_class_init(TestDerivedClass*) -{ -} -static void -test_derived_init(TestDerived*) -{ -} - -G_DEFINE_TYPE(TestDerived, test_derived, G_TYPE_OBJECT) - -class DerivedObject : public Glib::Object -{ -public: - // A real application would never make the constructor public. - // It would instead have a protected constructor and a public create() method. - DerivedObject(GObject* gobject, int i) : Glib::Object(gobject), i_(i) {} - - DerivedObject(const DerivedObject& src) = delete; - DerivedObject& operator=(const DerivedObject& src) = delete; - - DerivedObject(DerivedObject&& src) noexcept : Glib::Object(std::move(src)), i_(std::move(src.i_)) - { - } - - DerivedObject& operator=(DerivedObject&& src) noexcept - { - Glib::Object::operator=(std::move(src)); - i_ = std::move(src.i_); - - return *this; - } - - int i_; -}; - -#endif // _GLIBMM_TEST_DERIVED_OBJECT_H diff --git a/tests/glibmm_object_move/main.cc b/tests/glibmm_object_move/main.cc index 1383b74..4f34cb7 100644 --- a/tests/glibmm_object_move/main.cc +++ b/tests/glibmm_object_move/main.cc @@ -1,8 +1,61 @@ -#include "../glibmm_object/test_derived_object.h" #include #include #include +// A basic derived GObject, just to test Glib::Object. +typedef struct +{ + GObject parent; +} TestDerived; + +typedef struct +{ + GObjectClass parent; +} TestDerivedClass; + +#define TEST_TYPE_DERIVED (test_derived_get_type()) +#define TEST_DERIVED(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), TEST_TYPE_DERIVED, TestDerived)) +#define TEST_DERIVED_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_CAST((cls), TEST_TYPE_DERIVED, TestDerivedClass)) +#define TEST_DERIVED_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS((obj), TEST_TYPE_DERIVED, TestDerivedClass)) + +static void +test_derived_class_init(TestDerivedClass*) +{ +} +static void +test_derived_init(TestDerived*) +{ +} + +G_DEFINE_TYPE(TestDerived, test_derived, G_TYPE_OBJECT) + +class DerivedObject : public Glib::Object +{ +public: + // A real application would never make the constructor public. + // It would instead have a protected constructor and a public create() method. + DerivedObject(GObject* gobject, int i) : Glib::Object(gobject), i_(i) {} + + DerivedObject(const DerivedObject& src) = delete; + DerivedObject& operator=(const DerivedObject& src) = delete; + + DerivedObject(DerivedObject&& src) noexcept : Glib::Object(std::move(src)), i_(std::move(src.i_)) + { + } + + DerivedObject& operator=(DerivedObject&& src) noexcept + { + Glib::Object::operator=(std::move(src)); + i_ = std::move(src.i_); + + return *this; + } + + int i_; +}; + static void test_object_move_constructor() { diff --git a/tests/glibmm_objectbase/main.cc b/tests/glibmm_objectbase/main.cc deleted file mode 100644 index 9ccf52e..0000000 --- a/tests/glibmm_objectbase/main.cc +++ /dev/null @@ -1,24 +0,0 @@ -#include "test_derived_objectbase.h" -#include "../glibmm_object/test_derived_object.h" -#include -#include -#include - -static void -test_objectbase() -{ - GObject* gobject = G_OBJECT(g_object_new(TEST_TYPE_DERIVED, nullptr)); - DerivedObjectBase derived(gobject, 5); - // std::cout << "debug: gobj(): " << derived.gobj() << std::endl; - g_assert(derived.gobj() == gobject); -} - -int -main(int, char**) -{ - Glib::init(); - - test_objectbase(); - - return EXIT_SUCCESS; -} diff --git a/tests/glibmm_objectbase/test_derived_objectbase.h b/tests/glibmm_objectbase/test_derived_objectbase.h deleted file mode 100644 index a4a509a..0000000 --- a/tests/glibmm_objectbase/test_derived_objectbase.h +++ /dev/null @@ -1,36 +0,0 @@ -#ifndef _GLIBMM_TEST_DERIVED_OBJECTBASE_H -#define _GLIBMM_TEST_DERIVED_OBJECTBASE_H - -#include - -class DerivedObjectBase : public Glib::ObjectBase -{ -public: - // A real application would never make the constructor public. - // It would instead have a protected constructor and a public create() method. - DerivedObjectBase(GObject* gobject, int i) : Glib::ObjectBase(nullptr), i_(i) - { - Glib::ObjectBase::initialize(gobject); - } - - DerivedObjectBase(const DerivedObjectBase& src) = delete; - DerivedObjectBase& operator=(const DerivedObjectBase& src) = delete; - - DerivedObjectBase(DerivedObjectBase&& src) noexcept : Glib::ObjectBase(std::move(src)), - i_(std::move(src.i_)) - { - ObjectBase::initialize_move(src.gobject_, &src); - } - - DerivedObjectBase& operator=(DerivedObjectBase&& src) noexcept - { - Glib::ObjectBase::operator=(std::move(src)); - i_ = std::move(src.i_); - - return *this; - } - - int i_; -}; - -#endif // _GLIBMM_TEST_DERIVED_OBJECTBASE_H diff --git a/tests/glibmm_objectbase_move/main.cc b/tests/glibmm_objectbase_move/main.cc index 79bab6a..697f3cf 100644 --- a/tests/glibmm_objectbase_move/main.cc +++ b/tests/glibmm_objectbase_move/main.cc @@ -1,9 +1,66 @@ -#include "../glibmm_objectbase/test_derived_objectbase.h" -#include "../glibmm_object/test_derived_object.h" #include #include #include +// A basic derived GObject, just to test Glib::ObjectBase. +typedef struct +{ + GObject parent; +} TestDerived; + +typedef struct +{ + GObjectClass parent; +} TestDerivedClass; + +#define TEST_TYPE_DERIVED (test_derived_get_type()) +#define TEST_DERIVED(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), TEST_TYPE_DERIVED, TestDerived)) +#define TEST_DERIVED_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_CAST((cls), TEST_TYPE_DERIVED, TestDerivedClass)) +#define TEST_DERIVED_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS((obj), TEST_TYPE_DERIVED, TestDerivedClass)) + +static void +test_derived_class_init(TestDerivedClass*) +{ +} +static void +test_derived_init(TestDerived*) +{ +} + +G_DEFINE_TYPE(TestDerived, test_derived, G_TYPE_OBJECT) + +class DerivedObjectBase : public Glib::ObjectBase +{ +public: + // A real application would never make the constructor public. + // It would instead have a protected constructor and a public create() method. + DerivedObjectBase(GObject* gobject, int i) : Glib::ObjectBase(nullptr), i_(i) + { + Glib::ObjectBase::initialize(gobject); + } + + DerivedObjectBase(const DerivedObjectBase& src) = delete; + DerivedObjectBase& operator=(const DerivedObjectBase& src) = delete; + + DerivedObjectBase(DerivedObjectBase&& src) noexcept : Glib::ObjectBase(std::move(src)), + i_(std::move(src.i_)) + { + ObjectBase::initialize_move(src.gobject_, &src); + } + + DerivedObjectBase& operator=(DerivedObjectBase&& src) noexcept + { + Glib::ObjectBase::operator=(std::move(src)); + i_ = std::move(src.i_); + + return *this; + } + + int i_; +}; + static void test_objectbase_move_constructor() { diff --git a/tests/glibmm_refptr/main.cc b/tests/glibmm_refptr/main.cc index 050db35..4caea0c 100644 --- a/tests/glibmm_refptr/main.cc +++ b/tests/glibmm_refptr/main.cc @@ -91,6 +91,11 @@ test_initial_refcount() Glib::RefPtr refSomething(new Something()); g_assert_cmpint(refSomething->ref_count(), ==, 1); g_assert_cmpint(refSomething->max_ref_count(), ==, 1); + + // Test the get() method: + g_assert_cmpint(refSomething.get()->ref_count(), ==, 1); + refSomething.reset(); + g_assert(refSomething.get() == nullptr); } static void @@ -101,18 +106,16 @@ test_refptr_copy_constructor() g_assert_cmpint(refSomething->max_ref_count(), ==, 1); { - //The reference count should not change, - //because we only take and release a single reference: Glib::RefPtr refSomething2(refSomething); - g_assert_cmpint(refSomething->ref_count(), ==, 1); - g_assert_cmpint(refSomething2->ref_count(), ==, 1); - g_assert_cmpint(refSomething->max_ref_count(), ==, 1); + g_assert_cmpint(refSomething->ref_count(), ==, 2); + g_assert_cmpint(refSomething2->ref_count(), ==, 2); + g_assert_cmpint(refSomething->max_ref_count(), ==, 2); } // Test the refcount after other references should have been released // when other RefPtrs went out of scope: g_assert_cmpint(refSomething->ref_count(), ==, 1); - g_assert_cmpint(refSomething->max_ref_count(), ==, 1); + g_assert_cmpint(refSomething->max_ref_count(), ==, 2); } static void @@ -123,18 +126,16 @@ test_refptr_assignment_operator() g_assert_cmpint(refSomething->max_ref_count(), ==, 1); { - //The reference count should not change, - //because we only take and release a single reference: Glib::RefPtr refSomething2 = refSomething; - g_assert_cmpint(refSomething->ref_count(), ==, 1); - g_assert_cmpint(refSomething2->ref_count(), ==, 1); - g_assert_cmpint(refSomething->max_ref_count(), ==, 1); + g_assert_cmpint(refSomething->ref_count(), ==, 2); + g_assert_cmpint(refSomething2->ref_count(), ==, 2); + g_assert_cmpint(refSomething->max_ref_count(), ==, 2); } // Test the refcount after other references should have been released // when other RefPtrs went out of scope: g_assert_cmpint(refSomething->ref_count(), ==, 1); - g_assert_cmpint(refSomething->max_ref_count(), ==, 1); + g_assert_cmpint(refSomething->max_ref_count(), ==, 2); } static Glib::RefPtr @@ -143,7 +144,7 @@ get_something() static Glib::RefPtr something_to_get; // Reinitialize it each time: - something_to_get = Glib::make_refptr_for_instance(new Something()); + something_to_get = Glib::RefPtr(new Something()); return something_to_get; } @@ -152,25 +153,23 @@ static void test_refptr_with_parent_copy_constructor() { // We use get_something() because test_refptr_with_parent_move_constructor() does. - //The reference count should not change, - //because we only take and release a single reference: Glib::RefPtr refSomething = get_something(); - g_assert_cmpint(refSomething->ref_count(), ==, 1); - g_assert_cmpint(refSomething->max_ref_count(), ==, 1); + g_assert_cmpint(refSomething->ref_count(), ==, 2); // 1 here and 1 inside get_something() + g_assert_cmpint(refSomething->max_ref_count(), ==, 2); { Parent parent(refSomething); g_assert(!parent.was_constructed_via_move_constructor()); g_assert(parent.was_constructed_via_copy_constructor()); g_assert_cmpint( - parent.something_ref_count(), ==, 1); - g_assert_cmpint(parent.something_max_ref_count(), ==, 1); + parent.something_ref_count(), ==, 3); // 1 here, 1 in parent, and 1 inside get_something() + g_assert_cmpint(parent.something_max_ref_count(), ==, 3); } // Test the refcount after other references should have been released // when other RefPtrs went out of scope: - g_assert_cmpint(refSomething->ref_count(), ==, 1); - g_assert_cmpint(refSomething->max_ref_count(), ==, 1); + g_assert_cmpint(refSomething->ref_count(), ==, 2); // 1 here and 1 inside get_something() + g_assert_cmpint(refSomething->max_ref_count(), ==, 3); } static void @@ -179,8 +178,8 @@ test_refptr_with_parent_move_constructor() Parent parent(get_something()); g_assert(parent.was_constructed_via_move_constructor()); g_assert(!parent.was_constructed_via_copy_constructor()); - g_assert_cmpint(parent.something_ref_count(), ==, 1); - g_assert_cmpint(parent.something_max_ref_count(), ==, 1); + g_assert_cmpint(parent.something_ref_count(), ==, 2); // 1 in parent and 1 inside get_something() + g_assert_cmpint(parent.something_max_ref_count(), ==, 2); } static void diff --git a/tests/glibmm_ustring_make_valid/main.cc b/tests/glibmm_ustring_make_valid/main.cc deleted file mode 100644 index 3f94122..0000000 --- a/tests/glibmm_ustring_make_valid/main.cc +++ /dev/null @@ -1,58 +0,0 @@ -#include -#include - -int -main() -{ - Glib::init(); - - // 0-1: bad character - const char not_utf8[] = { '\x80', - // 1-4: good three bytes (one character) - '\xef', '\x80', '\x80', - // 4-5: bad character - '\xef', - // 5-6: bad character - '\x80', - // 6-7: good character - 'a', - // 7-8: bad character - '\0', - // 8-9: good character - 'd', - // 9-10: bad character - '\x80', - // 10-13: good three bytes (one character) - '\xef', '\x80', '\x80', - // 13-15: two bad characters - '\xef', '\x80' - }; - - const char fixed_utf8[] = { '\xef', '\xbf', '\xbd', - '\xef', '\x80', '\x80', - '\xef', '\xbf', '\xbd', - '\xef', '\xbf', '\xbd', - 'a', - '\xef', '\xbf', '\xbd', - 'd', - '\xef', '\xbf', '\xbd', - '\xef', '\x80', '\x80', - '\xef', '\xbf', '\xbd', - '\xef', '\xbf', '\xbd' - }; - - // const char repl_character[] = {'\xef', '\xbf', '\xbd'}; - const Glib::ustring s(not_utf8, not_utf8 + sizeof not_utf8); - g_assert(s.validate() == false); - - const Glib::ustring good_one = s.make_valid(); - g_assert(s.validate() == false); // we make a copy - g_assert(good_one.validate()); // this one is good! - - const Glib::ustring correct_output(fixed_utf8, - fixed_utf8 + sizeof fixed_utf8); - g_assert(correct_output.validate()); - g_assert(correct_output == good_one); - - return EXIT_SUCCESS; -} diff --git a/tests/glibmm_value/glibmm_value.cc b/tests/glibmm_value/glibmm_value.cc new file mode 100644 index 0000000..1f598a3 --- /dev/null +++ b/tests/glibmm_value/glibmm_value.cc @@ -0,0 +1,32 @@ + +#include + +struct Foo +{ + int bar; +}; + +namespace Gtk +{ +class Widget; +} + +void +some_method() +{ + // custom copyable + Glib::Value value_foo; + + // custom pointer + Glib::Value value_foo_pointer; + Glib::Value value_foo_const_pointer; + + // Glib::Object pointer + Glib::Value value_widget_pointer; + Glib::Value value_widget_const_pointer; +} + +// Glib::Object RefPtr<> + +// template Glib::Value< Glib::RefPtr >; +// template Glib::Value< Glib::RefPtr >; diff --git a/tests/glibmm_value/main.cc b/tests/glibmm_value/main.cc index a824f94..7682ffd 100644 --- a/tests/glibmm_value/main.cc +++ b/tests/glibmm_value/main.cc @@ -1,156 +1,8 @@ -#include "../glibmm_object/test_derived_object.h" -#include -#include - -struct Foo -{ - int bar = 1; -}; - -namespace Gtk -{ - -class Widget { -}; -} +#include -void -test() +int +main(int, char**) { - { - Foo foo; - - // custom copyable - Glib::Value value; - value.init(Glib::Value::value_type()); // TODO: Avoid this step? - value.set(foo); - - const auto v = value.get(); - assert(v.bar == 1); - } - - { - Foo foo; - - // custom pointer - Glib::Value value; - value.init(Glib::Value::value_type()); // TODO: Avoid this step? - value.set(&foo); - - const auto v = value.get(); - assert(v); - } - - { - Foo foo; - - Glib::Value value; - value.init(Glib::Value::value_type()); // TODO: Avoid this step? - value.set(&foo); - - const auto v = value.get(); - assert(v); - } - - { - Gtk::Widget widget; - - // Glib::Object pointer - Glib::Value value; - value.init(Glib::Value::value_type()); // TODO: Avoid this step? - value.set(&widget); - - const auto v = value.get(); - assert(v); - } - - { - Gtk::Widget widget; - - Glib::Value value; - value.init(Glib::Value::value_type()); // TODO: Avoid this step? - value.set(&widget); - - const auto v = value.get(); - assert(v); - } - - Glib::init(); - - // TODO: Put this test, of internal stuff, somewhere else. - static_assert(Glib::Traits::HasGetBaseType::value, - "DerivedObject has no get_base_type()."); - - // RefPtr to Glib::ObjectBase-derived type: - { - GObject* gobject = G_OBJECT(g_object_new(TEST_TYPE_DERIVED, nullptr)); - auto derived = Glib::make_refptr_for_instance(new DerivedObject(gobject, 5)); - - using ValueType = Glib::Value>; - ValueType value; - value.init(ValueType::value_type()); // TODO: Avoid this step? - - // Check that value_type() returns the type of the underlying GObjectBase, - // not a custom GType for the Glib::RefPtr: - assert(ValueType::value_type() == DerivedObject::get_base_type()); - - value.set(derived); - - const auto v = value.get(); - assert(v); - } - - { - GObject* gobject = G_OBJECT(g_object_new(TEST_TYPE_DERIVED, nullptr)); - auto derived = Glib::make_refptr_for_instance(new DerivedObject(gobject, 5)); - - using ValueType = Glib::Value>; - ValueType value; - value.init(ValueType::value_type()); // TODO: Avoid this step? - - // Check that value_type() returns the type of the underlying GObjectBase, - // not a custom GType for the Glib::RefPtr: - assert(ValueType::value_type() == DerivedObject::get_base_type()); - - value.set(derived); - - const auto v = value.get(); - assert(v); - } - - { - auto foo = std::make_shared(); - - // custom pointer - Glib::Value> value; - value.init(Glib::Value>::value_type()); // TODO: Avoid this step? - value.set(foo); - - const auto v = value.get(); - assert(v); - } - - { - auto foo = std::make_shared(); - - Glib::Value> value; - value.init(Glib::Value>::value_type()); // TODO: Avoid this step? - value.set(foo); - - const auto v = value.get(); - assert(v); - } -} - -// Glib::Object RefPtr<> - -// template Glib::Value< Glib::RefPtr >; -// template Glib::Value< Glib::RefPtr >; -// - -int main() { - test(); - return EXIT_SUCCESS; } diff --git a/tests/glibmm_valuearray/main.cc b/tests/glibmm_valuearray/main.cc new file mode 100644 index 0000000..b9fc12a --- /dev/null +++ b/tests/glibmm_valuearray/main.cc @@ -0,0 +1,102 @@ +// Glib::ValueArray is deprecated, but let's keep the test. +// The recommended replacement is std::vector<> which requires no test here. +#undef GLIBMM_DISABLE_DEPRECATED + +#include +#include + +#ifdef GLIBMM_DISABLE_DEPRECATED +int +main(int, char**) +{ + // If glibmm is configured with --disable-deprecated-api, GLIBMM_DISABLE_DEPRECATED + // is defined in glibmm.h (actually in glibmmconfig.h). The undef at the start of + // this file has no effect. + return 77; // Tell automake's test harness to skip this test. +} + +#else + +// Use this line if you want debug output: +// std::ostream& ostr = std::cout; + +// This seems nicer and more useful than putting an ifdef around the use of ostr: +std::stringstream debug; +std::ostream& ostr = debug; + +int +on_compare(const Glib::ValueBase& v1, const Glib::ValueBase& v2) +{ + const Glib::Value& intVal1 = static_cast&>(v1); + const Glib::Value& intVal2 = static_cast&>(v2); + + int int1 = intVal1.get(); + int int2 = intVal2.get(); + + if (int1 < int2) + return -1; + else if (int1 == int2) + return EXIT_SUCCESS; + else + return 1; +} + +int +main(int, char**) +{ + const int VALUES_COUNT = 10; + + Glib::init(); + + Glib::Value values[VALUES_COUNT]; + Glib::ValueArray array; + + for (int i = 0; i < VALUES_COUNT; i++) + { + values[i].init(Glib::Value::value_type()); + values[i].set(i + 1); // (i + 1) ==> Set to natural counting numbers. + array.prepend(values[i]); + } + + ostr << "Array members before sorting:" << std::endl; + + for (int i = 0; i < VALUES_COUNT; i++) + { + Glib::ValueBase value; + + if (!array.get_nth(i, value)) + { + std::cerr << "Error getting element " << i << " of value array." << std::endl; + return EXIT_FAILURE; + break; + } + + auto int_val = static_cast&>(value); + ostr << int_val.get() << " "; + } + ostr << std::endl; // End of line for list of array elements. + + // Sort array and remove last element: + array.sort(sigc::ptr_fun(&on_compare)).remove(VALUES_COUNT - 1); + + ostr << "Array members after sorting without last element:" << std::endl; + + for (int i = 0; i < VALUES_COUNT - 1; i++) + { + Glib::ValueBase value; + + if (!array.get_nth(i, value)) + { + std::cerr << "Error getting element " << i << " of value array." << std::endl; + return EXIT_FAILURE; + break; + } + + auto int_val = static_cast&>(value); + ostr << int_val.get() << " "; + } + ostr << std::endl; // End of line for list of array elements. + + return EXIT_SUCCESS; +} +#endif // GLIBMM_DISABLE_DEPRECATED diff --git a/tests/glibmm_variant/main.cc b/tests/glibmm_variant/main.cc index f3d4e26..8c521f9 100644 --- a/tests/glibmm_variant/main.cc +++ b/tests/glibmm_variant/main.cc @@ -57,16 +57,26 @@ bool test_tuple() ostr << "Index of first map entry: " << child0.first << std::endl; result_ok &= child0.first == 4; auto extracted_tuple = child0.second; +#if __cplusplus > 201103L // C++14 or higher auto q3 = std::get(extracted_tuple); auto s3 = std::get(extracted_tuple); auto b3 = std::get(extracted_tuple); +#else // C++11 + auto q3 = std::get<0>(extracted_tuple); + auto s3 = std::get<1>(extracted_tuple); + auto b3 = std::get<2>(extracted_tuple); +#endif ostr << "Extracted tuple1 from map: (" << q3 << ", " << s3 << ", " << b3 << ")" << std::endl; result_ok &= q3 == q1 && s3 == s1 && b3 == b1; // Extract from a tuple. auto q4 = tuple2_variant.get_child(0); auto s4 = tuple2_variant.get_child_variant(1).get(); +#if __cplusplus > 201103L // C++14 or higher auto b4 = std::get(tuple2_variant.get()); +#else // C++11 + auto b4 = std::get<2>(tuple2_variant.get()); +#endif ostr << "Extracted tuple2: (" << q4 << ", " << s4 << ", " << b4 << ")" << std::endl; result_ok &= q4 == q2 && s4 == s2 && b4 == b2; @@ -120,38 +130,6 @@ bool test_object_path() return result_ok; } -bool test_comparison() -{ - bool result_ok = true; - - std::vector int_vector1 = { 1, 2, 3, 4, 5, 6, 7, 8 }; - std::vector int_vector2 = { 1, 2, 3, 4, 5, 6, 7 }; - - auto int_variant1 = Glib::Variant>::create(int_vector1); - auto int_variant2 = Glib::Variant>::create(int_vector2); - auto int_variant3 = Glib::Variant>::create(int_vector1); - - // Equality and inequality operators - ostr << "int_variant1 == int_variant2 (0): " << (int_variant1 == int_variant2) << std::endl; - result_ok &= !(int_variant1 == int_variant2); - ostr << "int_variant1 != int_variant2 (1): " << (int_variant1 != int_variant2) << std::endl; - result_ok &= (int_variant1 != int_variant2); - - ostr << "int_variant1 == int_variant3 (1): " << (int_variant1 == int_variant3) << std::endl; - result_ok &= (int_variant1 == int_variant3); - ostr << "int_variant1 != int_variant3 (0): " << (int_variant1 != int_variant3) << std::endl; - result_ok &= !(int_variant1 != int_variant3); - -#if 0 - // Less than (activate if operator<() exists) - ostr << "int_variant2 < int_variant1 (1): " << (int_variant2 < int_variant1) << std::endl; - result_ok &= (int_variant2 < int_variant1); - ostr << "int_variant1 < int_variant3 (0): " << (int_variant1 < int_variant3) << std::endl; - result_ok &= !(int_variant1 < int_variant3); -#endif - return result_ok; -} - } // anonymous namespace int @@ -308,7 +286,6 @@ main(int, char**) bool result_ok = test_tuple(); result_ok &= test_object_path(); - result_ok &= test_comparison(); return result_ok ? EXIT_SUCCESS : EXIT_FAILURE; } @@ -547,7 +524,7 @@ get_log_flags() struct WarnCatcher { - explicit WarnCatcher(const std::string& domain) + WarnCatcher(const std::string& domain) : m_domain(domain), m_old_flags(g_log_set_fatal_mask(m_domain.c_str(), get_log_flags())) { } diff --git a/tests/glibmm_vector/main.cc b/tests/glibmm_vector/main.cc index 31138cf..a371953 100644 --- a/tests/glibmm_vector/main.cc +++ b/tests/glibmm_vector/main.cc @@ -198,12 +198,12 @@ public: { if (glist_) { - g_list_foreach(glist_, reinterpret_cast(g_object_unref), nullptr); + g_list_foreach(glist_, Glib::function_pointer_cast(g_object_unref), nullptr); g_list_free(glist_); } if (gslist_) { - g_slist_foreach(gslist_, reinterpret_cast(g_object_unref), nullptr); + g_slist_foreach(gslist_, Glib::function_pointer_cast(g_object_unref), nullptr); g_slist_free(gslist_); } if (garray_) diff --git a/tests/glibmm_weakref/main.cc b/tests/glibmm_weakref/main.cc new file mode 100644 index 0000000..20a8031 --- /dev/null +++ b/tests/glibmm_weakref/main.cc @@ -0,0 +1,174 @@ +/* Copyright (C) 2015 The glibmm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include +#include //There is no class derived from Glib::Object in glibmm +#include +#include +#include // std::move + +int +main(int, char**) +{ + Glib::init(); + bool success = true; + + // A Glib::WeakRef cannot be created from a Glib::RefPtr, + // because Glib::Bytes is not derived from Glib::ObjectBase. + // const int bdata = 1234; + // Glib::RefPtr bytes = Glib::Bytes::create(&bdata, sizeof bdata); + // Glib::WeakRef weakbytes = bytes; // does not compile + + // Gio::MemoryInputStream + Glib::RefPtr memstream1 = Gio::MemoryInputStream::create(); + const char data[] = "Some arbitrary data"; + memstream1->add_data(data, sizeof data, Gio::MemoryInputStream::SlotDestroyData()); + + // Downcast copy, followed by upcast. + Glib::WeakRef weakmemstream1 = memstream1; + Glib::WeakRef weakstream1 = weakmemstream1; + Glib::WeakRef weakmemstream2 = + Glib::WeakRef::cast_dynamic(weakstream1); + Glib::RefPtr memstream2 = weakmemstream2.get(); + if (memstream2) + { + char buffer[200]; + gsize bytes_read = 0; + try + { + memstream2->read_all(buffer, sizeof buffer, bytes_read); + std::cout << buffer << std::endl; + success &= std::strcmp(buffer, data) == 0; + } + catch (const Glib::Error& ex) + { + std::cout << "Error reading from memory stream: " << ex.what() << std::endl; + success = false; + } + } + else + { + std::cout << "!memstream2" << std::endl; + success = false; + } + + // Move construction. + Glib::WeakRef weakmemstream3(std::move(weakmemstream1)); + if (weakmemstream1.get() || !weakmemstream3.get()) + { + success = false; + if (weakmemstream1.get()) + std::cout << "weakmemstream1 || !weakmemstream3: weakmemstream1" << std::endl; + if (!weakmemstream3.get()) + std::cout << "weakmemstream1 || !weakmemstream3: !weakmemstream3" << std::endl; + } + else + { + // Move assignment. + weakmemstream2 = std::move(weakmemstream3); + if (!weakmemstream2 || weakmemstream3) + { + success = false; + if (!weakmemstream2.get()) + std::cout << "!weakmemstream2 || weakmemstream3: !weakmemstream2" << std::endl; + if (weakmemstream3.get()) + std::cout << "!weakmemstream2 || weakmemstream3: weakmemstream3" << std::endl; + } + else + { + // Downcast move, followed by upcast. + weakstream1 = std::move(weakmemstream2); + weakmemstream1 = Glib::WeakRef::cast_dynamic(weakstream1); + if (weakmemstream2 || !weakmemstream1) + { + success = false; + if (weakmemstream2) + std::cout << "weakmemstream2 || !weakmemstream1: weakmemstream2" << std::endl; + if (!weakmemstream1) + std::cout << "weakmemstream2 || !weakmemstream1: !weakmemstream1" << std::endl; + } + } + } + + // Gio::SimpleAction + Glib::RefPtr action1 = Gio::SimpleAction::create("Action1"); + + Glib::ustring name = action1->get_name(); + std::cout << "The name is '" << name << "'." << std::endl; + success &= name == "Action1"; + + Glib::WeakRef weakaction1 = action1; + Glib::WeakRef weakaction2 = weakaction1; + + // A second RefPtr + Glib::RefPtr action2 = weakaction1.get(); + if (action2) + { + name = action2->get_name(); + std::cout << "The name is '" << name << "'." << std::endl; + success &= name == "Action1"; + } + else + { + std::cout << "!action2" << std::endl; + success = false; + } + + weakaction1.reset(); + if (weakaction1.get()) + { + std::cout << "weakaction1" << std::endl; + success = false; + } + + action2 = weakaction2.get(); + if (action2) + { + name = action2->get_name(); + std::cout << "The name is '" << name << "'." << std::endl; + success &= name == "Action1"; + } + else + { + std::cout << "!action2" << std::endl; + success = false; + } + + // Reset one of the RefPtrs. One remains. + action1.reset(); + action2 = weakaction2.get(); + if (action2) + { + name = action2->get_name(); + std::cout << "The name is '" << name << "'." << std::endl; + success &= name == "Action1"; + } + else + { + std::cout << "!action2" << std::endl; + success = false; + } + + // Reset the other RefPtr as well. + action2.reset(); + if (weakaction2.get()) + { + std::cout << "weakaction2" << std::endl; + success = false; + } + + return success ? EXIT_SUCCESS : EXIT_FAILURE; +} diff --git a/tools/Makefile.am b/tools/Makefile.am index cd517a8..af53de8 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -34,16 +34,16 @@ dist_noinst_DATA = README TODO dist_noinst_SCRIPTS = enum.pl noinst_PROGRAMS = extra_defs_gen/generate_defs_glib extra_defs_gen/generate_defs_gio -lib_LTLIBRARIES = extra_defs_gen/libglibmm_generate_extra_defs-2.58.la +lib_LTLIBRARIES = extra_defs_gen/libglibmm_generate_extra_defs-2.4.la extradefs_includedir = $(includedir)/$(GLIBMM_MODULE_NAME)/glibmm_generate_extra_defs extradefs_include_HEADERS = extra_defs_gen/generate_extra_defs.h extradefs_ldflags = -no-undefined -version-info $(LIBGLIBMM_SO_VERSION) -extra_defs_gen_libglibmm_generate_extra_defs_2_58_la_SOURCES = extra_defs_gen/generate_extra_defs.cc -extra_defs_gen_libglibmm_generate_extra_defs_2_58_la_LDFLAGS = $(extradefs_ldflags) -extra_defs_gen_libglibmm_generate_extra_defs_2_58_la_LIBADD = $(GLIBMM_LIBS) +extra_defs_gen_libglibmm_generate_extra_defs_2_4_la_SOURCES = extra_defs_gen/generate_extra_defs.cc +extra_defs_gen_libglibmm_generate_extra_defs_2_4_la_LDFLAGS = $(extradefs_ldflags) +extra_defs_gen_libglibmm_generate_extra_defs_2_4_la_LIBADD = $(GLIBMM_LIBS) extra_defs_gen_generate_defs_glib_SOURCES = extra_defs_gen/generate_defs_glib.cc extra_defs_gen_generate_defs_glib_LDADD = $(GLIBMM_LIBS) $(lib_LTLIBRARIES) diff --git a/tools/defs_gen/docextract.py b/tools/defs_gen/docextract.py index 4428c80..1b18f56 100644 --- a/tools/defs_gen/docextract.py +++ b/tools/defs_gen/docextract.py @@ -457,22 +457,21 @@ def process_final_sections(fp, line, cur_doc): return line -def parse_dir(dir, exclude_files, doc_dict): +def parse_dir(dir, doc_dict): for file in os.listdir(dir): if file in ('.', '..'): continue path = os.path.join(dir, file) - if path in exclude_files: continue if os.path.isdir(path): if not no_recursion: - parse_dir(path, exclude_files, doc_dict) + parse_dir(path, doc_dict) elif len(file) > 2 and file[-2:] in ('.c', '.h'): sys.stderr.write("Processing " + path + '\n') parse_file(open(path, 'r'), doc_dict) -def extract(dirs, exclude_files, doc_dict=None): +def extract(dirs, doc_dict=None): if not doc_dict: doc_dict = {} for dir in dirs: - parse_dir(dir, exclude_files, doc_dict) + parse_dir(dir, doc_dict) return doc_dict tmpl_section_pattern = re.compile(r'^$') @@ -510,13 +509,12 @@ def parse_tmpl(fp, doc_dict): line = fp.readline() -def extract_tmpl(dirs, exclude_files, doc_dict=None): +def extract_tmpl(dirs, doc_dict=None): if not doc_dict: doc_dict = {} for dir in dirs: for file in os.listdir(dir): if file in ('.', '..'): continue path = os.path.join(dir, file) - if path in exclude_files: continue if os.path.isdir(path): continue if len(file) > 5 and file[-5:] == '.sgml': diff --git a/tools/defs_gen/docextract_to_xml.py b/tools/defs_gen/docextract_to_xml.py index 7c73cc0..a322135 100755 --- a/tools/defs_gen/docextract_to_xml.py +++ b/tools/defs_gen/docextract_to_xml.py @@ -14,10 +14,8 @@ import docextract def usage(): sys.stderr.write('usage: docextract_to_xml.py ' + - '[-s /src/dir | --source-dir=/src/dir] ' + - '[-x /src/dir/file-to-exclude | --exclude-file=/src/dir/file-to-exclude] ' + - '[-a | --with-annotations] [-p | --with-properties] ' + - '[-c | --with-sections] [-r | --no-recursion] ' + + '[-s /src/dir | --source-dir=/src/dir] [-a | --with-annotations] ' + + '[-p | --with-properties] [-c | --with-sections] [-r | --no-recursion] ' + '[-n | --no-since] [-i | --no-signals ] [-e | --no-enums ]\n') sys.exit(1) @@ -63,16 +61,15 @@ def print_annotations(annotations): if __name__ == '__main__': try: - opts, args = getopt.getopt(sys.argv[1:], "s:x:apcrnie", - ["source-dir=", "exclude-file=", - "with-annotations", "with-properties", - "with-sections", "no-recursion", "no-since", + opts, args = getopt.getopt(sys.argv[1:], "d:s:o:apcrnie", + ["source-dir=", "with-annotations", + "with-properties", "with-sections", + "no-recursion", "no-since", "no-signals", "no-enums"]) except getopt.error as e: sys.stderr.write('docextract_to_xml.py: %s\n' % e) usage() source_dirs = [] - exclude_files = [] with_annotations = False with_signals = True with_properties = False @@ -81,27 +78,25 @@ if __name__ == '__main__': for opt, arg in opts: if opt in ('-s', '--source-dir'): source_dirs.append(arg) - elif opt in ('-x', '--exclude-file'): - exclude_files.append(arg) - elif opt in ('-a', '--with-annotations'): + if opt in ('-a', '--with-annotations'): with_annotations = True - elif opt in ('-p', '--with-properties'): + if opt in ('-p', '--with-properties'): with_properties = True - elif opt in ('-c', '--with-sections'): + if opt in ('-c', '--with-sections'): with_sections = True - elif opt in ('-r', '--no-recursion'): + if opt in ('-r', '--no-recursion'): docextract.no_recursion = True - elif opt in ('-n', '--no-since'): + if opt in ('-n', '--no-since'): docextract.no_since = True - elif opt in ('-i', '--no-signals'): + if opt in ('-i', '--no-signals'): with_signals = False - elif opt in ('-e', '--no-enums'): + if opt in ('-e', '--no-enums'): with_enums = False if len(args) != 0: usage() - docs = docextract.extract(source_dirs, exclude_files); - docextract.extract_tmpl(source_dirs, exclude_files, docs); #Try the tmpl sgml files too. + docs = docextract.extract(source_dirs); + docextract.extract_tmpl(source_dirs, docs); #Try the tmpl sgml files too. # print d.docs diff --git a/tools/gen_scripts/generate_all.sh b/tools/gen_scripts/generate_all.sh new file mode 100755 index 0000000..5e7f3de --- /dev/null +++ b/tools/gen_scripts/generate_all.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Regenerate all glibmm's docs.xml and .defs files + +./glib_generate_docs.sh +./glib_generate_enums.sh +./glib_generate_extra_defs.sh +./glib_generate_methods.sh + +./gio_generate_docs.sh +./gio_generate_enums.sh +./gio_generate_extra_defs.sh +./gio_generate_methods.sh diff --git a/tools/m4/class_gobject.m4 b/tools/m4/class_gobject.m4 index ff07505..0e0e4f6 100644 --- a/tools/m4/class_gobject.m4 +++ b/tools/m4/class_gobject.m4 @@ -105,7 +105,7 @@ define(`_CREATE_METHOD',` _PUSH(SECTION_CC) Glib::RefPtr<`'__CPPNAME__`'> __CPPNAME__`'::create(`'$2`') { - return Glib::make_refptr_for_instance<`'__CPPNAME__`'>( new __CPPNAME__`'(`'$3`') ); + return Glib::RefPtr<`'__CPPNAME__`'>( new __CPPNAME__`'(`'$3`') ); } _POP() @@ -169,7 +169,7 @@ namespace Glib Glib::RefPtr<__NAMESPACE__::__CPPNAME__> wrap(__REAL_CNAME__`'* object, bool take_copy) { - return Glib::make_refptr_for_instance<__NAMESPACE__::__CPPNAME__>( dynamic_cast<__NAMESPACE__::__CPPNAME__*> (Glib::wrap_auto ((GObject*)(object), take_copy)) ); + return Glib::RefPtr<__NAMESPACE__::__CPPNAME__>( dynamic_cast<__NAMESPACE__::__CPPNAME__*> (Glib::wrap_auto ((GObject*)(object), take_copy)) ); //We use dynamic_cast<> in case of multiple inheritance. } diff --git a/tools/m4/class_interface.m4 b/tools/m4/class_interface.m4 index bce51ff..3c0b93e 100644 --- a/tools/m4/class_interface.m4 +++ b/tools/m4/class_interface.m4 @@ -161,7 +161,7 @@ namespace Glib Glib::RefPtr<__NAMESPACE__::__CPPNAME__> wrap(__CNAME__`'* object, bool take_copy) { - return Glib::make_refptr_for_instance<__NAMESPACE__::__CPPNAME__>( dynamic_cast<__NAMESPACE__::__CPPNAME__*> (Glib::wrap_auto_interface<__NAMESPACE__::__CPPNAME__> ((GObject*)(object), take_copy)) ); + return Glib::RefPtr<__NAMESPACE__::__CPPNAME__>( dynamic_cast<__NAMESPACE__::__CPPNAME__*> (Glib::wrap_auto_interface<__NAMESPACE__::__CPPNAME__> ((GObject*)(object), take_copy)) ); //We use dynamic_cast<> in case of multiple inheritance. } diff --git a/tools/m4/class_opaque_refcounted.m4 b/tools/m4/class_opaque_refcounted.m4 index 41fbc5a..e90a1c0 100644 --- a/tools/m4/class_opaque_refcounted.m4 +++ b/tools/m4/class_opaque_refcounted.m4 @@ -66,7 +66,7 @@ Glib::RefPtr<__NAMESPACE__::__CPPNAME__> wrap(__CNAME__* object, bool take_copy) __OPAQUE_FUNC_REF`'(object); // See the comment at the top of this file, if you want to know why the cast works. - return Glib::make_refptr_for_instance<__NAMESPACE__::__CPPNAME__>(reinterpret_cast<__NAMESPACE__::__CPPNAME__*>(object)); + return Glib::RefPtr<__NAMESPACE__::__CPPNAME__>(reinterpret_cast<__NAMESPACE__::__CPPNAME__*>(object)); } } // namespace Glib @@ -84,7 +84,7 @@ ifelse(__OPAQUE_FUNC_NEW,NONE,`dnl Glib::RefPtr<__CPPNAME__> __CPPNAME__::create() { // See the comment at the top of this file, if you want to know why the cast works. - return Glib::make_refptr_for_instance<__CPPNAME__>(reinterpret_cast<__CPPNAME__*>(__OPAQUE_FUNC_NEW`'())); + return Glib::RefPtr<__CPPNAME__>(reinterpret_cast<__CPPNAME__*>(__OPAQUE_FUNC_NEW`'())); } ')dnl endif __OPAQUE_FUNC_NEW diff --git a/tools/m4/convert_base.m4 b/tools/m4/convert_base.m4 index da5137c..8d372fa 100644 --- a/tools/m4/convert_base.m4 +++ b/tools/m4/convert_base.m4 @@ -1,3 +1,5 @@ +dnl $Id$ + # # Define a hashing for names # @@ -50,29 +52,11 @@ define(`_EQUAL',`define(EV`'__HASH(`$1'),`$2')') define(`__ARG3__',`$`'3') - -# _CONV_ENUM(namespace, enum_name[, C_enum_name]) -# Specify C_enum_name, if it's not the concatenation of namespace+enum_name. define(`_CONV_ENUM',`dnl -pushdef(`C_ENUM_NAME', `m4_ifelse(`$3',,`$1$2',`$3')') -_CONVERSION(`C_ENUM_NAME', `$2', static_cast<$2>(__ARG3__)) -_CONVERSION(`C_ENUM_NAME', `$1::$2', static_cast<$1::$2>(__ARG3__)) -_CONVERSION(`$2', `C_ENUM_NAME', static_cast(__ARG3__)) -_CONVERSION(`$1::$2', `C_ENUM_NAME', static_cast(__ARG3__)) -popdef(`C_ENUM_NAME') -')dnl - -# _CONV_INCLASS_ENUM(namespace, class_name, enum_name[, C_enum_name]) -# Specify C_enum_name, if it's not the concatenation of namespace+class_name+enum_name. -define(`_CONV_INCLASS_ENUM',`dnl -pushdef(`C_ENUM_NAME', `m4_ifelse(`$4',,`$1$2$3',`$4')') -_CONVERSION(`C_ENUM_NAME', `$3', static_cast<$3>(__ARG3__)) -_CONVERSION(`C_ENUM_NAME', `$2::$3', static_cast<$2::$3>(__ARG3__)) -_CONVERSION(`C_ENUM_NAME', `$1::$2::$3', static_cast<$1::$2::$3>(__ARG3__)) -_CONVERSION(`$3', `C_ENUM_NAME', static_cast(__ARG3__)) -_CONVERSION(`$2::$3', `C_ENUM_NAME', static_cast(__ARG3__)) -_CONVERSION(`$1::$2::$3', `C_ENUM_NAME', static_cast(__ARG3__)) -popdef(`C_ENUM_NAME') +_CONVERSION(`$1$2', `$2', (($2)(__ARG3__))) +_CONVERSION(`$1$2', `$1::$2', (($1::$2)(__ARG3__))) +_CONVERSION(`$2', `$1$2', (($1$2)(__ARG3__))) +_CONVERSION(`$1::$2', `$1$2', (($1$2)(__ARG3__))) ')dnl # e.g. Glib::RefPtr to GdkSomething* diff --git a/tools/m4/convert_gio.m4 b/tools/m4/convert_gio.m4 index 6a968b3..e6f7cb4 100644 --- a/tools/m4/convert_gio.m4 +++ b/tools/m4/convert_gio.m4 @@ -1,86 +1,59 @@ -dnl -dnl Gio C names have prefix 'G' or 'GDBus' but C++ namespace Gio ot Gio::DBus -dnl -# _CONV_GIO_ENUM(enum_name[, C_enum_name]) -# Specify C_enum_name, if it's not the concatenation of G+enum_name. -define(`_CONV_GIO_ENUM',`dnl -_CONV_ENUM(`Gio',`$1',`m4_ifelse(`$2',,`G$1',`$2')') -')dnl - -# _CONV_GIO_DBUS_ENUM(enum_name[, C_enum_name]) -# Specify C_enum_name, if it's not the concatenation of GDBus+enum_name. -define(`_CONV_GIO_DBUS_ENUM',`dnl -_CONV_ENUM(`Gio::DBus',`$1',`m4_ifelse(`$2',,`GDBus$1',`$2')') -')dnl - -# _CONV_GIO_INCLASS_ENUM(class_name, enum_name[, C_enum_name]) -# Specify C_enum_name, if it's not the concatenation of G+class_name+enum_name. -define(`_CONV_GIO_INCLASS_ENUM',`dnl -_CONV_INCLASS_ENUM(`Gio',`$1',`$2',`m4_ifelse(`$3',,`G$1$2',`$3')') -')dnl - -# _CONV_GIO_DBUS_INCLASS_ENUM(class_name, enum_name[, C_enum_name]) -# Specify C_enum_name, if it's not the concatenation of GDBus+class_name+enum_name. -define(`_CONV_GIO_DBUS_INCLASS_ENUM',`dnl -_CONV_INCLASS_ENUM(`Gio::DBus',`$1',`$2',`m4_ifelse(`$3',,`GDBus$1$2',`$3')') -')dnl - -_CONV_GIO_INCLASS_ENUM(AppInfo,CreateFlags) -_CONV_GIO_INCLASS_ENUM(Application,Flags) -_CONV_GIO_ENUM(AskPasswordFlags) -_CONV_GIO_ENUM(BusType) -_CONV_GIO_INCLASS_ENUM(Converter,Flags) -_CONV_GIO_INCLASS_ENUM(Converter,Result) -_CONV_GIO_INCLASS_ENUM(Credentials,Type) -_CONV_GIO_ENUM(DataStreamByteOrder) -_CONV_GIO_ENUM(DataStreamNewlineType) -_CONV_GIO_DBUS_ENUM(CallFlags) -_CONV_GIO_DBUS_ENUM(CapabilityFlags) -_CONV_GIO_DBUS_INCLASS_ENUM(InterfaceSkeleton,Flags) -_CONV_GIO_DBUS_INCLASS_ENUM(Message,ByteOrder) -_CONV_GIO_DBUS_ENUM(MessageFlags) -_CONV_GIO_DBUS_ENUM(MessageHeaderField) -_CONV_GIO_DBUS_ENUM(MessageType) -_CONV_GIO_DBUS_ENUM(ProxyFlags) -_CONV_GIO_DBUS_ENUM(SendMessageFlags) -_CONV_GIO_DBUS_INCLASS_ENUM(Server,Flags) -_CONV_GIO_INCLASS_ENUM(Drive,StartFlags) -_CONV_GIO_INCLASS_ENUM(Drive,StartStopType) -_CONV_GIO_INCLASS_ENUM(Emblem,Origin) -_CONV_GIO_INCLASS_ENUM(FileAttributeInfo,Flags) -_CONV_GIO_ENUM(FileAttributeStatus) -_CONV_GIO_ENUM(FileAttributeType) -_CONV_GIO_INCLASS_ENUM(FileCopy,Flags) -_CONV_GIO_INCLASS_ENUM(FileCreate,Flags) -_CONV_GIO_INCLASS_ENUM(FileMonitor,Event) -_CONV_GIO_INCLASS_ENUM(FileMonitor,Flags) -_CONV_GIO_ENUM(FileQueryInfoFlags) -_CONV_GIO_ENUM(FileType) -_CONV_GIO_INCLASS_ENUM(Mount,MountFlags) -_CONV_GIO_ENUM(MountOperationResult) -_CONV_GIO_INCLASS_ENUM(Mount,UnmountFlags) -_CONV_GIO_ENUM(NetworkConnectivity) -_CONV_GIO_INCLASS_ENUM(Notification,Priority) -_CONV_GIO_INCLASS_ENUM(OutputStream,SpliceFlags) -_CONV_GIO_ENUM(PasswordSave) -_CONV_GIO_INCLASS_ENUM(Resolver,RecordType) -_CONV_GIO_INCLASS_ENUM(Resource,Flags) -_CONV_GIO_INCLASS_ENUM(Resource,LookupFlags) -_CONV_GIO_INCLASS_ENUM(Settings,BindFlags) -_CONV_GIO_ENUM(SocketClientEvent) -_CONV_GIO_ENUM(SocketFamily) -_CONV_GIO_INCLASS_ENUM(Socket,MsgFlags) -_CONV_GIO_INCLASS_ENUM(Socket,Protocol) -_CONV_GIO_INCLASS_ENUM(Socket,Type) -_CONV_GIO_ENUM(TlsCertificateFlags) -_CONV_GIO_ENUM(TlsCertificateRequestFlags) -_CONV_GIO_INCLASS_ENUM(TlsDatabase,VerifyFlags) -_CONV_GIO_INCLASS_ENUM(TlsDatabase,LookupFlags) -_CONV_GIO_ENUM(TlsInteractionResult) -_CONV_GIO_INCLASS_ENUM(TlsPassword,Flags) -_CONV_GIO_ENUM(TlsRehandshakeMode) -_CONV_GIO_INCLASS_ENUM(UnixSocketAddress,Type) -_CONV_GIO_ENUM(ZlibCompressorFormat) +_CONV_ENUM(G,AppInfoCreateFlags) +_CONV_ENUM(G,ApplicationFlags) +_CONV_ENUM(G,AskPasswordFlags) +_CONV_ENUM(G,BusType) +_CONV_ENUM(G,ConverterFlags) +_CONV_ENUM(G,ConverterResult) +_CONV_ENUM(G,CredentialsType) +_CONV_ENUM(G,DataStreamByteOrder) +_CONV_ENUM(G,DataStreamNewlineType) +_CONV_ENUM(GDBus,CallFlags) +_CONV_ENUM(GDBus,CapabilityFlags) +_CONV_ENUM(GDBus, InterfaceSkeletonFlags) +_CONV_ENUM(GDBus,MessageFlags) +_CONV_ENUM(GDBus,MessageHeaderField) +_CONV_ENUM(GDBus,MessageType) +_CONV_ENUM(GDBus,ProxyFlags) +_CONV_ENUM(GDBus,SendMessageFlags) +_CONV_ENUM(GDBus,ServerFlags) +_CONV_ENUM(G,DriveStartFlags) +_CONV_ENUM(G,DriveStartFlags) +_CONV_ENUM(G,DriveStartStopType) +_CONV_ENUM(G,EmblemOrigin) +_CONV_ENUM(G,FileAttributeInfoFlags) +_CONV_ENUM(G,FileAttributeStatus) +_CONV_ENUM(G,FileAttributeType) +_CONV_ENUM(G,FileCopyFlags) +_CONV_ENUM(G,FileCreateFlags) +_CONV_ENUM(G,FileMonitorEvent) +_CONV_ENUM(G,FileMonitorFlags) +_CONV_ENUM(G,FileQueryInfoFlags) +_CONV_ENUM(G,FileType) +_CONV_ENUM(G,MountMountFlags) +_CONV_ENUM(G,MountOperationResult) +_CONV_ENUM(G,MountUnmountFlags) +_CONV_ENUM(G,NetworkConnectivity) +_CONV_ENUM(G,NotificationPriority) +_CONV_ENUM(G,OutputStreamSpliceFlags) +_CONV_ENUM(G,PasswordSave) +_CONV_ENUM(G,ResolverRecordType) +_CONV_ENUM(G,ResourceFlags) +_CONV_ENUM(G,ResourceLookupFlags) +_CONV_ENUM(G,SettingsBindFlags) +_CONV_ENUM(G,SocketClientEvent) +_CONV_ENUM(G,SocketFamily) +_CONV_ENUM(G,SocketMsgFlags) +_CONV_ENUM(G,SocketProtocol) +_CONV_ENUM(G,SocketType) +_CONV_ENUM(G,TlsCertificateFlags) +_CONV_ENUM(G,TlsCertificateRequestFlags) +_CONV_ENUM(G,TlsDatabaseVerifyFlags) +_CONV_ENUM(G,TlsDatabaseLookupFlags) +_CONV_ENUM(G,TlsInteractionResult) +_CONV_ENUM(G,TlsPasswordFlags) +_CONV_ENUM(G,TlsRehandshakeMode) +_CONV_ENUM(G,UnixSocketAddressType) +_CONV_ENUM(G,ZlibCompressorFormat) # Action _CONVERSION(`GAction*',`Glib::RefPtr',`Glib::wrap($3)') @@ -96,7 +69,7 @@ _CONVERSION(`GAppLaunchContext*',`const Glib::RefPtr&',Glib::w _CONVERSION(`const Glib::RefPtr&',`GAppInfo*',__CONVERT_REFPTR_TO_P) _CONVERSION(`Glib::RefPtr',`GAppInfo*',__CONVERT_REFPTR_TO_P) _CONVERSION(`GAppInfo*',`const Glib::RefPtr&',`Glib::wrap($3)') -_CONVERSION(`const std::vector>&',`GList*',`Glib::ListHandler>::vector_to_list($3).data()') +_CONVERSION(`const Glib::ListHandle< Glib::RefPtr >&',`GList*',`$3.data()') # Application _CONVERSION(`GApplication*',`Glib::RefPtr',`Glib::wrap($3)') @@ -256,7 +229,7 @@ _CONVERSION(`const Glib::RefPtr&',`GMenuModel*',__CONVERT_CONST_REFPT # MenuItem _CONVERSION(`GMenuItem*',`Glib::RefPtr',`Glib::wrap($3)') -_CONVERSION(`const Glib::RefPtr&',`GMenuItem*',__CONVERT_CONST_REFPTR_TO_P) +_CONVERSION(`const Glib::RefPtr&',`GMenuItem*',__CONVERT_CONST_REFPTR_TO_P) # Mount _CONVERSION(`GMount*',`Glib::RefPtr',`Glib::wrap($3)') @@ -292,7 +265,7 @@ _CONVERSION(`GResource*',`Glib::RefPtr',`Glib::wrap($3)') #Settings _CONVERSION(`GSettings*',`Glib::RefPtr',`Glib::wrap($3)') -_CONVERSION(`const std::vector&',`const gchar*-const*',`Glib::ArrayHandler::vector_to_array($3).data()') +_CONVERSION(`const Glib::StringArrayHandle&',`const gchar*-const*',`($3).data()') _CONVERSION(`const Glib::RefPtr&',`GSettingsBackend*',__CONVERT_REFPTR_TO_P) _CONVERSION(`GSettingsSchemaKey*',`Glib::RefPtr',`Glib::wrap($3)') diff --git a/tools/m4/convert_glib.m4 b/tools/m4/convert_glib.m4 index 87197e4..0c70cdf 100644 --- a/tools/m4/convert_glib.m4 +++ b/tools/m4/convert_glib.m4 @@ -1,16 +1,11 @@ dnl dnl Glib C names have prefix 'G' but C++ namespace Glib dnl -# _CONV_GLIB_ENUM(enum_name[, C_enum_name]) -# Specify C_enum_name, if it's not the concatenation of G+enum_name. define(`_CONV_GLIB_ENUM',`dnl -_CONV_ENUM(`Glib',`$1',`m4_ifelse(`$2',,`G$1',`$2')') -')dnl - -# _CONV_GLIB_INCLASS_ENUM(class_name, enum_name[, C_enum_name]) -# Specify C_enum_name, if it's not the concatenation of G+class_name+enum_name. -define(`_CONV_GLIB_INCLASS_ENUM',`dnl -_CONV_INCLASS_ENUM(`Glib',`$1',`$2',`m4_ifelse(`$3',,`G$1$2',`$3')') +_CONVERSION(`G$1', `$1', (($1)(__ARG3__))) +_CONVERSION(`G$1', `Glib::$1', ((Glib::$1)(__ARG3__))) +_CONVERSION(`$1', `G$1', ((G$1)(__ARG3__))) +_CONVERSION(`Glib::$1', `G$1', ((G$1)(__ARG3__))) ')dnl _EQUAL(gchar,char) @@ -65,14 +60,14 @@ dnl dnl # These are for fixmegtkconst _CONVERSION(`const guchar*',`guchar*',`const_cast($3)',`$3') -_CONV_GLIB_INCLASS_ENUM(Binding,Flags) +_CONV_GLIB_ENUM(BindingFlags) _CONV_GLIB_ENUM(IOCondition) _CONV_GLIB_ENUM(IOFlags) _CONV_GLIB_ENUM(IOStatus) -_CONV_GLIB_INCLASS_ENUM(KeyFile,Flags) +_CONV_GLIB_ENUM(KeyFileFlags) _CONV_GLIB_ENUM(OptionArg) -_CONV_GLIB_INCLASS_ENUM(Regex,CompileFlags) -_CONV_GLIB_INCLASS_ENUM(Regex,MatchFlags) +_CONV_GLIB_ENUM(RegexCompileFlags) +_CONV_GLIB_ENUM(RegexMatchFlags) _CONV_GLIB_ENUM(SeekType) _CONV_GLIB_ENUM(TimeType) @@ -88,7 +83,9 @@ define(`__GCHARP_TO_STDSTRING',`Glib::convert_const_gchar_ptr_to_stdstring($`'3) _CONVERSION(`const Glib::ustring&',`const char*',`$3.c_str()') _CONVERSION(`const Glib::ustring&', `const guchar*', `(($2)$3.c_str())') _CONVERSION(`const std::string&',`const char*',`$3.c_str()') +_CONVERSION(`std::string',`const char*',`$3.c_str()') _CONVERSION(`const Glib::ustring&',`gchar*',`const_cast($3.c_str())') +_CONVERSION(`gchar*',`Glib::ustring',__GCHARP_TO_USTRING) _CONVERSION(`const-gchar*',`Glib::ustring',__GCHARP_TO_USTRING) _CONVERSION(`const-guchar*',`Glib::ustring',__GCHARP_TO_USTRING) _CONVERSION(`const gchar*',`Glib::ustring',__GCHARP_TO_USTRING) @@ -98,6 +95,10 @@ _CONVERSION(`const char*',`std::string',__GCHARP_TO_STDSTRING) _CONVERSION(`const char*',`const-gchar*',`$3') _CONVERSION(`const-gchar*',`const char*',`$3') _CONVERSION(`const char*',`const std::string&',__GCHARP_TO_STDSTRING) +_CONVERSION(`char*',`std::string',__GCHARP_TO_STDSTRING) +_CONVERSION(`std::string', `char*', `g_strdup(($3).c_str())') +_CONVERSION(`const std::string&', `char*', `g_strdup(($3).c_str())') +_CONVERSION(`Glib::ustring', `char*', `g_strdup(($3).c_str())') _CONVERSION(`return-gchar*',`Glib::ustring',`Glib::convert_return_gchar_ptr_to_ustring($3)') _CONVERSION(`return-gchar*',`std::string',`Glib::convert_return_gchar_ptr_to_stdstring($3)') diff --git a/tools/m4/enum.m4 b/tools/m4/enum.m4 index ab7e816..9064e35 100644 --- a/tools/m4/enum.m4 +++ b/tools/m4/enum.m4 @@ -1,18 +1,13 @@ dnl -dnl _ENUM(cpp_type, c_type, value_suffix, `element_list', `no_gtype', `conv_to_int', -dnl $1 $2 $3 $4 $5 $6 -dnl in_class, `optional_refdoc_comment', 'deprecated') -dnl $7 $8 $9 +dnl _ENUM(cpp_type, c_type, value_suffix, `element_list', `no_gtype', `optional_refdoc_comment', 'deprecated') +dnl $1 $2 $3 $4 $5 $6 $7 dnl m4_define(`_ENUM',`dnl _PUSH() m4_define(`__ENUM_CPPNAME__',`$1') m4_define(`__ENUM_CNAME__',`$2') -m4_define(`__ENUM_CLASS_CPPNAME__',m4_ifelse($7,0,,`__CPPNAME__::')`__ENUM_CPPNAME__') -m4_define(`__ENUM_INDENT1__',m4_ifelse($7,0,,` ')) -m4_define(`__ENUM_INDENT2__',__ENUM_INDENT1__`'m4_ifelse($6,,,` ')) -m4_define(`__ENUM_VALUE_BASE__',`Glib::Value_$3<__NAMESPACE__::__ENUM_CLASS_CPPNAME__>') +m4_define(`__ENUM_VALUE_BASE__',`Glib::Value_$3<__NAMESPACE__::__ENUM_CPPNAME__>') _POP() dnl @@ -22,128 +17,88 @@ m4_ifdef(`__DOCGROUP_'__MODULE_CANONICAL__`_ENUMS__',,`dnl else m4_define(`__DOCGROUP_'__MODULE_CANONICAL__`_ENUMS__')dnl /** @addtogroup '__MODULE_CANONICAL__`Enums __MODULE_CANONICAL__ Enums and Flags */ -__ENUM_INDENT1__')`'dnl endif +')dnl endif dnl dnl -ifelse(`$9',,,`_DEPRECATE_IFDEF_START'`'__ENUM_INDENT1__)`'dnl The expansion of _DEPRECATE_IFDEF_START ends with a newline -ifelse($6,,,`/** Wrapper for enum __ENUM_CPPNAME__. -__ENUM_INDENT1__ * __ENUM_CPPNAME__ enumerators are scoped and can be implicitly converted to int. -__ENUM_INDENT1__ * The scope is __NAMESPACE__::__ENUM_CLASS_CPPNAME__:: -__ENUM_INDENT1__ * -__ENUM_INDENT1__ * @ingroup __MODULE_CANONICAL__`'Enums -__ENUM_INDENT1__ */ -__ENUM_INDENT1__`'class __ENUM_CPPNAME__`'_Wrapper final -__ENUM_INDENT1__{ -__ENUM_INDENT1__`'public: -__ENUM_INDENT2__')`'dnl endif conv_to_int -/** $8 -__ENUM_INDENT2__ * -__ENUM_INDENT2__ * @ingroup __MODULE_CANONICAL__`'Enums -m4_ifelse($3,`Flags',`dnl -__ENUM_INDENT2__ * @par Bitwise operators: -__ENUM_INDENT2__ * __ENUM_CLASS_CPPNAME__ operator|(__ENUM_CLASS_CPPNAME__, __ENUM_CLASS_CPPNAME__)
-__ENUM_INDENT2__ * __ENUM_CLASS_CPPNAME__ operator&(__ENUM_CLASS_CPPNAME__, __ENUM_CLASS_CPPNAME__)
-__ENUM_INDENT2__ * __ENUM_CLASS_CPPNAME__ operator^(__ENUM_CLASS_CPPNAME__, __ENUM_CLASS_CPPNAME__)
-__ENUM_INDENT2__ * __ENUM_CLASS_CPPNAME__ operator~(__ENUM_CLASS_CPPNAME__)
-__ENUM_INDENT2__ * __ENUM_CLASS_CPPNAME__& operator|=(__ENUM_CLASS_CPPNAME__&, __ENUM_CLASS_CPPNAME__)
-__ENUM_INDENT2__ * __ENUM_CLASS_CPPNAME__& operator&=(__ENUM_CLASS_CPPNAME__&, __ENUM_CLASS_CPPNAME__)
-__ENUM_INDENT2__ * __ENUM_CLASS_CPPNAME__& operator^=(__ENUM_CLASS_CPPNAME__&, __ENUM_CLASS_CPPNAME__)
+ifelse(`$7',,,`_DEPRECATE_IFDEF_START')`'dnl The expansion of _DEPRECATE_IFDEF_START ends with a newline +/** $6 + * + * @ingroup __MODULE_CANONICAL__`'Enums +m4_ifelse($3,Flags,`dnl + * @par Bitwise operators: + * %__ENUM_CPPNAME__ operator|(__ENUM_CPPNAME__, __ENUM_CPPNAME__)
+ * %__ENUM_CPPNAME__ operator&(__ENUM_CPPNAME__, __ENUM_CPPNAME__)
+ * %__ENUM_CPPNAME__ operator^(__ENUM_CPPNAME__, __ENUM_CPPNAME__)
+ * %__ENUM_CPPNAME__ operator~(__ENUM_CPPNAME__)
+ * %__ENUM_CPPNAME__& operator|=(__ENUM_CPPNAME__&, __ENUM_CPPNAME__)
+ * %__ENUM_CPPNAME__& operator&=(__ENUM_CPPNAME__&, __ENUM_CPPNAME__)
+ * %__ENUM_CPPNAME__& operator^=(__ENUM_CPPNAME__&, __ENUM_CPPNAME__)
')dnl endif -__ENUM_INDENT2__ */ -__ENUM_INDENT2__`'enum ifelse($6,,`class ',)`'__ENUM_CPPNAME__ -__ENUM_INDENT2__{ + */ +enum __ENUM_CPPNAME__ +{ $4 -__ENUM_INDENT2__}; -ifelse($6,,,`__ENUM_INDENT2__`'#ifndef DOXYGEN_SHOULD_SKIP_THIS -__ENUM_INDENT2__`'__ENUM_CPPNAME__`'_Wrapper`'() = delete; -__ENUM_INDENT2__`'#endif -__ENUM_INDENT1__}; -__ENUM_INDENT1__/** __ENUM_CPPNAME__ enumerators are scoped by the wrapper class -__ENUM_INDENT1__ * and can be implicitly converted to int. -__ENUM_INDENT1__ * -__ENUM_INDENT1__ * @ingroup __MODULE_CANONICAL__`'Enums -__ENUM_INDENT1__ */ -__ENUM_INDENT1__`'using __ENUM_CPPNAME__ = __ENUM_CPPNAME__`'_Wrapper::__ENUM_CPPNAME__; -')`'dnl endif conv_to_int -m4_ifelse($3,`Flags',`dnl -m4_ifelse($7,0,,`dnl in_class -_PUSH(SECTION_HEADER3) -__NAMESPACE_BEGIN__ -ifelse(`$9',,,`_DEPRECATE_IFDEF_START')`'dnl -')dnl endif +}; +m4_ifelse($3,Flags,`dnl /** @ingroup __MODULE_CANONICAL__`'Enums */ -inline __ENUM_CLASS_CPPNAME__ operator|(__ENUM_CLASS_CPPNAME__ lhs, __ENUM_CLASS_CPPNAME__ rhs) - { return static_cast<__ENUM_CLASS_CPPNAME__>(static_cast(lhs) | static_cast(rhs)); } +inline __ENUM_CPPNAME__ operator|(__ENUM_CPPNAME__ lhs, __ENUM_CPPNAME__ rhs) + { return static_cast<__ENUM_CPPNAME__>(static_cast(lhs) | static_cast(rhs)); } /** @ingroup __MODULE_CANONICAL__`'Enums */ -inline __ENUM_CLASS_CPPNAME__ operator&(__ENUM_CLASS_CPPNAME__ lhs, __ENUM_CLASS_CPPNAME__ rhs) - { return static_cast<__ENUM_CLASS_CPPNAME__>(static_cast(lhs) & static_cast(rhs)); } +inline __ENUM_CPPNAME__ operator&(__ENUM_CPPNAME__ lhs, __ENUM_CPPNAME__ rhs) + { return static_cast<__ENUM_CPPNAME__>(static_cast(lhs) & static_cast(rhs)); } /** @ingroup __MODULE_CANONICAL__`'Enums */ -inline __ENUM_CLASS_CPPNAME__ operator^(__ENUM_CLASS_CPPNAME__ lhs, __ENUM_CLASS_CPPNAME__ rhs) - { return static_cast<__ENUM_CLASS_CPPNAME__>(static_cast(lhs) ^ static_cast(rhs)); } +inline __ENUM_CPPNAME__ operator^(__ENUM_CPPNAME__ lhs, __ENUM_CPPNAME__ rhs) + { return static_cast<__ENUM_CPPNAME__>(static_cast(lhs) ^ static_cast(rhs)); } /** @ingroup __MODULE_CANONICAL__`'Enums */ -inline __ENUM_CLASS_CPPNAME__ operator~(__ENUM_CLASS_CPPNAME__ flags) - { return static_cast<__ENUM_CLASS_CPPNAME__>(~static_cast(flags)); } +inline __ENUM_CPPNAME__ operator~(__ENUM_CPPNAME__ flags) + { return static_cast<__ENUM_CPPNAME__>(~static_cast(flags)); } /** @ingroup __MODULE_CANONICAL__`'Enums */ -inline __ENUM_CLASS_CPPNAME__& operator|=(__ENUM_CLASS_CPPNAME__& lhs, __ENUM_CLASS_CPPNAME__ rhs) - { return (lhs = static_cast<__ENUM_CLASS_CPPNAME__>(static_cast(lhs) | static_cast(rhs))); } +inline __ENUM_CPPNAME__& operator|=(__ENUM_CPPNAME__& lhs, __ENUM_CPPNAME__ rhs) + { return (lhs = static_cast<__ENUM_CPPNAME__>(static_cast(lhs) | static_cast(rhs))); } /** @ingroup __MODULE_CANONICAL__`'Enums */ -inline __ENUM_CLASS_CPPNAME__& operator&=(__ENUM_CLASS_CPPNAME__& lhs, __ENUM_CLASS_CPPNAME__ rhs) - { return (lhs = static_cast<__ENUM_CLASS_CPPNAME__>(static_cast(lhs) & static_cast(rhs))); } +inline __ENUM_CPPNAME__& operator&=(__ENUM_CPPNAME__& lhs, __ENUM_CPPNAME__ rhs) + { return (lhs = static_cast<__ENUM_CPPNAME__>(static_cast(lhs) & static_cast(rhs))); } /** @ingroup __MODULE_CANONICAL__`'Enums */ -inline __ENUM_CLASS_CPPNAME__& operator^=(__ENUM_CLASS_CPPNAME__& lhs, __ENUM_CLASS_CPPNAME__ rhs) - { return (lhs = static_cast<__ENUM_CLASS_CPPNAME__>(static_cast(lhs) ^ static_cast(rhs))); } -m4_ifelse($7,0,,`dnl in_class -ifelse(`$9',,,`_DEPRECATE_IFDEF_END')`'dnl -__NAMESPACE_END__ -_POP() -')dnl endif +inline __ENUM_CPPNAME__& operator^=(__ENUM_CPPNAME__& lhs, __ENUM_CPPNAME__ rhs) + { return (lhs = static_cast<__ENUM_CPPNAME__>(static_cast(lhs) ^ static_cast(rhs))); } ')dnl endif Flags - -ifelse(`$9',,,`_DEPRECATE_IFDEF_END')`'dnl The expansion of _DEPRECATE_IFDEF_END ends with a newline +ifelse(`$7',,,`_DEPRECATE_IFDEF_END')`'dnl The expansion of _DEPRECATE_IFDEF_END ends with a newline m4_ifelse($5,`NO_GTYPE',,`dnl else -m4_ifelse($7,0,`dnl not in_class __NAMESPACE_END__ -',`dnl else -_PUSH(SECTION_HEADER3) -')dnl endif #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { -ifelse(`$9',,,`_DEPRECATE_IFDEF_START')`'dnl +ifelse(`$7',,,`_DEPRECATE_IFDEF_START')`'dnl template <> -class Value<__NAMESPACE__::__ENUM_CLASS_CPPNAME__> : public __ENUM_VALUE_BASE__ +class Value<__NAMESPACE__::__ENUM_CPPNAME__> : public __ENUM_VALUE_BASE__ { public: static GType value_type() G_GNUC_CONST; }; -ifelse(`$9',,,`_DEPRECATE_IFDEF_END')`'dnl +ifelse(`$7',,,`_DEPRECATE_IFDEF_END')`'dnl } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ -m4_ifelse($7,0,`dnl not in_class __NAMESPACE_BEGIN__ -',`dnl else -_POP() -')dnl endif _PUSH(SECTION_SRC_GENERATED) -ifelse(`$9',,,`_DEPRECATE_IFDEF_START')`'dnl +ifelse(`$7',,,`_DEPRECATE_IFDEF_START')`'dnl // static -GType Glib::Value<__NAMESPACE__::__ENUM_CLASS_CPPNAME__>::value_type() +GType Glib::Value<__NAMESPACE__::__ENUM_CPPNAME__>::value_type() { return _GET_TYPE_FUNC(__ENUM_CNAME__); } -ifelse(`$9',,,`_DEPRECATE_IFDEF_END')`'dnl +ifelse(`$7',,,`_DEPRECATE_IFDEF_END')`'dnl _POP() ')dnl endif !NO_GTYPE diff --git a/tools/m4/method.m4 b/tools/m4/method.m4 index 279f0ee..3ca4de6 100644 --- a/tools/m4/method.m4 +++ b/tools/m4/method.m4 @@ -45,7 +45,7 @@ ifelse(`$8',,,`$8 ')dnl ',dnl If the C function returns non-void: dnl Store the return if there are C output parameters. -`ifelse(`$6',,` return ',` auto retvalue = ')_CONVERT($4,`$3',`$2`'(ifelse(`$9',1,const_cast<__CNAME__*>(gobj()),gobj())`'ifelse(`$7',,,`, ')$7)'); +`ifelse(`$6',,` return ',` `$3' retvalue = ')_CONVERT($4,`$3',`$2`'(ifelse(`$9',1,const_cast<__CNAME__*>(gobj()),gobj())`'ifelse(`$7',,,`, ')$7)'); dnl Insert the initializations for the C output parameters ifelse(`$8',,,`$8 ')dnl @@ -78,7 +78,7 @@ dnl Insert the declarations for C output parameters ifelse(`$6',,,`$6 ')`'dnl ifelse(`$16',,dnl If no C++ output parameter is specified: -` ifelse(`$3',void,,`auto retvalue = ')_CONVERT($4,`$3',`$2`'(ifelse(`$9',1,const_cast<__CNAME__*>(gobj()),gobj())`'ifelse(`$7',,,`, ')$7)'); +` ifelse(`$3',void,,``$3' retvalue = ')_CONVERT($4,`$3',`$2`'(ifelse(`$9',1,const_cast<__CNAME__*>(gobj()),gobj())`'ifelse(`$7',,,`, ')$7)'); 'dnl ,dnl A C++ output parameter is specified: ` _INITIALIZE($17,$4,`$16',`$2`'(ifelse(`$9',1,const_cast<__CNAME__*>(gobj()),gobj())`'ifelse(`$7',,,`, ')$7)',$21); @@ -144,7 +144,7 @@ dnl If no C++ output parameter is specified. ` ifelse(`$3',void,,dnl dnl Returns non-void: dnl Store the return if there are C output parameters -ifelse(`$6',,`return ',`auto retval = '))_CONVERT($4,`$3',`$2`'($7)');'dnl +ifelse(`$6',,`return ',``$3' retval = '))_CONVERT($4,`$3',`$2`'($7)');'dnl dnl A C++ output parameter is specified so initialize it from C return ,` _INITIALIZE($14,$4,`$13',`$2`'($7)',$18);'dnl ) @@ -171,7 +171,7 @@ dnl Insert the declarations for the C output parameters ifelse(`$6',,,`$6 ')`'dnl ifelse(`$13',,dnl If no C++ output parameter is specified: - ifelse(`$3',void,,`auto retvalue = ')_CONVERT($4,`$3',`$2`'($7)');dnl + ifelse(`$3',void,,``$3' retvalue = ')_CONVERT($4,`$3',`$2`'($7)');dnl dnl A C++ output parameter is specified: ,` _INITIALIZE($14,$4,`$13',`$2`'($7)',$18);'dnl )dnl diff --git a/tools/m4/signal.m4 b/tools/m4/signal.m4 index fa2cd99..5b680f4 100644 --- a/tools/m4/signal.m4 +++ b/tools/m4/signal.m4 @@ -24,17 +24,17 @@ ifelse(`$9',,,`_DEPRECATE_IFDEF_START ')dnl ifelse($13,,`dnl no detail_name $10 - Glib::SignalProxy<$5`'($6)> signal_$4`'(); + Glib::SignalProxy< $5`'_COMMA_PREFIX($6) > signal_$4`'(); ',dnl detail_name $14,0,`dnl $10 - Glib::SignalProxyDetailed<$5`'($6)> signal_$4`'(const Glib::ustring& $13 = Glib::ustring()); + Glib::SignalProxyDetailedAnyType< $5`'_COMMA_PREFIX($6) > signal_$4`'(const Glib::ustring& $13 = Glib::ustring()); ',`dnl detail_name and two_signal_methods $10 - Glib::SignalProxy<$5`'($6)> signal_$4`'(); + Glib::SignalProxy< $5`'_COMMA_PREFIX($6) > signal_$4`'(); $10 - Glib::SignalProxyDetailed<$5`'($6)> signal_$4`'(const Glib::ustring& $13); + Glib::SignalProxyDetailedAnyType< $5`'_COMMA_PREFIX($6) > signal_$4`'(const Glib::ustring& $13); ')dnl end detail_name ifelse(`$9',,,`_DEPRECATE_IFDEF_END ')dnl @@ -65,7 +65,7 @@ ifelse($8,`1',,`dnl Do not generate the implementation if it should be custom: static $2 __CPPNAME__`'_signal_$4_callback`'(__CNAME__`'* self, _COMMA_SUFFIX($3)`'void* data) { using namespace __NAMESPACE__; - using SlotType = sigc::slot<$5`'($6)>; + using SlotType = sigc::slot< $5`'_COMMA_PREFIX($6) >; auto obj = dynamic_cast<__CPPNAME__*>(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -107,7 +107,7 @@ ifelse($2,void,,`dnl else static $2 __CPPNAME__`'_signal_$4_notify_callback`'(__CNAME__`'* self, _COMMA_SUFFIX($3)`' void* data) { using namespace __NAMESPACE__; - using SlotType = sigc::slot; + using SlotType = sigc::slot< void`'_COMMA_PREFIX($6) >; auto obj = dynamic_cast<__CPPNAME__*>(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -161,25 +161,25 @@ ifelse(`$11',,,`#ifdef $11' ifelse(`$9',,,`_DEPRECATE_IFDEF_START ')dnl ifelse($13,,`dnl no detail_name -Glib::SignalProxy<$5`'($6)> __CPPNAME__::signal_$4`'() +Glib::SignalProxy< $5`'_COMMA_PREFIX($6) > __CPPNAME__::signal_$4`'() { - return Glib::SignalProxy<$5`'($6) >(this, &__CPPNAME__`'_signal_$4_info); + return Glib::SignalProxy< $5`'_COMMA_PREFIX($6) >(this, &__CPPNAME__`'_signal_$4_info); } ',dnl detail_name $14,0,`dnl -Glib::SignalProxyDetailed<$5`'($6)> __CPPNAME__::signal_$4`'(const Glib::ustring& $13) +Glib::SignalProxyDetailedAnyType< $5`'_COMMA_PREFIX($6) > __CPPNAME__::signal_$4`'(const Glib::ustring& $13) { - return Glib::SignalProxyDetailed<$5`'($6)>(this, &__CPPNAME__`'_signal_$4_info, $13); + return Glib::SignalProxyDetailedAnyType< $5`'_COMMA_PREFIX($6) >(this, &__CPPNAME__`'_signal_$4_info, $13); } ',`dnl detail_name and two_signal_methods -Glib::SignalProxy<$5`'($6)> __CPPNAME__::signal_$4`'() +Glib::SignalProxy< $5`'_COMMA_PREFIX($6) > __CPPNAME__::signal_$4`'() { - return Glib::SignalProxy<$5`'($6)>(this, &__CPPNAME__`'_signal_$4_info); + return Glib::SignalProxy< $5`'_COMMA_PREFIX($6) >(this, &__CPPNAME__`'_signal_$4_info); } -Glib::SignalProxyDetailed<$5`'($6)> __CPPNAME__::signal_$4`'(const Glib::ustring& $13) +Glib::SignalProxyDetailedAnyType< $5`'_COMMA_PREFIX($6) > __CPPNAME__::signal_$4`'(const Glib::ustring& $13) { - return Glib::SignalProxyDetailed<$5`'($6)>(this, &__CPPNAME__`'_signal_$4_info, $13); + return Glib::SignalProxyDetailedAnyType< $5`'_COMMA_PREFIX($6) >(this, &__CPPNAME__`'_signal_$4_info, $13); } ')dnl end detail_name ifelse(`$9',,,`_DEPRECATE_IFDEF_END diff --git a/tools/pm/DocsParser.pm b/tools/pm/DocsParser.pm index 20bcaf3..fb6d55c 100644 --- a/tools/pm/DocsParser.pm +++ b/tools/pm/DocsParser.pm @@ -472,12 +472,6 @@ sub append_parameter_docs($$;$) # due to imperfections in the C docs, and it's difficult to get the C docs # corrected, correct docs can be added to the docs_override.xml file. - if (scalar @docs_param_names != scalar @c_param_names) - { - print STDERR "DocsParser.pm: Warning, $$obj_function{name}\n" . - " Incompatible parameter lists in the docs.xml file and the methods.defs file.\n"; - } - # Skip first param if this is a signal. if ($$obj_function{name} =~ /\w+::/) { @@ -514,14 +508,8 @@ sub append_parameter_docs($$;$) # Skip the last param if it's an error output param. if (scalar @docs_param_names && $docs_param_names[-1] eq "error") { - # If the number of parameters in @docs_param_names is not greater than - # the number of parameters in the _WRAP macro, the parameter called "error" - # is probably not an error output parameter. - if (!defined($objCppfunc) || scalar @docs_param_names > scalar @{$$objCppfunc{param_names}}) - { - pop(@docs_param_names); - pop(@c_param_names); - } + pop(@docs_param_names); + pop(@c_param_names); } my $cpp_param_names; @@ -535,11 +523,6 @@ sub append_parameter_docs($$;$) { $out_param_index = $$param_mappings{OUT}; } - if (scalar @docs_param_names != scalar @$cpp_param_names) - { - print STDERR "DocsParser.pm: Warning, $$obj_function{name}\n" . - " Incompatible parameter lists in the docs.xml file and the _WRAP macro.\n"; - } } my %param_name_mappings; # C name -> C++ name @@ -918,8 +901,7 @@ sub substitute_enumerator_name($$) my $cxx_name = (($module eq "G") ? "" : (ucfirst(lc($module)) . "::")) . $name; - print "DocsParser.pm: Assuming the enumerator $c_name shall become $cxx_name.\n"; - + #print "DocsParser.pm: Assuming the enumerator $c_name shall become $cxx_name.\n"; return $cxx_name; } diff --git a/tools/pm/Enum.pm b/tools/pm/Enum.pm index c1bdc3c..ceb705c 100644 --- a/tools/pm/Enum.pm +++ b/tools/pm/Enum.pm @@ -26,7 +26,6 @@ our @EXPORT_OK; # string module; # string c_type; # -# string array elem_short_names; # string array elem_names; # string array elem_values; # string c_prefix; @@ -148,7 +147,6 @@ sub new $$self{flags} = 0; $$self{c_prefix} = ""; - $$self{elem_short_names} = []; $$self{elem_names} = []; $$self{elem_values} = []; @@ -175,7 +173,6 @@ sub new } # this should never happen - warn if(scalar(@{$$self{elem_short_names}}) != scalar(@{$$self{elem_values}})); warn if(scalar(@{$$self{elem_names}}) != scalar(@{$$self{elem_values}})); return $self; @@ -185,7 +182,6 @@ sub parse_values($$) { my ($self, $value) = @_; - my $elem_short_names = []; my $elem_names = []; my $elem_values = []; my $common_prefix = undef; @@ -193,9 +189,9 @@ sub parse_values($$) # and handles triples like '("dq-token", "MY_SCANNER_DQ_TOKEN", "'"'"). foreach (split_enum_tokens($value)) { - if (/^"(\S+)" "(\S+)" "(.+)"$/) + if (/^"\S+" "(\S+)" "(.+)"$/) { - my ($nick_name, $name, $value) = ($1, $2, $3); + my ($name, $value) = ($1, $2); # detect whether there is module prefix common to all names, e.g. GTK_ my $prefix = $1 if ($name =~ /^([^_]+_)/); @@ -209,16 +205,6 @@ sub parse_values($$) $common_prefix = ""; } - # enum.pl generates nick names from the C names of the enum constants. - # A nick name consists of the trailing part of the enum name. - # The leading part which is common for each constant of an enum type - # has been removed. The remaining part is then tranform to lowercase - # and hyphens. - # Transform the nick name with lowercase letters and hyphens - # back to a short name with uppercase letters and underscores. - # The short names are suitable for 'enum class' definitions. - $nick_name =~ tr/a-z-/A-Z_/; - push(@$elem_short_names, $nick_name); push(@$elem_names, $name); push(@$elem_values, $value); } @@ -237,18 +223,17 @@ sub parse_values($$) $$self{c_prefix} = $common_prefix; } - $$self{elem_short_names} = $elem_short_names; $$self{elem_names} = $elem_names; $$self{elem_values} = $elem_values; } -sub beautify_values($$) +sub beautify_values($) { - my ($self, $use_short_names) = @_; + my ($self) = @_; return if($$self{flags}); - my $elem_names = $use_short_names ? $$self{elem_short_names} : $$self{elem_names}; + my $elem_names = $$self{elem_names}; my $elem_values = $$self{elem_values}; my $num_elements = scalar(@$elem_values); @@ -292,9 +277,9 @@ sub beautify_values($$) sub build_element_list($$$$) { - my ($self, $use_short_names, $ref_subst_in, $ref_subst_out, $indent) = @_; + my ($self, $ref_subst_in, $ref_subst_out, $indent) = @_; - my $elem_names = $use_short_names ? $$self{elem_short_names} : $$self{elem_names}; + my $elem_names = $$self{elem_names}; my $elem_values = $$self{elem_values}; my $num_elements = scalar(@$elem_names); @@ -322,19 +307,6 @@ sub build_element_list($$$$) return $elements; } -# The name prefix is defined by: $name_prefix . $short_name eq $name -# I.e. what shall be chopped off the name to get the short name. -sub get_name_prefix($) -{ - my ($self) = @_; - - my $name = ${$$self{elem_names}}[0]; - my $short_name = ${$$self{elem_short_names}}[0]; - my $prefix_length = length($name) - length($short_name); - - return substr($name, 0, $prefix_length); -} - sub dump($) { my ($self) = @_; diff --git a/tools/pm/Function.pm b/tools/pm/Function.pm index 37ffdd3..f962216 100644 --- a/tools/pm/Function.pm +++ b/tools/pm/Function.pm @@ -226,7 +226,7 @@ sub parse_param($$) # but possibly spaces between the multiple ">>". # Quoted strings are not detected. If a quoted string exists in a function # prototype, it's probably as part of a default value, inside ("x") or {"y"}. - # + # my @str = (); foreach (split(/(\bconst\b|[,=&*>]|<.*?>|{.*?}|\(.*?\)|\s+)/, $line)) { diff --git a/tools/pm/Output.pm b/tools/pm/Output.pm index c35cadf..f0a011a 100644 --- a/tools/pm/Output.pm +++ b/tools/pm/Output.pm @@ -684,13 +684,13 @@ sub output_wrap_sig_decl($$$$$$$$$$$$$$) } # void output_wrap_enum($filename, $line_num, $cpp_type, $c_type, -# $comment, $ref_subst_in, $ref_subst_out, $no_gtype, $conv_to_int, -# $in_class, $deprecated, $deprecation_docs, $newin) -sub output_wrap_enum($$$$$$$$$$$$$$) +# $comment, $ref_subst_in, $ref_subst_out, $no_gtype, +# $deprecated, $deprecation_docs, $newin) +sub output_wrap_enum($$$$$$$$$$$$) { my ($self, $filename, $line_num, $cpp_type, $c_type, - $comment, $ref_subst_in, $ref_subst_out, $no_gtype, $conv_to_int, - $in_class, $deprecated, $deprecation_docs, $newin) = @_; + $comment, $ref_subst_in, $ref_subst_out, $no_gtype, + $deprecated, $deprecation_docs, $newin) = @_; my $objEnum = GtkDefs::lookup_enum($c_type); if(!$objEnum) @@ -699,12 +699,9 @@ sub output_wrap_enum($$$$$$$$$$$$$$) return; } - $objEnum->beautify_values(1); + $objEnum->beautify_values(); - my $indent = " "; - $indent .= " " if ($in_class); - $indent .= " " if ($conv_to_int); - my $elements = $objEnum->build_element_list(1, $ref_subst_in, $ref_subst_out, $indent); + my $elements = $objEnum->build_element_list($ref_subst_in, $ref_subst_out, " "); add_m4_quotes(\$elements); if(!$elements) @@ -713,57 +710,37 @@ sub output_wrap_enum($$$$$$$$$$$$$$) return; } - # Chop off the name prefix in the documentation. - my $name_prefix = $objEnum->get_name_prefix(); - unshift(@$ref_subst_in, "^$name_prefix"); - unshift(@$ref_subst_out, ""); + my $value_suffix = "Enum"; + $value_suffix = "Flags" if($$objEnum{flags}); # Get the enum documentation from the parsed docs. - $indent = substr($indent, 1); # Remove one blank my $enum_docs = DocsParser::lookup_enum_documentation("$c_type", "$cpp_type", - $indent, $ref_subst_in, $ref_subst_out, $deprecation_docs, $newin); + " ", $ref_subst_in, $ref_subst_out, $deprecation_docs, $newin); # Merge the passed in comment to the existing enum documentation. - $comment .= "\n$indent* $enum_docs" if $enum_docs ne ""; - - my $value_suffix = "Enum"; - $value_suffix = "Flags" if ($$objEnum{flags}); + $comment .= "\n * " . $enum_docs if $enum_docs ne ""; - my $str = sprintf("_ENUM(%s,%s,%s,\`%s\',\`%s\',\`%s\',%d,\`%s\',\`%s\')dnl\n", + my $str = sprintf("_ENUM(%s,%s,%s,\`%s\',\`%s\',\`%s\',\`%s\')dnl\n", $cpp_type, $c_type, $value_suffix, $elements, $no_gtype, - $conv_to_int, - $in_class, $comment, $deprecated ); + $self->append($str); } -sub output_wrap_enum_docs_only($$$$$$$$$$$$) +sub output_wrap_enum_docs_only($$$$$$$$$$$) { my ($self, $filename, $line_num, $module_canonical, $cpp_type, $c_type, - $comment, $ref_subst_in, $ref_subst_out, $in_class, $deprecation_docs, $newin) = @_; + $comment, $ref_subst_in, $ref_subst_out, $deprecation_docs, $newin) = @_; - my $objEnum = GtkDefs::lookup_enum($c_type); - if(!$objEnum) - { - $self->output_wrap_failed($c_type, "enum defs lookup failed."); - return; - } - # Chop off the name prefix in the documentation. - my $name_prefix = $objEnum->get_name_prefix(); - unshift(@$ref_subst_in, "^$name_prefix"); - unshift(@$ref_subst_out, ""); - - # Get the enum documentation from the parsed docs. - my $indent = " "; - $indent .= " " if ($in_class); + # Get the existing enum description from the parsed docs. my $enum_docs = DocsParser::lookup_enum_documentation("$c_type", "$cpp_type", - $indent, $ref_subst_in, $ref_subst_out, $deprecation_docs, $newin); + " ", $ref_subst_in, $ref_subst_out, $deprecation_docs, $newin); if($enum_docs eq "") { @@ -772,10 +749,10 @@ sub output_wrap_enum_docs_only($$$$$$$$$$$$) } # Include the enum docs in the module's enum docs group. - $enum_docs .= "\n$indent*\n$indent* \@ingroup ${module_canonical}Enums"; + $enum_docs .= "\n *\n * \@ingroup ${module_canonical}Enums"; # Merge the passed in comment to the existing enum documentation. - $comment = "/** " . $comment . "\n$indent* " . $enum_docs . "\n$indent*/\n"; + $comment = "/** " . $comment . "\n * " . $enum_docs . "\n */\n"; $self->append($comment); } @@ -801,7 +778,7 @@ sub output_wrap_gerror($$$$$$$$$$$$$) # Shouldn't happen, and if it does, I'd like to know that. warn if($$objEnum{flags}); - $objEnum->beautify_values(0); + $objEnum->beautify_values(); # cut off the module prefix, e.g. GDK_ my $prefix = $domain; @@ -811,7 +788,7 @@ sub output_wrap_gerror($$$$$$$$$$$$$) unshift(@$ref_subst_in, "^${prefix}_"); unshift(@$ref_subst_out, ""); - my $elements = $objEnum->build_element_list(0, $ref_subst_in, $ref_subst_out, " "); + my $elements = $objEnum->build_element_list($ref_subst_in, $ref_subst_out, " "); add_m4_quotes(\$elements); # Get the enum documentation from the parsed docs. diff --git a/tools/pm/WrapParser.pm b/tools/pm/WrapParser.pm index f8ce348..ac2ed97 100644 --- a/tools/pm/WrapParser.pm +++ b/tools/pm/WrapParser.pm @@ -669,43 +669,45 @@ sub extract_bracketed_text($) my $str = ""; # Move to the first "(": - while (scalar(@tokens)) - { - my $t = $self->extract_token(); - last if ($t eq "("); - } + while ( scalar(@tokens) ) + { + my $t = $self->extract_token(); + last if ($t eq "("); + } - my $filename = $$self{filename}; - my $line_num = $$self{line_num}; + # TODO: Don't count "(" and ")" within double quotes. + # There may be .hg files with unpaired quotes that generate correct + # .h and .cc files. Don't want to break such code yet. + # See also TODO in string_split_commas(). # Concatenate until the corresponding ")": - while (scalar(@tokens) and $filename eq $$self{filename}) - { - my $t = $self->extract_token(); - $in_quotes = !$in_quotes if ($t eq '"'); - # Don't count "(" and ")" within double quotes. - if (!$in_quotes) + while ( scalar(@tokens) ) { + my $t = $self->extract_token(); + $in_quotes = !$in_quotes if ($t eq '"'); $level++ if ($t eq "("); $level-- if ($t eq ")"); - return $str if (!$level); # Found matching ")" + + if (!$level) + { + $self->error("End of gmmproc directive within a quoted string.\n") if $in_quotes; + return $str; + } + $str .= $t; } - $str .= $t; - } - # No matching ")" found. - my $quote_text = $in_quotes ? " in a quoted string" : ""; - die "$filename:$line_num: *** End of file$quote_text in a gmmproc macro. ***\n"; + return ""; } ######################################## ### breaks up a string by commas (smart) -# @strings string_split_commas($string) -sub string_split_commas($) +# @strings string_split_commas($string [, $ignore_quotes]) +sub string_split_commas($;$) { - my ($in) = @_; + my ($in, $ignore_quotes) = @_; + $ignore_quotes = 2 unless defined $ignore_quotes; my @out; my $level = 0; my $in_quotes = 0; @@ -718,7 +720,10 @@ sub string_split_commas($) next if ($t eq ""); - $in_quotes = !$in_quotes if ($t eq '"'); + # TODO: Delete the test for scalar(@out) >= $ignore_quotes when we can stop accepting + # .hg files with unpaired quotes, such as _WRAP_PROPERTY("text_column, int). + # See also TODO in extract_bracketed_text(). + $in_quotes = !$in_quotes if ($t eq '"' and scalar(@out) >= $ignore_quotes); if (!$in_quotes) { $level++ if ($t eq "(" or $t eq "<" or $t eq "{"); @@ -1025,7 +1030,7 @@ sub on_wrap_method_docs_only($) my $line_num = $$self{line_num}; my $str = $self->extract_bracketed_text(); - my @args = string_split_commas($str); + my @args = string_split_commas($str, 1); my $entity_type = "method"; @@ -1436,7 +1441,6 @@ sub on_wrap_any_enum($$) my @subst_in = []; my @subst_out = []; my $no_gtype = ""; - my $conv_to_int = ""; my $argDeprecated = ""; my $deprecation_docs = ""; my $newin = ""; @@ -1448,11 +1452,12 @@ sub on_wrap_any_enum($$) if ($arg eq "NO_GTYPE") { - $no_gtype = $arg; + $no_gtype = "NO_GTYPE"; } - elsif (!$is_gerror and $arg eq "CONV_TO_INT") + elsif ($arg =~ /^(get_type_func=)(\s*)$/) { - $conv_to_int = $arg; + my $part1 = $1; + my $part2 = $2; } elsif ($arg =~ /^s#([^#]+)#([^#]*)#$/) { @@ -1474,28 +1479,9 @@ sub on_wrap_any_enum($$) } } return ($cpp_type, $c_type, $domain, \@subst_in, \@subst_out, $no_gtype, - $conv_to_int, $argDeprecated, $deprecation_docs, $newin); + $argDeprecated, $deprecation_docs, $newin); } -# void on_wrap_enum() -# _WRAP_ENUM(cpp_type, c_type [,NO_GTYPE] [,CONV_TO_INT] [,s#regexpr#subst#]*) -# Optional arguments: -# NO_GTYPE Don't generate code for a specialization of the template -# Glib::Value_Enum or Glib::Value_Flags. -# Necessary, if the C type enum is not registered as a GType. -# CONV_TO_INT "Convertible to int" Generate a plain enum (not an enum class) -# within a class. Such an enum is scoped like an enum class, -# and it can be implicitly converted to int like a plain enum. -# s#regexpr#subst# Zero or more substitutions in names of enum constants, e.g. s#^DATE_##. -# -# _WRAP_ENUM can be located either in a class or outside all classes. -# When located in a class, and Value specialization shall be generated or it's -# a Flags type (i.e. bitwise operators shall be generated), then the following -# requirements must be fulfilled: -# 1. _WRAP_ENUM must be located in the public part of the class. -# 2. The class must contain a class macro (_CLASS_GENERIC, _CLASS_GOBJECT, -# _CLASS_GTKOBJECT, etc.) before _WRAP_ENUM. -# sub on_wrap_enum($) { my ($self) = @_; @@ -1505,13 +1491,13 @@ sub on_wrap_enum($) my $comment = $self->extract_preceding_documentation(); # get the arguments - my ($cpp_type, $c_type, undef, $ref_subst_in, $ref_subst_out, $no_gtype, $conv_to_int, + my ($cpp_type, $c_type, undef, $ref_subst_in, $ref_subst_out, $no_gtype, $argDeprecated, $deprecation_docs, $newin) = $self->on_wrap_any_enum(0); $$self{objOutputter}->output_wrap_enum( $$self{filename}, $$self{line_num}, $cpp_type, $c_type, - $comment, $ref_subst_in, $ref_subst_out, $no_gtype, $conv_to_int, - $$self{in_class}, $argDeprecated, $deprecation_docs, $newin); + $comment, $ref_subst_in, $ref_subst_out, $no_gtype, + $argDeprecated, $deprecation_docs, $newin); } sub on_wrap_enum_docs_only($) @@ -1523,7 +1509,7 @@ sub on_wrap_enum_docs_only($) my $comment = $self->extract_preceding_documentation(); # get the arguments - my ($cpp_type, $c_type, undef, $ref_subst_in, $ref_subst_out, undef, undef, + my ($cpp_type, $c_type, undef, $ref_subst_in, $ref_subst_out, undef, $argDeprecated, $deprecation_docs, $newin) = $self->on_wrap_any_enum(0); # Get the module name so the enum docs can be included in the module's @@ -1532,7 +1518,7 @@ sub on_wrap_enum_docs_only($) $$self{objOutputter}->output_wrap_enum_docs_only( $$self{filename}, $$self{line_num}, $module_canonical, $cpp_type, $c_type, - $comment, $ref_subst_in, $ref_subst_out, $$self{in_class}, $deprecation_docs, $newin); + $comment, $ref_subst_in, $ref_subst_out, $deprecation_docs, $newin); } sub on_wrap_gerror($) @@ -1547,7 +1533,7 @@ sub on_wrap_gerror($) my $class_docs = $self->extract_preceding_documentation(); # get the arguments - my ($cpp_type, $c_type, $domain, $ref_subst_in, $ref_subst_out, $no_gtype, undef, + my ($cpp_type, $c_type, $domain, $ref_subst_in, $ref_subst_out, $no_gtype, $argDeprecated, $deprecation_docs, $newin) = $self->on_wrap_any_enum(1); $$self{objOutputter}->output_wrap_gerror( diff --git a/tools/test_scripts/testheaders.sh b/tools/test_scripts/testheaders.sh index 5780d7f..c66faa2 100755 --- a/tools/test_scripts/testheaders.sh +++ b/tools/test_scripts/testheaders.sh @@ -5,9 +5,9 @@ # files that it depends on. # Example: In glibmm, go to directory glibmm, and run -# tools/test_scripts/testheaders.sh -I glib glibmm-2.58 gio # compile glibmm/gio/giomm/*.h -# tools/test_scripts/testheaders.sh glibmm-2.58 glib gio # compile glibmm/glib/glibmm/*.h and glibmm/gio/giomm/*.h -# tools/test_scripts/testheaders.sh -I glib -I gio glibmm-2.58 glib/glibmm/ustring.h # compile glibmm/glib/glibmm/ustring.h +# tools/test_scripts/testheaders.sh -I glib glibmm-2.4 gio # compile glibmm/gio/giomm/*.h +# tools/test_scripts/testheaders.sh glibmm-2.4 glib gio # compile glibmm/glib/glibmm/*.h and glibmm/gio/giomm/*.h +# tools/test_scripts/testheaders.sh -I glib -I gio glibmm-2.4 glib/glibmm/ustring.h # compile glibmm/glib/glibmm/ustring.h # Usage: testheaders.sh [-I]... [ | ]... # -I is added to the g++ command. @@ -18,9 +18,6 @@ function usage() { exit 1 } -#extra_gcc_args=-std=c++11 -extra_gcc_args= - # Search for directories to include in CFLAGS. idirs="" while [ $# -gt 0 ] @@ -56,7 +53,7 @@ shift # Search for more directories to include in CFLAGS. for i in "$@" do - if [ -d "$1" ] + if [ -d "$i" ] then idirs+=" -I$i" fi @@ -78,11 +75,11 @@ do for headerfile in $i/${i}mm/*.h do echo "=== $headerfile" - g++ -c -x c++ $extra_gcc_args -o /dev/null $headerfile $CFLAGS + g++ -c -x c++ -std=c++11 -o /dev/null $headerfile $CFLAGS done else echo "=== $i" - g++ -c -x c++ $extra_gcc_args -o /dev/null $i $CFLAGS + g++ -c -x c++ -std=c++11 -o /dev/null $i $CFLAGS fi done