WebUI: use Fetch API to login
[qBittorrent.git] / src / app / qtlocalpeer / qtlockedfile_win.cpp
blobc5282acbc64cebd5a3bf1d50af8f62b474140bd2
1 /*
2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2019 Mike Tzou (Chocobo1)
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * In addition, as a special exception, the copyright holders give permission to
20 * link this program with the OpenSSL project's "OpenSSL" library (or with
21 * modified versions of it that use the same license as the "OpenSSL" library),
22 * and distribute the linked executables. You must obey the GNU General Public
23 * License in all respects for all of the code used other than "OpenSSL". If you
24 * modify file(s), you may extend this exception to your version of the file(s),
25 * but you are not obligated to do so. If you do not wish to do so, delete this
26 * exception statement from your version.
28 ****************************************************************************
30 ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
31 ** Contact: http://www.qt-project.org/legal
33 ** This file is part of the Qt Solutions component.
35 ** $QT_BEGIN_LICENSE:BSD$
36 ** You may use this file under the terms of the BSD license as follows:
38 ** "Redistribution and use in source and binary forms, with or without
39 ** modification, are permitted provided that the following conditions are
40 ** met:
41 ** * Redistributions of source code must retain the above copyright
42 ** notice, this list of conditions and the following disclaimer.
43 ** * Redistributions in binary form must reproduce the above copyright
44 ** notice, this list of conditions and the following disclaimer in
45 ** the documentation and/or other materials provided with the
46 ** distribution.
47 ** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
48 ** of its contributors may be used to endorse or promote products derived
49 ** from this software without specific prior written permission.
52 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
64 ** $QT_END_LICENSE$
66 ****************************************************************************
69 #include "qtlockedfile.h"
71 #include <QFileInfo>
73 #include "base/global.h"
75 // Maximum number of concurrent read locks. Must not be greater than MAXIMUM_WAIT_OBJECTS
76 const int MAX_READERS = MAXIMUM_WAIT_OBJECTS;
78 Qt::HANDLE QtLockedFile::getMutexHandle(const int idx, const bool doCreate)
80 if (m_mutexName.isEmpty())
82 QFileInfo fi(*this);
83 m_mutexName = u"QtLockedFile mutex " + fi.absoluteFilePath().toLower();
86 QString mname = m_mutexName;
87 if (idx >= 0)
88 mname += QString::number(idx);
90 const std::wstring mnameWStr = mname.toStdWString();
92 if (doCreate)
94 const Qt::HANDLE mutex = ::CreateMutexW(NULL, FALSE, mnameWStr.c_str());
95 if (!mutex)
97 qErrnoWarning("QtLockedFile::lock(): CreateMutex failed");
98 return nullptr;
101 return mutex;
103 else
105 const Qt::HANDLE mutex = ::OpenMutexW((SYNCHRONIZE | MUTEX_MODIFY_STATE), FALSE, mnameWStr.c_str());
106 if (!mutex)
108 if (GetLastError() != ERROR_FILE_NOT_FOUND)
109 qErrnoWarning("QtLockedFile::lock(): OpenMutex failed");
110 return nullptr;
113 return mutex;
116 return nullptr;
119 bool QtLockedFile::waitMutex(const Qt::HANDLE mutex, const bool doBlock) const
121 Q_ASSERT(mutex);
123 const DWORD res = ::WaitForSingleObject(mutex, (doBlock ? INFINITE : 0));
124 switch (res)
126 case WAIT_OBJECT_0:
127 case WAIT_ABANDONED:
128 return true;
129 case WAIT_TIMEOUT:
130 return false;
131 default:
132 qErrnoWarning("QtLockedFile::lock(): WaitForSingleObject failed");
133 break;
135 return false;
138 bool QtLockedFile::lock(const LockMode mode, const bool block)
140 if (!isOpen())
142 qWarning("QtLockedFile::lock(): file is not opened");
143 return false;
146 if (mode == NoLock)
147 return unlock();
149 if (mode == m_lockMode)
150 return true;
152 if (m_lockMode != NoLock)
153 unlock();
155 if (!m_writeMutex && !(m_writeMutex = getMutexHandle(-1, true)))
156 return false;
158 if (!waitMutex(m_writeMutex, block))
159 return false;
161 if (mode == ReadLock)
163 int idx = 0;
164 for (; idx < MAX_READERS; ++idx)
166 m_readMutex = getMutexHandle(idx, false);
167 if (!m_readMutex || waitMutex(m_readMutex, false))
168 break;
169 ::CloseHandle(m_readMutex);
172 bool ok = true;
173 if (idx >= MAX_READERS)
175 qWarning("QtLockedFile::lock(): too many readers");
176 m_readMutex = nullptr;
177 ok = false;
179 else if (!m_readMutex)
181 m_readMutex = getMutexHandle(idx, true);
182 if (!m_readMutex || !waitMutex(m_readMutex, false))
183 ok = false;
186 if (!ok && m_readMutex)
188 ::CloseHandle(m_readMutex);
189 m_readMutex = nullptr;
192 ::ReleaseMutex(m_writeMutex);
193 if (!ok)
194 return false;
196 else
198 Q_ASSERT(m_readMutexes.isEmpty());
199 for (int i = 0; i < MAX_READERS; ++i)
201 const Qt::HANDLE mutex = getMutexHandle(i, false);
202 if (mutex)
203 m_readMutexes.append(mutex);
205 if (m_readMutexes.size())
207 const DWORD res = ::WaitForMultipleObjects(m_readMutexes.size(), m_readMutexes.constData(),
208 TRUE, (block ? INFINITE : 0));
209 if ((res != WAIT_OBJECT_0) && (res != WAIT_ABANDONED))
211 if (res != WAIT_TIMEOUT)
212 qErrnoWarning("QtLockedFile::lock(): WaitForMultipleObjects failed");
213 m_lockMode = WriteLock; // trick unlock() to clean up - semiyucky
214 unlock();
215 return false;
220 m_lockMode = mode;
221 return true;
224 bool QtLockedFile::unlock()
226 if (!isOpen())
228 qWarning("QtLockedFile::unlock(): file is not opened");
229 return false;
232 if (!isLocked())
233 return true;
235 if (m_lockMode == ReadLock)
237 ::ReleaseMutex(m_readMutex);
238 ::CloseHandle(m_readMutex);
239 m_readMutex = nullptr;
241 else
243 for (const Qt::HANDLE &mutex : asConst(m_readMutexes))
245 ::ReleaseMutex(mutex);
246 ::CloseHandle(mutex);
248 m_readMutexes.clear();
249 ::ReleaseMutex(m_writeMutex);
252 m_lockMode = QtLockedFile::NoLock;
253 return true;
256 QtLockedFile::~QtLockedFile()
258 if (isOpen())
259 unlock();
260 if (m_writeMutex)
261 ::CloseHandle(m_writeMutex);