LibrePCB Developers Documentation
networkaccessmanager.h
Go to the documentation of this file.
1/*
2 * LibrePCB - Professional EDA for everyone!
3 * Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
4 * https://librepcb.org/
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBREPCB_CORE_NETWORKACCESSMANAGER_H
21#define LIBREPCB_CORE_NETWORKACCESSMANAGER_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include "../fileio/filepath.h"
27
28#include <QtCore>
29#include <QtNetwork>
30
31#include <memory>
32
33/*******************************************************************************
34 * Namespace / Forward Declarations
35 ******************************************************************************/
36namespace librepcb {
37
38/*******************************************************************************
39 * Class NetworkAccessManager
40 ******************************************************************************/
41
64class NetworkAccessManager final : public QThread {
65 Q_OBJECT
66
67public:
68 // Constructors / Destructor
69 explicit NetworkAccessManager(const FilePath& cache = FilePath()) noexcept;
71 ~NetworkAccessManager() noexcept;
72
73 // General Methods
74 QNetworkReply* get(const QNetworkRequest& request) noexcept;
75 QNetworkReply* post(const QNetworkRequest& request,
76 const QByteArray& data) noexcept;
77 std::unique_ptr<QIODevice> readFromCache(const QUrl& url) noexcept;
78 bool setMinimumCacheExpirationDate(const QUrl& url,
79 const QDateTime& dt) noexcept;
80
81 // Operator Overloadings
82 NetworkAccessManager& operator=(const NetworkAccessManager& rhs) = delete;
83
84 // Static Methods
85 static NetworkAccessManager* instance() noexcept;
86
87private: // Methods
88 void run() noexcept override;
89 void stop() noexcept;
90
91private: // Data
94 QNetworkAccessManager* mManager;
96};
97
98} // namespace librepcb
99
100#endif
This class represents absolute, well-formatted paths to files or directories.
Definition: filepath.h:129
A network access manager which processes network requests in a separate thread.
Definition: networkaccessmanager.h:64
bool setMinimumCacheExpirationDate(const QUrl &url, const QDateTime &dt) noexcept
Definition: networkaccessmanager.cpp:110
void run() noexcept override
Definition: networkaccessmanager.cpp:141
const FilePath mCacheFp
Definition: networkaccessmanager.h:92
static NetworkAccessManager * sInstance
Definition: networkaccessmanager.h:95
~NetworkAccessManager() noexcept
Definition: networkaccessmanager.cpp:64
QNetworkReply * post(const QNetworkRequest &request, const QByteArray &data) noexcept
Definition: networkaccessmanager.cpp:86
NetworkAccessManager(const NetworkAccessManager &other)=delete
QNetworkReply * get(const QNetworkRequest &request) noexcept
Definition: networkaccessmanager.cpp:74
void stop() noexcept
Definition: networkaccessmanager.cpp:166
NetworkAccessManager(const FilePath &cache=FilePath()) noexcept
Definition: networkaccessmanager.cpp:44
QSemaphore mThreadStartSemaphore
Definition: networkaccessmanager.h:93
QNetworkAccessManager * mManager
Definition: networkaccessmanager.h:94
std::unique_ptr< QIODevice > readFromCache(const QUrl &url) noexcept
Definition: networkaccessmanager.cpp:98
static NetworkAccessManager * instance() noexcept
Definition: networkaccessmanager.cpp:133
Definition: occmodel.cpp:77