Chun-wei Fan [Mon, 2 Feb 2015 04:49:42 +0000 (12:49 +0800)]
MSVC Builds: Rename "install" Projects
Rename the project to "install" the GLib files, as we are planning to have
a grand solution file that would build the entire GTK+ stack with its deps,
to ease the process for people building the GTK+ stack from a stock
installation of Visual Studio.
Chun-wei Fan [Mon, 2 Feb 2015 03:16:29 +0000 (11:16 +0800)]
gobject\gtype.h: Make up for Missing '\'
The macro definition for G_DECLARE_DERIVABLE_TYPE was missing a '\' when
we wanted to ignore deprecation warnings for it.
Chun-wei Fan [Mon, 2 Feb 2015 03:14:07 +0000 (11:14 +0800)]
One More Update For MSVC Builds
We also need to "install" the headers for Lars' new APIs for GListModel/
GListStore.
Chun-wei Fan [Mon, 2 Feb 2015 02:51:25 +0000 (10:51 +0800)]
MSVC Builds: "Install" the Autocleanup Headers
We are including the autocleanup headers as public headers for all builds,
although they work only for GCC in reality, so "install" them.
Also clean up a bit as we are having "\\" in places, where we only need
"\".
Ryan Lortie [Fri, 30 Jan 2015 14:21:20 +0000 (15:21 +0100)]
gio: add support for g_auto() and g_autoptr()
Add support to libgio types for the new cleanup macros.
https://bugzilla.gnome.org/show_bug.cgi?id=743640
Ryan Lortie [Wed, 28 Jan 2015 11:47:05 +0000 (11:47 +0000)]
G_DECLARE_*_TYPE: add auto cleanup support
Automatically add support for the new cleanup macros to the type
declaration macros.
This is an API break because now your parent class needs to support
cleanup if you want to use G_DECLARE_*_TYPE. These macros are only 1
day old, however, so that's probably not a big problem (and we are
already busy adding the macros all over GLib and Gtk+).
https://bugzilla.gnome.org/show_bug.cgi?id=743640
Ryan Lortie [Wed, 28 Jan 2015 11:46:34 +0000 (11:46 +0000)]
gobject: add support for g_auto() and g_autoptr()
Add support to libgobject types for the new cleanup macros.
https://bugzilla.gnome.org/show_bug.cgi?id=743640
Ryan Lortie [Wed, 28 Jan 2015 11:45:26 +0000 (11:45 +0000)]
glib: add support for g_auto() and g_autoptr()
Add support to the libglib types for the new cleanup macros.
https://bugzilla.gnome.org/show_bug.cgi?id=743640
Ryan Lortie [Wed, 28 Jan 2015 11:27:35 +0000 (11:27 +0000)]
macros: add support for GNUC cleanup __attribute__
Add g_auto() and g_autoptr() as helpers for declaring variables with
automatic cleanup.
Add some macros to help types define cleanup functions for themselves.
Going forward it will be an expectation that people use this macro when
creating a new type, even if they do not intend to use the auto-cleanup
functionality for themselves.
These new macros only work on GCC and clang, which is why we resisted
adding them for so long. There exist many people who are only
interested in writing programs for these compilers, however, and a
similar API in libgsystem has proven to be extremely popular, so let's
expose this functionality to an even wider audience.
We ignore deprecation warnings when emitting the free functions, which
seems suspicious. The reason that we do this is not because we want to
call deprecated functions, but just the opposite: sometimes the free
function will be an _unref() function that is only AVAILABLE_IN newer
versions, and these warnings are also implemented as deprecation
warnings.
https://bugzilla.gnome.org/show_bug.cgi?id=743640
Ryan Lortie [Fri, 30 Jan 2015 15:40:03 +0000 (16:40 +0100)]
DECLARE_TYPE: ignore deprecations in inlines
Prevent complaints about deprecations in the inline functions emitted by
the new G_DECLARE_*_TYPE macros.
Ryan Lortie [Wed, 28 Jan 2015 11:30:23 +0000 (11:30 +0000)]
G_DECLARE_FINAL_TYPE: trivial fix in docs comment
https://bugzilla.gnome.org/show_bug.cgi?id=743640
Ryan Lortie [Fri, 30 Jan 2015 14:30:02 +0000 (15:30 +0100)]
giotypefuncs test: tweak _get_type() regexp
Make sure that we only match the _get_type() function name by
restricting the regexp to matching [A-Za-z0-9_]. We were matching on .*
before which means that if we had two _get_type() functions appearing on
a single line then we would get everything in between them included (by
the default rule of '*' being greedy).
This affected G_DECLARE_*_TYPE which puts several uses of _get_type()
into a single line.
Lars Uebernickel [Thu, 1 May 2014 18:04:32 +0000 (20:04 +0200)]
Add GListModel
GListModel is an interface that represents a dynamic list of GObjects.
Also add GListStore, a simple implementation of GListModel that stores
all objects in memory, using a GSequence.
https://bugzilla.gnome.org/show_bug.cgi?id=729351
Lars Uebernickel [Mon, 26 Jan 2015 10:13:26 +0000 (10:13 +0000)]
gsettings: add g_settings_schema_list_children
https://bugzilla.gnome.org/show_bug.cgi?id=743517
Lars Uebernickel [Mon, 26 Jan 2015 09:50:34 +0000 (09:50 +0000)]
gsettings: add g_settings_schema_key_get_name
https://bugzilla.gnome.org/show_bug.cgi?id=743517
Christian Hergert [Tue, 27 Jan 2015 18:50:04 +0000 (18:50 +0000)]
G_DECLARE_DERIVED_TYPE: allow forward declarations
This allows multiple declarations such as:
typedef struct _Foo Foo;
as is needed when you have systems with circular referencing.
https://bugzilla.gnome.org/show_bug.cgi?id=743596
Dan Winship [Tue, 27 Jan 2015 12:38:31 +0000 (07:38 -0500)]
gcredentialsprivate: clarify the USE_FREEBSD_CMSGCRED users
Add comments clarifying what the three non-FreeBSD platforms using
G_CREDENTIALS_USE_FREEBSD_CMSGCRED are.
Peeter Must [Tue, 27 Jan 2015 02:34:48 +0000 (11:34 +0900)]
gcredentials: Add support for DragonFly
https://bugzilla.gnome.org/show_bug.cgi?id=743508
Ryan Lortie [Mon, 3 Feb 2014 17:40:17 +0000 (17:40 +0000)]
gtype: add type declaration macros for headers
Add G_DECLARE_DERIVABLE_TYPE() and G_DECLARE_FINAL_TYPE() to allow
skipping almost all of the typical GObject boilerplate code.
These macros make some assumptions about GObject best practice that mean
that they may not be usable with older classes that have to preserve
API/ABI compatibility with a time before these practices existed.
https://bugzilla.gnome.org/show_bug.cgi?id=389585
Chun-wei Fan [Mon, 26 Jan 2015 03:17:28 +0000 (11:17 +0800)]
glib-sections.txt: Add g_win32_check_windows_version()
https://bugzilla.gnome.org/show_bug.cgi?id=741895
Chun-wei Fan [Mon, 26 Jan 2015 03:11:48 +0000 (11:11 +0800)]
gwin32: Add g_win32_check_windows_version() API
This adds a public API where one can use to see whether the running version
of Windows where the code is run is at least the specified version, service
pack level, and the type (non-server, server, any) of the running Windows
OS.
This API is done as:
-GetVersion()/GetVersionEx() changed in the way they work since Windows 8.1
[1][2], so a newer mechanism to check the version of the running Windows
operating system is needed. MSDN also states that GetVersion() might be
further changed or removed after Windows 8.1. This provides a wrapper for
VerfyVersionInfo() as well in GLib for most cases, which was recommended
in place of g_win32_get_windows_version() for more detailed Windows
version checking.
-Provides an OS-level functionality check, for those that we don't need to
venture into GetProcAddress(), and also to determine system API behavior
changes due to differences in OS versions.
Also added a note for the g_win32_get_windows_version() API that since the
behavior of GetVersion() which it uses, is changed since Windows 8.1, users
of the API should be aware.
[1]:
http://msdn.microsoft.com/zh-tw/library/windows/desktop/ms724451%28v=vs.85%29.aspx
[2]:
http://msdn.microsoft.com/zh-tw/library/windows/desktop/ms724451%28v=vs.85%29.aspx
https://bugzilla.gnome.org/show_bug.cgi?id=741895
Cosimo Cecchi [Mon, 26 Jan 2015 11:18:06 +0000 (11:18 +0000)]
GSimpleAction: add g_simple_action_set_state_hint
Currently the only way to set a state hint on an action is through a
subclass; add a g_simple_action_set_state_hint() method so that this
becomes easier for clients that already use GSimpleAction.
https://bugzilla.gnome.org/show_bug.cgi?id=743521
Ilya Konstantinov [Sat, 20 Dec 2014 16:19:00 +0000 (11:19 -0500)]
gthread: add thread name support on Mac OS
https://bugzilla.gnome.org/show_bug.cgi?id=741807
Philip Withnall [Sun, 25 Jan 2015 17:09:35 +0000 (17:09 +0000)]
gobject: Fix a typo in a documentation comment
Philip Withnall [Sun, 25 Jan 2015 17:09:24 +0000 (17:09 +0000)]
gthread: Fix a typo in a documentation comment
Philip Withnall [Sun, 25 Jan 2015 16:22:43 +0000 (16:22 +0000)]
gstrfuncs: Document that g_ascii_dtostr() writes a nul terminator
And g_ascii_formatd().
Reviewed-by: Ryan Lortie <desrt@desrt.ca>
Chun-wei Fan [Wed, 21 Jan 2015 06:28:47 +0000 (14:28 +0800)]
gio/Makefile.am: Fix MSVC Project Generation
We need to filter out gnetworkmonitornm.c in the MSVC Projects, as that is
UNIX-only code.
Ryan Lortie [Tue, 20 Jan 2015 06:38:13 +0000 (01:38 -0500)]
bump version
Ryan Lortie [Tue, 20 Jan 2015 05:05:11 +0000 (00:05 -0500)]
GLib 2.43.3
Philip Withnall [Fri, 16 Jan 2015 09:14:08 +0000 (09:14 +0000)]
gtestutils: Add an example of using test fixtures
Add a simple example of a test suite with two unit tests both using the
same fixture.
https://bugzilla.gnome.org/show_bug.cgi?id=743014
Inaki Larranaga Murgoitio [Sat, 17 Jan 2015 16:14:46 +0000 (17:14 +0100)]
Updated Basque language
Ignacio Casal Quinteiro [Mon, 22 Dec 2014 15:38:50 +0000 (16:38 +0100)]
gsocket: always try before waiting for condition
When implementing blocking operations on top of
nonblocking sockets we should always first try to
perform the operation and then if needed handle
EAGAIN and wait with g_socket_wait_condition.
This is an optimization since we avoid calling
wait condition when it is not needed, but most
importantly this fixes hangs on win32 where some
events (in particular FD_WRITE) are only emitted
after the operation fails with EWOULDBLOCK.
https://bugzilla.gnome.org/show_bug.cgi?id=732439
https://bugzilla.gnome.org/show_bug.cgi?id=741707
Paolo Borelli [Sat, 10 Jan 2015 14:23:07 +0000 (15:23 +0100)]
gsocket: add a testcase that shows a hang on win32
Add a unit test that checks g_socket_new_from_fd by creating
a gsocket, obtaining its fd, duplicating the fd and then creating
a gsocket from the new fd. This shows a hang on win32 since the
gsocket created from the fd never receives the FD_WRITE event
because we wait for the condition without first trying to write
and windows signals the condition only after a EWOULDBLOCK error.
https://bugzilla.gnome.org/show_bug.cgi?id=741707
Philip Withnall [Fri, 16 Jan 2015 09:22:21 +0000 (09:22 +0000)]
gtestutils: Add links to gtester and gtester-report documentation
Link some existing text to make cross-referencing a little easier.
Philip Withnall [Fri, 16 Jan 2015 09:18:41 +0000 (09:18 +0000)]
gtestutils: Fix a typo in the g_test_add() documentation
Philip Withnall [Fri, 16 Jan 2015 09:10:46 +0000 (09:10 +0000)]
gtestutils: Clarify that test fixtures are allocated by GLib
Make it a little clearer that the user’s fixture setup and teardown
functions don’t have to do the allocation or freeing.
Philip Withnall [Fri, 16 Jan 2015 09:12:53 +0000 (09:12 +0000)]
gtestutils: Fix a typo in the g_test_run() documentation
Philip Withnall [Thu, 15 Jan 2015 14:20:33 +0000 (14:20 +0000)]
ggettext: Include an example of setlocale() and friends in the i18n docs
Include an example main() function, and include a link to the gettext
manual’s section on integrating gettext with build systems.
That should work as a complete reference for how to add i18n support to
an application.
https://bugzilla.gnome.org/show_bug.cgi?id=742972
Paolo Borelli [Tue, 13 Jan 2015 11:44:20 +0000 (12:44 +0100)]
Avoid warning when using G_STMT_END macro with MSVC
Workaround found on
http://cnicholson.net/2009/03/stupid-c-tricks-dowhile0-and-c4127/
https://bugzilla.gnome.org/show_bug.cgi?id=742851
Paolo Borelli [Tue, 13 Jan 2015 12:22:07 +0000 (13:22 +0100)]
Use G_STMT_START/END in gslice.h
Paolo Borelli [Tue, 13 Jan 2015 12:19:58 +0000 (13:19 +0100)]
Use G_STMT_START/END in gtestutils
Philip Withnall [Fri, 19 Dec 2014 21:10:53 +0000 (21:10 +0000)]
gsettings: Fix a typo in the GSettings documentation
https://bugzilla.gnome.org/show_bug.cgi?id=741788
Matthias Clasen [Tue, 13 Jan 2015 21:54:59 +0000 (16:54 -0500)]
Bump version
So that early adopters of new api have a version to target.
Iain Lane [Mon, 12 Jan 2015 10:03:18 +0000 (10:03 +0000)]
gnetworkmonitornm: Check if network-manager is running
We were asking for properties on NM's dbus interface, but if NM is not
running then there won't be any. Check if the name has an owner before
doing anything to it.
https://bugzilla.gnome.org/show_bug.cgi?id=741653
Ryan Lortie [Wed, 7 Jan 2015 21:15:22 +0000 (16:15 -0500)]
configure.ac: reject 'universal' builds
AC_C_BIGENDIAN can return 'universal' as the result in the case that we
are trying to do a universal build on Mac OS. This has to be opted into
explicitly by using multiple -arch CFLAGS.
Previously, we detected this result and fell back to doing our own check
based on the endianness of the build machine, hardcoding that. This
means that universal builds might successfully build, but the binaries
would never actually run correctly on the 'opposite' arch.
This check was added because of a bug in the intial implementation of
this detection in autoconf, which was inappropriately identifying
non-macos compilers as 'universal'. That was hitting ppc64 systems.
See https://bugzilla.redhat.com/show_bug.cgi?id=449944 for more info.
Commit
b0e687ef42e21b1eb7af18c4eaebcd41b0bd5632 in autoconf ("Limit
AC_C_BIGENDIAN univeral checks to Mac OS X") solved this issue in 2008,
so let's remove our workaround. For good measure, if we detect
"universal" in the result, error out.
https://bugzilla.gnome.org/show_bug.cgi?id=742548
Rafael Ferreira [Fri, 9 Jan 2015 01:49:13 +0000 (01:49 +0000)]
Updated Brazilian Portuguese translation
Chun-wei Fan [Wed, 7 Jan 2015 01:59:47 +0000 (09:59 +0800)]
Win32: Update Pre-configured Config Headers
Update config.h.win32.in and glibconfig.h.win32.in so that they will be
in-line with the ones that are produced with configure.ac, for use on
Windows builds.
Thanks to Philip Withnall for pointing out the changes needed to update
glibconfig.h.win32.in in bug 727829.
Timm Bäder [Mon, 5 Jan 2015 10:51:46 +0000 (11:51 +0100)]
gnetworkmonitornm: Prevent crash
g_dbus_proxy_get_cached_property_names can return NULL if there are no
cached properties, so don't try to access them in that case.
TingPing [Sat, 16 Aug 2014 08:47:46 +0000 (04:47 -0400)]
Fix GContentType usage
https://bugzilla.gnome.org/show_bug.cgi?id=734946
Matthias Clasen [Wed, 24 Dec 2014 00:49:27 +0000 (19:49 -0500)]
Fix a typo
Erick Pérez Castellanos [Sun, 21 Dec 2014 16:08:39 +0000 (11:08 -0500)]
Fix document typo
This one was making syntax highlighting fail.
Matthias Clasen [Sun, 21 Dec 2014 02:32:53 +0000 (21:32 -0500)]
Silence the build some more
Thomas Haller [Wed, 17 Dec 2014 09:00:35 +0000 (10:00 +0100)]
gobject: don't use G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC() macro
Using G_STRLOC ends up embedding unique strings of the form
__FILE__:__LINE__ in the compiled binary. We can avoid these
by passing __FILE__ and __LINE__ separately when constructing
the warning text.
This probably reduces the size of the binary as __FILE__ is
likely already contained as string otherwise.
Note that for GCC 2.x this changes behavior because G_STRLOC
also contained __PRETTY_FUNCTION__.
https://bugzilla.gnome.org/show_bug.cgi?id=741654
Philip Withnall [Tue, 16 Dec 2014 11:29:03 +0000 (11:29 +0000)]
gobject: Add g_set_object() convenience function to set GObject pointers
Along the same lines as g_clear_object(), g_set_object() is a
convenience function to update a GObject pointer, handling reference
counting transparently and correctly.
Specifically, it handles the case where a pointer is set to its current
value. If handled naïvely, that could result in the object instance
being finalised. In the following code, that happens when
(my_obj == new_value) and the object has a single reference:
g_clear_object (&my_obj);
my_obj = g_object_ref (new_value);
It also simplifies boilerplate code such as set_property()
implementations, which are otherwise long and boring.
Test cases included.
https://bugzilla.gnome.org/show_bug.cgi?id=741589
Philip Chimento [Tue, 2 Dec 2014 17:34:30 +0000 (12:34 -0500)]
gfile: Explain nonobvious use of my_error
In g_file_make_directory_with_parents(), the my_error variable is used
for several different purposes throughout the whole function, not all of
which are obvious. This explains the situation with some comments.
https://bugzilla.gnome.org/show_bug.cgi?id=719455
Philip Chimento [Wed, 4 Dec 2013 02:51:51 +0000 (18:51 -0800)]
gfile: Use g_error_matches
Make proper use of g_error_matches() instead of comparing only error codes.
https://bugzilla.gnome.org/show_bug.cgi?id=719455
Philip Chimento [Thu, 28 Nov 2013 01:43:18 +0000 (17:43 -0800)]
gfile: make_directory_with_parents race condition
A race condition could cause g_file_make_directory_with_parents() to
fail with G_IO_ERROR_EXISTS despite the requested directory not
existing.
https://bugzilla.gnome.org/show_bug.cgi?id=719455
Daniel Mustieles [Wed, 17 Dec 2014 11:31:29 +0000 (12:31 +0100)]
Updated Spanish translation
Philip Withnall [Tue, 16 Dec 2014 11:23:12 +0000 (11:23 +0000)]
docs: Remove a mention of g_clear_object() being atomic
It is no longer atomic.
https://bugzilla.gnome.org/show_bug.cgi?id=741589
Matthias Clasen [Mon, 15 Dec 2014 16:56:12 +0000 (11:56 -0500)]
2.43.2
Matthias Clasen [Mon, 15 Dec 2014 18:17:02 +0000 (13:17 -0500)]
gobject: Add missing symbols to the docs
Matthias Clasen [Mon, 15 Dec 2014 18:14:01 +0000 (13:14 -0500)]
gio: Add missing symbols to docs
Matthias Clasen [Mon, 15 Dec 2014 16:52:42 +0000 (11:52 -0500)]
Updates
Dan Winship [Sun, 14 Dec 2014 13:04:27 +0000 (08:04 -0500)]
gio/tests/socket: fix one of the new tests
One of the recently-added tests was using g_test_cmpstr() on a buffer
containing a string that wasn't necessarily 0-terminated.
Xavier Claessens [Sat, 29 Nov 2014 13:39:24 +0000 (08:39 -0500)]
Doc: glib: Fix all undocumented/unused/undeclared symbols
There is one issue left in gscanner.h due to a bug #741305 in gtk-doc.
https://bugzilla.gnome.org/show_bug.cgi?id=740814
Shankar Prasad [Fri, 12 Dec 2014 11:55:07 +0000 (11:55 +0000)]
Updated Kannada translation
Yosef Or Boczko [Fri, 12 Dec 2014 10:36:27 +0000 (12:36 +0200)]
Updated Hebrew translation
Ryan Lortie [Thu, 11 Dec 2014 23:49:16 +0000 (18:49 -0500)]
ghash: minor docs tweak
We should not advise people to cast the result of
g_hash_table_get_keys_as_array() to a type that looks suitable for use
with g_strfreev(). Advise to use (const gchar **) instead.
Tim-Philipp Müller [Fri, 13 Jun 2014 19:19:09 +0000 (20:19 +0100)]
gio/tests/socket: add unit test for g_socket_send_messages()
https://bugzilla.gnome.org/show_bug.cgi?id=719646
Tim-Philipp Müller [Thu, 12 Jun 2014 17:16:45 +0000 (18:16 +0100)]
gsocket: add g_socket_send_messages()
Allows sending of multiple messages (packets, datagrams)
in one go using sendmmsg(), thus drastically reducing the
number of syscalls when sending out a lot of data, or when
sending out the same data to multiple recipients.
https://bugzilla.gnome.org/show_bug.cgi?id=719646
Tim-Philipp Müller [Fri, 13 Jun 2014 18:45:25 +0000 (19:45 +0100)]
gio/tests/socket: add datagram version of test_ip_sync
Tim-Philipp Müller [Fri, 13 Jun 2014 09:48:52 +0000 (10:48 +0100)]
gio/tests/socket: add test for g_socket_send_message()
Sweta Kothari [Thu, 11 Dec 2014 04:00:01 +0000 (09:30 +0530)]
Updated gujarati translations
Muhammet Kara [Wed, 10 Dec 2014 22:04:49 +0000 (22:04 +0000)]
Updated Turkish translation
Dan Winship [Wed, 10 Dec 2014 17:39:21 +0000 (18:39 +0100)]
gio: fix the Since/AVAILABLE version on network connectivity stuff
Colin Walters [Sun, 7 Dec 2014 21:00:55 +0000 (16:00 -0500)]
keyfile: Add "in group" to GError message consistently
This originated with https://github.com/GNOME/ostree/pull/23
It's nicer for the user if we also mention which group the expected
key would be in.
And in fact, every other error *except* _get_value() already had it.
https://bugzilla.gnome.org/show_bug.cgi?id=741226
Balázs Úr [Sun, 7 Dec 2014 09:26:40 +0000 (09:26 +0000)]
Updated Hungarian translation
Ross Lagerwall [Sun, 30 Nov 2014 22:17:51 +0000 (22:17 +0000)]
gio/tests: Prevent hangs and aborts in socket-listener
Fix two problems:
1) If g_socket_service_stop is called before the accept call is requeued,
then the reference count won't decrease and this code will hang forever:
while (G_OBJECT (service)->ref_count == ref_count)
g_main_context_iteration (NULL, TRUE);
2) Sometimes the testcase fails (maybe 1 in 200 times for me):
GLib-GIO:ERROR:socket-listener.c:73:connection_cb: assertion failed
(G_OBJECT (service)->ref_count == 2): (3 == 2)
Aborted (core dumped)
The problem is that depending on ordering, cancellation of the async
listener can require further main context iterations before it releases
the reference on the socket service. Furthermore, in some cases, it
requires at least one iteration.
https://bugzilla.gnome.org/show_bug.cgi?id=712570
Piotr Drąg [Fri, 5 Dec 2014 22:04:04 +0000 (23:04 +0100)]
Updated POTFILES.in
Bastien Nocera [Wed, 3 Dec 2014 17:36:25 +0000 (18:36 +0100)]
gio: Add GNetworkMonitor impl based on NetworkManager
Which implements the new GNetworkConnectivity property.
https://bugzilla.gnome.org/show_bug.cgi?id=664562
Dan Winship [Wed, 16 Apr 2014 14:39:12 +0000 (10:39 -0400)]
gio: add network connectivity state to GNetworkMonitor
Add a property to GNetworkMonitor indicating the level of network
connectivity: none/local, limited, stuck behind a portal, or full.
The default implementation just returns none or full depending on the
value of is-available.
https://bugzilla.gnome.org/show_bug.cgi?id=664562
Bastien Nocera [Thu, 4 Dec 2014 11:27:23 +0000 (12:27 +0100)]
gio: Correct the "available in" for GNetworkMonitor
They were marked as available in all versions when the main interface
was actually added in glib 2.32.
https://bugzilla.gnome.org/show_bug.cgi?id=664562
Ignacio Casal Quinteiro [Tue, 2 Dec 2014 13:25:56 +0000 (14:25 +0100)]
gio: provide G_IO_ERROR_NOT_CONNECTED translation for ENOTCONN
https://bugzilla.gnome.org/show_bug.cgi?id=741016
Ignacio Casal Quinteiro [Tue, 2 Dec 2014 13:29:11 +0000 (14:29 +0100)]
gio: fix build
next time I should definitely try to compile after a rebase conflict...
Ignacio Casal Quinteiro [Tue, 2 Dec 2014 12:50:51 +0000 (13:50 +0100)]
gio: add G_IO_ERROR_NOT_CONNECTED
It adds a new error G_IO_ERROR_NOT_CONNECTED
and makes the win32 error ERROR_PIPE_LISTENING
to be translated to it.
https://bugzilla.gnome.org/show_bug.cgi?id=741016
Rico Tzschichholz [Mon, 1 Dec 2014 13:16:54 +0000 (14:16 +0100)]
docs: Add index for 2.44 api
Trần Ngọc Quân [Mon, 1 Dec 2014 02:07:13 +0000 (09:07 +0700)]
Updated Vietnamese translation
Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com>
Dan Winship [Fri, 19 Aug 2011 14:23:12 +0000 (10:23 -0400)]
gsocket: add G_IO_ERROR_CONNECTION_CLOSED
Add G_IO_ERROR_CONNECTION_CLOSED as an alias for
G_IO_ERROR_BROKEN_PIPE, and also return it on ECONNRESET.
It doesn't really make sense to try to distinguish EPIPE and
ECONNRESET at the GLib level, since the exact choice of which error
gets returned in what conditions depends on the OS. Given that, we
ought to map the two errors to the same value, and since we're already
mapping EPIPE to G_IO_ERROR_BROKEN_PIPE, we need to map ECONNRESET to
that too. But the existing name doesn't really make sense for sockets,
so we add a new name.
https://bugzilla.gnome.org/show_bug.cgi?id=728928
Dan Winship [Sun, 23 Nov 2014 17:53:03 +0000 (12:53 -0500)]
gnetworkaddress: Add g_network_address_new_loopback() constructor
This is a convenience method for creating a GNetworkAddress which is
guaranteed to return IPv4 and IPv6 loopback addresses. The program
cannot guarantee that 'localhost' will resolve to both types of
address, so programs which wish to connect to a local service over
either IPv4 or IPv6 must currently manually create an IPv4 and another
IPv6 socket, and detect which of the two are working. This new API
allows the existing GSocketConnectable machinery to be used to
automate that.
Based on a patch from Philip Withnall.
https://bugzilla.gnome.org/show_bug.cgi?id=732317
Ryan Lortie [Fri, 28 Nov 2014 22:55:28 +0000 (17:55 -0500)]
GVariant tests: test with larger strings
Allocate some larger strings in the testcase to make sure we handle them
correctly as well.
Ryan Lortie [Fri, 28 Nov 2014 17:43:03 +0000 (12:43 -0500)]
gmain: fix poll record comparison
We intend to keep the list of poll records sorted by (integer) file
descriptor, but due to a typo we are actually keeping it sorted by
pointer address of the GPollFD.
Fix that.
https://bugzilla.gnome.org/show_bug.cgi?id=11059
Ryan Lortie [Fri, 28 Nov 2014 21:20:40 +0000 (16:20 -0500)]
gsignal: add a clarification to the docs
As evidenced by a mistake that I made recently, this documentation could
use a little bit of clarification.
Lars Uebernickel [Fri, 28 Nov 2014 12:06:04 +0000 (13:06 +0100)]
GSettings: fix check for delaying backend subscription
g_settings_has_signal_handlers() checks whether any of the signals has
pending handlers. However, g_signal_has_handler_pending() matches on
exact detail, even when passing 0. Subscribing to one of GSettings'
signals with a detail will fail this check and never connect to the
backend.
Fix this by calling has_handler_pending() with the key as detail as
well.
https://bugzilla.gnome.org/show_bug.cgi?id=740848
Matthias Clasen [Thu, 27 Nov 2014 14:12:42 +0000 (09:12 -0500)]
Use the new g_strv_contains
No need to keep our own copy of this in the testsuite.
Xavier Claessens [Mon, 15 Apr 2013 12:54:31 +0000 (14:54 +0200)]
gstrfuncs: Add g_strv_contains()
Includes unit tests.
https://bugzilla.gnome.org/show_bug.cgi?id=685880
Matthias Clasen [Mon, 24 Nov 2014 18:07:22 +0000 (13:07 -0500)]
2.43.1
Dan Winship [Sun, 23 Nov 2014 17:33:01 +0000 (12:33 -0500)]
gio/tests: add a socket-listener test
Add a GSocketListener test program. Currently the only test is a
regression test for bug 712570 (based on a standalone bug reproducer
provided by Ross Lagerwall).
Ross Lagerwall [Tue, 28 Oct 2014 21:16:50 +0000 (21:16 +0000)]
gio: Prevent hang when finalizing GThreadedSocketService
If all users of a GThreadedSocketService release their references to the
service while a connection thread is running, the thread function will
release the last reference to the service which causes the finalize to
deadlock waiting for all threads to finish (because it's called from the
thread function).
To fix this, don't wait for all threads to finish in the service's
finalize method. Since the threads hold a reference to the service,
finalize should only be called when all threads are finished running (or
have unrefed the service and are about to finish).
https://bugzilla.gnome.org/show_bug.cgi?id=712570
Jasper St. Pierre [Tue, 28 Oct 2014 20:45:34 +0000 (13:45 -0700)]
gparam: Make the documentation clearer for CONSTRUCT_ONLY properties
It's not that the properly will only be set on construction, it's that
it *can* only be set upon construction.
Michael Henning [Wed, 5 Nov 2014 06:20:25 +0000 (01:20 -0500)]
gio: Implement g_win32_app_info_launch_uris for windows.