public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/4] perl: Add get_country_name() function.
@ 2020-09-10 15:57 Stefan Schantl
  2020-09-10 15:57 ` [PATCH 2/4] python example script: Add country name and continent code Stefan Schantl
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Stefan Schantl @ 2020-09-10 15:57 UTC (permalink / raw)
  To: location

[-- 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


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-09-10 15:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-10 15:57 [PATCH 1/4] perl: Add get_country_name() function Stefan Schantl
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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox