log.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* Log file output.
  2. Copyright (C) 2003, 2005 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Library General Public License as published
  5. by the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  14. USA. */
  15. /* Written by Bruno Haible <bruno@clisp.org>. */
  16. #ifdef HAVE_CONFIG_H
  17. # include <config.h>
  18. #endif
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. /* Handle multi-threaded applications. */
  23. #ifdef _LIBC
  24. # include <bits/libc-lock.h>
  25. #else
  26. # include "lock.h"
  27. #endif
  28. /* Print an ASCII string with quotes and escape sequences where needed. */
  29. static void
  30. print_escaped (FILE *stream, const char *str)
  31. {
  32. putc ('"', stream);
  33. for (; *str != '\0'; str++)
  34. if (*str == '\n')
  35. {
  36. fputs ("\\n\"", stream);
  37. if (str[1] == '\0')
  38. return;
  39. fputs ("\n\"", stream);
  40. }
  41. else
  42. {
  43. if (*str == '"' || *str == '\\')
  44. putc ('\\', stream);
  45. putc (*str, stream);
  46. }
  47. putc ('"', stream);
  48. }
  49. static char *last_logfilename = NULL;
  50. static FILE *last_logfile = NULL;
  51. __libc_lock_define_initialized (static, lock)
  52. static inline void
  53. _nl_log_untranslated_locked (const char *logfilename, const char *domainname,
  54. const char *msgid1, const char *msgid2, int plural)
  55. {
  56. FILE *logfile;
  57. /* Can we reuse the last opened logfile? */
  58. if (last_logfilename == NULL || strcmp (logfilename, last_logfilename) != 0)
  59. {
  60. /* Close the last used logfile. */
  61. if (last_logfilename != NULL)
  62. {
  63. if (last_logfile != NULL)
  64. {
  65. fclose (last_logfile);
  66. last_logfile = NULL;
  67. }
  68. free (last_logfilename);
  69. last_logfilename = NULL;
  70. }
  71. /* Open the logfile. */
  72. last_logfilename = (char *) malloc (strlen (logfilename) + 1);
  73. if (last_logfilename == NULL)
  74. return;
  75. strcpy (last_logfilename, logfilename);
  76. last_logfile = fopen (logfilename, "a");
  77. if (last_logfile == NULL)
  78. return;
  79. }
  80. logfile = last_logfile;
  81. fprintf (logfile, "domain ");
  82. print_escaped (logfile, domainname);
  83. fprintf (logfile, "\nmsgid ");
  84. print_escaped (logfile, msgid1);
  85. if (plural)
  86. {
  87. fprintf (logfile, "\nmsgid_plural ");
  88. print_escaped (logfile, msgid2);
  89. fprintf (logfile, "\nmsgstr[0] \"\"\n");
  90. }
  91. else
  92. fprintf (logfile, "\nmsgstr \"\"\n");
  93. putc ('\n', logfile);
  94. }
  95. /* Add to the log file an entry denoting a failed translation. */
  96. void
  97. _nl_log_untranslated (const char *logfilename, const char *domainname,
  98. const char *msgid1, const char *msgid2, int plural)
  99. {
  100. __libc_lock_lock (lock);
  101. _nl_log_untranslated_locked (logfilename, domainname, msgid1, msgid2, plural);
  102. __libc_lock_unlock (lock);
  103. }