2018-08-07 21:20:34 +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/. */
|
|
|
|
|
|
|
|
#ifndef GFX_VR_PROCESS_PARENT_H
|
|
|
|
#define GFX_VR_PROCESS_PARENT_H
|
|
|
|
|
|
|
|
#include "mozilla/UniquePtr.h"
|
|
|
|
|
|
|
|
#include "mozilla/ipc/GeckoChildProcessHost.h"
|
|
|
|
#include "mozilla/ipc/TaskFactory.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
class VRChild;
|
|
|
|
|
|
|
|
class VRProcessParent final : public mozilla::ipc::GeckoChildProcessHost {
|
|
|
|
public:
|
2019-01-23 04:22:39 +03:00
|
|
|
class Listener {
|
|
|
|
public:
|
|
|
|
virtual void OnProcessLaunchComplete(VRProcessParent* aParent) {}
|
|
|
|
|
|
|
|
// Follow GPU and RDD process manager, adding this to avoid
|
|
|
|
// unexpectedly shutdown or had its connection severed.
|
|
|
|
// This is not called if an error occurs after calling Shutdown().
|
|
|
|
virtual void OnProcessUnexpectedShutdown(VRProcessParent* aParent) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit VRProcessParent(Listener* aListener);
|
2018-08-07 21:20:34 +03:00
|
|
|
|
|
|
|
bool Launch();
|
|
|
|
void Shutdown();
|
|
|
|
void DestroyProcess();
|
|
|
|
bool CanShutdown() override { return true; }
|
|
|
|
|
|
|
|
void OnChannelError() override;
|
|
|
|
void OnChannelConnected(int32_t peer_pid) override;
|
|
|
|
void OnChannelConnectedTask();
|
|
|
|
void OnChannelErrorTask();
|
|
|
|
void OnChannelClosed();
|
2019-01-23 04:22:39 +03:00
|
|
|
bool IsConnected() const;
|
2018-08-07 21:20:34 +03:00
|
|
|
|
|
|
|
base::ProcessId OtherPid();
|
|
|
|
VRChild* GetActor() const { return mVRChild.get(); }
|
|
|
|
|
|
|
|
private:
|
2019-02-05 03:15:20 +03:00
|
|
|
~VRProcessParent();
|
|
|
|
|
2018-08-07 21:20:34 +03:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(VRProcessParent);
|
|
|
|
|
|
|
|
void InitAfterConnect(bool aSucceeded);
|
|
|
|
void KillHard(const char* aReason);
|
|
|
|
|
|
|
|
UniquePtr<VRChild> mVRChild;
|
|
|
|
mozilla::ipc::TaskFactory<VRProcessParent> mTaskFactory;
|
|
|
|
nsCOMPtr<nsIThread> mLaunchThread;
|
2019-01-23 04:22:39 +03:00
|
|
|
Listener* mListener;
|
|
|
|
|
2018-08-07 21:20:34 +03:00
|
|
|
bool mChannelClosed;
|
2019-01-23 04:22:39 +03:00
|
|
|
bool mShutdownRequested;
|
2018-08-07 21:20:34 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2019-02-05 03:15:20 +03:00
|
|
|
#endif // ifndef GFX_VR_PROCESS_PARENT_H
|