File: lua_ui.c

package info (click to toggle)
cardpeek 0.8.4-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 3,496 kB
  • sloc: ansic: 11,114; sh: 4,266; makefile: 82; xml: 58; objc: 38
file content (216 lines) | stat: -rw-r--r-- 5,067 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/**********************************************************************
*
* This file is part of Cardpeek, the smart card reader utility.
*
* Copyright 2009-2014 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 <lauxlib.h>
#include "lua_ui.h"
#include "ui.h"
#include "dyntree_model.h"
#include "misc.h"
#include <string.h>
#include <stdlib.h>
#include "bytestring.h"
#include "lua_bytes.h"
#include <glib.h>
#include <glib/gprintf.h>

static int subr_ui_save_view(lua_State* L)
{
    const char *filename;

    if (lua_isnoneornil(L,1))
        return luaL_error(L,"Expecting one parameter: a filename (string)");

    filename= lua_tostring(L,1);

    if (dyntree_model_iter_to_xml_file(CARD_DATA_STORE,NULL,filename)==0)
    {
        log_printf(LOG_ERROR,"Could not write xml data to '%s'",filename);
        lua_pushboolean(L,0);
    }
    else
    {
        log_printf(LOG_INFO,"Wrote card data to '%s'",filename);
        lua_pushboolean(L,1);
    }

    return 1;
}

static int subr_ui_load_view(lua_State* L)
{
    const char *filename;
    int retval;

    if (lua_isnoneornil(L,1))
        return luaL_error(L,"Expecting one parameter: a filename (string)");

    filename = lua_tostring(L,1);

    if (strcmp(filename_extension(filename),".lua")==0)
    {
        log_printf(LOG_WARNING,"%s seems to be a card LUA script: perhaps you should use the 'Analyzer'"
                   " menu instead to open this file.",filename_base(filename));
    }

    dyntree_model_iter_remove(CARD_DATA_STORE,NULL);

    retval =  dyntree_model_iter_from_xml_file(CARD_DATA_STORE,NULL,filename);

    lua_pushboolean(L,retval);
    return 1;
}

static int subr_ui_question(lua_State* L)
{
    const char* message;
    const char** items;
    unsigned item_count;
    unsigned i;
    int result;

    if (!lua_isstring(L,1) || !lua_istable(L,2))
        return luaL_error(L,"expecting a string and a table as arguments to this function");

    if (!lua_isnil(L,1))
        message = lua_tostring(L,1);
    else
        message = "";

    item_count = lua_rawlen(L,2);
    items = malloc(sizeof(char *)*item_count);
    for (i=0; i<item_count; i++)
    {
        lua_rawgeti(L,2,i+1);
        if (lua_isstring(L,-1))
            items[i] = lua_tostring(L,-1);
        else
            items[i] = "(error)";
        lua_pop(L,1);
    }

    result = ui_question_l(message,item_count,items);

    free(items);

    if (result<0)
        lua_pushnil(L);
    else
        lua_pushinteger(L,result+1);
    return 1;
}

static int subr_ui_readline(lua_State* L)
{
    const char* message;
    unsigned len;
    const char* default_value;
    char *value;

    if (!lua_isnoneornil(L,1))
        message = lua_tostring(L,1);
    else
        message = "Input";
    if (!lua_isnoneornil(L,2))
        len = lua_tointeger(L,2);
    else
        len = 40;
    if (!lua_isnoneornil(L,3))
        default_value = lua_tostring(L,3);
    else
        default_value = "";

    value = g_malloc(len+1);
    strncpy(value,default_value,len);

    if (ui_readline(message,len,value))
        lua_pushstring(L,value);
    else
        lua_pushnil(L);
    g_free(value);
    return 1;
}

static int subr_ui_select_file(lua_State* L)
{
    const char* title;
    const char* path;
    const char* filename;
    char **pair;

    title = lua_tostring(L,1);
    if (!lua_isnoneornil(L,2))
        path = lua_tostring(L,2);
    else
        path = NULL;
    if (!lua_isnoneornil(L,3))
        filename = lua_tostring(L,3);
    else
        filename = NULL;
    pair = ui_select_file(title,path,filename);
    if (pair[0])
    {
        lua_pushstring(L,pair[0]);
        g_free(pair[0]);
    }
    else
        lua_pushnil(L);

    if (pair[1])
    {
        lua_pushstring(L,pair[1]);
        g_free(pair[1]);
    }
    else
        lua_pushnil(L);
    return 2;
}

static int subr_ui_about(lua_State* L)
{
    UNUSED(L);
    ui_about();
    return 0;
}

static int subr_ui_exit(lua_State* L)
{
    UNUSED(L);
    ui_exit();
    return 0;
}

static const struct luaL_Reg uilib [] = {
    {"save_view",subr_ui_save_view },
    {"load_view",subr_ui_load_view },
    {"readline",subr_ui_readline },
    {"question",subr_ui_question },
    {"select_file",subr_ui_select_file },
    {"about", subr_ui_about },
    {"exit", subr_ui_exit },
    {NULL,NULL}  /* sentinel */
};

int luaopen_ui(lua_State* L)
{
    luaL_newlib(L, uilib);
    lua_setglobal(L,"ui");
    return 1;
}