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
|
/* Copyright (C) 2020-2023 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
using System;
using System.Runtime.InteropServices; /* Marshaling */
using System.Threading;
using System.Collections.Generic; /* Use of List */
using System.IO; /* Use of path */
using GhostAPI; /* Use of Ghostscript API */
namespace GhostMono
{
public enum GS_Task_t
{
PS_DISTILL,
CREATE_XPS,
SAVE_RESULT,
GET_PAGE_COUNT,
GENERIC,
DISPLAY_DEV_THUMBS_NON_PDF,
DISPLAY_DEV_THUMBS_PDF,
DISPLAY_DEV_NON_PDF,
DISPLAY_DEV_PDF,
}
public enum GS_Result_t
{
gsOK,
gsFAILED,
gsCANCELLED
}
public enum gsStatus
{
GS_READY,
GS_BUSY,
GS_ERROR
};
/* Parameters */
public struct gsParamState_t
{
public String outputfile;
public String inputfile;
public GS_Task_t task;
public GS_Result_t result;
public int num_pages;
public List<int> pages;
public int firstpage;
public int lastpage;
public int currpage;
public List<String> args;
public int return_code;
public double zoom;
};
public class gsThreadCallBack
{
private bool m_completed;
private int m_progress;
private gsParamState_t m_param;
public bool Completed
{
get { return m_completed; }
}
public gsParamState_t Params
{
get { return m_param; }
}
public int Progress
{
get { return m_progress; }
}
public gsThreadCallBack(bool completed, int progress, gsParamState_t param)
{
m_completed = completed;
m_progress = progress;
m_param = param;
}
}
class GSMONO
{
public class GhostscriptException : Exception
{
public GhostscriptException(string message) : base(message)
{
}
}
/* Ghostscript display device callback delegates. */
/* New device has been opened */
/* This is the first event from this device. */
public delegate int display_open_del(IntPtr handle, IntPtr device);
/* Device is about to be closed. */
/* Device will not be closed until this function returns. */
public delegate int display_preclose_del(IntPtr handle, IntPtr device);
/* Device has been closed. */
/* This is the last event from this device. */
public delegate int display_close_del(IntPtr handle, IntPtr device);
/* Device is about to be resized. */
/* Resize will only occur if this function returns 0. */
/* raster is byte count of a row. */
public delegate int display_presize_del(IntPtr handle, IntPtr device,
int width, int height, int raster, uint format);
/* Device has been resized. */
/* New pointer to raster returned in pimage */
public delegate int display_size_del(IntPtr handle, IntPtr device,
int width, int height, int raster, uint format,
IntPtr pimage);
/* flushpage */
public delegate int display_sync_del(IntPtr handle, IntPtr device);
/* showpage */
/* If you want to pause on showpage, then don't return immediately */
public delegate int display_page_del(IntPtr handle, IntPtr device, int copies, int flush);
/* Notify the caller whenever a portion of the raster is updated. */
/* This can be used for cooperative multitasking or for
* progressive update of the display.
* This function pointer may be set to NULL if not required.
*/
public delegate int display_update_del(IntPtr handle, IntPtr device, int x, int y,
int w, int h);
/* Allocate memory for bitmap */
/* This is provided in case you need to create memory in a special
* way, e.g. shared. If this is NULL, the Ghostscript memory device
* allocates the bitmap. This will only called to allocate the
* image buffer. The first row will be placed at the address
* returned by display_memalloc.
*/
public delegate int display_memalloc_del(IntPtr handle, IntPtr device, ulong size);
/* Free memory for bitmap */
/* If this is NULL, the Ghostscript memory device will free the bitmap */
public delegate int display_memfree_del(IntPtr handle, IntPtr device, IntPtr mem);
private int display_size(IntPtr handle, IntPtr device,
int width, int height, int raster, uint format,
IntPtr pimage)
{
m_pagewidth = width;
m_pageheight = height;
m_pageraster = raster;
m_pageptr = pimage;
return 0;
}
private int display_page(IntPtr handle, IntPtr device, int copies, int flush)
{
m_params.currpage += 1;
Gtk.Application.Invoke(delegate {
PageRenderedCallBack(m_pagewidth, m_pageheight, m_pageraster, m_pageptr, m_params);
});
return 0;
}
private int display_open(IntPtr handle, IntPtr device)
{
return 0;
}
private int display_preclose(IntPtr handle, IntPtr device)
{
return 0;
}
private int display_close(IntPtr handle, IntPtr device)
{
return 0;
}
private int display_presize(IntPtr handle, IntPtr device,
int width, int height, int raster, uint format)
{
return 0;
}
private int display_update(IntPtr handle, IntPtr device, int x, int y,
int w, int h)
{
return 0;
}
private int display_memalloc(IntPtr handle, IntPtr device, ulong size)
{
return 0;
}
private int display_memfree(IntPtr handle, IntPtr device, IntPtr mem)
{
return 0;
}
private int display_sync(IntPtr handle, IntPtr device)
{
return 0;
}
/* Delegate for stdio */
public delegate int gs_stdio_handler(IntPtr caller_handle, IntPtr buffer,
int len);
private int stdin_callback(IntPtr handle, IntPtr pointer, int count)
{
Marshal.PtrToStringAnsi(pointer);
return count;
}
private int stdout_callback(IntPtr handle, IntPtr pointer, int count)
{
String output = null;
try
{
output = Marshal.PtrToStringAnsi(pointer);
Gtk.Application.Invoke(delegate {
StdIOCallBack(output, count);
});
}
catch (Exception excep2)
{
var mess = excep2.Message;
}
return count;
}
private int stderr_callback(IntPtr handle, IntPtr pointer, int count)
{
String output = Marshal.PtrToStringAnsi(pointer);
Gtk.Application.Invoke(delegate {
StdIOCallBack(output, count);
});
return count;
}
IntPtr gsInstance;
IntPtr dispInstance;
Thread m_worker;
bool m_worker_busy;
gsParamState_t m_params;
IntPtr m_pageptr;
int m_pagewidth;
int m_pageheight;
int m_pageraster;
display_callback_t m_display_callback;
IntPtr ptr_display_struct;
/* Callbacks to Main */
internal delegate void DLLProblem(String mess);
internal event DLLProblem DLLProblemCallBack;
internal delegate void StdIO(String mess, int len);
internal event StdIO StdIOCallBack;
internal delegate void Progress(gsThreadCallBack info);
internal event Progress ProgressCallBack;
internal delegate void PageRendered(int width, int height, int raster,
IntPtr data, gsParamState_t state);
internal event PageRendered PageRenderedCallBack;
/* From my understanding you cannot pin delegates. These need to be declared
* as members to keep a reference to the delegates and avoid their possible GC.
* since the C# GC has no idea that GS has a reference to these items. For some
* reason the Mono compiler throws a CS0414 warning about these not being assigned
* even though they are */
#pragma warning disable 0414
GSAPI.gs_stdio_handler raise_stdin;
GSAPI.gs_stdio_handler raise_stdout;
GSAPI.gs_stdio_handler raise_stderr;
#pragma warning restore 0414
/* Ghostscript display callback struct */
public struct display_callback_t
{
public int sizeof_display_callback;
public int major_vers;
public int minor_vers;
public display_open_del display_open;
public display_preclose_del display_preclose;
public display_close_del display_close;
public display_presize_del display_presize;
public display_size_del display_size;
public display_sync_del display_sync;
public display_page_del display_page;
public display_update_del display_update;
public display_memalloc_del display_memalloc;
public display_memfree_del display_memfree;
};
public GSMONO()
{
m_worker = null;
gsInstance = IntPtr.Zero;
dispInstance = IntPtr.Zero;
/* Avoiding delegate GC during the life of this object */
raise_stdin = stdin_callback;
raise_stdout = stdout_callback;
raise_stderr = stderr_callback;
m_display_callback.major_vers = 1;
m_display_callback.minor_vers = 0;
m_display_callback.display_open = display_open;
m_display_callback.display_preclose = display_preclose;
m_display_callback.display_close = display_close;
m_display_callback.display_presize = display_presize;
m_display_callback.display_size = display_size;
m_display_callback.display_sync = display_sync;
m_display_callback.display_page = display_page;
m_display_callback.display_update = display_update;
//m_display_callback.display_memalloc = display_memalloc;
//m_display_callback.display_memfree = display_memfree;
m_display_callback.display_memalloc = null;
m_display_callback.display_memfree = null;
/* The size the structure when marshalled to unmanaged code */
m_display_callback.sizeof_display_callback = Marshal.SizeOf(typeof(display_callback_t));
ptr_display_struct = Marshal.AllocHGlobal(m_display_callback.sizeof_display_callback);
Marshal.StructureToPtr(m_display_callback, ptr_display_struct, false);
m_worker_busy = false;
}
/* Callback upon worker all done */
private void gsCompleted(gsParamState_t Params)
{
gsThreadCallBack info = new gsThreadCallBack(true, 100, Params);
m_worker_busy = false;
Gtk.Application.Invoke(delegate {
ProgressCallBack(info);
});
}
/* Callback as worker progresses in run string case */
private void gsProgressChanged(gsParamState_t Params, int percent)
{
/* Callback with progress */
gsThreadCallBack info = new gsThreadCallBack(false, percent, Params);
Gtk.Application.Invoke(delegate {
ProgressCallBack(info);
});
}
/* Callback for problem */
private void gsErrorReport(string message)
{
Gtk.Application.Invoke(delegate {
DLLProblemCallBack(message);;
});
m_worker_busy = false;
}
private gsParamState_t gsFileSync(gsParamState_t in_params)
{
int num_params = in_params.args.Count;
var argParam = new GCHandle[num_params];
var argPtrs = new IntPtr[num_params];
List<byte[]> CharacterArray = new List<byte[]>(num_params);
GCHandle argPtrsStable = new GCHandle();
int code = 0;
bool cleanup = true;
try
{
code = GSAPI.gsapi_new_instance(out gsInstance, IntPtr.Zero);
if (code < 0)
{
throw new GhostscriptException("gsFileSync: gsapi_new_instance error");
}
code = GSAPI.gsapi_set_stdio(gsInstance, stdin_callback, stdout_callback, stderr_callback);
if (code < 0)
{
throw new GhostscriptException("gsFileSync: gsapi_set_stdio error");
}
code = GSAPI.gsapi_set_arg_encoding(gsInstance, (int)gsEncoding.GS_ARG_ENCODING_UTF8);
if (code < 0)
{
throw new GhostscriptException("gsFileSync: gsapi_set_arg_encoding error");
}
/* Now convert our Strings to char* and get pinned handles to these.
* This keeps the c# GC from moving stuff around on us */
String fullcommand = "";
for (int k = 0; k < num_params; k++)
{
CharacterArray.Add(System.Text.Encoding.UTF8.GetBytes((in_params.args[k]+"\0").ToCharArray()));
argParam[k] = GCHandle.Alloc(CharacterArray[k], GCHandleType.Pinned);
argPtrs[k] = argParam[k].AddrOfPinnedObject();
fullcommand = fullcommand + " " + in_params.args[k];
}
/* Also stick the array of pointers into memory that will not be GCd */
argPtrsStable = GCHandle.Alloc(argPtrs, GCHandleType.Pinned);
fullcommand = "Command Line: " + fullcommand + "\n";
StdIOCallBack(fullcommand, fullcommand.Length);
code = GSAPI.gsapi_init_with_args(gsInstance, num_params, argPtrsStable.AddrOfPinnedObject());
if (code < 0 && code != gsConstants.E_QUIT)
{
throw new GhostscriptException("gsFileSync: gsapi_init_with_args error");
}
}
catch (DllNotFoundException except)
{
gsErrorReport("Exception: " + except.Message);
in_params.result = GS_Result_t.gsFAILED;
cleanup = false;
}
catch (BadImageFormatException except)
{
gsErrorReport("Exception: " + except.Message);
in_params.result = GS_Result_t.gsFAILED;
cleanup = false;
}
catch (GhostscriptException except)
{
gsErrorReport("Exception: " + except.Message);
}
catch (Exception except)
{
gsErrorReport("Exception: " + except.Message);
}
finally
{
/* All the pinned items need to be freed so the GC can do its job */
if (cleanup)
{
for (int k = 0; k < num_params; k++)
{
argParam[k].Free();
}
argPtrsStable.Free();
int code1 = GSAPI.gsapi_exit(gsInstance);
if ((code == 0) || (code == gsConstants.E_QUIT))
code = code1;
GSAPI.gsapi_delete_instance(gsInstance);
in_params.return_code = code;
if ((code == 0) || (code == gsConstants.E_QUIT))
{
in_params.result = GS_Result_t.gsOK;
}
else
{
in_params.result = GS_Result_t.gsFAILED;
}
gsInstance = IntPtr.Zero;
}
}
return in_params;
}
/* Process command line with gsapi_init_with_args */
private void gsFileAsync(object data)
{
List<object> genericlist = data as List<object>;
gsParamState_t Params = (gsParamState_t)genericlist[0];
gsParamState_t Result = Params;
int num_params = Params.args.Count;
var argParam = new GCHandle[num_params];
var argPtrs = new IntPtr[num_params];
List<byte[]> CharacterArray = new List<byte[]>(num_params);
GCHandle argPtrsStable = new GCHandle();
int code = 0;
bool cleanup = true;
try
{
code = GSAPI.gsapi_new_instance(out gsInstance, IntPtr.Zero);
if (code < 0)
{
throw new GhostscriptException("gsFileAsync: gsapi_new_instance error");
}
code = GSAPI.gsapi_set_stdio(gsInstance, stdin_callback, stdout_callback, stderr_callback);
if (code < 0)
{
throw new GhostscriptException("gsFileAsync: gsapi_set_stdio error");
}
code = GSAPI.gsapi_set_arg_encoding(gsInstance, (int)gsEncoding.GS_ARG_ENCODING_UTF8);
if (code < 0)
{
throw new GhostscriptException("gsFileAsync: gsapi_set_arg_encoding error");
}
/* Now convert our Strings to char* and get pinned handles to these.
* This keeps the c# GC from moving stuff around on us */
String fullcommand = "";
for (int k = 0; k < num_params; k++)
{
CharacterArray.Add(System.Text.Encoding.UTF8.GetBytes((Params.args[k]+"\0").ToCharArray()));
argParam[k] = GCHandle.Alloc(CharacterArray[k], GCHandleType.Pinned);
argPtrs[k] = argParam[k].AddrOfPinnedObject();
fullcommand = fullcommand + " " + Params.args[k];
}
/* Also stick the array of pointers into memory that will not be GCd */
argPtrsStable = GCHandle.Alloc(argPtrs, GCHandleType.Pinned);
fullcommand = "Command Line: " + fullcommand + "\n";
StdIOCallBack(fullcommand, fullcommand.Length);
code = GSAPI.gsapi_init_with_args(gsInstance, num_params, argPtrsStable.AddrOfPinnedObject());
if (code < 0)
{
throw new GhostscriptException("gsFileAsync: gsapi_init_with_args error");
}
}
catch (DllNotFoundException except)
{
gsErrorReport("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
Result = Params;
}
catch (BadImageFormatException except)
{
gsErrorReport("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
Result = Params;
}
catch (GhostscriptException except)
{
gsErrorReport("Exception: " + except.Message);
}
catch (Exception except)
{
gsErrorReport("Exception: " + except.Message);
}
finally
{
if (cleanup)
{
/* All the pinned items need to be freed so the GC can do its job */
for (int k = 0; k < num_params; k++)
{
argParam[k].Free();
}
argPtrsStable.Free();
int code1 = GSAPI.gsapi_exit(gsInstance);
if ((code == 0) || (code == gsConstants.E_QUIT))
code = code1;
GSAPI.gsapi_delete_instance(gsInstance);
Params.return_code = code;
if ((code == 0) || (code == gsConstants.E_QUIT))
{
Params.result = GS_Result_t.gsOK;
Result = Params;
}
else
{
Params.result = GS_Result_t.gsFAILED;
Result = Params;
}
gsInstance = IntPtr.Zero;
}
}
/* Completed. */
gsCompleted(Result);
return;
}
/* Processing with gsapi_run_string for callback progress */
private void gsBytesAsync(object data)
{
List<object> genericlist = data as List<object>;
gsParamState_t Params = (gsParamState_t)genericlist[0];
gsParamState_t Result = Params;
int num_params = Params.args.Count;
var argParam = new GCHandle[num_params];
var argPtrs = new IntPtr[num_params];
List<byte[]> CharacterArray = new List<byte[]>(num_params);
GCHandle argPtrsStable = new GCHandle();
Byte[] Buffer = new Byte[gsConstants.GS_READ_BUFFER];
int code = 0;
int exitcode = 0;
var Feed = new GCHandle();
var FeedPtr = new IntPtr();
FileStream fs = null;
bool cleanup = true;
try
{
/* Open the file */
fs = new FileStream(Params.inputfile, FileMode.Open);
var len = (int)fs.Length;
code = GSAPI.gsapi_new_instance(out gsInstance, IntPtr.Zero);
if (code < 0)
{
throw new GhostscriptException("gsBytesAsync: gsapi_new_instance error");
}
code = GSAPI.gsapi_set_stdio(gsInstance, stdin_callback, stdout_callback, stderr_callback);
if (code < 0)
{
throw new GhostscriptException("gsBytesAsync: gsapi_set_stdio error");
}
code = GSAPI.gsapi_set_arg_encoding(gsInstance, (int)gsEncoding.GS_ARG_ENCODING_UTF8);
if (code < 0)
{
throw new GhostscriptException("gsBytesAsync: gsapi_set_arg_encoding error");
}
/* Now convert our Strings to char* and get pinned handles to these.
* This keeps the c# GC from moving stuff around on us */
String fullcommand = "";
for (int k = 0; k < num_params; k++)
{
CharacterArray.Add(System.Text.Encoding.UTF8.GetBytes((Params.args[k]+"\0").ToCharArray()));
argParam[k] = GCHandle.Alloc(CharacterArray[k], GCHandleType.Pinned);
argPtrs[k] = argParam[k].AddrOfPinnedObject();
fullcommand = fullcommand + " " + Params.args[k];
}
/* Also stick the array of pointers into memory that will not be GCd */
argPtrsStable = GCHandle.Alloc(argPtrs, GCHandleType.Pinned);
fullcommand = "Command Line: " + fullcommand + "\n";
StdIOCallBack(fullcommand, fullcommand.Length);
code = GSAPI.gsapi_init_with_args(gsInstance, num_params, argPtrsStable.AddrOfPinnedObject());
if (code < 0)
{
throw new GhostscriptException("gsBytesAsync: gsapi_init_with_args error");
}
/* Pin data buffer */
Feed = GCHandle.Alloc(Buffer, GCHandleType.Pinned);
FeedPtr = Feed.AddrOfPinnedObject();
/* Now start feeding the input piece meal and do a call back
* with our progress */
if (code == 0)
{
int count;
double perc;
int total = 0;
GSAPI.gsapi_run_string_begin(gsInstance, 0, ref exitcode);
if (exitcode < 0)
{
code = exitcode;
throw new GhostscriptException("gsBytesAsync: gsapi_run_string_begin error");
}
while ((count = fs.Read(Buffer, 0, gsConstants.GS_READ_BUFFER)) > 0)
{
GSAPI.gsapi_run_string_continue(gsInstance, FeedPtr, count, 0, ref exitcode);
if (exitcode < 0)
{
code = exitcode;
throw new GhostscriptException("gsBytesAsync: gsapi_run_string_continue error");
}
total = total + count;
perc = 100.0 * (double)total / (double)len;
gsProgressChanged(Params, (int)perc);
}
GSAPI.gsapi_run_string_end(gsInstance, 0, ref exitcode);
if (exitcode < 0)
{
code = exitcode;
throw new GhostscriptException("gsBytesAsync: gsapi_run_string_end error");
}
}
}
catch (DllNotFoundException except)
{
gsErrorReport("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
Result = Params;
}
catch (BadImageFormatException except)
{
gsErrorReport("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
Result = Params;
}
catch (GhostscriptException except)
{
gsErrorReport("Exception: " + except.Message);
}
catch (Exception except)
{
/* Could be a file io issue */
gsErrorReport("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
Result = Params;
}
finally
{
if (cleanup)
{
fs.Close();
/* Free pinned items */
for (int k = 0; k < num_params; k++)
{
argParam[k].Free();
}
argPtrsStable.Free();
Feed.Free();
/* gs clean up */
int code1 = GSAPI.gsapi_exit(gsInstance);
if ((code == 0) || (code == gsConstants.E_QUIT))
code = code1;
GSAPI.gsapi_delete_instance(gsInstance);
Params.return_code = code;
if ((code == 0) || (code == gsConstants.E_QUIT))
{
Params.result = GS_Result_t.gsOK;
Result = Params;
}
else
{
Params.result = GS_Result_t.gsFAILED;
Result = Params;
}
gsInstance = IntPtr.Zero;
}
}
gsCompleted(Result);
return;
}
/* Worker task for using display device */
private void DisplayDeviceAsync(object data)
{
int code = 0;
List<object> genericlist = data as List<object>;
gsParamState_t gsparams = (gsParamState_t)genericlist[0];
gsParamState_t Result = gsparams;
GCHandle argPtrsStable = new GCHandle();
int num_params = gsparams.args.Count;
var argParam = new GCHandle[num_params];
var argPtrs = new IntPtr[num_params];
List<byte[]> CharacterArray = new List<byte[]>(num_params);
bool cleanup = true;
gsparams.result = GS_Result_t.gsOK;
try
{
code = GSAPI.gsapi_new_instance(out dispInstance, IntPtr.Zero);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceAsync: gsapi_new_instance error");
}
code = GSAPI.gsapi_set_stdio(dispInstance, stdin_callback, stdout_callback, stderr_callback);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceAsync: gsapi_set_stdio error");
}
code = GSAPI.gsapi_set_arg_encoding(dispInstance, (int)gsEncoding.GS_ARG_ENCODING_UTF8);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceAsync: gsapi_set_arg_encoding error");
}
code = GSAPI.gsapi_set_display_callback(dispInstance, ptr_display_struct);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceAsync: gsapi_set_display_callback error");
}
String fullcommand = "";
for (int k = 0; k < num_params; k++)
{
CharacterArray.Add(System.Text.Encoding.UTF8.GetBytes((gsparams.args[k] + "\0").ToCharArray()));
argParam[k] = GCHandle.Alloc(CharacterArray[k], GCHandleType.Pinned);
argPtrs[k] = argParam[k].AddrOfPinnedObject();
fullcommand = fullcommand + " " + gsparams.args[k];
}
argPtrsStable = GCHandle.Alloc(argPtrs, GCHandleType.Pinned);
fullcommand = "Command Line: " + fullcommand + "\n";
StdIOCallBack(fullcommand, fullcommand.Length);
code = GSAPI.gsapi_init_with_args(dispInstance, num_params, argPtrsStable.AddrOfPinnedObject());
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceAsync: gsapi_init_with_args error");
}
}
catch (DllNotFoundException except)
{
gsErrorReport("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
cleanup = false;
Result = gsparams;
}
catch (BadImageFormatException except)
{
gsErrorReport("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
cleanup = false;
Result = gsparams;
}
catch (GhostscriptException except)
{
gsErrorReport("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
if (dispInstance != IntPtr.Zero)
GSAPI.gsapi_delete_instance(dispInstance);
dispInstance = IntPtr.Zero;
}
catch (Exception except)
{
gsErrorReport("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
if (dispInstance != IntPtr.Zero)
GSAPI.gsapi_delete_instance(dispInstance);
dispInstance = IntPtr.Zero;
}
finally
{
if (cleanup)
{
for (int k = 0; k < num_params; k++)
{
argParam[k].Free();
}
argPtrsStable.Free();
Result = gsparams;
if (gsparams.result == GS_Result_t.gsOK && (gsparams.task == GS_Task_t.DISPLAY_DEV_NON_PDF ||
gsparams.task == GS_Task_t.DISPLAY_DEV_THUMBS_NON_PDF))
{
gsParamState_t result = DisplayDeviceClose();
if (gsparams.result == 0)
{
gsparams.result = result.result;
}
}
}
}
gsCompleted(Result);
return;
}
/* Call the appropriate worker thread based upon the task
* that we have to do */
private gsStatus RunGhostscriptAsync(gsParamState_t Params)
{
try
{
if (m_worker_busy)
{
return gsStatus.GS_BUSY;
}
switch (Params.task)
{
case GS_Task_t.PS_DISTILL:
m_worker = new Thread(gsBytesAsync);
break;
case GS_Task_t.DISPLAY_DEV_NON_PDF:
case GS_Task_t.DISPLAY_DEV_PDF:
case GS_Task_t.DISPLAY_DEV_THUMBS_NON_PDF:
case GS_Task_t.DISPLAY_DEV_THUMBS_PDF:
m_worker = new Thread(DisplayDeviceAsync);
break;
case GS_Task_t.SAVE_RESULT:
case GS_Task_t.CREATE_XPS:
default:
m_worker = new Thread(gsFileAsync);
break;
}
var arguments = new List<object>();
arguments.Add(Params);
arguments.Add(this);
m_worker_busy = true;
m_worker.Start(arguments);
return gsStatus.GS_READY;
}
catch (OutOfMemoryException)
{
Console.WriteLine("Memory allocation failed during gs rendering\n");
return gsStatus.GS_ERROR;
}
}
#region public_methods
/* Direct call on gsapi to get the version of the DLL we are using */
public String GetVersion()
{
gsapi_revision_t vers;
vers.copyright = IntPtr.Zero;
vers.product = IntPtr.Zero;
vers.revision = 0;
vers.revisiondate = 0;
int size = System.Runtime.InteropServices.Marshal.SizeOf(vers);
try
{
if (GSAPI.gsapi_revision(ref vers, size) == 0)
{
String product = Marshal.PtrToStringAnsi(vers.product);
String output;
int major = vers.revision / 100;
int minor = vers.revision - major * 100;
String versnum = major + "." + minor;
output = product + " " + versnum;
return output;
}
else
return null;
}
catch (Exception except)
{
gsErrorReport("Exception: " + except.Message);
}
return null;
}
/* Use syncronous call to ghostscript to get the
* number of pages in a PDF file */
public int GetPageCount(String fileName)
{
gsParamState_t gsparams = new gsParamState_t();
gsParamState_t result;
gsparams.args = new List<string>();
gsparams.args.Add("gs");
gsparams.args.Add("-dNODISPLAY");
gsparams.args.Add("-dNOPAUSE");
gsparams.args.Add("-dBATCH");
gsparams.args.Add("-I%rom%Resource/Init/");
//gsparams.args.Add("-q");
gsparams.args.Add("-sFile=\"" + fileName + "\"");
gsparams.args.Add("--permit-file-read=\"" + fileName + "\"");
gsparams.args.Add("-c");
gsparams.args.Add("\"File (r) file runpdfbegin pdfpagecount = quit\"");
gsparams.task = GS_Task_t.GET_PAGE_COUNT;
m_params = gsparams;
result = gsFileSync(gsparams);
if (result.result == GS_Result_t.gsOK)
return m_params.num_pages;
else
return -1;
}
/* Launch a thread rendering all the pages with the display device
* to distill an input PS file and save as a PDF. */
public gsStatus DistillPS(String fileName, int resolution)
{
gsParamState_t gsparams = new gsParamState_t();
gsparams.args = new List<string>();
gsparams.inputfile = fileName;
gsparams.args.Add("gs");
gsparams.args.Add("-dNOPAUSE");
gsparams.args.Add("-dBATCH");
gsparams.args.Add("-I%rom%Resource/Init/");
gsparams.args.Add("-dSAFER");
gsparams.args.Add("-sDEVICE=pdfwrite");
gsparams.outputfile = Path.GetTempFileName();
gsparams.args.Add("-o" + gsparams.outputfile);
gsparams.task = GS_Task_t.PS_DISTILL;
return RunGhostscriptAsync(gsparams);
}
/* Launch a thread rendering all the pages with the display device
* to collect thumbnail images via init_with_args. */
public gsStatus DisplayDeviceRenderThumbs(String fileName, double zoom, bool aa)
{
gsParamState_t gsparams = new gsParamState_t();
int format = (gsConstants.DISPLAY_COLORS_RGB |
gsConstants.DISPLAY_DEPTH_8 |
gsConstants.DISPLAY_LITTLEENDIAN);
int resolution = (int)(72.0 * zoom + 0.5);
GS_Task_t task = GS_Task_t.DISPLAY_DEV_THUMBS_NON_PDF;
gsparams.args = new List<string>();
gsparams.args.Add("gs");
gsparams.args.Add("-dFirstPage=1"); /* To ensure gdevflp is setup */
gsparams.args.Add("-r" + resolution);
if (aa)
{
gsparams.args.Add("-dTextAlphaBits=4");
gsparams.args.Add("-dGraphicsAlphaBits=4");
}
gsparams.args.Add("-sDEVICE=display");
gsparams.args.Add("-dDisplayFormat=" + format);
gsparams.args.Add("-f");
gsparams.args.Add(fileName);
gsparams.task = task;
gsparams.currpage = 0;
m_params.currpage = 0;
return RunGhostscriptAsync(gsparams);
}
/* Launch a thread rendering all the pages with the display device
* to collect thumbnail images or full resolution. */
public gsStatus DisplayDeviceRenderAll(String fileName, double zoom, bool aa, GS_Task_t task)
{
gsParamState_t gsparams = new gsParamState_t();
int format = (gsConstants.DISPLAY_COLORS_RGB |
gsConstants.DISPLAY_DEPTH_8 |
gsConstants.DISPLAY_BIGENDIAN);
int resolution = (int)(72.0 * zoom + 0.5);
gsparams.args = new List<string>();
gsparams.args.Add("gs");
gsparams.args.Add("-dNOPAUSE");
gsparams.args.Add("-dBATCH");
gsparams.args.Add("-I%rom%Resource/Init/");
gsparams.args.Add("-dSAFER");
gsparams.args.Add("-r" + resolution);
if (aa)
{
gsparams.args.Add("-dTextAlphaBits=4");
gsparams.args.Add("-dGraphicsAlphaBits=4");
}
gsparams.args.Add("-sDEVICE=display");
gsparams.args.Add("-dDisplayFormat=" + format);
gsparams.args.Add("-f");
gsparams.args.Add(fileName);
gsparams.task = task;
gsparams.currpage = 0;
m_params.currpage = 0;
return RunGhostscriptAsync(gsparams);
}
/* Launch a thread rendering a set of pages with the display device. For use with languages
that can be indexed via pages which include PDF and XPS */
public gsStatus DisplayDeviceRenderPages(String fileName, int first_page, int last_page, double zoom)
{
gsParamState_t gsparams = new gsParamState_t();
int format = (gsConstants.DISPLAY_COLORS_RGB |
gsConstants.DISPLAY_DEPTH_8 |
gsConstants.DISPLAY_LITTLEENDIAN);
int resolution = (int)(72.0 * zoom + 0.5);
gsparams.args = new List<string>();
gsparams.args.Add("gs");
gsparams.args.Add("-dNOPAUSE");
gsparams.args.Add("-dBATCH");
gsparams.args.Add("-I%rom%Resource/Init/");
gsparams.args.Add("-dSAFER");
gsparams.args.Add("-r" + resolution);
gsparams.args.Add("-sDEVICE=display");
gsparams.args.Add("-dDisplayFormat=" + format);
gsparams.args.Add("-dFirstPage=" + first_page);
gsparams.args.Add("-dLastPage=" + last_page);
gsparams.args.Add("-f");
gsparams.args.Add(fileName);
gsparams.task = GS_Task_t.DISPLAY_DEV_PDF;
gsparams.currpage = first_page - 1;
m_params.currpage = first_page - 1;
return RunGhostscriptAsync(gsparams);
}
/* Set up the display device ahead of time */
public gsParamState_t DisplayDeviceOpen()
{
int code;
gsParamState_t gsparams = new gsParamState_t();
gsparams.result = GS_Result_t.gsOK;
if (dispInstance != IntPtr.Zero)
return gsparams;
try
{
code = GSAPI.gsapi_new_instance(out dispInstance, IntPtr.Zero);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceOpen: gsapi_new_instance error");
}
code = GSAPI.gsapi_set_stdio(dispInstance, raise_stdin, raise_stdout, raise_stderr);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceOpen: gsapi_set_stdio error");
}
code = GSAPI.gsapi_set_arg_encoding(dispInstance, (int)gsEncoding.GS_ARG_ENCODING_UTF8);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceOpen: gsapi_set_arg_encoding error");
}
code = GSAPI.gsapi_set_display_callback(dispInstance, ptr_display_struct);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceOpen: gsapi_set_display_callback error");
}
}
catch (DllNotFoundException except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
}
catch (BadImageFormatException except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
}
catch (GhostscriptException except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
if (dispInstance != IntPtr.Zero)
GSAPI.gsapi_delete_instance(dispInstance);
dispInstance = IntPtr.Zero;
}
catch (Exception except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
if (dispInstance != IntPtr.Zero)
GSAPI.gsapi_delete_instance(dispInstance);
dispInstance = IntPtr.Zero;
}
return gsparams;
}
/* Close the display device and delete the instance */
public gsParamState_t DisplayDeviceClose()
{
int code = 0;
gsParamState_t out_params = new gsParamState_t();
out_params.result = GS_Result_t.gsOK;
try
{
int code1 = GSAPI.gsapi_exit(dispInstance);
if ((code == 0) || (code == gsConstants.E_QUIT))
code = code1;
GSAPI.gsapi_delete_instance(dispInstance);
dispInstance = IntPtr.Zero;
}
catch (Exception except)
{
gsErrorReport("Exception: " + except.Message);
out_params.result = GS_Result_t.gsFAILED;
}
return out_params;
}
/* Check if gs is currently busy */
public gsStatus GetStatus()
{
if (m_worker_busy)
return gsStatus.GS_BUSY;
else
return gsStatus.GS_READY;
}
#endregion
}
}
|