3 * Windows marshal support.
5 * Copyright 2016 Microsoft
6 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
11 #if defined(HOST_WIN32)
16 #include "mono/metadata/marshal-windows-internals.h"
17 #include "icall-decl.h"
19 #if G_HAVE_API_SUPPORT(HAVE_CLASSIC_WINAPI_SUPPORT)
22 mono_marshal_alloc_hglobal (size_t size
)
24 return GlobalAlloc (GMEM_FIXED
, size
);
28 mono_marshal_realloc_hglobal (gpointer ptr
, size_t size
)
30 return GlobalReAlloc (ptr
, size
, GMEM_MOVEABLE
);
34 mono_marshal_free_hglobal (gpointer ptr
)
39 #endif /* G_HAVE_API_SUPPORT(HAVE_CLASSIC_WINAPI_SUPPORT) */
42 mono_marshal_alloc_co_task_mem (size_t size
)
44 return CoTaskMemAlloc (size
);
48 mono_marshal_free_co_task_mem (void *ptr
)
54 mono_marshal_realloc_co_task_mem (gpointer ptr
, size_t size
)
56 return CoTaskMemRealloc (ptr
, size
);
60 ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi (const gunichar2
*s
, int length
);
63 ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi (const gunichar2
*s
, int length
)
65 g_assert_not_netcore ();
67 // FIXME pass mono_utf16_to_utf8 an allocator to avoid double alloc/copy.
72 char* tres
= mono_utf16_to_utf8 (s
, length
, error
);
73 if (!tres
|| !is_ok (error
))
77 * mono_utf16_to_utf8() returns a memory area at least as large as length,
78 * even if it contains NULL characters. The copy we allocate here has to be equally
81 len
= MAX (strlen (tres
) + 1, length
);
82 ret
= (char*)mono_marshal_alloc_hglobal_error (len
, error
);
84 memcpy (ret
, tres
, len
);
87 mono_error_set_pending_exception (error
);
92 mono_string_to_utf8str_impl (MonoStringHandle s
, MonoError
*error
)
96 GError
*gerror
= NULL
;
98 if (MONO_HANDLE_IS_NULL (s
))
101 if (!mono_string_handle_length (s
)) {
102 as
= (char*)CoTaskMemAlloc (1);
108 // FIXME pass g_utf16_to_utf8 an allocator to avoid double alloc/copy.
110 uint32_t gchandle
= 0;
111 tmp
= g_utf16_to_utf8 (mono_string_handle_pin_chars (s
, &gchandle
), mono_string_handle_length (s
), NULL
, &len
, &gerror
);
112 mono_gchandle_free_internal (gchandle
);
114 mono_error_set_argument (error
, "string", gerror
->message
);
115 g_error_free (gerror
);
118 as
= (char*)CoTaskMemAlloc (len
+ 1);
120 memcpy (as
, tmp
, len
+ 1);
126 #endif /* HOST_WIN32 */