libfprint/libfprint/fprint-list-supported-devices.c

86 lines
2.4 KiB
C
Raw Normal View History

/*
* Copyright (C) 2009 Red Hat <mjg@redhat.com>
* Copyright (C) 2008 Bastien Nocera <hadess@hadess.net>
* Copyright (C) 2008 Timo Hoenig <thoenig@suse.de>, <thoenig@nouse.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <config.h>
#include <stdio.h>
#include "fp_internal.h"
GHashTable *printed = NULL;
2018-06-07 15:39:04 +00:00
static GList *insert_driver (GList *list,
struct fp_driver *driver)
{
int i;
for (i = 0; driver->id_table[i].vendor != 0; i++) {
char *key;
key = g_strdup_printf ("%04x:%04x", driver->id_table[i].vendor, driver->id_table[i].product);
if (g_hash_table_lookup (printed, key) != NULL) {
g_free (key);
continue;
}
g_hash_table_insert (printed, key, GINT_TO_POINTER (1));
2018-06-07 15:39:04 +00:00
list = g_list_prepend (list, g_strdup_printf ("%s | %s\n", key, driver->full_name));
}
2018-06-07 15:39:04 +00:00
return list;
}
int main (int argc, char **argv)
{
2018-06-07 15:39:04 +00:00
struct fp_driver **driver_list;
guint i;
2018-06-07 15:39:04 +00:00
GList *list, *l;
2018-06-07 15:39:04 +00:00
driver_list = fprint_get_drivers ();
printed = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
2018-06-07 15:46:08 +00:00
g_print ("%% lifprint — Supported Devices\n");
2018-06-07 15:39:04 +00:00
g_print ("%% Bastien Nocera, Daniel Drake\n");
g_print ("%% 2018\n");
g_print ("\n");
g_print ("# Supported Devices\n");
g_print ("\n");
g_print ("## USB devices\n");
g_print ("\n");
g_print ("USB ID | Driver\n");
g_print ("------------ | ------------\n");
2018-06-07 15:39:04 +00:00
list = NULL;
for (i = 0; driver_list[i] != NULL; i++)
list = insert_driver (list, driver_list[i]);
list = g_list_sort (list, (GCompareFunc) g_strcmp0);
for (l = list; l != NULL; l = l->next)
g_print ("%s", (char *) l->data);
2018-06-07 15:39:04 +00:00
g_list_free_full (list, g_free);
g_hash_table_destroy (printed);
return 0;
}