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 688851 - incorrect generated #define code ‘GSF_TYPE_INPUT_GZIP’
incorrect generated #define code ‘GSF_TYPE_INPUT_GZIP’
Status: RESOLVED FIXED
Product: vala
Classification: Core
Component: Code Generator
0.16.x
Other Linux
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2012-11-22 05:05 UTC by Hodong Kim
Modified: 2012-11-22 09:16 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
ms-ole file (64.00 KB, application/x-hwp)
2012-11-22 05:05 UTC, Hodong Kim
Details

Description Hodong Kim 2012-11-22 05:05:15 UTC
Created attachment 229617 [details]
ms-ole file

Hello.

I am very thankful for Vala Team.

I use Gsf.InputGZip to read compressed data with no header and no trailer.
So, I set "raw" property to "true".
Then, when compiling, "error: ‘GSF_TYPE_INPUT_GZIP’ undeclared."

    in c code:
    _tmp14_ = g_object_new (GSF_TYPE_INPUT_GZIP, "raw", TRUE, "source", _tmp13_, NULL);

So, I generated c source. and after prepending
#define GSF_TYPE_INPUT_GZIP GSF_INPUT_GZIP_TYPE in the generated c file.
Compile successful.

Please, see the below.

---------------

$ valac --version
Vala 0.16.1

$ valac gsf-decompress.vala --pkg libgsf-1
gsf-decompress.vala.c: In function ‘_vala_main’:
gsf-decompress.vala.c:101:26: error: ‘GSF_TYPE_INPUT_GZIP’ undeclared (first use in this function)
gsf-decompress.vala.c:101:26: note: each undeclared identifier is reported only once for each function it appears in
error: cc exited with status 256
Compilation failed: 1 error(s), 0 warning(s)

$ valac -C gsf-decompress.vala --pkg libgsf-1

$ sed -i '1s/^/#define GSF_TYPE_INPUT_GZIP GSF_INPUT_GZIP_TYPE/g' gsf-decompress.c

$ gcc -o gsf-decompress gsf-decompress.c `pkg-config --cflags --libs libgsf-1`

$ ./gsf-decompress kreg1.hwp


------- gsf-decompress.vala ---------
void main (string[] args)
{
    Gsf.InfileMSOle olefile;

    string filename = args[1];

    try   {
        var file = new Gsf.InputStdio (filename);
        olefile  = new Gsf.InfileMSOle (file);
    }
    catch {
        stderr.printf ("%s is not a OLE file\n", filename);
        return;
    }

    var input = olefile.child_by_name("DocInfo");

    Gsf.InputGZip stream;
    stream = (Gsf.InputGZip) GLib.Object.new (typeof(Gsf.InputGZip),
                                              raw:    true,
                                              source: input);
}
--------------------------------------
Comment 1 Luca Bruno 2012-11-22 09:16:13 UTC
commit 36e20bc5410b8f991e6d6e9678de42d1eba65527
Author: Luca Bruno <lucabru@src.gnome.org>
Date:   Thu Nov 22 10:04:01 2012 +0100

    libgsf-1: Fix type_id to match the unusual libgsf convention
    
    Fixes bug 688851.

This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.