Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <observablethread.hxx>
21 : #include <boost/shared_ptr.hpp>
22 :
23 : /* class for an observable thread
24 :
25 : #i73788#
26 : */
27 0 : ObservableThread::ObservableThread()
28 : : mnRefCount( 0 ),
29 : mnThreadID( 0 ),
30 0 : mpThreadListener()
31 : {
32 0 : }
33 :
34 0 : ObservableThread::~ObservableThread()
35 : {
36 0 : }
37 :
38 0 : oslInterlockedCount ObservableThread::acquire()
39 : {
40 0 : return osl_atomic_increment( &mnRefCount );
41 : }
42 :
43 0 : oslInterlockedCount ObservableThread::release()
44 : {
45 0 : oslInterlockedCount nCount( osl_atomic_decrement( &mnRefCount ) );
46 0 : if ( nCount == 0 )
47 0 : delete this;
48 0 : return nCount;
49 : }
50 :
51 0 : void ObservableThread::SetListener( boost::weak_ptr< IFinishedThreadListener > pThreadListener,
52 : const oslInterlockedCount nThreadID )
53 : {
54 0 : mpThreadListener = pThreadListener;
55 0 : mnThreadID = nThreadID;
56 0 : }
57 :
58 0 : void SAL_CALL ObservableThread::run()
59 : {
60 0 : acquire();
61 :
62 0 : threadFunction();
63 0 : }
64 :
65 0 : void SAL_CALL ObservableThread::onTerminated()
66 : {
67 0 : threadFinished();
68 :
69 : // notify observer
70 0 : boost::shared_ptr< IFinishedThreadListener > pThreadListener = mpThreadListener.lock();
71 0 : if ( pThreadListener )
72 : {
73 0 : pThreadListener->NotifyAboutFinishedThread( mnThreadID );
74 : }
75 :
76 0 : release();
77 0 : }
78 :
79 0 : void ObservableThread::threadFinished()
80 : {
81 : // empty default implementation
82 0 : }
83 :
84 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|