1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#ifndef _DEVICE_HANDLER_H
#define _DEVICE_HANDLER_H
#include <stdbool.h>
#include <list/list.h>
struct device_handler;
struct discover_device;
struct discover_server;
struct boot_option;
struct boot_command;
struct event;
struct device;
struct waitset;
enum conf_method {
CONF_METHOD_LOCAL_FILE, /* discover by looking at local files on this
block device */
CONF_METHOD_DHCP, /* configuration from a DHCP response */
CONF_METHOD_UNKNOWN = -1,
};
struct discover_device {
struct device *device;
char **links;
int n_links;
const char *uuid;
const char *label;
const char *mount_path;
const char *device_path;
bool notified;
struct list boot_options;
struct list params;
};
struct discover_boot_option {
struct parser *source;
struct discover_device *device;
struct boot_option *option;
struct list_item list;
struct resource *boot_image;
struct resource *initrd;
struct resource *dtb;
struct resource *icon;
};
struct discover_context {
struct parser *parser;
struct event *event;
struct discover_device *device;
struct list boot_options;
struct pb_url *conf_url;
enum conf_method method;
};
struct device_handler *device_handler_init(struct discover_server *server,
struct waitset *waitset, int dry_run);
void device_handler_destroy(struct device_handler *devices);
int device_handler_get_device_count(const struct device_handler *handler);
const struct discover_device *device_handler_get_device(
const struct device_handler *handler, unsigned int index);
struct discover_device *discover_device_create(struct device_handler *handler,
const char *id);
void device_handler_add_device(struct device_handler *handler,
struct discover_device *device);
int device_handler_discover(struct device_handler *handler,
struct discover_device *dev, enum conf_method method);
int device_handler_conf(struct device_handler *handler,
struct discover_device *dev, struct pb_url *url,
enum conf_method method);
void device_handler_remove(struct device_handler *handler,
struct discover_device *device);
struct discover_context *device_handler_discover_context_create(
struct device_handler *handler,
struct discover_device *device);
void device_handler_discover_context_commit(struct device_handler *handler,
struct discover_context *ctx);
struct discover_boot_option *discover_boot_option_create(
struct discover_context *ctx,
struct discover_device *dev);
void discover_context_add_boot_option(struct discover_context *ctx,
struct discover_boot_option *opt);
int device_handler_user_event(struct device_handler *handler,
struct event *event);
struct discover_device *device_lookup_by_name(struct device_handler *handler,
const char *name);
struct discover_device *device_lookup_by_uuid(struct device_handler *handler,
const char *uuid);
struct discover_device *device_lookup_by_label(struct device_handler *handler,
const char *label);
struct discover_device *device_lookup_by_id(struct device_handler *handler,
const char *id);
void discover_device_set_param(struct discover_device *device,
const char *name, const char *value);
const char *discover_device_get_param(struct discover_device *device,
const char *name);
void device_handler_boot(struct device_handler *handler,
struct boot_command *cmd);
void device_handler_cancel_default(struct device_handler *handler);
#endif /* _DEVICE_HANDLER_H */
|