LibrePCB Developers Documentation
networkrequest.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_NETWORKREQUEST_H
21#define LIBREPCB_CORE_NETWORKREQUEST_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include "networkrequestbase.h"
27
28#include <QtCore>
29
30/*******************************************************************************
31 * Namespace / Forward Declarations
32 ******************************************************************************/
33namespace librepcb {
34
35/*******************************************************************************
36 * Class NetworkRequest
37 ******************************************************************************/
38
45class NetworkRequest final : public NetworkRequestBase {
46 Q_OBJECT
47
48public:
49 // Constructors / Destructor
50 NetworkRequest() = delete;
51 NetworkRequest(const NetworkRequest& other) = delete;
52 NetworkRequest(const QUrl& url,
53 const QByteArray& postData = QByteArray()) noexcept;
54 ~NetworkRequest() noexcept;
55
56 // Operator Overloadings
57 NetworkRequest& operator=(const NetworkRequest& rhs) = delete;
58
59signals:
60
64 void dataReceived(QByteArray data);
65
66private: // Methods
67 void prepareRequest() override;
68 void finalizeRequest() override;
69 void emitSuccessfullyFinishedSignals() noexcept override;
70 void fetchNewData(QIODevice& device) noexcept override;
71
72private: // Data
73 QByteArray mReceivedData;
74};
75
76/*******************************************************************************
77 * End of File
78 ******************************************************************************/
79
80} // namespace librepcb
81
82#endif
Base class for network requests which are processed in the network access manager.
Definition: networkrequestbase.h:55
This class is used to process general purpose network requests (up to 100MB)
Definition: networkrequest.h:45
void prepareRequest() override
Definition: networkrequest.cpp:50
void dataReceived(QByteArray data)
Data successfully received signal (emitted right before finished())
NetworkRequest(const NetworkRequest &other)=delete
QByteArray mReceivedData
Definition: networkrequest.h:73
void fetchNewData(QIODevice &device) noexcept override
Definition: networkrequest.cpp:66
void finalizeRequest() override
Definition: networkrequest.cpp:54
void emitSuccessfullyFinishedSignals() noexcept override
Definition: networkrequest.cpp:62
Definition: occmodel.cpp:77