After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 760027 - [API] value, tag lists, caps: add pretty serialization
[API] value, tag lists, caps: add pretty serialization
Status: RESOLVED OBSOLETE
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
git master
Other All
: Normal enhancement
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2015-12-31 14:38 UTC by Tim-Philipp Müller
Modified: 2018-11-03 12:31 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
value: add serialize_full() API (9.58 KB, patch)
2015-12-31 14:43 UTC, Tim-Philipp Müller
none Details | Review
value: use GString when serializing flag set (1.97 KB, patch)
2015-12-31 14:44 UTC, Tim-Philipp Müller
none Details | Review
value: implement serialize_full function for most common types (24.18 KB, patch)
2015-12-31 14:44 UTC, Tim-Philipp Müller
none Details | Review
caps, structure, taglist: add _to_pretty_string() variants (14.71 KB, patch)
2015-12-31 14:45 UTC, Tim-Philipp Müller
none Details | Review
value: add support for pretty serialization of caps and taglists (2.74 KB, patch)
2015-12-31 14:45 UTC, Tim-Philipp Müller
none Details | Review
gstobject: use pretty serialisation in default deep-notify handler (1013 bytes, patch)
2015-12-31 14:46 UTC, Tim-Philipp Müller
none Details | Review
tools: gst-launch: use pretty serialization when printing tags (1.02 KB, patch)
2015-12-31 14:47 UTC, Tim-Philipp Müller
none Details | Review
info: use pretty printing functions where applicable (3.55 KB, patch)
2015-12-31 14:47 UTC, Tim-Philipp Müller
none Details | Review
debugutils: use pretty caps serialization in dot files (1.40 KB, patch)
2015-12-31 14:48 UTC, Tim-Philipp Müller
none Details | Review
value: improve buffer serialisation (2.66 KB, patch)
2015-12-31 14:49 UTC, Tim-Philipp Müller
none Details | Review

Description Tim-Philipp Müller 2015-12-31 14:38:10 UTC
Serialized caps or tags can at times be very very long if they contain large buffers, e.g. if streamheaders include coverart.

It would be nice if we had API for 'pretty' serialization of values, tags, caps, structures, etc, so we can use shortened versions in more places including logs and dot files.
Comment 1 Tim-Philipp Müller 2015-12-31 14:43:21 UTC
Created attachment 318068 [details] [review]
value: add serialize_full() API

    Adds two features on top of the existing gst_value_serialize():
    
     - serialization into a provided GString (useful for
       GstCaps, GstStructure and GstTagList serialization)
    
     - allows for 'pretty' serialization for display purposes,
       in which case the string may not always be deserializable
       again. This is useful when serializing caps or taglists
       containing huge buffers, which we don't always want to
       print out or log in full.
    
    API: gst_value_serialize_full
    API: gst_value_serialize_into
Comment 2 Tim-Philipp Müller 2015-12-31 14:44:11 UTC
Created attachment 318069 [details] [review]
value: use GString when serializing flag set

This will come in handy later.
Comment 3 Tim-Philipp Müller 2015-12-31 14:44:39 UTC
Created attachment 318070 [details] [review]
value: implement serialize_full function for most common types
Comment 4 Tim-Philipp Müller 2015-12-31 14:45:15 UTC
Created attachment 318071 [details] [review]
caps, structure, taglist: add _to_pretty_string() variants

    Add _to_pretty_string() variants of caps/structure/taglist
    to_string() functions. These will return a string for display
    that might not be abbreviated or not escaped and thus can't
    be deserialized again. Helps serializing caps or taglists
    that contain large buffers, the exact content of which is
    often not that important.
    
    Also add gst_structure_serialize_into() which is useful when
    serializing caps.
    
    API: gst_structure_serialize_into
    API: gst_structure_to_pretty_string
    API: gst_tag_list_to_pretty_string
    API: gst_caps_to_pretty_string
Comment 5 Tim-Philipp Müller 2015-12-31 14:45:58 UTC
Created attachment 318072 [details] [review]
value: add support for pretty serialization of caps and taglists
Comment 6 Tim-Philipp Müller 2015-12-31 14:46:41 UTC
Created attachment 318073 [details] [review]
gstobject: use pretty serialisation in default deep-notify handler

This is used to print caps and properties with gst-launch-1.0 -v
Comment 7 Tim-Philipp Müller 2015-12-31 14:47:30 UTC
Created attachment 318074 [details] [review]
tools: gst-launch: use pretty serialization when printing tags
Comment 8 Tim-Philipp Müller 2015-12-31 14:47:58 UTC
Created attachment 318075 [details] [review]
info: use pretty printing functions where applicable
Comment 9 Tim-Philipp Müller 2015-12-31 14:48:23 UTC
Created attachment 318076 [details] [review]
debugutils: use pretty caps serialization in dot files
Comment 10 Tim-Philipp Müller 2015-12-31 14:49:04 UTC
Created attachment 318077 [details] [review]
value: improve buffer serialisation

Avoid merging of memories in case the buffer is made up of multiple memories.
Comment 11 Sebastian Dröge (slomo) 2015-12-31 15:26:59 UTC
Instead of serialization (is it deserializeable without information loss?) I would probably call that pretty printing or something similar. Otherwise a very good idea :)
Comment 12 Tim-Philipp Müller 2015-12-31 15:33:57 UTC
Well, I initially thought I'd make it a GstValueGetDisplayString function or somesuch, but I thought a SerializeFull() that allows extensability with other flags in future is more useful.
Comment 13 Tim-Philipp Müller 2015-12-31 15:35:33 UTC
> Well, I initially thought I'd make it a GstValueGetDisplayString function or
> somesuch, but I thought a SerializeFull() that allows extensability with
> other flags in future is more useful.

Oh, and there is also the added benefit that it can be used by the existing code when it does not do pretty printing, so GstCaps serialisation can be done directly into one GString also for the non-pretty case.
Comment 14 GStreamer system administrator 2018-11-03 12:31:50 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/gstreamer/gstreamer/issues/148.