From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH 1/3] perl: Add database_countries() function.
Date: Fri, 21 Aug 2020 10:58:58 +0100 [thread overview]
Message-ID: <ABE31E64-72C7-45E8-BB62-ABAABF5F13ED@ipfire.org> (raw)
In-Reply-To: <20200820172856.6983-1-stefan.schantl@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 2188 bytes --]
Thank you. I merged these. The tests run through.
I won’t tag a release just yet and will wait for the remaining work to be completed.
Best,
-Michael
> On 20 Aug 2020, at 18:28, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
>
> This function is used to the stored countries of a database, which
> easily can be assigned to an array.
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> src/perl/Location.xs | 42 ++++++++++++++++++++++++++++++++++++++++--
> 1 file changed, 40 insertions(+), 2 deletions(-)
>
> diff --git a/src/perl/Location.xs b/src/perl/Location.xs
> index 5693744..3c347db 100644
> --- a/src/perl/Location.xs
> +++ b/src/perl/Location.xs
> @@ -6,11 +6,10 @@
> #include <stdio.h>
> #include <string.h>
>
> -
> #include <loc/libloc.h>
> #include <loc/database.h>
> #include <loc/network.h>
> -
> +#include <loc/country.h>
>
> MODULE = Location PACKAGE = Location
>
> @@ -119,6 +118,45 @@ get_license(db)
> OUTPUT:
> RETVAL
>
> +void
> +database_countries(db)
> + struct loc_database* db;
> +
> + PPCODE:
> + // Create Database enumerator
> + struct loc_database_enumerator* enumerator;
> + int err = loc_database_enumerator_new(&enumerator, db, LOC_DB_ENUMERATE_COUNTRIES);
> +
> + if (err) {
> + croak("Could not create a database enumerator\n");
> + }
> +
> + // Init and enumerate first country.
> + struct loc_country* country;
> + err = loc_database_enumerator_next_country(enumerator, &country);
> + if (err) {
> + croak("Could not enumerate next country\n");
> + }
> +
> + while (country) {
> + // Extract the country code.
> + const char* ccode = loc_country_get_code(country);
> +
> + // Push country code.
> + XPUSHs(sv_2mortal(newSVpv(ccode, 2)));
> +
> + // Unref country pointer.
> + loc_country_unref(country);
> +
> + // Enumerate next item.
> + err = loc_database_enumerator_next_country(enumerator, &country);
> + if (err) {
> + croak("Could not enumerate next country\n");
> + }
> + }
> +
> + loc_database_enumerator_unref(enumerator);
> +
> #
> # Lookup functions
> #
> --
> 2.20.1
>
prev parent reply other threads:[~2020-08-21 9:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-20 17:28 Stefan Schantl
2020-08-20 17:28 ` [PATCH 2/3] Add an example country to the python create-database example script Stefan Schantl
2020-08-20 17:28 ` [PATCH 3/3] perl: Add test for the database_countries() function Stefan Schantl
2020-08-21 9:58 ` Michael Tremer [this message]
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=ABE31E64-72C7-45E8-BB62-ABAABF5F13ED@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.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