File: ui.c

package info (click to toggle)
cardpeek 0.8.4-1
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 3,496 kB
  • sloc: ansic: 11,114; sh: 4,266; makefile: 82; xml: 58; objc: 38
file content (149 lines) | stat: -rw-r--r-- 3,637 bytes parent folder | download | duplicates (3)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/**********************************************************************
*
* This file is part of Cardpeek, the smart card reader utility.
*
* Copyright 2009-2013 by Alain Pannetrat <L1L1@gmx.com>
*
* Cardpeek is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Cardpeek 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 Cardpeek.  If not, see <http://www.gnu.org/licenses/>.
*
*/

#include <string.h>
#include <stdarg.h>
#include <glib.h>
#include "ui.h"

ui_driver_t *UI_DRIVER = NULL;

const char *ui_driver_name(void)
{
    if (UI_DRIVER==NULL)
        return NULL;
    return UI_DRIVER->ui_driver_name();
}

int ui_initialize(ui_driver_t *driver, int *argc, char ***argv)
{
    UI_DRIVER = driver;
    return UI_DRIVER->ui_initialize(argc, argv);
}

int ui_question(const char *message, ...)
{
    va_list al;
    const char *item;
    unsigned item_count=0;
    const char **item_table;
    int retval;

    va_start(al,message);
    while (va_arg(al,const char *)) item_count++;
    va_end(al);

    item_table=g_malloc(sizeof(const char *)*item_count);
    item_count=0;

    va_start(al,message);
    while ((item=va_arg(al,const char *)))
        item_table[item_count++]=item;
    va_end(al);

    retval = ui_question_l(message,item_count,item_table);
    g_free(item_table);
    return retval;
}

int ui_question_l(const char *message, unsigned item_count, const char **items)
{
    return UI_DRIVER->ui_question_l(message,item_count,items);
}

int ui_readline(const char *message, unsigned input_max, char *input)
/* input_max does not include final '\0' */
{
    return UI_DRIVER->ui_readline(message,input_max,input);    
}

char **ui_select_file(const char *title,
                       const char *path,
                       const char *filename)
{
    return UI_DRIVER->ui_select_file(title,path,filename);
}

void ui_update(void)
{
    UI_DRIVER->ui_update();
}

void ui_exit(void)
{
    UI_DRIVER->ui_exit();
}

char *ui_select_reader(unsigned list_size, const char **list)
{
    return UI_DRIVER->ui_select_reader(list_size,list);
}

int ui_run(const char *optional_command)
{
    return UI_DRIVER->ui_run(optional_command);
}

void ui_set_title(const char *title)
{
    char atitle[80];

    g_snprintf(atitle,80,"cardpeek: %s",title);
    atitle[79]=0;
    UI_DRIVER->ui_set_title(atitle);
}

void ui_about(void)
{
    UI_DRIVER->ui_about();
}

void *ui_inprogress_new(const char *title, const char *message)
{
    return UI_DRIVER->ui_inprogress_new(title,message);
}

unsigned ui_inprogress_pulse(void *pulser)
{
    return UI_DRIVER->ui_inprogress_pulse(pulser);
}

unsigned ui_inprogress_set_fraction(void *pulser, double level)
{
    return UI_DRIVER->ui_inprogress_set_fraction(pulser,level);
}

void ui_inprogress_free(void *pulser)
{
    UI_DRIVER->ui_inprogress_free(pulser);
}

void ui_card_event_print(unsigned event,
        const bytestring_t *command,     
        unsigned short sw,                                                
        const bytestring_t *response,                                                             
        void *extra_data)
{
    UI_DRIVER->ui_card_event_print(event,command,sw,response,extra_data);
}
/************/