* implement rfid_reader_{get,set}opt()
[librfid] / src / rfid.c
1 /* librfid core 
2  *  (C) 2005-2006 by Harald Welte <laforge@gnumonks.org>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License version 2 
6  *  as published by the Free Software Foundation
7  *
8  *  This program is distributed in the hope that it will be useful,
9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *  GNU General Public License for more details.
12  *
13  *  You should have received a copy of the GNU General Public License
14  *  along with this program; if not, write to the Free Software
15  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
16  */
17 #include <stdio.h>
18 #include <string.h>
19
20 #include <librfid/rfid.h>
21 #include <librfid/rfid_reader.h>
22 #include <librfid/rfid_protocol.h>
23 #include <librfid/rfid_protocol_tcl.h>
24 #include <librfid/rfid_protocol_mifare_ul.h>
25 #include <librfid/rfid_protocol_mifare_classic.h>
26
27 #ifdef LIBRFID_STATIC
28 struct rfid_asic_handle rfid_ah;
29 struct rfid_layer2_handle rfid_l2h;
30 struct rfid_protocol_handle rfid_ph;
31 struct rfid_asic_transport_handle rfid_ath;
32 struct rfid_reader_handle rfid_rh;
33 #endif
34
35 #ifndef LIBRFID_FIRMWARE
36 const char *
37 rfid_hexdump(const void *data, unsigned int len)
38 {
39         static char string[1024];
40         unsigned char *d = (unsigned char *) data;
41         unsigned int i, left;
42
43         string[0] = '\0';
44         left = sizeof(string);
45         for (i = 0; len--; i += 3) {
46                 if (i >= sizeof(string) -4)
47                         break;
48                 snprintf(string+i, 4, " %02x", *d++);
49         }
50         return string;
51 }
52 #else
53 #define rfid_hexdump(x, y) hexdump(x, y)
54 #endif
55
56 #if 0
57 int rfid_setopt(struct rfid_handle *rh, unsigned int level,
58                 unsigned int optname,
59                 const void *opt, unsigned int *optlen)
60 {
61         switch (level) {
62         case RFID_LEVEL_READER:
63                 return rfid_reader_setopt(optname, opt, optlen);
64                 break;
65         case RFID_LEVEL_LAYER2:
66                 return rfid_layer2_setopt(optname, opt, optlen);
67                 break;
68         case RFID_LEVEL_LAYER3:
69                 return rfid_layer3_setopt(optname, opt, optlen);
70                 break;
71         case RFID_LEVEL_ASIC:
72         default:
73                 return -EINVAL;
74                 break;
75         }
76
77         return 0;
78 }
79
80 int rfid_getopt(struct rfid_handle *rh, unsigned int level,
81                 unsigned int optname,
82                 void *opt, unsigned int *optlen)
83 {
84         switch (level) {
85         case RFID_LEVEL_READER:
86                 return rfid_reader_getopt(optname, opt, optlen);
87                 break;
88         case RFID_LEVEL_LAYER2:
89                 return rfid_layer2_getopt(optname, opt, optlen);
90                 break;
91         case RFID_LEVEL_LAYER3:
92                 return rfid_layer3_getopt(optname, opt, optlen);
93                 break;
94         case RFID_LEVEL_ASIC:
95         default:
96                 return -EINVAL;
97                 break;
98         }
99
100         return 0;
101 }
102 #endif
103
104 int rfid_init()
105 {
106         return 0;
107 }
108
109 void rfid_fini()
110 {
111         /* FIXME: implementation */
112 }