summaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2022-05-23 10:08:18 +0200
committerFlorian Weimer <fweimer@redhat.com>2022-05-23 11:06:31 +0200
commit859e7a00af63ca0c28092c57316e9b832ceafb5e (patch)
treedec7fb8075da8b06b3436b3825394aad4ca092f1 /stdio-common
parent5442ea7ffe79dfef3b89e21f46211cc42d347210 (diff)
downloadglibc-859e7a00af63ca0c28092c57316e9b832ceafb5e.tar.gz
vfprintf: Consolidate some multibyte/wide character processing
form_character and form_string processing a sufficiently similar that the logic can be shared. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/vfprintf-process-arg.c130
1 files changed, 43 insertions, 87 deletions
diff --git a/stdio-common/vfprintf-process-arg.c b/stdio-common/vfprintf-process-arg.c
index a28afce7de..4fe369e111 100644
--- a/stdio-common/vfprintf-process-arg.c
+++ b/stdio-common/vfprintf-process-arg.c
@@ -335,29 +335,20 @@ LABEL (form_strerror):
goto LABEL (print_string);
}
-#ifdef COMPILE_WPRINTF
LABEL (form_character):
/* Character. */
if (is_long)
goto LABEL (form_wcharacter);
--width; /* Account for the character itself. */
if (!left)
- PAD (L' ');
+ PAD (L_(' '));
+#ifdef COMPILE_WPRINTF
outchar (__btowc ((unsigned char) process_arg_int ())); /* Promoted. */
+#else
+ outchar ((unsigned char) process_arg_int ()); /* Promoted. */
+#endif
if (left)
- PAD (L' ');
- break;
-
-LABEL (form_wcharacter):
- {
- /* Wide character. */
- --width;
- if (!left)
- PAD (L' ');
- outchar (process_arg_wchar_t ());
- if (left)
- PAD (L' ');
- }
+ PAD (L_(' '));
break;
LABEL (form_string):
@@ -366,8 +357,11 @@ LABEL (form_string):
/* The string argument could in fact be `char *' or `wchar_t *'.
But this should not make a difference here. */
+#ifdef COMPILE_WPRINTF
string = (CHAR_T *) process_arg_wstring ();
-
+#else
+ string = (CHAR_T *) process_arg_string ();
+#endif
/* Entry point for printing other strings. */
LABEL (print_string):
@@ -387,21 +381,39 @@ LABEL (form_string):
}
else if (!is_long && spec != L_('S'))
{
+#ifdef COMPILE_WPRINTF
done = outstring_converted_wide_string
(s, (const char *) string, prec, width, left, done);
if (done < 0)
goto all_done;
/* The padding has already been written. */
break;
+#else
+ if (prec != -1)
+ /* Search for the end of the string, but don't search past
+ the length (in bytes) specified by the precision. */
+ len = __strnlen (string, prec);
+ else
+ len = strlen (string);
+#endif
}
else
{
+#ifdef COMPILE_WPRINTF
if (prec != -1)
/* Search for the end of the string, but don't search past
the length specified by the precision. */
len = __wcsnlen (string, prec);
else
len = __wcslen (string);
+#else
+ done = outstring_converted_wide_string
+ (s, (const wchar_t *) string, prec, width, left, done);
+ if (done < 0)
+ goto all_done;
+ /* The padding has already been written. */
+ break;
+#endif
}
if ((width -= len) < 0)
@@ -411,25 +423,27 @@ LABEL (form_string):
}
if (!left)
- PAD (L' ');
+ PAD (L_(' '));
outstring (string, len);
if (left)
- PAD (L' ');
+ PAD (L_(' '));
}
break;
-#else /* !COMPILE_WPRINTF */
-LABEL (form_character):
- /* Character. */
- if (is_long)
- goto LABEL (form_wcharacter);
- --width; /* Account for the character itself. */
- if (!left)
- PAD (' ');
- outchar ((unsigned char) process_arg_int ()); /* Promoted. */
- if (left)
- PAD (' ');
+
+#ifdef COMPILE_WPRINTF
+LABEL (form_wcharacter):
+ {
+ /* Wide character. */
+ --width;
+ if (!left)
+ PAD (L' ');
+ outchar (process_arg_wchar_t ());
+ if (left)
+ PAD (L' ');
+ }
break;
+#else /* !COMPILE_WPRINTF */
LABEL (form_wcharacter):
{
/* Wide character. */
@@ -453,63 +467,5 @@ LABEL (form_wcharacter):
PAD (' ');
}
break;
-
-LABEL (form_string):
- {
- size_t len;
-
- /* The string argument could in fact be `char *' or `wchar_t *'.
- But this should not make a difference here. */
- string = (char *) process_arg_string ();
-
- /* Entry point for printing other strings. */
- LABEL (print_string):
-
- if (string == NULL)
- {
- /* Write "(null)" if there's space. */
- if (prec == -1 || prec >= (int) sizeof (null) - 1)
- {
- string = (char *) null;
- len = sizeof (null) - 1;
- }
- else
- {
- string = (char *) "";
- len = 0;
- }
- }
- else if (!is_long && spec != L_('S'))
- {
- if (prec != -1)
- /* Search for the end of the string, but don't search past
- the length (in bytes) specified by the precision. */
- len = __strnlen (string, prec);
- else
- len = strlen (string);
- }
- else
- {
- done = outstring_converted_wide_string
- (s, (const wchar_t *) string, prec, width, left, done);
- if (done < 0)
- goto all_done;
- /* The padding has already been written. */
- break;
- }
-
- if ((width -= len) < 0)
- {
- outstring (string, len);
- break;
- }
-
- if (!left)
- PAD (' ');
- outstring (string, len);
- if (left)
- PAD (' ');
- }
- break;
#endif /* !COMPILE_WPRINTF */
}