]> git.ipfire.org Git - location/libloc.git/blob - src/perl/Location/Location.xs
perl: Close database file after it has been read
[location/libloc.git] / src / perl / Location / Location.xs
1 #define PERL_NO_GET_CONTEXT
2 #include "EXTERN.h"
3 #include "perl.h"
4 #include "XSUB.h"
5
6 #include <stdio.h>
7 #include <string.h>
8
9
10 #include <loc/libloc.h>
11 #include <loc/database.h>
12 #include <loc/network.h>
13
14
15 MODULE = Location PACKAGE = Location
16
17 struct loc_database *
18 init(file)
19 char* file;
20
21 CODE:
22 struct loc_ctx* ctx = NULL;
23
24 // Initialise location context
25 int err = loc_new(&ctx);
26 if (err < 0)
27 croak("Could not initialize libloc context: %d\n", err);
28
29 // Open the database file for reading
30 FILE* f = fopen(file, "r");
31 if (!f) {
32 loc_unref(ctx);
33
34 croak("Could not open file for reading: %s: %s\n",
35 file, strerror(errno));
36 }
37
38 // Parse the database
39 struct loc_database* db = NULL;
40 err = loc_database_new(ctx, &db, f);
41
42 // We can close the database file straight away
43 // because loc_database_new creates a copy of the file descriptor
44 fclose(f);
45
46 if (err) {
47 loc_unref(ctx);
48
49 croak("Could not read database: %s\n", file);
50 }
51
52 // Cleanup
53 loc_unref(ctx);
54
55 RETVAL = db;
56 OUTPUT:
57 RETVAL
58
59 char*
60 get_country_code(db, address)
61 struct loc_database* db;
62 char* address;
63
64 CODE:
65 int err;
66 const char* country_code = NULL;
67
68 // Lookup network
69 struct loc_network *network;
70 err = loc_database_lookup_from_string(db, address, &network);
71 if (err) {
72 croak("Could not look up for %s\n", address);
73 }
74
75 country_code = loc_network_get_country_code(network);
76 loc_network_unref(network);
77
78 if (!country_code) {
79 croak("Could not get the country code for %s\n", address);
80 }
81
82 RETVAL = strdup(country_code);
83 OUTPUT:
84 RETVAL
85
86
87
88 char*
89 database_get_vendor(db)
90 struct loc_database* db;
91
92 CODE:
93 const char* vendor = NULL;
94
95 // Get vendor
96 vendor = loc_database_get_vendor(db);
97 if (!vendor) {
98 croak("Could not retrieve vendor\n");
99 }
100
101 RETVAL = strdup(vendor);
102 OUTPUT:
103 RETVAL
104
105 void
106 DESTROY(db)
107 struct loc_database* db = NULL;
108
109 CODE:
110 // Close database
111 loc_database_unref(db);