2016-05-28 00:54:31 +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: */
|
2012-08-16 08:02:32 +04:00
|
|
|
/* 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 mozilla_ipc_InputStreamUtils_h
|
|
|
|
#define mozilla_ipc_InputStreamUtils_h
|
|
|
|
|
2012-08-23 23:33:46 +04:00
|
|
|
#include "mozilla/ipc/InputStreamParams.h"
|
2012-08-16 08:02:32 +04:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIInputStream.h"
|
2014-03-25 22:37:13 +04:00
|
|
|
#include "nsTArray.h"
|
2012-08-16 08:02:32 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
2014-03-25 22:37:13 +04:00
|
|
|
class FileDescriptor;
|
|
|
|
|
2017-03-21 09:47:25 +03:00
|
|
|
// If you want to serialize an inputStream, please use AutoIPCStream.
|
|
|
|
class InputStreamHelper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void
|
|
|
|
SerializeInputStream(nsIInputStream* aInputStream,
|
|
|
|
InputStreamParams& aParams,
|
|
|
|
nsTArray<FileDescriptor>& aFileDescriptors);
|
|
|
|
|
|
|
|
static already_AddRefed<nsIInputStream>
|
|
|
|
DeserializeInputStream(const InputStreamParams& aParams,
|
|
|
|
const nsTArray<FileDescriptor>& aFileDescriptors);
|
|
|
|
};
|
2012-08-23 06:13:54 +04:00
|
|
|
|
2012-08-16 08:02:32 +04:00
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_ipc_InputStreamUtils_h
|