]> git.ipfire.org Git - people/ms/libloc.git/blame - src/python/locationmodule.c
python: Create a global loc_ctx* context
[people/ms/libloc.git] / src / python / locationmodule.c
CommitLineData
18e2b14c
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#include <Python.h>
18
62ffafdd 19#include "locationmodule.h"
fadebc89 20#include "as.h"
9cdf6c53
MT
21#include "database.h"
22
18e2b14c
MT
23PyMODINIT_FUNC PyInit_location(void);
24
62ffafdd
MT
25static void location_free(void) {
26 // Release context
27 if (loc_ctx)
28 loc_unref(loc_ctx);
29}
30
18e2b14c
MT
31static PyMethodDef location_module_methods[] = {
32 { NULL },
33};
34
35static struct PyModuleDef location_module = {
36 .m_base = PyModuleDef_HEAD_INIT,
37 .m_name = "location",
38 .m_size = -1,
39 .m_doc = "Python module for libloc",
40 .m_methods = location_module_methods,
62ffafdd 41 .m_free = (freefunc)location_free,
18e2b14c
MT
42};
43
44PyMODINIT_FUNC PyInit_location(void) {
62ffafdd
MT
45 // Initialise loc context
46 int r = loc_new(&loc_ctx);
47 if (r)
48 return NULL;
49
18e2b14c
MT
50 PyObject* m = PyModule_Create(&location_module);
51 if (!m)
52 return NULL;
53
fadebc89
MT
54 // AS
55 if (PyType_Ready(&ASType) < 0)
56 return NULL;
57
58 Py_INCREF(&ASType);
59 PyModule_AddObject(m, "AS", (PyObject *)&ASType);
60
9cdf6c53
MT
61 // Database
62 if (PyType_Ready(&DatabaseType) < 0)
63 return NULL;
64
65 Py_INCREF(&DatabaseType);
66 PyModule_AddObject(m, "Database", (PyObject *)&DatabaseType);
67
18e2b14c
MT
68 return m;
69}