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)
15 #include "mono/metadata/marshal-windows-internals.h"
16 #include "icall-decl.h"
18 #if G_HAVE_API_SUPPORT(HAVE_CLASSIC_WINAPI_SUPPORT)
20 mono_marshal_alloc_hglobal (size_t size
, MonoError
*error
)
22 void* p
= GlobalAlloc (GMEM_FIXED
, size
);
24 mono_error_set_out_of_memory (error
, "");
29 mono_marshal_realloc_hglobal (gpointer ptr
, size_t size
)
31 return GlobalReAlloc (ptr
, size
, GMEM_MOVEABLE
);
35 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
, MonoError
*error
)
62 // FIXME pass mono_utf16_to_utf8 an allocator to avoid double alloc/copy.
64 char* tres
= mono_utf16_to_utf8 (s
, length
, error
);
65 return_val_if_nok (error
, NULL
);
70 * mono_utf16_to_utf8() returns a memory area at least as large as length,
71 * even if it contains NULL characters. The copy we allocate here has to be equally
74 size_t len
= MAX (strlen (tres
) + 1, length
);
75 char* ret
= (char*)ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal (len
, error
);
77 memcpy (ret
, tres
, len
);
83 mono_string_to_utf8str_impl (MonoStringHandle s
, MonoError
*error
)
87 GError
*gerror
= NULL
;
89 if (MONO_HANDLE_IS_NULL (s
))
92 if (!mono_string_handle_length (s
)) {
93 as
= (char*)CoTaskMemAlloc (1);
99 // FIXME pass g_utf16_to_utf8 an allocator to avoid double alloc/copy.
101 uint32_t gchandle
= 0;
102 tmp
= g_utf16_to_utf8 (mono_string_handle_pin_chars (s
, &gchandle
), mono_string_handle_length (s
), NULL
, &len
, &gerror
);
103 mono_gchandle_free_internal (gchandle
);
105 mono_error_set_argument (error
, "string", gerror
->message
);
106 g_error_free (gerror
);
109 as
= (char*)CoTaskMemAlloc (len
+ 1);
111 memcpy (as
, tmp
, len
+ 1);
117 #endif /* HOST_WIN32 */