os: add support for %f to pnprintf
This is the lazy man's %f support. Print the decimal part of the number, then append a decimal point, then print the first two digits of the fractional part. So %f in sigsafe printing is really %.2f. No boundary checks in place here. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
20def57632
commit
cde7cbe967
|
@ -250,6 +250,7 @@ extern char **xstrtokenize(const char *str, const char *separators);
|
||||||
extern void FormatInt64(int64_t num, char *string);
|
extern void FormatInt64(int64_t num, char *string);
|
||||||
extern void FormatUInt64(uint64_t num, char *string);
|
extern void FormatUInt64(uint64_t num, char *string);
|
||||||
extern void FormatUInt64Hex(uint64_t num, char *string);
|
extern void FormatUInt64Hex(uint64_t num, char *string);
|
||||||
|
extern void FormatDouble(double dbl, char *string);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Compare the two version numbers comprising of major.minor.
|
* Compare the two version numbers comprising of major.minor.
|
||||||
|
|
9
os/log.c
9
os/log.c
|
@ -351,7 +351,16 @@ pnprintf(char *string, size_t size, const char *f, va_list args)
|
||||||
for (i = 0; i < p_len && s_idx < size - 1; i++)
|
for (i = 0; i < p_len && s_idx < size - 1; i++)
|
||||||
string[s_idx++] = number[i];
|
string[s_idx++] = number[i];
|
||||||
break;
|
break;
|
||||||
|
case 'f':
|
||||||
|
{
|
||||||
|
double d = va_arg(args, double);
|
||||||
|
FormatDouble(d, number);
|
||||||
|
p_len = strlen_sigsafe(number);
|
||||||
|
|
||||||
|
for (i = 0; i < p_len && s_idx < size - 1; i++)
|
||||||
|
string[s_idx++] = number[i];
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
va_arg(args, char*);
|
va_arg(args, char*);
|
||||||
string[s_idx++] = '%';
|
string[s_idx++] = '%';
|
||||||
|
|
32
os/utils.c
32
os/utils.c
|
@ -1990,6 +1990,38 @@ FormatUInt64(uint64_t num, char *string)
|
||||||
string[len] = '\0';
|
string[len] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format a double number as %.2f.
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
FormatDouble(double dbl, char *string)
|
||||||
|
{
|
||||||
|
int slen = 0;
|
||||||
|
uint64_t frac;
|
||||||
|
|
||||||
|
frac = (dbl > 0 ? dbl : -dbl) * 100.0;
|
||||||
|
frac %= 100;
|
||||||
|
|
||||||
|
/* write decimal part to string */
|
||||||
|
if (dbl < 0 && dbl > -1)
|
||||||
|
string[slen++] = '-';
|
||||||
|
FormatInt64((int64_t)dbl, &string[slen]);
|
||||||
|
|
||||||
|
while(string[slen] != '\0')
|
||||||
|
slen++;
|
||||||
|
|
||||||
|
/* append fractional part, but only if we have enough characters. We
|
||||||
|
* expect string to be 21 chars (incl trailing \0) */
|
||||||
|
if (slen <= 17) {
|
||||||
|
string[slen++] = '.';
|
||||||
|
if (frac < 10)
|
||||||
|
string[slen++] = '0';
|
||||||
|
|
||||||
|
FormatUInt64(frac, &string[slen]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Format a number into a hexadecimal string in a signal safe manner. The string
|
/* Format a number into a hexadecimal string in a signal safe manner. The string
|
||||||
* should be at least 17 characters in order to handle all uint64_t values. */
|
* should be at least 17 characters in order to handle all uint64_t values. */
|
||||||
void
|
void
|
||||||
|
|
|
@ -41,6 +41,11 @@ struct signed_number_format_test {
|
||||||
char string[21];
|
char string[21];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct float_number_format_test {
|
||||||
|
double number;
|
||||||
|
char string[21];
|
||||||
|
};
|
||||||
|
|
||||||
static Bool
|
static Bool
|
||||||
check_signed_number_format_test(long int number)
|
check_signed_number_format_test(long int number)
|
||||||
{
|
{
|
||||||
|
@ -58,6 +63,25 @@ check_signed_number_format_test(long int number)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static Bool
|
||||||
|
check_float_format_test(double number)
|
||||||
|
{
|
||||||
|
char string[21];
|
||||||
|
char expected[21];
|
||||||
|
|
||||||
|
/* we currently always print float as .2f */
|
||||||
|
sprintf(expected, "%.2f", number);
|
||||||
|
|
||||||
|
FormatDouble(number, string);
|
||||||
|
if(strncmp(string, expected, 21) != 0) {
|
||||||
|
fprintf(stderr, "Failed to convert %f to string (%s vs %s)\n",
|
||||||
|
number, expected, string);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
static Bool
|
static Bool
|
||||||
check_number_format_test(long unsigned int number)
|
check_number_format_test(long unsigned int number)
|
||||||
{
|
{
|
||||||
|
@ -84,6 +108,11 @@ check_number_format_test(long unsigned int number)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: max range stuff */
|
||||||
|
double float_tests[] = { 0, 5, 0.1, 0.01, 5.2342, 10.2301,
|
||||||
|
-1, -2.00, -0.6023, -1203.30
|
||||||
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
number_formatting(void)
|
number_formatting(void)
|
||||||
{
|
{
|
||||||
|
@ -116,6 +145,9 @@ number_formatting(void)
|
||||||
|
|
||||||
for (i = 0; i < sizeof(unsigned_tests) / sizeof(signed_tests[0]); i++)
|
for (i = 0; i < sizeof(unsigned_tests) / sizeof(signed_tests[0]); i++)
|
||||||
assert(check_signed_number_format_test(signed_tests[i]));
|
assert(check_signed_number_format_test(signed_tests[i]));
|
||||||
|
|
||||||
|
for (i = 0; i < sizeof(float_tests) / sizeof(float_tests[0]); i++)
|
||||||
|
assert(check_float_format_test(float_tests[i]));
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma GCC diagnostic ignored "-Wformat-security"
|
#pragma GCC diagnostic ignored "-Wformat-security"
|
||||||
|
@ -232,6 +264,30 @@ static void logging_format(void)
|
||||||
ptr <<= 1;
|
ptr <<= 1;
|
||||||
} while(ptr);
|
} while(ptr);
|
||||||
|
|
||||||
|
|
||||||
|
for (i = 0; i < sizeof(float_tests)/sizeof(float_tests[0]); i++) {
|
||||||
|
double d = float_tests[i];
|
||||||
|
char expected[30];
|
||||||
|
sprintf(expected, "(EE) %.2f\n", d);
|
||||||
|
LogMessageVerbSigSafe(X_ERROR, -1, "%f\n", d);
|
||||||
|
read_log_msg(logmsg);
|
||||||
|
assert(strcmp(logmsg, expected) == 0);
|
||||||
|
|
||||||
|
/* test for length modifiers, we just ignore them atm */
|
||||||
|
LogMessageVerbSigSafe(X_ERROR, -1, "%.3f\n", d);
|
||||||
|
read_log_msg(logmsg);
|
||||||
|
assert(strcmp(logmsg, expected) == 0);
|
||||||
|
|
||||||
|
LogMessageVerbSigSafe(X_ERROR, -1, "%3f\n", d);
|
||||||
|
read_log_msg(logmsg);
|
||||||
|
assert(strcmp(logmsg, expected) == 0);
|
||||||
|
|
||||||
|
LogMessageVerbSigSafe(X_ERROR, -1, "%.0f\n", d);
|
||||||
|
read_log_msg(logmsg);
|
||||||
|
assert(strcmp(logmsg, expected) == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
LogClose(EXIT_NO_ERROR);
|
LogClose(EXIT_NO_ERROR);
|
||||||
unlink(log_file_path);
|
unlink(log_file_path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue