platform/upstream/kmscon.git
11 years agotest_output: add blitting support
David Herrmann [Tue, 31 Jul 2012 08:31:40 +0000 (10:31 +0200)]
test_output: add blitting support

When opengl rendering is not available on the target device, we now fall
back to software rendering. Instead of drawing a nice gradient we now draw
a white screen to the target device to avoid heavy calculations.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agouterm: video: add fill() helper
David Herrmann [Tue, 31 Jul 2012 08:29:52 +0000 (10:29 +0200)]
uterm: video: add fill() helper

When using unaccelerated video we want to be able to fill a region of the
target framebuffer with a solid color. Hence, this adds the fill() helper
function with similar semantics to blit() but it uses a solid RGB color
value to fill in the framebuffers.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agouterm: video: change blit'ting logic
David Herrmann [Tue, 31 Jul 2012 08:22:39 +0000 (10:22 +0200)]
uterm: video: change blit'ting logic

Instead of passing width/height separately, we now use the values from the
buffer object. The caller has to manipulate the buffer object to change
these values. In fact, they can simply create a buffer object on the stack
with the same values copied from the real buffer and just adjust the
offset, width, height and stride. With the help of the stride value, it is
possible to even shrink the buffer horizontally.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agotest_input: fix compilation for kbd_keysym_to_string()
David Herrmann [Tue, 31 Jul 2012 08:01:32 +0000 (10:01 +0200)]
test_input: fix compilation for kbd_keysym_to_string()

Since we moved to a runtime backend system for the input subsystem, we
cannot access the internal keysym_to_string() helpers anymore. Hence, use
the recently introduced uterm-input forwarding helper.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agouterm: input: add uterm_input_keysym_to_string()
David Herrmann [Tue, 31 Jul 2012 08:00:03 +0000 (10:00 +0200)]
uterm: input: add uterm_input_keysym_to_string()

There is no much gain from having an internal kbd_desc_keysym_to_string()
function if we cannot get access to the kbd_desc object. Therefore, add a
forward helper to uterm_input() which forwards the call to its internal
kbd_desc object. This allows outside access to the keysym_to_string()
function.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agotext: font: add pango font backend
David Herrmann [Mon, 30 Jul 2012 15:44:02 +0000 (17:44 +0200)]
text: font: add pango font backend

The pango font backend is similar to the currently used older backend but
provides the new API. It is modular so we can disable it if not needed.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agotext: font: replace x/y offsets with baseline attribute
David Herrmann [Mon, 30 Jul 2012 15:42:21 +0000 (17:42 +0200)]
text: font: replace x/y offsets with baseline attribute

When rendering underlines we need the baseline attribute. Therefore,
replace the unused x/y offsets with a baseline attribute.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agobuild: add text-subsystem to build-sources
David Herrmann [Mon, 30 Jul 2012 09:09:57 +0000 (11:09 +0200)]
build: add text-subsystem to build-sources

This finally adds the new font renderers to the build-sources so they are
actually built.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoexternal: htable: remove config.h inclusion
David Herrmann [Mon, 30 Jul 2012 09:08:55 +0000 (11:08 +0200)]
external: htable: remove config.h inclusion

There is no need to include config.h manually so remove this to avoid
compilation errors when compiling external applications.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agotext: font: Add 8x16 font
David Herrmann [Sat, 28 Jul 2012 14:40:22 +0000 (16:40 +0200)]
text: font: Add 8x16 font

The 8x16 font is a static in-memory font that can be used as safe
fallback. It does not allow scaling or other font decorations so it's
really just for very basic text-layouts.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agotext: font: add x/y offsets for glyphs
David Herrmann [Sat, 28 Jul 2012 14:37:22 +0000 (16:37 +0200)]
text: font: add x/y offsets for glyphs

A single glyph might be bigger/smaller than the other glyphs so allow them
to be positioned. As we are not interested in details like baselines, we
simply use an x/y offset.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agotext_font: add new font renderer subsystem
David Herrmann [Sat, 28 Jul 2012 11:12:54 +0000 (13:12 +0200)]
text_font: add new font renderer subsystem

When running as emergency console, we must correctly deal with missing
libraries. Therefore, our font renderers must be modular so if freetype2
is not found we must be able to load another font. Therefore, this
introduces a new font-subsystem which can add/remove font-renderers
on-the-fly.

The real font-renderer backends will follow. This only provides the
modular infrastructure.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agouterm: video: replace bpp with format id
David Herrmann [Sun, 22 Jul 2012 14:16:51 +0000 (16:16 +0200)]
uterm: video: replace bpp with format id

Instead of using bpp as parameter for buffers we now use format
identifiers so we can add different formats with the same bpp. Please note
that currently only xrgb32 is supported.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agomisc: free hashtable on destruction
David Herrmann [Sat, 21 Jul 2012 21:32:07 +0000 (23:32 +0200)]
misc: free hashtable on destruction

Fix memory leak as we didn't free the hashtable memory after destruction.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agovideo: fbdev: fix freeing fake display
David Herrmann [Sat, 21 Jul 2012 19:01:22 +0000 (21:01 +0200)]
video: fbdev: fix freeing fake display

We currently leak the fake display that is created for every fbdev video
device. Fix this by simply freeing this device during destruction.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agovt: fix dropping reference on deallocation
David Herrmann [Sat, 21 Jul 2012 18:45:30 +0000 (20:45 +0200)]
vt: fix dropping reference on deallocation

The vt allocation returns a referenced object so deallocation should
correctly drop it again. We already depend on this behavior so fix it.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoeloop: prevent recursive dispatching
David Herrmann [Sat, 21 Jul 2012 18:20:09 +0000 (20:20 +0200)]
eloop: prevent recursive dispatching

We do not support recursive dispatching so prevent it explicitely.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoeloop: fix invalid memory access during dispatch
David Herrmann [Sat, 21 Jul 2012 18:14:38 +0000 (20:14 +0200)]
eloop: fix invalid memory access during dispatch

We use a temporary array of "to-be-dispatched" event sources while
dispatching. However, we incorrectly set the "count" variable so sources
may access invalid memory when removing themself from the event loop.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoconf: fix invalid memory access in strip_spaces()
David Herrmann [Sat, 21 Jul 2012 18:12:00 +0000 (20:12 +0200)]
conf: fix invalid memory access in strip_spaces()

We must not assume that the string is longer than 0 characters. Therefore,
check whether we would access invalid memory before the string when
removing trailing whitespaces.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoRefactor input backend-system
David Herrmann [Sat, 21 Jul 2012 17:06:50 +0000 (19:06 +0200)]
Refactor input backend-system

This is a rewrite of the input system. The backends itself are not
modified. However, it is now possible to have multiple backends and change
them on runtime.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoui: dispatch redraws in UI instead of terminal
David Herrmann [Sat, 21 Jul 2012 15:22:05 +0000 (17:22 +0200)]
ui: dispatch redraws in UI instead of terminal

We now schedule the terminal redraw from the UI to avoid having the
terminal using uterm-video directly.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoterminal: allow external redraw-schedule
David Herrmann [Sat, 21 Jul 2012 14:40:05 +0000 (16:40 +0200)]
terminal: allow external redraw-schedule

Allow UI subsystem to schedule redraws.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoui: explicitely remove displays from terminals
David Herrmann [Sat, 21 Jul 2012 13:47:51 +0000 (15:47 +0200)]
ui: explicitely remove displays from terminals

Move display-removal from terinal subsystem to UI subsystem to avoid
needing video-callback in the terminal subsystem.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoterminal: add API to remove displays
David Herrmann [Sat, 21 Jul 2012 13:44:41 +0000 (15:44 +0200)]
terminal: add API to remove displays

This new function allows external subsystems to remove displays from the
terminal objects. It is required to make the terminal subsystem
independent of the uterm-video subsystem to allow different displays from
different video-objects to be part of a terminal.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoui: arrange video objects in a list
David Herrmann [Sat, 21 Jul 2012 13:38:04 +0000 (15:38 +0200)]
ui: arrange video objects in a list

If multiple video objects are added to a UI object, we need to manage them
in a list to allow each of them to be added to a running terminal.

This only changes the internal structure but does still create the video
object when creating the UI object. This is, because the terminal
subsystem depends on uterm-video and this needs to be resolved, first.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
11 years agoterminal: be more verbose when adding displays
David Herrmann [Sat, 21 Jul 2012 13:32:19 +0000 (15:32 +0200)]
terminal: be more verbose when adding displays

When adding displays, we know print errors if we cannot allocate buffers
or other resources. This helps debugging video problems where the device
is ready but the terminal is not printed.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconf: add config-file parser
David Herrmann [Tue, 17 Jul 2012 20:47:15 +0000 (22:47 +0200)]
conf: add config-file parser

This again refactors the whole config subsystem but this should be the
last time. We now have generic parsers for booleans and strings and don't
leak any memory, anymore. Furthermore, this adds a config-file parser so
common options can now be placed into /etc/kmscon.conf or ~/.kmscon.conf.

The config files parse the same arguments as the command-line and the
command-line always has precedence even though it is parsed first.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconf: add generic argument array
David Herrmann [Mon, 16 Jul 2012 17:35:05 +0000 (19:35 +0200)]
conf: add generic argument array

We want to be able to parse our argument-list from other sources, too, so
put them into a separate array so we are not dependent of getopt() and
others.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: remove glib dependency
David Herrmann [Sun, 15 Jul 2012 14:41:26 +0000 (16:41 +0200)]
build: remove glib dependency

We no longer require glib, yeah! Drop the mandatory glib dependency from
all build-files. Notice that there is not a single dependency, anymore,
except for libc.

We still have a not-mentioned pango dependency but this can be replaced
with freetype or a static font renderer so we currently do not care.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agounicode: implement ucs4 to utf8 encoding
David Herrmann [Sun, 15 Jul 2012 14:29:34 +0000 (16:29 +0200)]
unicode: implement ucs4 to utf8 encoding

This is the last glib dependency so add a short conversion helper and we
can finally drop glib. Anyway, the pango libs still depend on glib so
there is currently still a glib dependency, but it is no longer direct and
we can always choose the freetype font renderer to drop it.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agounicode: use kmscon_array instead of GArray
David Herrmann [Sun, 15 Jul 2012 12:45:19 +0000 (14:45 +0200)]
unicode: use kmscon_array instead of GArray

Replace the glib dependency with the new in-house dynamic-array
implementation. Now there is only one utf8 glib dependency left that we
need to convert so we can drop glib-dependency.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agomisc: add dynamic-array implementation
David Herrmann [Sun, 15 Jul 2012 12:32:44 +0000 (14:32 +0200)]
misc: add dynamic-array implementation

This adds a new data-type: kmscon_array
It is used as a dynamicly growing array that can be freely accessed. We
currently use the glib type in unicode.c but can finally replace it with
our own implementation.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole/font: draw bg only if needed
David Herrmann [Sun, 15 Jul 2012 10:55:50 +0000 (12:55 +0200)]
console/font: draw bg only if needed

If the background color is identical to the background-color of the glyph
to be drawn, then we can skip drawing the background. This increases
performance a _lot_.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: fix reset_state() resetting only saved-states
David Herrmann [Sun, 15 Jul 2012 10:54:19 +0000 (12:54 +0200)]
vte: fix reset_state() resetting only saved-states

reset_state() is used to reset the saved state and not to reset the actual
state. We currently get invalid character-maps as we never initialize them
correctly. This fixes all these vte_map() related bugs.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: implement RIS hard reset
David Herrmann [Sun, 15 Jul 2012 10:06:57 +0000 (12:06 +0200)]
vte: implement RIS hard reset

RIS is used to "hard"-reset the terminal. We simply clear every state
known and reset to initial state.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: send primary-DA on 7bit DECID
David Herrmann [Sun, 15 Jul 2012 10:02:18 +0000 (12:02 +0200)]
vte: send primary-DA on 7bit DECID

Also send the primary-DA when receiving 7bit variant of DECID.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: send primary DA on DECID
David Herrmann [Sun, 15 Jul 2012 09:59:21 +0000 (11:59 +0200)]
vte: send primary DA on DECID

The DECID escape should be followed by a primary-DA answer. To avoid
copying the same primary-DA sources, we put the primary-DA into a static
helper function.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: implement device status reports (DSR)
David Herrmann [Sun, 15 Jul 2012 09:55:51 +0000 (11:55 +0200)]
vte: implement device status reports (DSR)

DSRs are used to query the terminal for data. This includes general status
reports but also cursor positions. We currently only implement VT220
features. DEC later introduced further modes to query more advanced
interfaces.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: stop advertising UDK support
David Herrmann [Sun, 15 Jul 2012 09:36:35 +0000 (11:36 +0200)]
vte: stop advertising UDK support

We do not support user-defined-keys (UDK) so do not advertise it in
primary-DA lines.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: implement CHT, CBT and tabulators
David Herrmann [Sun, 15 Jul 2012 09:30:51 +0000 (11:30 +0200)]
vte: implement CHT, CBT and tabulators

CHT and CBT are used to move multiple tab-stops with a single call. The \t
char moves only one tab-stop forward. All are conformant to the vt510
specs.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: implement tab movement
David Herrmann [Sun, 15 Jul 2012 09:26:11 +0000 (11:26 +0200)]
console: implement tab movement

Implement left and right tab movement in console backend. This is used by
the VTE layer to interpret different VT escape sequences and the tabulator
character.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte/console: implement protected erase
David Herrmann [Sat, 14 Jul 2012 21:51:56 +0000 (23:51 +0200)]
vte/console: implement protected erase

Protected erase means erasing parts of the screen but preventing protected
characters from being erase. Protecting a character is done by setting
character attributes similarly to colors and backgrounds. Both are reset
on hard erase, soft-reset or screen clearance.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: support ECH CSI
David Herrmann [Sat, 14 Jul 2012 18:24:10 +0000 (20:24 +0200)]
vte: support ECH CSI

The ECH CSI is used to erase partial lines.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: fix invalid cursor state after resize
David Herrmann [Sat, 14 Jul 2012 18:00:06 +0000 (20:00 +0200)]
console: fix invalid cursor state after resize

Set cursor state to next valid position on resize to avoid invalid cursor
states.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: allow erasing partial lines
David Herrmann [Sat, 14 Jul 2012 17:55:35 +0000 (19:55 +0200)]
console: allow erasing partial lines

Later VTs allow erasing only partial lines so add support for that in the
console backend.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: extend SGR/color handling
David Herrmann [Sat, 14 Jul 2012 17:49:55 +0000 (19:49 +0200)]
vte: extend SGR/color handling

This adds full xterm 256color support and improves SGR handling in
general.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: fix application cursor keys
David Herrmann [Sat, 14 Jul 2012 17:34:04 +0000 (19:34 +0200)]
vte: fix application cursor keys

This is probably a copy/paste bug but we sent the wrong application cursor
key sequences. This is only visible in xterm-mode so nobody noticed until
now.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: hide cursor if requested
David Herrmann [Sat, 14 Jul 2012 17:31:37 +0000 (19:31 +0200)]
console: hide cursor if requested

When the HIDE_CURSOR flag is set, we must not draw the cursor.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: tune SGR handling
David Herrmann [Sat, 14 Jul 2012 15:38:32 +0000 (17:38 +0200)]
vte: tune SGR handling

We definitely do not need to check the unset parameters so shorten the
loop so unparsed parameters are not checked.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole/vte: implement ICH DCH
David Herrmann [Sat, 14 Jul 2012 15:33:28 +0000 (17:33 +0200)]
console/vte: implement ICH DCH

ICH is used to insert characters into the current line. DCH is used to
delete characters from the current line. They act as described in vt220
manual.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: support "protect" character attribute
David Herrmann [Sat, 14 Jul 2012 14:49:35 +0000 (16:49 +0200)]
console: support "protect" character attribute

VT220 allows protecting attributes. That is, they are not erased by
special new erase-commands. The normal erase-commands still erase all
characters.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: implement TBC
David Herrmann [Sat, 14 Jul 2012 14:24:08 +0000 (16:24 +0200)]
vte: implement TBC

Implement TBC CSI which clears the current or all tab-stops. This is
according to VT220 rules.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: allow setting tab-stops
David Herrmann [Sat, 14 Jul 2012 14:18:42 +0000 (16:18 +0200)]
vte: allow setting tab-stops

Allow applications to set new tab-stops according to vt220 rules.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: add tab-stop helpers
David Herrmann [Sat, 14 Jul 2012 12:21:43 +0000 (14:21 +0200)]
console: add tab-stop helpers

Add three helpers to set and reset tab-stops. They will be used by the VTE
layer to add and remove tab-stops when requested by the application.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: fix tab ruler to be horizontal
David Herrmann [Sat, 14 Jul 2012 12:20:39 +0000 (14:20 +0200)]
console: fix tab ruler to be horizontal

Whoops, current tab ruler turned out to be vertical. That's definitely not
what we want. Therefore, turn it around to be horizontal so we can
correctly move forward/backward in the console.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: implement console soft-reset
David Herrmann [Sat, 14 Jul 2012 12:12:51 +0000 (14:12 +0200)]
console: implement console soft-reset

On soft-reset we reset the console to the initial state but keep current
line-state. That is, scrollback and cursor position are kept but the
non-visible state is reset.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoAdd optional dbus support
David Herrmann [Sat, 14 Jul 2012 12:00:23 +0000 (14:00 +0200)]
Add optional dbus support

As we might need dbus for inter-process-communication later, this adds a
very rudimentary dbus client integration for epoll-based loops.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: add tab-ruler support
David Herrmann [Sat, 14 Jul 2012 11:53:52 +0000 (13:53 +0200)]
console: add tab-ruler support

The tab-ruler is used to set console tab-stops. We use an array with one
cell per column that is set to true if it is a tab-stop and false if it is
not.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: reset margins on soft-reset
David Herrmann [Sat, 14 Jul 2012 11:43:02 +0000 (13:43 +0200)]
vte: reset margins on soft-reset

Instruct console code to reset the console margins to default values (that
is, destroy the margins) on console soft-reset.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte: implement DECSC DECRC
David Herrmann [Sat, 14 Jul 2012 11:39:43 +0000 (13:39 +0200)]
vte: implement DECSC DECRC

DECSC is used to save the current console state. DECRC can restore the
console to a previously saved state.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoconsole: allow retrieving cursor state
David Herrmann [Sat, 14 Jul 2012 11:36:46 +0000 (13:36 +0200)]
console: allow retrieving cursor state

This adds two functions to retrieve x/y positions of the cursor. This can
be used to save and restore cursor positions.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoui: reopen terminal on HUP
David Herrmann [Sat, 14 Jul 2012 10:15:20 +0000 (12:15 +0200)]
ui: reopen terminal on HUP

We now automatically reopen the pty when the child process died. This will
most-often simply restart the shell or login program.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoterminal: close pty before opening it
David Herrmann [Sat, 14 Jul 2012 10:14:25 +0000 (12:14 +0200)]
terminal: close pty before opening it

There is no explicit call to reopen the underlying pty so we simply
force-close it before (re)-opening it. This will allow the UI to reopen a
pty when the child died.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoxkb: fix null dereference
Ran Benita [Thu, 5 Jul 2012 10:16:40 +0000 (13:16 +0300)]
xkb: fix null dereference

Just an obvious silly mistake.

Signed-off-by: Ran Benita <ran234@gmail.com>
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agotests: fix tests to compile again
David Herrmann [Sat, 7 Jul 2012 11:45:29 +0000 (13:45 +0200)]
tests: fix tests to compile again

Whoops, I totally forgot about them. Fix the headers to be compatible with
eloop again.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoRelease kmscon-2
David Herrmann [Sun, 1 Jul 2012 18:29:12 +0000 (20:29 +0200)]
Release kmscon-2

This is the second release of kmscon. It's again a development release but
should now be good enough so it can run on any linux system.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoUpdate README
David Herrmann [Sun, 1 Jul 2012 18:26:30 +0000 (20:26 +0200)]
Update README

Fix the dependency information and add several TODO notes.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agounicode: replace glib types with native types
David Herrmann [Sun, 1 Jul 2012 17:35:16 +0000 (19:35 +0200)]
unicode: replace glib types with native types

There is really no need to use these glib types here. They are relicts
from the time when we used the glib hashtable so we can safely replace
them now.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agomisc: change hashtable compare function to return bool
David Herrmann [Sun, 1 Jul 2012 17:29:33 +0000 (19:29 +0200)]
misc: change hashtable compare function to return bool

It really doesn't make sense to expect an integer here as memcmp() and
friends use an integer, too, but in reversed logic. So use bool to avoid
confusion.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agomisc: remove glib dependency
David Herrmann [Sun, 1 Jul 2012 17:13:16 +0000 (19:13 +0200)]
misc: remove glib dependency

This adds a new drop-in replacement for the glib hashtable implementation.
The hash table can be found at github: github.com/rustyrussel/ccan

It's licensed under the terms of the LGPL and perfect for our
implementation. Please see COPYING for license information.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agouterm: monitor: make systemd optional
David Herrmann [Sun, 1 Jul 2012 14:43:09 +0000 (16:43 +0200)]
uterm: monitor: make systemd optional

If systemd is not used for multi-seat support, we simply fake-add seat
"seat0" and avoid looking for the "seat" tag. However, if devices still
use ID_SEAT, we still parse it but all other devices are taken for seat0
by default.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoAdd NEWS file
David Herrmann [Sun, 1 Jul 2012 14:31:54 +0000 (16:31 +0200)]
Add NEWS file

Whenever we do a release, this file will contain all the major changes as
a short list.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: remove TODO from DIST_EXTRA
David Herrmann [Sun, 1 Jul 2012 14:18:23 +0000 (16:18 +0200)]
build: remove TODO from DIST_EXTRA

The TODO list was moved to github long ago so remove this dead reference.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoeloop: fix signal creation
David Herrmann [Sun, 1 Jul 2012 14:17:04 +0000 (16:17 +0200)]
eloop: fix signal creation

The previous fix incorrectly registered new signals always to the last
found signal which is definitely incorrect. Therefore, we now correctly
traverse the list and register new signals as new signals.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agouterm: vt: correctly initialize ret to 0
David Herrmann [Sun, 1 Jul 2012 14:11:10 +0000 (16:11 +0200)]
uterm: vt: correctly initialize ret to 0

We need to return "true", not "false" if a mode is unknown. Otherwise, we
will block the VT subsystem.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: correctly clear GBM/EGL flags
David Herrmann [Sun, 1 Jul 2012 14:09:24 +0000 (16:09 +0200)]
build: correctly clear GBM/EGL flags

When building without DRM we should correctly clear the GBM and EGL flags.
Otherwise, we will be linking them either way.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoeloop: silence gcc warning
David Herrmann [Sun, 1 Jul 2012 13:49:36 +0000 (15:49 +0200)]
eloop: silence gcc warning

Gcc warns about an uninitialized variable (which technically is correct).
However, there is really no way this can really happen. But to make gcc
happy (and to enhance code readability) we now depend on !sig whether the
list-search was successful.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agollog: make debug statements produce real code
David Herrmann [Sun, 1 Jul 2012 13:47:11 +0000 (15:47 +0200)]
llog: make debug statements produce real code

Instead of defining them to nothing we now produce real code which
evaluates to "void", though. This allows us to use the macros whereever an
rvalue can be used.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agouterm: vt: silence gcc warning
David Herrmann [Sun, 1 Jul 2012 13:45:54 +0000 (15:45 +0200)]
uterm: vt: silence gcc warning

We initialize the variable to "true" to silence gcc warnings that we might
get an uninitialized variable (which we really cannot get here).

Anyway, in the future, if the number of types may increase, the correct
way to deal with unknown types is returning "true" so do this by default
now.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte/console: implement CSI 'M' (DL: delete line)
David Herrmann [Sun, 1 Jul 2012 13:35:28 +0000 (15:35 +0200)]
vte/console: implement CSI 'M' (DL: delete line)

The 'M' CSI mode is used to delete lines. This implements this mode
similar to the "INSERT LINES" CSI.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agovte/console: implement CSI mode L (insert line: IL)
David Herrmann [Sun, 1 Jul 2012 13:27:10 +0000 (15:27 +0200)]
vte/console: implement CSI mode L (insert line: IL)

The IL CSI ('L') is used to insert a given number of lines at the current
cursor position. All lines below are moved down.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: make opengl optional
David Herrmann [Sun, 1 Jul 2012 12:59:43 +0000 (14:59 +0200)]
build: make opengl optional

This removes the mode where we compiled uterm with OpenGL instead of
OpenGLES2 (it was broken anyway) and makes it fully optional now.

gl_shader.h is no longer compiled if OpenGL is not available and provides
dummy helpers instead.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agogl: add wrappers for glClear and glClearColor
David Herrmann [Sun, 1 Jul 2012 12:39:30 +0000 (14:39 +0200)]
gl: add wrappers for glClear and glClearColor

This helps us moving opengl dependencies into a single source file so we
can easily disable it.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agomain: use UTERM_VIDEO_DUMB as fallback when DRM is not available
David Herrmann [Sun, 1 Jul 2012 12:31:50 +0000 (14:31 +0200)]
main: use UTERM_VIDEO_DUMB as fallback when DRM is not available

If the uterm video object fails to initialize the DRM device, then we try
again with the dumb device. Only if both devices fail, we drop the device
and continue.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agouterm: add dumb-drm backend
David Herrmann [Sun, 1 Jul 2012 12:28:26 +0000 (14:28 +0200)]
uterm: add dumb-drm backend

Nearly all drm drivers provide a GEM/TTM buffer backend called "dumb
buffers". These buffers can simply be mmap'ped like fbdev device so 2D
acceleration is available. This patch adds a backend to uterm-video that
uses these buffers. It is quite similar to the drm backend but removes all
the egl/gl/gles2 dependencies.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: rewrite configure.ac
David Herrmann [Sat, 30 Jun 2012 17:52:20 +0000 (19:52 +0200)]
build: rewrite configure.ac

Remove all obsolete code and make it more readable. Nearly all features
can now be configured. However, the code doesn't work correctly if udev or
systemd is removed. That will be fixed soon, though.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agouterm: monitor: refactor systemd code
David Herrmann [Sat, 30 Jun 2012 10:53:23 +0000 (12:53 +0200)]
uterm: monitor: refactor systemd code

Move all systemd dependencies into local helper functions so we can easily
make them optional.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: move systemd dependencies to libuterm
David Herrmann [Fri, 29 Jun 2012 11:00:00 +0000 (13:00 +0200)]
build: move systemd dependencies to libuterm

We use the sd-login library in uterm exclusively so move the dependecy to
libuterm.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: move vt.[hc] to libuterm
David Herrmann [Fri, 29 Jun 2012 10:59:25 +0000 (12:59 +0200)]
build: move vt.[hc] to libuterm

The kmscon VT layer is used in libuterm exclusively so build it as part of
it.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agouterm: remove libudev.h includes if not needed
David Herrmann [Fri, 29 Jun 2012 10:49:37 +0000 (12:49 +0200)]
uterm: remove libudev.h includes if not needed

All udev-dependencies are now moved into uterm-monitor. This allows us to
easily make udev optional for hotplug-less systems or emergency setups.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: move uterm into shared library
David Herrmann [Fri, 29 Jun 2012 10:47:54 +0000 (12:47 +0200)]
build: move uterm into shared library

The uterm code was created to allow other applications to easily build new
user-space terminals for linux machines. Therefore, put it into a separate
library and install the header files correctly.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: move eloop into shared library
David Herrmann [Fri, 29 Jun 2012 10:37:02 +0000 (12:37 +0200)]
build: move eloop into shared library

We use the eloop code in several other projects so move it into a shared
library to allow code-sharing.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoxkb: first get keysyms, then update state
Ran Benita [Wed, 27 Jun 2012 10:23:38 +0000 (13:23 +0300)]
xkb: first get keysyms, then update state

This is the correct order, as specified in xkb_state_update_key header
comment.

Signed-off-by: Ran Benita <ran234@gmail.com>
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoxkb: only repeat keys when they're supposed to repeat
Ran Benita [Wed, 27 Jun 2012 10:11:23 +0000 (13:11 +0300)]
xkb: only repeat keys when they're supposed to repeat

Support for this was added upstream, we can use it now. This mostly
means that modifiers won't repeat anymore.

Signed-off-by: Ran Benita <ran234@gmail.com>
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agoxkb: use unicode conversion from xkbcommon
Ran Benita [Wed, 27 Jun 2012 10:08:41 +0000 (13:08 +0300)]
xkb: use unicode conversion from xkbcommon

Support for this was added upstream, so we should avoid keeping the
entire conversion table twice in (readonly) memory. The old files are
still used by the dumb backend.

Signed-off-by: Ran Benita <ran234@gmail.com>
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: move external sources into libkmscon-static
David Herrmann [Sun, 24 Jun 2012 19:15:08 +0000 (21:15 +0200)]
build: move external sources into libkmscon-static

Move all external sources into this library so we can use them everyone
but also be sure that we can link them statically. We will need this
guarantee later when adding LGPL stuff to libkmscon-static.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agodoc: fix header of gtk-doc makefile
David Herrmann [Sun, 24 Jun 2012 19:11:57 +0000 (21:11 +0200)]
doc: fix header of gtk-doc makefile

It still used the old name. So convert it to use the more general name as
we are building all documentation into one global document.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: add comments to Makefile.am
David Herrmann [Sun, 24 Jun 2012 19:11:19 +0000 (21:11 +0200)]
build: add comments to Makefile.am

Add more comments to Makefile.am to make it more readable.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agobuild: put static_* files into separate library
David Herrmann [Sun, 24 Jun 2012 18:43:34 +0000 (20:43 +0200)]
build: put static_* files into separate library

We now build all small helpers into a separate small library that can be
linked statically into all our others. That is, we don't need to keep
backwards compatibility or anything inside this library.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
12 years agostatic: move statically linked subsystems to static_*
David Herrmann [Sun, 24 Jun 2012 18:35:22 +0000 (20:35 +0200)]
static: move statically linked subsystems to static_*

Small stuff that is not worth putting into a separate library is no moved
into the "static" library which is statically linked into all our
subsystems.

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