public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/3] perl: Add database_countries() function.
@ 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
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Stefan Schantl @ 2020-08-20 17:28 UTC (permalink / raw)
  To: location

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

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


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

* [PATCH 2/3] Add an example country to the python create-database example script.
  2020-08-20 17:28 [PATCH 1/3] perl: Add database_countries() function Stefan Schantl
@ 2020-08-20 17:28 ` 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 ` [PATCH 1/3] perl: Add " Michael Tremer
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Schantl @ 2020-08-20 17:28 UTC (permalink / raw)
  To: location

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

The generated database is used by the testsuite of the perl binding.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 examples/python/create-database.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/examples/python/create-database.py b/examples/python/create-database.py
index 0eaa945..b57ad94 100644
--- a/examples/python/create-database.py
+++ b/examples/python/create-database.py
@@ -20,6 +20,9 @@ with open(private_key_path, "r") as pkey:
     # Set a license
     w.license = "CC"
 
+    # Add a country
+    c = w.add_country("DE")
+
     # Add an AS
     a = w.add_as(204867)
     a.name = "Lightning Wire Labs GmbH"
-- 
2.20.1


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

* [PATCH 3/3] perl: Add test for the database_countries() function.
  2020-08-20 17:28 [PATCH 1/3] perl: Add database_countries() function 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 ` Stefan Schantl
  2020-08-21  9:58 ` [PATCH 1/3] perl: Add " Michael Tremer
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Schantl @ 2020-08-20 17:28 UTC (permalink / raw)
  To: location

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

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

diff --git a/src/perl/t/Location.t b/src/perl/t/Location.t
index 3ba2d8f..ec7f1e0 100644
--- a/src/perl/t/Location.t
+++ b/src/perl/t/Location.t
@@ -12,7 +12,7 @@ use warnings;
 my $testdb = $ENV{'database'};
 my $keyfile = $ENV{'keyfile'};
 
-use Test::More tests => 7;
+use Test::More tests => 8;
 BEGIN { use_ok('Location') };
 
 #########################
@@ -56,3 +56,6 @@ if(defined($as_number)) { fail("Test 8 - Lookup Autonomous System Number for add
 
 $as_number = &Location::lookup_asn($db, "a.b.c.d");
 if(defined($as_number)) { fail("Test 9 - Lookup Autonomous System Number for invalid address.") }
+
+my @locations = &Location::database_countries($db);
+ok(@locations != 0, "Test 10 - Get database countries.");
-- 
2.20.1


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

* Re: [PATCH 1/3] perl: Add database_countries() function.
  2020-08-20 17:28 [PATCH 1/3] perl: Add database_countries() function 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
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2020-08-21  9:58 UTC (permalink / raw)
  To: location

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


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

end of thread, other threads:[~2020-08-21  9:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-20 17:28 [PATCH 1/3] perl: Add database_countries() function 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 ` [PATCH 1/3] perl: Add " Michael Tremer

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