2015-04-08 21:48:11 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "nsDragServiceProxy.h"
|
2019-01-02 16:05:23 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
2019-04-10 01:39:01 +03:00
|
|
|
#include "mozilla/dom/BrowserChild.h"
|
2015-04-08 21:48:11 +03:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2020-11-11 14:14:05 +03:00
|
|
|
#include "mozilla/net/CookieJarSettings.h"
|
2015-04-14 13:50:59 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2016-08-23 07:09:32 +03:00
|
|
|
#include "mozilla/Unused.h"
|
2015-04-08 21:48:11 +03:00
|
|
|
#include "nsContentUtils.h"
|
|
|
|
|
2018-11-14 20:03:36 +03:00
|
|
|
using mozilla::CSSIntRegion;
|
2016-06-15 15:49:13 +03:00
|
|
|
using mozilla::LayoutDeviceIntRect;
|
|
|
|
using mozilla::Maybe;
|
2020-05-01 06:02:13 +03:00
|
|
|
using mozilla::Nothing;
|
|
|
|
using mozilla::Some;
|
2019-04-10 01:39:01 +03:00
|
|
|
using mozilla::dom::BrowserChild;
|
2018-11-14 20:03:36 +03:00
|
|
|
using mozilla::gfx::DataSourceSurface;
|
|
|
|
using mozilla::gfx::SourceSurface;
|
|
|
|
using mozilla::gfx::SurfaceFormat;
|
2017-10-12 19:03:35 +03:00
|
|
|
using mozilla::ipc::Shmem;
|
2016-06-15 15:49:13 +03:00
|
|
|
|
2020-03-16 13:56:57 +03:00
|
|
|
nsDragServiceProxy::nsDragServiceProxy() = default;
|
2015-04-08 21:48:11 +03:00
|
|
|
|
2020-03-16 13:56:57 +03:00
|
|
|
nsDragServiceProxy::~nsDragServiceProxy() = default;
|
2015-04-08 21:48:11 +03:00
|
|
|
|
2016-10-18 21:56:20 +03:00
|
|
|
nsresult nsDragServiceProxy::InvokeDragSessionImpl(
|
2018-08-07 16:32:08 +03:00
|
|
|
nsIArray* aArrayTransferables, const Maybe<CSSIntRegion>& aRegion,
|
2015-10-21 12:16:40 +03:00
|
|
|
uint32_t aActionType) {
|
2018-05-11 20:46:15 +03:00
|
|
|
NS_ENSURE_STATE(mSourceDocument->GetDocShell());
|
2019-04-10 01:39:01 +03:00
|
|
|
BrowserChild* child = BrowserChild::GetFrom(mSourceDocument->GetDocShell());
|
2015-04-08 21:48:11 +03:00
|
|
|
NS_ENSURE_STATE(child);
|
|
|
|
nsTArray<mozilla::dom::IPCDataTransfer> dataTransfers;
|
|
|
|
nsContentUtils::TransferablesToIPCTransferables(
|
|
|
|
aArrayTransferables, dataTransfers, false, child->Manager(), nullptr);
|
|
|
|
|
2019-01-04 06:16:46 +03:00
|
|
|
nsCOMPtr<nsIPrincipal> principal;
|
|
|
|
if (mSourceNode) {
|
|
|
|
principal = mSourceNode->NodePrincipal();
|
|
|
|
}
|
2018-02-09 04:43:53 +03:00
|
|
|
|
2019-08-20 15:43:02 +03:00
|
|
|
nsCOMPtr<nsIContentSecurityPolicy> csp;
|
|
|
|
if (mSourceDocument) {
|
|
|
|
csp = mSourceDocument->GetCsp();
|
|
|
|
}
|
|
|
|
|
2020-11-11 14:14:05 +03:00
|
|
|
nsCOMPtr<nsICookieJarSettings> cookieJarSettings;
|
|
|
|
cookieJarSettings = mSourceDocument->CookieJarSettings();
|
|
|
|
net::CookieJarSettingsArgs csArgs;
|
|
|
|
net::CookieJarSettings::Cast(cookieJarSettings)->Serialize(csArgs);
|
|
|
|
|
2016-10-19 22:01:39 +03:00
|
|
|
LayoutDeviceIntRect dragRect;
|
2015-04-08 21:48:11 +03:00
|
|
|
if (mHasImage || mSelection) {
|
|
|
|
nsPresContext* pc;
|
2018-11-14 20:03:36 +03:00
|
|
|
RefPtr<SourceSurface> surface;
|
2016-10-19 22:01:39 +03:00
|
|
|
DrawDrag(mSourceNode, aRegion, mScreenPosition, &dragRect, &surface, &pc);
|
2015-04-08 21:48:11 +03:00
|
|
|
|
|
|
|
if (surface) {
|
2018-11-14 20:03:36 +03:00
|
|
|
RefPtr<DataSourceSurface> dataSurface = surface->GetDataSurface();
|
2016-05-03 17:04:21 +03:00
|
|
|
if (dataSurface) {
|
|
|
|
size_t length;
|
|
|
|
int32_t stride;
|
2017-05-15 13:15:48 +03:00
|
|
|
Maybe<Shmem> maybeShm = nsContentUtils::GetSurfaceData(
|
|
|
|
dataSurface, &length, &stride, child);
|
|
|
|
if (maybeShm.isNothing()) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto surfaceData = maybeShm.value();
|
|
|
|
|
2016-06-15 15:49:13 +03:00
|
|
|
// Save the surface data to shared memory.
|
|
|
|
if (!surfaceData.IsReadable() || !surfaceData.get<char>()) {
|
|
|
|
NS_WARNING("Failed to create shared memory for drag session.");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2015-04-14 13:50:59 +03:00
|
|
|
|
2016-06-15 15:49:13 +03:00
|
|
|
mozilla::Unused << child->SendInvokeDragSession(
|
2019-03-21 07:52:48 +03:00
|
|
|
dataTransfers, aActionType, Some(std::move(surfaceData)), stride,
|
2020-11-11 14:14:05 +03:00
|
|
|
dataSurface->GetFormat(), dragRect, principal, csp, csArgs);
|
2016-05-03 17:04:21 +03:00
|
|
|
StartDragSession();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2015-04-08 21:48:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-14 20:03:36 +03:00
|
|
|
mozilla::Unused << child->SendInvokeDragSession(
|
2019-03-21 07:52:48 +03:00
|
|
|
dataTransfers, aActionType, Nothing(), 0, static_cast<SurfaceFormat>(0),
|
2020-11-11 14:14:05 +03:00
|
|
|
dragRect, principal, csp, csArgs);
|
2015-04-08 21:48:11 +03:00
|
|
|
StartDragSession();
|
|
|
|
return NS_OK;
|
|
|
|
}
|