120 lines
3.0 KiB
C
120 lines
3.0 KiB
C
/**
|
|
* \file
|
|
* namespace for w32handles
|
|
*
|
|
* Author:
|
|
* Ludovic Henry (luhenry@microsoft.com)
|
|
*
|
|
* Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifndef HOST_WIN32
|
|
|
|
#include "w32handle-namespace.h"
|
|
|
|
#include "w32mutex.h"
|
|
#include "w32semaphore.h"
|
|
#include "w32event.h"
|
|
#include "mono/utils/mono-logger-internals.h"
|
|
#include "mono/utils/mono-coop-mutex.h"
|
|
|
|
static MonoCoopMutex lock;
|
|
|
|
void
|
|
mono_w32handle_namespace_init (void)
|
|
{
|
|
mono_coop_mutex_init (&lock);
|
|
}
|
|
|
|
void
|
|
mono_w32handle_namespace_lock (void)
|
|
{
|
|
mono_coop_mutex_lock (&lock);
|
|
}
|
|
|
|
void
|
|
mono_w32handle_namespace_unlock (void)
|
|
{
|
|
mono_coop_mutex_unlock (&lock);
|
|
}
|
|
|
|
static gboolean
|
|
has_namespace (MonoW32Type type)
|
|
{
|
|
switch (type) {
|
|
case MONO_W32TYPE_NAMEDMUTEX:
|
|
case MONO_W32TYPE_NAMEDSEM:
|
|
case MONO_W32TYPE_NAMEDEVENT:
|
|
return TRUE;
|
|
default:
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
typedef struct {
|
|
gpointer ret;
|
|
MonoW32Type type;
|
|
const gchar *name;
|
|
} NamespaceSearchHandleData;
|
|
|
|
static gboolean
|
|
mono_w32handle_namespace_search_handle_callback (MonoW32Handle *handle_data, gpointer user_data)
|
|
{
|
|
NamespaceSearchHandleData *search_data;
|
|
MonoW32HandleNamespace *sharedns;
|
|
|
|
if (!has_namespace (handle_data->type))
|
|
return FALSE;
|
|
|
|
search_data = (NamespaceSearchHandleData*) user_data;
|
|
|
|
switch (handle_data->type) {
|
|
case MONO_W32TYPE_NAMEDMUTEX: sharedns = mono_w32mutex_get_namespace ((MonoW32HandleNamedMutex*) handle_data->specific); break;
|
|
case MONO_W32TYPE_NAMEDSEM: sharedns = mono_w32semaphore_get_namespace ((MonoW32HandleNamedSemaphore*) handle_data->specific); break;
|
|
case MONO_W32TYPE_NAMEDEVENT: sharedns = mono_w32event_get_namespace ((MonoW32HandleNamedEvent*) handle_data->specific); break;
|
|
default:
|
|
g_assert_not_reached ();
|
|
}
|
|
|
|
if (strcmp (sharedns->name, search_data->name) == 0) {
|
|
if (handle_data->type != search_data->type) {
|
|
/* Its the wrong type, so fail now */
|
|
mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER_HANDLE, "%s: handle %p matches name but is wrong type: %s",
|
|
__func__, handle_data, mono_w32handle_get_typename (handle_data->type));
|
|
search_data->ret = INVALID_HANDLE_VALUE;
|
|
} else {
|
|
mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER_HANDLE, "%s: handle %p matches name and type",
|
|
__func__, handle_data);
|
|
|
|
/* we do not want the handle to be destroyed before we return it */
|
|
search_data->ret = mono_w32handle_duplicate (handle_data);
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
gpointer
|
|
mono_w32handle_namespace_search_handle (MonoW32Type type, const gchar *name)
|
|
{
|
|
NamespaceSearchHandleData search_data;
|
|
|
|
if (!has_namespace (type))
|
|
g_error ("%s: type %s does not have a namespace", __func__, mono_w32handle_get_typename (type));
|
|
|
|
mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER_HANDLE, "%s: Lookup for handle named [%s] type %s",
|
|
__func__, name, mono_w32handle_get_typename (type));
|
|
|
|
search_data.ret = NULL;
|
|
search_data.type = type;
|
|
search_data.name = name;
|
|
mono_w32handle_foreach (mono_w32handle_namespace_search_handle_callback, &search_data);
|
|
return search_data.ret;
|
|
}
|
|
|
|
#endif
|