]> git.ozlabs.org Git - petitboot/blob - lib/pb-protocol/pb-protocol.h
Add PS3 ncurses CUI program
[petitboot] / lib / pb-protocol / pb-protocol.h
1 #ifndef _PB_PROTOCOL_H
2 #define _PB_PROTOCOL_H
3
4 #include <stdint.h>
5
6 #include <list/list.h>
7
8 #define PB_SOCKET_PATH "/tmp/petitboot.ui"
9
10 #define PB_PROTOCOL_MAX_PAYLOAD_SIZE (64 * 1024)
11
12 enum pb_protocol_action {
13         PB_PROTOCOL_ACTION_ADD          = 0x1,
14         PB_PROTOCOL_ACTION_REMOVE       = 0x2,
15 };
16
17 struct pb_protocol_message {
18         uint32_t action;
19         uint32_t payload_len;
20         char     payload[];
21 };
22
23 struct device {
24         char *id;
25         char *name;
26         char *description;
27         char *icon_file;
28
29         struct list boot_options;
30
31         void *ui_info;
32 };
33
34 struct boot_option {
35         char *id;
36         char *name;
37         char *description;
38         char *icon_file;
39         char *boot_image_file;
40         char *initrd_file;
41         char *boot_args;
42
43         struct list_item list;
44
45         void *ui_info;
46 };
47
48 int pb_protocol_device_len(const struct device *dev);
49 int pb_protocol_device_cmp(const struct device *a, const struct device *b);
50
51 int pb_protocol_boot_option_cmp(const struct boot_option *a,
52         const struct boot_option *b);
53
54 int pb_protocol_serialise_string(char *pos, const char *str);
55 char *pb_protocol_deserialise_string(void *ctx,
56                 const struct pb_protocol_message *message);
57
58 int pb_protocol_serialise_device(const struct device *dev, char *buf, int buf_len);
59
60 int pb_protocol_write_message(int fd, struct pb_protocol_message *message);
61
62 struct pb_protocol_message *pb_protocol_create_message(void *ctx,
63                 enum pb_protocol_action action, int payload_len);
64
65 struct pb_protocol_message *pb_protocol_read_message(void *ctx, int fd);
66
67 struct device *pb_protocol_deserialise_device(void *ctx,
68                 const struct pb_protocol_message *message);
69
70 #endif /* _PB_PROTOCOL_H */