Refactor keymap code to avoid duplication ("Daniel P. Berrange")
Each of the graphical frontends #include a .c file, for keymap code resulting in duplicated definitions & duplicated compiled code. A couple of small changes allowed this to be sanitized, so instead of doing a #include "keymaps.c", duplicating all code, we can have a shared keymaps.h file, and only compile code once. This allows the next patch to move the VncState struct out into a header file without causing clashing definitions. Makefile | 9 +++++--- b/keymaps.h | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ curses.c | 3 -- curses_keys.h | 9 +++----- keymaps.c | 45 ++++++++++++++++--------------------------- sdl.c | 3 -- sdl_keysym.h | 7 ++---- vnc.c | 5 +--- vnc_keysym.h | 7 ++---- 9 files changed, 97 insertions(+), 51 deletions(-) Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6721 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
1ff7df1a84
commit
0483755a4d
9
Makefile
9
Makefile
@ -137,6 +137,7 @@ endif
|
|||||||
AUDIO_OBJS+= wavcapture.o
|
AUDIO_OBJS+= wavcapture.o
|
||||||
OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
|
OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
|
||||||
|
|
||||||
|
OBJS+=keymaps.o
|
||||||
ifdef CONFIG_SDL
|
ifdef CONFIG_SDL
|
||||||
OBJS+=sdl.o x_keymap.o
|
OBJS+=sdl.o x_keymap.o
|
||||||
endif
|
endif
|
||||||
@ -161,15 +162,17 @@ LIBS+=$(VDE_LIBS)
|
|||||||
|
|
||||||
cocoa.o: cocoa.m
|
cocoa.o: cocoa.m
|
||||||
|
|
||||||
sdl.o: sdl.c keymaps.c sdl_keysym.h
|
keymaps.o: keymaps.c keymaps.h
|
||||||
|
|
||||||
|
sdl.o: sdl.c keymaps.h sdl_keysym.h
|
||||||
|
|
||||||
sdl.o audio/sdlaudio.o: CFLAGS += $(SDL_CFLAGS)
|
sdl.o audio/sdlaudio.o: CFLAGS += $(SDL_CFLAGS)
|
||||||
|
|
||||||
vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
|
vnc.o: vnc.c keymaps.h sdl_keysym.h vnchextile.h d3des.c d3des.h
|
||||||
|
|
||||||
vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
|
vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
|
||||||
|
|
||||||
curses.o: curses.c keymaps.c curses_keys.h
|
curses.o: curses.c keymaps.h curses_keys.h
|
||||||
|
|
||||||
bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS)
|
bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS)
|
||||||
|
|
||||||
|
3
curses.c
3
curses.c
@ -158,7 +158,6 @@ static void curses_cursor_position(DisplayState *ds, int x, int y)
|
|||||||
/* generic keyboard conversion */
|
/* generic keyboard conversion */
|
||||||
|
|
||||||
#include "curses_keys.h"
|
#include "curses_keys.h"
|
||||||
#include "keymaps.c"
|
|
||||||
|
|
||||||
static kbd_layout_t *kbd_layout = 0;
|
static kbd_layout_t *kbd_layout = 0;
|
||||||
static int keycode2keysym[CURSES_KEYS];
|
static int keycode2keysym[CURSES_KEYS];
|
||||||
@ -311,7 +310,7 @@ static void curses_keyboard_setup(void)
|
|||||||
keyboard_layout = "en-us";
|
keyboard_layout = "en-us";
|
||||||
#endif
|
#endif
|
||||||
if(keyboard_layout) {
|
if(keyboard_layout) {
|
||||||
kbd_layout = init_keyboard_layout(keyboard_layout);
|
kbd_layout = init_keyboard_layout(name2keysym, keyboard_layout);
|
||||||
if (!kbd_layout)
|
if (!kbd_layout)
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "keymaps.h"
|
||||||
|
|
||||||
|
|
||||||
#define KEY_RELEASE 0x80
|
#define KEY_RELEASE 0x80
|
||||||
#define KEY_MASK 0x7f
|
#define KEY_MASK 0x7f
|
||||||
#define SHIFT_CODE 0x2a
|
#define SHIFT_CODE 0x2a
|
||||||
@ -239,11 +243,6 @@ static const int curses2keysym[CURSES_KEYS] = {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
const char* name;
|
|
||||||
int keysym;
|
|
||||||
} name2keysym_t;
|
|
||||||
|
|
||||||
static const name2keysym_t name2keysym[] = {
|
static const name2keysym_t name2keysym[] = {
|
||||||
/* Plain ASCII */
|
/* Plain ASCII */
|
||||||
{ "space", 0x020 },
|
{ "space", 0x020 },
|
||||||
|
45
keymaps.c
45
keymaps.c
@ -22,34 +22,20 @@
|
|||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static int get_keysym(const char *name)
|
#include "keymaps.h"
|
||||||
|
#include "sysemu.h"
|
||||||
|
|
||||||
|
static int get_keysym(const name2keysym_t *table,
|
||||||
|
const char *name)
|
||||||
{
|
{
|
||||||
const name2keysym_t *p;
|
const name2keysym_t *p;
|
||||||
for(p = name2keysym; p->name != NULL; p++) {
|
for(p = table; p->name != NULL; p++) {
|
||||||
if (!strcmp(p->name, name))
|
if (!strcmp(p->name, name))
|
||||||
return p->keysym;
|
return p->keysym;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct key_range {
|
|
||||||
int start;
|
|
||||||
int end;
|
|
||||||
struct key_range *next;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define MAX_NORMAL_KEYCODE 512
|
|
||||||
#define MAX_EXTRA_COUNT 256
|
|
||||||
typedef struct {
|
|
||||||
uint16_t keysym2keycode[MAX_NORMAL_KEYCODE];
|
|
||||||
struct {
|
|
||||||
int keysym;
|
|
||||||
uint16_t keycode;
|
|
||||||
} keysym2keycode_extra[MAX_EXTRA_COUNT];
|
|
||||||
int extra_count;
|
|
||||||
struct key_range *keypad_range;
|
|
||||||
struct key_range *numlock_range;
|
|
||||||
} kbd_layout_t;
|
|
||||||
|
|
||||||
static void add_to_key_range(struct key_range **krp, int code) {
|
static void add_to_key_range(struct key_range **krp, int code) {
|
||||||
struct key_range *kr;
|
struct key_range *kr;
|
||||||
@ -73,7 +59,8 @@ static void add_to_key_range(struct key_range **krp, int code) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static kbd_layout_t *parse_keyboard_layout(const char *language,
|
static kbd_layout_t *parse_keyboard_layout(const name2keysym_t *table,
|
||||||
|
const char *language,
|
||||||
kbd_layout_t * k)
|
kbd_layout_t * k)
|
||||||
{
|
{
|
||||||
FILE *f;
|
FILE *f;
|
||||||
@ -102,7 +89,7 @@ static kbd_layout_t *parse_keyboard_layout(const char *language,
|
|||||||
if (!strncmp(line, "map ", 4))
|
if (!strncmp(line, "map ", 4))
|
||||||
continue;
|
continue;
|
||||||
if (!strncmp(line, "include ", 8)) {
|
if (!strncmp(line, "include ", 8)) {
|
||||||
parse_keyboard_layout(line + 8, k);
|
parse_keyboard_layout(table, line + 8, k);
|
||||||
} else {
|
} else {
|
||||||
char *end_of_keysym = line;
|
char *end_of_keysym = line;
|
||||||
while (*end_of_keysym != 0 && *end_of_keysym != ' ')
|
while (*end_of_keysym != 0 && *end_of_keysym != ' ')
|
||||||
@ -110,7 +97,7 @@ static kbd_layout_t *parse_keyboard_layout(const char *language,
|
|||||||
if (*end_of_keysym) {
|
if (*end_of_keysym) {
|
||||||
int keysym;
|
int keysym;
|
||||||
*end_of_keysym = 0;
|
*end_of_keysym = 0;
|
||||||
keysym = get_keysym(line);
|
keysym = get_keysym(table, line);
|
||||||
if (keysym == 0) {
|
if (keysym == 0) {
|
||||||
// fprintf(stderr, "Warning: unknown keysym %s\n", line);
|
// fprintf(stderr, "Warning: unknown keysym %s\n", line);
|
||||||
} else {
|
} else {
|
||||||
@ -154,12 +141,14 @@ static kbd_layout_t *parse_keyboard_layout(const char *language,
|
|||||||
return k;
|
return k;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void *init_keyboard_layout(const char *language)
|
|
||||||
|
void *init_keyboard_layout(const name2keysym_t *table, const char *language)
|
||||||
{
|
{
|
||||||
return parse_keyboard_layout(language, 0);
|
return parse_keyboard_layout(table, language, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int keysym2scancode(void *kbd_layout, int keysym)
|
|
||||||
|
int keysym2scancode(void *kbd_layout, int keysym)
|
||||||
{
|
{
|
||||||
kbd_layout_t *k = kbd_layout;
|
kbd_layout_t *k = kbd_layout;
|
||||||
if (keysym < MAX_NORMAL_KEYCODE) {
|
if (keysym < MAX_NORMAL_KEYCODE) {
|
||||||
@ -180,7 +169,7 @@ static int keysym2scancode(void *kbd_layout, int keysym)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int keycode_is_keypad(void *kbd_layout, int keycode)
|
int keycode_is_keypad(void *kbd_layout, int keycode)
|
||||||
{
|
{
|
||||||
kbd_layout_t *k = kbd_layout;
|
kbd_layout_t *k = kbd_layout;
|
||||||
struct key_range *kr;
|
struct key_range *kr;
|
||||||
@ -191,7 +180,7 @@ static inline int keycode_is_keypad(void *kbd_layout, int keycode)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int keysym_is_numlock(void *kbd_layout, int keysym)
|
int keysym_is_numlock(void *kbd_layout, int keysym)
|
||||||
{
|
{
|
||||||
kbd_layout_t *k = kbd_layout;
|
kbd_layout_t *k = kbd_layout;
|
||||||
struct key_range *kr;
|
struct key_range *kr;
|
||||||
|
3
sdl.c
3
sdl.c
@ -109,7 +109,6 @@ static void sdl_resize(DisplayState *ds)
|
|||||||
/* generic keyboard conversion */
|
/* generic keyboard conversion */
|
||||||
|
|
||||||
#include "sdl_keysym.h"
|
#include "sdl_keysym.h"
|
||||||
#include "keymaps.c"
|
|
||||||
|
|
||||||
static kbd_layout_t *kbd_layout = NULL;
|
static kbd_layout_t *kbd_layout = NULL;
|
||||||
|
|
||||||
@ -677,7 +676,7 @@ void sdl_display_init(DisplayState *ds, int full_screen, int no_frame)
|
|||||||
keyboard_layout = "en-us";
|
keyboard_layout = "en-us";
|
||||||
#endif
|
#endif
|
||||||
if(keyboard_layout) {
|
if(keyboard_layout) {
|
||||||
kbd_layout = init_keyboard_layout(keyboard_layout);
|
kbd_layout = init_keyboard_layout(name2keysym, keyboard_layout);
|
||||||
if (!kbd_layout)
|
if (!kbd_layout)
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
typedef struct {
|
|
||||||
const char* name;
|
#include "keymaps.h"
|
||||||
int keysym;
|
|
||||||
} name2keysym_t;
|
|
||||||
static const name2keysym_t name2keysym[]={
|
static const name2keysym_t name2keysym[]={
|
||||||
/* ascii */
|
/* ascii */
|
||||||
{ "space", 0x020},
|
{ "space", 0x020},
|
||||||
|
5
vnc.c
5
vnc.c
@ -36,7 +36,6 @@
|
|||||||
|
|
||||||
#include "vnc.h"
|
#include "vnc.h"
|
||||||
#include "vnc_keysym.h"
|
#include "vnc_keysym.h"
|
||||||
#include "keymaps.c"
|
|
||||||
#include "d3des.h"
|
#include "d3des.h"
|
||||||
|
|
||||||
#ifdef CONFIG_VNC_TLS
|
#ifdef CONFIG_VNC_TLS
|
||||||
@ -2422,9 +2421,9 @@ void vnc_display_init(DisplayState *ds)
|
|||||||
vs->ds = ds;
|
vs->ds = ds;
|
||||||
|
|
||||||
if (keyboard_layout)
|
if (keyboard_layout)
|
||||||
vs->kbd_layout = init_keyboard_layout(keyboard_layout);
|
vs->kbd_layout = init_keyboard_layout(name2keysym, keyboard_layout);
|
||||||
else
|
else
|
||||||
vs->kbd_layout = init_keyboard_layout("en-us");
|
vs->kbd_layout = init_keyboard_layout(name2keysym, "en-us");
|
||||||
|
|
||||||
if (!vs->kbd_layout)
|
if (!vs->kbd_layout)
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
typedef struct {
|
|
||||||
const char* name;
|
#include "keymaps.h"
|
||||||
int keysym;
|
|
||||||
} name2keysym_t;
|
|
||||||
static const name2keysym_t name2keysym[]={
|
static const name2keysym_t name2keysym[]={
|
||||||
/* ascii */
|
/* ascii */
|
||||||
{ "space", 0x020},
|
{ "space", 0x020},
|
||||||
|
Loading…
Reference in New Issue
Block a user