/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the QtWebEngine module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or later as published by the Free ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be ** met: http://www.gnu.org/licenses/gpl-2.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qquickwebenginedownloaditem_p.h" #include "qquickwebenginedownloaditem_p_p.h" #include "qquickwebengineprofile_p_p.h" using QtWebEngineCore::BrowserContextAdapterClient; QT_BEGIN_NAMESPACE static inline QQuickWebEngineDownloadItem::DownloadState toDownloadState(int state) { switch (state) { case BrowserContextAdapterClient::DownloadInProgress: return QQuickWebEngineDownloadItem::DownloadInProgress; case BrowserContextAdapterClient::DownloadCompleted: return QQuickWebEngineDownloadItem::DownloadCompleted; case BrowserContextAdapterClient::DownloadCancelled: return QQuickWebEngineDownloadItem::DownloadCancelled; case BrowserContextAdapterClient::DownloadInterrupted: return QQuickWebEngineDownloadItem::DownloadInterrupted; default: Q_UNREACHABLE(); return QQuickWebEngineDownloadItem::DownloadCancelled; } } QQuickWebEngineDownloadItemPrivate::QQuickWebEngineDownloadItemPrivate(QQuickWebEngineProfilePrivate *p) : profile(p) , downloadId(-1) , downloadState(QQuickWebEngineDownloadItem::DownloadCancelled) , totalBytes(-1) , receivedBytes(0) { } QQuickWebEngineDownloadItemPrivate::~QQuickWebEngineDownloadItemPrivate() { profile->downloadDestroyed(downloadId); } /*! \qmltype WebEngineDownloadItem \instantiates QQuickWebEngineDownloadItem \inqmlmodule QtWebEngine 1.1 \since QtWebEngine 1.1 \brief A WebEngineDownloadItem provides information about a download. WebEngineDownloadItem stores the state of a download to be used to manage requested downloads. By default the download is rejected unless the user explicitly accepts it with WebEngineDownloadItem::accept(). */ void QQuickWebEngineDownloadItemPrivate::update(const BrowserContextAdapterClient::DownloadItemInfo &info) { Q_Q(QQuickWebEngineDownloadItem); updateState(toDownloadState(info.state)); if (info.receivedBytes != receivedBytes) { receivedBytes = info.receivedBytes; Q_EMIT q->receivedBytesChanged(); } if (info.totalBytes != totalBytes) { totalBytes = info.totalBytes; Q_EMIT q->totalBytesChanged(); } } void QQuickWebEngineDownloadItemPrivate::updateState(QQuickWebEngineDownloadItem::DownloadState newState) { Q_Q(QQuickWebEngineDownloadItem); if (downloadState != newState) { downloadState = newState; Q_EMIT q->stateChanged(); } } /*! \qmlmethod void WebEngineDownloadItem::accept() Accepts the download request, which will start the download. \sa WebEngineDownloadItem::cancel() */ void QQuickWebEngineDownloadItem::accept() { Q_D(QQuickWebEngineDownloadItem); if (d->downloadState != QQuickWebEngineDownloadItem::DownloadRequested) return; d->updateState(QQuickWebEngineDownloadItem::DownloadInProgress); } /*! \qmlmethod void WebEngineDownloadItem::cancel() Cancels the download. */ void QQuickWebEngineDownloadItem::cancel() { Q_D(QQuickWebEngineDownloadItem); QQuickWebEngineDownloadItem::DownloadState state = d->downloadState; if (state == QQuickWebEngineDownloadItem::DownloadCompleted || state == QQuickWebEngineDownloadItem::DownloadCancelled) return; d->updateState(QQuickWebEngineDownloadItem::DownloadCancelled); // We directly cancel the download if the user cancels before // it even started, so no need to notify the profile here. if (state == QQuickWebEngineDownloadItem::DownloadInProgress) d->profile->cancelDownload(d->downloadId); } /*! \qmlproperty quint32 WebEngineDownloadItem::id The download item's id. */ quint32 QQuickWebEngineDownloadItem::id() const { Q_D(const QQuickWebEngineDownloadItem); return d->downloadId; } /*! \qmlproperty enumeration WebEngineDownloadItem::state This property describes the state in which the download is in. The state can be one of: \table \header \li Constant \li Description \row \li DownloadRequested \li The download has been requested, but has not been accepted yet. \row \li DownloadInProgress \li The download is in progress. \row \li DownloadCompleted \li The download completed successfully. \row \li DownloadInterrupted \li The download has been interrupted (by the server or because of lost connectivity). \endtable */ QQuickWebEngineDownloadItem::DownloadState QQuickWebEngineDownloadItem::state() const { Q_D(const QQuickWebEngineDownloadItem); return d->downloadState; } /*! \qmlproperty int WebEngineDownloadItem::totalBytes The download's total size in bytes. -1 means the total size is unknown. */ qint64 QQuickWebEngineDownloadItem::totalBytes() const { Q_D(const QQuickWebEngineDownloadItem); return d->totalBytes; } /*! \qmlproperty int WebEngineDownloadItem::receivedBytes The download's bytes that have been received so far. */ qint64 QQuickWebEngineDownloadItem::receivedBytes() const { Q_D(const QQuickWebEngineDownloadItem); return d->receivedBytes; } /*! \qmlproperty QString WebEngineDownloadItem::path The download item's full target path where it is being downloaded to. The path includes the file name. The default suggested path is the standard download location and file name is deduced not to overwrite already existing files. The download path can only be set in the \c WebEngineProfile.onDownloadRequested handler before the download is accepted. \sa WebEngineProfile::downloadRequested(WebEngineDownloadItem download), WebEngineDownloadItem::accept() */ QString QQuickWebEngineDownloadItem::path() const { Q_D(const QQuickWebEngineDownloadItem); return d->downloadPath; } void QQuickWebEngineDownloadItem::setPath(QString path) { Q_D(QQuickWebEngineDownloadItem); if (d->downloadState != QQuickWebEngineDownloadItem::DownloadRequested) { qWarning("Setting the download path is not allowed after the download has been accepted."); return; } if (d->downloadPath != path) { d->downloadPath = path; Q_EMIT pathChanged(); } } QQuickWebEngineDownloadItem::QQuickWebEngineDownloadItem(QQuickWebEngineDownloadItemPrivate *p, QObject *parent) : QObject(parent) , d_ptr(p) { p->q_ptr = this; } QQuickWebEngineDownloadItem::~QQuickWebEngineDownloadItem() { } QT_END_NAMESPACE