chiark / gitweb /
prepare builtins for blkid and kmod
[elogind.git] / udev / udev-builtin.c
1 /*
2  * Copyright (C) 2007-2009 Kay Sievers <kay.sievers@vrfy.org>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <stddef.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <getopt.h>
25
26 #include "udev.h"
27
28 static const struct udev_builtin *builtins[] = {
29         [UDEV_BUILTIN_PATH_ID] = &udev_builtin_path_id,
30         [UDEV_BUILTIN_USB_ID] = &udev_builtin_usb_id,
31         [UDEV_BUILTIN_INPUT_ID] = &udev_builtin_input_id,
32         [UDEV_BUILTIN_BLKID] = &udev_builtin_blkid,
33         [UDEV_BUILTIN_KMOD] = &udev_builtin_kmod,
34 };
35
36 int udev_builtin_list(struct udev *udev)
37 {
38         unsigned int i;
39
40         for (i = 0; i < ARRAY_SIZE(builtins); i++)
41                 fprintf(stderr, "  %-12s %s\n", builtins[i]->name, builtins[i]->help);
42         return 0;
43 }
44
45 const char *udev_builtin_name(enum udev_builtin_cmd cmd)
46 {
47         return builtins[cmd]->name;
48 }
49
50 bool udev_builtin_run_once(enum udev_builtin_cmd cmd)
51 {
52         return builtins[cmd]->run_once;
53 }
54
55 enum udev_builtin_cmd udev_builtin_lookup(const char *command)
56 {
57         char name[UTIL_PATH_SIZE];
58         enum udev_builtin_cmd i;
59         char *pos;
60
61         util_strscpy(name, sizeof(name), command);
62         pos = strchr(name, ' ');
63         if (pos)
64                 pos[0] = '\0';
65         for (i = 0; i < ARRAY_SIZE(builtins); i++)
66                 if (strcmp(builtins[i]->name, name) == 0)
67                         return i;
68         return UDEV_BUILTIN_MAX;
69 }
70
71 int udev_builtin_run(struct udev_device *dev, enum udev_builtin_cmd cmd, const char *command, bool test)
72 {
73         return builtins[cmd]->cmd(dev, command, test);
74 }
75
76 int udev_builtin_add_property(struct udev_device *dev, bool test, const char *key, const char *val, ...)
77 {
78         struct udev_list_entry *entry;
79
80         entry = udev_device_add_property(dev, key, val);
81         /* store in db, skip private keys */
82         if (key[0] != '.')
83                 udev_list_entry_set_num(entry, true);
84
85         info(udev_device_get_udev(dev), "%s=%s\n", key, val);
86         if (test)
87                 printf("%s=%s\n", key, val);
88         return 0;
89 }