/* Writing XML files. Copyright (C) 1995-1998, 2000-2003, 2005-2006, 2008-2009, 2014-2016 Free Software Foundation, Inc. This file was written by Daiki Ueno . 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 . */ #ifdef HAVE_CONFIG_H # include #endif /* Specification. */ #include "write-xml.h" #include #include #include #include #include "error.h" #include "msgl-iconv.h" #include "po-charset.h" #include "read-catalog.h" #include "read-po.h" #include "fwriteerror.h" #include "xalloc.h" #include "gettext.h" #define _(str) gettext (str) int msgdomain_write_xml_bulk (msgfmt_operand_list_ty *operands, const char *template_file_name, its_rule_list_ty *its_rules, const char *file_name) { its_merge_context_ty *context; size_t i; FILE *fp; if (strcmp (file_name, "-") == 0) fp = stdout; else { fp = fopen (file_name, "wb"); if (fp == NULL) { error (0, errno, _("cannot create output file \"%s\""), file_name); return 1; } } context = its_merge_context_alloc (its_rules, template_file_name); for (i = 0; i < operands->nitems; i++) its_merge_context_merge (context, operands->items[i].language, operands->items[i].mlp); its_merge_context_write (context, fp); its_merge_context_free (context); /* Make sure nothing went wrong. */ if (fwriteerror (fp)) { error (0, errno, _("error while writing \"%s\" file"), file_name); return 1; } return 0; } int msgdomain_write_xml (message_list_ty *mlp, const char *canon_encoding, const char *locale_name, const char *template_file_name, its_rule_list_ty *its_rules, const char *file_name) { msgfmt_operand_ty operand; msgfmt_operand_list_ty operands; /* Convert the messages to Unicode. */ iconv_message_list (mlp, canon_encoding, po_charset_utf8, NULL); /* Create a single-element operands and run the bulk operation on it. */ operand.language = (char *) locale_name; operand.mlp = mlp; operands.nitems = 1; operands.items = &operand; return msgdomain_write_xml_bulk (&operands, template_file_name, its_rules, file_name); }