/
niceSOFT
/
gettext
Обзор
Документация
Войти
/
niceSOFT
/
gettext
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
gettext-tools/src/format-csharp.c
283 строки
8 KB
Bruno Haible
Update "Written by ..." lines and authorship notices in source files.
27 янв 2026, 07:43
27 янв 2026, 07:43
c261578
Код
Авторство
О чём код?
/* C# format strings. Copyright (C) 2003-2026 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ /* Written by Bruno Haible. */ #include <config.h> #include <stdbool.h> #include <stdlib.h> #include "format.h" #include "c-ctype.h" #include "xalloc.h" #include "xvasprintf.h" #include "gettext.h" #define _(str) gettext (str) /* C# format strings are described in the description of the .NET System.String class and implemented in mcs-0.28/class/corlib/System/String.cs . A format string consists of literal text (that is output verbatim), doubled braces ('{{' and '}}', that lead to a single brace when output), and directives. A directive - starts with '{', - is followed by a nonnegative integer m, - is optionally followed by ',' and an integer denoting a width, - is optionally followed by ':' and a sequence of format specifiers. (But the interpretation of the format specifiers is up to the IFormattable implementation, depending on the argument's runtime value. New classes implementing IFormattable can be defined by the user.) - is finished with '}'. */ struct spec { size_t directives; size_t numbered_arg_count; }; static void * format_parse (const char *format, bool translated, char *fdi, char **invalid_reason) { const char *const format_start = format; struct spec spec; spec.directives = 0; spec.numbered_arg_count = 0; for (; *format != '\0';) { char c = *format++; if (c == '{') { FDI_SET (format - 1, FMTDIR_START); if (*format == '{') format++; else { /* A directive. */ spec.directives++; size_t number; if (!c_isdigit (*format)) { *invalid_reason = xasprintf (_("In the directive number %zu, '{' is not followed by an argument number."), spec.directives); FDI_SET (*format == '\0' ? format - 1 : format, FMTDIR_ERROR); return NULL; } number = 0; do { number = 10 * number + (*format - '0'); format++; } while (c_isdigit (*format)); if (*format == ',') { /* Parse width. */ format++; if (*format == '-') format++; if (!c_isdigit (*format)) { *invalid_reason = xasprintf (_("In the directive number %zu, ',' is not followed by a number."), spec.directives); FDI_SET (*format == '\0' ? format - 1 : format, FMTDIR_ERROR); return NULL; } do format++; while (c_isdigit (*format)); } if (*format == ':') { /* Parse format specifiers. */ do format++; while (*format != '\0' && *format != '}'); } if (*format == '\0') { *invalid_reason = xstrdup (_("The string ends in the middle of a directive: found '{' without matching '}'.")); FDI_SET (format - 1, FMTDIR_ERROR); return NULL; } if (*format != '}') { *invalid_reason = (c_isprint (*format) ? xasprintf (_("The directive number %zu ends with an invalid character '%c' instead of '}'."), spec.directives, *format) : xasprintf (_("The directive number %zu ends with an invalid character instead of '}'."), spec.directives)); FDI_SET (format, FMTDIR_ERROR); return NULL; } format++; if (spec.numbered_arg_count <= number) spec.numbered_arg_count = number + 1; } FDI_SET (format - 1, FMTDIR_END); } else if (c == '}') { FDI_SET (format - 1, FMTDIR_START); if (*format == '}') format++; else { *invalid_reason = (spec.directives == 0 ? xstrdup (_("The string starts in the middle of a directive: found '}' without matching '{'.")) : xasprintf (_("The string contains a lone '}' after directive number %zu."), spec.directives)); FDI_SET (*format == '\0' ? format - 1 : format, FMTDIR_ERROR); return NULL; } FDI_SET (format - 1, FMTDIR_END); } } struct spec *result = XMALLOC (struct spec); *result = spec; return result; } static void format_free (void *descr) { struct spec *spec = (struct spec *) descr; free (spec); } static int format_get_number_of_directives (void *descr) { struct spec *spec = (struct spec *) descr; return spec->directives; } static bool format_check (void *msgid_descr, void *msgstr_descr, bool equality, formatstring_error_logger_t error_logger, void *error_logger_data, const char *pretty_msgid, const char *pretty_msgstr) { struct spec *spec1 = (struct spec *) msgid_descr; struct spec *spec2 = (struct spec *) msgstr_descr; bool err = false; /* Check that the argument counts are the same. */ if (equality ? spec1->numbered_arg_count != spec2->numbered_arg_count : spec1->numbered_arg_count < spec2->numbered_arg_count) { if (error_logger) error_logger (error_logger_data, _("number of format specifications in '%s' and '%s' does not match"), pretty_msgid, pretty_msgstr); err = true; } return err; } struct formatstring_parser formatstring_csharp = { format_parse, format_free, format_get_number_of_directives, NULL, format_check }; #ifdef TEST /* Test program: Print the argument list specification returned by format_parse for strings read from standard input. */ #include <stdio.h> static void format_print (void *descr) { struct spec *spec = (struct spec *) descr; if (spec == NULL) { printf ("INVALID"); return; } printf ("("); for (size_t i = 0; i < spec->numbered_arg_count; i++) { if (i > 0) printf (" "); printf ("*"); } printf (")"); } int main () { for (;;) { char *line = NULL; size_t line_size = 0; int line_len = getline (&line, &line_size, stdin); if (line_len < 0) break; if (line_len > 0 && line[line_len - 1] == '\n') line[--line_len] = '\0'; char *invalid_reason = NULL; void *descr = format_parse (line, false, NULL, &invalid_reason); format_print (descr); printf ("\n"); if (descr == NULL) printf ("%s\n", invalid_reason); free (invalid_reason); free (line); } return 0; } /* * For Emacs M-x compile * Local Variables: * compile-command: "/bin/sh ../libtool --tag=CC --mode=link gcc -o a.out -static -O -g -Wall -I.. -I../gnulib-lib -I../../gettext-runtime/intl -DTEST format-csharp.c ../gnulib-lib/libgettextlib.la" * End: */ #endif /* TEST */