1 | /* $Id: UINetworkCustomer.h 90547 2021-08-06 13:43:06Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UINetworkCustomer class declaration.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-2021 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef FEQT_INCLUDED_SRC_networking_UINetworkCustomer_h
|
---|
19 | #define FEQT_INCLUDED_SRC_networking_UINetworkCustomer_h
|
---|
20 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
21 | # pragma once
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | /* Qt includes: */
|
---|
25 | #include <QObject>
|
---|
26 | #include <QUrl>
|
---|
27 | #include <QUuid>
|
---|
28 |
|
---|
29 | /* GUI includes: */
|
---|
30 | #include "UILibraryDefs.h"
|
---|
31 | #include "UINetworkDefs.h"
|
---|
32 |
|
---|
33 | /* Forward declarations: */
|
---|
34 | class UINetworkReply;
|
---|
35 |
|
---|
36 | /** Interface to access UINetworkRequestManager protected functionality. */
|
---|
37 | class SHARED_LIBRARY_STUFF UINetworkCustomer : public QObject
|
---|
38 | {
|
---|
39 | Q_OBJECT;
|
---|
40 |
|
---|
41 | signals:
|
---|
42 |
|
---|
43 | /** Notifies listeners about @a pNetworkCustomer being destroyed. */
|
---|
44 | void sigBeingDestroyed(UINetworkCustomer *pNetworkCustomer);
|
---|
45 |
|
---|
46 | public:
|
---|
47 |
|
---|
48 | /** Constructs network customer passing @a pParent to the base-class.
|
---|
49 | * @param fForceCall Brings whether this customer has forced privelegies. */
|
---|
50 | UINetworkCustomer(QObject *pParent = 0, bool fForceCall = true);
|
---|
51 | /** Destructs network customer. */
|
---|
52 | virtual ~UINetworkCustomer() /* override */;
|
---|
53 |
|
---|
54 | /** Returns whether this customer has forced privelegies. */
|
---|
55 | bool isItForceCall() const { return m_fForceCall; }
|
---|
56 |
|
---|
57 | /** Returns description of the current network operation. */
|
---|
58 | virtual QString description() const { return QString(); }
|
---|
59 |
|
---|
60 | /** Handles network reply progress for @a iReceived amount of bytes among @a iTotal. */
|
---|
61 | virtual void processNetworkReplyProgress(qint64 iReceived, qint64 iTotal) = 0;
|
---|
62 | /** Handles network reply failed with specified @a strError. */
|
---|
63 | virtual void processNetworkReplyFailed(const QString &strError) = 0;
|
---|
64 | /** Handles network reply canceling for a passed @a pReply. */
|
---|
65 | virtual void processNetworkReplyCanceled(UINetworkReply *pReply) = 0;
|
---|
66 | /** Handles network reply finishing for a passed @a pReply. */
|
---|
67 | virtual void processNetworkReplyFinished(UINetworkReply *pReply) = 0;
|
---|
68 |
|
---|
69 | protected:
|
---|
70 |
|
---|
71 | /** Creates network-request.
|
---|
72 | * @param enmType Brings request type.
|
---|
73 | * @param urls Brings request urls, there can be few of them.
|
---|
74 | * @param strTarget Brings request target path.
|
---|
75 | * @param requestHeaders Brings request headers in dictionary form. */
|
---|
76 | void createNetworkRequest(UINetworkRequestType enmType,
|
---|
77 | const QList<QUrl> urls,
|
---|
78 | const QString &strTarget = QString(),
|
---|
79 | const UserDictionary requestHeaders = UserDictionary());
|
---|
80 |
|
---|
81 | /** Aborts network-request. */
|
---|
82 | void cancelNetworkRequest();
|
---|
83 |
|
---|
84 | private:
|
---|
85 |
|
---|
86 | /** Holds whether this customer has forced privelegies. */
|
---|
87 | bool m_fForceCall;
|
---|
88 |
|
---|
89 | /** Holds the network-request ID. */
|
---|
90 | QUuid m_uId;
|
---|
91 | };
|
---|
92 |
|
---|
93 | #endif /* !FEQT_INCLUDED_SRC_networking_UINetworkCustomer_h */
|
---|