csharphead.swg 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. /* -----------------------------------------------------------------------------
  2. * csharphead.swg
  3. *
  4. * Support code for exceptions if the SWIG_CSHARP_NO_EXCEPTION_HELPER is not defined
  5. * Support code for strings if the SWIG_CSHARP_NO_STRING_HELPER is not defined
  6. * ----------------------------------------------------------------------------- */
  7. %insert(runtime) %{
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <stdio.h>
  11. %}
  12. #if !defined(SWIG_CSHARP_NO_EXCEPTION_HELPER)
  13. %insert(runtime) %{
  14. /* Support for throwing C# exceptions from C/C++. There are two types:
  15. * Exceptions that take a message and ArgumentExceptions that take a message and a parameter name. */
  16. typedef enum {
  17. SWIG_CSharpApplicationException,
  18. SWIG_CSharpArithmeticException,
  19. SWIG_CSharpDivideByZeroException,
  20. SWIG_CSharpIndexOutOfRangeException,
  21. SWIG_CSharpInvalidCastException,
  22. SWIG_CSharpInvalidOperationException,
  23. SWIG_CSharpIOException,
  24. SWIG_CSharpNullReferenceException,
  25. SWIG_CSharpOutOfMemoryException,
  26. SWIG_CSharpOverflowException,
  27. SWIG_CSharpSystemException
  28. } SWIG_CSharpExceptionCodes;
  29. typedef enum {
  30. SWIG_CSharpArgumentException,
  31. SWIG_CSharpArgumentNullException,
  32. SWIG_CSharpArgumentOutOfRangeException
  33. } SWIG_CSharpExceptionArgumentCodes;
  34. typedef void (SWIGSTDCALL* SWIG_CSharpExceptionCallback_t)(const char *);
  35. typedef void (SWIGSTDCALL* SWIG_CSharpExceptionArgumentCallback_t)(const char *, const char *);
  36. typedef struct {
  37. SWIG_CSharpExceptionCodes code;
  38. SWIG_CSharpExceptionCallback_t callback;
  39. } SWIG_CSharpException_t;
  40. typedef struct {
  41. SWIG_CSharpExceptionArgumentCodes code;
  42. SWIG_CSharpExceptionArgumentCallback_t callback;
  43. } SWIG_CSharpExceptionArgument_t;
  44. static SWIG_CSharpException_t SWIG_csharp_exceptions[] = {
  45. { SWIG_CSharpApplicationException, NULL },
  46. { SWIG_CSharpArithmeticException, NULL },
  47. { SWIG_CSharpDivideByZeroException, NULL },
  48. { SWIG_CSharpIndexOutOfRangeException, NULL },
  49. { SWIG_CSharpInvalidCastException, NULL },
  50. { SWIG_CSharpInvalidOperationException, NULL },
  51. { SWIG_CSharpIOException, NULL },
  52. { SWIG_CSharpNullReferenceException, NULL },
  53. { SWIG_CSharpOutOfMemoryException, NULL },
  54. { SWIG_CSharpOverflowException, NULL },
  55. { SWIG_CSharpSystemException, NULL }
  56. };
  57. static SWIG_CSharpExceptionArgument_t SWIG_csharp_exceptions_argument[] = {
  58. { SWIG_CSharpArgumentException, NULL },
  59. { SWIG_CSharpArgumentNullException, NULL },
  60. { SWIG_CSharpArgumentOutOfRangeException, NULL }
  61. };
  62. static void SWIGUNUSED SWIG_CSharpSetPendingException(SWIG_CSharpExceptionCodes code, const char *msg) {
  63. SWIG_CSharpExceptionCallback_t callback = SWIG_csharp_exceptions[SWIG_CSharpApplicationException].callback;
  64. if ((size_t)code < sizeof(SWIG_csharp_exceptions)/sizeof(SWIG_CSharpException_t)) {
  65. callback = SWIG_csharp_exceptions[code].callback;
  66. }
  67. callback(msg);
  68. }
  69. static void SWIGUNUSED SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpExceptionArgumentCodes code, const char *msg, const char *param_name) {
  70. SWIG_CSharpExceptionArgumentCallback_t callback = SWIG_csharp_exceptions_argument[SWIG_CSharpArgumentException].callback;
  71. if ((size_t)code < sizeof(SWIG_csharp_exceptions_argument)/sizeof(SWIG_CSharpExceptionArgument_t)) {
  72. callback = SWIG_csharp_exceptions_argument[code].callback;
  73. }
  74. callback(msg, param_name);
  75. }
  76. %}
  77. %insert(runtime) %{
  78. #ifdef __cplusplus
  79. extern "C"
  80. #endif
  81. SWIGEXPORT void SWIGSTDCALL SWIGRegisterExceptionCallbacks_$module(
  82. SWIG_CSharpExceptionCallback_t applicationCallback,
  83. SWIG_CSharpExceptionCallback_t arithmeticCallback,
  84. SWIG_CSharpExceptionCallback_t divideByZeroCallback,
  85. SWIG_CSharpExceptionCallback_t indexOutOfRangeCallback,
  86. SWIG_CSharpExceptionCallback_t invalidCastCallback,
  87. SWIG_CSharpExceptionCallback_t invalidOperationCallback,
  88. SWIG_CSharpExceptionCallback_t ioCallback,
  89. SWIG_CSharpExceptionCallback_t nullReferenceCallback,
  90. SWIG_CSharpExceptionCallback_t outOfMemoryCallback,
  91. SWIG_CSharpExceptionCallback_t overflowCallback,
  92. SWIG_CSharpExceptionCallback_t systemCallback) {
  93. SWIG_csharp_exceptions[SWIG_CSharpApplicationException].callback = applicationCallback;
  94. SWIG_csharp_exceptions[SWIG_CSharpArithmeticException].callback = arithmeticCallback;
  95. SWIG_csharp_exceptions[SWIG_CSharpDivideByZeroException].callback = divideByZeroCallback;
  96. SWIG_csharp_exceptions[SWIG_CSharpIndexOutOfRangeException].callback = indexOutOfRangeCallback;
  97. SWIG_csharp_exceptions[SWIG_CSharpInvalidCastException].callback = invalidCastCallback;
  98. SWIG_csharp_exceptions[SWIG_CSharpInvalidOperationException].callback = invalidOperationCallback;
  99. SWIG_csharp_exceptions[SWIG_CSharpIOException].callback = ioCallback;
  100. SWIG_csharp_exceptions[SWIG_CSharpNullReferenceException].callback = nullReferenceCallback;
  101. SWIG_csharp_exceptions[SWIG_CSharpOutOfMemoryException].callback = outOfMemoryCallback;
  102. SWIG_csharp_exceptions[SWIG_CSharpOverflowException].callback = overflowCallback;
  103. SWIG_csharp_exceptions[SWIG_CSharpSystemException].callback = systemCallback;
  104. }
  105. #ifdef __cplusplus
  106. extern "C"
  107. #endif
  108. SWIGEXPORT void SWIGSTDCALL SWIGRegisterExceptionArgumentCallbacks_$module(
  109. SWIG_CSharpExceptionArgumentCallback_t argumentCallback,
  110. SWIG_CSharpExceptionArgumentCallback_t argumentNullCallback,
  111. SWIG_CSharpExceptionArgumentCallback_t argumentOutOfRangeCallback) {
  112. SWIG_csharp_exceptions_argument[SWIG_CSharpArgumentException].callback = argumentCallback;
  113. SWIG_csharp_exceptions_argument[SWIG_CSharpArgumentNullException].callback = argumentNullCallback;
  114. SWIG_csharp_exceptions_argument[SWIG_CSharpArgumentOutOfRangeException].callback = argumentOutOfRangeCallback;
  115. }
  116. %}
  117. %pragma(csharp) imclasscode=%{
  118. protected class SWIGExceptionHelper {
  119. public delegate void ExceptionDelegate(string message);
  120. public delegate void ExceptionArgumentDelegate(string message, string paramName);
  121. static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException);
  122. static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException);
  123. static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException);
  124. static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException);
  125. static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException);
  126. static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException);
  127. static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException);
  128. static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException);
  129. static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException);
  130. static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException);
  131. static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException);
  132. static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException);
  133. static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException);
  134. static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException);
  135. [global::System.Runtime.InteropServices.DllImport("$dllimport", EntryPoint="SWIGRegisterExceptionCallbacks_$module")]
  136. public static extern void SWIGRegisterExceptionCallbacks_$module(
  137. ExceptionDelegate applicationDelegate,
  138. ExceptionDelegate arithmeticDelegate,
  139. ExceptionDelegate divideByZeroDelegate,
  140. ExceptionDelegate indexOutOfRangeDelegate,
  141. ExceptionDelegate invalidCastDelegate,
  142. ExceptionDelegate invalidOperationDelegate,
  143. ExceptionDelegate ioDelegate,
  144. ExceptionDelegate nullReferenceDelegate,
  145. ExceptionDelegate outOfMemoryDelegate,
  146. ExceptionDelegate overflowDelegate,
  147. ExceptionDelegate systemExceptionDelegate);
  148. [global::System.Runtime.InteropServices.DllImport("$dllimport", EntryPoint="SWIGRegisterExceptionArgumentCallbacks_$module")]
  149. public static extern void SWIGRegisterExceptionCallbacksArgument_$module(
  150. ExceptionArgumentDelegate argumentDelegate,
  151. ExceptionArgumentDelegate argumentNullDelegate,
  152. ExceptionArgumentDelegate argumentOutOfRangeDelegate);
  153. static void SetPendingApplicationException(string message) {
  154. SWIGPendingException.Set(new global::System.ApplicationException(message, SWIGPendingException.Retrieve()));
  155. }
  156. static void SetPendingArithmeticException(string message) {
  157. SWIGPendingException.Set(new global::System.ArithmeticException(message, SWIGPendingException.Retrieve()));
  158. }
  159. static void SetPendingDivideByZeroException(string message) {
  160. SWIGPendingException.Set(new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
  161. }
  162. static void SetPendingIndexOutOfRangeException(string message) {
  163. SWIGPendingException.Set(new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
  164. }
  165. static void SetPendingInvalidCastException(string message) {
  166. SWIGPendingException.Set(new global::System.InvalidCastException(message, SWIGPendingException.Retrieve()));
  167. }
  168. static void SetPendingInvalidOperationException(string message) {
  169. SWIGPendingException.Set(new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
  170. }
  171. static void SetPendingIOException(string message) {
  172. SWIGPendingException.Set(new global::System.IO.IOException(message, SWIGPendingException.Retrieve()));
  173. }
  174. static void SetPendingNullReferenceException(string message) {
  175. SWIGPendingException.Set(new global::System.NullReferenceException(message, SWIGPendingException.Retrieve()));
  176. }
  177. static void SetPendingOutOfMemoryException(string message) {
  178. SWIGPendingException.Set(new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
  179. }
  180. static void SetPendingOverflowException(string message) {
  181. SWIGPendingException.Set(new global::System.OverflowException(message, SWIGPendingException.Retrieve()));
  182. }
  183. static void SetPendingSystemException(string message) {
  184. SWIGPendingException.Set(new global::System.SystemException(message, SWIGPendingException.Retrieve()));
  185. }
  186. static void SetPendingArgumentException(string message, string paramName) {
  187. SWIGPendingException.Set(new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
  188. }
  189. static void SetPendingArgumentNullException(string message, string paramName) {
  190. global::System.Exception e = SWIGPendingException.Retrieve();
  191. if (e != null) message = message + " Inner Exception: " + e.Message;
  192. SWIGPendingException.Set(new global::System.ArgumentNullException(paramName, message));
  193. }
  194. static void SetPendingArgumentOutOfRangeException(string message, string paramName) {
  195. global::System.Exception e = SWIGPendingException.Retrieve();
  196. if (e != null) message = message + " Inner Exception: " + e.Message;
  197. SWIGPendingException.Set(new global::System.ArgumentOutOfRangeException(paramName, message));
  198. }
  199. static SWIGExceptionHelper() {
  200. SWIGRegisterExceptionCallbacks_$module(
  201. applicationDelegate,
  202. arithmeticDelegate,
  203. divideByZeroDelegate,
  204. indexOutOfRangeDelegate,
  205. invalidCastDelegate,
  206. invalidOperationDelegate,
  207. ioDelegate,
  208. nullReferenceDelegate,
  209. outOfMemoryDelegate,
  210. overflowDelegate,
  211. systemDelegate);
  212. SWIGRegisterExceptionCallbacksArgument_$module(
  213. argumentDelegate,
  214. argumentNullDelegate,
  215. argumentOutOfRangeDelegate);
  216. }
  217. }
  218. protected static SWIGExceptionHelper swigExceptionHelper = new SWIGExceptionHelper();
  219. public class SWIGPendingException {
  220. [global::System.ThreadStatic]
  221. private static global::System.Exception pendingException = null;
  222. private static int numExceptionsPending = 0;
  223. public static bool Pending {
  224. get {
  225. bool pending = false;
  226. if (numExceptionsPending > 0)
  227. if (pendingException != null)
  228. pending = true;
  229. return pending;
  230. }
  231. }
  232. public static void Set(global::System.Exception e) {
  233. if (pendingException != null)
  234. throw new global::System.ApplicationException("FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() + ")", e);
  235. pendingException = e;
  236. lock(typeof($imclassname)) {
  237. numExceptionsPending++;
  238. }
  239. }
  240. public static global::System.Exception Retrieve() {
  241. global::System.Exception e = null;
  242. if (numExceptionsPending > 0) {
  243. if (pendingException != null) {
  244. e = pendingException;
  245. pendingException = null;
  246. lock(typeof($imclassname)) {
  247. numExceptionsPending--;
  248. }
  249. }
  250. }
  251. return e;
  252. }
  253. }
  254. %}
  255. #endif // SWIG_CSHARP_NO_EXCEPTION_HELPER
  256. #if !defined(SWIG_CSHARP_NO_STRING_HELPER)
  257. %insert(runtime) %{
  258. /* Callback for returning strings to C# without leaking memory */
  259. typedef char * (SWIGSTDCALL* SWIG_CSharpStringHelperCallback)(const char *);
  260. static SWIG_CSharpStringHelperCallback SWIG_csharp_string_callback = NULL;
  261. %}
  262. %pragma(csharp) imclasscode=%{
  263. protected class SWIGStringHelper {
  264. public delegate string SWIGStringDelegate(string message);
  265. static SWIGStringDelegate stringDelegate = new SWIGStringDelegate(CreateString);
  266. [global::System.Runtime.InteropServices.DllImport("$dllimport", EntryPoint="SWIGRegisterStringCallback_$module")]
  267. public static extern void SWIGRegisterStringCallback_$module(SWIGStringDelegate stringDelegate);
  268. static string CreateString(string cString) {
  269. return cString;
  270. }
  271. static SWIGStringHelper() {
  272. SWIGRegisterStringCallback_$module(stringDelegate);
  273. }
  274. }
  275. static protected SWIGStringHelper swigStringHelper = new SWIGStringHelper();
  276. %}
  277. %insert(runtime) %{
  278. #ifdef __cplusplus
  279. extern "C"
  280. #endif
  281. SWIGEXPORT void SWIGSTDCALL SWIGRegisterStringCallback_$module(SWIG_CSharpStringHelperCallback callback) {
  282. SWIG_csharp_string_callback = callback;
  283. }
  284. %}
  285. #endif // SWIG_CSHARP_NO_STRING_HELPER
  286. #if !defined(SWIG_CSHARP_NO_IMCLASS_STATIC_CONSTRUCTOR)
  287. // Ensure the class is not marked beforefieldinit
  288. %pragma(csharp) imclasscode=%{
  289. static $imclassname() {
  290. }
  291. %}
  292. #endif
  293. %insert(runtime) %{
  294. /* Contract support */
  295. #define SWIG_contract_assert(nullreturn, expr, msg) if (!(expr)) {SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpArgumentOutOfRangeException, msg, ""); return nullreturn; } else
  296. %}