source: mainline/uspace/lib/c/generic/config.c@ 1a2befb

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 1a2befb was 1a2befb, checked in by Jakub Jermar <jakub@…>, 9 years ago

Abstract querying boot configuration into a library call

  • Property mode set to 100644
File size: 2.2 KB
Line 
1/*
2 * Copyright (c) 2016 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <stdlib.h>
30#include <stdbool.h>
31#include <config.h>
32#include <sysinfo.h>
33#include <str.h>
34
35bool config_key_exists(const char *key)
36{
37 char *value;
38 bool exists;
39
40 value = config_get_value(key);
41 exists = (value != NULL);
42 free(value);
43
44 return exists;
45}
46
47char *config_get_value(const char *key)
48{
49 char *value = NULL;
50 char *boot_args;
51 size_t size;
52
53 boot_args = sysinfo_get_data("boot_args", &size);
54 if (!boot_args || !size) {
55 /*
56 * No boot arguments, no value.
57 */
58 return NULL;
59 }
60
61 char *args = boot_args;
62 char *arg;
63 while ((arg = str_tok(args, " ", &args)) != NULL) {
64 arg = str_tok(arg, "=", &value);
65 if (arg && !str_lcmp(arg, key, str_length(key)))
66 break;
67 else
68 value = NULL;
69 }
70
71 if (value)
72 value = str_dup(value);
73
74 free(boot_args);
75
76 return value;
77}
78
79/** @}
80 */
Note: See TracBrowser for help on using the repository browser.