blob: ae993e83a8c6c1be57e4bd54b42dd97aef3417f1 (
plain)
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
|
#ifndef RESOURCE_H
#define RESOURCE_H
#include <stdbool.h>
struct discover_boot_option;
struct discover_device;
struct device_handler;
struct pb_url;
/**
* Data for local/remote resources. Resources may be "unresolved", in that
* they refer to a device that is not yet present. Unresolved resources
* simply contain parser-specific data (generally a device string parsed from
* the config file), and may be resolved by the parser once new devices appear.
*/
struct resource {
bool resolved;
union {
struct pb_url *url;
void *info;
};
};
void resolve_resource_against_device(struct resource *res,
struct discover_device *dev, const char *path);
/**
* devpath resources.
*
* Most resources in config files will be in one of the following formats:
* - URLs
* - device-local filenames (ie, filenames on the currently-discovered dev)
* - other-device filenames (which speficy the device by a string format,
* using a dev:path format).
*
* The following definitions are a generic resource handler for these types
* of resources. By creating resources with create_devpath_resource,
* parsers can use resolve_devpath_resource as their resolve_resouce
* callback.
*/
struct resource *create_devpath_resource(struct discover_boot_option *opt,
struct discover_device *orig_device,
const char *devpath);
struct resource *create_url_resource(struct discover_boot_option *opt,
struct pb_url *url);
bool resolve_devpath_resource(struct device_handler *dev,
struct resource *res);
#endif /* RESOURCE_H */
|