aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/mt/Thread.cpp
blob: 755c0e6d3596fdf38b943d0d5fe69124a96f15b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
 * barrier -- mouse and keyboard sharing utility
 * Copyright (C) 2012-2016 Symless Ltd.
 * Copyright (C) 2002 Chris Schoeneman
 *
 * This package is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * found in the file LICENSE that should have accompanied this file.
 *
 * This package 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "mt/Thread.h"

#include "mt/XMT.h"
#include "mt/XThread.h"
#include "arch/Arch.h"
#include "base/Log.h"
#include "base/IJob.h"

//
// Thread
//

Thread::Thread(const std::function<void()>& fun)
{
    m_thread = ARCH->newThread([=](){ threadFunc(fun); });
    if (m_thread == NULL) {
        throw XMTThreadUnavailable();
    }
}

Thread::Thread(const Thread& thread)
{
    m_thread = ARCH->copyThread(thread.m_thread);
}

Thread::Thread(ArchThread adoptedThread)
{
    m_thread = adoptedThread;
}

Thread::~Thread()
{
    ARCH->closeThread(m_thread);
}

Thread&
Thread::operator=(const Thread& thread)
{
    // copy given thread and release ours
    ArchThread copy = ARCH->copyThread(thread.m_thread);
    ARCH->closeThread(m_thread);

    // cut over
    m_thread = copy;

    return *this;
}

void
Thread::exit(void* result)
{
    throw XThreadExit();
}

void
Thread::cancel()
{
    ARCH->cancelThread(m_thread);
}

void
Thread::setPriority(int n)
{
    ARCH->setPriorityOfThread(m_thread, n);
}

void
Thread::unblockPollSocket()
{
    ARCH->unblockPollSocket(m_thread);
}

Thread
Thread::getCurrentThread()
{
    return Thread(ARCH->newCurrentThread());
}

void
Thread::testCancel()
{
    ARCH->testCancelThread();
}

bool
Thread::wait(double timeout) const
{
    return ARCH->wait(m_thread, timeout);
}

IArchMultithread::ThreadID
Thread::getID() const
{
    return ARCH->getIDOfThread(m_thread);
}

bool
Thread::operator==(const Thread& thread) const
{
    return ARCH->isSameThread(m_thread, thread.m_thread);
}

bool
Thread::operator!=(const Thread& thread) const
{
    return !ARCH->isSameThread(m_thread, thread.m_thread);
}

void Thread::threadFunc(const std::function<void()>& func)
{
    // get this thread's id for logging
    IArchMultithread::ThreadID id;
    {
        ArchThread thread = ARCH->newCurrentThread();
        id = ARCH->getIDOfThread(thread);
        ARCH->closeThread(thread);
    }

    try {
        // go
        LOG((CLOG_DEBUG1 "thread 0x%08x entry", id));
        func();
        LOG((CLOG_DEBUG1 "thread 0x%08x exit", id));
    }
    catch (XThreadCancel&) {
        // client called cancel()
        LOG((CLOG_DEBUG1 "caught cancel on thread 0x%08x", id));
        throw;
    }
    catch (XThreadExit&) {
        LOG((CLOG_DEBUG1 "caught exit on thread 0x%08x", id));
    }
    catch (XBase& e) {
        LOG((CLOG_ERR "exception on thread 0x%08x: %s", id, e.what()));
        throw;
    }
    catch (...) {
        LOG((CLOG_ERR "exception on thread 0x%08x: <unknown>", id));
        throw;
    }
}