macglue.cp
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:4k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. //#include "TArray.h"
  34. //#include "TArrayIterator.h"
  35. #include "prthread.h"
  36. #include "prlog.h"
  37. #include "prmem.h"
  38. #include "nsError.h"
  39. #include "nsVoidArray.h"
  40. #include "macglue.h"
  41. #include "nsCOMPtr.h"
  42. #include "nsIEventQueue.h"
  43. #include "nsIEventQueueService.h"
  44. #include "nsIServiceManager.h"
  45. #include "nspr.h"
  46. #include "nscore.h"
  47. #include "nsError.h"
  48. //#define MAC_PL_EVENT_TWEAKING
  49. // Class IDs...
  50. static NS_DEFINE_CID(kEventQueueCID,  NS_EVENTQUEUE_CID);
  51. static NS_DEFINE_CID(kEventQueueServiceCID,  NS_EVENTQUEUESERVICE_CID);
  52. typedef struct SSMThreadPrivateData
  53. {
  54. PRThread *thd;
  55. PRUintn indx;
  56. } SSMThreadPrivateData;
  57. static nsVoidArray* gThreadsList = NULL;
  58. static PRUintn  gThreadIndex = 0;
  59. PRUintn GetThreadIndex()
  60. {
  61. return gThreadIndex;
  62. }
  63. void 
  64. SSM_MacDelistThread(void *priv)
  65. {
  66.     PR_ASSERT(gThreadsList);
  67.     PRBool removed = gThreadsList->RemoveElement(priv);
  68.     PR_ASSERT(removed);
  69.     if (gThreadsList->Count() == 0)
  70.     {
  71.         delete gThreadsList;
  72.         gThreadsList = NULL;
  73.     }
  74. }
  75. static PRBool InterruptThreadEnumerator(void* aElement, void *aData)
  76. {
  77. PRThread* theThread = (PRThread *)aElement;
  78. nsresult rv = PR_Interrupt(theThread); // thread data dtor will deallocate (*priv)
  79. PR_ASSERT(rv == PR_SUCCESS);
  80. return PR_TRUE; // continue
  81. }
  82. void
  83. SSM_KillAllThreads(void)
  84. {
  85. if (gThreadsList)
  86. {
  87. gThreadsList->EnumerateForwards(InterruptThreadEnumerator, NULL);
  88.    }
  89. }
  90. PRThread *
  91. SSM_CreateAndRegisterThread(PRThreadType type,
  92.                      void (*start)(void *arg),
  93.                      void *arg,
  94.                      PRThreadPriority priority,
  95.                      PRThreadScope scope,
  96.                      PRThreadState state,
  97.                      PRUint32 stackSize)
  98. {
  99. if (!gThreadsList)
  100. {
  101. PR_NewThreadPrivateIndex(&gThreadIndex, SSM_MacDelistThread);
  102. gThreadsList = new nsVoidArray;
  103. }
  104. PRThread *newThread = PR_CreateThread(type, start, arg, priority, scope, state, stackSize);
  105. if (newThread)
  106. {
  107. /* Add this thread to our list of threads */
  108. gThreadsList->AppendElement((void *)newThread);
  109. }
  110. return newThread;
  111. }
  112. void ProcessEventQ(void)
  113. {
  114. }
  115. PRInt32 SetupEventQ(void)
  116. {
  117. nsresult res = NS_InitXPCOM(NULL, NULL);
  118. NS_ASSERTION( NS_SUCCEEDED(res), "NS_InitXPCOM failed" );
  119. if (NS_FAILED(res))
  120. return -1;
  121. return 0;
  122. }