Files
libreoffice/sw/source/core/inc/swthreadmanager.hxx
Rüdiger Timm 28128b2749 INTEGRATION: CWS changefileheader (1.2.342); FILE MERGED
2008/04/01 15:57:13 thb 1.2.342.2: #i85898# Stripping all external header guards
2008/03/31 16:54:16 rt 1.2.342.1: #i87441# Change license header to LPGL v3.
2008-04-10 13:30:28 +00:00

88 lines
2.4 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: swthreadmanager.hxx,v $
* $Revision: 1.3 $
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef _SWTHREADMANAGER_HXX
#define _SWTHREADMANAGER_HXX
#include <osl/interlck.h>
#include <osl/mutex.hxx>
#include <rtl/ref.hxx>
class ObservableThread;
class ThreadManager;
/** class to manage threads in Writer using a <ThreadManager> instance
OD 2007-04-13 #i73788#
Conforms the singleton pattern
@author OD
*/
class SwThreadManager
{
public:
static SwThreadManager& GetThreadManager();
static bool ExistsThreadManager();
~SwThreadManager();
oslInterlockedCount AddThread( const rtl::Reference< ObservableThread >& rThread );
void RemoveThread( const oslInterlockedCount nThreadID );
/** suspend the starting of threads
Suspending the starting of further threads is sensible during the
destruction of a Writer document.
@author OD
*/
void SuspendStartingOfThreads();
/** continues the starting of threads after it has been suspended
@author OD
*/
void ResumeStartingOfThreads();
bool StartingOfThreadsSuspended();
private:
static SwThreadManager* mpThreadManager;
static osl::Mutex* mpGetManagerMutex;
ThreadManager* mpThreadManagerImpl;
SwThreadManager();
};
#endif