]> git.ipfire.org Git - people/ms/libloc.git/blame - src/python/locationmodule.c
python: Add function to set log level
[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>
c941dd31 18#include <syslog.h>
18e2b14c 19
62ffafdd 20#include "locationmodule.h"
fadebc89 21#include "as.h"
9cdf6c53 22#include "database.h"
39967361 23#include "network.h"
d688e569 24#include "writer.h"
9cdf6c53 25
18e2b14c
MT
26PyMODINIT_FUNC PyInit_location(void);
27
62ffafdd
MT
28static void location_free(void) {
29 // Release context
30 if (loc_ctx)
31 loc_unref(loc_ctx);
32}
33
c941dd31
MT
34static PyObject* set_log_level(PyObject* m, PyObject* args) {
35 int priority = LOG_INFO;
36
37 if (!PyArg_ParseTuple(args, "i", &priority))
38 return NULL;
39
40 loc_set_log_priority(loc_ctx, priority);
41
42 Py_RETURN_NONE;
43}
44
18e2b14c 45static PyMethodDef location_module_methods[] = {
c941dd31
MT
46 {
47 "set_log_level",
48 (PyCFunction)set_log_level,
49 METH_VARARGS,
50 NULL,
51 },
18e2b14c
MT
52 { NULL },
53};
54
55static struct PyModuleDef location_module = {
56 .m_base = PyModuleDef_HEAD_INIT,
57 .m_name = "location",
58 .m_size = -1,
59 .m_doc = "Python module for libloc",
60 .m_methods = location_module_methods,
62ffafdd 61 .m_free = (freefunc)location_free,
18e2b14c
MT
62};
63
64PyMODINIT_FUNC PyInit_location(void) {
62ffafdd
MT
65 // Initialise loc context
66 int r = loc_new(&loc_ctx);
67 if (r)
68 return NULL;
69
18e2b14c
MT
70 PyObject* m = PyModule_Create(&location_module);
71 if (!m)
72 return NULL;
73
fadebc89
MT
74 // AS
75 if (PyType_Ready(&ASType) < 0)
76 return NULL;
77
78 Py_INCREF(&ASType);
79 PyModule_AddObject(m, "AS", (PyObject *)&ASType);
80
9cdf6c53
MT
81 // Database
82 if (PyType_Ready(&DatabaseType) < 0)
83 return NULL;
84
85 Py_INCREF(&DatabaseType);
86 PyModule_AddObject(m, "Database", (PyObject *)&DatabaseType);
87
afb426df
MT
88 // Database Enumerator
89 if (PyType_Ready(&DatabaseEnumeratorType) < 0)
90 return NULL;
91
92 Py_INCREF(&DatabaseEnumeratorType);
93 //PyModule_AddObject(m, "DatabaseEnumerator", (PyObject *)&DatabaseEnumeratorType);
94
39967361
MT
95 // Network
96 if (PyType_Ready(&NetworkType) < 0)
97 return NULL;
98
99 Py_INCREF(&NetworkType);
100 PyModule_AddObject(m, "Network", (PyObject *)&NetworkType);
101
d688e569
MT
102 // Writer
103 if (PyType_Ready(&WriterType) < 0)
104 return NULL;
105
106 Py_INCREF(&WriterType);
107 PyModule_AddObject(m, "Writer", (PyObject *)&WriterType);
108
18e2b14c
MT
109 return m;
110}