]> git.ipfire.org Git - people/ms/libloc.git/blame - src/loc/database.h
location-query: Allow filtering networks by family
[people/ms/libloc.git] / src / loc / database.h
CommitLineData
2601e83e
MT
1/*
2 libloc - A library to determine the location of someone on the Internet
3
4 Copyright (C) 2017 IPFire Development Team <info@ipfire.org>
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15*/
16
17#ifndef LIBLOC_DATABASE_H
18#define LIBLOC_DATABASE_H
19
2a30e4de 20#include <netinet/in.h>
2601e83e 21#include <stdio.h>
a5db3e49 22#include <stdint.h>
2601e83e
MT
23
24#include <loc/libloc.h>
2a30e4de 25#include <loc/network.h>
9fc7f001 26#include <loc/as.h>
ec684c1a 27#include <loc/country.h>
a5db3e49 28
2601e83e 29struct loc_database;
c182393f 30int loc_database_new(struct loc_ctx* ctx, struct loc_database** database, FILE* f);
2601e83e
MT
31struct loc_database* loc_database_ref(struct loc_database* db);
32struct loc_database* loc_database_unref(struct loc_database* db);
33
726f9984 34int loc_database_verify(struct loc_database* db, FILE* f);
b1720435 35
96ea74a5 36time_t loc_database_created_at(struct loc_database* db);
2601e83e 37const char* loc_database_get_vendor(struct loc_database* db);
2601e83e 38const char* loc_database_get_description(struct loc_database* db);
4bf49d00 39const char* loc_database_get_license(struct loc_database* db);
2601e83e 40
c182393f 41int loc_database_get_as(struct loc_database* db, struct loc_as** as, uint32_t number);
a5db3e49 42size_t loc_database_count_as(struct loc_database* db);
a5db3e49 43
2a30e4de
MT
44int loc_database_lookup(struct loc_database* db,
45 struct in6_addr* address, struct loc_network** network);
46int loc_database_lookup_from_string(struct loc_database* db,
47 const char* string, struct loc_network** network);
48
ec684c1a
MT
49int loc_database_get_country(struct loc_database* db,
50 struct loc_country** country, const char* code);
51
ccc7ab4e
MT
52enum loc_database_enumerator_mode {
53 LOC_DB_ENUMERATE_NETWORKS = 1,
54 LOC_DB_ENUMERATE_ASES = 2,
55};
56
7e13db74 57struct loc_database_enumerator;
ccc7ab4e
MT
58int loc_database_enumerator_new(struct loc_database_enumerator** enumerator,
59 struct loc_database* db, enum loc_database_enumerator_mode mode);
7e13db74
MT
60struct loc_database_enumerator* loc_database_enumerator_ref(struct loc_database_enumerator* enumerator);
61struct loc_database_enumerator* loc_database_enumerator_unref(struct loc_database_enumerator* enumerator);
62
d3d8ede6 63int loc_database_enumerator_set_string(struct loc_database_enumerator* enumerator, const char* string);
35bb3a32 64int loc_database_enumerator_set_country_code(struct loc_database_enumerator* enumerator, const char* country_code);
82910b95 65int loc_database_enumerator_set_asn(struct loc_database_enumerator* enumerator, unsigned int asn);
9268db5a 66int loc_database_enumerator_set_flag(struct loc_database_enumerator* enumerator, enum loc_network_flags flag);
44e5ef71 67int loc_database_enumerator_set_family(struct loc_database_enumerator* enumerator, int family);
15f79e2d
MT
68int loc_database_enumerator_next_as(
69 struct loc_database_enumerator* enumerator, struct loc_as** as);
70int loc_database_enumerator_next_network(
71 struct loc_database_enumerator* enumerator, struct loc_network** network);
d3d8ede6 72
2601e83e 73#endif