#ifndef _EFT_CONFIG_H
#define _EFT_CONFIG_H
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
#include "tree.h"
#include "lut.h"
struct cfgdata {
int raw_refcnt;
char *begin;
char *end;
char *nextfree;
struct config *cooked;
struct lut *devcache;
struct lut *devidcache;
struct lut *tpcache;
struct lut *cpucache;
};
void structconfig_free(struct config *cp);
struct cfgdata *config_snapshot(void);
void config_cook(struct cfgdata *cdata);
void config_free(struct cfgdata *cdata);
struct config *config_lookup(struct config *croot, char *path, int add);
struct config *config_next(struct config *cp);
struct config *config_child(struct config *cp);
struct config *config_parent(struct config *cp);
const char *config_getprop(struct config *cp, const char *name);
void config_setprop(struct config *cp, const char *name, const char *val);
void config_getcompname(struct config *cp, char **name, int *inst);
int config_is_connected(struct node *np, struct config *croot,
struct evalue *valuep);
int config_is_type(struct node *np, struct config *croot,
struct evalue *valuep);
int config_is_on(struct node *np, struct config *croot, struct evalue *valuep);
int config_is_present(struct node *np, struct config *croot,
struct evalue *valuep);
void config_print(int flags, struct config *croot);
struct node *config_bydev_lookup(struct cfgdata *, const char *);
struct node *config_bycpuid_lookup(struct cfgdata *, uint32_t);
struct node *config_bydevid_lookup(struct cfgdata *, const char *);
struct node *config_bytp_lookup(struct cfgdata *, const char *);
#ifdef __cplusplus
}
#endif
#endif