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 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
|
/* Dia -- an diagram creation/manipulation program
* Copyright (C) 1998,1999 Alexander Larsson
*
* 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.
*/
/** \file dia_xml.c Helper function to convert Dia's basic to and from XML */
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <fcntl.h>
#include <glib.h>
#include <glib/gstdio.h>
#include <libxml/parser.h>
#include <libxml/parserInternals.h>
#include <libxml/xmlmemory.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <zlib.h>
#include "intl.h"
#include "utils.h"
#include "dia_xml_libxml.h"
#include "dia_xml.h"
#include "geometry.h" /* For isinf() on Solaris */
#include "message.h"
#ifdef G_OS_WIN32
#include <io.h> /* write, close */
#endif
#ifdef G_OS_WIN32 /* apparently _MSC_VER and mingw */
#include <float.h>
# ifndef isinf
# define isinf(a) (!_finite(a))
# endif
#endif
#define BUFLEN 1024
/*
* redefinition of isnan and isinf, for portability, as explained in :
* http://www.gnu.org/software/autoconf/manual/html_node/Function-Portability.html
*/
#ifndef isnan
# define isnan(x) \
(sizeof (x) == sizeof (long double) ? isnan_ld (x) \
: sizeof (x) == sizeof (double) ? isnan_d (x) \
: isnan_f (x))
static inline int isnan_f (float x) { return x != x; }
static inline int isnan_d (double x) { return x != x; }
static inline int isnan_ld (long double x) { return x != x; }
#endif
#ifndef isinf
# define isinf(x) \
(sizeof (x) == sizeof (long double) ? isinf_ld (x) \
: sizeof (x) == sizeof (double) ? isinf_d (x) \
: isinf_f (x))
static inline int isinf_f (float x) { return isnan (x - x); }
static inline int isinf_d (double x) { return isnan (x - x); }
static inline int isinf_ld (long double x) { return isnan (x - x); }
#endif
/*!
* \defgroup DiagramXmlOut Converting data to XML
* \ingroup DiagramXmlIo
* \brief Build XML DOM from simple types
*/
/*!
* \defgroup DiagramXmlIn Retrieving data from XML
* \ingroup DiagramXmlIo
* \brief Parse simple types from XML DOM
*/
/*!
* \brief Fallback implementation for not well-formed diagram files
*
* If all files produced by dia were good XML files, we wouldn't have to do
* this little gymnastic. Alas, during the libxml1 days, we were outputting
* files with no encoding specification (which means UTF-8 if we're in an
* asciish encoding) and strings encoded in local charset (so, we wrote
* broken files).
*
* The following logic finds if we have a broken file, and attempts to fix
* it if it's possible. If the file is correct or is unrecognisable, we pass
* it untouched to libxml2.
* @param filename The name of the file to check.
* @param default_enc The default encoding to use if none is given.
* @param ctx The context in which this function is called
* @return The filename given if it seems ok, or the name of a new file
* with fixed contents, or NULL if we couldn't read the file. The
* caller should free this string and unlink the file if it is not
* the same as `filename'.
* @bug The many gzclose-g_free-return sequences should be refactored into
* an "exception handle" (goto+label). At least for people who think goto is
* better than this. I dont. --hb
* \ingroup DiagramXmlIo
*/
static const gchar *
xml_file_check_encoding(const gchar *filename, const gchar *default_enc, DiaContext *ctx)
{
int fd = g_open (filename, O_RDONLY, 0);
/* If the next call exits the program (without any message) check if
* you are loading an incompatible version of zlib*.dll, e.g. one
* built against a newer version of msvcrt*.dll
*/
gzFile zf = gzdopen(fd,"rb");
gchar *buf;
gchar *p,*pmax;
int len;
gchar *tmp,*res;
int uf;
gboolean well_formed_utf8;
int write_ok;
static char magic_xml[] =
{0x3c,0x3f,0x78,0x6d,0x6c,0x00}; /* "<?xml" in ASCII */
if (!zf) {
dia_log_message("%s can not be opened for encoding check (%s)", filename, fd > 0 ? "gzdopen" : "g_open");
/* XXX perhaps we can just chicken out to libxml ? -- CC */
return filename;
}
p = buf = g_malloc0(BUFLEN);
len = gzread(zf,buf,BUFLEN);
pmax = p + len;
/* first, we expect the magic <?xml string */
if ((0 != strncmp(p,magic_xml,5)) || (len < 5)) {
gzclose(zf);
g_free(buf);
return filename; /* let libxml figure out what this is. */
}
/* now, we're sure we have some asciish XML file. */
p += 5;
while (((*p == 0x20)||(*p == 0x09)||(*p == 0x0d)||(*p == 0x0a))
&& (p<pmax)) p++;
if (p>=pmax) { /* whoops ? */
gzclose(zf);
g_free(buf);
return filename;
}
if (0 != strncmp(p,"version=\"",9)) {
gzclose(zf); /* chicken out. */
g_free(buf);
return filename;
}
p += 9;
/* The header is rather well formed. */
if (p>=pmax) { /* whoops ? */
gzclose(zf);
g_free(buf);
return filename;
}
while ((*p != '"') && (p < pmax)) p++;
p++;
while (((*p == 0x20)||(*p == 0x09)||(*p == 0x0d)||(*p == 0x0a))
&& (p<pmax)) p++;
if (p>=pmax) { /* whoops ? */
gzclose(zf);
g_free(buf);
return filename;
}
if (0 == strncmp(p,"encoding=\"",10)) {
gzclose(zf); /* this file has an encoding string. Good. */
g_free(buf);
return filename;
}
/* now let's read the whole file, to see if there are offending bits.
* We can call it well formed UTF-8 if the highest isn't used
*/
well_formed_utf8 = TRUE;
do {
int i;
for (i = 0; i < len; i++)
if (buf[i] & 0x80 || buf[i] == '&')
well_formed_utf8 = FALSE;
len = gzread(zf,buf,BUFLEN);
} while (len > 0 && well_formed_utf8);
if (well_formed_utf8) {
gzclose(zf); /* this file is utf-8 compatible */
g_free(buf);
return filename;
} else {
gzclose(zf); /* poor man's fseek */
fd = g_open (filename, O_RDONLY, 0);
zf = gzdopen(fd,"rb");
len = gzread(zf,buf,BUFLEN);
}
if (0 != strcmp(default_enc,"UTF-8")) {
dia_context_add_message (ctx,
_("The file %s has no encoding specification;\n"
"assuming it is encoded in %s"),
dia_context_get_filename(ctx), default_enc);
} else {
gzclose(zf); /* we apply the standard here. */
g_free(buf);
return filename;
}
tmp = getenv("TMP");
if (!tmp) tmp = getenv("TEMP");
if (!tmp) tmp = "/tmp";
res = g_strconcat(tmp,G_DIR_SEPARATOR_S,"dia-xml-fix-encodingXXXXXX",NULL);
uf = g_mkstemp(res);
write_ok = (uf > 0);
write_ok = write_ok && (write(uf,buf,p-buf) > 0);
write_ok = write_ok && (write(uf," encoding=\"",11) > 0);
write_ok = write_ok && (write(uf,default_enc,strlen(default_enc)) > 0);
write_ok = write_ok && (write(uf,"\" ",2) > 0);
write_ok = write_ok && (write(uf,p,pmax - p) > 0);
while (write_ok) {
len = gzread(zf,buf,BUFLEN);
if (len <= 0) break;
write_ok = write_ok && (write(uf,buf,len) > 0);
}
gzclose(zf);
if (uf > 0)
close(uf);
g_free(buf);
if (!write_ok) {
g_free(res);
res = NULL;
}
return res; /* caller frees the name and unlinks the file. */
}
/*!
* \brief Parse a given file into XML, handling old broken files correctly.
* @param filename The name of the file to read.
* @returns An XML document parsed from the file.
* @see xmlParseFile() in the XML2 library for details on the return value.
* @param ctx The context in which this function is called
* \ingroup DiagramXmlIo
*/
static xmlDocPtr
xmlDiaParseFile(const char *filename, DiaContext *ctx)
{
const char *local_charset = NULL;
xmlErrorPtr error_xml = NULL;
xmlDocPtr ret = NULL;
if ( !g_get_charset(&local_charset)
&& local_charset) {
/* we're not in an UTF-8 environment. */
const gchar *fname = xml_file_check_encoding(filename,local_charset, ctx);
if (fname != filename) {
/* We've got a corrected file to parse. */
ret = xmlDoParseFile(fname, &error_xml);
unlink(fname);
/* printf("has read %s instead of %s\n",fname,filename); */
g_free((void *)fname);
} else {
/* the XML file is good. libxml is "old enough" to handle it correctly.
*/
ret = xmlDoParseFile(filename, &error_xml);
}
} else {
ret = xmlDoParseFile(filename, &error_xml);
}
if (error_xml)
dia_context_add_message (ctx, "%s", error_xml->message);
return ret;
}
/*!
* \brief Parse an xml file from a filename given in Dia's/GLib's filename encoding
* @param filename A file to parse. On win32 the filename encoding is utf-8 since GLib 2.6
* @param error Optional error return form underlying library.
* @return An XML document.
* \ingroup DiagramXmlIo
*/
xmlDocPtr
xmlDoParseFile(const char *filename, xmlErrorPtr *error)
{
xmlDocPtr doc;
doc = xmlParseFile(filename);
if (!doc && error)
*error = xmlGetLastError ();
return doc;
}
/*!
* \brief Parse an xml file from a filename given in Dia's/GLib's filename encoding
*
* @param filename A file to parse. On win32 the filename encoding is utf-8 since GLib 2.6
* @param ctx If something goes wrong during parsing ctx will include according messages
* @param try_harder If set an additional attempt is done with guessed encoding
* @return An XML document.
*
* \ingroup DiagramXmlIo
*/
xmlDocPtr
diaXmlParseFile(const char *filename, DiaContext *ctx, gboolean try_harder)
{
xmlDocPtr doc;
xmlErrorPtr err;
doc = xmlParseFile(filename);
if (!doc) {
err = xmlGetLastError ();
dia_context_add_message (ctx, "%s", err->message);
if (err->code == XML_ERR_INVALID_CHAR && try_harder) /* fallback to temporary file with encoding approach */
doc = xmlDiaParseFile (filename, ctx);
}
return doc;
}
/*!
* \brief Find a named attribute node in an XML object node.
*
* Note that Dia has a concept of attribute node that is not the same
* as an XML attribute.
*
* @param obj_node The node to look in.
* @param attrname The name of the attribute node to find.
* @return The node matching the given name, or NULL if none found.
* \ingroup DiagramXmlIn
*/
AttributeNode
object_find_attribute(ObjectNode obj_node,
const char *attrname)
{
AttributeNode attr;
xmlChar *name;
while (obj_node && xmlIsBlankNode(obj_node))
obj_node = obj_node->next;
if (!obj_node) return NULL;
attr = obj_node->xmlChildrenNode;
while (attr != NULL) {
if (xmlIsBlankNode(attr)) {
attr = attr->next;
continue;
}
name = xmlGetProp(attr, (const xmlChar *)"name");
if ( (name!=NULL) && (strcmp((char *) name, attrname)==0) ) {
xmlFree(name);
return attr;
}
if (name) xmlFree(name);
attr = attr->next;
}
return NULL;
}
/*!
* \brief Find an attribute in a composite XML node.
* @param composite_node The composite node to search.
* @param attrname The name of the attribute node to find.
* @return The desired node, or NULL if none exists in `composite_node'.
* \ingroup DiagramXmlIn
*/
AttributeNode
composite_find_attribute(DataNode composite_node,
const char *attrname)
{
AttributeNode attr;
xmlChar *name;
while (composite_node && xmlIsBlankNode(composite_node))
composite_node = composite_node->next;
if (!composite_node) return NULL;
attr = composite_node->xmlChildrenNode;
while (attr != NULL) {
if (xmlIsBlankNode(attr)) {
attr = attr->next;
continue;
}
name = xmlGetProp(attr, (const xmlChar *)"name");
if ( (name!=NULL) && (strcmp((char *) name, attrname)==0) ) {
xmlFree(name);
return attr;
}
if (name) xmlFree(name);
attr = attr->next;
}
return NULL;
}
/*!
* \brief Count the number of non-blank data nodes in an attribute node.
* @param attribute The attribute node to read from.
* @return The number of non-blank data nodes in the node.
* \ingroup DiagramXmlIn
*/
int
attribute_num_data(AttributeNode attribute)
{
xmlNode *data;
int nr=0;
data = attribute ? attribute->xmlChildrenNode : NULL;
while (data != NULL) {
if (xmlIsBlankNode(data)) {
data = data->next;
continue;
}
nr++;
data = data->next;
}
return nr;
}
/*!
* \brief Get the first data node in an attribute node.
* @param attribute The attribute node to look through.
* @return The first non-black data node in the attribute node.
* \ingroup DiagramXmlIn
*/
DataNode
attribute_first_data(AttributeNode attribute)
{
xmlNode *data = attribute ? attribute->xmlChildrenNode : NULL;
while (data && xmlIsBlankNode(data)) data = data->next;
return (DataNode) data;
}
/*!
* \brief Get the next data node (sibling).
* @param data A data node to start from (e.g. just processed)
* @return The next sibling data node.
* \ingroup DiagramXmlIn
*/
DataNode
data_next(DataNode data)
{
if (data) {
data = data->next;
while (data && xmlIsBlankNode(data)) data = data->next;
}
return (DataNode) data;
}
/*!
* \brief Get the type of a data node.
* @param data The data node.
* @param ctx The context in which this function is called
* @return The type that the data node defines, or 0 on error.
* @note This function does a number of strcmp calls, which may not be the
* fastest way to check if a node is of the expected type.
* \ingroup DiagramXmlIn
*/
DataType
data_type(DataNode data, DiaContext *ctx)
{
const char *name;
name = data ? (const char *)data->name : (const char *)"";
if (strcmp(name, "composite")==0) {
return DATATYPE_COMPOSITE;
} else if (strcmp(name, "int")==0) {
return DATATYPE_INT;
} else if (strcmp(name, "enum")==0) {
return DATATYPE_ENUM;
} else if (strcmp(name, "real")==0) {
return DATATYPE_REAL;
} else if (strcmp(name, "boolean")==0) {
return DATATYPE_BOOLEAN;
} else if (strcmp(name, "color")==0) {
return DATATYPE_COLOR;
} else if (strcmp(name, "point")==0) {
return DATATYPE_POINT;
} else if (strcmp(name, "rectangle")==0) {
return DATATYPE_RECTANGLE;
} else if (strcmp(name, "string")==0) {
return DATATYPE_STRING;
} else if (strcmp(name, "font")==0) {
return DATATYPE_FONT;
} else if (strcmp(name, "bezpoint")==0) {
return DATATYPE_BEZPOINT;
} else if (strcmp(name, "dict")==0) {
return DATATYPE_DICT;
} else if (strcmp(name, "pixbuf")==0) {
return DATATYPE_PIXBUF;
}
dia_context_add_message (ctx, _("Unknown type of DataNode '%s'"), name);
return 0;
}
/*!
* \brief Return the value of an integer-type data node.
* @param data The data node to read from.
* @param ctx The context in which this function is called
* @return The integer value found in the node. If the node is not an
* integer node, an error message is displayed and 0 is returned.
* \ingroup DiagramXmlIn
*/
int
data_int(DataNode data, DiaContext *ctx)
{
xmlChar *val;
int res;
if (data_type(data, ctx)!=DATATYPE_INT) {
dia_context_add_message (ctx, _("Taking int value of non-int node."));
return 0;
}
val = xmlGetProp(data, (const xmlChar *)"val");
res = atoi((char *) val);
if (val) xmlFree(val);
return res;
}
/*!
* \brief Return the value of an enum-type data node.
* @param data The data node to read from.
* @param ctx The context in which this function is called
* @return The enum value found in the node. If the node is not an
* enum node, an error message is displayed and 0 is returned.
* \ingroup DiagramXmlIn
*/
int
data_enum(DataNode data, DiaContext *ctx)
{
xmlChar *val;
int res;
if (data_type(data, ctx)!=DATATYPE_ENUM) {
dia_context_add_message (ctx, "Taking enum value of non-enum node.");
return 0;
}
val = xmlGetProp(data, (const xmlChar *)"val");
res = atoi((char *) val);
if (val) xmlFree(val);
return res;
}
/*!
* \brief Return the value of a real-type data node.
* @param data The data node to read from.
* @param ctx The context in which this function is called
* @return The real value found in the node. If the node is not a
* real-type node, an error message is displayed and 0.0 is returned.
* \ingroup DiagramXmlIn
*/
real
data_real(DataNode data, DiaContext *ctx)
{
xmlChar *val;
real res;
if (data_type(data, ctx)!=DATATYPE_REAL) {
dia_context_add_message (ctx, "Taking real value of non-real node.");
return 0;
}
val = xmlGetProp(data, (const xmlChar *)"val");
res = g_ascii_strtod((char *) val, NULL);
if (val) xmlFree(val);
return res;
}
/*!
* \brief Return the value of a boolean-type data node.
* @param data The data node to read from.
* @param ctx The context in which this function is called
* @return The boolean value found in the node. If the node is not a
* boolean node, an error message is displayed and FALSE is returned.
* \ingroup DiagramXmlIn
*/
int
data_boolean(DataNode data, DiaContext *ctx)
{
xmlChar *val;
int res;
if (data_type(data, ctx)!=DATATYPE_BOOLEAN) {
dia_context_add_message (ctx, "Taking boolean value of non-boolean node.");
return 0;
}
val = xmlGetProp(data, (const xmlChar *)"val");
if ((val) && (strcmp((char *) val, "true")==0))
res = TRUE;
else
res = FALSE;
if (val) xmlFree(val);
return res;
}
/*!
* \brief Return the integer value of a hex digit.
* @param c A hex digit, one of 0-9, a-f or A-F.
* @param ctx The context in which this function is called
* @return The value of the digit, i.e. 0-15. If a non-gex digit is given
* an error is registered in ctx, and 0 is returned.
* \ingroup DiagramXmlIn
*/
static int
hex_digit(char c, DiaContext *ctx)
{
if ((c>='0') && (c<='9'))
return c-'0';
if ((c>='a') && (c<='f'))
return (c-'a') + 10;
if ((c>='A') && (c<='F'))
return (c-'A') + 10;
dia_context_add_message (ctx, "wrong hex digit %c", c);
return 0;
}
/*!
* \brief Return the value of a color-type data node.
* @param data The XML node to read from
* @param col A place to store the resulting RGBA values. If the node does
* not contain a valid color value, an error message is registered in ctx
* and `col' is unchanged.
* @param ctx The context in which this function is called
* \ingroup DiagramXmlIn
*/
void
data_color(DataNode data, Color *col, DiaContext *ctx)
{
xmlChar *val;
int r=0, g=0, b=0, a=0;
if (data_type(data, ctx)!=DATATYPE_COLOR) {
dia_context_add_message (ctx, "Taking color value of non-color node.");
return;
}
val = xmlGetProp(data, (const xmlChar *)"val");
/* Format #RRGGBB */
/* 0123456 */
if ((val) && (xmlStrlen(val)>=7)) {
r = hex_digit(val[1], ctx)*16 + hex_digit(val[2], ctx);
g = hex_digit(val[3], ctx)*16 + hex_digit(val[4], ctx);
b = hex_digit(val[5], ctx)*16 + hex_digit(val[6], ctx);
if (xmlStrlen(val) >= 9) {
a = hex_digit(val[7], ctx)*16 + hex_digit(val[8], ctx);
} else {
a = 0xff;
}
}
if (val) xmlFree(val);
col->red = (float)(r/255.0);
col->green = (float)(g/255.0);
col->blue = (float)(b/255.0);
col->alpha = (float)(a/255.0);
}
/*!
* \brief Return the value of a point-type data node.
* @param data The XML node to read from
* @param point A place to store the resulting x, y values. If the node does
* not contain a valid point value, an error message is registered in ctx
* and `point' is unchanged.
* @param ctx The context in which this function is called
* \ingroup DiagramXmlIn
*/
void
data_point(DataNode data, Point *point, DiaContext *ctx)
{
xmlChar *val;
gchar *str;
real ax,ay;
if (data_type(data, ctx)!=DATATYPE_POINT) {
dia_context_add_message (ctx, _("Taking point value of non-point node."));
return;
}
val = xmlGetProp(data, (const xmlChar *)"val");
point->x = g_ascii_strtod((char *)val, &str);
ax = fabs(point->x);
if ((ax > 1e9) || ((ax < 1e-9) && (ax != 0.0)) || isnan(ax) || isinf(ax)) {
/* there is no provision to keep values larger when saving,
* so do this 'reduction' silent */
if (!(ax < 1e-9))
g_warning(_("Incorrect x Point value \"%s\" %f; discarding it."),val,point->x);
point->x = 0.0;
}
while ((*str != ',') && (*str!=0))
str++;
if (*str==0){
point->y = 0.0;
g_warning(_("Error parsing point."));
xmlFree(val);
return;
}
point->y = g_ascii_strtod(str+1, NULL);
ay = fabs(point->y);
if ((ay > 1e9) || ((ay < 1e-9) && (ay != 0.0)) || isnan(ay) || isinf(ay)) {
if (!(ay < 1e-9)) /* don't bother with useless warnings (see above) */
g_warning(_("Incorrect y Point value \"%s\" %f; discarding it."),str+1,point->y);
point->y = 0.0;
}
xmlFree(val);
}
/*!
* \brief Return the value of a bezpoint-type data node.
* @param data The XML node to read from
* @param point A place to store the resulting values. If the node does
* not contain a valid bezpoint zero initialization is performed.
* @param ctx The context in which this function is called
* \ingroup DiagramXmlIn
*/
void
data_bezpoint(DataNode data, BezPoint *point, DiaContext *ctx)
{
xmlChar *val;
gchar *str;
if (data_type(data, ctx)!=DATATYPE_BEZPOINT) {
dia_context_add_message (ctx, _("Taking bezpoint value of non-point node."));
return;
}
val = xmlGetProp(data, (const xmlChar *)"type");
if (val) {
if (strcmp((char *)val, "moveto") == 0)
point->type = BEZ_MOVE_TO;
else if (strcmp((char *)val, "lineto") == 0)
point->type = BEZ_LINE_TO;
else
point->type = BEZ_CURVE_TO;
xmlFree(val);
}
val = xmlGetProp(data, (const xmlChar *)"p1");
if (val) {
point->p1.x = g_ascii_strtod((char *)val, &str);
if (*str==0) {
point->p1.y = 0;
g_warning(_("Error parsing bezpoint p1."));
} else {
point->p1.y = g_ascii_strtod(str+1, NULL);
}
xmlFree(val);
} else {
point->p1.x = 0;
point->p1.y = 0;
}
val = xmlGetProp(data, (const xmlChar *)"p2");
if (val) {
point->p2.x = g_ascii_strtod((char *)val, &str);
if (*str==0) {
point->p2.y = 0;
g_warning(_("Error parsing bezpoint p2."));
} else {
point->p2.y = g_ascii_strtod(str+1, NULL);
}
xmlFree(val);
} else {
point->p2.x = 0;
point->p2.y = 0;
}
val = xmlGetProp(data, (const xmlChar *)"p3");
if (val) {
point->p3.x = g_ascii_strtod((char *)val, &str);
if (*str==0) {
point->p3.y = 0;
g_warning(_("Error parsing bezpoint p3."));
} else {
point->p3.y = g_ascii_strtod(str+1, NULL);
}
xmlFree(val);
} else {
point->p3.x = 0;
point->p3.y = 0;
}
}
/*!
* Return the value of a rectangle-type data node.
* @param data The data node to read from.
* @param rect A place to store the resulting values. If the node does
* not contain a valid rectangle value, an error message is displayed to the
* user, and `rect' is unchanged.
* @param ctx The context in which this function is called
* \ingroup DiagramXmlIn
*/
void
data_rectangle(DataNode data, Rectangle *rect, DiaContext *ctx)
{
xmlChar *val;
gchar *str;
if (data_type(data, ctx)!=DATATYPE_RECTANGLE) {
dia_context_add_message (ctx, _("Taking rectangle value of non-rectangle node."));
return;
}
val = xmlGetProp(data, (const xmlChar *)"val");
rect->left = g_ascii_strtod((char *)val, &str);
while ((*str != ',') && (*str!=0))
str++;
if (*str==0){
dia_context_add_message (ctx, _("Error parsing rectangle."));
xmlFree(val);
return;
}
rect->top = g_ascii_strtod(str+1, &str);
while ((*str != ';') && (*str!=0))
str++;
if (*str==0){
dia_context_add_message (ctx, _("Error parsing rectangle."));
xmlFree(val);
return;
}
rect->right = g_ascii_strtod(str+1, &str);
while ((*str != ',') && (*str!=0))
str++;
if (*str==0){
dia_context_add_message (ctx, _("Error parsing rectangle."));
xmlFree(val);
return;
}
rect->bottom = g_ascii_strtod(str+1, NULL);
xmlFree(val);
}
/*!
* \brief Return the value of a string-type data node.
* @param data The data node to read from.
* @return The string value found in the node. If the node is not a
* string node, an error message is displayed and NULL is returned. The
* returned valuee should be freed after use.
* @note For historical reasons, strings in Dia XML are surrounded by ##.
* @param ctx The context in which this function is called
* \ingroup DiagramXmlIn
*/
gchar *
data_string(DataNode data, DiaContext *ctx)
{
xmlChar *val;
gchar *str, *p,*str2;
int len;
if (data_type(data, ctx)!=DATATYPE_STRING) {
dia_context_add_message (ctx, _("Taking string value of non-string node."));
return NULL;
}
val = xmlGetProp(data, (const xmlChar *)"val");
if (val != NULL) { /* Old kind of string. Left for backwards compatibility */
str = g_malloc(4 * (sizeof(char)*(xmlStrlen(val)+1))); /* extra room
for UTF8 */
p = str;
while (*val) {
if (*val == '\\') {
val++;
switch (*val) {
case '0':
/* Just skip this. \0 means nothing */
break;
case 'n':
*p++ = '\n';
break;
case 't':
*p++ = '\t';
break;
case '\\':
*p++ = '\\';
break;
default:
dia_context_add_message (ctx, _("Error in string tag."));
}
} else {
*p++ = *val;
}
val++;
}
*p = 0;
xmlFree(val);
str2 = g_strdup(str); /* to remove the extra space */
g_free(str);
return str2;
}
if (data->xmlChildrenNode!=NULL) {
p = (char *)xmlNodeListGetString(data->doc, data->xmlChildrenNode, TRUE);
if (*p!='#')
dia_context_add_message (ctx, _("Error in file, string not starting with #"));
len = strlen(p)-1; /* Ignore first '#' */
str = g_malloc(len+1);
strncpy(str, p+1, len);
str[len]=0; /* For safety */
str[strlen(str)-1] = 0; /* Remove last '#' */
xmlFree(p);
return str;
}
return NULL;
}
/*!
* \brief Return the value of a filename-type data node.
* @param data The data node to read from.
* @param ctx The context in which this function is called
* @return The filename value found in the node. If the node is not a
* filename node, an error message is added to ctx and NULL is returned.
* The resulting string is in the local filesystem's encoding rather than
* UTF-8, and should be freed after use.
* \ingroup DiagramXmlIn
*/
char *
data_filename(DataNode data, DiaContext *ctx)
{
char *utf8 = data_string(data, ctx);
char *filename = NULL;
if (utf8) {
GError *error = NULL;
if ((filename = g_filename_from_utf8(utf8, -1, NULL, NULL, &error)) == NULL) {
dia_context_add_message (ctx, "%s", error->message);
g_error_free (error);
}
g_free(utf8);
}
return filename;
}
/*!
* \brief Return the value of a font-type data node.
*
* This handles both the current format (family and style) and the old format (name).
* @param data The data node to read from.
* @param ctx The context in which this function is called
* @return The font value found in the node. If the node is not a
* font node, an error message is registered and NULL is returned. The
* resulting value should be freed after use.
* \ingroup DiagramXmlIn
*/
DiaFont *
data_font(DataNode data, DiaContext *ctx)
{
xmlChar *family;
DiaFont *font;
if (data_type(data, ctx)!=DATATYPE_FONT) {
dia_context_add_message (ctx, _("Taking font value of non-font node."));
return NULL;
}
family = xmlGetProp(data, (const xmlChar *)"family");
/* always prefer the new format */
if (family) {
DiaFontStyle style;
char* style_name = (char *) xmlGetProp(data, (const xmlChar *)"style");
style = style_name ? atoi(style_name) : 0;
font = dia_font_new ((char *)family, style, 1.0);
if (family) free(family);
if (style_name) xmlFree(style_name);
} else {
/* Legacy format support */
char *name = (char *)xmlGetProp(data, (const xmlChar *)"name");
font = dia_font_new_from_legacy_name(name);
free(name);
}
return font;
}
/* ***** Saving XML **** */
/*!
* \brief Create a new attribute node.
* @param obj_node The object node to create the attribute node under.
* @param attrname The name of the attribute node.
* @return A new attribute node.
* \ingroup DiagramXmlOut
*/
AttributeNode
new_attribute(ObjectNode obj_node,
const char *attrname)
{
AttributeNode attr;
attr = xmlNewChild(obj_node, NULL, (const xmlChar *)"attribute", NULL);
xmlSetProp(attr, (const xmlChar *)"name", (xmlChar *)attrname);
return attr;
}
/*!
* \brief Add an attribute node to a composite node.
* @param composite_node The composite node.
* @param attrname The name of the new attribute node.
* @return The attribute node added.
* \ingroup DiagramXmlOut
*/
AttributeNode
composite_add_attribute(DataNode composite_node,
const char *attrname)
{
AttributeNode attr;
attr = xmlNewChild(composite_node, NULL, (const xmlChar *)"attribute", NULL);
xmlSetProp(attr, (const xmlChar *)"name", (xmlChar *)attrname);
return attr;
}
/*!
* \brief Add integer data to an attribute node.
* @param attr The attribute node.
* @param data The value to set.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_int(AttributeNode attr, int data, DiaContext *ctx)
{
DataNode data_node;
char buffer[20+1]; /* Enought for 64bit int + zero */
g_snprintf(buffer, 20, "%d", data);
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"int", NULL);
xmlSetProp(data_node, (const xmlChar *)"val", (xmlChar *)buffer);
}
/*!
* \brief Add enum data to an attribute node.
* @param attr The attribute node.
* @param data The value to set.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_enum(AttributeNode attr, int data, DiaContext *ctx)
{
DataNode data_node;
char buffer[20+1]; /* Enought for 64bit int + zero */
g_snprintf(buffer, 20, "%d", data);
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"enum", NULL);
xmlSetProp(data_node, (const xmlChar *)"val", (xmlChar *)buffer);
}
/*!
* \brief Add real-typed data to an attribute node.
* @param attr The attribute node.
* @param data The value to set.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_real(AttributeNode attr, real data, DiaContext *ctx)
{
DataNode data_node;
char buffer[G_ASCII_DTOSTR_BUF_SIZE]; /* Large enought */
g_ascii_dtostr(buffer, G_ASCII_DTOSTR_BUF_SIZE, data);
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"real", NULL);
xmlSetProp(data_node, (const xmlChar *)"val", (xmlChar *)buffer);
}
/*!
* \brief Add boolean data to an attribute node.
* @param attr The attribute node.
* @param data The value to set.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_boolean(AttributeNode attr, int data, DiaContext *ctx)
{
DataNode data_node;
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"boolean", NULL);
if (data)
xmlSetProp(data_node, (const xmlChar *)"val", (const xmlChar *)"true");
else
xmlSetProp(data_node, (const xmlChar *)"val", (const xmlChar *)"false");
}
/*!
* \brief Convert a floating-point value to hexadecimal.
* @param x The floating point value.
* @param str A string to place the result in.
* @note Currently only works for 0 <= x <= 255 and will silently cap the value
* to those limits. Also expects str to have at least two bytes allocated,
* and doesn't null-terminate it. This works well for converting a color
* value, but is pretty much useless for other values.
* \ingroup DiagramXmlOut
*/
static void
convert_to_hex(float x, char *str)
{
static const char hex_digit[] = "0123456789abcdef";
int val;
val = x * 255.0;
if (val>255)
val = 255;
if (val<0)
val = 0;
str[0] = hex_digit[val/16];
str[1] = hex_digit[val%16];
}
/*!
* \brief Add color data to an attribute node.
* @param attr The attribute node.
* @param col The value to set.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_color(AttributeNode attr, const Color *col, DiaContext *ctx)
{
char buffer[1+8+1];
DataNode data_node;
buffer[0] = '#';
convert_to_hex(col->red, &buffer[1]);
convert_to_hex(col->green, &buffer[3]);
convert_to_hex(col->blue, &buffer[5]);
convert_to_hex(col->alpha, &buffer[7]);
buffer[9] = 0;
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"color", NULL);
xmlSetProp(data_node, (const xmlChar *)"val", (xmlChar *)buffer);
}
static gchar *
_str_point (const Point *point)
{
gchar *buffer;
gchar px_buf[G_ASCII_DTOSTR_BUF_SIZE];
gchar py_buf[G_ASCII_DTOSTR_BUF_SIZE];
g_ascii_formatd(px_buf, sizeof(px_buf), "%g", point->x);
g_ascii_formatd(py_buf, sizeof(py_buf), "%g", point->y);
buffer = g_strconcat(px_buf, ",", py_buf, NULL);
return buffer;
}
/*!
* \brief Add point data to an attribute node.
* @param attr The attribute node.
* @param point The value to set.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_point(AttributeNode attr, const Point *point, DiaContext *ctx)
{
DataNode data_node;
gchar *buffer = _str_point (point);
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"point", NULL);
xmlSetProp(data_node, (const xmlChar *)"val", (xmlChar *)buffer);
g_free(buffer);
}
/*!
* \brief Saving _BezPoint in a single node
* \ingroup DiagramXmlOut
*/
void
data_add_bezpoint(AttributeNode attr, const BezPoint *point, DiaContext *ctx)
{
DataNode data_node;
gchar *buffer;
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"bezpoint", NULL);
switch (point->type) {
case BEZ_MOVE_TO :
xmlSetProp(data_node, (const xmlChar *)"type", (const xmlChar *)"moveto");
break;
case BEZ_LINE_TO :
xmlSetProp(data_node, (const xmlChar *)"type", (const xmlChar *)"lineto");
break;
case BEZ_CURVE_TO :
xmlSetProp(data_node, (const xmlChar *)"type", (const xmlChar *)"curveto");
break;
default :
g_assert_not_reached();
}
buffer = _str_point (&point->p1);
xmlSetProp(data_node, (const xmlChar *)"p1", (xmlChar *)buffer);
g_free (buffer);
if (point->type == BEZ_CURVE_TO) {
buffer = _str_point (&point->p2);
xmlSetProp(data_node, (const xmlChar *)"p2", (xmlChar *)buffer);
g_free (buffer);
buffer = _str_point (&point->p3);
xmlSetProp(data_node, (const xmlChar *)"p3", (xmlChar *)buffer);
g_free (buffer);
}
}
/*!
* \brief Add rectangle data to an attribute node.
* @param attr The attribute node.
* @param rect The value to set.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_rectangle(AttributeNode attr, const Rectangle *rect, DiaContext *ctx)
{
DataNode data_node;
gchar *buffer;
gchar rl_buf[G_ASCII_DTOSTR_BUF_SIZE];
gchar rr_buf[G_ASCII_DTOSTR_BUF_SIZE];
gchar rt_buf[G_ASCII_DTOSTR_BUF_SIZE];
gchar rb_buf[G_ASCII_DTOSTR_BUF_SIZE];
g_ascii_formatd(rl_buf, sizeof(rl_buf), "%g", rect->left);
g_ascii_formatd(rr_buf, sizeof(rr_buf), "%g", rect->right);
g_ascii_formatd(rt_buf, sizeof(rt_buf), "%g", rect->top);
g_ascii_formatd(rb_buf, sizeof(rb_buf), "%g", rect->bottom);
buffer = g_strconcat(rl_buf, ",", rt_buf, ";", rr_buf, ",", rb_buf, NULL);
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"rectangle", NULL);
xmlSetProp(data_node, (const xmlChar *)"val", (xmlChar *)buffer);
g_free(buffer);
}
/*!
* \brief Add string data to an attribute node.
* @param attr The attribute node.
* @param str The value to set.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_string(AttributeNode attr, const char *str, DiaContext *ctx)
{
xmlChar *escaped_str;
xmlChar *sharped_str;
if (str==NULL) {
(void)xmlNewChild(attr, NULL, (const xmlChar *)"string", (const xmlChar *)"##");
return;
}
escaped_str = xmlEncodeEntitiesReentrant(attr->doc, (xmlChar *) str);
sharped_str = (xmlChar *) g_strconcat("#", (char *) escaped_str, "#", NULL);
xmlFree(escaped_str);
(void)xmlNewChild(attr, NULL, (const xmlChar *)"string", (xmlChar *) sharped_str);
g_free(sharped_str);
}
/*!
* \brief Add filename data to an attribute node.
* @param data The data node.
* @param str The filename value to set. This should be n the local filesystem
* encoding, not utf-8.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_filename(DataNode data, const char *str, DiaContext *ctx)
{
char *utf8 = g_filename_to_utf8(str, -1, NULL, NULL, NULL);
data_add_string(data, utf8, ctx);
g_free(utf8);
}
/*!
* \brief Add font data to an attribute node.
* @param attr The attribute node.
* @param font The value to set.
* @param ctx The context to transport error information.
* \ingroup DiagramXmlOut
*/
void
data_add_font(AttributeNode attr, const DiaFont *font, DiaContext *ctx)
{
DataNode data_node;
char buffer[20+1]; /* Enought for 64bit int + zero */
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"font", NULL);
xmlSetProp(data_node, (const xmlChar *)"family", (xmlChar *) dia_font_get_family(font));
g_snprintf(buffer, 20, "%d", dia_font_get_style(font));
xmlSetProp(data_node, (const xmlChar *)"style", (xmlChar *) buffer);
/* Legacy support: don't crash older Dia on missing 'name' attribute */
xmlSetProp(data_node, (const xmlChar *)"name", (xmlChar *) dia_font_get_legacy_name(font));
}
/*!
* \brief Add a new composite node to an attribute node.
* @param attr The attribute node to add to.
* @param type The type of the new node.
* @param ctx The context to transport error information.
* @return The new child of `attr'.
* \ingroup DiagramXmlOut
*/
DataNode
data_add_composite(AttributeNode attr, const char *type, DiaContext *ctx)
{
/* type can be NULL */
DataNode data_node;
data_node = xmlNewChild(attr, NULL, (const xmlChar *)"composite", NULL);
if (type != NULL)
xmlSetProp(data_node, (const xmlChar *)"type", (xmlChar *)type);
return data_node;
}
/*!
* \brief Save an XML document to a file.
* @param filename The file to save to.
* @param cur The XML document structure.
* @return The return value of xmlSaveFormatFileEnc.
* @todo Get the proper defn of the return value from libxml2.
* \ingroup DiagramXmlIo
*/
int
xmlDiaSaveFile (const char *filename,
xmlDocPtr cur)
{
int old, ret;
old = xmlKeepBlanksDefault (0);
ret = xmlSaveFormatFileEnc (filename,cur, "UTF-8", 1);
xmlKeepBlanksDefault (old);
return ret;
}
|