|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | +using System.Runtime.InteropServices; |
| 4 | + |
| 5 | +namespace WkHtmlToXSharp |
| 6 | +{ |
| 7 | + internal static class NativeCalls |
| 8 | + { |
| 9 | + private const string DLL_NAME = "wkhtmltox0"; |
| 10 | + |
| 11 | + static NativeCalls() |
| 12 | + { |
| 13 | + // Deploy native assemblies.. |
| 14 | + LibsHelper.DeployLibraries(); |
| 15 | + } |
| 16 | + |
| 17 | + #region P/Invokes |
| 18 | + [DllImport(DLL_NAME)] |
| 19 | + public static extern IntPtr wkhtmltopdf_version(); |
| 20 | + |
| 21 | + [DllImport(DLL_NAME)] |
| 22 | + public static extern int wkhtmltopdf_init(int use_graphics); |
| 23 | + |
| 24 | + [DllImport(DLL_NAME)] |
| 25 | + public static extern int wkhtmltopdf_deinit(); |
| 26 | + |
| 27 | + [DllImport(DLL_NAME)] |
| 28 | + public static extern int wkhtmltopdf_extended_qt(); |
| 29 | + |
| 30 | + [DllImport(DLL_NAME)] |
| 31 | + public static extern IntPtr wkhtmltopdf_create_global_settings(); |
| 32 | + |
| 33 | + [DllImport(DLL_NAME)] |
| 34 | + public static extern IntPtr wkhtmltopdf_create_converter(IntPtr globalSettings); |
| 35 | + |
| 36 | + [DllImport(DLL_NAME)] |
| 37 | + public static extern IntPtr wkhtmltopdf_create_object_settings(); |
| 38 | + |
| 39 | +#if true |
| 40 | + [DllImport(DLL_NAME)] |
| 41 | + public static extern int wkhtmltopdf_set_global_setting(IntPtr globalSettings, |
| 42 | + [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Marshaler))] string name, |
| 43 | + [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Marshaler))] string value); |
| 44 | + |
| 45 | + [DllImport(DLL_NAME)] |
| 46 | + public static extern int wkhtmltopdf_set_object_setting(IntPtr objectSettings, |
| 47 | + [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Marshaler))] string name, |
| 48 | + [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Marshaler))] string value); |
| 49 | + |
| 50 | + [DllImport(DLL_NAME)] |
| 51 | + public static extern void wkhtmltopdf_add_object(IntPtr converter, IntPtr objectSettings, |
| 52 | + [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Marshaler))] string htmlData); |
| 53 | +#else |
| 54 | + [DllImport(DLL_NAME)] |
| 55 | + public static extern int wkhtmltopdf_set_global_setting(IntPtr globalSettings, string name, IntPtr value); |
| 56 | + |
| 57 | + [DllImport(DLL_NAME)] |
| 58 | + public static extern int wkhtmltopdf_set_object_setting(IntPtr objectSettings, string name, IntPtr value); |
| 59 | + |
| 60 | + [DllImport(DLL_NAME)] |
| 61 | + public static extern void wkhtmltopdf_add_object(IntPtr converter, IntPtr objectSettings, IntPtr htmlData); |
| 62 | +#endif |
| 63 | + |
| 64 | + [DllImport(DLL_NAME)] |
| 65 | + public static extern int wkhtmltopdf_convert(IntPtr converter); |
| 66 | + |
| 67 | + [DllImport(DLL_NAME)] |
| 68 | + public static extern IntPtr wkhtmltopdf_get_output(IntPtr converter, out IntPtr data); |
| 69 | + |
| 70 | + [DllImport(DLL_NAME)] |
| 71 | + public static extern void wkhtmltopdf_destroy_converter(IntPtr converter); |
| 72 | + |
| 73 | + [DllImport(DLL_NAME)] |
| 74 | + public static extern int wkhtmltopdf_current_phase(IntPtr converter); |
| 75 | + |
| 76 | + [DllImport(DLL_NAME)] |
| 77 | + public static extern int wkhtmltopdf_phase_count(IntPtr converter); |
| 78 | + |
| 79 | + [DllImport(DLL_NAME)] |
| 80 | + // NOTE: Using IntPtr as return to avoid runtime from freeing returned string. (pruiz) |
| 81 | + public static extern IntPtr wkhtmltopdf_phase_description(IntPtr converter, int phase); |
| 82 | + |
| 83 | + [DllImport(DLL_NAME)] |
| 84 | + // NOTE: Using IntPtr as return to avoid runtime from freeing returned string. (pruiz) |
| 85 | + public static extern IntPtr wkhtmltopdf_progress_string(IntPtr converter); |
| 86 | + |
| 87 | + [DllImport(DLL_NAME)] |
| 88 | + public static extern int wkhtmltopdf_http_error_code(IntPtr converter); |
| 89 | + |
| 90 | + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] |
| 91 | + public delegate void wkhtmltopdf_str_callback(IntPtr converter, [MarshalAs(UnmanagedType.LPStr)] string str); |
| 92 | + //public delegate void wkhtmltopdf_str_callback(IntPtr converter, IntPtr str); |
| 93 | + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] |
| 94 | + public delegate void wkhtmltopdf_int_callback(IntPtr converter, int val); |
| 95 | + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] |
| 96 | + public delegate void wkhtmltopdf_bool_callback(IntPtr converter, bool val); |
| 97 | + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] |
| 98 | + public delegate void wkhtmltopdf_void_callback(IntPtr converter); |
| 99 | + |
| 100 | + [DllImport(DLL_NAME)] |
| 101 | + public static extern void wkhtmltopdf_set_error_callback(IntPtr converter, [MarshalAs(UnmanagedType.FunctionPtr)] wkhtmltopdf_str_callback cb); |
| 102 | + |
| 103 | + [DllImport(DLL_NAME)] |
| 104 | + public static extern void wkhtmltopdf_set_warning_callback(IntPtr converter, [MarshalAs(UnmanagedType.FunctionPtr)] wkhtmltopdf_str_callback cb); |
| 105 | + |
| 106 | + [DllImport(DLL_NAME)] |
| 107 | + public static extern void wkhtmltopdf_set_phase_changed_callback(IntPtr converter, [MarshalAs(UnmanagedType.FunctionPtr)] wkhtmltopdf_void_callback cb); |
| 108 | + |
| 109 | + [DllImport(DLL_NAME)] |
| 110 | + public static extern void wkhtmltopdf_set_progress_changed_callback(IntPtr converter, [MarshalAs(UnmanagedType.FunctionPtr)] wkhtmltopdf_int_callback cb); |
| 111 | + |
| 112 | + [DllImport(DLL_NAME)] |
| 113 | + public static extern void wkhtmltopdf_set_finished_callback(IntPtr converter, [MarshalAs(UnmanagedType.FunctionPtr)] wkhtmltopdf_bool_callback cb); |
| 114 | + #endregion |
| 115 | + |
| 116 | + #region NativeCall Wrappers |
| 117 | + public static string WkHtmlToPdfVersion() |
| 118 | + { |
| 119 | + var ptr = wkhtmltopdf_version(); |
| 120 | + return Marshal.PtrToStringAnsi(ptr); |
| 121 | + } |
| 122 | + #endregion |
| 123 | + } |
| 124 | +} |
0 commit comments