platform/upstream/libxkbcommon.git
11 years agodoc: use JAVADOC_AUTOBRIEF
Ran Benita [Thu, 11 Oct 2012 16:13:56 +0000 (18:13 +0200)]
doc: use JAVADOC_AUTOBRIEF

Don't have to type @brief all the time.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoast: simplify AppendStmt
Ran Benita [Thu, 11 Oct 2012 19:50:21 +0000 (21:50 +0200)]
ast: simplify AppendStmt

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoMake xkb_keymap_num_leds return the index range instead of active count
Ran Benita [Thu, 11 Oct 2012 14:54:17 +0000 (16:54 +0200)]
Make xkb_keymap_num_leds return the index range instead of active count

Currently xkb_keymap_num_leds() returns a count of valid (settable)
leds. Because the indexes might be non-consecutive, and some leds
might not be settable, it is incorrect to use this function for
iterating over the leds in the keymap. But this is the main use case of
this function, so instead of the current behavior we adapt the function
to the use case by making it return the needed range of iteration.
The caller needs to handle invalid intermittent indexes, though.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap: rename keymap->sym_interpret -> sym_interprets
Ran Benita [Thu, 11 Oct 2012 12:05:49 +0000 (14:05 +0200)]
keymap: rename keymap->sym_interpret -> sym_interprets

This can be a bit confusing.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agocompat: add documentation for interpret's
Ran Benita [Thu, 11 Oct 2012 12:03:03 +0000 (14:03 +0200)]
compat: add documentation for interpret's

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agocompat: don't forget to copy XKB_MATCH_NONE interpret's
Ran Benita [Thu, 11 Oct 2012 10:07:43 +0000 (12:07 +0200)]
compat: don't forget to copy XKB_MATCH_NONE interpret's

Commit a8d462e3669b1790dfad75836d5ec59e390392ef accidentally removed the
OR with XKB_MATCH_NONE. It is in fact unused though.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agobuild: change to AM_MAINTAINER_MODE([enable])
Ran Benita [Wed, 10 Oct 2012 19:01:15 +0000 (21:01 +0200)]
build: change to AM_MAINTAINER_MODE([enable])

Disabled maintainer mode is annoying, we have no reason to do it. The
old behavior can still be had with --disable-maintainer-mode.
See:
http://lists.x.org/archives/xorg-devel/2012-September/033757.html
http://www.gnu.org/savannah-checkouts/gnu/automake/manual/html_node/maintainer_002dmode.html

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agobuild: honor $NOCONFIGURE in autogen.sh
Ran Benita [Wed, 10 Oct 2012 18:53:26 +0000 (20:53 +0200)]
build: honor $NOCONFIGURE in autogen.sh

Using NOCONFIGURE=1 ./autogen.sh can prevent it from running ./configure
on its own, which is sometimes useful.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostringcomp: test compilation of a dump of a keymap created from rules
Ran Benita [Wed, 10 Oct 2012 17:14:35 +0000 (19:14 +0200)]
stringcomp: test compilation of a dump of a keymap created from rules

This would have caught the regression fixed in 2ac319c.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoRemove the XKB_NUM_INDICATORS limit
Ran Benita [Wed, 10 Oct 2012 17:08:01 +0000 (19:08 +0200)]
Remove the XKB_NUM_INDICATORS limit

Use a darray instead of a static array of size 32.
We still enforce XKB_MAX_LEDS because of the size of xkb_led_mask_t.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap: don't use darray for keymap->keys
Ran Benita [Wed, 10 Oct 2012 15:51:06 +0000 (17:51 +0200)]
keymap: don't use darray for keymap->keys

It's never resized.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoRename XKB_NUM_GROUPS to XKB_MAX_GROUPS
Ran Benita [Wed, 10 Oct 2012 15:30:15 +0000 (17:30 +0200)]
Rename XKB_NUM_GROUPS to XKB_MAX_GROUPS

This is a more appropriate name now.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeycodes: refactor AddIndicatorName
Ran Benita [Wed, 10 Oct 2012 10:11:43 +0000 (12:11 +0200)]
keycodes: refactor AddIndicatorName

Make it shorter and fix the XXX.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap, state: don't assume led index < xkb_keymap_num_leds
Ran Benita [Wed, 10 Oct 2012 07:47:31 +0000 (09:47 +0200)]
keymap, state: don't assume led index < xkb_keymap_num_leds

xkb_keymap_num_leds() returns the number of leds that have any
possibility of being set. Even if a led is defined but can not be set in
any way, it is not counted.

In a few places currently we assume that led indexes are smaller than
this number, which is wrong both for the above reason and for the fact
that the xkb format actually allows explicitly setting the indicator
index, which means that the indexes might be non-consecutive.

We don't really have good API to iterate on leds, now, because
xkb_keymap_num_leds is pretty useless. To work around that we use
sizeof(xkb_led_mask_t) * 8.

This makes the "Group 2" led work (try switching to a layout other than
the first in test/interactive).

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeysym: fix xkb_keysym_is_upper/lower() to work properly
Ran Benita [Tue, 9 Oct 2012 18:48:35 +0000 (20:48 +0200)]
keysym: fix xkb_keysym_is_upper/lower() to work properly

Our current code (taken from the xserver) doesn't handle unicode keysyms
at all, and there seem to be some other changes compared to libX11,
which is what xkbcomp uses. So we just copy the code that does that from
libX11.
It would be much better to not have to hardcode unicode tables like
that, but it's probably better than dealing with glibc locale stuff for
now. It also doesn't affect our binary size much.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agocompat: fix bad interpret predicate mods "all" calculation
Ran Benita [Mon, 8 Oct 2012 20:11:18 +0000 (22:11 +0200)]
compat: fix bad interpret predicate mods "all" calculation

Commit 9984d1d03cd78eb636c75cc2bbd2d240dc1dd72f changed the type of
interpret->mods to xkb_mod_mask_t, but this bit of code assumes that the
type is uint8_t.
This code is not usually run (for example by our tests), but when it
does keymap-dump would print out all of the modifiers (including the
virtual ones) which causes recompilation of the output to fail
miserably.

https://bugs.freedesktop.org/show_bug.cgi?id=55769

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap: use xkb_mod_mask_t for interpret->mods and modmap
Ran Benita [Sat, 6 Oct 2012 19:37:43 +0000 (21:37 +0200)]
keymap: use xkb_mod_mask_t for interpret->mods and modmap

These are both real modifier masks, but we keep this information only in
the program logic now so when we change it we don't have to worry about
the type.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: refactor AddModMapEntry
Ran Benita [Sat, 6 Oct 2012 19:26:01 +0000 (21:26 +0200)]
symbols: refactor AddModMapEntry

It really asks for it.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoReplace 0xff with MOD_REAL_MASK_ALL
Ran Benita [Sat, 6 Oct 2012 15:53:53 +0000 (17:53 +0200)]
Replace 0xff with MOD_REAL_MASK_ALL

To make it easier to see where it's used. The name is just to match
MOD_REAL.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoexpr: unify the real and virtual modifier functions
Ran Benita [Sat, 6 Oct 2012 15:42:21 +0000 (17:42 +0200)]
expr: unify the real and virtual modifier functions

This again pushes the mod type annotation to the original call site, to
make it easier to grep to see where the real/virtual distinction
matters.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoRemove now-unneeded mod type annotations
Ran Benita [Sat, 6 Oct 2012 15:21:09 +0000 (17:21 +0200)]
Remove now-unneeded mod type annotations

Most of the mod type annotations can now be changed to MOD_BOTH, because
if you pass a mask which can only contain real mods in the first place to
e.g. ModMaskText, then MOD_REAL and MOD_BOTH will give the same result.

In the cases where MOD_BOTH is only ever the argument, we just remove
it. What's left is where it really "matters".

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoexpr: share code for modifier functions
Ran Benita [Sat, 6 Oct 2012 15:00:26 +0000 (17:00 +0200)]
expr: share code for modifier functions

We can make more use of the functions in text.c now and remove some
cruft.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agotext: explicitly take mod_type in mod functions
Ran Benita [Sat, 6 Oct 2012 12:34:17 +0000 (14:34 +0200)]
text: explicitly take mod_type in mod functions

This essentially "tags" each invocation of the functions with the
modifier type of the argument, which allows for easy grepping for them
(with the aim being, to remove anything but MOD_BOTH).

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agotext: share code for modifiers
Ran Benita [Sat, 6 Oct 2012 12:15:06 +0000 (14:15 +0200)]
text: share code for modifiers

Add static common functions which take enum mod_type, and change the
existing ones to use them.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoKeep real and virtual mods in the same table in the keymap
Ran Benita [Fri, 5 Oct 2012 20:46:21 +0000 (22:46 +0200)]
Keep real and virtual mods in the same table in the keymap

We change the keymap->vmods array into keymap->mods, and change it's
member type from struct xkb_vmod to struct xkb_mod. This table now
includes the real modifiers in the first 8 places. To distinguish
between them, we add an enum mod_type to struct xkb_mod.

Besides being a more reasonable approach, this enables us to share
some code later, remove XKB_NUM_CORE_MODS (though the 0xff mask still
appears in a few places), and prepares us to flat out remove the
distinction in the future. This commit just does the conversion.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoDon't use shifted virtual modifier masks
Ran Benita [Fri, 5 Oct 2012 20:07:04 +0000 (22:07 +0200)]
Don't use shifted virtual modifier masks

Modifier masks can be confusing in some places. For example,
key->vmodmap only contains virtual modifiers, where the first is in
position 0, the second in 1 etc., while normally in a xkb_mod_mask_t the
virtual modifiers start from the 8th (XKB_NUM_CORE_MODS) position. This
happens in some other places as well.

Change all of the masks to be in the usual real+virtual format, and when
we need to access e.g. keymap->vmods we just adjust by
XKB_NUM_CORE_MODS. (This also goes for indexes, e.g.
interpret->virtual_modifier).

This makes this stuff easier to reason about.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoexpr: don't expose LookupModIndex
Ran Benita [Fri, 5 Oct 2012 19:40:49 +0000 (21:40 +0200)]
expr: don't expose LookupModIndex

The Lookup* functions should remain a private implementation detail of
the expr.c file.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoRemove VModInfo for now
Ran Benita [Fri, 5 Oct 2012 19:06:34 +0000 (21:06 +0200)]
Remove VModInfo for now

VModInfo currently is only used to track which virtual modifiers were
declared in the file which owns the VModInfo. This, in turn, is only
used in ResolveVirtualModifier, which in turn is only used to resolve
the virtualModifier field in an interpret statement (compat.c). In other
words, it is used to ensure that interprets can only use a vmod which
was declared in the same map.

We remove this now, because it doesn't do much and distracts from other
changes; we will later re-add it properly. Specificly, we will make it
so that virtual modifiers are not the exception in that they modify the
keymap directly, instead of keeping the changes in some *Info struct and
commiting them to the keymap at the end of the compilation. (This is bad
because if a vmod is added to the keymap, and then the compilation of
this specific file fails, the change sticks around nonetheless).

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agovmod: don't allow to add a vmod with the name of a real mod
Ran Benita [Fri, 5 Oct 2012 18:17:54 +0000 (20:17 +0200)]
vmod: don't allow to add a vmod with the name of a real mod

Otherwise strange thing might ensue.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate: don't needlessly fetch the xkb_key
Ran Benita [Fri, 5 Oct 2012 13:10:41 +0000 (15:10 +0200)]
state: don't needlessly fetch the xkb_key

It's a leftover.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agovmod: remove merge argument from HandleVModDef
Ran Benita [Thu, 4 Oct 2012 17:44:47 +0000 (19:44 +0200)]
vmod: remove merge argument from HandleVModDef

It's unused and unneeded.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoOmit struct '_Name' from non-recursive struct typedefs
Ran Benita [Thu, 4 Oct 2012 10:39:22 +0000 (12:39 +0200)]
Omit struct '_Name' from non-recursive struct typedefs

Just a pet peeve.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoexpr: don't allow "none" in LookupModIndex
Ran Benita [Thu, 4 Oct 2012 10:27:06 +0000 (12:27 +0200)]
expr: don't allow "none" in LookupModIndex

LookupModMask handles this before calling LookupModIndex, and the only
other user in symbols.c doesn't handle this return value at all.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeysym-utf: make keysym->unicode table a bit smaller
Ran Benita [Thu, 4 Oct 2012 09:48:56 +0000 (11:48 +0200)]
keysym-utf: make keysym->unicode table a bit smaller

Saves a few kbytes, and unlikely to change.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoRemove the XKB_NUM_VIRTUAL_MODIFIERS limit
Ran Benita [Wed, 3 Oct 2012 10:57:53 +0000 (12:57 +0200)]
Remove the XKB_NUM_VIRTUAL_MODIFIERS limit

Turn the virtual modifiers arrays in the keymap to a single darray,
which doesn't use this limit. The number of virtual modifiers is still
limited by the size of xkb_mod_mask_t, so we make sure not to go over
that.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate: simplify xkb_state_mod_index_is_active
Ran Benita [Wed, 3 Oct 2012 18:21:05 +0000 (20:21 +0200)]
state: simplify xkb_state_mod_index_is_active

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate: don't ignore type argument in xkb_state_mod_*_are_active
Ran Benita [Wed, 3 Oct 2012 18:16:09 +0000 (20:16 +0200)]
state: don't ignore type argument in xkb_state_mod_*_are_active

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate: fix bad EFFECTIVE check in *_is_active()
Ran Benita [Wed, 3 Oct 2012 17:41:22 +0000 (19:41 +0200)]
state: fix bad EFFECTIVE check in *_is_active()

This is a regression introduced in ed78fbcb30888cbfc6cd00.
XKB_STATE_EFFECTIVE is just a OR of the other states, so using & here is
completely wrong. So test/state shows for example:
    dumping state for LCtrl down:
            group English (US) (0): effective depressed latched locked
            mod Control (2): depressed latched locked
    dumping state for LCtrl + RAlt down:
            group English (US) (0): effective depressed latched locked
            mod Control (2): depressed latched locked
            mod Mod1 (3): depressed latched locked
    dumping state for RAlt down:
            group English (US) (0): effective depressed latched locked
            mod Mod1 (3): depressed latched locked
    dumping state for Caps Lock:
            group English (US) (0): effective depressed latched locked
            mod Lock (1): depressed latched locked
            led Caps Lock (0): active
    dumping state for Alt-Shift-+
            group English (US) (0): effective depressed latched locked
            mod Shift (0): depressed latched locked
            mod Mod1 (3): depressed latched locked
which is bogus.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoUse our types instead of int/uint32_t in a few places
Ran Benita [Wed, 3 Oct 2012 18:08:13 +0000 (20:08 +0200)]
Use our types instead of int/uint32_t in a few places

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoDon't scan and parse useless maps
Ran Benita [Sun, 30 Sep 2012 09:55:11 +0000 (11:55 +0200)]
Don't scan and parse useless maps

One physical xkb file may (and usually does) contain multiple maps. For
example, the us symbols file contains a map for every variant.
Currently, when we need a map from a file (specific or default), we
parse the entire file into a list of XkbFile's, find the map we want and
discard the others. This happens for every include statement. This is a lot
of unnecessary work; this commit is a first step at making it better.

What we do now is make yyparse return one map at a time; if we find what
we want, we can stop looking and avoid processing the rest of the file.

This moves some logic from include.c to parser.y (i.e. finding the
correct map, named or default). It also necessarily removes the
CheckDefaultMap check, which warned about a file which contains multiple
default maps. We can live without it.

Some stats with test/rulecomp (under valgrind and the benchmark):

Before:
==2280==   total heap usage: 288,665 allocs, 288,665 frees, 13,121,349 bytes allocated
compiled 1000 keymaps in 10.849487353s

After:
==1070==   total heap usage: 100,197 allocs, 100,197 frees, 9,329,900 bytes allocated
compiled 1000 keymaps in 5.258960549s

Pretty good.

Note: we still do some unnecessary work, by parsing and discarding the
maps before the one we want. However dealing with this is more
complicated (maybe using bison's push-parser and sniffing the token
stream). Probably not worth it.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoscanner: don't strdup the file name
Ran Benita [Sun, 30 Sep 2012 12:27:37 +0000 (14:27 +0200)]
scanner: don't strdup the file name

We don't modify it and there's no way to modify the original in the
scanner_extra life time.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoscanner: share code in XkbParse{File,String}
Ran Benita [Fri, 28 Sep 2012 08:15:27 +0000 (10:15 +0200)]
scanner: share code in XkbParse{File,String}

Some refactoring to prepare for changes in the parse() function.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoscanner: remove uselss 'last symbol' error message
Ran Benita [Sun, 30 Sep 2012 12:23:58 +0000 (14:23 +0200)]
scanner: remove uselss 'last symbol' error message

It never shows something useful. Besides, you already get the line
number, which is enough.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoparser: remove XkbCompMapList rule
Ran Benita [Sun, 30 Sep 2012 08:50:38 +0000 (10:50 +0200)]
parser: remove XkbCompMapList rule

This rule allows you to put several xkb_keymaps in one file.
This doesn't make any sense: only the default/first can ever be used,
yet the others are fully parsed as well.
Different keymaps should just be put in different files.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoparser: remove XkbConfig rule
Ran Benita [Sun, 30 Sep 2012 08:33:59 +0000 (10:33 +0200)]
parser: remove XkbConfig rule

This rule allows you to write file maps as:
    xkb_keycodes
    <BLA> = 5;
    [...]
instead of the usual format which is:
    xkb_keycodes {
        <BLA> = 5;
        [...]
    };

This is not documented, It is also not used in xkeyboard-config, and I
have never run into it otherwise. It also only allows one map per file.

It *might* be used in some obscure place, but probably nothing we should
care about; the simplified grammar is more useful for us now.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agotest/interactive: allow -k to get any absolute path
Ran Benita [Sun, 30 Sep 2012 08:42:30 +0000 (10:42 +0200)]
test/interactive: allow -k to get any absolute path

Instead of looking for a keymap in test/data.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoDon't use %z printf format
Ran Benita [Sun, 30 Sep 2012 12:17:08 +0000 (14:17 +0200)]
Don't use %z printf format

Some libc's don't support it.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agorules: always initialize idx variable
Ran Benita [Sun, 30 Sep 2012 10:42:44 +0000 (12:42 +0200)]
rules: always initialize idx variable

gcc didn't catch this one.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agotest: add keycodes files which map directly to evdev codes
Ran Benita [Thu, 27 Sep 2012 18:16:12 +0000 (20:16 +0200)]
test: add keycodes files which map directly to evdev codes

This is a proof-of-concept for the long key names. The keycodes in the
file evdev-xkbcommon are autogenerated from linux/input.h, and uses the
names given there; all of the previous names are aliased to the new
names, so they continue to work with the symbols files, etc.

You can try it with 'sudo ./test/interactive -r evdev-xkbcommon -n 0'
The -n 0 means that we don't offset the evdev scan codes - just feed
them directly. The -r evdev-xkbcommon just means to use a new rules file
which makes us use the new keycodes file. (The only problem I can see is
with the MENU and LSGT names which has some conflicts).

Maybe some day xkeyboard-config could ship something similar, so that
the 8 offset is unneeded.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap-dump: make it look better with long key names
Ran Benita [Thu, 27 Sep 2012 19:30:29 +0000 (21:30 +0200)]
keymap-dump: make it look better with long key names

Not worth messing around with too much, just make it legible.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agotest/interactive: allow to set evdev offset
Ran Benita [Thu, 27 Sep 2012 18:44:16 +0000 (20:44 +0200)]
test/interactive: allow to set evdev offset

If we want to test a keymap without the usual 8 offset.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoFix type of keycode in parser and ast
Ran Benita [Thu, 27 Sep 2012 17:21:26 +0000 (19:21 +0200)]
Fix type of keycode in parser and ast

For some reason keycodes were listed under mapFlags in the yylval union.
Fix it and some sanity checks.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoDon't limit key names to 4 characters
Ran Benita [Thu, 27 Sep 2012 16:49:13 +0000 (18:49 +0200)]
Don't limit key names to 4 characters

Currently you can't give a key in xkb_keycodes a name of more than
XKB_KEY_NAME_LENGTH (= 4) chars. This is a pretty annoying and arbitrary
limitation; it leads to names such as <RTSH>, <COMP>, <PRSC>, <KPAD>
etc. which may be hard to decipher, and makes it impossible to give
more standard names (e.g. from linux/input.h) to keycodes.

The purpose of this, as far as I can tell, was to save memory and to
allow encoding a key name directly to a 32 bit value (unsigned long it
was).

We remove this limitation by just storing the names as atoms; this lifts
the limit, allows for easy comparison like the unsigned long thing, and
doesn't use more memory than previous solution. It also relieves us from
doing all of the annoying conversions to/from long.

This has a large diffstat only because KeyNameText, which is used a lot,
now needs to take the context in order to resolve the atom.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoxkbcomp/keymap: use default interpret in ApplyInterpsToKey
Ran Benita [Thu, 27 Sep 2012 07:19:12 +0000 (09:19 +0200)]
xkbcomp/keymap: use default interpret in ApplyInterpsToKey

This makes the code easier to follow and does more explicitly what the
xkblib spec says:
     If no matching symbol interpretation is found, the server uses a
     default interpretation where:
        sym = 0
        flags = XkbSI_AutoRepeat
        match = XkbSI_AnyOfOrNone
        mods = 0
        virtual_mod = XkbNoModifier
        act = SA_NoAction

If a level doesn't have any keysyms, we don't apply anything to it.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate: add missing const in get_one_sym
Ran Benita [Thu, 27 Sep 2012 19:11:11 +0000 (21:11 +0200)]
state: add missing const in get_one_sym

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoAdd xkb_state_key_get_one_sym
Daniel Stone [Thu, 27 Sep 2012 13:27:49 +0000 (23:27 +1000)]
Add xkb_state_key_get_one_sym

The trivial wrapper around xkb_state_key_get_syms that every user to
date has implemented.

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11 years agoFix size_t vs. %d warning
Daniel Stone [Wed, 26 Sep 2012 00:28:52 +0000 (10:28 +1000)]
Fix size_t vs. %d warning

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11 years agosymbols: get rid of autoType
Ran Benita [Tue, 25 Sep 2012 09:49:23 +0000 (11:49 +0200)]
symbols: get rid of autoType

The autoType variable is supposed to tell us whether the type was
explicitly specified by the user or was detected automatically according
to the keysyms. It then allows us to know whether to prints the type
when we dump the keymap to a string or not.

Right now it is not always set when we find an automatic type, according
to some apparently legacy rules. We change it to simply this: type
computed automatically? -> don't print.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: separate type-finding logic from CopySymbolsDef
Ran Benita [Tue, 25 Sep 2012 09:35:59 +0000 (11:35 +0200)]
symbols: separate type-finding logic from CopySymbolsDef

It's easier to follow this in isolation. Besides, previously the error
reporting wasn't done very well.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap: remove some more unneeded macros
Ran Benita [Mon, 24 Sep 2012 12:57:30 +0000 (14:57 +0200)]
keymap: remove some more unneeded macros

It clearer to just access the needed data directly.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap: store a pointer to the type in xkb_group instead of index
Ran Benita [Mon, 24 Sep 2012 12:41:09 +0000 (14:41 +0200)]
keymap: store a pointer to the type in xkb_group instead of index

Gets rid of some more unneeded indirection, including the XkbKeyType
macro.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap, symbols: improve xkb_key memory layout
Ran Benita [Mon, 24 Sep 2012 10:11:31 +0000 (12:11 +0200)]
keymap, symbols: improve xkb_key memory layout

Add struct xkb_group and xkb_level for use in xkb_key, to mirror how
it's done in KeyInfo, GroupInfo, LevelInfo in symbols.c. This
corresponds more nicely to the logical data layout (i.e. a key has
groups which have levels), and also removes a lot of copying and ugly
code due to the index indirections and separate arrays which were used
before.

This uses more memory in some places (e.g. we alloc an action for every
level even if the key doesn't have any) but less in other places (e.g.
we no longer have to pad each group to ->width levels). The numbers say
we use less overall.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: move keysyms into LevelInfo
Ran Benita [Mon, 24 Sep 2012 08:55:20 +0000 (10:55 +0200)]
symbols: move keysyms into LevelInfo

Instead of maintaining a syms array in the GroupInfo + sym_index's in
the levels. This simplifies the code somewhat.
In order not to alloc for every level instead of every group, we only do
it if the level has more than one keysym (with a union). Since for now
this is a special case, it actually works out better memory-wise.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: fix index-out-of-bounds in FindAutomaticType
Ran Benita [Mon, 24 Sep 2012 08:16:09 +0000 (10:16 +0200)]
symbols: fix index-out-of-bounds in FindAutomaticType

If we enter this branch, we have 3 <= width <= 4, so if the width is 3
than syms[3] is out of bounds.

Happily inherited from xkbcomp.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: remove unneeded optimization
Ran Benita [Mon, 24 Sep 2012 07:14:35 +0000 (09:14 +0200)]
symbols: remove unneeded optimization

The levels will be resized to the number of levels of the type anyway,
so removing useless levels from the end here is unneeded.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap: use our type for keymap->enabled_ctrls
Ran Benita [Sun, 23 Sep 2012 22:50:19 +0000 (00:50 +0200)]
keymap: use our type for keymap->enabled_ctrls

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoAdd missing declaration for _xkbcommon_parse (aka yyparse)
Daniel Stone [Mon, 24 Sep 2012 04:36:46 +0000 (14:36 +1000)]
Add missing declaration for _xkbcommon_parse (aka yyparse)

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11 years agokeymap.h: add note on why XKB_NUM_GROUPS is still there
Ran Benita [Sun, 23 Sep 2012 20:32:53 +0000 (22:32 +0200)]
keymap.h: add note on why XKB_NUM_GROUPS is still there

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap, symbols: use darray for num_groups
Ran Benita [Sun, 23 Sep 2012 20:12:43 +0000 (22:12 +0200)]
keymap, symbols: use darray for num_groups

Instead of using a static array of size XKB_NUM_GROUPS, because we want
to get rid of this limit.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: avoid possible access-out-of-bound due to explicit_group
Ran Benita [Sun, 23 Sep 2012 19:15:34 +0000 (21:15 +0200)]
symbols: avoid possible access-out-of-bound due to explicit_group

The code that handles group name statements currently does this:
    info->group_names[grp - 1 + info->explicit_group] = name;
Other than the fact that this addition makes no sense, it actually can
reach out of the bounds of the array (which is of size XKB_NUM_GROUPS)
in the (non-realistic) case where (grp - 1) is not 0 (i.e. the statement
is not name[Group1] = "foo").

We also change explicit_group to be XKB_LAYOUT_INVALID if not set
otherwise, instead of initializing it to 0; this is clearer and if
someone happens to write 'us:1' for some reason, it will discard the
other groups in the file as it should.

This entire explicit_group thing was clearly bolted on as an
afterthought.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: rename SymbolsInfo groupNames to group_names
Ran Benita [Sun, 23 Sep 2012 18:38:25 +0000 (20:38 +0200)]
symbols: rename SymbolsInfo groupNames to group_names

Just to match the matching field in the keymap.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap: don't use XKB_NUM_GROUPS for key->kt_index
Ran Benita [Sun, 23 Sep 2012 18:36:01 +0000 (20:36 +0200)]
keymap: don't use XKB_NUM_GROUPS for key->kt_index

One unneeded XKB_NUM_GROUPS less.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoAdd format argument to xkb_keymap_get_as_string
Ran Benita [Sun, 23 Sep 2012 15:52:51 +0000 (17:52 +0200)]
Add format argument to xkb_keymap_get_as_string

This function really needs a format argument, for symmetry with the
keymap creation functions. If we add new formats, we will almost
certainly want to add support for serializing it into a string. It would
also allow to convert from one format to another, etc.

The in the common case, the user would just want to use the format she
used to create the keymap; for that we add a special
XKB_KEYMAP_USE_ORIGINAL_FORMAT value, which will do that (it is defined
to -1 outside of the enum because I have a feeling we might want to use
0 for something else). To support this we need to keep the format inside
the keymap. While we're at it we also initialize keymap flags properly.

This changes the API, but the old xkb_map_get_as_string name works as
expected so this is the best time to do this.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoAdd return value the xkb_keysym_get_name
Ran Benita [Sun, 23 Sep 2012 14:57:16 +0000 (16:57 +0200)]
Add return value the xkb_keysym_get_name

This is useful to see whether the function was successful and whether
truncation occurred.
It just changes void -> int so shouldn't break API or ABI.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoImprove API doxygen documentation
Ran Benita [Sun, 23 Sep 2012 14:56:48 +0000 (16:56 +0200)]
Improve API doxygen documentation

To make it look better and a bit more structured and informative.
Not all of the functions are converted to doxygen format, so this is not
finished.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoAdd support for building doxygen API documentation
Ran Benita [Sat, 22 Sep 2012 12:02:54 +0000 (15:02 +0300)]
Add support for building doxygen API documentation

Simple HTML docs generated from the doxygen comments.
After running 'make' or 'make doc', try firefox doc/html/index.html to
see it (if you have doxygen). It's also installed with 'make install'.
You can use --enable-docs or --disable-docs, or specifically
--with-doxygen or --without-doxygen (autodetected, default yes).

The docs are currently not distributed in the tarball, because I
couldn't make it work properly in all cases :/

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoAPI: add _context prefix to log-related functions
Ran Benita [Sat, 22 Sep 2012 07:58:00 +0000 (10:58 +0300)]
API: add _context prefix to log-related functions

This is to follow the general scheme set by all of the other API
functions.
Since no one is using these functions yet, we don't (actually better
not) add the old names to xkbcommon-compat.h.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agokeymap: remove XkbKeyGetKeycode
Ran Benita [Sat, 22 Sep 2012 07:21:22 +0000 (10:21 +0300)]
keymap: remove XkbKeyGetKeycode

Because we keep the keycode inside the xkb_key now.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: convert KeyInfo->groups to darray
Ran Benita [Fri, 21 Sep 2012 23:05:48 +0000 (02:05 +0300)]
symbols: convert KeyInfo->groups to darray

Before it was a static array of size XKB_NUM_GROUPS.

The previous cleanups made this transition a bit easier. This is a
first step for removing the XKB_NUM_GROUPS hardcoded limit; but for now
we still check that the groups are < XKB_NUM_GROUPS (e.g. in
ResolveGroup and GetGroupIndex) until the keymap, etc. is worked out as
well.

This also makes us alloc quite a bit less (this is just rulescomp):
Before:
==51999==   total heap usage: 291,474 allocs, 291,474 frees, 21,458,334 bytes allocated
After:
==31394==   total heap usage: 293,595 allocs, 293,595 frees, 18,150,110 bytes allocated
This is because most rmlvo's don't use the full 4 layouts that KeyInfo
had always alloced statically before.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: fix memleak from default KeyInfo
Ran Benita [Fri, 21 Sep 2012 23:36:05 +0000 (02:36 +0300)]
symbols: fix memleak from default KeyInfo

If the default KeyInfo gets any keysyms or actions, it needs to be
free'd.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: disallow changing global defaults from within a key statement
Ran Benita [Fri, 21 Sep 2012 22:30:01 +0000 (01:30 +0300)]
symbols: disallow changing global defaults from within a key statement

Pretty much like e5fdbcbb9943e9fe, again it isn't used.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: fold PrepareKeyDef into CopySymbolsDef
Ran Benita [Fri, 21 Sep 2012 18:39:15 +0000 (21:39 +0300)]
symbols: fold PrepareKeyDef into CopySymbolsDef

The function is big enough already but it's nicer to read sequentially.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate: missing XKB_EXPORT on xkb_state_key_get_level
Ran Benita [Fri, 21 Sep 2012 18:16:20 +0000 (21:16 +0300)]
state: missing XKB_EXPORT on xkb_state_key_get_level

And some error handling.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoconfigure.ac: use XORG_TESTSET_CFLAG for -fvisibility=hidden
Ran Benita [Fri, 21 Sep 2012 17:09:17 +0000 (20:09 +0300)]
configure.ac: use XORG_TESTSET_CFLAG for -fvisibility=hidden

Probably shouldn't use CFLAGS for that but o well.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoconfigure.ac: add XORG_MEMORY_CHECK_FLAGS
Ran Benita [Fri, 21 Sep 2012 16:57:37 +0000 (19:57 +0300)]
configure.ac: add XORG_MEMORY_CHECK_FLAGS

Adds some memory checking (e.g. MALLOC_PERTURB_) to tests.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoconfigure.ac: remove XORG_CHECK_MALLOC_ZERO
Ran Benita [Fri, 21 Sep 2012 16:48:33 +0000 (19:48 +0300)]
configure.ac: remove XORG_CHECK_MALLOC_ZERO

We don't use its result.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoconfigure.ac: fix bug report url
Ran Benita [Fri, 21 Sep 2012 15:39:01 +0000 (18:39 +0300)]
configure.ac: fix bug report url

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate: correctly wrap state->locked_group and ->group
Ran Benita [Fri, 21 Sep 2012 13:30:01 +0000 (16:30 +0300)]
state: correctly wrap state->locked_group and ->group

These values weren't wrapped before, which caused group_index_is_active
to stop working after a few group switches.

Also, the current group-wrapping function didn't take into consideration
actions such as LockGroup=-1, which need to wrap around, etc.
xkb_layout_index_t is unsigned, but it was used to hold possibly
negative values (e.g. locked_group is 0 and gets a -1 action).

This group wrapping function should now act like the XkbAdjustGroup
function from xserver, and at least ./test/interactive doesn't bring up
any problems with group switching any more.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate: separate group wrapping/clamping to a function
Ran Benita [Fri, 21 Sep 2012 12:39:32 +0000 (15:39 +0300)]
state: separate group wrapping/clamping to a function

We'll need this function for wrapping our global effective group as
well.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate: special case effective group in layout_is_active
Ran Benita [Fri, 21 Sep 2012 09:45:58 +0000 (12:45 +0300)]
state: special case effective group in layout_is_active

Currently, xkb_state_layout_{index,name}_is_active may report multiple
groups as effective, because at looks at base,latched,locked separately.
But there can only be one effective group, which is computed from the
other three. So if XKB_STATE_EFFECTIVE is requested, just compare to the
effective group we have computed.

We also modify mod_{index,name}_is_active similarly, just for symmetry
(there the effective mask is just an OR of the other three so the
current test is correct).

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: remove useless identical groups optimization
Ran Benita [Fri, 21 Sep 2012 09:23:56 +0000 (12:23 +0300)]
symbols: remove useless identical groups optimization

What this code does is, in case someone compile a keymap like -layout
'us,us,us' then only one group would be created. If there is anything
which differentiates between any of the groups (e.g. a variant, another
layout), then this is not done.
This is pretty obscure, only saves a few kbytes in the final keymap, and
if the user asked for it, why not let her?

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agosymbols: avoid reverse iteration in PrepareKeyDef
Ran Benita [Fri, 21 Sep 2012 08:54:35 +0000 (11:54 +0300)]
symbols: avoid reverse iteration in PrepareKeyDef

No need for that.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoDon't choke on RMLVO layout string with holes
Ran Benita [Fri, 21 Sep 2012 08:14:39 +0000 (11:14 +0300)]
Don't choke on RMLVO layout string with holes

This old rules parser gives the same kccgst here, so in the interest of
staying compatible we shouldn't fix it there. Similarly we shouldn't
touch ParseIncludeMap, so this is the best place to handle this.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoRename map.{c,h} to keymap.{c,h}
Ran Benita [Fri, 21 Sep 2012 11:58:31 +0000 (14:58 +0300)]
Rename map.{c,h} to keymap.{c,h}

Seeing as we don't like "map" anymore.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agostate, map: check XkbKey != NULL where missing
Ran Benita [Fri, 21 Sep 2012 11:55:46 +0000 (14:55 +0300)]
state, map: check XkbKey != NULL where missing

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoMove xkb_state functions from map.c to state.c
Ran Benita [Fri, 21 Sep 2012 10:30:42 +0000 (13:30 +0300)]
Move xkb_state functions from map.c to state.c

Seems more appropriate.
Only change is to turn some xkb_state_get_map functions to direct
state->keymap.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoRename private xkb_map_new to xkb_keymap_new
Ran Benita [Fri, 21 Sep 2012 11:00:00 +0000 (14:00 +0300)]
Rename private xkb_map_new to xkb_keymap_new

To be consistent with the API rename.

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoDon't use xkbcommon-compat names in internal code
Ran Benita [Fri, 21 Sep 2012 11:44:17 +0000 (14:44 +0300)]
Don't use xkbcommon-compat names in internal code

Signed-off-by: Ran Benita <ran234@gmail.com>
11 years agoPromote keymap enumeration API to public
Daniel Stone [Wed, 19 Sep 2012 06:19:57 +0000 (16:19 +1000)]
Promote keymap enumeration API to public

Rename the functions to get keysyms by key/layout/level to fit with the
recent public API renames, and expose them.

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11 years agoAPI change: Rename xkb_map_* and group -> layout
Daniel Stone [Wed, 12 Sep 2012 18:55:06 +0000 (19:55 +0100)]
API change: Rename xkb_map_* and group -> layout

Move xkb_map_* functions to xkb_keymap_*, xkb_key_* functions under
either xkb_keymap or xkb_state, and rename groups to layout in all
user-visible API.

Backwards-compatible hooks are provided, such that old source will
build, but silently mangled to the new names, and old binaries will
also continue to work.

Signed-off-by: Daniel Stone <daniel@fooishbar.org>