mirror of
https://github.com/eddyem/small_tel.git
synced 2026-05-07 05:17:00 +03:00
144 lines
4.6 KiB
C
144 lines
4.6 KiB
C
/*
|
|
* This file is part of the weatherdaemon project.
|
|
* Copyright 2026 Edward V. Emelianov <edward.emelianoff@gmail.com>.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
#include "weathlib.h"
|
|
|
|
// dummy example of file descriptors usage
|
|
|
|
#define SENSOR_NAME "Dummy socket or serial device weatherstation"
|
|
#define NS (4)
|
|
|
|
static const val_t values[NS] = { // fields `name` and `comment` have no sense until value meaning is `IS_OTHER`
|
|
{.sense = VAL_OBLIGATORY, .type = VALT_FLOAT, .meaning = IS_WIND},
|
|
{.sense = VAL_OBLIGATORY, .type = VALT_FLOAT, .meaning = IS_AMB_TEMP},
|
|
{.sense = VAL_RECOMMENDED, .type = VALT_FLOAT, .meaning = IS_PRESSURE},
|
|
{.sense = VAL_RECOMMENDED, .type = VALT_FLOAT, .meaning = IS_HUMIDITY},
|
|
};
|
|
|
|
static int format_values(sensordata_t *sensor, char *buf){
|
|
int gotvals = 0;
|
|
char *token = strtok(buf, ",");
|
|
time_t tnow = time(NULL);
|
|
pthread_mutex_lock(&sensor->valmutex);
|
|
while(token && gotvals < NS){
|
|
double v;
|
|
DBG("TOKEN: %s", token);
|
|
if(sl_str2d(&v, token)){
|
|
DBG("next value: %g", v);
|
|
sensor->values[gotvals].value.f = (float) v;
|
|
sensor->values[gotvals].time = tnow;
|
|
++gotvals;
|
|
}
|
|
token = strtok(NULL, ",");
|
|
}
|
|
pthread_mutex_unlock(&sensor->valmutex);
|
|
DBG("GOT: %d", gotvals);
|
|
return gotvals;
|
|
}
|
|
|
|
static ssize_t writedata(int fd, const char *str, size_t size){
|
|
ssize_t sent = 0;
|
|
do{
|
|
DBG("try to write %zd bytes", size);
|
|
int canwrite = sl_canwrite(fd);
|
|
if(canwrite < 0){
|
|
WARNX("Disconnected?!");
|
|
return -1;
|
|
}else if(canwrite){
|
|
ssize_t r = write(fd, str+sent, size);
|
|
if(r < 0){
|
|
sent = -1;
|
|
WARNX("Disconnected??");
|
|
break;
|
|
}else{
|
|
sent += r;
|
|
size -= r;
|
|
}
|
|
DBG("sent %zd bytes; total send %zd, leave %zd", r, sent, size);
|
|
}
|
|
}while(size);
|
|
return sent;
|
|
}
|
|
|
|
static void *mainthread(void *s){
|
|
FNAME();
|
|
time_t task = 0;
|
|
const char begging[] = "Enter comma-separated data: wind, exttemp, pressure, humidity\n";
|
|
char buf[128];
|
|
sensordata_t *sensor = (sensordata_t *)s;
|
|
while(sensor->fdes > -1){
|
|
time_t tnow = time(NULL);
|
|
int canread = sl_canread(sensor->fdes);
|
|
if(canread < 0){
|
|
WARNX("Disconnected fd %d", sensor->fdes);
|
|
break;
|
|
}else if(canread == 1){
|
|
ssize_t got = read(sensor->fdes, buf, 128);
|
|
if(got > 0){
|
|
sl_RB_write(sensor->ringbuffer, (uint8_t*)buf, got);
|
|
}else if(got < 0){
|
|
DBG("Disconnected?");
|
|
break;
|
|
}
|
|
}
|
|
if(sl_RB_readline(sensor->ringbuffer, buf, 127) > 0){
|
|
if(NS == format_values(sensor, buf) && sensor->freshdatahandler)
|
|
sensor->freshdatahandler(sensor);
|
|
}
|
|
if(sensor->tpoll){
|
|
if(tnow >= task){
|
|
DBG("write %s", begging);
|
|
ssize_t got = writedata(sensor->fdes, begging, sizeof(begging)-1);
|
|
if(got > 0) task = tnow + sensor->tpoll;
|
|
else if(got < 0){
|
|
close(sensor->fdes);
|
|
sensor->fdes = -1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
DBG("OOOOps!");
|
|
sensor->kill(sensor);
|
|
return NULL;
|
|
}
|
|
|
|
int sensor_init(sensordata_t *s){
|
|
FNAME();
|
|
if(!s) return FALSE;
|
|
int fd = getFD(s->path);
|
|
if(fd < 0) return FALSE;
|
|
s->fdes = fd;
|
|
snprintf(s->name, NAME_LEN, "%s", SENSOR_NAME);
|
|
s->values = MALLOC(val_t, NS);
|
|
// don't use memcpy, as `values` could be aligned
|
|
for(int i = 0; i < NS; ++i) s->values[i] = values[i];
|
|
if(!(s->ringbuffer = sl_RB_new(BUFSIZ))){
|
|
WARNX("Can't init ringbuffer!");
|
|
s->kill(s);
|
|
return FALSE;
|
|
}
|
|
if(pthread_create(&s->thread, NULL, mainthread, (void*)s)){
|
|
s->kill(s);
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|