grammar updates
[mono.git] / mono / metadata / domain.c
index e3fb190fcee67c34726f24cf11b407fbcd8e4822..91bfb1e42432c8587fc4081594b3a4a38f9d58b3 100644 (file)
@@ -4,6 +4,7 @@
  *
  * Author:
  *     Dietmar Maurer (dietmar@ximian.com)
+ *     Patrik Torstensson
  *
  * (C) 2001 Ximian, Inc.
  */
 #include <mono/metadata/assembly.h>
 #include <mono/metadata/exception.h>
 #include <mono/metadata/cil-coff.h>
+#include <mono/metadata/rawbuffer.h>
 
-static guint32 appdomain_thread_id = 0;
+//#define DEBUG_DOMAIN_UNLOAD
+
+static guint32 appdomain_thread_id = -1;
+static guint32 context_thread_id = -1;
 
 static gint32 appdomain_id_counter = 0;
 
+static MonoGHashTable * appdomains_list = NULL;
+
+static CRITICAL_SECTION appdomains_mutex;
+
 MonoDomain *mono_root_domain = NULL;
 
 static MonoJitInfoTable *
@@ -64,8 +73,11 @@ MonoJitInfo *
 mono_jit_info_table_find (MonoDomain *domain, char *addr)
 {
        MonoJitInfoTable *table = domain->jit_info_table;
-       int left = 0, right = table->len;
+       int left = 0, right;
+
+       mono_domain_lock (domain);
 
+       right = table->len;
        while (left < right) {
                int pos = (left + right) / 2;
                MonoJitInfo *ji = g_array_index (table, gpointer, pos);
@@ -76,11 +88,14 @@ mono_jit_info_table_find (MonoDomain *domain, char *addr)
                        right = pos;
                else if (addr >= end) 
                        left = pos + 1;
-               else
+               else {
+                       mono_domain_unlock (domain);
                        return ji;
+               }
        }
+       mono_domain_unlock (domain);
 
-       /* maybe irt is shared code, so we also search in the root domain */
+       /* maybe it is shared code, so we also search in the root domain */
        if (domain != mono_root_domain)
                return mono_jit_info_table_find (mono_root_domain, addr);
 
@@ -92,9 +107,13 @@ mono_jit_info_table_add (MonoDomain *domain, MonoJitInfo *ji)
 {
        MonoJitInfoTable *table = domain->jit_info_table;
        gpointer start = ji->code_start;
-       int pos = mono_jit_info_table_index (table, start);
+       int pos;
+
+       mono_domain_lock (domain);
+       pos = mono_jit_info_table_index (table, start);
 
        g_array_insert_val (table, pos, ji);
+       mono_domain_unlock (domain);
 }
 
 static int
@@ -165,14 +184,15 @@ mono_domain_create (void)
        MonoDomain *domain;
 
 #if HAVE_BOEHM_GC
-       domain = GC_malloc (sizeof (MonoDomain));
-       GC_register_finalizer (domain, domain_finalizer, NULL, NULL, NULL);
+       domain = GC_MALLOC (sizeof (MonoDomain));
+       GC_REGISTER_FINALIZER (domain, domain_finalizer, NULL, NULL, NULL);
 #else
        domain = g_new0 (MonoDomain, 1);
 #endif
        domain->domain = NULL;
        domain->setup = NULL;
        domain->friendly_name = NULL;
+       domain->search_path = NULL;
 
        domain->mp = mono_mempool_new ();
        domain->code_mp = mono_mempool_new ();
@@ -184,9 +204,16 @@ mono_domain_create (void)
        domain->jit_code_hash = g_hash_table_new (NULL, NULL);
        domain->ldstr_table = mono_g_hash_table_new ((GHashFunc)ldstr_hash, (GCompareFunc)ldstr_equal);
        domain->jit_info_table = mono_jit_info_table_new ();
+       domain->class_init_trampoline_hash = mono_g_hash_table_new (NULL, NULL);
+       domain->finalizable_objects_hash = g_hash_table_new (NULL, NULL);
        domain->domain_id = InterlockedIncrement (&appdomain_id_counter);
 
        InitializeCriticalSection (&domain->lock);
+
+       EnterCriticalSection (&appdomains_mutex);
+       mono_g_hash_table_insert(appdomains_list, GINT_TO_POINTER(domain->domain_id), domain);
+       LeaveCriticalSection (&appdomains_mutex);
+
        return domain;
 }
 
@@ -211,6 +238,18 @@ mono_init (const char *filename)
                g_assert_not_reached ();
 
        appdomain_thread_id = TlsAlloc ();
+       context_thread_id = TlsAlloc ();
+
+       InitializeCriticalSection (&appdomains_mutex);
+
+       mono_metadata_init ();
+       mono_raw_buffer_init ();
+       mono_images_init ();
+       mono_assemblies_init ();
+       mono_loader_init ();
+
+       // FIXME: When should we release this memory?
+       appdomains_list = mono_g_hash_table_new (g_direct_hash, g_direct_equal);
 
        domain = mono_domain_create ();
        mono_root_domain = domain;
@@ -317,6 +356,10 @@ mono_init (const char *filename)
                 mono_defaults.corlib, "System", "Array");
        g_assert (mono_defaults.array_class != 0);
 
+       mono_defaults.delegate_class = mono_class_from_name (
+               mono_defaults.corlib, "System", "Delegate");
+       g_assert (mono_defaults.delegate_class != 0 );
+
        mono_defaults.multicastdelegate_class = mono_class_from_name (
                mono_defaults.corlib, "System", "MulticastDelegate");
        g_assert (mono_defaults.multicastdelegate_class != 0 );
@@ -378,6 +421,10 @@ mono_init (const char *filename)
                mono_defaults.corlib, "System.Reflection", "FieldInfo");
        g_assert (mono_defaults.field_info_class != 0);
 
+       mono_defaults.method_info_class = mono_class_from_name (
+               mono_defaults.corlib, "System.Reflection", "MethodInfo");
+       g_assert (mono_defaults.method_info_class != 0);
+
        mono_defaults.stringbuilder_class = mono_class_from_name (
                mono_defaults.corlib, "System.Text", "StringBuilder");
        g_assert (mono_defaults.stringbuilder_class != 0);
@@ -410,6 +457,22 @@ mono_init (const char *filename)
                mono_defaults.corlib, "System.Runtime.Serialization", "StreamingContext");
        g_assert (mono_defaults.streamingcontext_class != 0);
 
+       mono_defaults.typed_reference_class =  mono_class_from_name (
+               mono_defaults.corlib, "System", "TypedReference");
+       g_assert (mono_defaults.typed_reference_class != 0);
+
+       mono_defaults.argumenthandle_class =  mono_class_from_name (
+               mono_defaults.corlib, "System", "RuntimeArgumentHandle");
+       g_assert (mono_defaults.argumenthandle_class != 0);
+
+       mono_defaults.marshalbyrefobject_class =  mono_class_from_name (
+               mono_defaults.corlib, "System", "MarshalByRefObject");
+       g_assert (mono_defaults.marshalbyrefobject_class != 0);
+
+       mono_defaults.monitor_class =  mono_class_from_name (
+               mono_defaults.corlib, "System.Threading", "Monitor");
+       g_assert (mono_defaults.monitor_class != 0);
+
        domain->friendly_name = g_path_get_basename (filename);
 
        return domain;
@@ -427,15 +490,60 @@ mono_domain_get ()
 }
 
 /**
- * mono_domain_set:
+ * mono_domain_set_internal:
  * @domain: the new domain
  *
  * Sets the current domain to @domain.
  */
 inline void
-mono_domain_set (MonoDomain *domain)
+mono_domain_set_internal (MonoDomain *domain)
 {
        TlsSetValue (appdomain_thread_id, domain);
+       TlsSetValue (context_thread_id, domain->default_context);
+}
+
+typedef struct {
+       MonoDomainFunc func;
+       gpointer user_data;
+} DomainInfo;
+
+static void
+copy_hash_entry (gpointer key, gpointer data, gpointer user_data)
+{
+       MonoGHashTable *dest = (MonoGHashTable*)user_data;
+
+       mono_g_hash_table_insert (dest, key, data);
+}
+
+static void
+foreach_domain (gpointer key, gpointer data, gpointer user_data)
+{
+       DomainInfo *dom_info = user_data;
+
+       dom_info->func ((MonoDomain*)data, dom_info->user_data);
+}
+
+void
+mono_domain_foreach (MonoDomainFunc func, gpointer user_data)
+{
+       DomainInfo dom_info;
+       MonoGHashTable *copy;
+
+       /*
+        * Create a copy of the hashtable to avoid calling the user callback
+        * inside the lock because that could lead to deadlocks.
+        * We can do this because this function is not perf. critical.
+        */
+       copy = mono_g_hash_table_new (NULL, NULL);
+       EnterCriticalSection (&appdomains_mutex);
+       mono_g_hash_table_foreach (appdomains_list, copy_hash_entry, copy);
+       LeaveCriticalSection (&appdomains_mutex);
+
+       dom_info.func = func;
+       dom_info.user_data = user_data;
+       mono_g_hash_table_foreach (copy, foreach_domain, &dom_info);
+
+       mono_g_hash_table_destroy (copy);
 }
 
 /**
@@ -448,25 +556,18 @@ mono_domain_set (MonoDomain *domain)
 MonoAssembly *
 mono_domain_assembly_open (MonoDomain *domain, const char *name)
 {
-       MonoAssembly *ass, *tmp;
-       int i;
+       MonoAssembly *ass;
 
-       if ((ass = g_hash_table_lookup (domain->assemblies, name)))
+       mono_domain_lock (domain);
+       if ((ass = g_hash_table_lookup (domain->assemblies, name))) {
+               mono_domain_unlock (domain);
                return ass;
+       }
+       mono_domain_unlock (domain);
 
        if (!(ass = mono_assembly_open (name, NULL)))
                return NULL;
 
-       mono_domain_lock (domain);
-       g_hash_table_insert (domain->assemblies, ass->aname.name, ass);
-       mono_domain_unlock (domain);
-
-       /* FIXME: maybe this must be recursive ? */
-       for (i = 0; (tmp = ass->image->references [i]) != NULL; i++) {
-               if (!g_hash_table_lookup (domain->assemblies, tmp->aname.name))
-                       g_hash_table_insert (domain->assemblies, tmp->aname.name, tmp);
-       }
-
        return ass;
 }
 
@@ -476,14 +577,24 @@ remove_assembly (gpointer key, gpointer value, gpointer user_data)
        mono_assembly_close ((MonoAssembly *)value);
 }
 
+static void
+delete_jump_list (gpointer key, gpointer value, gpointer user_data)
+{
+       g_slist_free (value);
+}
+
 void
-mono_domain_unload (MonoDomain *domain, gboolean force)
+mono_domain_free (MonoDomain *domain, gboolean force)
 {
        if ((domain == mono_root_domain) && !force) {
                g_warning ("cant unload root domain");
                return;
        }
 
+       EnterCriticalSection (&appdomains_mutex);
+       mono_g_hash_table_remove (appdomains_list, GINT_TO_POINTER(domain->domain_id));
+       LeaveCriticalSection (&appdomains_mutex);
+       
        g_free (domain->friendly_name);
        g_hash_table_foreach (domain->assemblies, remove_assembly, NULL);
 
@@ -495,10 +606,24 @@ mono_domain_unload (MonoDomain *domain, gboolean force)
        g_hash_table_destroy (domain->jit_code_hash);
        mono_g_hash_table_destroy (domain->ldstr_table);
        mono_jit_info_table_free (domain->jit_info_table);
+#ifdef DEBUG_DOMAIN_UNLOAD
+       mono_mempool_invalidate (domain->mp);
+       mono_mempool_invalidate (domain->code_mp);
+#else
        mono_mempool_destroy (domain->mp);
        mono_mempool_destroy (domain->code_mp);
+#endif 
+       if (domain->jump_target_hash) {
+               g_hash_table_foreach (domain->jump_target_hash, delete_jump_list, NULL);
+               g_hash_table_destroy (domain->jump_target_hash);
+       }
+       mono_g_hash_table_destroy (domain->class_init_trampoline_hash);
+       g_hash_table_destroy (domain->finalizable_objects_hash);
+       if (domain->thread_static_fields)
+               g_hash_table_destroy (domain->thread_static_fields);
        DeleteCriticalSection (&domain->lock);
-       
+       domain->setup = NULL;
+
        /* FIXME: anything else required ? */
 
 #if HAVE_BOEHM_GC
@@ -510,3 +635,31 @@ mono_domain_unload (MonoDomain *domain, gboolean force)
                mono_root_domain = NULL;
 }
 
+/**
+ * mono_domain_get_id:
+ *
+ * Returns the a domain for a specific domain id.
+ */
+MonoDomain * 
+mono_domain_get_by_id (gint32 domainid) 
+{
+       MonoDomain * domain;
+
+       EnterCriticalSection (&appdomains_mutex);
+       domain = mono_g_hash_table_lookup (appdomains_list, GINT_TO_POINTER(domainid));
+       LeaveCriticalSection (&appdomains_mutex);
+
+       return domain;
+}
+
+void 
+mono_context_set (MonoAppContext * new_context)
+{
+       TlsSetValue (context_thread_id, new_context);
+}
+
+MonoAppContext * 
+mono_context_get ()
+{
+       return ((MonoAppContext *)TlsGetValue (context_thread_id));
+}