source: mainline/kernel/generic/include/sysinfo/sysinfo.h@ 70e2b2d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 70e2b2d was 70e2b2d, checked in by Martin Decky <martin@…>, 15 years ago

avoid costly allocation and generation of data when it is actually not necessary

  • Property mode set to 100644
File size: 4.9 KB
Line 
1/*
2 * Copyright (c) 2006 Jakub Vana
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/** @addtogroup generic
30 * @{
31 */
32/** @file
33 */
34
35#ifndef KERN_SYSINFO_H_
36#define KERN_SYSINFO_H_
37
38#include <typedefs.h>
39#include <str.h>
40
41/** Framebuffer info exported flags */
42extern bool fb_exported;
43
44/** Item value type
45 *
46 */
47typedef enum {
48 SYSINFO_VAL_UNDEFINED = 0, /**< Undefined value */
49 SYSINFO_VAL_VAL = 1, /**< Constant numeric value */
50 SYSINFO_VAL_DATA = 2, /**< Constant binary data */
51 SYSINFO_VAL_FUNCTION_VAL = 3, /**< Generated numeric value */
52 SYSINFO_VAL_FUNCTION_DATA = 4 /**< Generated binary data */
53} sysinfo_item_val_type_t;
54
55/** Subtree type
56 *
57 */
58typedef enum {
59 SYSINFO_SUBTREE_NONE = 0, /**< No subtree (leaf item) */
60 SYSINFO_SUBTREE_TABLE = 1, /**< Fixed subtree */
61 SYSINFO_SUBTREE_FUNCTION = 2 /**< Generated subtree */
62} sysinfo_subtree_type_t;
63
64struct sysinfo_item;
65
66/** Gerated numeric value function */
67typedef unative_t (*sysinfo_fn_val_t)(struct sysinfo_item *);
68
69/** Generated binary data function */
70typedef void *(*sysinfo_fn_data_t)(struct sysinfo_item *, size_t *, bool);
71
72/** Sysinfo item binary data
73 *
74 */
75typedef struct {
76 void *data; /**< Data */
77 size_t size; /**< Size (bytes) */
78} sysinfo_data_t;
79
80/** Sysinfo item value (union)
81 *
82 */
83typedef union {
84 unative_t val; /**< Constant numberic value */
85 sysinfo_fn_val_t fn_val; /**< Generated numeric value function */
86 sysinfo_fn_data_t fn_data; /**< Generated binary data function */
87 sysinfo_data_t data; /**< Constant binary data */
88} sysinfo_item_val_t;
89
90/** Sysinfo return holder
91 *
92 * This structure is generated from the constant
93 * items or by the generating functions. Note that
94 * the validity of the data is limited by the scope
95 * of single sysinfo invocation guarded by sysinfo_lock.
96 *
97 */
98typedef struct {
99 sysinfo_item_val_type_t tag; /**< Return value type */
100 union {
101 unative_t val; /**< Numberic value */
102 sysinfo_data_t data; /**< Binary data */
103 };
104} sysinfo_return_t;
105
106/** Generated subtree function */
107typedef sysinfo_return_t (*sysinfo_fn_subtree_t)(const char *);
108
109/** Sysinfo subtree (union)
110 *
111 */
112typedef union {
113 struct sysinfo_item *table; /**< Fixed subtree (list of subitems) */
114 sysinfo_fn_subtree_t get_data; /**< Generated subtree function */
115} sysinfo_subtree_t;
116
117/** Sysinfo item
118 *
119 */
120typedef struct sysinfo_item {
121 char *name; /**< Item name */
122
123 sysinfo_item_val_type_t val_type; /**< Item value type */
124 sysinfo_item_val_t val; /**< Item value */
125
126 sysinfo_subtree_type_t subtree_type; /**< Subtree type */
127 sysinfo_subtree_t subtree; /**< Subtree */
128
129 struct sysinfo_item *next; /**< Sibling item */
130} sysinfo_item_t;
131
132extern void sysinfo_set_item_val(const char *, sysinfo_item_t **, unative_t);
133extern void sysinfo_set_item_data(const char *, sysinfo_item_t **, void *,
134 size_t);
135extern void sysinfo_set_item_fn_val(const char *, sysinfo_item_t **,
136 sysinfo_fn_val_t);
137extern void sysinfo_set_item_fn_data(const char *, sysinfo_item_t **,
138 sysinfo_fn_data_t);
139extern void sysinfo_set_item_undefined(const char *, sysinfo_item_t **);
140
141extern void sysinfo_set_subtree_fn(const char *, sysinfo_item_t **,
142 sysinfo_fn_subtree_t);
143
144extern void sysinfo_init(void);
145extern void sysinfo_dump(sysinfo_item_t *);
146
147extern unative_t sys_sysinfo_get_tag(void *, size_t);
148extern unative_t sys_sysinfo_get_value(void *, size_t, void *);
149extern unative_t sys_sysinfo_get_data_size(void *, size_t, void *);
150extern unative_t sys_sysinfo_get_data(void *, size_t, void *, size_t);
151
152#endif
153
154/** @}
155 */
Note: See TracBrowser for help on using the repository browser.