unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: taylanbayirli@gmail.com (Taylan Ulrich Bayırlı/Kammer)
To: Catonano <catonano@gmail.com>
Cc: guile-user@gnu.org
Subject: Re: a foreign struct: a shameless request
Date: Fri, 16 Jun 2017 21:02:08 +0200	[thread overview]
Message-ID: <87wp8bsqmn.fsf@gmail.com> (raw)
In-Reply-To: <CAJ98PDx2r7=65jci8xLr6z8-zEYE-X+38xrGMA=DrJA90ZqQRA@mail.gmail.com> (catonano@gmail.com's message of "Fri, 16 Jun 2017 18:04:55 +0200")

Catonano <catonano@gmail.com> writes:

> I'd love to see a template of usage of a complex structure from scheme
> That is, I'm asking for someone to write that template for me :-/
>
> This is the foreign struct I have to deal with
>
> https://www.gaia-gis.it/gaia-sins/freexl-1.0.1-doxy-doc/html/structFreeXL__CellValue__str.html

With bytestructures[0], this would be:

    (define freexl-cell-value
      (bs:struct
        `((type ,uint8)
          (value ,(bs:union
                    `((int_value ,int)
                      (double_value ,double)
                      (text_value ,cstring-pointer)))))))

If you decide to use bytestructures, feel free to e-mail me privately or
use the GitHub issues system for questions.  I don't actively monitor
the Guile ML these days so I may miss your questions and feedback here.

[0] https://github.com/TaylanUB/scheme-bytestructures/

HTH,
Taylan

> Particulary, I don't know how to treat the "union" thing
>
> A different union field gets populated on the basis of the type of the
> content of the spreadsheet cell
>
> If the cell contains an integer number, then cell.int_value field gets
> populated
>
> If the cell contains a double float number, then the cell.double_value
> field gets populated
>
> And so on
>
> This is an excerpt from the example usage:
>
> switch (cell.type
> <https://www.gaia-gis.it/gaia-sins/freexl-1.0.1-doxy-doc/html/structFreeXL__CellValue__str.html#af2b1f157e4dc4508b1c4e303429c01d5>
> )
> {
>    case FREEXL_CELL_INT
> <https://www.gaia-gis.it/gaia-sins/freexl-1.0.1-doxy-doc/html/freexl_8h.html#a1a2260897b305108f008c924a7e56778>
> :
>    printf (", %d", cell.value
> <https://www.gaia-gis.it/gaia-sins/freexl-1.0.1-doxy-doc/html/structFreeXL__CellValue__str.html#acaf7ae03285c299b05f0e345eff3c6a1>
> .int_value
> <https://www.gaia-gis.it/gaia-sins/freexl-1.0.1-doxy-doc/html/structFreeXL__CellValue__str.html#a7dcd352478ee217f4a24e7fcff6170bb>
> );
>    break;
> ...
>
> How do I use "make-c-struct" and "parse-c-struct" with a structure like
> this ?
>
> Thanks in advance



  reply	other threads:[~2017-06-16 19:02 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-16 16:04 a foreign struct: a shameless request Catonano
2017-06-16 19:02 ` Taylan Ulrich Bayırlı/Kammer [this message]
2017-06-18  6:22   ` Catonano
2017-06-18 12:28     ` Amirouche
2017-06-18 14:41       ` Catonano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87wp8bsqmn.fsf@gmail.com \
    --to=taylanbayirli@gmail.com \
    --cc=catonano@gmail.com \
    --cc=guile-user@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).