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 688556 - compile error: child_by_aname in libgsf-1.vapi
compile error: child_by_aname in libgsf-1.vapi
Status: RESOLVED FIXED
Product: vala
Classification: Core
Component: general
0.18.x
Other Linux
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2012-11-17 23:04 UTC by Hodong Kim
Modified: 2012-11-19 12:30 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
ms-ole file (90.50 KB, application/x-hwp)
2012-11-17 23:04 UTC, Hodong Kim
Details

Description Hodong Kim 2012-11-17 23:04:44 UTC
Created attachment 229256 [details]
ms-ole file

Hello.

I tried to read "/BodyText/Section0" in msole file.
but, an error occurred.

Please refer to
https://mail.gnome.org/archives/vala-list/2012-November/msg00059.html
https://mail.gnome.org/archives/vala-list/2012-November/msg00060.html

According to the advice of Tarnyko,
I have modified /usr/share/vala-0.18/vapi/libgsf-1.vapi
public unowned Gsf.Input child_by_aname (string[] names);
to
public unowned Gsf.Input child_by_aname ([CCode (array_length = false)] string[] names); 

It works fine.

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

int main (string[] args) {

    // declare objects
    Gsf.InputStdio file;
    Gsf.InfileMSOle olefile;

    string filename = args[1];
    // load the OLE file
    try {
        file = new Gsf.InputStdio (filename);
    }
    catch {
        stderr.printf ("File %s not found\n", filename);
        return 1;
    }
    try {
        olefile = new Gsf.InfileMSOle (file);
    }
    catch
    {
        stderr.printf ("%s is not a OLE file\n", filename);
        return 1;
    }

    string[] names = {"BodyText", "Section0"};
    // error occurred
    Gsf.Input body_text = olefile.child_by_aname(names);
    body_text.dump(false);
    return 0;
}

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

$ valac --pkg libgsf-1 gsf-msole.vala
gsf-msole.vala:27.15-27.55: warning: local variable `body_text'
declared but never used
    Gsf.Input body_text = olefile.child_by_aname(names);
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/home/cogniti/Documents/gsf-msole.vala.c: In function ‘_vala_main’:
/home/cogniti/Documents/gsf-msole.vala.c:144:2: warning: passing
argument 2 of ‘gsf_infile_child_by_aname’ from incompatible pointer
type [enabled by default]
In file included from /usr/include/libgsf-1/gsf/gsf-infile-impl.h:27:0,
                 from /home/cogniti/Documents/gsf-msole.vala.c:13:
/usr/include/libgsf-1/gsf/gsf-infile.h:42:13: note: expected ‘const
char **’ but argument is of type ‘gchar **’
/home/cogniti/Documents/gsf-msole.vala.c:144:2: error: too many
arguments to function ‘gsf_infile_child_by_aname’
In file included from /usr/include/libgsf-1/gsf/gsf-infile-impl.h:27:0,
                 from /home/cogniti/Documents/gsf-msole.vala.c:13:
/usr/include/libgsf-1/gsf/gsf-infile.h:42:13: note: declared here
error: cc exited with status 256
Compilation failed: 1 error(s), 1 warning(s)
Comment 1 tarnyko 2012-11-18 10:38:42 UTC
I confirm the bug.

Details : generates excedental argument "names_length" in C source, prevents compile.
Comment 2 Luca Bruno 2012-11-19 12:30:57 UTC
commit a73e27101f94f40eca9366ca5be6e83b725a088c
Author: Luca Bruno <lucabru@src.gnome.org>
Date:   Mon Nov 19 13:28:33 2012 +0100

    libgsf-1: No array length for Infile.child_by_aname.names
    
    Fixes bug 688556.

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.