DrvKeyboardQueue.cpp revision 765e59322bcde8c0fbb44b5076671cd9bd27dde0
/* $Id$ */
/** @file
* VBox input devices: Keyboard queue driver
*/
/*
* Copyright (C) 2006-2012 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#define LOG_GROUP LOG_GROUP_DRV_KBD_QUEUE
#include "VBoxDD.h"
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/**
* Keyboard queue driver instance data.
*
* @implements PDMIKEYBOARDCONNECTOR
* @implements PDMIKEYBOARDPORT
*/
typedef struct DRVKBDQUEUE
{
/** Pointer to the driver instance structure. */
/** Our keyboard connector interface. */
/** Our keyboard port interface. */
/** The queue handle. */
/** Discard input when this flag is set. */
bool fInactive;
/** When VM is suspended, queue full errors are not fatal. */
bool fSuspended;
} DRVKBDQUEUE, *PDRVKBDQUEUE;
/**
* Keyboard queue item.
*/
typedef struct DRVKBDQUEUEITEM
{
/** The core part owned by the queue manager. */
/** The keycode. */
/* -=-=-=-=- IBase -=-=-=-=- */
/**
* @interface_method_impl{PDMIBASE,pfnQueryInterface}
*/
{
return NULL;
}
/* -=-=-=-=- IKeyboardPort -=-=-=-=- */
/** Converts a pointer to DRVKBDQUEUE::IPort to a DRVKBDQUEUE pointer. */
#define IKEYBOARDPORT_2_DRVKBDQUEUE(pInterface) ( (PDRVKBDQUEUE)((char *)(pInterface) - RT_OFFSETOF(DRVKBDQUEUE, IPort)) )
/**
* Queues a keyboard event.
* Because of the event queueing the EMT context requirement is lifted.
*
* @returns VBox status code.
* @param pInterface Pointer to this interface structure.
* @param u8KeyCode The keycode to queue.
* @thread Any thread.
*/
{
/* Ignore any attempt to send events if queue is inactive. */
return VINF_SUCCESS;
if (pItem)
{
return VINF_SUCCESS;
}
if (!pDrv->fSuspended)
AssertMsgFailed(("drvKbdQueuePutEvent: Queue is full!!!!\n"));
return VERR_PDM_NO_QUEUE_ITEMS;
}
/* -=-=-=-=- IConnector -=-=-=-=- */
#define PPDMIKEYBOARDCONNECTOR_2_DRVKBDQUEUE(pInterface) ( (PDRVKBDQUEUE)((char *)(pInterface) - RT_OFFSETOF(DRVKBDQUEUE, IConnector)) )
/**
* Pass LED status changes from the guest thru to the frontend driver.
*
* @param pInterface Pointer to the keyboard connector interface structure.
* @param enmLeds The new LED mask.
*/
static DECLCALLBACK(void) drvKbdPassThruLedsChange(PPDMIKEYBOARDCONNECTOR pInterface, PDMKEYBLEDS enmLeds)
{
}
/**
* Pass keyboard state changes from the guest thru to the frontend driver.
*
* @param pInterface Pointer to the keyboard connector interface structure.
*/
{
}
/* -=-=-=-=- queue -=-=-=-=- */
/**
* Queue callback for processing a queued item.
*
* @returns Success indicator.
* If false the item will not be removed and the flushing will stop.
* @param pDrvIns The driver instance.
* @param pItemCore Pointer to the queue item to process.
*/
{
return RT_SUCCESS(rc);
}
/* -=-=-=-=- driver interface -=-=-=-=- */
/**
* Power On notification.
*
* @returns VBox status.
* @param pDrvIns The drive instance data.
*/
{
}
/**
* Reset notification.
*
* @returns VBox status.
* @param pDrvIns The drive instance data.
*/
{
//PDRVKBDQUEUE pThis = PDMINS_2_DATA(pDrvIns, PDRVKBDQUEUE);
/** @todo purge the queue on reset. */
}
/**
* Suspend notification.
*
* @returns VBox status.
* @param pDrvIns The drive instance data.
*/
{
pThis->fSuspended = true;
}
/**
* Resume notification.
*
* @returns VBox status.
* @param pDrvIns The drive instance data.
*/
{
pThis->fSuspended = false;
}
/**
* Power Off notification.
*
* @param pDrvIns The drive instance data.
*/
{
}
/**
* Construct a keyboard driver instance.
*
* @copydoc FNPDMDRVCONSTRUCT
*/
{
/*
* Validate configuration.
*/
/*
* Init basic data members and interfaces.
*/
pDrv->fSuspended = false;
/* IBase. */
/* IKeyboardConnector. */
/* IKeyboardPort. */
/*
*/
{
AssertMsgFailed(("Configuration error: No keyboard port interface above!\n"));
return VERR_PDM_MISSING_INTERFACE_ABOVE;
}
/*
* Attach driver below and query it's connector interface.
*/
if (RT_FAILURE(rc))
{
return rc;
}
if (!pDrv->pDownConnector)
{
AssertMsgFailed(("Configuration error: No keyboard connector interface below!\n"));
return VERR_PDM_MISSING_INTERFACE_BELOW;
}
/*
* Create the queue.
*/
uint32_t cMilliesInterval = 0;
if (rc == VERR_CFGM_VALUE_NOT_FOUND)
cMilliesInterval = 0;
else if (RT_FAILURE(rc))
{
return rc;
}
if (rc == VERR_CFGM_VALUE_NOT_FOUND)
cItems = 128;
else if (RT_FAILURE(rc))
{
return rc;
}
rc = PDMDrvHlpQueueCreate(pDrvIns, sizeof(DRVKBDQUEUEITEM), cItems, cMilliesInterval, drvKbdQueueConsumer, "Keyboard", &pDrv->pQueue);
if (RT_FAILURE(rc))
{
AssertMsgFailed(("Failed to create driver: cItems=%d cMilliesInterval=%d rc=%Rrc\n", cItems, cMilliesInterval, rc));
return rc;
}
return VINF_SUCCESS;
}
/**
* Keyboard queue driver registration record.
*/
const PDMDRVREG g_DrvKeyboardQueue =
{
/* u32Version */
/* szName */
"KeyboardQueue",
/* szRCMod */
"",
/* szR0Mod */
"",
/* pszDescription */
"Keyboard queue driver to plug in between the key source and the device to do queueing and inter-thread transport.",
/* fFlags */
/* fClass. */
/* cMaxInstances */
~0U,
/* cbInstance */
sizeof(DRVKBDQUEUE),
/* pfnConstruct */
/* pfnRelocate */
NULL,
/* pfnDestruct */
NULL,
/* pfnIOCtl */
NULL,
/* pfnPowerOn */
/* pfnReset */
/* pfnSuspend */
/* pfnResume */
/* pfnAttach */
NULL,
/* pfnDetach */
NULL,
/* pfnPowerOff */
/* pfnSoftReset */
NULL,
/* u32EndVersion */
};