2015-03-02 16:20:00 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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 "mozilla/dom/cache/CacheStreamControlParent.h"
|
|
|
|
|
2016-08-23 07:09:32 +03:00
|
|
|
#include "mozilla/Unused.h"
|
2015-04-16 22:00:15 +03:00
|
|
|
#include "mozilla/dom/cache/CacheTypes.h"
|
2015-03-02 16:20:00 +03:00
|
|
|
#include "mozilla/dom/cache/ReadStream.h"
|
|
|
|
#include "mozilla/dom/cache/StreamList.h"
|
2015-03-20 21:01:57 +03:00
|
|
|
#include "mozilla/ipc/FileDescriptorSetParent.h"
|
|
|
|
#include "mozilla/ipc/PBackgroundParent.h"
|
|
|
|
#include "mozilla/ipc/PFileDescriptorSetParent.h"
|
2015-03-02 16:20:00 +03:00
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace cache {
|
|
|
|
|
2016-05-18 01:01:25 +03:00
|
|
|
using mozilla::dom::OptionalFileDescriptorSet;
|
2015-03-20 21:01:57 +03:00
|
|
|
using mozilla::ipc::FileDescriptor;
|
|
|
|
using mozilla::ipc::FileDescriptorSetParent;
|
|
|
|
using mozilla::ipc::PFileDescriptorSetParent;
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
// declared in ActorUtils.h
|
|
|
|
void
|
|
|
|
DeallocPCacheStreamControlParent(PCacheStreamControlParent* aActor)
|
|
|
|
{
|
|
|
|
delete aActor;
|
|
|
|
}
|
|
|
|
|
|
|
|
CacheStreamControlParent::CacheStreamControlParent()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(cache::CacheStreamControlParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
CacheStreamControlParent::~CacheStreamControlParent()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
2017-01-06 23:41:15 +03:00
|
|
|
MOZ_DIAGNOSTIC_ASSERT(!mStreamList);
|
2015-03-02 16:20:00 +03:00
|
|
|
MOZ_COUNT_DTOR(cache::CacheStreamControlParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-16 22:00:15 +03:00
|
|
|
CacheStreamControlParent::SerializeControl(CacheReadStream* aReadStreamOut)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
2017-01-06 23:41:15 +03:00
|
|
|
MOZ_DIAGNOSTIC_ASSERT(aReadStreamOut);
|
2015-03-20 21:01:57 +03:00
|
|
|
aReadStreamOut->controlChild() = nullptr;
|
|
|
|
aReadStreamOut->controlParent() = this;
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-05-15 20:32:09 +03:00
|
|
|
CacheStreamControlParent::SerializeStream(CacheReadStream* aReadStreamOut,
|
|
|
|
nsIInputStream* aStream,
|
|
|
|
nsTArray<UniquePtr<AutoIPCStream>>& aStreamCleanupList)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
2017-01-06 23:41:15 +03:00
|
|
|
MOZ_DIAGNOSTIC_ASSERT(aReadStreamOut);
|
2017-03-14 14:29:43 +03:00
|
|
|
|
2016-05-15 20:32:09 +03:00
|
|
|
UniquePtr<AutoIPCStream> autoStream(new AutoIPCStream(aReadStreamOut->stream()));
|
2017-04-18 17:29:47 +03:00
|
|
|
DebugOnly<bool> ok = autoStream->Serialize(aStream, Manager());
|
|
|
|
MOZ_ASSERT(ok);
|
2017-03-14 14:29:43 +03:00
|
|
|
|
2016-05-15 20:32:09 +03:00
|
|
|
aStreamCleanupList.AppendElement(Move(autoStream));
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
2017-09-15 22:25:41 +03:00
|
|
|
void
|
|
|
|
CacheStreamControlParent::OpenStream(const nsID& aId,
|
|
|
|
InputStreamResolver&& aResolver)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(aResolver);
|
|
|
|
|
|
|
|
if (!mStreamList || !mStreamList->ShouldOpenStreamFor(aId)) {
|
|
|
|
aResolver(nullptr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure to add ourself as a Listener even thought we are using
|
|
|
|
// a separate resolver function to signal the completion of the
|
|
|
|
// operation. The Manager uses the existence of the Listener to ensure
|
|
|
|
// that its safe to complete the operation.
|
|
|
|
mStreamList->GetManager()->ExecuteOpenStream(this, Move(aResolver), aId);
|
|
|
|
}
|
|
|
|
|
2015-03-20 21:01:57 +03:00
|
|
|
void
|
|
|
|
CacheStreamControlParent::NoteClosedAfterForget(const nsID& aId)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
|
|
|
RecvNoteClosed(aId);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
|
|
|
CacheStreamControlParent::AssertOwningThread()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
void
|
|
|
|
CacheStreamControlParent::ActorDestroy(ActorDestroyReason aReason)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
2015-03-20 21:01:57 +03:00
|
|
|
CloseAllReadStreamsWithoutReporting();
|
2017-01-10 19:20:15 +03:00
|
|
|
// If the initial SendPStreamControlConstructor() fails we will
|
|
|
|
// be called before mStreamList is set.
|
|
|
|
if (!mStreamList) {
|
|
|
|
return;
|
|
|
|
}
|
2017-09-15 22:25:41 +03:00
|
|
|
mStreamList->GetManager()->RemoveListener(this);
|
2015-03-02 16:20:00 +03:00
|
|
|
mStreamList->RemoveStreamControl(this);
|
|
|
|
mStreamList->NoteClosedAll();
|
|
|
|
mStreamList = nullptr;
|
|
|
|
}
|
|
|
|
|
2017-09-15 22:25:41 +03:00
|
|
|
mozilla::ipc::IPCResult
|
|
|
|
CacheStreamControlParent::RecvOpenStream(const nsID& aStreamId,
|
|
|
|
OpenStreamResolver&& aResolver)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
|
|
|
|
|
|
|
// This is safe because:
|
|
|
|
// 1. We add ourself to the Manager as an operation Listener in OpenStream().
|
|
|
|
// 2. We remove ourself as a Listener from the Manager in ActorDestroy().
|
|
|
|
// 3. The Manager will not "complete" the operation if the Listener has
|
|
|
|
// been removed. This means the lambda will not be invoked.
|
|
|
|
// 4. The ActorDestroy() will also cause the child-side MozPromise for
|
|
|
|
// this async returning method to be rejected. So we don't have to
|
|
|
|
// call the resolver in this case.
|
|
|
|
CacheStreamControlParent* self = this;
|
|
|
|
|
|
|
|
OpenStream(aStreamId, [self, aResolver](nsCOMPtr<nsIInputStream>&& aStream) {
|
|
|
|
AutoIPCStream stream;
|
|
|
|
Unused << stream.Serialize(aStream, self->Manager());
|
|
|
|
aResolver(stream.TakeOptionalValue());
|
|
|
|
});
|
|
|
|
|
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2015-03-02 16:20:00 +03:00
|
|
|
CacheStreamControlParent::RecvNoteClosed(const nsID& aId)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
2017-01-06 23:41:15 +03:00
|
|
|
MOZ_DIAGNOSTIC_ASSERT(mStreamList);
|
2015-03-02 16:20:00 +03:00
|
|
|
mStreamList->NoteClosed(aId);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CacheStreamControlParent::SetStreamList(StreamList* aStreamList)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
2017-01-06 23:41:15 +03:00
|
|
|
MOZ_DIAGNOSTIC_ASSERT(!mStreamList);
|
2015-03-02 16:20:00 +03:00
|
|
|
mStreamList = aStreamList;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CacheStreamControlParent::Close(const nsID& aId)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
|
|
|
NotifyClose(aId);
|
2015-11-02 08:53:26 +03:00
|
|
|
Unused << SendClose(aId);
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CacheStreamControlParent::CloseAll()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
|
|
|
NotifyCloseAll();
|
2015-11-02 08:53:26 +03:00
|
|
|
Unused << SendCloseAll();
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CacheStreamControlParent::Shutdown()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
|
|
|
if (!Send__delete__(this)) {
|
|
|
|
// child process is gone, allow actor to be destroyed normally
|
|
|
|
NS_WARNING("Cache failed to delete stream actor.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CacheStreamControlParent::NotifyClose(const nsID& aId)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
2015-03-20 21:01:57 +03:00
|
|
|
CloseReadStreams(aId);
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CacheStreamControlParent::NotifyCloseAll()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(CacheStreamControlParent);
|
2015-03-20 21:01:57 +03:00
|
|
|
CloseAllReadStreams();
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace cache
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|