utprint.c revision 1.1 1 1.1 christos /******************************************************************************
2 1.1 christos *
3 1.1 christos * Module Name: utprint - Formatted printing routines
4 1.1 christos *
5 1.1 christos *****************************************************************************/
6 1.1 christos
7 1.1 christos /*
8 1.1 christos * Copyright (C) 2000 - 2014, Intel Corp.
9 1.1 christos * All rights reserved.
10 1.1 christos *
11 1.1 christos * Redistribution and use in source and binary forms, with or without
12 1.1 christos * modification, are permitted provided that the following conditions
13 1.1 christos * are met:
14 1.1 christos * 1. Redistributions of source code must retain the above copyright
15 1.1 christos * notice, this list of conditions, and the following disclaimer,
16 1.1 christos * without modification.
17 1.1 christos * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 1.1 christos * substantially similar to the "NO WARRANTY" disclaimer below
19 1.1 christos * ("Disclaimer") and any redistribution must be conditioned upon
20 1.1 christos * including a substantially similar Disclaimer requirement for further
21 1.1 christos * binary redistribution.
22 1.1 christos * 3. Neither the names of the above-listed copyright holders nor the names
23 1.1 christos * of any contributors may be used to endorse or promote products derived
24 1.1 christos * from this software without specific prior written permission.
25 1.1 christos *
26 1.1 christos * Alternatively, this software may be distributed under the terms of the
27 1.1 christos * GNU General Public License ("GPL") version 2 as published by the Free
28 1.1 christos * Software Foundation.
29 1.1 christos *
30 1.1 christos * NO WARRANTY
31 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 1.1 christos * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 1.1 christos * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 1.1 christos * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 1.1 christos * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 1.1 christos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 1.1 christos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.1 christos * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 1.1 christos * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 1.1 christos * POSSIBILITY OF SUCH DAMAGES.
42 1.1 christos */
43 1.1 christos
44 1.1 christos #include "acpi.h"
45 1.1 christos #include "accommon.h"
46 1.1 christos
47 1.1 christos #define _COMPONENT ACPI_UTILITIES
48 1.1 christos ACPI_MODULE_NAME ("utprint")
49 1.1 christos
50 1.1 christos
51 1.1 christos #define ACPI_FORMAT_SIGN 0x01
52 1.1 christos #define ACPI_FORMAT_SIGN_PLUS 0x02
53 1.1 christos #define ACPI_FORMAT_SIGN_PLUS_SPACE 0x04
54 1.1 christos #define ACPI_FORMAT_ZERO 0x08
55 1.1 christos #define ACPI_FORMAT_LEFT 0x10
56 1.1 christos #define ACPI_FORMAT_UPPER 0x20
57 1.1 christos #define ACPI_FORMAT_PREFIX 0x40
58 1.1 christos
59 1.1 christos
60 1.1 christos /* Local prototypes */
61 1.1 christos
62 1.1 christos static ACPI_SIZE
63 1.1 christos AcpiUtBoundStringLength (
64 1.1 christos const char *String,
65 1.1 christos ACPI_SIZE Count);
66 1.1 christos
67 1.1 christos static char *
68 1.1 christos AcpiUtBoundStringOutput (
69 1.1 christos char *String,
70 1.1 christos const char *End,
71 1.1 christos char c);
72 1.1 christos
73 1.1 christos static char *
74 1.1 christos AcpiUtFormatNumber (
75 1.1 christos char *String,
76 1.1 christos char *End,
77 1.1 christos UINT64 Number,
78 1.1 christos UINT8 Base,
79 1.1 christos INT32 Width,
80 1.1 christos INT32 Precision,
81 1.1 christos UINT8 Type);
82 1.1 christos
83 1.1 christos static char *
84 1.1 christos AcpiUtPutNumber (
85 1.1 christos char *String,
86 1.1 christos UINT64 Number,
87 1.1 christos UINT8 Base,
88 1.1 christos BOOLEAN Upper);
89 1.1 christos
90 1.1 christos
91 1.1 christos /* Module globals */
92 1.1 christos
93 1.1 christos static const char AcpiGbl_LowerHexDigits[] = "0123456789abcdef";
94 1.1 christos static const char AcpiGbl_UpperHexDigits[] = "0123456789ABCDEF";
95 1.1 christos
96 1.1 christos
97 1.1 christos /*******************************************************************************
98 1.1 christos *
99 1.1 christos * FUNCTION: AcpiUtBoundStringLength
100 1.1 christos *
101 1.1 christos * PARAMETERS: String - String with boundary
102 1.1 christos * Count - Boundary of the string
103 1.1 christos *
104 1.1 christos * RETURN: Length of the string. Less than or equal to Count.
105 1.1 christos *
106 1.1 christos * DESCRIPTION: Calculate the length of a string with boundary.
107 1.1 christos *
108 1.1 christos ******************************************************************************/
109 1.1 christos
110 1.1 christos static ACPI_SIZE
111 1.1 christos AcpiUtBoundStringLength (
112 1.1 christos const char *String,
113 1.1 christos ACPI_SIZE Count)
114 1.1 christos {
115 1.1 christos UINT32 Length = 0;
116 1.1 christos
117 1.1 christos
118 1.1 christos while (*String && Count)
119 1.1 christos {
120 1.1 christos Length++;
121 1.1 christos String++;
122 1.1 christos Count--;
123 1.1 christos }
124 1.1 christos
125 1.1 christos return (Length);
126 1.1 christos }
127 1.1 christos
128 1.1 christos
129 1.1 christos /*******************************************************************************
130 1.1 christos *
131 1.1 christos * FUNCTION: AcpiUtBoundStringOutput
132 1.1 christos *
133 1.1 christos * PARAMETERS: String - String with boundary
134 1.1 christos * End - Boundary of the string
135 1.1 christos * c - Character to be output to the string
136 1.1 christos *
137 1.1 christos * RETURN: Updated position for next valid character
138 1.1 christos *
139 1.1 christos * DESCRIPTION: Output a character into a string with boundary check.
140 1.1 christos *
141 1.1 christos ******************************************************************************/
142 1.1 christos
143 1.1 christos static char *
144 1.1 christos AcpiUtBoundStringOutput (
145 1.1 christos char *String,
146 1.1 christos const char *End,
147 1.1 christos char c)
148 1.1 christos {
149 1.1 christos
150 1.1 christos if (String < End)
151 1.1 christos {
152 1.1 christos *String = c;
153 1.1 christos }
154 1.1 christos
155 1.1 christos ++String;
156 1.1 christos return (String);
157 1.1 christos }
158 1.1 christos
159 1.1 christos
160 1.1 christos /*******************************************************************************
161 1.1 christos *
162 1.1 christos * FUNCTION: AcpiUtPutNumber
163 1.1 christos *
164 1.1 christos * PARAMETERS: String - Buffer to hold reverse-ordered string
165 1.1 christos * Number - Integer to be converted
166 1.1 christos * Base - Base of the integer
167 1.1 christos * Upper - Whether or not using upper cased digits
168 1.1 christos *
169 1.1 christos * RETURN: Updated position for next valid character
170 1.1 christos *
171 1.1 christos * DESCRIPTION: Convert an integer into a string, note that, the string holds a
172 1.1 christos * reversed ordered number without the trailing zero.
173 1.1 christos *
174 1.1 christos ******************************************************************************/
175 1.1 christos
176 1.1 christos static char *
177 1.1 christos AcpiUtPutNumber (
178 1.1 christos char *String,
179 1.1 christos UINT64 Number,
180 1.1 christos UINT8 Base,
181 1.1 christos BOOLEAN Upper)
182 1.1 christos {
183 1.1 christos const char *Digits;
184 1.1 christos UINT64 DigitIndex;
185 1.1 christos char *Pos;
186 1.1 christos
187 1.1 christos
188 1.1 christos Pos = String;
189 1.1 christos Digits = Upper ? AcpiGbl_UpperHexDigits : AcpiGbl_LowerHexDigits;
190 1.1 christos
191 1.1 christos if (Number == 0)
192 1.1 christos {
193 1.1 christos *(Pos++) = '0';
194 1.1 christos }
195 1.1 christos else
196 1.1 christos {
197 1.1 christos while (Number)
198 1.1 christos {
199 1.1 christos (void) AcpiUtDivide (Number, Base, &Number, &DigitIndex);
200 1.1 christos *(Pos++) = Digits[DigitIndex];
201 1.1 christos }
202 1.1 christos }
203 1.1 christos
204 1.1 christos /* *(Pos++) = '0'; */
205 1.1 christos return (Pos);
206 1.1 christos }
207 1.1 christos
208 1.1 christos
209 1.1 christos /*******************************************************************************
210 1.1 christos *
211 1.1 christos * FUNCTION: AcpiUtScanNumber
212 1.1 christos *
213 1.1 christos * PARAMETERS: String - String buffer
214 1.1 christos * NumberPtr - Where the number is returned
215 1.1 christos *
216 1.1 christos * RETURN: Updated position for next valid character
217 1.1 christos *
218 1.1 christos * DESCRIPTION: Scan a string for a decimal integer.
219 1.1 christos *
220 1.1 christos ******************************************************************************/
221 1.1 christos
222 1.1 christos const char *
223 1.1 christos AcpiUtScanNumber (
224 1.1 christos const char *String,
225 1.1 christos UINT64 *NumberPtr)
226 1.1 christos {
227 1.1 christos UINT64 Number = 0;
228 1.1 christos
229 1.1 christos
230 1.1 christos while (ACPI_IS_DIGIT (*String))
231 1.1 christos {
232 1.1 christos Number *= 10;
233 1.1 christos Number += *(String++) - '0';
234 1.1 christos }
235 1.1 christos
236 1.1 christos *NumberPtr = Number;
237 1.1 christos return (String);
238 1.1 christos }
239 1.1 christos
240 1.1 christos
241 1.1 christos /*******************************************************************************
242 1.1 christos *
243 1.1 christos * FUNCTION: AcpiUtPrintNumber
244 1.1 christos *
245 1.1 christos * PARAMETERS: String - String buffer
246 1.1 christos * Number - The number to be converted
247 1.1 christos *
248 1.1 christos * RETURN: Updated position for next valid character
249 1.1 christos *
250 1.1 christos * DESCRIPTION: Print a decimal integer into a string.
251 1.1 christos *
252 1.1 christos ******************************************************************************/
253 1.1 christos
254 1.1 christos const char *
255 1.1 christos AcpiUtPrintNumber (
256 1.1 christos char *String,
257 1.1 christos UINT64 Number)
258 1.1 christos {
259 1.1 christos char AsciiString[20];
260 1.1 christos const char *Pos1;
261 1.1 christos char *Pos2;
262 1.1 christos
263 1.1 christos
264 1.1 christos Pos1 = AcpiUtPutNumber (AsciiString, Number, 10, FALSE);
265 1.1 christos Pos2 = String;
266 1.1 christos
267 1.1 christos while (Pos1 != AsciiString)
268 1.1 christos {
269 1.1 christos *(Pos2++) = *(--Pos1);
270 1.1 christos }
271 1.1 christos
272 1.1 christos *Pos2 = 0;
273 1.1 christos return (String);
274 1.1 christos }
275 1.1 christos
276 1.1 christos
277 1.1 christos /*******************************************************************************
278 1.1 christos *
279 1.1 christos * FUNCTION: AcpiUtFormatNumber
280 1.1 christos *
281 1.1 christos * PARAMETERS: String - String buffer with boundary
282 1.1 christos * End - Boundary of the string
283 1.1 christos * Number - The number to be converted
284 1.1 christos * Base - Base of the integer
285 1.1 christos * Width - Field width
286 1.1 christos * Precision - Precision of the integer
287 1.1 christos * Type - Special printing flags
288 1.1 christos *
289 1.1 christos * RETURN: Updated position for next valid character
290 1.1 christos *
291 1.1 christos * DESCRIPTION: Print an integer into a string with any base and any precision.
292 1.1 christos *
293 1.1 christos ******************************************************************************/
294 1.1 christos
295 1.1 christos static char *
296 1.1 christos AcpiUtFormatNumber (
297 1.1 christos char *String,
298 1.1 christos char *End,
299 1.1 christos UINT64 Number,
300 1.1 christos UINT8 Base,
301 1.1 christos INT32 Width,
302 1.1 christos INT32 Precision,
303 1.1 christos UINT8 Type)
304 1.1 christos {
305 1.1 christos char *Pos;
306 1.1 christos char Sign;
307 1.1 christos char Zero;
308 1.1 christos BOOLEAN NeedPrefix;
309 1.1 christos BOOLEAN Upper;
310 1.1 christos INT32 i;
311 1.1 christos char ReversedString[66];
312 1.1 christos
313 1.1 christos
314 1.1 christos /* Parameter validation */
315 1.1 christos
316 1.1 christos if (Base < 2 || Base > 16)
317 1.1 christos {
318 1.1 christos return (NULL);
319 1.1 christos }
320 1.1 christos
321 1.1 christos if (Type & ACPI_FORMAT_LEFT)
322 1.1 christos {
323 1.1 christos Type &= ~ACPI_FORMAT_ZERO;
324 1.1 christos }
325 1.1 christos
326 1.1 christos NeedPrefix = ((Type & ACPI_FORMAT_PREFIX) && Base != 10) ? TRUE : FALSE;
327 1.1 christos Upper = (Type & ACPI_FORMAT_UPPER) ? TRUE : FALSE;
328 1.1 christos Zero = (Type & ACPI_FORMAT_ZERO) ? '0' : ' ';
329 1.1 christos
330 1.1 christos /* Calculate size according to sign and prefix */
331 1.1 christos
332 1.1 christos Sign = '\0';
333 1.1 christos if (Type & ACPI_FORMAT_SIGN)
334 1.1 christos {
335 1.1 christos if ((INT64) Number < 0)
336 1.1 christos {
337 1.1 christos Sign = '-';
338 1.1 christos Number = - (INT64) Number;
339 1.1 christos Width--;
340 1.1 christos }
341 1.1 christos else if (Type & ACPI_FORMAT_SIGN_PLUS)
342 1.1 christos {
343 1.1 christos Sign = '+';
344 1.1 christos Width--;
345 1.1 christos }
346 1.1 christos else if (Type & ACPI_FORMAT_SIGN_PLUS_SPACE)
347 1.1 christos {
348 1.1 christos Sign = ' ';
349 1.1 christos Width--;
350 1.1 christos }
351 1.1 christos }
352 1.1 christos if (NeedPrefix)
353 1.1 christos {
354 1.1 christos Width--;
355 1.1 christos if (Base == 16)
356 1.1 christos {
357 1.1 christos Width--;
358 1.1 christos }
359 1.1 christos }
360 1.1 christos
361 1.1 christos /* Generate full string in reverse order */
362 1.1 christos
363 1.1 christos Pos = AcpiUtPutNumber (ReversedString, Number, Base, Upper);
364 1.1 christos i = ACPI_PTR_DIFF (Pos, ReversedString);
365 1.1 christos
366 1.1 christos /* Printing 100 using %2d gives "100", not "00" */
367 1.1 christos
368 1.1 christos if (i > Precision)
369 1.1 christos {
370 1.1 christos Precision = i;
371 1.1 christos }
372 1.1 christos
373 1.1 christos Width -= Precision;
374 1.1 christos
375 1.1 christos /* Output the string */
376 1.1 christos
377 1.1 christos if (!(Type & (ACPI_FORMAT_ZERO | ACPI_FORMAT_LEFT)))
378 1.1 christos {
379 1.1 christos while (--Width >= 0)
380 1.1 christos {
381 1.1 christos String = AcpiUtBoundStringOutput (String, End, ' ');
382 1.1 christos }
383 1.1 christos }
384 1.1 christos if (Sign)
385 1.1 christos {
386 1.1 christos String = AcpiUtBoundStringOutput (String, End, Sign);
387 1.1 christos }
388 1.1 christos if (NeedPrefix)
389 1.1 christos {
390 1.1 christos String = AcpiUtBoundStringOutput (String, End, '0');
391 1.1 christos if (Base == 16)
392 1.1 christos {
393 1.1 christos String = AcpiUtBoundStringOutput (String, End,
394 1.1 christos Upper ? 'X' : 'x');
395 1.1 christos }
396 1.1 christos }
397 1.1 christos if (!(Type & ACPI_FORMAT_LEFT))
398 1.1 christos {
399 1.1 christos while (--Width >= 0)
400 1.1 christos {
401 1.1 christos String = AcpiUtBoundStringOutput (String, End, Zero);
402 1.1 christos }
403 1.1 christos }
404 1.1 christos
405 1.1 christos while (i <= --Precision)
406 1.1 christos {
407 1.1 christos String = AcpiUtBoundStringOutput (String, End, '0');
408 1.1 christos }
409 1.1 christos while (--i >= 0)
410 1.1 christos {
411 1.1 christos String = AcpiUtBoundStringOutput (String, End,
412 1.1 christos ReversedString[i]);
413 1.1 christos }
414 1.1 christos while (--Width >= 0)
415 1.1 christos {
416 1.1 christos String = AcpiUtBoundStringOutput (String, End, ' ');
417 1.1 christos }
418 1.1 christos
419 1.1 christos return (String);
420 1.1 christos }
421 1.1 christos
422 1.1 christos
423 1.1 christos /*******************************************************************************
424 1.1 christos *
425 1.1 christos * FUNCTION: AcpiUtVsnprintf
426 1.1 christos *
427 1.1 christos * PARAMETERS: String - String with boundary
428 1.1 christos * Size - Boundary of the string
429 1.1 christos * Format - Standard printf format
430 1.1 christos * Args - Argument list
431 1.1 christos *
432 1.1 christos * RETURN: Number of bytes actually written.
433 1.1 christos *
434 1.1 christos * DESCRIPTION: Formatted output to a string using argument list pointer.
435 1.1 christos *
436 1.1 christos ******************************************************************************/
437 1.1 christos
438 1.1 christos int
439 1.1 christos AcpiUtVsnprintf (
440 1.1 christos char *String,
441 1.1 christos ACPI_SIZE Size,
442 1.1 christos const char *Format,
443 1.1 christos va_list Args)
444 1.1 christos {
445 1.1 christos UINT8 Base = 10;
446 1.1 christos UINT8 Type = 0;
447 1.1 christos INT32 Width = -1;
448 1.1 christos INT32 Precision = -1;
449 1.1 christos char Qualifier = 0;
450 1.1 christos UINT64 Number;
451 1.1 christos char *Pos;
452 1.1 christos char *End;
453 1.1 christos char c;
454 1.1 christos const char *s;
455 1.1 christos const void *p;
456 1.1 christos INT32 Length;
457 1.1 christos int i;
458 1.1 christos
459 1.1 christos
460 1.1 christos Pos = String;
461 1.1 christos End = String + Size;
462 1.1 christos
463 1.1 christos for (; *Format; ++Format)
464 1.1 christos {
465 1.1 christos if (*Format != '%')
466 1.1 christos {
467 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, *Format);
468 1.1 christos continue;
469 1.1 christos }
470 1.1 christos
471 1.1 christos /* Process sign */
472 1.1 christos
473 1.1 christos do
474 1.1 christos {
475 1.1 christos ++Format;
476 1.1 christos if (*Format == '#')
477 1.1 christos {
478 1.1 christos Type |= ACPI_FORMAT_PREFIX;
479 1.1 christos }
480 1.1 christos else if (*Format == '0')
481 1.1 christos {
482 1.1 christos Type |= ACPI_FORMAT_ZERO;
483 1.1 christos }
484 1.1 christos else if (*Format == '+')
485 1.1 christos {
486 1.1 christos Type |= ACPI_FORMAT_SIGN_PLUS;
487 1.1 christos }
488 1.1 christos else if (*Format == ' ')
489 1.1 christos {
490 1.1 christos Type |= ACPI_FORMAT_SIGN_PLUS_SPACE;
491 1.1 christos }
492 1.1 christos else if (*Format == '-')
493 1.1 christos {
494 1.1 christos Type |= ACPI_FORMAT_LEFT;
495 1.1 christos }
496 1.1 christos else
497 1.1 christos {
498 1.1 christos break;
499 1.1 christos }
500 1.1 christos } while (1);
501 1.1 christos
502 1.1 christos /* Process width */
503 1.1 christos
504 1.1 christos Width = -1;
505 1.1 christos if (ACPI_IS_DIGIT (*Format))
506 1.1 christos {
507 1.1 christos Format = AcpiUtScanNumber (Format, &Number);
508 1.1 christos Width = (INT32) Number;
509 1.1 christos }
510 1.1 christos else if (*Format == '*')
511 1.1 christos {
512 1.1 christos ++Format;
513 1.1 christos Width = va_arg (Args, int);
514 1.1 christos if (Width < 0)
515 1.1 christos {
516 1.1 christos Width = -Width;
517 1.1 christos Type |= ACPI_FORMAT_LEFT;
518 1.1 christos }
519 1.1 christos }
520 1.1 christos
521 1.1 christos /* Process precision */
522 1.1 christos
523 1.1 christos Precision = -1;
524 1.1 christos if (*Format == '.')
525 1.1 christos {
526 1.1 christos ++Format;
527 1.1 christos if (ACPI_IS_DIGIT(*Format))
528 1.1 christos {
529 1.1 christos Format = AcpiUtScanNumber (Format, &Number);
530 1.1 christos Precision = (INT32) Number;
531 1.1 christos }
532 1.1 christos else if (*Format == '*')
533 1.1 christos {
534 1.1 christos ++Format;
535 1.1 christos Precision = va_arg (Args, int);
536 1.1 christos }
537 1.1 christos if (Precision < 0)
538 1.1 christos {
539 1.1 christos Precision = 0;
540 1.1 christos }
541 1.1 christos }
542 1.1 christos
543 1.1 christos /* Process qualifier */
544 1.1 christos
545 1.1 christos Qualifier = -1;
546 1.1 christos if (*Format == 'h' || *Format == 'l' || *Format == 'L')
547 1.1 christos {
548 1.1 christos Qualifier = *Format;
549 1.1 christos ++Format;
550 1.1 christos
551 1.1 christos if (Qualifier == 'l' && *Format == 'l')
552 1.1 christos {
553 1.1 christos Qualifier = 'L';
554 1.1 christos ++Format;
555 1.1 christos }
556 1.1 christos }
557 1.1 christos
558 1.1 christos switch (*Format)
559 1.1 christos {
560 1.1 christos case '%':
561 1.1 christos
562 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, '%');
563 1.1 christos continue;
564 1.1 christos
565 1.1 christos case 'c':
566 1.1 christos
567 1.1 christos if (!(Type & ACPI_FORMAT_LEFT))
568 1.1 christos {
569 1.1 christos while (--Width > 0)
570 1.1 christos {
571 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, ' ');
572 1.1 christos }
573 1.1 christos }
574 1.1 christos
575 1.1 christos c = (char) va_arg (Args, int);
576 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, c);
577 1.1 christos
578 1.1 christos while (--Width > 0)
579 1.1 christos {
580 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, ' ');
581 1.1 christos }
582 1.1 christos continue;
583 1.1 christos
584 1.1 christos case 's':
585 1.1 christos
586 1.1 christos s = va_arg (Args, char *);
587 1.1 christos if (!s)
588 1.1 christos {
589 1.1 christos s = "<NULL>";
590 1.1 christos }
591 1.1 christos Length = AcpiUtBoundStringLength (s, Precision);
592 1.1 christos if (!(Type & ACPI_FORMAT_LEFT))
593 1.1 christos {
594 1.1 christos while (Length < Width--)
595 1.1 christos {
596 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, ' ');
597 1.1 christos }
598 1.1 christos }
599 1.1 christos for (i = 0; i < Length; ++i)
600 1.1 christos {
601 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, *s);
602 1.1 christos ++s;
603 1.1 christos }
604 1.1 christos while (Length < Width--)
605 1.1 christos {
606 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, ' ');
607 1.1 christos }
608 1.1 christos continue;
609 1.1 christos
610 1.1 christos case 'o':
611 1.1 christos
612 1.1 christos Base = 8;
613 1.1 christos break;
614 1.1 christos
615 1.1 christos case 'X':
616 1.1 christos
617 1.1 christos Type |= ACPI_FORMAT_UPPER;
618 1.1 christos
619 1.1 christos case 'x':
620 1.1 christos
621 1.1 christos Base = 16;
622 1.1 christos break;
623 1.1 christos
624 1.1 christos case 'd':
625 1.1 christos case 'i':
626 1.1 christos
627 1.1 christos Type |= ACPI_FORMAT_SIGN;
628 1.1 christos
629 1.1 christos case 'u':
630 1.1 christos
631 1.1 christos break;
632 1.1 christos
633 1.1 christos case 'p':
634 1.1 christos
635 1.1 christos if (Width == -1)
636 1.1 christos {
637 1.1 christos Width = 2 * sizeof (void *);
638 1.1 christos Type |= ACPI_FORMAT_ZERO;
639 1.1 christos }
640 1.1 christos
641 1.1 christos p = va_arg (Args, void *);
642 1.1 christos Pos = AcpiUtFormatNumber (Pos, End,
643 1.1 christos ACPI_TO_INTEGER (p), 16, Width, Precision, Type);
644 1.1 christos continue;
645 1.1 christos
646 1.1 christos default:
647 1.1 christos
648 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, '%');
649 1.1 christos if (*Format)
650 1.1 christos {
651 1.1 christos Pos = AcpiUtBoundStringOutput (Pos, End, *Format);
652 1.1 christos }
653 1.1 christos else
654 1.1 christos {
655 1.1 christos --Format;
656 1.1 christos }
657 1.1 christos continue;
658 1.1 christos }
659 1.1 christos
660 1.1 christos if (Qualifier == 'L')
661 1.1 christos {
662 1.1 christos Number = va_arg (Args, UINT64);
663 1.1 christos if (Type & ACPI_FORMAT_SIGN)
664 1.1 christos {
665 1.1 christos Number = (INT64) Number;
666 1.1 christos }
667 1.1 christos }
668 1.1 christos else if (Qualifier == 'l')
669 1.1 christos {
670 1.1 christos Number = va_arg (Args, unsigned long);
671 1.1 christos if (Type & ACPI_FORMAT_SIGN)
672 1.1 christos {
673 1.1 christos Number = (INT32) Number;
674 1.1 christos }
675 1.1 christos }
676 1.1 christos else if (Qualifier == 'h')
677 1.1 christos {
678 1.1 christos Number = (UINT16) va_arg (Args, int);
679 1.1 christos if (Type & ACPI_FORMAT_SIGN)
680 1.1 christos {
681 1.1 christos Number = (INT16) Number;
682 1.1 christos }
683 1.1 christos }
684 1.1 christos else
685 1.1 christos {
686 1.1 christos Number = va_arg (Args, unsigned int);
687 1.1 christos if (Type & ACPI_FORMAT_SIGN)
688 1.1 christos {
689 1.1 christos Number = (signed int) Number;
690 1.1 christos }
691 1.1 christos }
692 1.1 christos
693 1.1 christos Pos = AcpiUtFormatNumber (Pos, End, Number, Base,
694 1.1 christos Width, Precision, Type);
695 1.1 christos }
696 1.1 christos
697 1.1 christos if (Size > 0)
698 1.1 christos {
699 1.1 christos if (Pos < End)
700 1.1 christos {
701 1.1 christos *Pos = '\0';
702 1.1 christos }
703 1.1 christos else
704 1.1 christos {
705 1.1 christos End[-1] = '\0';
706 1.1 christos }
707 1.1 christos }
708 1.1 christos
709 1.1 christos return (ACPI_PTR_DIFF (Pos, String));
710 1.1 christos }
711 1.1 christos
712 1.1 christos
713 1.1 christos /*******************************************************************************
714 1.1 christos *
715 1.1 christos * FUNCTION: AcpiUtSnprintf
716 1.1 christos *
717 1.1 christos * PARAMETERS: String - String with boundary
718 1.1 christos * Size - Boundary of the string
719 1.1 christos * Format, ... - Standard printf format
720 1.1 christos *
721 1.1 christos * RETURN: Number of bytes actually written.
722 1.1 christos *
723 1.1 christos * DESCRIPTION: Formatted output to a string.
724 1.1 christos *
725 1.1 christos ******************************************************************************/
726 1.1 christos
727 1.1 christos int
728 1.1 christos AcpiUtSnprintf (
729 1.1 christos char *String,
730 1.1 christos ACPI_SIZE Size,
731 1.1 christos const char *Format,
732 1.1 christos ...)
733 1.1 christos {
734 1.1 christos va_list Args;
735 1.1 christos int Length;
736 1.1 christos
737 1.1 christos
738 1.1 christos va_start (Args, Format);
739 1.1 christos Length = AcpiUtVsnprintf (String, Size, Format, Args);
740 1.1 christos va_end (Args);
741 1.1 christos
742 1.1 christos return (Length);
743 1.1 christos }
744 1.1 christos
745 1.1 christos
746 1.1 christos #ifdef ACPI_APPLICATION
747 1.1 christos /*******************************************************************************
748 1.1 christos *
749 1.1 christos * FUNCTION: AcpiUtFileVprintf
750 1.1 christos *
751 1.1 christos * PARAMETERS: File - File descriptor
752 1.1 christos * Format - Standard printf format
753 1.1 christos * Args - Argument list
754 1.1 christos *
755 1.1 christos * RETURN: Number of bytes actually written.
756 1.1 christos *
757 1.1 christos * DESCRIPTION: Formatted output to a file using argument list pointer.
758 1.1 christos *
759 1.1 christos ******************************************************************************/
760 1.1 christos
761 1.1 christos int
762 1.1 christos AcpiUtFileVprintf (
763 1.1 christos ACPI_FILE File,
764 1.1 christos const char *Format,
765 1.1 christos va_list Args)
766 1.1 christos {
767 1.1 christos ACPI_CPU_FLAGS Flags;
768 1.1 christos int Length;
769 1.1 christos
770 1.1 christos
771 1.1 christos Flags = AcpiOsAcquireLock (AcpiGbl_PrintLock);
772 1.1 christos Length = AcpiUtVsnprintf (AcpiGbl_PrintBuffer,
773 1.1 christos sizeof (AcpiGbl_PrintBuffer), Format, Args);
774 1.1 christos
775 1.1 christos (void) AcpiOsWriteFile (File, AcpiGbl_PrintBuffer, Length, 1);
776 1.1 christos AcpiOsReleaseLock (AcpiGbl_PrintLock, Flags);
777 1.1 christos
778 1.1 christos return (Length);
779 1.1 christos }
780 1.1 christos
781 1.1 christos
782 1.1 christos /*******************************************************************************
783 1.1 christos *
784 1.1 christos * FUNCTION: AcpiUtFilePrintf
785 1.1 christos *
786 1.1 christos * PARAMETERS: File - File descriptor
787 1.1 christos * Format, ... - Standard printf format
788 1.1 christos *
789 1.1 christos * RETURN: Number of bytes actually written.
790 1.1 christos *
791 1.1 christos * DESCRIPTION: Formatted output to a file.
792 1.1 christos *
793 1.1 christos ******************************************************************************/
794 1.1 christos
795 1.1 christos int
796 1.1 christos AcpiUtFilePrintf (
797 1.1 christos ACPI_FILE File,
798 1.1 christos const char *Format,
799 1.1 christos ...)
800 1.1 christos {
801 1.1 christos va_list Args;
802 1.1 christos int Length;
803 1.1 christos
804 1.1 christos
805 1.1 christos va_start (Args, Format);
806 1.1 christos Length = AcpiUtFileVprintf (File, Format, Args);
807 1.1 christos va_end (Args);
808 1.1 christos
809 1.1 christos return (Length);
810 1.1 christos }
811 1.1 christos #endif
812