From: Joshua Brindle <jbrindle@tresys.com>
To: Ivan Gyurdiev <ivg2@cornell.edu>
Cc: SELinux List <SELinux@tycho.nsa.gov>,
Stephen Smalley <sds@tycho.nsa.gov>
Subject: Re: [SEMANAGE] Swig update: typemaps
Date: Mon, 02 Jan 2006 14:06:30 -0500 [thread overview]
Message-ID: <43B979B6.8090201@tresys.com> (raw)
In-Reply-To: <43AF074E.6040301@cornell.edu>
Ivan Gyurdiev wrote:
> Merry Christmas everyone!
>
> This patch updates the typemaps to add booleans, interfaces, context,
> and char** (for context_to_string). I really don't know what I'm doing
> here with those typemaps, so I would appreciate if someone (Joshua?) can
> look over. I was just following the pattern, with minor changes, and it
> seems to work for a port list function that I wrote for the semanage tool.
>
>
>
> ------------------------------------------------------------------------
>
> diff -Naurp --exclude-from excludes old/libsemanage/src/semanageswig.i new/libsemanage/src/semanageswig.i
> --- old/libsemanage/src/semanageswig.i 2005-12-25 15:50:26.000000000 -0500
> +++ new/libsemanage/src/semanageswig.i 2005-12-25 15:48:13.000000000 -0500
> @@ -51,7 +51,13 @@
> }
> semanage_port_t *semanage_port_by_idx(semanage_port_t **list, int n) {
> return list[n];
> - }
> + }
> + semanage_iface_t *semanage_iface_by_idx(semanage_iface_t **list, int n) {
> + return list[n];
> + }
> + semanage_bool_t *semanage_bool_by_idx(semanage_bool_t **list, int n) {
> + return list[n];
> + }
> char *char_by_idx(char **list, int n) {
> return list[n];
> }
Man.. adding that first semanage_*_by_idx was just a quick hack to get
something working, we should probably move those into the proper
libsemanage API instead of just adding them to the wrapper (they are
clearly useful)
> @@ -67,6 +73,14 @@
> %apply int *OUTPUT { int * };
> %apply int *OUTPUT { size_t * };
>
> +%typemap(in, numinputs=0) char **(char *temp) {
> + $1 = &temp;
> +}
> +
> +%typemap(argout) char** {
> + $result = t_output_helper($result, SWIG_FromCharPtr(*$1));
> +}
> +
Have to be careful with this one, you don't want it messing with other
char**. Did you run all the tests in pywrap-test after rebuilding this
to make sure it didn't interrupt anything else?
The rest look fine.
--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.
next prev parent reply other threads:[~2006-01-02 19:06 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-12-25 20:55 [SEMANAGE] Swig update: typemaps Ivan Gyurdiev
2006-01-02 19:06 ` Joshua Brindle [this message]
2006-01-02 19:58 ` Joshua Brindle
2006-01-02 18:30 ` Ivan Gyurdiev
2006-01-02 20:33 ` Joshua Brindle
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=43B979B6.8090201@tresys.com \
--to=jbrindle@tresys.com \
--cc=SELinux@tycho.nsa.gov \
--cc=ivg2@cornell.edu \
--cc=sds@tycho.nsa.gov \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.