pprocess.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:5k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * pprocess.h
  3.  *
  4.  * Operating system process (running program) class.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: pprocess.h,v $
  30.  * Revision 1.26  2000/03/04 07:48:15  robertj
  31.  * Fixed problem with window not appearing when assert on GUI based win32 apps.
  32.  *
  33.  * Revision 1.25  1999/02/16 08:10:33  robertj
  34.  * MSVC 6.0 compatibility changes.
  35.  *
  36.  * Revision 1.24  1998/12/04 10:13:08  robertj
  37.  * Added virtual for determining if process is a service. Fixes linkage problem.
  38.  *
  39.  * Revision 1.23  1998/11/30 02:55:23  robertj
  40.  * New directory structure
  41.  *
  42.  * Revision 1.22  1998/09/24 03:30:16  robertj
  43.  * Added open software license.
  44.  *
  45.  * Revision 1.21  1998/04/07 13:32:58  robertj
  46.  * Changed startup code to support PApplication class.
  47.  *
  48.  * Revision 1.20  1998/04/01 01:53:24  robertj
  49.  * Fixed problem with NoAutoDelete threads.
  50.  *
  51.  * Revision 1.19  1998/03/20 03:18:27  robertj
  52.  * Added special classes for specific sepahores, PMutex and PSyncPoint.
  53.  *
  54.  * Revision 1.18  1997/07/08 13:01:12  robertj
  55.  * DLL support.
  56.  *
  57.  * Revision 1.17  1997/04/27 05:50:25  robertj
  58.  * DLL support.
  59.  *
  60.  * Revision 1.16  1997/02/05 11:49:37  robertj
  61.  * Changed current process function to return reference and validate objects descendancy.
  62.  *
  63.  * Revision 1.15  1996/10/08 13:05:18  robertj
  64.  * Rewrite to use standard window isntead of console window.
  65.  *
  66.  * Revision 1.14  1996/08/17 10:00:34  robertj
  67.  * Changes for Windows DLL support.
  68.  *
  69.  * Revision 1.13  1996/08/08 10:09:08  robertj
  70.  * Directory structure changes for common files.
  71.  *
  72.  * Revision 1.12  1996/07/27 04:09:23  robertj
  73.  * Changed thread creation to use C library function instead of direct WIN32.
  74.  *
  75.  * Revision 1.11  1996/06/13 13:32:09  robertj
  76.  * Rewrite of auto-delete threads, fixes Windows95 total crash.
  77.  *
  78.  * Revision 1.10  1996/05/23 10:02:41  robertj
  79.  * Changed process.h to pprocess.h to avoid name conflict.
  80.  *
  81.  * Revision 1.9  1996/03/31 09:08:04  robertj
  82.  * Added mutex to thread dictionary access.
  83.  *
  84.  * Revision 1.8  1996/03/12 11:31:06  robertj
  85.  * Moved PProcess destructor to platform dependent code.
  86.  *
  87.  * Revision 1.7  1995/12/10 11:48:08  robertj
  88.  * Fixed bug in application shutdown of child threads.
  89.  *
  90.  * Revision 1.6  1995/04/25 11:17:11  robertj
  91.  * Fixes for DLL use in WIN32.
  92.  *
  93.  * Revision 1.5  1995/03/12 04:59:57  robertj
  94.  * Re-organisation of DOS/WIN16 and WIN32 platforms to maximise common code.
  95.  * Used built-in equate for WIN32 API (_WIN32).
  96.  *
  97.  * Revision 1.4  1994/07/27  06:00:10  robertj
  98.  * Backup
  99.  *
  100.  * Revision 1.3  1994/07/21  12:35:18  robertj
  101.  * *** empty log message ***
  102.  *
  103.  * Revision 1.2  1994/07/02  03:18:09  robertj
  104.  * Prevent WinMain in pure MSDOS versions.
  105.  *
  106.  * Revision 1.1  1994/06/25  12:13:01  robertj
  107.  * Initial revision
  108.  *
  109.  */
  110. #ifndef _PPROCESS
  111. #include <ptlib/syncpoint.h>
  112. extern "C" int PASCAL WinMain(HINSTANCE, HINSTANCE, LPSTR, int);
  113. ///////////////////////////////////////////////////////////////////////////////
  114. // PProcess
  115. #include "../../pprocess.h"
  116.   public:
  117.     ~PProcess();
  118. #if defined(P_PLATFORM_HAS_THREADS)
  119.     void SignalTimerChange();
  120.     // Signal to the timer thread that a change was made.
  121.     virtual BOOL IsServiceProcess() const;
  122.     virtual BOOL IsGUIProcess() const;
  123.   private:
  124.     PDICTIONARY(ThreadDict, POrdinalKey, PThread);
  125.     ThreadDict activeThreads;
  126.     PMutex activeThreadMutex;
  127.     PLIST(ThreadList, PThread);
  128.     ThreadList autoDeleteThreads;
  129.     PMutex deleteThreadMutex;
  130.     class HouseKeepingThread : public PThread
  131.     {
  132.       PCLASSINFO(HouseKeepingThread, PThread)
  133.         public:
  134.         HouseKeepingThread();
  135.         void Main();
  136.         PSyncPoint breakBlock;
  137.     };
  138.     HouseKeepingThread * houseKeeper;
  139.     // Thread for doing timers, thread clean up etc.
  140.   friend PThread * PThread::Current();
  141.   friend void HouseKeepingThread::Main();
  142.   friend UINT __stdcall PThread::MainFunction(void * thread);
  143.   friend class PServiceProcess;
  144.   friend class PApplication;
  145.   friend int PASCAL WinMain(HINSTANCE, HINSTANCE, LPSTR, int);
  146. #endif
  147. };
  148. #endif