weather check for astrosib dome daemon

This commit is contained in:
2026-05-15 14:44:21 +03:00
parent e24568b0bf
commit 7e369976b5
86 changed files with 361 additions and 55 deletions

View File

@@ -0,0 +1,132 @@
/*
* This file is part of the baader_dome 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 <limits.h>
#include <string.h>
#include <sys/stat.h>
#include <usefull_macros.h>
#include "header.h"
#include "dome.h"
#include "server.h"
#define VAL_LEN 22
static char *headername = NULL;
static char *dome_name = NULL;
static int printhdr(int fd, const char *key, const char *val, const char *cmnt){
char tmp[81];
char tk[9];
if(strlen(key) > 8){
snprintf(tk, 8, "%s", key);
key = tk;
}
if(cmnt){
snprintf(tmp, 81, "%-8s= %-21s / %s", key, val, cmnt);
}else{
snprintf(tmp, 81, "%-8s= %s", key, val);
}
size_t l = strlen(tmp);
tmp[l] = '\n';
++l;
if(write(fd, tmp, l) != (ssize_t)l){
WARN("write()");
return 1;
}
return 0;
}
// return TRUE if can write to given header file
int header_create(const char *file){
if(!file) return FALSE;
FILE *hf = fopen(file, "w");
if(!hf) return FALSE;
unlink(file);
if(headername) FREE(headername);
headername = strdup(file);
return TRUE;
}
// set given `name` for telescope name
void domename(const char *name){
if(dome_name) FREE(dome_name);
if(name){
int l = strlen(name) + 3;
dome_name = MALLOC(char, l);
snprintf(dome_name, l, "'%s'", name);
}
}
const char* stringst[] = {
[DOME_S_IDLE] = "idle",
[DOME_S_MOVING] = "moving",
[DOME_S_ERROR] = "error",
};
void write_header(){
if(!headername) return;
char aname[PATH_MAX];
char val[VAL_LEN];
#define WRHDR(k, v, c) do{if(printhdr(fd, k, v, c)){goto returning;}}while(0)
snprintf(aname, PATH_MAX-1, "%sXXXXXX", headername);
int fd = mkstemp(aname);
if(fd < 0){
LOGWARN("Can't write header file: mkstemp()");
return;
}
fchmod(fd, 0644);
dome_status_t st;
dome_state_t curstate = get_dome_state();
double stattime = get_dome_status(&st);
if(get_forbidden()) WRHDR("OPERATIO", "'FORBIDDEN'", "Observations are forbidden");
if(dome_name) WRHDR("DOME", dome_name, "Dome manufacturer/name");
int idx = (int)curstate;
if(idx < 0 || idx > DOME_S_ERROR) idx = DOME_S_ERROR;
snprintf(val, VAL_LEN, "'%s'", stringst[idx]);
WRHDR("DOMESTAT", val, "Dome status");
snprintf(val, VAL_LEN, "'%s'", textst(st.coverstate[0]));
WRHDR("DOMECVR1", val, "Dome cover 1 status");
snprintf(val, VAL_LEN, "'%s'", textst(st.coverstate[1]));
WRHDR("DOMECVR2", val, "Dome cover 2 status");
snprintf(val, VAL_LEN, "%d", st.encoder[0]);
WRHDR("DOMEANG1", val, "Dome cover 1 angle");
snprintf(val, VAL_LEN, "%d", st.encoder[1]);
WRHDR("DOMEANG2", val, "Dome cover 2 angle");
snprintf(val, VAL_LEN, "%d", st.relay[0]);
WRHDR("DOMERLY1", val, "Dome relay1 state");
snprintf(val, VAL_LEN, "%d", st.relay[1]);
WRHDR("DOMERLY2", val, "Dome relay2 state");
snprintf(val, VAL_LEN, "%d", st.relay[2]);
WRHDR("DOMERLY3", val, "Dome relay3 state");
if(st.israin) WRHDR("DOMERAIN", "1", "Dome rain sensor armed");
snprintf(val, VAL_LEN, "%.3f", stattime);
char timebuf[BUFSIZ];
time_t t = (time_t) stattime;
struct tm *tmp;
tmp = localtime(&t);
if(!tmp || 0 == strftime(timebuf, BUFSIZ, "Measurement time: %F %T", tmp)){
LOGERR("localtime() returned NULL");
goto returning;
}
WRHDR("TDOMMEAS", val, timebuf);
#undef WRHDR
returning:
close(fd);
rename(aname, headername);
}