lnx-keyboard.c File Reference
#include "dmxinputinit.h"
#include "lnx-keyboard.h"
#include "inputstr.h"
#include <X11/Xos.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <signal.h>
#include <sys/vt.h>
#include <sys/kd.h>
#include <termios.h>
#include "atKeynames.h"
#include <linux/keyboard.h>
#include <xkbsrv.h>

Data Structures

struct  _myPrivate

Defines

#define GETPRIV
#define LOG0(f)   dmxLog(dmxDebug,f)
#define LOG1(f, a)   dmxLog(dmxDebug,f,a)
#define LOG2(f, a, b)   dmxLog(dmxDebug,f,a,b)
#define LOG3(f, a, b, c)   dmxLog(dmxDebug,f,a,b,c)
#define FATAL0(f)   dmxLog(dmxFatal,f)
#define FATAL1(f, a)   dmxLog(dmxFatal,f,a)
#define FATAL2(f, a, b)   dmxLog(dmxFatal,f,a,b)
#define MOTIONPROC   dmxMotionProcPtr
#define ENQUEUEPROC   dmxEnqueueProcPtr
#define CHECKPROC   dmxCheckSpecialProcPtr
#define SWITCHRETPROC   dmxVTSwitchReturnProcPtr
#define BLOCK   DMXBlockType
#define MESSAGE   "\033c\n\n\nDMX taking input from this console..."
#define FINALMESSAGE   "\033cDMX terminated."
#define NUM_AT2LNX   (sizeof(at2lnx) / sizeof(at2lnx[0]))
#define NUM_STATE_ENTRIES   (256/32)
#define SYSCALL(call)   while(((call) == -1) && (errno == EINTR))

Typedefs

typedef struct _myPrivate myPrivate

Functions

static int kbdLinuxKeyDown (myPrivate *priv, int keyCode)
static void kbdLinuxKeyState (myPrivate *priv, int type, int keyCode)
pointer kbdLinuxCreatePrivate (DeviceIntPtr pKeyboard)
void kbdLinuxDestroyPrivate (pointer priv)
void kbdLinuxBell (DevicePtr pDev, int percent, int volume, int pitch, int duration)
void kbdLinuxCtrl (DevicePtr pDev, KeybdCtrl *ctrl)
static int kbdLinuxGetFreeVTNumber (void)
static int kbdLinuxOpenVT (int vtno)
static int kbdLinuxGetCurrentVTNumber (int fd)
static int kbdLinuxActivate (int fd, int vtno, int setSig)
void kbdLinuxVTPreSwitch (pointer p)
void kbdLinuxVTPostSwitch (pointer p)
int kbdLinuxVTSwitch (pointer p, int vt, void(*switch_return)(pointer), pointer switch_return_data)
static void kbdLinuxVTSignalHandler (int sig)
static void kbdLinuxOpenConsole (DevicePtr pDev)
static void kbdLinuxCloseConsole (DevicePtr pDev)
void kbdLinuxInit (DevicePtr pDev)
static int kbdLinuxPrefix0Mapping (unsigned char *scanCode)
static int kbdLinuxPrefixMapping (myPrivate *priv, unsigned char *scanCode)
static void kbdLinuxConvert (DevicePtr pDev, unsigned char scanCode, ENQUEUEPROC enqueue, CHECKPROC checkspecial, BLOCK block)
void kbdLinuxRead (DevicePtr pDev, MOTIONPROC motion, ENQUEUEPROC enqueue, CHECKPROC checkspecial, BLOCK block)
int kbdLinuxOn (DevicePtr pDev)
void kbdLinuxOff (DevicePtr pDev)
static void kbdLinuxReadKernelMapping (int fd, KeySymsPtr pKeySyms)
static void kbdLinuxGetMap (DevicePtr pDev, KeySymsPtr pKeySyms, CARD8 *pModMap)
void kbdLinuxGetInfo (DevicePtr pDev, DMXLocalInitInfoPtr info)

Variables

static myPrivatePRIV = NULL
static KeySym linux_to_x [256]
static unsigned char at2lnx [NUM_KEYCODES]

Detailed Description

This code implements a low-level device driver for the Linux keyboard. The code is derived from code by Thomas Roell, Orest Zborowski, and David Dawes (see the source code for complete references).


Define Documentation

#define BLOCK   DMXBlockType
#define CHECKPROC   dmxCheckSpecialProcPtr
#define ENQUEUEPROC   dmxEnqueueProcPtr
#define FATAL0 (   f)    dmxLog(dmxFatal,f)
#define FATAL1 (   f,
 
)    dmxLog(dmxFatal,f,a)
#define FATAL2 (   f,
  a,
 
)    dmxLog(dmxFatal,f,a,b)

Referenced by kbdLinuxOpenVT().

#define FINALMESSAGE   "\033cDMX terminated."

Referenced by kbdLinuxCloseConsole().

#define LOG0 (   f)    dmxLog(dmxDebug,f)
#define LOG1 (   f,
 
)    dmxLog(dmxDebug,f,a)

Referenced by kbdLinuxCloseConsole().

#define LOG2 (   f,
  a,
 
)    dmxLog(dmxDebug,f,a,b)
#define LOG3 (   f,
  a,
  b,
 
)    dmxLog(dmxDebug,f,a,b,c)
#define MESSAGE   "\033c\n\n\nDMX taking input from this console..."

Referenced by kbdLinuxOpenConsole().

#define MOTIONPROC   dmxMotionProcPtr
#define NUM_AT2LNX   (sizeof(at2lnx) / sizeof(at2lnx[0]))
#define NUM_STATE_ENTRIES   (256/32)
#define SWITCHRETPROC   dmxVTSwitchReturnProcPtr
#define SYSCALL (   call)    while(((call) == -1) && (errno == EINTR))

Referenced by kbdLinuxActivate().


Typedef Documentation

typedef struct _myPrivate myPrivate

Function Documentation

static int kbdLinuxActivate ( int  fd,
int  vtno,
int  setSig 
) [static]
void kbdLinuxBell ( DevicePtr  pDev,
int  percent,
int  volume,
int  pitch,
int  duration 
)

Ring the bell.

Note: we completely ignore the volume, since Linux's ioctl() interface does not provide a way to control it. If it did, the XBell manpage tells how the actual volume is a function of the percent and the (base) volume.

Note that most of the other PC-based bell drivers compute the duration for KDMKTONE as a function of the volume and the duration. For some drivers, the duration is only measured in mS if the volume is 50, and is scaled by the volume for other values. This seems confusing and possibly incorrect (the xset man page says that the bell will be "as closely as it can to the user's specifications" -- if we ignore the volume and set the duration correctly, then we'll get one parameter "wrong" -- but if we use the volume to scale the duration, then we'll get both parameters "wrong").

References GETPRIV.

static void kbdLinuxCloseConsole ( DevicePtr  pDev) [static]

References FINALMESSAGE, GETPRIV, kbdLinuxActivate(), and LOG1.

Referenced by kbdLinuxOff().

static void kbdLinuxConvert ( DevicePtr  pDev,
unsigned char  scanCode,
ENQUEUEPROC  enqueue,
CHECKPROC  checkspecial,
BLOCK  block 
) [static]
pointer kbdLinuxCreatePrivate ( DeviceIntPtr  pKeyboard)

Create a private structure for use within this file.

References _myPrivate::fd, and _myPrivate::pKeyboard.

void kbdLinuxCtrl ( DevicePtr  pDev,
KeybdCtrl *  ctrl 
)

Set the LEDs.

References GETPRIV.

void kbdLinuxDestroyPrivate ( pointer  priv)

Destroy a private structure.

static int kbdLinuxGetCurrentVTNumber ( int  fd) [static]

Referenced by kbdLinuxOpenConsole().

static int kbdLinuxGetFreeVTNumber ( void  ) [static]

References FATAL0, and FATAL1.

Referenced by kbdLinuxOpenConsole().

void kbdLinuxGetInfo ( DevicePtr  pDev,
DMXLocalInitInfoPtr  info 
)
static void kbdLinuxGetMap ( DevicePtr  pDev,
KeySymsPtr  pKeySyms,
CARD8 *  pModMap 
) [static]
void kbdLinuxInit ( DevicePtr  pDev)

Initialize the pDev as a Linux keyboard.

References FATAL1, GETPRIV, and kbdLinuxOpenConsole().

static int kbdLinuxKeyDown ( myPrivate priv,
int  keyCode 
) [static]
static void kbdLinuxKeyState ( myPrivate priv,
int  type,
int  keyCode 
) [static]

References _myPrivate::kbdState, and NUM_STATE_ENTRIES.

Referenced by kbdLinuxConvert().

void kbdLinuxOff ( DevicePtr  pDev)

Turn pDev off (i.e., stop taking input from pDev).

References GETPRIV, and kbdLinuxCloseConsole().

int kbdLinuxOn ( DevicePtr  pDev)

Turn pDev on (i.e., take input from pDev).

References FATAL1, and GETPRIV.

static void kbdLinuxOpenConsole ( DevicePtr  pDev) [static]
static int kbdLinuxOpenVT ( int  vtno) [static]

References FATAL2, and O_NONBLOCK.

Referenced by kbdLinuxOpenConsole().

static int kbdLinuxPrefix0Mapping ( unsigned char *  scanCode) [static]

Referenced by kbdLinuxPrefixMapping().

static int kbdLinuxPrefixMapping ( myPrivate priv,
unsigned char *  scanCode 
) [static]
void kbdLinuxRead ( DevicePtr  pDev,
MOTIONPROC  motion,
ENQUEUEPROC  enqueue,
CHECKPROC  checkspecial,
BLOCK  block 
)

Read an event from the pDev device. If the event is a motion event, enqueue it with the motion function. Otherwise, check for special keys with the checkspecial function and enqueue the event with the enqueue function. The block type is passed to the functions so that they may block SIGIO handling as appropriate to the caller of this function.

References GETPRIV, and kbdLinuxConvert().

static void kbdLinuxReadKernelMapping ( int  fd,
KeySymsPtr  pKeySyms 
) [static]

References at2lnx, GLYPHS_PER_KEY, linux_to_x, map, and NUM_AT2LNX.

Referenced by kbdLinuxGetMap().

void kbdLinuxVTPostSwitch ( pointer  p)

Currently unused hook called after returning from a VT switch.

void kbdLinuxVTPreSwitch ( pointer  p)

Currently unused hook called prior to an VT switch.

static void kbdLinuxVTSignalHandler ( int  sig) [static]
int kbdLinuxVTSwitch ( pointer  p,
int  vt,
void(*)(pointer)  switch_return,
pointer  switch_return_data 
)

Tell the operating system to switch to vt. The switch_return function is called with the switch_return_data when the VT is switched back to the pre-switch VT (i.e., the user returns to the DMX session).

References FATAL0, _myPrivate::fd, kbdLinuxActivate(), _myPrivate::switch_return, _myPrivate::switch_return_data, _myPrivate::switched, and _myPrivate::vtno.


Variable Documentation

unsigned char at2lnx[NUM_KEYCODES] [static]
KeySym linux_to_x[256] [static]
myPrivate* PRIV = NULL [static]

Referenced by kbdLinuxVTSignalHandler().