2011-12-31 16:14:18 +08:00
|
|
|
/**
|
|
|
|
* @file config.h
|
|
|
|
* @brief Configuration file code
|
|
|
|
* @note Copyright (C) 2011 Richard Cochran <richardcochran@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 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
#ifndef HAVE_CONFIG_H
|
|
|
|
#define HAVE_CONFIG_H
|
|
|
|
|
2014-08-14 21:56:06 +08:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
2011-12-31 16:14:18 +08:00
|
|
|
#include "ds.h"
|
2012-08-21 01:56:24 +08:00
|
|
|
#include "dm.h"
|
2013-10-29 18:58:20 +08:00
|
|
|
#include "filter.h"
|
2012-08-21 01:56:24 +08:00
|
|
|
#include "transport.h"
|
2012-09-29 02:45:54 +08:00
|
|
|
#include "servo.h"
|
2012-11-14 05:35:04 +08:00
|
|
|
#include "sk.h"
|
2012-08-21 01:56:24 +08:00
|
|
|
|
2013-10-07 01:20:56 +08:00
|
|
|
#define MAX_IFNAME_SIZE 108 /* = UNIX_PATH_MAX */
|
2012-08-21 01:56:24 +08:00
|
|
|
|
|
|
|
/** Defines a network interface, with PTP options. */
|
|
|
|
struct interface {
|
2014-08-14 21:56:06 +08:00
|
|
|
STAILQ_ENTRY(interface) list;
|
2012-08-21 01:56:40 +08:00
|
|
|
char name[MAX_IFNAME_SIZE + 1];
|
2012-11-14 05:35:04 +08:00
|
|
|
struct sk_ts_info ts_info;
|
2012-08-21 01:56:24 +08:00
|
|
|
};
|
2011-12-31 16:14:18 +08:00
|
|
|
|
2012-03-21 03:09:40 +08:00
|
|
|
struct config {
|
2012-08-21 01:56:24 +08:00
|
|
|
/* configured interfaces */
|
2014-08-14 21:56:06 +08:00
|
|
|
STAILQ_HEAD(interfaces_head, interface) interfaces;
|
2012-08-21 01:56:24 +08:00
|
|
|
|
2015-08-09 01:17:29 +08:00
|
|
|
/* hash of all non-legacy items */
|
|
|
|
struct hash *htab;
|
|
|
|
|
|
|
|
/* the rest are legacy fields */
|
2012-12-01 04:52:37 +08:00
|
|
|
struct default_ds dds;
|
2013-09-30 02:57:00 +08:00
|
|
|
char *uds_address;
|
2012-03-21 03:09:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int config_read(char *name, struct config *cfg);
|
2014-08-14 21:56:06 +08:00
|
|
|
struct interface *config_create_interface(char *name, struct config *cfg);
|
|
|
|
void config_init_interface(struct interface *iface, struct config *cfg);
|
|
|
|
void config_destroy(struct config *cfg);
|
2011-12-31 16:14:18 +08:00
|
|
|
|
2015-08-13 00:34:04 +08:00
|
|
|
/* New, hash table based methods: */
|
|
|
|
|
|
|
|
int config_init(struct config *cfg);
|
|
|
|
|
|
|
|
double config_get_double(struct config *cfg, const char *section,
|
|
|
|
const char *option);
|
|
|
|
|
|
|
|
int config_get_int(struct config *cfg, const char *section,
|
|
|
|
const char *option);
|
|
|
|
|
2015-08-22 03:56:30 +08:00
|
|
|
char *config_get_string(struct config *cfg, const char *section,
|
|
|
|
const char *option);
|
|
|
|
|
2015-08-13 02:53:58 +08:00
|
|
|
int config_set_double(struct config *cfg, const char *option, double val);
|
|
|
|
|
|
|
|
int config_set_section_int(struct config *cfg, const char *section,
|
|
|
|
const char *option, int val);
|
|
|
|
|
|
|
|
static inline int config_set_int(struct config *cfg,
|
|
|
|
const char *option, int val)
|
|
|
|
{
|
|
|
|
return config_set_section_int(cfg, NULL, option, val);
|
|
|
|
}
|
|
|
|
|
2015-08-22 03:56:30 +08:00
|
|
|
int config_set_string(struct config *cfg, const char *option,
|
|
|
|
const char *val);
|
|
|
|
|
2011-12-31 16:14:18 +08:00
|
|
|
#endif
|