nut-debian/drivers/dstate.h

105 lines
3.2 KiB
C
Raw Normal View History

2010-03-26 01:20:59 +02:00
/* dstate.h - Network UPS Tools driver-side state management
2012-06-01 16:55:19 +03:00
Copyright (C)
2003 Russell Kroll <rkroll@exploits.org>
2022-07-10 10:23:45 +03:00
2012-2017 Arnaud Quette <arnaud.quette@free.fr>
2010-03-26 01:20:59 +02:00
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 2 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, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef DSTATE_H_SEEN
#define DSTATE_H_SEEN 1
2022-07-10 10:23:45 +03:00
#include "timehead.h"
2011-01-26 11:35:08 +02:00
#include "state.h"
2010-03-26 01:20:59 +02:00
#include "attribute.h"
#include "parseconf.h"
#include "upshandler.h"
#define DS_LISTEN_BACKLOG 16
#define DS_MAX_READ 256 /* don't read forever from upsd */
2022-07-10 10:23:45 +03:00
#ifndef MAX_STRING_SIZE
#define MAX_STRING_SIZE 128
#endif
2010-03-26 01:20:59 +02:00
/* track client connections */
2011-01-26 11:35:08 +02:00
typedef struct conn_s {
2010-03-26 01:20:59 +02:00
int fd;
PCONF_CTX_t ctx;
2011-01-26 11:35:08 +02:00
struct conn_s *prev;
struct conn_s *next;
} conn_t;
2010-03-26 01:20:59 +02:00
extern struct ups_handler upsh;
2015-04-30 16:53:36 +03:00
/* asynchronous (nonblocking) Vs synchronous (blocking) I/O
* Defaults to nonblocking, for backward compatibility */
extern int do_synchronous;
2022-07-10 10:23:45 +03:00
char * dstate_init(const char *prog, const char *devname);
2010-03-26 01:20:59 +02:00
int dstate_poll_fds(struct timeval timeout, int extrafd);
int dstate_setinfo(const char *var, const char *fmt, ...)
__attribute__ ((__format__ (__printf__, 2, 3)));
int dstate_addenum(const char *var, const char *fmt, ...)
__attribute__ ((__format__ (__printf__, 2, 3)));
2012-06-01 16:55:19 +03:00
int dstate_addrange(const char *var, const int min, const int max);
2010-03-26 01:20:59 +02:00
void dstate_setflags(const char *var, int flags);
2022-07-10 10:23:45 +03:00
void dstate_addflags(const char *var, const int addflags);
void dstate_delflags(const char *var, const int delflags);
void dstate_setaux(const char *var, long aux);
2010-03-26 01:20:59 +02:00
const char *dstate_getinfo(const char *var);
void dstate_addcmd(const char *cmdname);
int dstate_delinfo(const char *var);
int dstate_delenum(const char *var, const char *val);
2012-06-01 16:55:19 +03:00
int dstate_delrange(const char *var, const int min, const int max);
2010-03-26 01:20:59 +02:00
int dstate_delcmd(const char *cmd);
void dstate_free(void);
2011-01-26 11:35:08 +02:00
const st_tree_t *dstate_getroot(void);
const cmdlist_t *dstate_getcmdlist(void);
2010-03-26 01:20:59 +02:00
void dstate_dataok(void);
void dstate_datastale(void);
int dstate_is_stale(void);
/* clean out the temp space for a new pass */
void status_init(void);
/* add a status element */
void status_set(const char *buf);
/* write the temporary status_buf into ups.status */
void status_commit(void);
/* similar functions for ups.alarm */
void alarm_init(void);
void alarm_set(const char *buf);
void alarm_commit(void);
2022-07-10 10:23:45 +03:00
void device_alarm_init(void);
void device_alarm_commit(const int device_number);
int dstate_detect_phasecount(
const char *xput_prefix,
const int may_change_dstate,
int *inited_phaseinfo,
int *num_phases,
const int may_reevaluate);
void dstate_dump(void);
2010-03-26 01:20:59 +02:00
#endif /* DSTATE_H_SEEN */