1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
/*
* libwbxml, the WBXML Library.
* Copyright (C) 2002-2005 Aymerick Jhanne <aymerick@jehanne.org>
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* GPL v2: http://www.gnu.org/licenses/gpl.txt
*
* Contact: libwbxml@aymerick.com
* Home: http://libwbxml.aymerick.com
*/
/**
* @file xml2wbxml_tool.c
* @ingroup xml2wbxml_tool
*
* @author Aymerick Jhanne <libwbxml@aymerick.com>
* @date 03/03/11
*
* @brief XML to WBXML Converter Tool
*
*/
#if !defined ( __SYMBIAN32__ )
#include <memory.h>
#endif /* ! __SYMBIAN32__ */
#include "wbxml.h" /* libwbxml2 */
#include "getopt.h"
/*
* This sytem include is here instead of the *.c files because
* we want it to be included AFTER 'e32def.h' (in 'wbxml.h') on Symbian.
* If not so, Warnings are displayed ('NULL' : macro redefinition)
*/
#include <stdio.h>
#define INPUT_BUFFER_SIZE 1000
static WBXMLVersion get_version(const WB_TINY *lang)
{
if (WBXML_STRCMP(lang, "1.0") == 0)
return WBXML_VERSION_10;
if (WBXML_STRCMP(lang, "1.1") == 0)
return WBXML_VERSION_11;
if (WBXML_STRCMP(lang, "1.2") == 0)
return WBXML_VERSION_12;
if (WBXML_STRCMP(lang, "1.3") == 0)
return WBXML_VERSION_13;
return WBXML_VERSION_UNKNOWN;
}
static void help(void) {
fprintf(stderr, "xml2wbxml [libwbxml %s] by Aymerick Jehanne <aymerick@jehanne.org>\n", WBXML_LIB_VERSION);
fprintf(stderr, "If you use this tool, please send feedbacks to libwbxml@aymerick.com\n");
fprintf(stderr, "http://libwbxml.aymerick.com/\n");
#if defined( HAVE_EXPAT )
fprintf(stderr, "This tool is linked with Expat (http://expat.sourceforge.net)\n\n");
#endif /* HAVE_EXPAT */
fprintf(stderr, "Usage: \n");
fprintf(stderr, " xml2wbxml -o output.wbxml input.xml\n");
fprintf(stderr, " xml2wbxml -k -n -v 1.1 -o output.wbxml input.xml\n\n");
fprintf(stderr, "Options: \n");
fprintf(stderr, " -o output.wbxml : output file\n");
fprintf(stderr, " -k : keep ignorable whitespaces (Default: ignore)\n");
fprintf(stderr, " -n : do NOT generate String Table (Default: generate)\n");
fprintf(stderr, " -v X (WBXML Version of output document)\n");
fprintf(stderr, " 1.0 : WBXML 1.0\n");
fprintf(stderr, " 1.1 : WBXML 1.1\n");
fprintf(stderr, " 1.2 : WBXML 1.2\n");
fprintf(stderr, " 1.3 : WBXML 1.3\n");
fprintf(stderr, "\nNote: '-' can be used to mean stdin on input or stdout on output\n\n");
}
WB_LONG main(WB_LONG argc, WB_TINY **argv)
{
WB_UTINY *wbxml = NULL, *output = NULL, *xml = NULL;
FILE *input_file = NULL, *output_file = NULL;
WB_ULONG wbxml_len = 0;
WB_LONG count = 0, xml_len = 0, total = 0;
WB_TINY opt;
WBXMLError ret = WBXML_OK;
WB_UTINY input_buffer[INPUT_BUFFER_SIZE + 1];
WBXMLGenWBXMLParams params;
/* Init Default Parameters */
params.wbxml_version = WBXML_VERSION_13;
params.use_strtbl = TRUE;
params.keep_ignorable_ws = FALSE;
while ((opt = (WB_TINY) getopt(argc, argv, "nkh?o:v:")) != EOF)
{
switch (opt) {
case 'v':
params.wbxml_version = get_version((const WB_TINY*)optarg);
break;
case 'n':
params.use_strtbl = FALSE;
break;
case 'k':
params.keep_ignorable_ws = TRUE;
break;
case 'o':
output = (WB_UTINY*) optarg;
break;
case 'h':
case '?':
default:
help();
return 0;
}
}
if (optind >= argc) {
fprintf(stderr, "Missing arguments\n");
help();
return 0;
}
#ifdef WBXML_USE_LEAKTRACKER
lt_init_mem();
lt_log_open_file("xml2wbxml.log");
lt_log(0, "\n***************************\n Converting file: %s", argv[optind]);
#endif
/**********************************
* Read the XML Document
*/
if (WBXML_STRCMP(argv[optind], "-") == 0) {
input_file = stdin;
} else {
/* Open XML document */
input_file = fopen(argv[optind], "r");
if (input_file == NULL) {
printf("Failed to open %s\n", argv[optind]);
goto clean_up;
}
}
/* Read XML document */
while(!feof(input_file)) {
count = fread(input_buffer, sizeof(WB_UTINY), INPUT_BUFFER_SIZE, input_file);
if (ferror(input_file)) {
fprintf(stderr, "Error while reading from file %s\n", argv[1]);
if (input_file != stdin)
fclose(input_file);
if (xml != NULL)
wbxml_free(xml);
goto clean_up;
}
total += count;
xml = wbxml_realloc(xml, total + 1);
if (xml == NULL) {
fprintf(stderr, "Not enought memory\n");
if (input_file != stdin)
fclose(input_file);
goto clean_up;
}
memcpy(xml + xml_len, input_buffer, count);
xml_len += count;
}
if (input_file != stdin)
fclose(input_file);
xml[xml_len] = '\0';
/* Convert XML document */
ret = wbxml_conv_xml2wbxml_withlen(xml, xml_len, &wbxml, &wbxml_len, ¶ms);
if (ret != WBXML_OK) {
fprintf(stderr, "xml2wbxml failed: %s\n", wbxml_errors_string(ret));
}
else {
fprintf(stderr, "xml2wbxml succeded\n");
if (output != NULL) {
if (WBXML_STRCMP(output, "-") == 0) {
output_file = stdout;
}
else {
/* Open Output File */
output_file = fopen((const WB_TINY*) output, "wb");
}
if (output_file == NULL) {
fprintf(stderr, "Failed to open output file: %s\n", output);
}
else {
/* Write to Output File */
if (fwrite(wbxml, sizeof(WB_UTINY), wbxml_len, output_file) < wbxml_len)
fprintf(stderr, "Error while writing to file: %s\n", output);
/*
else
fprintf(stderr, "Written %u bytes to file: %s\n", wbxml_len, output);
*/
if (output_file != stdout)
fclose(output_file);
}
}
/* Clean-up */
if (wbxml != NULL)
wbxml_free(wbxml);
}
if (xml != NULL)
wbxml_free(xml);
clean_up:
#ifdef WBXML_USE_LEAKTRACKER
lt_check_leaks();
lt_shutdown_mem();
lt_log_close_file();
#endif
return 0;
}
|