summaryrefslogtreecommitdiffstats
path: root/ml/dlib/dlib/test/read_write_mutex.cpp
blob: fb8bdb84c806dae3c3ebbd4320a089fddf9e7803 (plain)
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
// Copyright (C) 2010  Davis E. King (davis@dlib.net)
// License: Boost Software License   See LICENSE.txt for the full license.


#include <sstream>
#include <string>
#include <cstdlib>
#include <ctime>
#include <dlib/misc_api.h>
#include <dlib/threads.h>

#include "tester.h"

namespace  
{
    using namespace test;
    using namespace dlib;
    using namespace std;

    logger dlog("test.read_write_mutex");

    class read_write_mutex_tester : public tester, multithreaded_object
    {
    public:
        read_write_mutex_tester (
        ) :
            tester ("test_read_write_mutex",
                    "Runs tests on the read_write_mutex component.")
        {
            register_thread(*this, &read_write_mutex_tester::thread_write);
            register_thread(*this, &read_write_mutex_tester::thread_write);
            register_thread(*this, &read_write_mutex_tester::thread_write);

            register_thread(*this, &read_write_mutex_tester::thread_readonly);
            register_thread(*this, &read_write_mutex_tester::thread_readonly);
            register_thread(*this, &read_write_mutex_tester::thread_readonly);
            register_thread(*this, &read_write_mutex_tester::thread_readonly2);
            register_thread(*this, &read_write_mutex_tester::thread_readonly2);
            register_thread(*this, &read_write_mutex_tester::thread_readonly2);

        }

        read_write_mutex m;

        dlib::mutex mut;
        int num_write;
        int num_read;
        int max_read;

        bool failure;

        void thread_write ()
        {
            // do this so that the readonly threads can get into their loops first.  This way
            // we can see if the mutex lets many readers into their area
            dlib::sleep(250);
            for (int i = 0; i < 6; ++i)
            {
                auto_mutex lock(m);

                mut.lock();
                ++num_write;
                mut.unlock();

                // only one write thread should ever be active at once
                if (num_write != 1)
                {
                    failure = true;
                    dlog << LERROR << "1";
                }

                dlib::sleep(300);

                // only one write thread should ever be active at once
                if (num_write != 1)
                {
                    failure = true;
                    dlog << LERROR << "2";
                }

                mut.lock();
                --num_write;
                mut.unlock();

                print_spinner();
            }
            dlog << LINFO << "exit thread_write()";
        }

        void do_readonly_stuff()
        {
            mut.lock();
            ++num_read;
            max_read = max(num_read, max_read);
            mut.unlock();

            if (num_write != 0)
            {
                failure = true;
                dlog << LERROR << "3";
            }

            dlib::sleep(300);

            if (num_write != 0)
            {
                failure = true;
                dlog << LERROR << "4";
            }

            mut.lock();
            max_read = max(num_read, max_read);
            --num_read;
            mut.unlock();

            print_spinner();
        }

        void thread_readonly ()
        {
            for (int i = 0; i < 6; ++i)
            {
                auto_mutex_readonly lock(m);
                DLIB_TEST(lock.has_read_lock());
                DLIB_TEST(!lock.has_write_lock());
                do_readonly_stuff();

                lock.lock_readonly();
                DLIB_TEST(lock.has_read_lock());
                DLIB_TEST(!lock.has_write_lock());
                lock.unlock();
                DLIB_TEST(!lock.has_read_lock());
                DLIB_TEST(!lock.has_write_lock());
                lock.lock_readonly();
                DLIB_TEST(lock.has_read_lock());
                DLIB_TEST(!lock.has_write_lock());
                lock.lock_write();
                DLIB_TEST(!lock.has_read_lock());
                DLIB_TEST(lock.has_write_lock());
                lock.lock_write();
                DLIB_TEST(!lock.has_read_lock());
                DLIB_TEST(lock.has_write_lock());
            }

            dlog << LINFO << "exit thread_readonly()";
        }

        void thread_readonly2 ()
        {
            for (int i = 0; i < 6; ++i)
            {
                m.lock_readonly();
                auto_unlock_readonly unlock(m);

                do_readonly_stuff();
            }
            dlog << LINFO << "exit thread_readonly2()";
        }


        void perform_test (
        )
        {
            num_write = 0;
            num_read = 0;
            max_read = 0;
            failure = false;

            // doing this big block of weird stuff should have no effect.  
            {
                m.unlock();

                m.lock_readonly();
                m.lock_readonly();
                m.unlock();
                m.unlock_readonly();
                m.unlock();
                m.unlock_readonly();

                m.unlock();
                m.unlock_readonly();

                m.lock();
                m.unlock_readonly();
                m.unlock_readonly();
                m.unlock();
            }


            // start up our testing threads
            start();

            // wait for the threads to finish
            wait();


            DLIB_TEST(failure == false);
            DLIB_TEST_MSG(max_read == 6, "max_read: "<< max_read);

        }

    } a;


}