summaryrefslogtreecommitdiff
path: root/python/pyrfid.c
blob: 261dfc9099fd39f05677ce554927502430a97b13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* Python bindings for librfid 
 *  (C) 2007 by Kushal Das <kushal@openpcd.org>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 
 *  as published by the Free Software Foundation
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <libgen.h>

#include <librfid/rfid.h>
#include <librfid/rfid_scan.h>
#include <librfid/rfid_reader.h>
#include <librfid/rfid_layer2.h>
#include <librfid/rfid_protocol.h>

#include <librfid/rfid_protocol_mifare_classic.h>
#include <librfid/rfid_protocol_mifare_ul.h>
#include <common.h>

#include <Python.h>
static PyObject *pyi_open(PyObject *self, PyObject *args);
static PyObject *pyi_close(PyObject *self, PyObject *args);
static PyObject *pyi_rfidscan(PyObject *self, PyObject *args);
static PyObject *pyi_rfidlayeropt(PyObject *self, PyObject *args);

static PyObject *pyi_Error;
struct rfid_reader_handle *rh;
struct rfid_layer2_handle *l2h;
struct rfid_protocol_handle *ph;

static PyMethodDef pyi_Methods[] = {
    {"open", pyi_open, METH_VARARGS,
        "This will initialise the RFID reader"},
    {"close", pyi_close, METH_VARARGS,
        "This will close the RFID reader"},
    {"scan", pyi_rfidscan, METH_VARARGS,
        "This will scan for any card"},
    {"get_id", pyi_rfidlayeropt, METH_VARARGS,
        "This will read the id of the card"},
    {NULL, NULL, 0, NULL}
};

PyMODINIT_FUNC initpyrfid() {
    PyObject *m;

    m = Py_InitModule("pyrfid", pyi_Methods);
    pyi_Error = PyErr_NewException("pyrfid.error", NULL, NULL);
    Py_INCREF(pyi_Error);
    PyModule_AddObject(m, "error", pyi_Error);
    return;
}

static PyObject *pyi_open(PyObject *self, PyObject *args) {
    rfid_init();
    rh = rfid_reader_open(NULL, RFID_READER_OPENPCD);
    if (!rh)
	return Py_BuildValue("i", 1);
    else
	return Py_BuildValue("i", 0);
}

static PyObject *pyi_close(PyObject *self, PyObject *args) {
    rfid_reader_close(rh);
//     Py_INCREF(Py_None);
//     return Py_None;
     return Py_BuildValue("i", 0);
}

static PyObject *pyi_rfidscan(PyObject *self, PyObject *args) {
    int rc;
	rc = rfid_scan(rh, &l2h, &ph);
	return Py_BuildValue("i", rc);
}

static PyObject *pyi_rfidlayeropt(PyObject *self, PyObject *args) {
                unsigned char uid_buf[16];
		char card_id[16];
		unsigned int uid_len = sizeof(uid_buf);
		rfid_layer2_getopt(l2h, RFID_OPT_LAYER2_UID, &uid_buf,
				   &uid_len);
		strcpy(card_id,hexdump(uid_buf, uid_len));
		return Py_BuildValue("s", card_id);
}
personal git repositories of Harald Welte. Your mileage may vary