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
|
/* lmplib.c
Copyright 2006-2009 Taco Hoekwater <taco@luatex.org>
This file is part of LuaTeX.
LuaTeX is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at your
option) any later version.
LuaTeX 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License along
with LuaTeX; if not, see <http://www.gnu.org/licenses/>. */
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <math.h> /* temporary */
#ifndef pdfTeX
# include <lua.h>
# include <lauxlib.h>
# include <lualib.h>
#else
# include <../lua51/lua.h>
# include <../lua51/lauxlib.h>
# include <../lua51/lualib.h>
#endif
#include "mplib.h"
#include "mplibps.h"
#include "mplibsvg.h"
/*@unused@*/ static const char _svn_version[] =
"$Id: lmplib.c 1364 2008-07-04 16:09:46Z taco $ $URL: http://scm.foundry.supelec.fr/svn/luatex/trunk/src/texk/web2c/luatexdir/lua/lmplib.c $";
int luaopen_mplib(lua_State * L); /* forward */
/* metatable identifiers and tests */
#define MPLIB_METATABLE "MPlib"
#define MPLIB_FIG_METATABLE "MPlib.fig"
#define MPLIB_GR_METATABLE "MPlib.gr"
#define is_mp(L,b) (MP *)luaL_checkudata(L,b,MPLIB_METATABLE)
#define is_fig(L,b) (struct mp_edge_object **)luaL_checkudata(L,b,MPLIB_FIG_METATABLE)
#define is_gr_object(L,b) (struct mp_graphic_object **)luaL_checkudata(L,b,MPLIB_GR_METATABLE)
/* Lua string pre-hashing */
#define mplib_init_S(a) do { \
lua_pushliteral(L,#a); \
mplib_##a##_ptr = lua_tostring(L,-1); \
mplib_##a##_index = luaL_ref (L,LUA_REGISTRYINDEX); \
} while (0)
#define mplib_push_S(a) do { \
lua_rawgeti(L,LUA_REGISTRYINDEX,mplib_##a##_index); \
} while (0)
#define mplib_is_S(a,i) (mplib_##a##_ptr==lua_tostring(L,i))
#define mplib_make_S(a) \
static int mplib_##a##_index = 0; \
static const char *mplib_##a##_ptr = NULL
static int mplib_type_Ses[mp_special_code + 1] = { 0 }; /* [0] is not used */
mplib_make_S(fill);
mplib_make_S(outline);
mplib_make_S(text);
mplib_make_S(special);
mplib_make_S(start_bounds);
mplib_make_S(stop_bounds);
mplib_make_S(start_clip);
mplib_make_S(stop_clip);
mplib_make_S(left_type);
mplib_make_S(right_type);
mplib_make_S(x_coord);
mplib_make_S(y_coord);
mplib_make_S(left_x);
mplib_make_S(left_y);
mplib_make_S(right_x);
mplib_make_S(right_y);
mplib_make_S(color);
mplib_make_S(dash);
mplib_make_S(depth);
mplib_make_S(dsize);
mplib_make_S(font);
mplib_make_S(height);
mplib_make_S(htap);
mplib_make_S(linecap);
mplib_make_S(linejoin);
mplib_make_S(miterlimit);
mplib_make_S(path);
mplib_make_S(pen);
mplib_make_S(postscript);
mplib_make_S(prescript);
mplib_make_S(transform);
mplib_make_S(type);
mplib_make_S(width);
static void mplib_init_Ses(lua_State * L)
{
mplib_init_S(fill);
mplib_init_S(outline);
mplib_init_S(text);
mplib_init_S(start_bounds);
mplib_init_S(stop_bounds);
mplib_init_S(start_clip);
mplib_init_S(stop_clip);
mplib_init_S(special);
mplib_type_Ses[mp_fill_code] = mplib_fill_index;
mplib_type_Ses[mp_stroked_code] = mplib_outline_index;
mplib_type_Ses[mp_text_code] = mplib_text_index;
mplib_type_Ses[mp_start_bounds_code] = mplib_start_bounds_index;
mplib_type_Ses[mp_stop_bounds_code] = mplib_stop_bounds_index;
mplib_type_Ses[mp_start_clip_code] = mplib_start_clip_index;
mplib_type_Ses[mp_stop_clip_code] = mplib_stop_clip_index;
mplib_type_Ses[mp_special_code] = mplib_special_index;
mplib_init_S(left_type);
mplib_init_S(right_type);
mplib_init_S(x_coord);
mplib_init_S(y_coord);
mplib_init_S(left_x);
mplib_init_S(left_y);
mplib_init_S(right_x);
mplib_init_S(right_y);
mplib_init_S(color);
mplib_init_S(dash);
mplib_init_S(depth);
mplib_init_S(dsize);
mplib_init_S(font);
mplib_init_S(height);
mplib_init_S(htap);
mplib_init_S(linecap);
mplib_init_S(linejoin);
mplib_init_S(miterlimit);
mplib_init_S(path);
mplib_init_S(pen);
mplib_init_S(postscript);
mplib_init_S(prescript);
mplib_init_S(transform);
mplib_init_S(type);
mplib_init_S(width);
}
/* Enumeration arrays to map MPlib enums to Lua strings */
static const char *interaction_options[] =
{ "unknown", "batch", "nonstop", "scroll", "errorstop", NULL };
static const char *mplib_filetype_names[] =
{ "term", "error", "mp", "log", "ps", "mem", "tfm", "map", "pfb", "enc", NULL };
static const char *knot_type_enum[] =
{ "endpoint", "explicit", "given", "curl", "open", "end_cycle" };
static const char *fill_fields[] =
{ "type", "path", "htap", "pen", "color", "linejoin", "miterlimit",
"prescript", "postscript", NULL };
static const char *stroked_fields[] =
{ "type", "path", "pen", "color", "linejoin", "miterlimit", "linecap",
"dash", "prescript", "postscript", NULL };
static const char *text_fields[] =
{ "type", "text", "dsize", "font", "color", "width", "height", "depth",
"transform", "prescript", "postscript", NULL };
static const char *special_fields[] =
{ "type", "prescript", NULL };
static const char *start_bounds_fields[] =
{ "type", "path", NULL };
static const char *start_clip_fields[] =
{ "type", "path", NULL };
static const char *stop_bounds_fields[] =
{ "type", NULL };
static const char *stop_clip_fields[] =
{ "type", NULL };
static const char *no_fields[] =
{ NULL };
/* The list of supported MPlib options (not all make sense) */
typedef enum {
P_ERROR_LINE, P_MAX_LINE,
P_MAIN_MEMORY, P_HASH_SIZE, P_PARAM_SIZE, P_IN_OPEN, P_RANDOM_SEED,
P_INTERACTION, P_INI_VERSION, P_MEM_NAME, P_JOB_NAME, P_FIND_FILE,
P__SENTINEL } mplib_parm_idx;
typedef struct {
const char *name; /* parameter name */
mplib_parm_idx idx; /* parameter index */
} mplib_parm_struct;
static mplib_parm_struct mplib_parms[] = {
{"error_line", P_ERROR_LINE },
{"print_line", P_MAX_LINE },
{"main_memory", P_MAIN_MEMORY },
{"hash_size", P_HASH_SIZE },
{"param_size", P_PARAM_SIZE },
{"max_in_open", P_IN_OPEN },
{"random_seed", P_RANDOM_SEED },
{"interaction", P_INTERACTION },
{"ini_version", P_INI_VERSION },
{"mem_name", P_MEM_NAME },
{"job_name", P_JOB_NAME },
{"find_file", P_FIND_FILE },
{NULL, P__SENTINEL }
};
/* Start by defining the needed callback routines for the library */
static char *mplib_find_file(MP mp, const char *fname, const char *fmode, int ftype)
{
lua_State *L = (lua_State *)mp_userdata(mp);
lua_checkstack(L, 4);
lua_getfield(L, LUA_REGISTRYINDEX, "mplib_file_finder");
if (lua_isfunction(L, -1)) {
char *s = NULL;
const char *x = NULL;
lua_pushstring(L, fname);
lua_pushstring(L, fmode);
if (ftype >= mp_filetype_text) {
lua_pushnumber(L, (lua_Number)(ftype - mp_filetype_text));
} else {
lua_pushstring(L, mplib_filetype_names[ftype]);
}
if (lua_pcall(L, 3, 1, 0) != 0) {
fprintf(stdout, "Error in mp.find_file: %s\n",
lua_tostring(L, -1));
return NULL;
}
x = lua_tostring(L, -1);
if (x != NULL)
s = strdup(x);
lua_pop(L, 1); /* pop the string */
return s;
} else {
lua_pop(L, 1);
}
if (fmode[0] != 'r' || (!access(fname, R_OK)) || ftype) {
return strdup(fname);
}
return NULL;
}
static int mplib_find_file_function(lua_State * L)
{
if (!(lua_isfunction(L, -1) || lua_isnil(L, -1))) {
return 1; /* error */
}
lua_pushstring(L, "mplib_file_finder");
lua_pushvalue(L, -2);
lua_rawset(L, LUA_REGISTRYINDEX);
return 0;
}
#define xfree(A) if ((A)!=NULL) { free((A)); A = NULL; }
static int mplib_new(lua_State * L)
{
MP *mp_ptr;
mp_ptr = lua_newuserdata(L, sizeof(MP *));
if (mp_ptr) {
int i;
struct MP_options *options = mp_options();
options->userdata = (void *) L;
options->noninteractive = 1; /* required ! */
options->find_file = mplib_find_file;
options->print_found_names = 1;
if (lua_type(L, 1) == LUA_TTABLE) {
for (i = 0; mplib_parms[i].name != NULL; i++) {
lua_getfield(L, 1, mplib_parms[i].name);
if (lua_isnil(L, -1)) {
lua_pop(L, 1);
continue; /* skip unset */
}
switch (mplib_parms[i].idx) {
case P_ERROR_LINE:
options->error_line = (int)lua_tointeger(L, -1);
if (options->error_line<60) options->error_line =60;
if (options->error_line>250) options->error_line = 250;
options->half_error_line = (options->error_line/2)+10;
break;
case P_MAX_LINE:
options->max_print_line = (int)lua_tointeger(L, -1);
if (options->max_print_line<60) options->max_print_line = 60;
break;
case P_MAIN_MEMORY:
options->main_memory = (int)lua_tointeger(L, -1);
break;
case P_HASH_SIZE:
options->hash_size = (unsigned)lua_tointeger(L, -1);
break;
case P_PARAM_SIZE:
options->param_size = (int)lua_tointeger(L, -1);
break;
case P_IN_OPEN:
options->max_in_open = (int)lua_tointeger(L, -1);
break;
case P_RANDOM_SEED:
options->random_seed = (int)lua_tointeger(L, -1);
break;
case P_INTERACTION:
options->interaction =
luaL_checkoption(L, -1, "errorstopmode",
interaction_options);
break;
case P_INI_VERSION:
options->ini_version = lua_toboolean(L, -1);
break;
case P_MEM_NAME:
options->mem_name = strdup(lua_tostring(L, -1));
break;
case P_JOB_NAME:
options->job_name = strdup(lua_tostring(L, -1));
break;
case P_FIND_FILE:
if (mplib_find_file_function(L)) { /* error here */
fprintf(stdout,
"Invalid arguments to mp.new({find_file=...})\n");
}
break;
default:
break;
}
lua_pop(L, 1);
}
}
*mp_ptr = mp_initialize(options);
xfree(options->command_line);
xfree(options->mem_name);
free(options);
if (*mp_ptr) {
luaL_getmetatable(L, MPLIB_METATABLE);
lua_setmetatable(L, -2);
return 1;
}
}
lua_pushnil(L);
return 1;
}
static int mplib_collect(lua_State * L)
{
MP *mp_ptr = is_mp(L, 1);
if (*mp_ptr != NULL) {
(void)mp_finish(*mp_ptr);
*mp_ptr = NULL;
}
return 0;
}
static int mplib_tostring(lua_State * L)
{
MP *mp_ptr = is_mp(L, 1);
if (*mp_ptr != NULL) {
(void)lua_pushfstring(L, "<MP %p>", *mp_ptr);
return 1;
}
return 0;
}
static int mplib_wrapresults(lua_State * L, mp_run_data *res, int status)
{
lua_checkstack(L, 5);
lua_newtable(L);
if (res->term_out.size != 0) {
lua_pushstring(L, res->term_out.data);
lua_setfield(L, -2, "term");
}
if (res->error_out.size != 0) {
lua_pushstring(L, res->error_out.data);
lua_setfield(L, -2, "error");
}
if (res->log_out.size != 0) {
lua_pushstring(L, res->log_out.data);
lua_setfield(L, -2, "log");
}
if (res->edges != NULL) {
struct mp_edge_object **v;
struct mp_edge_object *p = res->edges;
int i = 1;
lua_newtable(L);
while (p != NULL) {
v = lua_newuserdata(L, sizeof(struct mp_edge_object *));
*v = p;
luaL_getmetatable(L, MPLIB_FIG_METATABLE);
lua_setmetatable(L, -2);
lua_rawseti(L, -2, i);
i++;
p = p->next;
}
lua_setfield(L, -2, "fig");
res->edges = NULL;
}
lua_pushnumber(L, (lua_Number)status);
lua_setfield(L, -2, "status");
return 1;
}
static int mplib_execute(lua_State * L)
{
MP *mp_ptr;
if (lua_gettop(L)!=2) {
lua_pushnil(L);
return 1;
}
mp_ptr = is_mp(L, 1);
if (*mp_ptr != NULL && lua_isstring(L, 2)) {
size_t l;
char *s = xstrdup(lua_tolstring(L, 2, &l));
int h = mp_execute(*mp_ptr, s, l);
mp_run_data *res = mp_rundata(*mp_ptr);
xfree(s);
return mplib_wrapresults(L, res, h);
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_finish(lua_State * L)
{
MP *mp_ptr = is_mp(L, 1);
if (*mp_ptr != NULL) {
int i;
int h = mp_execute(*mp_ptr,NULL,0);
mp_run_data *res = mp_rundata(*mp_ptr);
i = mplib_wrapresults(L, res, h);
(void)mp_finish(*mp_ptr);
*mp_ptr = NULL;
return i;
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_char_dimension(lua_State * L, int t)
{
MP *mp_ptr = is_mp(L, 1);
if (*mp_ptr != NULL) {
char *fname = xstrdup(luaL_checkstring(L,2));
int charnum = (int)luaL_checkinteger(L,3);
if (charnum<0 || charnum>255) {
lua_pushnumber(L, (lua_Number)0);
} else {
lua_pushnumber(L,(lua_Number)mp_get_char_dimension(*mp_ptr,fname,charnum,t));
}
xfree(fname);
} else {
lua_pushnumber(L, (lua_Number)0);
}
return 1;
}
static int mplib_charwidth(lua_State * L)
{
return mplib_char_dimension(L, 'w');
}
static int mplib_chardepth(lua_State * L)
{
return mplib_char_dimension(L, 'd');
}
static int mplib_charheight(lua_State * L)
{
return mplib_char_dimension(L, 'h');
}
static int mplib_version(lua_State * L)
{
char *s = mp_metapost_version();
lua_pushstring(L, s);
free(s);
return 1;
}
static int mplib_statistics(lua_State * L)
{
MP *mp_ptr = is_mp(L, 1);
if (*mp_ptr != NULL) {
lua_newtable(L);
lua_pushnumber(L, (lua_Number)mp_memory_usage(*mp_ptr));
lua_setfield(L, -2, "main_memory");
lua_pushnumber(L, (lua_Number)mp_hash_usage(*mp_ptr));
lua_setfield(L, -2, "hash_size");
lua_pushnumber(L, (lua_Number)mp_param_usage(*mp_ptr));
lua_setfield(L, -2, "param_size");
lua_pushnumber(L, (lua_Number)mp_open_usage(*mp_ptr));
lua_setfield(L, -2, "max_in_open");
} else {
lua_pushnil(L);
}
return 1;
}
/* figure methods */
static int mplib_fig_collect(lua_State * L)
{
struct mp_edge_object **hh = is_fig(L, 1);
if (*hh != NULL) {
mp_gr_toss_objects(*hh);
*hh = NULL;
}
return 0;
}
static int mplib_fig_body(lua_State * L)
{
int i = 1;
struct mp_graphic_object **v;
struct mp_graphic_object *p;
struct mp_edge_object **hh = is_fig(L, 1);
lua_newtable(L);
p = (*hh)->body;
while (p != NULL) {
v = lua_newuserdata(L, sizeof(struct mp_graphic_object *));
*v = p;
luaL_getmetatable(L, MPLIB_GR_METATABLE);
lua_setmetatable(L, -2);
lua_rawseti(L, -2, i);
i++;
p = p->next;
}
(*hh)->body = NULL; /* prevent double free */
return 1;
}
static int mplib_fig_copy_body(lua_State * L)
{
int i = 1;
struct mp_graphic_object **v;
struct mp_graphic_object *p;
struct mp_edge_object **hh = is_fig(L, 1);
lua_newtable(L);
p = (*hh)->body;
while (p != NULL) {
v = lua_newuserdata(L, sizeof(struct mp_graphic_object *));
*v = mp_gr_copy_object((*hh)->parent, p);
luaL_getmetatable(L, MPLIB_GR_METATABLE);
lua_setmetatable(L, -2);
lua_rawseti(L, -2, i);
i++;
p = p->next;
}
return 1;
}
static int mplib_fig_tostring(lua_State * L)
{
struct mp_edge_object **hh = is_fig(L, 1);
(void)lua_pushfstring(L, "<figure %p>", *hh);
return 1;
}
static int mplib_fig_postscript(lua_State * L)
{
mp_run_data *res;
struct mp_edge_object **hh = is_fig(L, 1);
int prologues = (int)luaL_optnumber(L, 2, (lua_Number)-1);
int procset = (int)luaL_optnumber(L, 3, (lua_Number)-1);
if (mp_ps_ship_out(*hh, prologues, procset)
&& (res = mp_rundata((*hh)->parent))
&& (res->ps_out.size != 0)) {
lua_pushstring(L, res->ps_out.data);
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_fig_svg(lua_State * L)
{
mp_run_data *res;
struct mp_edge_object **hh = is_fig(L, 1);
int prologues = (int)luaL_optnumber(L, 2, (lua_Number)-1);
if (mp_svg_ship_out(*hh, prologues)
&& (res = mp_rundata((*hh)->parent))
&& (res->ps_out.size != 0)) {
lua_pushstring(L, res->ps_out.data);
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_fig_filename(lua_State * L)
{
struct mp_edge_object **hh = is_fig(L, 1);
if (*hh != NULL) {
char *s = (*hh)->filename;
lua_pushstring(L, s);
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_fig_width(lua_State * L)
{
struct mp_edge_object **hh = is_fig(L, 1);
if (*hh != NULL) {
lua_pushnumber(L, (double) (*hh)->width / 65536.0);
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_fig_height(lua_State * L)
{
struct mp_edge_object **hh = is_fig(L, 1);
if (*hh != NULL) {
lua_pushnumber(L, (double) (*hh)->height / 65536.0);
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_fig_depth(lua_State * L)
{
struct mp_edge_object **hh = is_fig(L, 1);
if (*hh != NULL) {
lua_pushnumber(L, (double) (*hh)->depth / 65536.0);
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_fig_italcorr(lua_State * L)
{
struct mp_edge_object **hh = is_fig(L, 1);
if (*hh != NULL) {
lua_pushnumber(L, (double) (*hh)->ital_corr / 65536.0);
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_fig_charcode(lua_State * L)
{
struct mp_edge_object **hh = is_fig(L, 1);
if (*hh != NULL) {
lua_pushnumber(L, (lua_Number)(*hh)->charcode);
} else {
lua_pushnil(L);
}
return 1;
}
static int mplib_fig_bb(lua_State * L)
{
struct mp_edge_object **hh = is_fig(L, 1);
lua_newtable(L);
lua_pushnumber(L, (double) (*hh)->minx / 65536.0);
lua_rawseti(L, -2, 1);
lua_pushnumber(L, (double) (*hh)->miny / 65536.0);
lua_rawseti(L, -2, 2);
lua_pushnumber(L, (double) (*hh)->maxx / 65536.0);
lua_rawseti(L, -2, 3);
lua_pushnumber(L, (double) (*hh)->maxy / 65536.0);
lua_rawseti(L, -2, 4);
return 1;
}
/* object methods */
static int mplib_gr_collect(lua_State * L)
{
struct mp_graphic_object **hh = is_gr_object(L, 1);
if (*hh != NULL) {
mp_gr_toss_object(*hh);
*hh = NULL;
}
return 0;
}
static int mplib_gr_tostring(lua_State * L)
{
struct mp_graphic_object **hh = is_gr_object(L, 1);
(void)lua_pushfstring(L, "<object %p>", *hh);
return 1;
}
#define pyth(a,b) (sqrt((a)*(a) + (b)*(b)))
#define aspect_bound (10.0/65536.0)
#define aspect_default (1.0/65536.0)
static double eps = 0.0001;
static double coord_range_x (mp_knot *h, double dz) {
double z;
double zlo = 0.0, zhi = 0.0;
mp_knot *f = h;
while (h != NULL) {
z = (double)h->x_coord;
if (z < zlo) zlo = z; else if (z > zhi) zhi = z;
z = (double)h->right_x;
if (z < zlo) zlo = z; else if (z > zhi) zhi = z;
z = (double)h->left_x;
if (z < zlo) zlo = z; else if (z > zhi) zhi = z;
h = h->next;
if (h==f)
break;
}
return (zhi - zlo <= dz ? aspect_bound : aspect_default);
}
static double coord_range_y (mp_knot *h, double dz) {
double z;
double zlo = 0.0, zhi = 0.0;
mp_knot *f = h;
while (h != NULL) {
z = (double)h->y_coord;
if (z < zlo) zlo = z; else if (z > zhi) zhi = z;
z = (double)h->right_y;
if (z < zlo) zlo = z; else if (z > zhi) zhi = z;
z = (double)h->left_y;
if (z < zlo) zlo = z; else if (z > zhi) zhi = z;
h = h->next;
if (h==f)
break;
}
return (zhi - zlo <= dz ? aspect_bound : aspect_default);
}
static int mplib_gr_peninfo(lua_State * L) {
double x_coord, y_coord, left_x, left_y, right_x, right_y;
double wx, wy;
double rx = 1.0, sx = 0.0, sy = 0.0, ry = 1.0, tx = 0.0, ty = 0.0;
double divider = 1.0;
double width = 1.0;
mp_knot *p = NULL, *path = NULL;
struct mp_graphic_object **hh = is_gr_object(L, -1);
if (!*hh) {
lua_pushnil(L);
return 1;
}
if ((*hh)->type == mp_fill_code) {
p = ((mp_fill_object *)(*hh))->pen_p;
path = ((mp_fill_object *)(*hh))->path_p;
} else if ((*hh)->type == mp_stroked_code) {
p = ((mp_stroked_object *)(*hh))->pen_p;
path = ((mp_stroked_object *)(*hh))->path_p;
}
if (p==NULL || path == NULL) {
lua_pushnil(L);
return 1;
}
x_coord = p->x_coord/65536.0;
y_coord = p->y_coord/65536.0;
left_x = p->left_x/65536.0;
left_y = p->left_y/65536.0;
right_x = p->right_x/65536.0;
right_y = p->right_y/65536.0;
if ((right_x == x_coord) && (left_y == y_coord)) {
wx = fabs(left_x - x_coord);
wy = fabs(right_y - y_coord);
} else {
wx = pyth(left_x - x_coord, right_x - x_coord);
wy = pyth(left_y - y_coord, right_y - y_coord);
}
if ((wy/coord_range_x(path, wx)) >= (wx/coord_range_y(path, wy)))
width = wy;
else
width = wx;
tx = x_coord;
ty = y_coord;
sx = left_x - tx;
rx = left_y - ty;
ry = right_x - tx;
sy = right_y - ty;
if (width !=1.0) {
if (width == 0.0) {
sx = 1.0; sy = 1.0;
} else {
rx/=width; ry/=width; sx/=width; sy/=width;
}
}
if (fabs(sx) < eps) sx = eps;
if (fabs(sy) < eps) sy = eps;
divider = sx*sy - rx*ry;
lua_newtable(L);
lua_pushnumber(L,width); lua_setfield(L,-2,"width");
lua_pushnumber(L,rx); lua_setfield(L,-2,"rx");
lua_pushnumber(L,sx); lua_setfield(L,-2,"sx");
lua_pushnumber(L,sy); lua_setfield(L,-2,"sy");
lua_pushnumber(L,ry); lua_setfield(L,-2,"ry");
lua_pushnumber(L,tx); lua_setfield(L,-2,"tx");
lua_pushnumber(L,ty); lua_setfield(L,-2,"ty");
return 1;
}
static int mplib_gr_fields(lua_State * L)
{
const char **fields;
int i;
struct mp_graphic_object **hh = is_gr_object(L, 1);
if (*hh) {
switch ((*hh)->type) {
case mp_fill_code:
fields = fill_fields;
break;
case mp_stroked_code:
fields = stroked_fields;
break;
case mp_text_code:
fields = text_fields;
break;
case mp_special_code:
fields = special_fields;
break;
case mp_start_clip_code:
fields = start_clip_fields;
break;
case mp_start_bounds_code:
fields = start_bounds_fields;
break;
case mp_stop_clip_code:
fields = stop_clip_fields;
break;
case mp_stop_bounds_code:
fields = stop_bounds_fields;
break;
default:
fields = no_fields;
}
lua_newtable(L);
for (i = 0; fields[i] != NULL; i++) {
lua_pushstring(L, fields[i]);
lua_rawseti(L, -2, (i + 1));
}
} else {
lua_pushnil(L);
}
return 1;
}
#define mplib_push_number(L,x) lua_pushnumber(L,(lua_Number)(x)/65536.0)
#define MPLIB_PATH 0
#define MPLIB_PEN 1
static void mplib_push_path(lua_State * L, struct mp_knot *h, int is_pen)
{
struct mp_knot *p; /* for scanning the path */
int i = 1;
p = h;
if (p != NULL) {
lua_newtable(L);
do {
lua_createtable(L, 0, 6);
if (!is_pen) {
if (p->left_type != mp_explicit) {
mplib_push_S(left_type);
lua_pushstring(L, knot_type_enum[p->left_type]);
lua_rawset(L, -3);
}
if (p->right_type != mp_explicit) {
mplib_push_S(right_type);
lua_pushstring(L, knot_type_enum[p->right_type]);
lua_rawset(L, -3);
}
}
mplib_push_S(x_coord);
mplib_push_number(L, p->x_coord);
lua_rawset(L, -3);
mplib_push_S(y_coord);
mplib_push_number(L, p->y_coord);
lua_rawset(L, -3);
mplib_push_S(left_x);
mplib_push_number(L, p->left_x);
lua_rawset(L, -3);
mplib_push_S(left_y);
mplib_push_number(L, p->left_y);
lua_rawset(L, -3);
mplib_push_S(right_x);
mplib_push_number(L, p->right_x);
lua_rawset(L, -3);
mplib_push_S(right_y);
mplib_push_number(L, p->right_y);
lua_rawset(L, -3);
lua_rawseti(L, -2, i);
i++;
if (p->right_type == mp_endpoint) {
return;
}
p = p->next;
} while (p != h);
} else {
lua_pushnil(L);
}
}
/* this assumes that the top of the stack is a table
or nil already in the case
*/
static void mplib_push_pentype(lua_State * L, struct mp_knot *h)
{
struct mp_knot *p; /* for scanning the path */
p = h;
if (p == NULL) {
/* do nothing */
} else if (p == p->next) {
mplib_push_S(type);
lua_pushstring(L, "elliptical");
lua_rawset(L, -3);
} else {
}
}
#define set_color_objects(pq) \
object_color_model = pq->color_model; \
object_color_a = pq->color.a_val; \
object_color_b = pq->color.b_val; \
object_color_c = pq->color.c_val; \
object_color_d = pq->color.d_val;
static void mplib_push_color(lua_State * L, struct mp_graphic_object *p)
{
int object_color_model;
int object_color_a, object_color_b, object_color_c, object_color_d;
if (p != NULL) {
if (p->type == mp_fill_code) {
mp_fill_object *h = (mp_fill_object *) p;
set_color_objects(h);
} else if (p->type == mp_stroked_code) {
mp_stroked_object *h = (mp_stroked_object *) p;
set_color_objects(h);
} else {
mp_text_object *h = (mp_text_object *) p;
set_color_objects(h);
}
lua_newtable(L);
if (object_color_model >= mp_grey_model) {
mplib_push_number(L, object_color_a);
lua_rawseti(L, -2, 1);
if (object_color_model >= mp_rgb_model) {
mplib_push_number(L, object_color_b);
lua_rawseti(L, -2, 2);
mplib_push_number(L, object_color_c);
lua_rawseti(L, -2, 3);
if (object_color_model == mp_cmyk_model) {
mplib_push_number(L, object_color_d);
lua_rawseti(L, -2, 4);
}
}
}
} else {
lua_pushnil(L);
}
}
/* the dash scale is not exported, the field has no external value */
static void mplib_push_dash(lua_State * L, struct mp_stroked_object *h)
{
mp_dash_object *d;
double ds;
if (h != NULL && h->dash_p != NULL) {
d = h->dash_p;
lua_newtable(L);
mplib_push_number(L, d->offset);
lua_setfield(L, -2, "offset");
if (d->array != NULL) {
int i = 0;
lua_newtable(L);
while (*(d->array + i) != -1) {
ds = *(d->array + i) / 65536.0;
lua_pushnumber(L, ds);
i++;
lua_rawseti(L, -2, i);
}
lua_setfield(L, -2, "dashes");
}
} else {
lua_pushnil(L);
}
}
static void mplib_push_transform(lua_State * L, struct mp_text_object *h)
{
int i = 1;
if (h != NULL) {
lua_createtable(L, 6, 0);
mplib_push_number(L, h->tx);
lua_rawseti(L, -2, i);
i++;
mplib_push_number(L, h->ty);
lua_rawseti(L, -2, i);
i++;
mplib_push_number(L, h->txx);
lua_rawseti(L, -2, i);
i++;
mplib_push_number(L, h->tyx);
lua_rawseti(L, -2, i);
i++;
mplib_push_number(L, h->txy);
lua_rawseti(L, -2, i);
i++;
mplib_push_number(L, h->tyy);
lua_rawseti(L, -2, i);
i++;
} else {
lua_pushnil(L);
}
}
#define FIELD(A) (mplib_is_S(A,2))
static void mplib_fill(lua_State * L, struct mp_fill_object *h)
{
if (FIELD(path)) {
mplib_push_path(L, h->path_p, MPLIB_PATH);
} else if (FIELD(htap)) {
mplib_push_path(L, h->htap_p, MPLIB_PATH);
} else if (FIELD(pen)) {
mplib_push_path(L, h->pen_p, MPLIB_PEN);
mplib_push_pentype(L, h->pen_p);
} else if (FIELD(color)) {
mplib_push_color(L, (mp_graphic_object *) h);
} else if (FIELD(linejoin)) {
lua_pushnumber(L, (lua_Number)h->ljoin);
} else if (FIELD(miterlimit)) {
mplib_push_number(L, h->miterlim);
} else if (FIELD(prescript)) {
lua_pushstring(L, h->pre_script);
} else if (FIELD(postscript)) {
lua_pushstring(L, h->post_script);
} else {
lua_pushnil(L);
}
}
static void mplib_stroked(lua_State * L, struct mp_stroked_object *h)
{
if (FIELD(path)) {
mplib_push_path(L, h->path_p, MPLIB_PATH);
} else if (FIELD(pen)) {
mplib_push_path(L, h->pen_p, MPLIB_PEN);
mplib_push_pentype(L, h->pen_p);
} else if (FIELD(color)) {
mplib_push_color(L, (mp_graphic_object *) h);
} else if (FIELD(dash)) {
mplib_push_dash(L, h);
} else if (FIELD(linecap)) {
lua_pushnumber(L, (lua_Number)h->lcap);
} else if (FIELD(linejoin)) {
lua_pushnumber(L, (lua_Number)h->ljoin);
} else if (FIELD(miterlimit)) {
mplib_push_number(L, h->miterlim);
} else if (FIELD(prescript)) {
lua_pushstring(L, h->pre_script);
} else if (FIELD(postscript)) {
lua_pushstring(L, h->post_script);
} else {
lua_pushnil(L);
}
}
static void mplib_text(lua_State * L, struct mp_text_object *h)
{
if (FIELD(text)) {
lua_pushstring(L, h->text_p);
} else if (FIELD(dsize)) {
mplib_push_number(L, (h->font_dsize / 16));
} else if (FIELD(font)) {
lua_pushstring(L, h->font_name);
} else if (FIELD(color)) {
mplib_push_color(L, (mp_graphic_object *) h);
} else if (FIELD(width)) {
mplib_push_number(L, h->width);
} else if (FIELD(height)) {
mplib_push_number(L, h->height);
} else if (FIELD(depth)) {
mplib_push_number(L, h->depth);
} else if (FIELD(transform)) {
mplib_push_transform(L, h);
} else if (FIELD(prescript)) {
lua_pushstring(L, h->pre_script);
} else if (FIELD(postscript)) {
lua_pushstring(L, h->post_script);
} else {
lua_pushnil(L);
}
}
static void mplib_special(lua_State * L, struct mp_special_object *h)
{
if (FIELD(prescript)) {
lua_pushstring(L, h->pre_script);
} else {
lua_pushnil(L);
}
}
static void mplib_start_bounds(lua_State * L, struct mp_bounds_object *h)
{
if (FIELD(path)) {
mplib_push_path(L, h->path_p, MPLIB_PATH);
} else {
lua_pushnil(L);
}
}
static void mplib_start_clip(lua_State * L, struct mp_clip_object *h)
{
if (FIELD(path)) {
mplib_push_path(L, h->path_p, MPLIB_PATH);
} else {
lua_pushnil(L);
}
}
static int mplib_gr_index(lua_State * L)
{
struct mp_graphic_object **hh = is_gr_object(L, 1);
if (*hh) {
struct mp_graphic_object *h = *hh;
if (mplib_is_S(type, 2)) {
lua_rawgeti(L, LUA_REGISTRYINDEX, mplib_type_Ses[h->type]);
} else {
switch (h->type) {
case mp_fill_code:
mplib_fill(L, (mp_fill_object *) h);
break;
case mp_stroked_code:
mplib_stroked(L, (mp_stroked_object *) h);
break;
case mp_text_code:
mplib_text(L, (mp_text_object *) h);
break;
case mp_special_code:
mplib_special(L, (mp_special_object *) h);
break;
case mp_start_clip_code:
mplib_start_clip(L, (mp_clip_object *) h);
break;
case mp_start_bounds_code:
mplib_start_bounds(L, (mp_bounds_object *) h);
break;
case mp_stop_clip_code:
case mp_stop_bounds_code:
default:
lua_pushnil(L);
}
}
} else {
lua_pushnil(L);
}
return 1;
}
static const struct luaL_reg mplib_meta[] = {
{"__gc", mplib_collect},
{"__tostring", mplib_tostring},
{NULL, NULL} /* sentinel */
};
static const struct luaL_reg mplib_fig_meta[] = {
{"__gc", mplib_fig_collect},
{"__tostring", mplib_fig_tostring},
{"objects", mplib_fig_body},
{"copy_objects", mplib_fig_copy_body},
{"filename", mplib_fig_filename},
{"postscript", mplib_fig_postscript},
{"svg", mplib_fig_svg},
{"boundingbox", mplib_fig_bb},
{"width", mplib_fig_width},
{"height", mplib_fig_height},
{"depth", mplib_fig_depth},
{"italcorr", mplib_fig_italcorr},
{"charcode", mplib_fig_charcode},
{NULL, NULL} /* sentinel */
};
static const struct luaL_reg mplib_gr_meta[] = {
{"__gc", mplib_gr_collect},
{"__tostring", mplib_gr_tostring},
{"__index", mplib_gr_index},
{NULL, NULL} /* sentinel */
};
static const struct luaL_reg mplib_d[] = {
{"execute", mplib_execute},
{"finish", mplib_finish},
{"char_width", mplib_charwidth},
{"char_height", mplib_charheight},
{"char_depth", mplib_chardepth},
{"statistics", mplib_statistics},
{NULL, NULL} /* sentinel */
};
static const struct luaL_reg mplib_m[] = {
{"new", mplib_new},
{"version", mplib_version},
{"fields", mplib_gr_fields},
{"pen_info", mplib_gr_peninfo},
{NULL, NULL} /* sentinel */
};
int luaopen_mplib(lua_State * L)
{
mplib_init_Ses(L);
luaL_newmetatable(L, MPLIB_GR_METATABLE);
lua_pushvalue(L, -1); /* push metatable */
lua_setfield(L, -2, "__index"); /* metatable.__index = metatable */
luaL_register(L, NULL, mplib_gr_meta); /* object meta methods */
lua_pop(L, 1);
luaL_newmetatable(L, MPLIB_FIG_METATABLE);
lua_pushvalue(L, -1); /* push metatable */
lua_setfield(L, -2, "__index"); /* metatable.__index = metatable */
luaL_register(L, NULL, mplib_fig_meta); /* figure meta methods */
lua_pop(L, 1);
luaL_newmetatable(L, MPLIB_METATABLE);
lua_pushvalue(L, -1); /* push metatable */
lua_setfield(L, -2, "__index"); /* metatable.__index = metatable */
luaL_register(L, NULL, mplib_meta); /* meta methods */
luaL_register(L, NULL, mplib_d); /* dict methods */
luaL_register(L, "mplib", mplib_m); /* module functions */
return 1;
}
|