xserver-multidpi/Xext/dpms.c

380 lines
8.6 KiB
C
Raw Normal View History

2003-11-14 16:54:54 +01:00
/*****************************************************************
Copyright (c) 1996 Digital Equipment Corporation, Maynard, Massachusetts.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES, INCLUDING,
BUT NOT LIMITED TO CONSEQUENTIAL OR INCIDENTAL DAMAGES, OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of Digital Equipment Corporation
shall not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from Digital
Equipment Corporation.
******************************************************************/
#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif
#include <X11/X.h>
#include <X11/Xproto.h>
#include "misc.h"
#include "os.h"
2003-11-14 16:54:54 +01:00
#include "dixstruct.h"
#include "extnsionst.h"
2003-11-14 17:49:22 +01:00
#include "opaque.h"
#include <X11/extensions/dpmsproto.h>
2003-11-14 17:49:22 +01:00
#include "dpmsproc.h"
#include "modinit.h"
2003-11-14 16:54:54 +01:00
static int
2009-01-11 08:16:12 +01:00
ProcDPMSGetVersion(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
2003-11-14 17:49:22 +01:00
/* REQUEST(xDPMSGetVersionReq); */
2003-11-14 16:54:54 +01:00
xDPMSGetVersionReply rep;
int n;
2003-11-14 16:54:54 +01:00
REQUEST_SIZE_MATCH(xDPMSGetVersionReq);
rep.type = X_Reply;
rep.length = 0;
rep.sequenceNumber = client->sequence;
rep.majorVersion = DPMSMajorVersion;
rep.minorVersion = DPMSMinorVersion;
if (client->swapped) {
swaps(&rep.sequenceNumber, n);
swaps(&rep.majorVersion, n);
swaps(&rep.minorVersion, n);
}
WriteToClient(client, sizeof(xDPMSGetVersionReply), (char *)&rep);
return(client->noClientException);
}
static int
ProcDPMSCapable(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
2003-11-14 17:49:22 +01:00
/* REQUEST(xDPMSCapableReq); */
2003-11-14 16:54:54 +01:00
xDPMSCapableReply rep;
int n;
2003-11-14 16:54:54 +01:00
REQUEST_SIZE_MATCH(xDPMSCapableReq);
rep.type = X_Reply;
rep.length = 0;
rep.sequenceNumber = client->sequence;
rep.capable = DPMSCapableFlag;
2003-11-14 17:49:22 +01:00
if (client->swapped) {
swaps(&rep.sequenceNumber, n);
}
2003-11-14 16:54:54 +01:00
WriteToClient(client, sizeof(xDPMSCapableReply), (char *)&rep);
return(client->noClientException);
}
static int
2009-01-11 08:16:12 +01:00
ProcDPMSGetTimeouts(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
2003-11-14 17:49:22 +01:00
/* REQUEST(xDPMSGetTimeoutsReq); */
2003-11-14 16:54:54 +01:00
xDPMSGetTimeoutsReply rep;
int n;
2003-11-14 16:54:54 +01:00
REQUEST_SIZE_MATCH(xDPMSGetTimeoutsReq);
rep.type = X_Reply;
rep.length = 0;
rep.sequenceNumber = client->sequence;
rep.standby = DPMSStandbyTime / MILLI_PER_SECOND;
rep.suspend = DPMSSuspendTime / MILLI_PER_SECOND;
rep.off = DPMSOffTime / MILLI_PER_SECOND;
if (client->swapped) {
swaps(&rep.sequenceNumber, n);
swaps(&rep.standby, n);
swaps(&rep.suspend, n);
swaps(&rep.off, n);
}
WriteToClient(client, sizeof(xDPMSGetTimeoutsReply), (char *)&rep);
return(client->noClientException);
}
static int
2009-01-11 08:16:12 +01:00
ProcDPMSSetTimeouts(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xDPMSSetTimeoutsReq);
REQUEST_SIZE_MATCH(xDPMSSetTimeoutsReq);
if ((stuff->off != 0)&&(stuff->off < stuff->suspend))
{
client->errorValue = stuff->off;
return BadValue;
}
if ((stuff->suspend != 0)&&(stuff->suspend < stuff->standby))
{
client->errorValue = stuff->suspend;
return BadValue;
}
2003-11-14 16:54:54 +01:00
DPMSStandbyTime = stuff->standby * MILLI_PER_SECOND;
DPMSSuspendTime = stuff->suspend * MILLI_PER_SECOND;
DPMSOffTime = stuff->off * MILLI_PER_SECOND;
SetScreenSaverTimer();
2003-11-14 16:54:54 +01:00
return(client->noClientException);
}
static int
2009-01-11 08:16:12 +01:00
ProcDPMSEnable(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
Bool was_enabled = DPMSEnabled;
2003-11-14 16:54:54 +01:00
REQUEST_SIZE_MATCH(xDPMSEnableReq);
if (DPMSCapableFlag) {
2003-11-14 16:54:54 +01:00
DPMSEnabled = TRUE;
if (!was_enabled)
SetScreenSaverTimer();
}
2003-11-14 16:54:54 +01:00
return(client->noClientException);
}
static int
2009-01-11 08:16:12 +01:00
ProcDPMSDisable(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
2003-11-14 17:49:22 +01:00
/* REQUEST(xDPMSDisableReq); */
2003-11-14 16:54:54 +01:00
REQUEST_SIZE_MATCH(xDPMSDisableReq);
DPMSSet(client, DPMSModeOn);
2003-11-14 16:54:54 +01:00
DPMSEnabled = FALSE;
return(client->noClientException);
}
static int
2009-01-11 08:16:12 +01:00
ProcDPMSForceLevel(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xDPMSForceLevelReq);
REQUEST_SIZE_MATCH(xDPMSForceLevelReq);
if (!DPMSEnabled)
return BadMatch;
if (stuff->level != DPMSModeOn &&
stuff->level != DPMSModeStandby &&
stuff->level != DPMSModeSuspend &&
stuff->level != DPMSModeOff) {
2003-11-14 16:54:54 +01:00
client->errorValue = stuff->level;
return BadValue;
}
DPMSSet(client, stuff->level);
2003-11-14 16:54:54 +01:00
return(client->noClientException);
}
static int
ProcDPMSInfo(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
2003-11-14 17:49:22 +01:00
/* REQUEST(xDPMSInfoReq); */
2003-11-14 16:54:54 +01:00
xDPMSInfoReply rep;
int n;
2003-11-14 16:54:54 +01:00
REQUEST_SIZE_MATCH(xDPMSInfoReq);
rep.type = X_Reply;
rep.length = 0;
rep.sequenceNumber = client->sequence;
rep.power_level = DPMSPowerLevel;
rep.state = DPMSEnabled;
if (client->swapped) {
swaps(&rep.sequenceNumber, n);
swaps(&rep.power_level, n);
}
WriteToClient(client, sizeof(xDPMSInfoReply), (char *)&rep);
return(client->noClientException);
}
static int
2009-01-11 08:16:12 +01:00
ProcDPMSDispatch (ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xReq);
switch (stuff->data)
{
case X_DPMSGetVersion:
return ProcDPMSGetVersion(client);
case X_DPMSCapable:
return ProcDPMSCapable(client);
case X_DPMSGetTimeouts:
return ProcDPMSGetTimeouts(client);
case X_DPMSSetTimeouts:
return ProcDPMSSetTimeouts(client);
case X_DPMSEnable:
return ProcDPMSEnable(client);
case X_DPMSDisable:
return ProcDPMSDisable(client);
case X_DPMSForceLevel:
return ProcDPMSForceLevel(client);
case X_DPMSInfo:
return ProcDPMSInfo(client);
default:
return BadRequest;
}
}
static int
2009-01-11 08:16:12 +01:00
SProcDPMSGetVersion(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
int n;
2003-11-14 16:54:54 +01:00
REQUEST(xDPMSGetVersionReq);
swaps(&stuff->length, n);
REQUEST_SIZE_MATCH(xDPMSGetVersionReq);
swaps(&stuff->majorVersion, n);
swaps(&stuff->minorVersion, n);
return ProcDPMSGetVersion(client);
}
static int
SProcDPMSCapable(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xDPMSCapableReq);
int n;
2003-11-14 16:54:54 +01:00
swaps(&stuff->length, n);
REQUEST_SIZE_MATCH(xDPMSCapableReq);
return ProcDPMSCapable(client);
}
static int
2009-01-11 08:16:12 +01:00
SProcDPMSGetTimeouts(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xDPMSGetTimeoutsReq);
int n;
2003-11-14 16:54:54 +01:00
swaps(&stuff->length, n);
REQUEST_SIZE_MATCH(xDPMSGetTimeoutsReq);
return ProcDPMSGetTimeouts(client);
}
static int
2009-01-11 08:16:12 +01:00
SProcDPMSSetTimeouts(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xDPMSSetTimeoutsReq);
int n;
2003-11-14 16:54:54 +01:00
swaps(&stuff->length, n);
REQUEST_SIZE_MATCH(xDPMSSetTimeoutsReq);
swaps(&stuff->standby, n);
swaps(&stuff->suspend, n);
swaps(&stuff->off, n);
return ProcDPMSSetTimeouts(client);
}
static int
2009-01-11 08:16:12 +01:00
SProcDPMSEnable(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xDPMSEnableReq);
int n;
2003-11-14 16:54:54 +01:00
swaps(&stuff->length, n);
REQUEST_SIZE_MATCH(xDPMSEnableReq);
return ProcDPMSEnable(client);
}
static int
2009-01-11 08:16:12 +01:00
SProcDPMSDisable(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xDPMSDisableReq);
int n;
2003-11-14 16:54:54 +01:00
swaps(&stuff->length, n);
REQUEST_SIZE_MATCH(xDPMSDisableReq);
return ProcDPMSDisable(client);
}
static int
2009-01-11 08:16:12 +01:00
SProcDPMSForceLevel(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xDPMSForceLevelReq);
int n;
2003-11-14 16:54:54 +01:00
swaps(&stuff->length, n);
REQUEST_SIZE_MATCH(xDPMSForceLevelReq);
swaps(&stuff->level, n);
return ProcDPMSForceLevel(client);
}
static int
2009-01-11 08:16:12 +01:00
SProcDPMSInfo(ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xDPMSInfoReq);
int n;
2003-11-14 16:54:54 +01:00
swaps(&stuff->length, n);
REQUEST_SIZE_MATCH(xDPMSInfoReq);
return ProcDPMSInfo(client);
}
static int
2009-01-11 08:16:12 +01:00
SProcDPMSDispatch (ClientPtr client)
2003-11-14 16:54:54 +01:00
{
REQUEST(xReq);
switch (stuff->data)
{
case X_DPMSGetVersion:
return SProcDPMSGetVersion(client);
case X_DPMSCapable:
return SProcDPMSCapable(client);
case X_DPMSGetTimeouts:
return SProcDPMSGetTimeouts(client);
case X_DPMSSetTimeouts:
return SProcDPMSSetTimeouts(client);
case X_DPMSEnable:
return SProcDPMSEnable(client);
case X_DPMSDisable:
return SProcDPMSDisable(client);
case X_DPMSForceLevel:
return SProcDPMSForceLevel(client);
case X_DPMSInfo:
return SProcDPMSInfo(client);
default:
return BadRequest;
}
}
2009-04-03 17:18:21 +02:00
void
DPMSExtensionInit(INITARGS)
{
AddExtension(DPMSExtensionName, 0, 0,
ProcDPMSDispatch, SProcDPMSDispatch,
NULL, StandardMinorOpcode);
}