libxkbcommon/test
David Herrmann 36f55c494e keymap: add xkb_keymap_new_from_buffer()
The current API doesn't allow the caller to create keymaps from mmap()'ed
files. The problem is, xkb_keymap_new_from_string() requires a terminating
0 byte. However, there is no way to guarantee that when using mmap() so a
user currently has to copy the whole file just to get the terminating zero
byte (assuming they cannot use xkb_keymap_new_from_file()).

This adds a new entry xkb_keymap_new_from_buffer() which takes a memory
location and the buffer size in bytes.

Internally, we depend on yy_scan_{string,byte}() helpers. According to
flex documentation these already copy the input string because they are
wrappers around yy_scan_buffer().
yy_scan_buffer() on the other hand has some insane requirements. The
buffer must be writeable and the last two bytes must be ASCII-NUL. But the
buffer may contain other 0 bytes just fine.

Because we don't want these constraints in our public API,
xkb_keymap_new_from_buffer() needs to create a copy of the input memory.
But it then calls yy_scan_buffer() directly. Hence, we have the same
number of buffer-copies as with *_from_string() but without the
terminating 0 requirement.
The explicit yy_scan_buffer() call is preferred over yy_scan_byte() so the
buffer-copy operation is not hidden somewhere in flex.

Maybe some day we no longer depend on flex and can have a zero-copy API. A
user could mmap() a file and it would get parsed right from this buffer.
But until then, we shouldn't expose this limitation in the API but instead
provide an API that some day can work with zero-copy.

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>

[ran: rebased on top of my branch]
Conflicts:
	Makefile.am
	src/xkbcomp/xkbcomp.c
2013-04-01 18:04:06 +01:00
..
data keymap-dump: remove some ugly empty lines 2013-03-18 22:20:03 +00:00
.gitignore keymap: add xkb_keymap_new_from_buffer() 2013-04-01 18:04:06 +01:00
bench-key-proc.c test: Add flags argument to test_get_context() 2013-03-19 10:28:23 +00:00
buffercomp.c keymap: add xkb_keymap_new_from_buffer() 2013-04-01 18:04:06 +01:00
common.c keymap: add xkb_keymap_new_from_buffer() 2013-04-01 18:04:06 +01:00
context.c test: Add flags argument to test_get_context() 2013-03-19 10:28:23 +00:00
filecomp.c test: Add flags argument to test_get_context() 2013-03-19 10:28:23 +00:00
interactive.c test: Add flags argument to test_get_context() 2013-03-19 10:28:23 +00:00
keyseq.c test: Add flags argument to test_get_context() 2013-03-19 10:28:23 +00:00
keysym.c keysym: print unicode keysyms uppercase and 0-padded 2013-03-18 22:20:02 +00:00
log.c test: Use test_get_context() in log.c 2013-03-19 10:34:28 +00:00
print-compiled-keymap.c test: Add flags argument to test_get_context() 2013-03-19 10:28:23 +00:00
rmlvo-to-kccgst.c Add environment overrides for default RMLVO 2013-03-19 10:53:37 +00:00
rules-file.c test: Add flags argument to test_get_context() 2013-03-19 10:28:23 +00:00
rulescomp.c Add key-sequence checking to rulescomp 2013-04-01 17:50:08 +01:00
state.c test: Add flags argument to test_get_context() 2013-03-19 10:28:23 +00:00
stringcomp.c test: Add flags argument to test_get_context() 2013-03-19 10:28:23 +00:00
test.h keymap: add xkb_keymap_new_from_buffer() 2013-04-01 18:04:06 +01:00