Version 4.0.2.1, tag libreoffice-4.0.2.1
[LibreOffice.git] / cppu / source / threadpool / jobqueue.hxx
blobbaaa3d21a22432822789f5319975903883b9d88f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _CPPU_THREADPOOL_JOBQUEUE_HXX_
21 #define _CPPU_THREADPOOL_JOBQUEUE_HXX_
23 #include <list>
24 #include <sal/types.h>
26 #include <osl/conditn.h>
27 #include <osl/mutex.hxx>
29 #include <boost/shared_ptr.hpp>
31 namespace cppu_threadpool
33 extern "C" typedef void (SAL_CALL RequestFun)(void *);
35 struct Job
37 void *pThreadSpecificData;
38 RequestFun * doRequest;
41 typedef ::std::list < struct Job > JobList;
43 typedef ::std::list < sal_Int64 > CallStackList;
45 class DisposedCallerAdmin;
46 typedef boost::shared_ptr<DisposedCallerAdmin> DisposedCallerAdminHolder;
48 class JobQueue
50 public:
51 JobQueue();
52 ~JobQueue();
54 void add( void *pThreadSpecificData, RequestFun * doRequest );
56 void *enter( sal_Int64 nDisposeId , sal_Bool bReturnWhenNoJob = sal_False );
57 void dispose( sal_Int64 nDisposeId );
59 void suspend();
60 void resume();
62 sal_Bool isEmpty() const;
63 sal_Bool isCallstackEmpty() const;
64 sal_Bool isBusy() const;
66 private:
67 mutable ::osl::Mutex m_mutex;
68 JobList m_lstJob;
69 CallStackList m_lstCallstack;
70 sal_Int32 m_nToDo;
71 sal_Bool m_bSuspended;
72 oslCondition m_cndWait;
73 DisposedCallerAdminHolder m_DisposedCallerAdmin;
77 #endif
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */