blob: 9c92f37b5ab24667de7797c3e720d2c9555bf8f4 [file] [log] [blame]
morrita6308f322015-01-27 07:42:54 +09001// Copyright (c) 2015 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef IPC_IPC_MESSAGE_ATTACHMENT_H_
6#define IPC_IPC_MESSAGE_ATTACHMENT_H_
7
morrita7d1bfcc2015-01-31 14:45:42 +09008#include "base/files/file.h"
9#include "base/macros.h"
morrita6308f322015-01-27 07:42:54 +090010#include "base/memory/ref_counted.h"
rockot6dbfea52016-02-04 05:20:16 +090011#include "base/pickle.h"
avi42ebda42015-12-22 11:39:04 +090012#include "build/build_config.h"
Ken Rockotb3a77c92017-09-14 13:23:41 +090013#include "ipc/ipc_message_support_export.h"
14#include "mojo/public/cpp/system/handle.h"
morrita6308f322015-01-27 07:42:54 +090015
16namespace IPC {
17
18// Auxiliary data sent with |Message|. This can be a platform file descriptor
19// or a mojo |MessagePipe|. |GetType()| returns the type of the subclass.
Ken Rockotb3a77c92017-09-14 13:23:41 +090020class IPC_MESSAGE_SUPPORT_EXPORT MessageAttachment
21 : public base::Pickle::Attachment {
morrita6308f322015-01-27 07:42:54 +090022 public:
Ken Rockotb3a77c92017-09-14 13:23:41 +090023 enum class Type {
24 MOJO_HANDLE,
25 PLATFORM_FILE,
26 WIN_HANDLE,
27 MACH_PORT,
28 FUCHSIA_HANDLE,
29 };
30
31 static scoped_refptr<MessageAttachment> CreateFromMojoHandle(
32 mojo::ScopedHandle handle,
33 Type type);
morrita6308f322015-01-27 07:42:54 +090034
35 virtual Type GetType() const = 0;
morrita1b52e4c2015-02-06 09:58:30 +090036
Ken Rockotb3a77c92017-09-14 13:23:41 +090037 mojo::ScopedHandle TakeMojoHandle();
38
morrita6308f322015-01-27 07:42:54 +090039 protected:
erikchene7e30922015-10-31 08:16:29 +090040 friend class base::RefCountedThreadSafe<MessageAttachment>;
morrita7d1bfcc2015-01-31 14:45:42 +090041 MessageAttachment();
rockot6dbfea52016-02-04 05:20:16 +090042 ~MessageAttachment() override;
morrita7d1bfcc2015-01-31 14:45:42 +090043
44 DISALLOW_COPY_AND_ASSIGN(MessageAttachment);
morrita6308f322015-01-27 07:42:54 +090045};
46
47} // namespace IPC
48
49#endif // IPC_IPC_MESSAGE_ATTACHMENT_H_