public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
From: Stefan Schantl <stefan.schantl@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH 1/4] perl: Add get_country_name() function.
Date: Thu, 10 Sep 2020 17:57:44 +0200	[thread overview]
Message-ID: <20200910155747.12553-1-stefan.schantl@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 990 bytes --]

This function can be used to get the stored name for a given country
code.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 src/perl/Location.xs | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/src/perl/Location.xs b/src/perl/Location.xs
index 1cb2e21..dcf3f0d 100644
--- a/src/perl/Location.xs
+++ b/src/perl/Location.xs
@@ -243,6 +243,28 @@ lookup_asn(db, address)
 #
 # Get functions
 #
+SV*
+get_country_name(db, ccode)
+	struct loc_database* db;
+	char* ccode;
+
+	CODE:
+		RETVAL = &PL_sv_undef;
+
+		// Lookup country code
+		struct loc_country *country;
+		int err = loc_database_get_country(db, &country, ccode);
+		if(!err) {
+			// Extract the name for the given country code.
+			const char* country_name = loc_country_get_name(country);
+			RETVAL = newSVpv(country_name, strlen(country_name));
+
+			loc_country_unref(country);
+		}
+
+	OUTPUT:
+		RETVAL
+
 SV*
 get_continent_code(db, ccode)
 	struct loc_database* db;
-- 
2.20.1


             reply	other threads:[~2020-09-10 15:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-10 15:57 Stefan Schantl [this message]
2020-09-10 15:57 ` [PATCH 2/4] python example script: Add country name and continent code Stefan Schantl
2020-09-10 15:57 ` [PATCH 3/4] perl: Add test for get_country_name() function Stefan Schantl
2020-09-10 15:57 ` [PATCH 4/4] perl: Add test for get_continent_code() function Stefan Schantl

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=20200910155747.12553-1-stefan.schantl@ipfire.org \
    --to=stefan.schantl@ipfire.org \
    --cc=location@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