This source file includes following definitions.
- acpi_db_add_to_history
- acpi_db_display_history
- acpi_db_get_from_history
- acpi_db_get_history_by_index
1
2
3
4
5
6
7
8
9
10 #include <acpi/acpi.h>
11 #include "accommon.h"
12 #include "acdebug.h"
13
14 #define _COMPONENT ACPI_CA_DEBUGGER
15 ACPI_MODULE_NAME("dbhistry")
16
17 #define HI_NO_HISTORY 0
18 #define HI_RECORD_HISTORY 1
19 #define HISTORY_SIZE 40
20 typedef struct history_info {
21 char *command;
22 u32 cmd_num;
23
24 } HISTORY_INFO;
25
26 static HISTORY_INFO acpi_gbl_history_buffer[HISTORY_SIZE];
27 static u16 acpi_gbl_lo_history = 0;
28 static u16 acpi_gbl_num_history = 0;
29 static u16 acpi_gbl_next_history_index = 0;
30 u32 acpi_gbl_next_cmd_num = 1;
31
32
33
34
35
36
37
38
39
40
41
42
43
44 void acpi_db_add_to_history(char *command_line)
45 {
46 u16 cmd_len;
47 u16 buffer_len;
48
49
50
51 cmd_len = (u16)strlen(command_line);
52 if (!cmd_len) {
53 return;
54 }
55
56 if (acpi_gbl_history_buffer[acpi_gbl_next_history_index].command !=
57 NULL) {
58 buffer_len =
59 (u16)
60 strlen(acpi_gbl_history_buffer[acpi_gbl_next_history_index].
61 command);
62
63 if (cmd_len > buffer_len) {
64 acpi_os_free(acpi_gbl_history_buffer
65 [acpi_gbl_next_history_index].command);
66 acpi_gbl_history_buffer[acpi_gbl_next_history_index].
67 command = acpi_os_allocate(cmd_len + 1);
68 }
69 } else {
70 acpi_gbl_history_buffer[acpi_gbl_next_history_index].command =
71 acpi_os_allocate(cmd_len + 1);
72 }
73
74 strcpy(acpi_gbl_history_buffer[acpi_gbl_next_history_index].command,
75 command_line);
76
77 acpi_gbl_history_buffer[acpi_gbl_next_history_index].cmd_num =
78 acpi_gbl_next_cmd_num;
79
80
81
82 if ((acpi_gbl_num_history == HISTORY_SIZE) &&
83 (acpi_gbl_next_history_index == acpi_gbl_lo_history)) {
84 acpi_gbl_lo_history++;
85 if (acpi_gbl_lo_history >= HISTORY_SIZE) {
86 acpi_gbl_lo_history = 0;
87 }
88 }
89
90 acpi_gbl_next_history_index++;
91 if (acpi_gbl_next_history_index >= HISTORY_SIZE) {
92 acpi_gbl_next_history_index = 0;
93 }
94
95 acpi_gbl_next_cmd_num++;
96 if (acpi_gbl_num_history < HISTORY_SIZE) {
97 acpi_gbl_num_history++;
98 }
99 }
100
101
102
103
104
105
106
107
108
109
110
111
112
113 void acpi_db_display_history(void)
114 {
115 u32 i;
116 u16 history_index;
117
118 history_index = acpi_gbl_lo_history;
119
120
121
122 for (i = 0; i < acpi_gbl_num_history; i++) {
123 if (acpi_gbl_history_buffer[history_index].command) {
124 acpi_os_printf("%3u %s\n",
125 acpi_gbl_history_buffer[history_index].
126 cmd_num,
127 acpi_gbl_history_buffer[history_index].
128 command);
129 }
130
131 history_index++;
132 if (history_index >= HISTORY_SIZE) {
133 history_index = 0;
134 }
135 }
136 }
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151 char *acpi_db_get_from_history(char *command_num_arg)
152 {
153 u32 cmd_num;
154
155 if (command_num_arg == NULL) {
156 cmd_num = acpi_gbl_next_cmd_num - 1;
157 }
158
159 else {
160 cmd_num = strtoul(command_num_arg, NULL, 0);
161 }
162
163 return (acpi_db_get_history_by_index(cmd_num));
164 }
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179 char *acpi_db_get_history_by_index(u32 cmd_num)
180 {
181 u32 i;
182 u16 history_index;
183
184
185
186 history_index = acpi_gbl_lo_history;
187 for (i = 0; i < acpi_gbl_num_history; i++) {
188 if (acpi_gbl_history_buffer[history_index].cmd_num == cmd_num) {
189
190
191
192 return (acpi_gbl_history_buffer[history_index].command);
193 }
194
195
196
197 history_index++;
198 if (history_index >= HISTORY_SIZE) {
199 history_index = 0;
200 }
201 }
202
203 acpi_os_printf("Invalid history number: %u\n", history_index);
204 return (NULL);
205 }