109 lines
3.3 KiB
C
109 lines
3.3 KiB
C
/****************************************************************************
|
|
* This file is part of the project AqHome.
|
|
* AqHome (c) by 2023 Martin Preuss, all rights reserved.
|
|
*
|
|
* The license for this file can be found in the file COPYING which you
|
|
* should have received along with this file.
|
|
****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
|
|
|
|
#include "./c_getlastdatapoint.h"
|
|
#include "./aqhome_data_p.h"
|
|
#include "aqhome/ipc/data/ipc_data.h"
|
|
#include "aqhome/ipc/data/msg_data_datapoints.h"
|
|
#include "aqhome/ipc/msg_ipc_result.h"
|
|
|
|
#include <gwenhywfar/debug.h>
|
|
#include <gwenhywfar/text.h>
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
* defines
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
* forward declarations
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
* implementations
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
void AqHomeData_HandleGetLastDataPoint(AQHOME_DATA *aqh, GWEN_MSG_ENDPOINT *ep, const GWEN_MSG *recvdMsg)
|
|
{
|
|
GWEN_MSG *outMsg;
|
|
int resultCode=0;
|
|
|
|
if (AQH_DataPointsDataIpcMsg_IsValid(recvdMsg)) {
|
|
const char *valueName;
|
|
|
|
valueName=AQH_DataPointsDataIpcMsg_GetValueName(recvdMsg);
|
|
if (valueName) {
|
|
const AQH_VALUE *value;
|
|
|
|
value=AQH_Storage_GetValueByNameForSystem(aqh->storage, valueName);
|
|
if (value) {
|
|
uint64_t valueId;
|
|
uint64_t timestamp=0;
|
|
union {double f; uint64_t i;} u;
|
|
int rv;
|
|
|
|
valueId=AQH_Value_GetId(value);
|
|
rv=AQH_Storage_GetLastDataPoint(aqh->storage, valueId, ×tamp, &(u.f));
|
|
if (rv<0) {
|
|
switch(rv) {
|
|
case GWEN_ERROR_INVALID: resultCode=AQH_MSG_IPC_ERROR_INVALID; break;
|
|
case GWEN_ERROR_NO_DATA: resultCode=AQH_MSG_IPC_ERROR_NODATA; break;
|
|
default: resultCode=AQH_MSG_IPC_ERROR_GENERIC; break;
|
|
}
|
|
}
|
|
else {
|
|
uint64_t array[2];
|
|
|
|
array[0]=timestamp;
|
|
array[1]=u.i;
|
|
outMsg=AQH_DataPointsDataIpcMsg_new(AQH_MSGTYPE_IPC_DATA_GETLASTDATA_RSP, AQH_MSGDATA_DATAPOINTS_FLAGS_LASTMSG,
|
|
valueId,
|
|
AQH_Value_GetNameForSystem(value),
|
|
AQH_Value_GetValueUnits(value),
|
|
array, 1);
|
|
GWEN_MsgEndpoint_AddSendMessage(ep, outMsg);
|
|
return;
|
|
}
|
|
}
|
|
else {
|
|
DBG_INFO(NULL, "Value \"%s\" not found", valueName);
|
|
resultCode=AQH_MSG_IPC_ERROR_NOTFOUND;
|
|
}
|
|
}
|
|
else {
|
|
DBG_INFO(NULL, "No value name in request");
|
|
resultCode=AQH_MSG_IPC_ERROR_INVALID;
|
|
}
|
|
}
|
|
else {
|
|
DBG_INFO(NULL, "Invalid request message");
|
|
resultCode=AQH_MSG_IPC_ERROR_INVALID;
|
|
}
|
|
|
|
outMsg=AQH_ResultIpcMsg_new(AQH_MSGTYPE_IPC_DATA_RESULT, resultCode);
|
|
GWEN_MsgEndpoint_AddSendMessage(ep, outMsg);
|
|
}
|
|
|
|
|
|
|
|
|