| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451 |
- //
- // System.Threading.Thread.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System.Runtime.Remoting.Contexts;
- using System.Security.Principal;
- using System.Globalization;
- using System.Runtime.CompilerServices;
- using System.Collections;
- namespace System.Threading
- {
- public sealed class Thread
- {
- // stores a thread handle
- private IntPtr system_thread_handle;
-
- private CultureInfo current_culture;
- private bool threadpool_thread = false;
- private ThreadState state = ThreadState.Unstarted;
- private object abort_exc;
- internal object abort_state;
- /* thread_id is only accessed from unmanaged code */
- private int thread_id;
-
- [MonoTODO]
- public static Context CurrentContext {
- get {
- // FIXME -
- // System.Runtime.Remoting.Context not
- // yet implemented
- return(null);
- }
- }
- [MonoTODO]
- public static IPrincipal CurrentPrincipal {
- get {
- // FIXME -
- // System.Security.Principal.IPrincipal
- // not yet implemented
- return(null);
- }
-
- set {
- }
- }
- // Looks up the object associated with the current thread
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern static Thread CurrentThread_internal();
-
- public static Thread CurrentThread {
- get {
- return(CurrentThread_internal());
- }
- }
- // Looks up the slot hash for the current thread
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern static Hashtable SlotHash_lookup();
- // Stores the slot hash for the current thread
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern static void SlotHash_store(Hashtable slothash);
- private static Hashtable GetTLSSlotHash() {
- Hashtable slothash=SlotHash_lookup();
- if(slothash==null) {
- // Not synchronised, because this is
- // thread specific anyway.
- slothash=new Hashtable();
- SlotHash_store(slothash);
- }
- return(slothash);
- }
- public static LocalDataStoreSlot AllocateDataSlot() {
- LocalDataStoreSlot slot = new LocalDataStoreSlot();
- return(slot);
- }
- // Stores a hash keyed by strings of LocalDataStoreSlot objects
- static Hashtable datastorehash;
- private static void InitDataStoreHash () {
- lock (typeof (Thread)) {
- if (datastorehash == null) {
- datastorehash = Hashtable.Synchronized(new Hashtable());
- }
- }
- }
-
- public static LocalDataStoreSlot AllocateNamedDataSlot(string name) {
- if (datastorehash == null)
- InitDataStoreHash ();
- LocalDataStoreSlot slot = (LocalDataStoreSlot)datastorehash[name];
- if(slot!=null) {
- // This exception isnt documented (of
- // course) but .net throws it
- throw new ArgumentException("Named data slot already added");
- }
-
- slot = new LocalDataStoreSlot();
- datastorehash.Add(name, slot);
-
- return(slot);
- }
- public static void FreeNamedDataSlot(string name) {
- if (datastorehash == null)
- InitDataStoreHash ();
- LocalDataStoreSlot slot=(LocalDataStoreSlot)datastorehash[name];
- if(slot!=null) {
- datastorehash.Remove(slot);
- }
- }
- public static object GetData(LocalDataStoreSlot slot) {
- Hashtable slothash=GetTLSSlotHash();
- return(slothash[slot]);
- }
- public static AppDomain GetDomain() {
- return AppDomain.CurrentDomain;
- }
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern static int GetDomainID();
- public static LocalDataStoreSlot GetNamedDataSlot(string name) {
- if (datastorehash == null)
- InitDataStoreHash ();
- LocalDataStoreSlot slot=(LocalDataStoreSlot)datastorehash[name];
- if(slot==null) {
- slot=AllocateNamedDataSlot(name);
- }
-
- return(slot);
- }
-
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern static void ResetAbort();
- public static void SetData(LocalDataStoreSlot slot,
- object data) {
- Hashtable slothash=GetTLSSlotHash();
- if(slothash[slot]!=null) {
- slothash.Remove(slot);
- }
-
- slothash.Add(slot, data);
- }
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern static void Sleep_internal(int ms);
- public static void Sleep(int millisecondsTimeout) {
- if(millisecondsTimeout<0) {
- throw new ArgumentException("Negative timeout");
- }
- Thread thread=CurrentThread;
-
- thread.set_state(ThreadState.WaitSleepJoin);
-
- Sleep_internal(millisecondsTimeout);
- thread.clr_state(ThreadState.WaitSleepJoin);
- }
- public static void Sleep(TimeSpan timeout) {
- // LAMESPEC: says to throw ArgumentException too
- int ms=Convert.ToInt32(timeout.TotalMilliseconds);
-
- if(ms < 0 || ms > Int32.MaxValue) {
- throw new ArgumentOutOfRangeException("Timeout out of range");
- }
- Thread thread=CurrentThread;
-
- thread.set_state(ThreadState.WaitSleepJoin);
- Sleep_internal(ms);
- thread.clr_state(ThreadState.WaitSleepJoin);
- }
- // Returns the system thread handle
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern IntPtr Thread_internal(ThreadStart start);
- public Thread(ThreadStart start) {
- if(start==null) {
- throw new ArgumentNullException("Null ThreadStart");
- }
- // This is a two-stage thread launch. Thread_internal
- // creates the new thread, but blocks it until
- // Start() is called later.
- system_thread_handle=Thread_internal(start);
- // Should throw an exception here if
- // Thread_internal returns NULL
- }
- [MonoTODO]
- public ApartmentState ApartmentState {
- get {
- // FIXME
- return(ApartmentState.Unknown);
- }
-
- set {
- }
- }
- [MonoTODO]
- public CultureInfo CurrentCulture {
- get {
- if (current_culture == null)
- current_culture = new CultureInfo ("");
- return current_culture;
- }
-
- set {
- current_culture = value;
- }
- }
- [MonoTODO]
- public CultureInfo CurrentUICulture {
- get {
- // FIXME
- return(CurrentCulture);
- }
-
- set {
- // FIXME
- CurrentCulture=value;
- }
- }
- public bool IsThreadPoolThread {
- get {
- return IsThreadPoolThreadInternal;
- }
- }
- internal bool IsThreadPoolThreadInternal {
- get {
- return threadpool_thread;
- }
- set {
- threadpool_thread = value;
- }
- }
- public bool IsAlive {
- get {
- // LAMESPEC: is a Stopped or Suspended
- // thread dead?
- ThreadState curstate=state;
-
- if((curstate & ThreadState.Aborted) != 0 ||
- (curstate & ThreadState.AbortRequested) != 0 ||
- (curstate & ThreadState.Unstarted) != 0) {
- return(false);
- } else {
- return(true);
- }
- }
- }
- public bool IsBackground {
- get {
- if((state & ThreadState.Background) != 0) {
- return(true);
- } else {
- return(false);
- }
- }
-
- set {
- if(value==true) {
- set_state(ThreadState.Background);
- } else {
- clr_state(ThreadState.Background);
- }
- }
- }
- private string thread_name=null;
-
- public string Name {
- get {
- return(thread_name);
- }
-
- set {
- thread_name=value;
- }
- }
- [MonoTODO]
- public ThreadPriority Priority {
- get {
- // FIXME
- return(ThreadPriority.Lowest);
- }
-
- set {
- }
- }
- public ThreadState ThreadState {
- get {
- return(state);
- }
- }
- public void Abort() {
- Abort (null);
- }
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern void Abort (object stateInfo);
- [MonoTODO]
- public void Interrupt() {
- // FIXME
- }
- // The current thread joins with 'this'. Set ms to 0 to block
- // until this actually exits.
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern bool Join_internal(int ms, IntPtr handle);
-
- public void Join() {
- if((state & ThreadState.Unstarted) != 0) {
- throw new ThreadStateException("Thread has not been started");
- }
-
- Thread thread=CurrentThread;
-
- thread.set_state(ThreadState.WaitSleepJoin);
- Join_internal(Timeout.Infinite, system_thread_handle);
- thread.clr_state(ThreadState.WaitSleepJoin);
- }
- public bool Join(int millisecondsTimeout) {
- if (millisecondsTimeout != Timeout.Infinite && millisecondsTimeout < 0)
- throw new ArgumentException ("Timeout less than zero", "millisecondsTimeout");
- if((state & ThreadState.Unstarted) != 0) {
- throw new ThreadStateException("Thread has not been started");
- }
- Thread thread=CurrentThread;
-
- thread.set_state(ThreadState.WaitSleepJoin);
- bool ret=Join_internal(millisecondsTimeout,
- system_thread_handle);
- thread.clr_state(ThreadState.WaitSleepJoin);
- return(ret);
- }
- public bool Join(TimeSpan timeout) {
- // LAMESPEC: says to throw ArgumentException too
- int ms=Convert.ToInt32(timeout.TotalMilliseconds);
-
- if(ms < 0 || ms > Int32.MaxValue) {
- throw new ArgumentOutOfRangeException("timeout out of range");
- }
- if((state & ThreadState.Unstarted) != 0) {
- throw new ThreadStateException("Thread has not been started");
- }
- Thread thread=CurrentThread;
- thread.set_state(ThreadState.WaitSleepJoin);
- bool ret=Join_internal(ms, system_thread_handle);
- thread.clr_state(ThreadState.WaitSleepJoin);
- return(ret);
- }
- [MonoTODO]
- public void Resume() {
- throw new NotImplementedException ();
- }
- // Launches the thread
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern void Start_internal(IntPtr handle);
-
- public void Start() {
- if((state & ThreadState.Unstarted) == 0) {
- throw new ThreadStateException("Thread has already been started");
- }
- // Mark the thread state as Running (which is
- // all bits cleared). Therefore just remove
- // the Unstarted bit
- clr_state(ThreadState.Unstarted);
-
- // Launch this thread
- Start_internal(system_thread_handle);
- }
- [MonoTODO]
- public void Suspend() {
- if((state & ThreadState.Unstarted) != 0 || !IsAlive) {
- throw new ThreadStateException("Thread has not been started, or is dead");
- }
- set_state(ThreadState.SuspendRequested);
- // FIXME - somehow let the interpreter know that
- // this thread should now suspend
- Console.WriteLine ("WARNING: Thread.Suspend () partially implemented");
- }
- // Closes the system thread handle
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern void Thread_free_internal(IntPtr handle);
- ~Thread() {
- // Free up the handle
- Thread_free_internal(system_thread_handle);
- }
- private void set_state(ThreadState set) {
- lock(this) {
- state |= set;
- }
- }
- private void clr_state(ThreadState clr) {
- lock(this) {
- state &= ~clr;
- }
- }
- }
- }
|